commit baa42a4ccb9e06c06aadfa4114d73671c9a7bbc5 Author: Sasa Karanovic <75916+SasaKaranovic@users.noreply.github.com> Date: Sat Dec 25 22:38:19 2021 -0500 Initial commit after public rebase. diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..1501fce --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,49 @@ +# This is the name of the workflow, visible on GitHub UI. +name: Build Code Base + +# Here we tell GitHub to run the workflow when a commit +# is pushed or a Pull Request is opened. +on: + pull_request: + branches: [master, main] + + push: + branches: [master, main] + # paths: + # - "**.ino" + # - "**.h" + # - "**.c" + # - "**.platformio.ini" + +# This is the list of jobs that will be run concurrently. +# Since we use a build matrix, the actual number of jobs +# started depends on how many configurations the matrix +# will produce. +jobs: + Build-Platformio: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Cache pip + uses: actions/cache@v2 + with: + path: ~/.cache/pip + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} + restore-keys: | + ${{ runner.os }}-pip- + - name: Cache PlatformIO + uses: actions/cache@v2 + with: + path: ~/.platformio + key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} + - name: Set up Python + uses: actions/setup-python@v2 + - name: Install PlatformIO + run: | + python -m pip install --upgrade pip + pip install --upgrade platformio + - name: Run PlatformIO + run: pio run + working-directory: Firmware/platformio \ No newline at end of file diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml new file mode 100644 index 0000000..1b17b65 --- /dev/null +++ b/.github/workflows/linter.yaml @@ -0,0 +1,36 @@ +# This is the name of the workflow, visible on GitHub UI. +name: Lint Code Base + +# Here we tell GitHub to run the workflow when a commit +# is pushed or a Pull Request is opened. +on: + pull_request: + branches: [master, main] + +# push: +# branches: [master, main] + # paths: + # - "**.ino" + # - "**.h" + # - "**.c" + # - "**.cpp" + # - "**.hpp" + # - "**.platformio.ini" + +# This is the list of jobs that will be run concurrently. +# Since we use a build matrix, the actual number of jobs +# started depends on how many configurations the matrix +# will produce. +jobs: + Lint-code: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: DoozyX/clang-format-lint-action@v0.13 + with: + source: './Firmware' + # exclude: './third_party ./external' + extensions: 'c,h,ino' + clangFormatVersion: 13 + # style: 'file' \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4835044 --- /dev/null +++ b/.gitignore @@ -0,0 +1,91 @@ +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +### PlatformIO ### +.pioenvs +.piolibdeps +.clang_complete +.gcc-flags.json +.pio + +# Various Altium files +*.PrjPCBStructure +*.SchDocPreview +*.PcbDocPreview +__Previews +*.PrjPcbStructure +*.Dat +*.REP +*.TLT +*.LOG +*.log +*.htm +*.$$$ + +#useless dirs +Project\ Outputs +Project\ Logs +Project Outputs for* + +#History +History + +#Exports, but not manual ones +exports/* +!exports/manual + +#Python stuff +scripts/__pycache__/ +*.bak +*.dwl +*.dwl2 \ No newline at end of file diff --git a/Firmware/.clang-format b/Firmware/.clang-format new file mode 100644 index 0000000..1b7e66f --- /dev/null +++ b/Firmware/.clang-format @@ -0,0 +1,150 @@ +--- +Language: Cpp +# BasedOnStyle: LLVM +AccessModifierOffset: -2 +AlignAfterOpenBracket: Align +AlignConsecutiveMacros: false +AlignConsecutiveAssignments: false +AlignConsecutiveBitFields: false +AlignConsecutiveDeclarations: false +AlignEscapedNewlines: Right +AlignOperands: Align +AlignTrailingComments: true +AllowAllArgumentsOnNextLine: true +AllowAllConstructorInitializersOnNextLine: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortEnumsOnASingleLine: true +AllowShortBlocksOnASingleLine: Never +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: All +AllowShortLambdasOnASingleLine: All +AllowShortIfStatementsOnASingleLine: Never +AllowShortLoopsOnASingleLine: false +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: MultiLine +BinPackArguments: true +BinPackParameters: true +BraceWrapping: + AfterCaseLabel: false + AfterClass: false + AfterControlStatement: Never + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + BeforeLambdaBody: false + BeforeWhile: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Allman +BreakBeforeInheritanceComma: false +BreakInheritanceList: BeforeColon +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakConstructorInitializers: BeforeColon +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: true +ColumnLimit: 80 +CommentPragmas: '^ IWYU pragma:' +CompactNamespaces: false +ConstructorInitializerAllOnOneLineOrOnePerLine: false +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DeriveLineEnding: true +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: true +ForEachMacros: + - foreach + - Q_FOREACH + - BOOST_FOREACH +IncludeBlocks: Preserve +IncludeCategories: + - Regex: '^"(llvm|llvm-c|clang|clang-c)/' + Priority: 2 + SortPriority: 0 + - Regex: '^(<|"(gtest|gmock|isl|json)/)' + Priority: 3 + SortPriority: 0 + - Regex: '.*' + Priority: 1 + SortPriority: 0 +IncludeIsMainRegex: '(Test)?$' +IncludeIsMainSourceRegex: '' +IndentCaseLabels: false +IndentCaseBlocks: false +IndentGotoLabels: true +IndentPPDirectives: None +IndentExternBlock: AfterExternBlock +IndentWidth: 4 +IndentWrappedFunctionNames: false +InsertTrailingCommas: None +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: true +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCBinPackProtocolList: Auto +ObjCBlockIndentWidth: 2 +ObjCBreakBeforeNestedBlockParam: true +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 60 +PointerAlignment: Right +ReflowComments: true +SortIncludes: true +SortUsingDeclarations: true +SpaceAfterCStyleCast: false +SpaceAfterLogicalNot: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +SpaceBeforeRangeBasedForLoopColon: true +SpaceInEmptyBlock: false +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInConditionalStatement: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +SpaceBeforeSquareBrackets: false +BitFieldColonSpacing: Both +Standard: Latest +StatementMacros: + - Q_UNUSED + - QT_REQUIRE_VERSION +TabWidth: 8 +UseCRLF: false +UseTab: Never +WhitespaceSensitiveMacros: + - STRINGIZE + - PP_STRINGIZE + - BOOST_PP_STRINGIZE +... + diff --git a/Firmware/README.md b/Firmware/README.md new file mode 100644 index 0000000..0c80f5d --- /dev/null +++ b/Firmware/README.md @@ -0,0 +1,89 @@ +# How to build firmware + +For our firmware development, we are going to use Arduino. Mainly because it's user friendly, easy to use and +most hobbyists are familiar with it or have already used it. While we could build te same or even more efficient +firmware using C and ESP-IDF, we are going to stick with Arduino and hope that this allows the project to be +more friendly and easier to use/modify by wider DIY/hacker community. + +## How can I build/compile firmware? +Arduino has many third party libraries that you can use and also build firmware for many different boards. +However, depending for which board you are building firmware and also which libraries your project (sketch) uses, +you might need to manually install them or download them trough board/library manager. + +While above mentioned solution works fine, it can lead to issues like installing the "wrong/different" version +of the library, different board files, "wrong/different" build/upload tools and so on. On top of that, since board files +and libraries are shared, we could install a library or a board file while working on another project that breaks our current project. +Hopefully you can see why this is not so great for open-source open-hardware project where we want everyone to be able to easily +checkout a repository and hit the ground running without spending hours setting up and debugging what library or board files are missing. + +Luckily we can automate/avoid this by using a build system like PlatformIO. So below we will have two ways of building +the firmware, one will be "easy" by leveraging PlatformiIO build system, and the other one will be a manual one by using +Arduino IDE and manually searching and downloading all the board/library files. + +## - The super easy way - Compile and upload using PlatformIO build system - + +### 1. Install PlatformIO +Installing PlatformIO CLI is pretty straight-forward and also well documented for Windows, Linux and MacOS. +You will need to follow few steps and get PlatformIO CLI installed, detailed tutorial can be found at https://platformio.org/install/cli +Make sure to install [PlatformIO Core](https://docs.platformio.org/en/latest//core/installation.html#installation-methods 'https://docs.platformio.org/en/latest//core/installation.html#installation-methods') and allso that it is available trough [shell](https://docs.platformio.org/en/latest//core/installation.html#piocore-install-shell-commands 'PlatformIO Core - Install Shell Commands¶'). + +### 2. Build firmware +Open shell/command-prompt and navigate to 'Firmware/platformio' folder. +1. Compile the firmware by typing `pio run`, PlatformIO will download all the required board files and libraries and finally compile the firmware. +2. Upload the firmware with `pio run --target upload --upload-port `. Make sure to replace `` with your ESP32's COM port (ie COM1 or /dev/ttyACM0) +3. Upload the file system (Web page) with `pio run --target uploadfs --upload-port `, again replace `` with your ESP32's COM port. + +Every time you make a firmware change, you need to run steps #1 and #2. +Every time you make a change to the web page (anything inside `data` folder) you only need to run step #3. + + +## - The less easy way - Compile using Arduino IDE and manually install all board files and libraries + +### 1. Install Arduino IDE +Download and install Arduino IDE from https://www.arduino.cc/en/software + +### 2. Install ESP32 board files +Add ESP32 board files to you Arduino IDE +1. Go to `File -> Preferences` +2. Find `Additional Board Manager URLs:` and add `https://dl.espressif.com/dl/package_esp32_index.json` +3. Go to `Boards -> Board manager`. +4. Search for `esp32`. +5. Find a board package title `esp32 -> by Espressif Systems` and install it. +(Currently we are using version 1.0.6, in case you have any issues, try installing this exact version) + +### 3. Install libraries used by the project +Install third party libraries that required +1. Go to `Sketch -> Include Library -> Manage Libraries... (CTRL+SHIFT+I)` +2. Find libraries from the list below and install them one by one + +- Adafruit SHT31 Library (version 2.0.0) +- Adafruit Si7021 Library (version 1.5.0) +- DallasTemperature (version 3.9.0) +- OneWire (version 2.3.6) + +### 4. Install some more libraries +You will manually have to install following libraries. +One way is to create a `Libraries` folder in your sketch folder. Then download the libraries and place them in Libraries folder. + +- https://github.com/me-no-dev/AsyncTCP +- https://github.com/me-no-dev/ESPAsyncWebServer + +### 5. Select build board +You need to tell Arduino IDE for which board we want to build the firmware. +Go to `Tools -> Board: -> ESP32 Arduino` and select `ESP32 Dev Module` +Go to `Tools -> Port` and select your ESP32 COM port + +### 6. Compile and upload the firmware +You need to compile and upload firmware. +Go to `Sketch -> Upload` +You will need to do this step every time you make a change to the firmware. + +### 7. Upload the file system +You need to tell Arduino IDE which partition scheme we want to use +Go to `Tools -> Partition Scheme` and select `1MB APP / 3MB SPIFF` +Now you can go upload file system trough `Tools -> ESP32 Sketch Data Upload` menu item. +If you are missing above menu item, you will need to manually install [ESP32 Sketch Data Upload tool](https://github.com/me-no-dev/arduino-esp32fs-plugin). +You will need to do this step every time you make a change to the web page (or anything inside the data folder) + + +[<- Go back to repository root](../README.md) diff --git a/Firmware/arduino-cli.yaml b/Firmware/arduino-cli.yaml new file mode 100644 index 0000000..72cd877 --- /dev/null +++ b/Firmware/arduino-cli.yaml @@ -0,0 +1,23 @@ +board_manager: + additional_urls: ["https://dl.espressif.com/dl/package_esp32_index.json"] +daemon: + port: "50051" +directories: + data: C:\Users\Sasa\AppData\Local\Arduino15 + downloads: C:\Users\Sasa\AppData\Local\Arduino15\staging + user: C:\Users\Sasa\Documents\Arduino +library: + enable_unsafe_install: true +logging: + file: "" + format: text + level: info +metrics: + addr: :9090 + enabled: true +output: + no_color: false +sketch: + always_export_binaries: false +updater: + enable_notification: true \ No newline at end of file diff --git a/Firmware/platformio/data/css/bootstrap-grid.min.css b/Firmware/platformio/data/css/bootstrap-grid.min.css new file mode 100644 index 0000000..ea073e9 --- /dev/null +++ b/Firmware/platformio/data/css/bootstrap-grid.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap Grid v4.0.0 (https://getbootstrap.com) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */@-ms-viewport{width:device-width}html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}} +/*# sourceMappingURL=bootstrap-grid.min.css.map */ \ No newline at end of file diff --git a/Firmware/platformio/data/css/bootstrap-reboot.min.css b/Firmware/platformio/data/css/bootstrap-reboot.min.css new file mode 100644 index 0000000..ced0468 --- /dev/null +++ b/Firmware/platformio/data/css/bootstrap-reboot.min.css @@ -0,0 +1,8 @@ +/*! + * Bootstrap Reboot v4.0.0 (https://getbootstrap.com) + * Copyright 2011-2018 The Bootstrap Authors + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) + */*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important} +/*# sourceMappingURL=bootstrap-reboot.min.css.map */ \ No newline at end of file diff --git a/Firmware/platformio/data/css/bootstrap.min.css b/Firmware/platformio/data/css/bootstrap.min.css new file mode 100644 index 0000000..1d9737e --- /dev/null +++ b/Firmware/platformio/data/css/bootstrap.min.css @@ -0,0 +1,12 @@ +/*! + * Bootswatch v4.6.0 + * Homepage: https://bootswatch.com + * Copyright 2012-2021 Thomas Park + * Licensed under MIT + * Based on Bootstrap +*//*! + * Bootstrap v4.6.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */@import url(https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap);:root{--blue:#df691a;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#d9534f;--orange:#f0ad4e;--yellow:#f0ad4e;--green:#5cb85c;--teal:#20c997;--cyan:#5bc0de;--white:#fff;--gray:#868e96;--gray-dark:#343a40;--primary:#df691a;--secondary:#4e5d6c;--success:#5cb85c;--info:#5bc0de;--warning:#f0ad4e;--danger:#d9534f;--light:#abb6c2;--dark:#4e5d6c;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#ebebeb;text-align:left;background-color:#2b3e50}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#df691a;text-decoration:none;background-color:transparent}a:hover{color:#9a4912;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:rgba(255,255,255,.4);text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#868e96}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#2b3e50;border:1px solid #dee2e6;border-radius:0;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#868e96}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:inherit}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#ebebeb}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid rgba(0,0,0,.15)}.table thead th{vertical-align:bottom;border-bottom:2px solid rgba(0,0,0,.15)}.table tbody+tbody{border-top:2px solid rgba(0,0,0,.15)}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid rgba(0,0,0,.15)}.table-bordered td,.table-bordered th{border:1px solid rgba(0,0,0,.15)}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-hover tbody tr:hover{color:#ebebeb;background-color:rgba(255,255,255,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#f6d5bf}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#eeb188}.table-hover .table-primary:hover{background-color:#f3c6a9}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#f3c6a9}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#cdd2d6}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#a3abb3}.table-hover .table-secondary:hover{background-color:#bfc5cb}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#bfc5cb}.table-success,.table-success>td,.table-success>th{background-color:#d1ebd1}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#aadaaa}.table-hover .table-success:hover{background-color:#bfe3bf}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#bfe3bf}.table-info,.table-info>td,.table-info>th{background-color:#d1edf6}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#aadeee}.table-hover .table-info:hover{background-color:#bce5f2}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#bce5f2}.table-warning,.table-warning>td,.table-warning>th{background-color:#fbe8cd}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#f7d4a3}.table-hover .table-warning:hover{background-color:#f9ddb5}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#f9ddb5}.table-danger,.table-danger>td,.table-danger>th{background-color:#f4cfce}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#eba6a3}.table-hover .table-danger:hover{background-color:#efbbb9}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#efbbb9}.table-light,.table-light>td,.table-light>th{background-color:#e7ebee}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#d3d9df}.table-hover .table-light:hover{background-color:#d8dfe3}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#d8dfe3}.table-dark,.table-dark>td,.table-dark>th{background-color:#cdd2d6}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#a3abb3}.table-hover .table-dark:hover{background-color:#bfc5cb}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#bfc5cb}.table-active,.table-active>td,.table-active>th{background-color:rgba(255,255,255,.075)}.table-hover .table-active:hover{background-color:rgba(242,242,242,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(242,242,242,.075)}.table .thead-dark th{color:#2b3e50;background-color:#abb6c2;border-color:#4e5d6c}.table .thead-light th{color:#495057;background-color:#abb6c2;border-color:rgba(0,0,0,.15)}.table-dark{color:#2b3e50;background-color:#abb6c2}.table-dark td,.table-dark th,.table-dark thead th{border-color:#4e5d6c}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#2b3e50;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid transparent;border-radius:0;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#f1b287;outline:0;box-shadow:0 0 0 .2rem rgba(223,105,26,.25)}.form-control::-webkit-input-placeholder{color:#868e96;opacity:1}.form-control::-moz-placeholder{color:#868e96;opacity:1}.form-control:-ms-input-placeholder{color:#868e96;opacity:1}.form-control::-ms-input-placeholder{color:#868e96;opacity:1}.form-control::placeholder{color:#868e96;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#ebebeb;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#ebebeb;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:rgba(255,255,255,.4)}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#5cb85c}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(92,184,92,.9);border-radius:0}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#5cb85c;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#5cb85c;box-shadow:0 0 0 .2rem rgba(92,184,92,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#5cb85c;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#5cb85c;box-shadow:0 0 0 .2rem rgba(92,184,92,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#5cb85c}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#5cb85c}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#5cb85c}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#80c780;background-color:#80c780}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(92,184,92,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#5cb85c}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#5cb85c}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#5cb85c;box-shadow:0 0 0 .2rem rgba(92,184,92,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#d9534f}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(217,83,79,.9);border-radius:0}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#d9534f;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d9534f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23d9534f' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#d9534f;box-shadow:0 0 0 .2rem rgba(217,83,79,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#d9534f;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23d9534f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23d9534f' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#d9534f;box-shadow:0 0 0 .2rem rgba(217,83,79,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#d9534f}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#d9534f}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#d9534f}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e27c79;background-color:#e27c79}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(217,83,79,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#d9534f}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#d9534f}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#d9534f;box-shadow:0 0 0 .2rem rgba(217,83,79,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#ebebeb;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#ebebeb;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(223,105,26,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#df691a;border-color:#df691a}.btn-primary:hover{color:#fff;background-color:#bd5916;border-color:#b15315}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#bd5916;border-color:#b15315;box-shadow:0 0 0 .2rem rgba(228,128,60,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#df691a;border-color:#df691a}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#b15315;border-color:#a64e13}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(228,128,60,.5)}.btn-secondary{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-secondary:hover{color:#fff;background-color:#3e4a56;border-color:#39444e}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#3e4a56;border-color:#39444e;box-shadow:0 0 0 .2rem rgba(105,117,130,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#39444e;border-color:#333d47}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(105,117,130,.5)}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success:hover{color:#fff;background-color:#48a648;border-color:#449d44}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#48a648;border-color:#449d44;box-shadow:0 0 0 .2rem rgba(116,195,116,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#409440}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(116,195,116,.5)}.btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:hover{color:#fff;background-color:#3bb4d8;border-color:#31b0d5}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#3bb4d8;border-color:#31b0d5;box-shadow:0 0 0 .2rem rgba(116,201,227,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#2aaacf}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(116,201,227,.5)}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning:hover{color:#fff;background-color:#ed9d2b;border-color:#ec971f}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ed9d2b;border-color:#ec971f;box-shadow:0 0 0 .2rem rgba(242,185,105,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#ea9214}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(242,185,105,.5)}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger:hover{color:#fff;background-color:#d23430;border-color:#c9302c}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#d23430;border-color:#c9302c;box-shadow:0 0 0 .2rem rgba(223,109,105,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#bf2e29}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,109,105,.5)}.btn-light{color:#fff;background-color:#abb6c2;border-color:#abb6c2}.btn-light:hover{color:#fff;background-color:#94a3b2;border-color:#8d9dad}.btn-light.focus,.btn-light:focus{color:#fff;background-color:#94a3b2;border-color:#8d9dad;box-shadow:0 0 0 .2rem rgba(183,193,203,.5)}.btn-light.disabled,.btn-light:disabled{color:#fff;background-color:#abb6c2;border-color:#abb6c2}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#fff;background-color:#8d9dad;border-color:#8696a7}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(183,193,203,.5)}.btn-dark{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-dark:hover{color:#fff;background-color:#3e4a56;border-color:#39444e}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#3e4a56;border-color:#39444e;box-shadow:0 0 0 .2rem rgba(105,117,130,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#39444e;border-color:#333d47}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(105,117,130,.5)}.btn-outline-primary{color:#df691a;border-color:#df691a}.btn-outline-primary:hover{color:#fff;background-color:#df691a;border-color:#df691a}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(223,105,26,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#df691a;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#df691a;border-color:#df691a}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(223,105,26,.5)}.btn-outline-secondary{color:#4e5d6c;border-color:#4e5d6c}.btn-outline-secondary:hover{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(78,93,108,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#4e5d6c;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(78,93,108,.5)}.btn-outline-success{color:#5cb85c;border-color:#5cb85c}.btn-outline-success:hover{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(92,184,92,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#5cb85c;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(92,184,92,.5)}.btn-outline-info{color:#5bc0de;border-color:#5bc0de}.btn-outline-info:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(91,192,222,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#5bc0de;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(91,192,222,.5)}.btn-outline-warning{color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning:hover{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(240,173,78,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#f0ad4e;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(240,173,78,.5)}.btn-outline-danger{color:#d9534f;border-color:#d9534f}.btn-outline-danger:hover{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(217,83,79,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#d9534f;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(217,83,79,.5)}.btn-outline-light{color:#abb6c2;border-color:#abb6c2}.btn-outline-light:hover{color:#fff;background-color:#abb6c2;border-color:#abb6c2}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(171,182,194,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#abb6c2;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#fff;background-color:#abb6c2;border-color:#abb6c2}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(171,182,194,.5)}.btn-outline-dark{color:#4e5d6c;border-color:#4e5d6c}.btn-outline-dark:hover{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(78,93,108,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#4e5d6c;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#4e5d6c;border-color:#4e5d6c}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(78,93,108,.5)}.btn-link{font-weight:400;color:#df691a;text-decoration:none}.btn-link:hover{color:#9a4912;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#868e96;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#ebebeb;text-align:left;list-style:none;background-color:#4e5d6c;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:0}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#ebebeb;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#ebebeb;text-decoration:none;background-color:rgba(255,255,255,.075)}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#df691a}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#868e96;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#ebebeb}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#ebebeb;text-align:center;white-space:nowrap;background-color:#4e5d6c;border:1px solid transparent;border-radius:0}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#df691a;background-color:#df691a}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(223,105,26,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#f1b287}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#f6cfb5;border-color:#f6cfb5}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#868e96}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#ebebeb}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:0}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#df691a;background-color:#df691a}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(223,105,26,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(223,105,26,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(223,105,26,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(223,105,26,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid transparent;border-radius:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#f1b287;outline:0;box-shadow:0 0 0 .2rem rgba(223,105,26,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#868e96;background-color:#4e5d6c}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#f1b287;box-shadow:0 0 0 .2rem rgba(223,105,26,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#ebebeb}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #4e5d6c;border-radius:0}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#fff;content:"Browse";background-color:#4e5d6c;border-left:inherit;border-radius:0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #2b3e50,0 0 0 .2rem rgba(223,105,26,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #2b3e50,0 0 0 .2rem rgba(223,105,26,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #2b3e50,0 0 0 .2rem rgba(223,105,26,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#df691a;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#f6cfb5}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#df691a;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#f6cfb5}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#df691a;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#f6cfb5}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:rgba(255,255,255,.4);pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #4e5d6c}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:0;border-top-right-radius:0}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#4e5d6c #4e5d6c #4e5d6c}.nav-tabs .nav-link.disabled{color:rgba(255,255,255,.4);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#ebebeb;background-color:#2b3e50;border-color:#4e5d6c}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#df691a}.nav-fill .nav-item,.nav-fill>.nav-link{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.25rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:#fff}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.75);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.75)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#4e5d6c;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:0}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:0;border-top-right-radius:0}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(255,255,255,.075);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(255,255,255,.075);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:0}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:0;border-top-right-radius:0}.card-img,.card-img-bottom{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#4e5d6c;border-radius:0}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#ebebeb;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#ebebeb}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#fff;background-color:#4e5d6c;border:1px solid transparent}.page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:rgba(255,255,255,.4);border-color:transparent}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(223,105,26,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.page-item.active .page-link{z-index:3;color:#fff;background-color:#df691a;border-color:#df691a}.page-item.disabled .page-link{color:rgba(255,255,255,.4);pointer-events:none;cursor:auto;background-color:#4e5d6c;border-color:transparent}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#df691a}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#b15315}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(223,105,26,.5)}.badge-secondary{color:#fff;background-color:#4e5d6c}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#39444e}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(78,93,108,.5)}.badge-success{color:#fff;background-color:#5cb85c}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#449d44}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(92,184,92,.5)}.badge-info{color:#fff;background-color:#5bc0de}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#31b0d5}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(91,192,222,.5)}.badge-warning{color:#fff;background-color:#f0ad4e}a.badge-warning:focus,a.badge-warning:hover{color:#fff;background-color:#ec971f}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(240,173,78,.5)}.badge-danger{color:#fff;background-color:#d9534f}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#c9302c}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(217,83,79,.5)}.badge-light{color:#fff;background-color:#abb6c2}a.badge-light:focus,a.badge-light:hover{color:#fff;background-color:#8d9dad}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(171,182,194,.5)}.badge-dark{color:#fff;background-color:#4e5d6c}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#39444e}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(78,93,108,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#4e5d6c;border-radius:0}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#74370e;background-color:#f9e1d1;border-color:#f6d5bf}.alert-primary hr{border-top-color:#f3c6a9}.alert-primary .alert-link{color:#462109}.alert-secondary{color:#293038;background-color:#dcdfe2;border-color:#cdd2d6}.alert-secondary hr{border-top-color:#bfc5cb}.alert-secondary .alert-link{color:#13171b}.alert-success{color:#306030;background-color:#def1de;border-color:#d1ebd1}.alert-success hr{border-top-color:#bfe3bf}.alert-success .alert-link{color:#1f3e1f}.alert-info{color:#2f6473;background-color:#def2f8;border-color:#d1edf6}.alert-info hr{border-top-color:#bce5f2}.alert-info .alert-link{color:#20454f}.alert-warning{color:#7d5a29;background-color:#fcefdc;border-color:#fbe8cd}.alert-warning hr{border-top-color:#f9ddb5}.alert-warning .alert-link{color:#573e1c}.alert-danger{color:#712b29;background-color:#f7dddc;border-color:#f4cfce}.alert-danger hr{border-top-color:#efbbb9}.alert-danger .alert-link{color:#4c1d1b}.alert-light{color:#595f65;background-color:#eef0f3;border-color:#e7ebee}.alert-light hr{border-top-color:#d8dfe3}.alert-light .alert-link{color:#41464a}.alert-dark{color:#293038;background-color:#dcdfe2;border-color:#cdd2d6}.alert-dark hr{border-top-color:#bfc5cb}.alert-dark .alert-link{color:#13171b}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#4e5d6c;border-radius:0}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#df691a;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0}.list-group-item-action{width:100%;color:#fff;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#fff;text-decoration:none;background-color:rgba(255,255,255,.4)}.list-group-item-action:active{color:#ebebeb;background-color:#4e5d6c}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#4e5d6c;border:1px solid transparent}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:rgba(255,255,255,.4);pointer-events:none;background-color:#4e5d6c}.list-group-item.active{z-index:2;color:#fff;background-color:#df691a;border-color:#df691a}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#74370e;background-color:#f6d5bf}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#74370e;background-color:#f3c6a9}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#74370e;border-color:#74370e}.list-group-item-secondary{color:#293038;background-color:#cdd2d6}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#293038;background-color:#bfc5cb}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#293038;border-color:#293038}.list-group-item-success{color:#306030;background-color:#d1ebd1}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#306030;background-color:#bfe3bf}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#306030;border-color:#306030}.list-group-item-info{color:#2f6473;background-color:#d1edf6}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#2f6473;background-color:#bce5f2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#2f6473;border-color:#2f6473}.list-group-item-warning{color:#7d5a29;background-color:#fbe8cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#7d5a29;background-color:#f9ddb5}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#7d5a29;border-color:#7d5a29}.list-group-item-danger{color:#712b29;background-color:#f4cfce}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#712b29;background-color:#efbbb9}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#712b29;border-color:#712b29}.list-group-item-light{color:#595f65;background-color:#e7ebee}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#595f65;background-color:#d8dfe3}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#595f65;border-color:#595f65}.list-group-item-dark{color:#293038;background-color:#cdd2d6}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#293038;background-color:#bfc5cb}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#293038;border-color:#293038}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:#4e5d6c;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#ebebeb;background-color:#4e5d6c;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#4e5d6c;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:0;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:0;border-top-right-radius:0}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid rgba(0,0,0,.2);border-bottom-right-radius:0;border-bottom-left-radius:0}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:0}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#4e5d6c;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:0}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 0}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#4e5d6c}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:0 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#4e5d6c}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#4e5d6c}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid rgba(255,255,255,.075)}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:0 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#4e5d6c}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:rgba(255,255,255,.075);border-bottom:1px solid rgba(242,242,242,.075);border-top-left-radius:0;border-top-right-radius:0}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#ebebeb}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#df691a!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#b15315!important}.bg-secondary{background-color:#4e5d6c!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#39444e!important}.bg-success{background-color:#5cb85c!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#449d44!important}.bg-info{background-color:#5bc0de!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#31b0d5!important}.bg-warning{background-color:#f0ad4e!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#ec971f!important}.bg-danger{background-color:#d9534f!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#c9302c!important}.bg-light{background-color:#abb6c2!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#8d9dad!important}.bg-dark{background-color:#4e5d6c!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#39444e!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#df691a!important}.border-secondary{border-color:#4e5d6c!important}.border-success{border-color:#5cb85c!important}.border-info{border-color:#5bc0de!important}.border-warning{border-color:#f0ad4e!important}.border-danger{border-color:#d9534f!important}.border-light{border-color:#abb6c2!important}.border-dark{border-color:#4e5d6c!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:0!important}.rounded{border-radius:0!important}.rounded-top{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-right{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-bottom{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-left{border-top-left-radius:0!important;border-bottom-left-radius:0!important}.rounded-lg{border-radius:0!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#df691a!important}a.text-primary:focus,a.text-primary:hover{color:#9a4912!important}.text-secondary{color:#4e5d6c!important}a.text-secondary:focus,a.text-secondary:hover{color:#2e3740!important}.text-success{color:#5cb85c!important}a.text-success:focus,a.text-success:hover{color:#3d8b3d!important}.text-info{color:#5bc0de!important}a.text-info:focus,a.text-info:hover{color:#28a1c5!important}.text-warning{color:#f0ad4e!important}a.text-warning:focus,a.text-warning:hover{color:#df8a13!important}.text-danger{color:#d9534f!important}a.text-danger:focus,a.text-danger:hover{color:#b52b27!important}.text-light{color:#abb6c2!important}a.text-light:focus,a.text-light:hover{color:#7e90a2!important}.text-dark{color:#4e5d6c!important}a.text-dark:focus,a.text-dark:hover{color:#2e3740!important}.text-body{color:#ebebeb!important}.text-muted{color:rgba(255,255,255,.4)!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:rgba(0,0,0,.15)}.table .thead-dark th{color:inherit;border-color:rgba(0,0,0,.15)}}.navbar{font-size:.875rem}.btn-primary{background-color:#df691a}.btn-secondary{background-color:#4e5d6c}.btn-success{background-color:#5cb85c}.btn-info{background-color:#5bc0de}.btn-warning{background-color:#f0ad4e}.btn-danger{background-color:#d9534f}.btn-light{background-color:#abb6c2}.btn-dark{background-color:#4e5d6c}.dropdown-menu{font-size:.875rem}.dropdown-header{font-size:.875rem}.blockquote-footer{color:#ebebeb}.table{font-size:.875rem}.table .thead-dark th{color:#fff}.table a:not(.btn){color:#fff;text-decoration:underline}.table .dropdown-menu a{text-decoration:none}.table .text-muted{color:rgba(255,255,255,.4)}.table-primary,.table-primary>td,.table-primary>th{background-color:#df691a}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#4e5d6c}.table-light,.table-light>td,.table-light>th{background-color:#abb6c2}.table-dark{color:#fff}.table-dark,.table-dark>td,.table-dark>th{background-color:#4e5d6c}.table-success,.table-success>td,.table-success>th{background-color:#5cb85c}.table-info,.table-info>td,.table-info>th{background-color:#5bc0de}.table-danger,.table-danger>td,.table-danger>th{background-color:#d9534f}.table-warning,.table-warning>td,.table-warning>th{background-color:#f0ad4e}.table-active,.table-active>td,.table-active>th{background-color:rgba(255,255,255,.075)}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#c85e17}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#43505d}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#9caab7}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#43505d}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#4cae4c}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#46b8da}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#d43f3a}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#eea236}.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(255,255,255,.075)}.checkbox label,.help-block,.radio label,label{font-size:.875rem}.nav-pills .nav-link,.nav-pills .nav-link:hover,.nav-tabs .nav-link,.nav-tabs .nav-link:hover{color:#ebebeb}.nav-pills .nav-link.disabled,.nav-tabs .nav-link.disabled{color:rgba(255,255,255,.4)}.page-link:focus,.page-link:hover{color:#fff;text-decoration:none}.alert{border:none;color:#fff}.alert .alert-link,.alert a{color:#fff;text-decoration:underline}.alert-primary{background-color:#df691a}.alert-secondary{background-color:#4e5d6c}.alert-success{background-color:#5cb85c}.alert-info{background-color:#5bc0de}.alert-warning{background-color:#f0ad4e}.alert-danger{background-color:#d9534f}.alert-light{background-color:#abb6c2}.alert-dark{background-color:#4e5d6c}.badge-info,.badge-warning{color:#fff}.close{color:#fff;text-shadow:none;opacity:.5}.close:focus,.close:hover{opacity:1}.popover-header{border-top-left-radius:0;border-top-right-radius:0}.modal-footer,.modal-header{background-color:rgba(255,255,255,.075)} \ No newline at end of file diff --git a/Firmware/platformio/data/css/brands.min.css b/Firmware/platformio/data/css/brands.min.css new file mode 100644 index 0000000..bdd4a24 --- /dev/null +++ b/Firmware/platformio/data/css/brands.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400} \ No newline at end of file diff --git a/Firmware/platformio/data/css/custom.min.css b/Firmware/platformio/data/css/custom.min.css new file mode 100644 index 0000000..70e2108 --- /dev/null +++ b/Firmware/platformio/data/css/custom.min.css @@ -0,0 +1,273 @@ +body { + padding-top: 120px; + background-color: #212529; +} +pre { + background: #f7f7f9; +} +iframe { + overflow: hidden; + border: none; +} +@media (min-width: 768px) { + body > .navbar-transparent { + box-shadow: none; + } + body > .navbar-transparent .navbar-nav > .open > a { + box-shadow: none; + } +} +.dark-bg { + background-color: #212529; +} +.light-bg { + background-color: #212529; +} +#home, +#help { + font-size: 0.9rem; +} +#home .navbar, +#help .navbar { + background: #349aed; + background: linear-gradient(145deg, #349aed 50%, #34d8ed 100%); + transition: box-shadow 200ms ease-in; +} +#home .navbar-transparent, +#help .navbar-transparent { + background: none !important; + box-shadow: none; +} +#home .navbar-brand .nav-link, +#help .navbar-brand .nav-link { + display: inline-block; + margin-right: -30px; +} +#home .nav-link, +#help .nav-link { + text-transform: uppercase; + font-weight: 500; + color: #fff; +} +#home { + padding-top: 0; +} +#home .btn { + padding: 0.6rem 0.55rem 0.5rem; + box-shadow: none; + font-size: 0.7rem; + font-weight: 500; +} +.bs-docs-section { + margin-top: 4em; +} +.bs-docs-section .page-header h1 { + padding: 2rem 0; + font-size: 3rem; +} +.dropdown-menu.show[aria-labelledby="themes"] { + display: -ms-flexbox; + display: flex; + width: 420px; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} +.dropdown-menu.show[aria-labelledby="themes"] .dropdown-item { + width: 33.333%; +} +.dropdown-menu.show[aria-labelledby="themes"] .dropdown-item:first-child { + width: 100%; +} +.bs-component { + position: relative; +} +.bs-component + .bs-component { + margin-top: 1rem; +} +.bs-component .card { + margin-bottom: 1rem; +} +.bs-component .modal { + position: relative; + top: auto; + right: auto; + left: auto; + bottom: auto; + z-index: 1; + display: block; +} +.bs-component .modal-dialog { + width: 90%; +} +.bs-component .popover { + position: relative; + display: inline-block; + width: 220px; + margin: 20px; +} +.source-button { + display: none; + position: absolute; + top: 0; + right: 0; + z-index: 100; + font-weight: 700; +} +.source-button:hover { + cursor: pointer; +} +.bs-component:hover .source-button { + display: block; +} +#source-modal pre { + max-height: calc(100vh - 11rem); + background-color: rgba(0, 0, 0, 0.7); + color: rgba(255, 255, 255, 0.7); +} +.nav-tabs { + margin-bottom: 15px; +} +.progress { + margin-bottom: 10px; +} + +#footer { + margin: 5em 0; +} +#footer li { + float: left; + margin-right: 1.5em; + margin-bottom: 1.5em; +} +#footer p { + clear: left; + margin-bottom: 0; +} +.splash { + padding: 12em 0 6em; + background: #349aed; + background: linear-gradient(145deg, #349aed 50%, #34d8ed 100%); + color: #fff; + text-align: center; +} +.splash .logo { + width: 160px; +} +.splash h1 { + font-size: 3em; + color: #fff; +} +.splash #social { + margin: 2em 0 3em; +} +.splash .alert { + margin: 2em 0; + border: none; +} +.splash .sponsor a { + color: #fff; +} +.section-tout { + padding: 6em 0 1em; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + background-color: #eaf1f1; + text-align: center; +} +.section-tout .icon { + display: -ms-flexbox; + display: flex; + -ms-flex-pack: center; + justify-content: center; + -ms-flex-align: center; + align-items: center; + width: 80px; + height: 80px; + margin: 0 auto 1rem; + background: #349aed; + background: linear-gradient(145deg, #3b9cea 50%, #3db8eb 100%); + border-radius: 50%; + font-size: 2rem; + color: rgba(0, 0, 0, 0.5); +} +.section-tout p { + margin-bottom: 5em; +} +.section-preview { + padding: 4em 0; +} +.section-preview .preview { + margin-bottom: 4em; + background-color: #eaf1f1; +} +.section-preview .preview .image { + position: relative; +} +.section-preview .preview .image::before { + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + content: ""; + pointer-events: none; +} +.section-preview .preview .options { + padding: 2em; + border: 1px solid rgba(0, 0, 0, 0.05); + border-top: none; + text-align: center; +} +.section-preview .preview .options p { + margin-bottom: 2em; +} +.section-preview .dropdown-menu { + text-align: left; +} +.section-preview .lead { + margin-bottom: 2em; +} +.sponsor #carbonads { + max-width: 240px; + margin: 0 auto; +} +.sponsor .carbon-text { + display: block; + margin-top: 1em; + font-size: 12px; +} +.sponsor .carbon-poweredby { + float: right; + margin-top: 1em; + font-size: 10px; +} +@media (max-width: 767px) { + .splash { + padding-top: 8em; + } + .splash .logo { + width: 100px; + } + .splash h1 { + font-size: 2em; + } + #banner { + margin-bottom: 2em; + text-align: center; + } +} + +.btn-group { + font-size: 13px; +} + +.tooltip { + display: none; + position: absolute; + padding: 10px; + color: #777; + background-color: #fff; + border: 1px solid #777; + box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.5); + border-radius: 3px; +} diff --git a/Firmware/platformio/data/css/fontawesome.min.css b/Firmware/platformio/data/css/fontawesome.min.css new file mode 100644 index 0000000..bec9b39 --- /dev/null +++ b/Firmware/platformio/data/css/fontawesome.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/Firmware/platformio/data/css/solid.min.css b/Firmware/platformio/data/css/solid.min.css new file mode 100644 index 0000000..acdb46d --- /dev/null +++ b/Firmware/platformio/data/css/solid.min.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} \ No newline at end of file diff --git a/Firmware/platformio/data/img/favicon.png b/Firmware/platformio/data/img/favicon.png new file mode 100644 index 0000000..fe53531 Binary files /dev/null and b/Firmware/platformio/data/img/favicon.png differ diff --git a/Firmware/platformio/data/img/help.png b/Firmware/platformio/data/img/help.png new file mode 100644 index 0000000..8952645 Binary files /dev/null and b/Firmware/platformio/data/img/help.png differ diff --git a/Firmware/platformio/data/index.html b/Firmware/platformio/data/index.html new file mode 100644 index 0000000..e3afe4b --- /dev/null +++ b/Firmware/platformio/data/index.html @@ -0,0 +1,186 @@ + + + + + Filament Dry Box - Sasa Karanovic + + + + + + + + + + + + +
+ +
+ +
+ + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Dry box is ??
InsideOutside
Temperature??°C??°C
Humidity??%??%
CurrentLimit
Heater Temperature??°C??°C
Temperature Inside??°C??°C
Fan speed??%
+
+
+
+ +
+ + + +
+
+ +
+

Control

+
+ + +
+ Temperature + +
+ +
+ +
+ +
+ + Fan speed +
+ +
+ +
+ +
+ + Max Heater Temperature +
+ +
+ +
+ +
+
+ +
+
+ + +
+
+
+
+ +
+ +
+ + + + + + + + + + diff --git a/Firmware/platformio/data/js/bootstrap.bundle.min.js b/Firmware/platformio/data/js/bootstrap.bundle.min.js new file mode 100644 index 0000000..cc0a255 --- /dev/null +++ b/Firmware/platformio/data/js/bootstrap.bundle.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v5.1.3 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t="transitionend",e=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return e},i=t=>{const i=e(t);return i&&document.querySelector(i)?i:null},n=t=>{const i=e(t);return i?document.querySelector(i):null},s=e=>{e.dispatchEvent(new Event(t))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(t):null,a=(t,e,i)=>{Object.keys(i).forEach((n=>{const s=i[n],r=e[n],a=r&&o(r)?"element":null==(l=r)?`${l}`:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();var l;if(!new RegExp(s).test(a))throw new TypeError(`${t.toUpperCase()}: Option "${n}" provided type "${a}" but expected type "${s}".`)}))},l=t=>!(!o(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),c=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),h=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?h(t.parentNode):null},d=()=>{},u=t=>{t.offsetHeight},f=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},p=[],m=()=>"rtl"===document.documentElement.dir,g=t=>{var e;e=()=>{const e=f();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(p.length||document.addEventListener("DOMContentLoaded",(()=>{p.forEach((t=>t()))})),p.push(e)):e()},_=t=>{"function"==typeof t&&t()},b=(e,i,n=!0)=>{if(!n)return void _(e);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(i)+5;let r=!1;const a=({target:n})=>{n===i&&(r=!0,i.removeEventListener(t,a),_(e))};i.addEventListener(t,a),setTimeout((()=>{r||s(i)}),o)},v=(t,e,i,n)=>{let s=t.indexOf(e);if(-1===s)return t[!i&&n?t.length-1:0];const o=t.length;return s+=i?1:-1,n&&(s=(s+o)%o),t[Math.max(0,Math.min(s,o-1))]},y=/[^.]*(?=\..*)\.|.*/,w=/\..*/,E=/::\d+$/,A={};let T=1;const O={mouseenter:"mouseover",mouseleave:"mouseout"},C=/^(mouseenter|mouseleave)/i,k=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function L(t,e){return e&&`${e}::${T++}`||t.uidEvent||T++}function x(t){const e=L(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function D(t,e,i=null){const n=Object.keys(t);for(let s=0,o=n.length;sfunction(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};n?n=t(n):i=t(i)}const[o,r,a]=S(e,i,n),l=x(t),c=l[a]||(l[a]={}),h=D(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=L(r,e.replace(y,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return s.delegateTarget=r,n.oneOff&&j.off(t,s.type,e,i),i.apply(r,[s]);return null}}(t,i,n):function(t,e){return function i(n){return n.delegateTarget=t,i.oneOff&&j.off(t,n.type,e),e.apply(t,[n])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function I(t,e,i,n,s){const o=D(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function P(t){return t=t.replace(w,""),O[t]||t}const j={on(t,e,i,n){N(t,e,i,n,!1)},one(t,e,i,n){N(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=S(e,i,n),a=r!==e,l=x(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void I(t,l,r,o,s?i:null)}c&&Object.keys(l).forEach((i=>{!function(t,e,i,n){const s=e[i]||{};Object.keys(s).forEach((o=>{if(o.includes(n)){const n=s[o];I(t,e,i,n.originalHandler,n.delegationSelector)}}))}(t,l,i,e.slice(1))}));const h=l[r]||{};Object.keys(h).forEach((i=>{const n=i.replace(E,"");if(!a||e.includes(n)){const e=h[i];I(t,l,r,e.originalHandler,e.delegationSelector)}}))},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=f(),s=P(e),o=e!==s,r=k.has(s);let a,l=!0,c=!0,h=!1,d=null;return o&&n&&(a=n.Event(e,i),n(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(s,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach((t=>{Object.defineProperty(d,t,{get:()=>i[t]})})),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},M=new Map,H={set(t,e,i){M.has(t)||M.set(t,new Map);const n=M.get(t);n.has(e)||0===n.size?n.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(n.keys())[0]}.`)},get:(t,e)=>M.has(t)&&M.get(t).get(e)||null,remove(t,e){if(!M.has(t))return;const i=M.get(t);i.delete(e),0===i.size&&M.delete(t)}};class B{constructor(t){(t=r(t))&&(this._element=t,H.set(this._element,this.constructor.DATA_KEY,this))}dispose(){H.remove(this._element,this.constructor.DATA_KEY),j.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach((t=>{this[t]=null}))}_queueCallback(t,e,i=!0){b(t,e,i)}static getInstance(t){return H.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.1.3"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}}const R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,s=t.NAME;j.on(document,i,`[data-bs-dismiss="${s}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),c(this))return;const o=n(this)||this.closest(`.${s}`);t.getOrCreateInstance(o)[e]()}))};class W extends B{static get NAME(){return"alert"}close(){if(j.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),j.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(W,"close"),g(W);const $='[data-bs-toggle="button"]';class z extends B{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=z.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function q(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function F(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}j.on(document,"click.bs.button.data-api",$,(t=>{t.preventDefault();const e=t.target.closest($);z.getOrCreateInstance(e).toggle()})),g(z);const U={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${F(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${F(e)}`)},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter((t=>t.startsWith("bs"))).forEach((i=>{let n=i.replace(/^bs/,"");n=n.charAt(0).toLowerCase()+n.slice(1,n.length),e[n]=q(t.dataset[i])})),e},getDataAttribute:(t,e)=>q(t.getAttribute(`data-bs-${F(e)}`)),offset(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset,left:e.left+window.pageXOffset}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},V={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode;for(;n&&n.nodeType===Node.ELEMENT_NODE&&3!==n.nodeType;)n.matches(e)&&i.push(n),n=n.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(", ");return this.find(e,t).filter((t=>!c(t)&&l(t)))}},K="carousel",X={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},Y={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},Q="next",G="prev",Z="left",J="right",tt={ArrowLeft:J,ArrowRight:Z},et="slid.bs.carousel",it="active",nt=".active.carousel-item";class st extends B{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=V.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return X}static get NAME(){return K}next(){this._slide(Q)}nextWhenVisible(){!document.hidden&&l(this._element)&&this.next()}prev(){this._slide(G)}pause(t){t||(this._isPaused=!0),V.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(s(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=V.findOne(nt,this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void j.one(this._element,et,(()=>this.to(t)));if(e===t)return this.pause(),void this.cycle();const i=t>e?Q:G;this._slide(i,this._items[t])}_getConfig(t){return t={...X,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(K,t,Y),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?J:Z)}_addEventListeners(){this._config.keyboard&&j.on(this._element,"keydown.bs.carousel",(t=>this._keydown(t))),"hover"===this._config.pause&&(j.on(this._element,"mouseenter.bs.carousel",(t=>this.pause(t))),j.on(this._element,"mouseleave.bs.carousel",(t=>this.cycle(t)))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>this._pointerEvent&&("pen"===t.pointerType||"touch"===t.pointerType),e=e=>{t(e)?this.touchStartX=e.clientX:this._pointerEvent||(this.touchStartX=e.touches[0].clientX)},i=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},n=e=>{t(e)&&(this.touchDeltaX=e.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((t=>this.cycle(t)),500+this._config.interval))};V.find(".carousel-item img",this._element).forEach((t=>{j.on(t,"dragstart.bs.carousel",(t=>t.preventDefault()))})),this._pointerEvent?(j.on(this._element,"pointerdown.bs.carousel",(t=>e(t))),j.on(this._element,"pointerup.bs.carousel",(t=>n(t))),this._element.classList.add("pointer-event")):(j.on(this._element,"touchstart.bs.carousel",(t=>e(t))),j.on(this._element,"touchmove.bs.carousel",(t=>i(t))),j.on(this._element,"touchend.bs.carousel",(t=>n(t))))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=tt[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?V.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const i=t===Q;return v(this._items,e,i,this._config.wrap)}_triggerSlideEvent(t,e){const i=this._getItemIndex(t),n=this._getItemIndex(V.findOne(nt,this._element));return j.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:n,to:i})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=V.findOne(".active",this._indicatorsElement);e.classList.remove(it),e.removeAttribute("aria-current");const i=V.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e{j.trigger(this._element,et,{relatedTarget:o,direction:d,from:s,to:r})};if(this._element.classList.contains("slide")){o.classList.add(h),u(o),n.classList.add(c),o.classList.add(c);const t=()=>{o.classList.remove(c,h),o.classList.add(it),n.classList.remove(it,h,c),this._isSliding=!1,setTimeout(f,0)};this._queueCallback(t,n,!0)}else n.classList.remove(it),o.classList.add(it),this._isSliding=!1,f();a&&this.cycle()}_directionToOrder(t){return[J,Z].includes(t)?m()?t===Z?G:Q:t===Z?Q:G:t}_orderToDirection(t){return[Q,G].includes(t)?m()?t===G?Z:J:t===G?J:Z:t}static carouselInterface(t,e){const i=st.getOrCreateInstance(t,e);let{_config:n}=i;"object"==typeof e&&(n={...n,...e});const s="string"==typeof e?e:n.slide;if("number"==typeof e)i.to(e);else if("string"==typeof s){if(void 0===i[s])throw new TypeError(`No method named "${s}"`);i[s]()}else n.interval&&n.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){st.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=n(this);if(!e||!e.classList.contains("carousel"))return;const i={...U.getDataAttributes(e),...U.getDataAttributes(this)},s=this.getAttribute("data-bs-slide-to");s&&(i.interval=!1),st.carouselInterface(e,i),s&&st.getInstance(e).to(s),t.preventDefault()}}j.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",st.dataApiClickHandler),j.on(window,"load.bs.carousel.data-api",(()=>{const t=V.find('[data-bs-ride="carousel"]');for(let e=0,i=t.length;et===this._element));null!==s&&o.length&&(this._selector=s,this._triggerArray.push(e))}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return rt}static get NAME(){return ot}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t,e=[];if(this._config.parent){const t=V.find(ut,this._config.parent);e=V.find(".collapse.show, .collapse.collapsing",this._config.parent).filter((e=>!t.includes(e)))}const i=V.findOne(this._selector);if(e.length){const n=e.find((t=>i!==t));if(t=n?pt.getInstance(n):null,t&&t._isTransitioning)return}if(j.trigger(this._element,"show.bs.collapse").defaultPrevented)return;e.forEach((e=>{i!==e&&pt.getOrCreateInstance(e,{toggle:!1}).hide(),t||H.set(e,"bs.collapse",null)}));const n=this._getDimension();this._element.classList.remove(ct),this._element.classList.add(ht),this._element.style[n]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const s=`scroll${n[0].toUpperCase()+n.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct,lt),this._element.style[n]="",j.trigger(this._element,"shown.bs.collapse")}),this._element,!0),this._element.style[n]=`${this._element[s]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(j.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,u(this._element),this._element.classList.add(ht),this._element.classList.remove(ct,lt);const e=this._triggerArray.length;for(let t=0;t{this._isTransitioning=!1,this._element.classList.remove(ht),this._element.classList.add(ct),j.trigger(this._element,"hidden.bs.collapse")}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(lt)}_getConfig(t){return(t={...rt,...U.getDataAttributes(this._element),...t}).toggle=Boolean(t.toggle),t.parent=r(t.parent),a(ot,t,at),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=V.find(ut,this._config.parent);V.find(ft,this._config.parent).filter((e=>!t.includes(e))).forEach((t=>{const e=n(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))}))}_addAriaAndCollapsedClass(t,e){t.length&&t.forEach((t=>{e?t.classList.remove(dt):t.classList.add(dt),t.setAttribute("aria-expanded",e)}))}static jQueryInterface(t){return this.each((function(){const e={};"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1);const i=pt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}j.on(document,"click.bs.collapse.data-api",ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=i(this);V.find(e).forEach((t=>{pt.getOrCreateInstance(t,{toggle:!1}).toggle()}))})),g(pt);var mt="top",gt="bottom",_t="right",bt="left",vt="auto",yt=[mt,gt,_t,bt],wt="start",Et="end",At="clippingParents",Tt="viewport",Ot="popper",Ct="reference",kt=yt.reduce((function(t,e){return t.concat([e+"-"+wt,e+"-"+Et])}),[]),Lt=[].concat(yt,[vt]).reduce((function(t,e){return t.concat([e,e+"-"+wt,e+"-"+Et])}),[]),xt="beforeRead",Dt="read",St="afterRead",Nt="beforeMain",It="main",Pt="afterMain",jt="beforeWrite",Mt="write",Ht="afterWrite",Bt=[xt,Dt,St,Nt,It,Pt,jt,Mt,Ht];function Rt(t){return t?(t.nodeName||"").toLowerCase():null}function Wt(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function $t(t){return t instanceof Wt(t).Element||t instanceof Element}function zt(t){return t instanceof Wt(t).HTMLElement||t instanceof HTMLElement}function qt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof Wt(t).ShadowRoot||t instanceof ShadowRoot)}const Ft={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];zt(s)&&Rt(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});zt(n)&&Rt(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function Ut(t){return t.split("-")[0]}function Vt(t,e){var i=t.getBoundingClientRect();return{width:i.width/1,height:i.height/1,top:i.top/1,right:i.right/1,bottom:i.bottom/1,left:i.left/1,x:i.left/1,y:i.top/1}}function Kt(t){var e=Vt(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Xt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&qt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function Yt(t){return Wt(t).getComputedStyle(t)}function Qt(t){return["table","td","th"].indexOf(Rt(t))>=0}function Gt(t){return(($t(t)?t.ownerDocument:t.document)||window.document).documentElement}function Zt(t){return"html"===Rt(t)?t:t.assignedSlot||t.parentNode||(qt(t)?t.host:null)||Gt(t)}function Jt(t){return zt(t)&&"fixed"!==Yt(t).position?t.offsetParent:null}function te(t){for(var e=Wt(t),i=Jt(t);i&&Qt(i)&&"static"===Yt(i).position;)i=Jt(i);return i&&("html"===Rt(i)||"body"===Rt(i)&&"static"===Yt(i).position)?e:i||function(t){var e=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&zt(t)&&"fixed"===Yt(t).position)return null;for(var i=Zt(t);zt(i)&&["html","body"].indexOf(Rt(i))<0;){var n=Yt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function ee(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}var ie=Math.max,ne=Math.min,se=Math.round;function oe(t,e,i){return ie(t,ne(e,i))}function re(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function ae(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const le={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=Ut(i.placement),l=ee(a),c=[bt,_t].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return re("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:ae(t,yt))}(s.padding,i),d=Kt(o),u="y"===l?mt:bt,f="y"===l?gt:_t,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=te(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,E=oe(v,w,y),A=l;i.modifiersData[n]=((e={})[A]=E,e.centerOffset=E-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Xt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ce(t){return t.split("-")[1]}var he={top:"auto",right:"auto",bottom:"auto",left:"auto"};function de(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=!0===h?function(t){var e=t.x,i=t.y,n=window.devicePixelRatio||1;return{x:se(se(e*n)/n)||0,y:se(se(i*n)/n)||0}}(r):"function"==typeof h?h(r):r,u=d.x,f=void 0===u?0:u,p=d.y,m=void 0===p?0:p,g=r.hasOwnProperty("x"),_=r.hasOwnProperty("y"),b=bt,v=mt,y=window;if(c){var w=te(i),E="clientHeight",A="clientWidth";w===Wt(i)&&"static"!==Yt(w=Gt(i)).position&&"absolute"===a&&(E="scrollHeight",A="scrollWidth"),w=w,s!==mt&&(s!==bt&&s!==_t||o!==Et)||(v=gt,m-=w[E]-n.height,m*=l?1:-1),s!==bt&&(s!==mt&&s!==gt||o!==Et)||(b=_t,f-=w[A]-n.width,f*=l?1:-1)}var T,O=Object.assign({position:a},c&&he);return l?Object.assign({},O,((T={})[v]=_?"0":"",T[b]=g?"0":"",T.transform=(y.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",T)):Object.assign({},O,((e={})[v]=_?m+"px":"",e[b]=g?f+"px":"",e.transform="",e))}const ue={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:Ut(e.placement),variation:ce(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,de(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,de(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var fe={passive:!0};const pe={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=Wt(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,fe)})),a&&l.addEventListener("resize",i.update,fe),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,fe)})),a&&l.removeEventListener("resize",i.update,fe)}},data:{}};var me={left:"right",right:"left",bottom:"top",top:"bottom"};function ge(t){return t.replace(/left|right|bottom|top/g,(function(t){return me[t]}))}var _e={start:"end",end:"start"};function be(t){return t.replace(/start|end/g,(function(t){return _e[t]}))}function ve(t){var e=Wt(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function ye(t){return Vt(Gt(t)).left+ve(t).scrollLeft}function we(t){var e=Yt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ee(t){return["html","body","#document"].indexOf(Rt(t))>=0?t.ownerDocument.body:zt(t)&&we(t)?t:Ee(Zt(t))}function Ae(t,e){var i;void 0===e&&(e=[]);var n=Ee(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=Wt(n),r=s?[o].concat(o.visualViewport||[],we(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Ae(Zt(r)))}function Te(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Oe(t,e){return e===Tt?Te(function(t){var e=Wt(t),i=Gt(t),n=e.visualViewport,s=i.clientWidth,o=i.clientHeight,r=0,a=0;return n&&(s=n.width,o=n.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(r=n.offsetLeft,a=n.offsetTop)),{width:s,height:o,x:r+ye(t),y:a}}(t)):zt(e)?function(t){var e=Vt(t);return e.top=e.top+t.clientTop,e.left=e.left+t.clientLeft,e.bottom=e.top+t.clientHeight,e.right=e.left+t.clientWidth,e.width=t.clientWidth,e.height=t.clientHeight,e.x=e.left,e.y=e.top,e}(e):Te(function(t){var e,i=Gt(t),n=ve(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ie(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ie(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+ye(t),l=-n.scrollTop;return"rtl"===Yt(s||i).direction&&(a+=ie(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Gt(t)))}function Ce(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?Ut(s):null,r=s?ce(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case mt:e={x:a,y:i.y-n.height};break;case gt:e={x:a,y:i.y+i.height};break;case _t:e={x:i.x+i.width,y:l};break;case bt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?ee(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case wt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Et:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ke(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.boundary,r=void 0===o?At:o,a=i.rootBoundary,l=void 0===a?Tt:a,c=i.elementContext,h=void 0===c?Ot:c,d=i.altBoundary,u=void 0!==d&&d,f=i.padding,p=void 0===f?0:f,m=re("number"!=typeof p?p:ae(p,yt)),g=h===Ot?Ct:Ot,_=t.rects.popper,b=t.elements[u?g:h],v=function(t,e,i){var n="clippingParents"===e?function(t){var e=Ae(Zt(t)),i=["absolute","fixed"].indexOf(Yt(t).position)>=0&&zt(t)?te(t):t;return $t(i)?e.filter((function(t){return $t(t)&&Xt(t,i)&&"body"!==Rt(t)})):[]}(t):[].concat(e),s=[].concat(n,[i]),o=s[0],r=s.reduce((function(e,i){var n=Oe(t,i);return e.top=ie(n.top,e.top),e.right=ne(n.right,e.right),e.bottom=ne(n.bottom,e.bottom),e.left=ie(n.left,e.left),e}),Oe(t,o));return r.width=r.right-r.left,r.height=r.bottom-r.top,r.x=r.left,r.y=r.top,r}($t(b)?b:b.contextElement||Gt(t.elements.popper),r,l),y=Vt(t.elements.reference),w=Ce({reference:y,element:_,strategy:"absolute",placement:s}),E=Te(Object.assign({},_,w)),A=h===Ot?E:y,T={top:v.top-A.top+m.top,bottom:A.bottom-v.bottom+m.bottom,left:v.left-A.left+m.left,right:A.right-v.right+m.right},O=t.modifiersData.offset;if(h===Ot&&O){var C=O[s];Object.keys(T).forEach((function(t){var e=[_t,gt].indexOf(t)>=0?1:-1,i=[mt,gt].indexOf(t)>=0?"y":"x";T[t]+=C[i]*e}))}return T}function Le(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?Lt:l,h=ce(n),d=h?a?kt:kt.filter((function(t){return ce(t)===h})):yt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ke(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[Ut(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const xe={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=Ut(g),b=l||(_!==g&&p?function(t){if(Ut(t)===vt)return[];var e=ge(t);return[be(t),e,be(e)]}(g):[ge(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(Ut(i)===vt?Le(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,E=new Map,A=!0,T=v[0],O=0;O=0,D=x?"width":"height",S=ke(e,{placement:C,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),N=x?L?_t:bt:L?gt:mt;y[D]>w[D]&&(N=ge(N));var I=ge(N),P=[];if(o&&P.push(S[k]<=0),a&&P.push(S[N]<=0,S[I]<=0),P.every((function(t){return t}))){T=C,A=!1;break}E.set(C,P)}if(A)for(var j=function(t){var e=v.find((function(e){var i=E.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==j(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function De(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function Se(t){return[mt,_t,gt,bt].some((function(e){return t[e]>=0}))}const Ne={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ke(e,{elementContext:"reference"}),a=ke(e,{altBoundary:!0}),l=De(r,n),c=De(a,s,o),h=Se(l),d=Se(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},Ie={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=Lt.reduce((function(t,i){return t[i]=function(t,e,i){var n=Ut(t),s=[bt,mt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[bt,_t].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},Pe={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=Ce({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},je={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ke(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=Ut(e.placement),b=ce(e.placement),v=!b,y=ee(_),w="x"===y?"y":"x",E=e.modifiersData.popperOffsets,A=e.rects.reference,T=e.rects.popper,O="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,C={x:0,y:0};if(E){if(o||a){var k="y"===y?mt:bt,L="y"===y?gt:_t,x="y"===y?"height":"width",D=E[y],S=E[y]+g[k],N=E[y]-g[L],I=f?-T[x]/2:0,P=b===wt?A[x]:T[x],j=b===wt?-T[x]:-A[x],M=e.elements.arrow,H=f&&M?Kt(M):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},R=B[k],W=B[L],$=oe(0,A[x],H[x]),z=v?A[x]/2-I-$-R-O:P-$-R-O,q=v?-A[x]/2+I+$+W+O:j+$+W+O,F=e.elements.arrow&&te(e.elements.arrow),U=F?"y"===y?F.clientTop||0:F.clientLeft||0:0,V=e.modifiersData.offset?e.modifiersData.offset[e.placement][y]:0,K=E[y]+z-V-U,X=E[y]+q-V;if(o){var Y=oe(f?ne(S,K):S,D,f?ie(N,X):N);E[y]=Y,C[y]=Y-D}if(a){var Q="x"===y?mt:bt,G="x"===y?gt:_t,Z=E[w],J=Z+g[Q],tt=Z-g[G],et=oe(f?ne(J,K):J,Z,f?ie(tt,X):tt);E[w]=et,C[w]=et-Z}}e.modifiersData[n]=C}},requiresIfExists:["offset"]};function Me(t,e,i){void 0===i&&(i=!1);var n=zt(e);zt(e)&&function(t){var e=t.getBoundingClientRect();e.width,t.offsetWidth,e.height,t.offsetHeight}(e);var s,o,r=Gt(e),a=Vt(t),l={scrollLeft:0,scrollTop:0},c={x:0,y:0};return(n||!n&&!i)&&(("body"!==Rt(e)||we(r))&&(l=(s=e)!==Wt(s)&&zt(s)?{scrollLeft:(o=s).scrollLeft,scrollTop:o.scrollTop}:ve(s)),zt(e)?((c=Vt(e)).x+=e.clientLeft,c.y+=e.clientTop):r&&(c.x=ye(r))),{x:a.left+l.scrollLeft-c.x,y:a.top+l.scrollTop-c.y,width:a.width,height:a.height}}function He(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var Be={placement:"bottom",modifiers:[],strategy:"absolute"};function Re(){for(var t=arguments.length,e=new Array(t),i=0;ij.on(t,"mouseover",d))),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add(Je),this._element.classList.add(Je),j.trigger(this._element,"shown.bs.dropdown",t)}hide(){if(c(this._element)||!this._isShown(this._menu))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){j.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._popper&&this._popper.destroy(),this._menu.classList.remove(Je),this._element.classList.remove(Je),this._element.setAttribute("aria-expanded","false"),U.removeDataAttribute(this._menu,"popper"),j.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...U.getDataAttributes(this._element),...t},a(Ue,t,this.constructor.DefaultType),"object"==typeof t.reference&&!o(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${Ue.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(t){if(void 0===Fe)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:o(this._config.reference)?e=r(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const i=this._getPopperConfig(),n=i.modifiers.find((t=>"applyStyles"===t.name&&!1===t.enabled));this._popper=qe(e,this._menu,i),n&&U.setDataAttribute(this._menu,"popper","static")}_isShown(t=this._element){return t.classList.contains(Je)}_getMenuElement(){return V.next(this._element,ei)[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return ri;if(t.classList.contains("dropstart"))return ai;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ni:ii:e?oi:si}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const i=V.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(l);i.length&&v(i,e,t===Ye,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=V.find(ti);for(let i=0,n=e.length;ie+t)),this._setElementAttributes(di,"paddingRight",(e=>e+t)),this._setElementAttributes(ui,"marginRight",(e=>e-t))}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t)[e];t.style[e]=`${i(Number.parseFloat(s))}px`}))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(di,"paddingRight"),this._resetElementAttributes(ui,"marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&U.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=U.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(U.removeDataAttribute(t,e),t.style[e]=i)}))}_applyManipulationCallback(t,e){o(t)?e(t):V.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const pi={className:"modal-backdrop",isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},mi={className:"string",isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"},gi="show",_i="mousedown.bs.backdrop";class bi{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&u(this._getElement()),this._getElement().classList.add(gi),this._emulateAnimation((()=>{_(t)}))):_(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove(gi),this._emulateAnimation((()=>{this.dispose(),_(t)}))):_(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...pi,..."object"==typeof t?t:{}}).rootElement=r(t.rootElement),a("backdrop",t,mi),t}_append(){this._isAppended||(this._config.rootElement.append(this._getElement()),j.on(this._getElement(),_i,(()=>{_(this._config.clickCallback)})),this._isAppended=!0)}dispose(){this._isAppended&&(j.off(this._element,_i),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){b(t,this._getElement(),this._config.isAnimated)}}const vi={trapElement:null,autofocus:!0},yi={trapElement:"element",autofocus:"boolean"},wi=".bs.focustrap",Ei="backward";class Ai{constructor(t){this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}activate(){const{trapElement:t,autofocus:e}=this._config;this._isActive||(e&&t.focus(),j.off(document,wi),j.on(document,"focusin.bs.focustrap",(t=>this._handleFocusin(t))),j.on(document,"keydown.tab.bs.focustrap",(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,j.off(document,wi))}_handleFocusin(t){const{target:e}=t,{trapElement:i}=this._config;if(e===document||e===i||i.contains(e))return;const n=V.focusableChildren(i);0===n.length?i.focus():this._lastTabNavDirection===Ei?n[n.length-1].focus():n[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?Ei:"forward")}_getConfig(t){return t={...vi,..."object"==typeof t?t:{}},a("focustrap",t,yi),t}}const Ti="modal",Oi="Escape",Ci={backdrop:!0,keyboard:!0,focus:!0},ki={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"},Li="hidden.bs.modal",xi="show.bs.modal",Di="resize.bs.modal",Si="click.dismiss.bs.modal",Ni="keydown.dismiss.bs.modal",Ii="mousedown.dismiss.bs.modal",Pi="modal-open",ji="show",Mi="modal-static";class Hi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=V.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new fi}static get Default(){return Ci}static get NAME(){return Ti}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||j.trigger(this._element,xi,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add(Pi),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),j.on(this._dialog,Ii,(()=>{j.one(this._element,"mouseup.dismiss.bs.modal",(t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)}))})),this._showBackdrop((()=>this._showElement(t))))}hide(){if(!this._isShown||this._isTransitioning)return;if(j.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const t=this._isAnimated();t&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),this._focustrap.deactivate(),this._element.classList.remove(ji),j.off(this._element,Si),j.off(this._dialog,Ii),this._queueCallback((()=>this._hideModal()),this._element,t)}dispose(){[window,this._dialog].forEach((t=>j.off(t,".bs.modal"))),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new bi({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_getConfig(t){return t={...Ci,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Ti,t,ki),t}_showElement(t){const e=this._isAnimated(),i=V.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,i&&(i.scrollTop=0),e&&u(this._element),this._element.classList.add(ji),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,j.trigger(this._element,"shown.bs.modal",{relatedTarget:t})}),this._dialog,e)}_setEscapeEvent(){this._isShown?j.on(this._element,Ni,(t=>{this._config.keyboard&&t.key===Oi?(t.preventDefault(),this.hide()):this._config.keyboard||t.key!==Oi||this._triggerBackdropTransition()})):j.off(this._element,Ni)}_setResizeEvent(){this._isShown?j.on(window,Di,(()=>this._adjustDialog())):j.off(window,Di)}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(Pi),this._resetAdjustments(),this._scrollBar.reset(),j.trigger(this._element,Li)}))}_showBackdrop(t){j.on(this._element,Si,(t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())})),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(j.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,n=e>document.documentElement.clientHeight;!n&&"hidden"===i.overflowY||t.contains(Mi)||(n||(i.overflowY="hidden"),t.add(Mi),this._queueCallback((()=>{t.remove(Mi),n||this._queueCallback((()=>{i.overflowY=""}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!m()||i&&!t&&m())&&(this._element.style.paddingLeft=`${e}px`),(i&&!t&&!m()||!i&&t&&m())&&(this._element.style.paddingRight=`${e}px`)}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Hi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}j.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=n(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),j.one(e,xi,(t=>{t.defaultPrevented||j.one(e,Li,(()=>{l(this)&&this.focus()}))}));const i=V.findOne(".modal.show");i&&Hi.getInstance(i).hide(),Hi.getOrCreateInstance(e).toggle(this)})),R(Hi),g(Hi);const Bi="offcanvas",Ri={backdrop:!0,keyboard:!0,scroll:!1},Wi={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"},$i="show",zi=".offcanvas.show",qi="hidden.bs.offcanvas";class Fi extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get NAME(){return Bi}static get Default(){return Ri}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||j.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(new fi).hide(),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add($i),this._queueCallback((()=>{this._config.scroll||this._focustrap.activate(),j.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(j.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.remove($i),this._backdrop.hide(),this._queueCallback((()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new fi).reset(),j.trigger(this._element,qi)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_getConfig(t){return t={...Ri,...U.getDataAttributes(this._element),..."object"==typeof t?t:{}},a(Bi,t,Wi),t}_initializeBackDrop(){return new bi({className:"offcanvas-backdrop",isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_initializeFocusTrap(){return new Ai({trapElement:this._element})}_addEventListeners(){j.on(this._element,"keydown.dismiss.bs.offcanvas",(t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()}))}static jQueryInterface(t){return this.each((function(){const e=Fi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}j.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=n(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this))return;j.one(e,qi,(()=>{l(this)&&this.focus()}));const i=V.findOne(zi);i&&i!==e&&Fi.getInstance(i).hide(),Fi.getOrCreateInstance(e).toggle(this)})),j.on(window,"load.bs.offcanvas.data-api",(()=>V.find(zi).forEach((t=>Fi.getOrCreateInstance(t).show())))),R(Fi),g(Fi);const Ui=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Vi=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,Ki=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Xi=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!Ui.has(i)||Boolean(Vi.test(t.nodeValue)||Ki.test(t.nodeValue));const n=e.filter((t=>t instanceof RegExp));for(let t=0,e=n.length;t{Xi(t,r)||i.removeAttribute(t.nodeName)}))}return n.body.innerHTML}const Qi="tooltip",Gi=new Set(["sanitize","allowList","sanitizeFn"]),Zi={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},Ji={AUTO:"auto",TOP:"top",RIGHT:m()?"left":"right",BOTTOM:"bottom",LEFT:m()?"right":"left"},tn={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},en={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},nn="fade",sn="show",on="show",rn="out",an=".tooltip-inner",ln=".modal",cn="hide.bs.modal",hn="hover",dn="focus";class un extends B{constructor(t,e){if(void 0===Fe)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return tn}static get NAME(){return Qi}static get Event(){return en}static get DefaultType(){return Zi}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains(sn))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),j.off(this._element.closest(ln),cn,this._hideModalHandler),this.tip&&this.tip.remove(),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=j.trigger(this._element,this.constructor.Event.SHOW),e=h(this._element),i=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!i)return;"tooltip"===this.constructor.NAME&&this.tip&&this.getTitle()!==this.tip.querySelector(an).innerHTML&&(this._disposePopper(),this.tip.remove(),this.tip=null);const n=this.getTipElement(),s=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME);n.setAttribute("id",s),this._element.setAttribute("aria-describedby",s),this._config.animation&&n.classList.add(nn);const o="function"==typeof this._config.placement?this._config.placement.call(this,n,this._element):this._config.placement,r=this._getAttachment(o);this._addAttachmentClass(r);const{container:a}=this._config;H.set(n,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(a.append(n),j.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=qe(this._element,n,this._getPopperConfig(r)),n.classList.add(sn);const l=this._resolvePossibleFunction(this._config.customClass);l&&n.classList.add(...l.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>{j.on(t,"mouseover",d)}));const c=this.tip.classList.contains(nn);this._queueCallback((()=>{const t=this._hoverState;this._hoverState=null,j.trigger(this._element,this.constructor.Event.SHOWN),t===rn&&this._leave(null,this)}),this.tip,c)}hide(){if(!this._popper)return;const t=this.getTipElement();if(j.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove(sn),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach((t=>j.off(t,"mouseover",d))),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains(nn);this._queueCallback((()=>{this._isWithActiveTrigger()||(this._hoverState!==on&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),j.trigger(this._element,this.constructor.Event.HIDDEN),this._disposePopper())}),this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");t.innerHTML=this._config.template;const e=t.children[0];return this.setContent(e),e.classList.remove(nn,sn),this.tip=e,this.tip}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),an)}_sanitizeAndSetContent(t,e,i){const n=V.findOne(i,t);e||!n?this.setElementContent(n,e):n.remove()}setElementContent(t,e){if(null!==t)return o(e)?(e=r(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.append(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=Yi(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){const t=this._element.getAttribute("data-bs-original-title")||this._config.title;return this._resolvePossibleFunction(t)}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){return e||this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return"function"==typeof t?t.call(this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add(`${this._getBasicClassPrefix()}-${this.updateAttachment(t)}`)}_getAttachment(t){return Ji[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach((t=>{if("click"===t)j.on(this._element,this.constructor.Event.CLICK,this._config.selector,(t=>this.toggle(t)));else if("manual"!==t){const e=t===hn?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i=t===hn?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;j.on(this._element,e,this._config.selector,(t=>this._enter(t))),j.on(this._element,i,this._config.selector,(t=>this._leave(t)))}})),this._hideModalHandler=()=>{this._element&&this.hide()},j.on(this._element.closest(ln),cn,this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?dn:hn]=!0),e.getTipElement().classList.contains(sn)||e._hoverState===on?e._hoverState=on:(clearTimeout(e._timeout),e._hoverState=on,e._config.delay&&e._config.delay.show?e._timeout=setTimeout((()=>{e._hoverState===on&&e.show()}),e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?dn:hn]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=rn,e._config.delay&&e._config.delay.hide?e._timeout=setTimeout((()=>{e._hoverState===rn&&e.hide()}),e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=U.getDataAttributes(this._element);return Object.keys(e).forEach((t=>{Gi.has(t)&&delete e[t]})),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),a(Qi,t,this.constructor.DefaultType),t.sanitize&&(t.template=Yi(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=new RegExp(`(^|\\s)${this._getBasicClassPrefix()}\\S+`,"g"),i=t.getAttribute("class").match(e);null!==i&&i.length>0&&i.map((t=>t.trim())).forEach((e=>t.classList.remove(e)))}_getBasicClassPrefix(){return"bs-tooltip"}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null)}static jQueryInterface(t){return this.each((function(){const e=un.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(un);const fn={...un.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},pn={...un.DefaultType,content:"(string|element|function)"},mn={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class gn extends un{static get Default(){return fn}static get NAME(){return"popover"}static get Event(){return mn}static get DefaultType(){return pn}isWithContent(){return this.getTitle()||this._getContent()}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".popover-header"),this._sanitizeAndSetContent(t,this._getContent(),".popover-body")}_getContent(){return this._resolvePossibleFunction(this._config.content)}_getBasicClassPrefix(){return"bs-popover"}static jQueryInterface(t){return this.each((function(){const e=gn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}g(gn);const _n="scrollspy",bn={offset:10,method:"auto",target:""},vn={offset:"number",method:"string",target:"(string|element)"},yn="active",wn=".nav-link, .list-group-item, .dropdown-item",En="position";class An extends B{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,j.on(this._scrollElement,"scroll.bs.scrollspy",(()=>this._process())),this.refresh(),this._process()}static get Default(){return bn}static get NAME(){return _n}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":En,e="auto"===this._config.method?t:this._config.method,n=e===En?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),V.find(wn,this._config.target).map((t=>{const s=i(t),o=s?V.findOne(s):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[U[e](o).top+n,s]}return null})).filter((t=>t)).sort(((t,e)=>t[0]-e[0])).forEach((t=>{this._offsets.push(t[0]),this._targets.push(t[1])}))}dispose(){j.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){return(t={...bn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=r(t.target)||document.documentElement,a(_n,t,vn),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t`${e}[data-bs-target="${t}"],${e}[href="${t}"]`)),i=V.findOne(e.join(","),this._config.target);i.classList.add(yn),i.classList.contains("dropdown-item")?V.findOne(".dropdown-toggle",i.closest(".dropdown")).classList.add(yn):V.parents(i,".nav, .list-group").forEach((t=>{V.prev(t,".nav-link, .list-group-item").forEach((t=>t.classList.add(yn))),V.prev(t,".nav-item").forEach((t=>{V.children(t,".nav-link").forEach((t=>t.classList.add(yn)))}))})),j.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){V.find(wn,this._config.target).filter((t=>t.classList.contains(yn))).forEach((t=>t.classList.remove(yn)))}static jQueryInterface(t){return this.each((function(){const e=An.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(window,"load.bs.scrollspy.data-api",(()=>{V.find('[data-bs-spy="scroll"]').forEach((t=>new An(t)))})),g(An);const Tn="active",On="fade",Cn="show",kn=".active",Ln=":scope > li > .active";class xn extends B{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains(Tn))return;let t;const e=n(this._element),i=this._element.closest(".nav, .list-group");if(i){const e="UL"===i.nodeName||"OL"===i.nodeName?Ln:kn;t=V.find(e,i),t=t[t.length-1]}const s=t?j.trigger(t,"hide.bs.tab",{relatedTarget:this._element}):null;if(j.trigger(this._element,"show.bs.tab",{relatedTarget:t}).defaultPrevented||null!==s&&s.defaultPrevented)return;this._activate(this._element,i);const o=()=>{j.trigger(t,"hidden.bs.tab",{relatedTarget:this._element}),j.trigger(this._element,"shown.bs.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,o):o()}_activate(t,e,i){const n=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?V.children(e,kn):V.find(Ln,e))[0],s=i&&n&&n.classList.contains(On),o=()=>this._transitionComplete(t,n,i);n&&s?(n.classList.remove(Cn),this._queueCallback(o,t,!0)):o()}_transitionComplete(t,e,i){if(e){e.classList.remove(Tn);const t=V.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove(Tn),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add(Tn),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),u(t),t.classList.contains(On)&&t.classList.add(Cn);let n=t.parentNode;if(n&&"LI"===n.nodeName&&(n=n.parentNode),n&&n.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&V.find(".dropdown-toggle",e).forEach((t=>t.classList.add(Tn))),t.setAttribute("aria-expanded",!0)}i&&i()}static jQueryInterface(t){return this.each((function(){const e=xn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}j.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),c(this)||xn.getOrCreateInstance(this).show()})),g(xn);const Dn="toast",Sn="hide",Nn="show",In="showing",Pn={animation:"boolean",autohide:"boolean",delay:"number"},jn={animation:!0,autohide:!0,delay:5e3};class Mn extends B{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Pn}static get Default(){return jn}static get NAME(){return Dn}show(){j.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Sn),u(this._element),this._element.classList.add(Nn),this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.remove(In),j.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this._element.classList.contains(Nn)&&(j.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add(In),this._queueCallback((()=>{this._element.classList.add(Sn),this._element.classList.remove(In),this._element.classList.remove(Nn),j.trigger(this._element,"hidden.bs.toast")}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains(Nn)&&this._element.classList.remove(Nn),super.dispose()}_getConfig(t){return t={...jn,...U.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},a(Dn,t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){j.on(this._element,"mouseover.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"mouseout.bs.toast",(t=>this._onInteraction(t,!1))),j.on(this._element,"focusin.bs.toast",(t=>this._onInteraction(t,!0))),j.on(this._element,"focusout.bs.toast",(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Mn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(Mn),g(Mn),{Alert:W,Button:z,Carousel:st,Collapse:pt,Dropdown:hi,Modal:Hi,Offcanvas:Fi,Popover:gn,ScrollSpy:An,Tab:xn,Toast:Mn,Tooltip:un}})); +//# sourceMappingURL=bootstrap.bundle.min.js.map \ No newline at end of file diff --git a/Firmware/platformio/data/js/drybox.js b/Firmware/platformio/data/js/drybox.js new file mode 100644 index 0000000..97eec8a --- /dev/null +++ b/Firmware/platformio/data/js/drybox.js @@ -0,0 +1,144 @@ +// Shorthand for $( document ).ready() +$(function() { + + $('#sliderTemperature').on('input change', function(){ + $("label[for='labelSetTemperature']").text("Target temperature: " + parseInt(this.value) +"°C"); + }); + + $('#sliderHeaterTemperature').on('input change', function(){ + $("label[for='labelSetHeaterTemperature']").text("Max heater temperature: " + parseInt(this.value) +"°C"); + }); + + $('#sliderFanSpeed').on('input change', function(){ + $("label[for='labelSetFanSpeed']").text("Fan speed: " + parseInt(this.value) +"%"); + }); + + $('#btnSet').on('click', function(){ + var temperature = $("#sliderTemperature").val(); + var heater = $("#sliderHeaterTemperature").val(); + var fanspeed = $("#sliderFanSpeed").val(); + + // Send + $.ajax({ + url: "/set", + type: "get", //send it through get method + data: { + temperature: temperature, + heater: heater, + fanspeed: fanspeed, + }, + success: function(response) { + //Do Something + console.log(response); + update_status(false); + }, + error: function(xhr) { + //Do Something to handle error + } + }); + }); + + $('#btnTurnOff').on('click', function(){ + // Send + $.ajax({ + url: "/off", + type: "get", //send it through get method + success: function(response) { + console.log(response); + update_status(false); + }, + error: function(xhr) { + //Do Something to handle error + } + }); + }); + + $('a#pop-temp').popover({ + trigger : 'click', + placement : 'top', + html: true, + title : 'Target Temperature', + content : 'This is the maximum/desired temperature we want inside the box.
\ + The system will try to reach and then maintain this temperature.', + }); + + + $('a#pop-fan').popover({ + trigger : 'click', + placement : 'top', + html: true, + title : 'Fan speed', + content : 'Set the speed of the internal fan used to circulate the air inside the dry box.

\ + 0% = Off
\ + 50% = 50% of fan\'s maximum RPM
\ + 100% = Full speed', + }); + + + $('a#pop-heater').popover({ + trigger : 'click', + placement : 'top', + html: true, + title : 'Max heater temperature', + content : 'Maximum allowed temerature heater can reach.
This limit should be set to avoid damage to your filament or the box/heater itself.
\ + For example; Let\'s say that your heater could reach max temperature of 150°C. However this could start to melt your filament, melt the dry box or start a fire.
\ + In order to avoid this, we set a heater temperature limit to make sure heater never passes this set temperature during normal operation.
\ + This limit will also affect how long it takes to reach target temperature.', + }); + // Finally update status + update_status(true); +}); + + +function update_status(rearm) +{ + var ajaxTime= new Date().getTime(); + + $.ajax({ + url: "/status", + type: "get", //send it through get method + success: function(response) { + console.log(response); + + var res = jQuery.parseJSON(response); + + $('#status-temp-target').text(res.target_temp_in); + $('#status-fan-speed').text(res.fan_speed); + $('#status-temp-inside').text(res.temp_in.toFixed(1)); + $('#status-temp-inside2').text(res.temp_in.toFixed(1)); + $('#status-temp-inside-target').text(res.target_temp_in.toFixed(1)); + $('#status-temp-heater').text(res.temp_heater.toFixed(0)); + $('#status-temp-heater-max').text(res.max_temp_heater.toFixed(0)); + $('#status-humidity-inside').text(res.humid_in.toFixed(0)); + $('#status-temp-outside').text(res.temp_out.toFixed(0)); + $('#status-humidity-outside').text(res.humid_out.toFixed(0)); + + // Homed status + if(res.status == 1) { + $('#status-box').text('Dry box is on').addClass('badge-success').removeClass('badge-warning').removeClass('badge-danger'); + } + else { + $('#status-box').text('Dry box is off').addClass('badge-warning').removeClass('badge-success').removeClass('badge-danger'); + } + + }, + error: function(xhr) { + $('#status-box').text('Dry box is unreachable!').addClass('badge-danger').removeClass('badge-success').removeClass('badge-warning'); + } + }).done(function () { + var totalTime = new Date().getTime()-ajaxTime; + // Here I want to get the how long it took to load some.php and use it further + });; + + if(rearm) { + rearm_status(); + } +} + +function rearm_status() +{ + setTimeout(function () { + update_status(true); + }, 2000); +} + diff --git a/Firmware/platformio/data/js/jquery-3.6.0.min.js b/Firmware/platformio/data/js/jquery-3.6.0.min.js new file mode 100644 index 0000000..c4c6022 --- /dev/null +++ b/Firmware/platformio/data/js/jquery-3.6.0.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 +#include +#include +#include +// Local import +#include "config.h" +#include "wifi_credentials.h" + +OneWire oneWire(PIN_ONE_WIRE_BUS); +DallasTemperature oneWireSensors(&oneWire); +DeviceAddress heaterSensor; + +AsyncWebServer server(80); +int WiFi_status = WL_IDLE_STATUS; + +Adafruit_SHT31 temp_sensor_in = Adafruit_SHT31(); +Adafruit_Si7021 temp_sensor_out = Adafruit_Si7021(); + +float temperature_samples_in[PID_SAMPLES] = {0}; +float temperature_samples_heater[PID_SAMPLES] = {0}; +uint8_t ts_pos = 0; +float target_temperature_in = 0.0; +float max_temperature_heater = 0.0; +float target_fan_percent = 10.0; +uint8_t box_status = 0; +float temperature_in = 0; +float temperature_out = 0; +float temperature_heater = 0; +float humidity_in = 0; +uint8_t fan_duty = 0; +uint8_t humidity_out = 0; +unsigned long wifi_tick_previous = 0; +unsigned long pid_first_millis = 0; +unsigned long pid_last_millis = 0; + +void setup() +{ + Serial.begin(115200); + Serial.println("Setting up GPIO"); + pinMode(PIN_HEATER_CTL, OUTPUT); + pinMode(PIN_FAN_PWM, OUTPUT); + + pinMode(PIN_LED_RED, OUTPUT); + pinMode(PIN_LED_GREEN, OUTPUT); + pinMode(PIN_LED_BLUE, OUTPUT); + + LED_OFF(PIN_LED_RED); + LED_OFF(PIN_LED_GREEN); + LED_ON(PIN_LED_BLUE); + + // Heater PWM -- Make sure heater is initially OFF + ledcSetup(PWM_CH_HEATER, PWM_FREQ_HEATER, PWM_RESOLUTION); + ledcAttachPin(PIN_HEATER_CTL, PWM_CH_HEATER); + ledcWrite(PWM_CH_HEATER, HEATER_PWM_OFF); + + // FAN PW -- Make sure FAN PWM is set to maximum (fan OFF) + ledcSetup(PWM_CH_FAN, PWM_FREQ_FAN, PWM_RESOLUTION); + ledcAttachPin(PIN_FAN_PWM, PWM_CH_FAN); + ledcWrite(PWM_CH_FAN, PWM_MAX_VALUE); + + // Setup temperature and humidity oneWireSensors + if (!temp_sensor_out.begin()) + { + Serial.println("Can't find Si7021 sensor! (out sensor)"); + LED_ALL_OFF(); + while (1) + { + LED_ON(PIN_LED_BLUE); + delay(250); + LED_OFF(PIN_LED_BLUE); + delay(250); + } + } + + Wire.setClock(10000); + if (!temp_sensor_in.begin(0x44)) + { + Serial.println("Can't find SHT31! (in sensor)"); + LED_ALL_OFF(); + while (1) + { + LED_ON(PIN_LED_GREEN); + delay(250); + LED_OFF(PIN_LED_GREEN); + delay(250); + } + } + + oneWireSensors.begin(); + if (!oneWireSensors.getAddress(heaterSensor, 0)) + { + Serial.println("Unable to find address for Device 0 (heater sensor)"); + while (1) + { + LED_ON(PIN_LED_RED); + delay(250); + LED_OFF(PIN_LED_RED); + delay(250); + } + } + + // set the resolution to 9 bit (Each Dallas/Maxim device is capable of + // several different resolutions) + oneWireSensors.setResolution(heaterSensor, TEMPERATURE_PRECISION); + +#if DEF_USE_WEB + delay(1000); + + // Connect to WiFi + Serial.print("Connecting to SSID: "); + Serial.println(ssid); + while (WiFi_status != WL_CONNECTED) + { + Serial.print("."); + WiFi_status = WiFi.begin(ssid, password); + // wait 5 seconds and check again + delay(5000); + } + Serial.println(""); + + if (!MDNS.begin(MDNS_NAME)) + { + Serial.println("Error starting mDNS"); + } + else + { + Serial.println((String) "mDNS http://" + MDNS_NAME + ".local"); + } + + // Initialize SPIFFS + if (!SPIFFS.begin(true)) + { + Serial.println("An Error has occurred while mounting SPIFFS"); + while (1) + { + LED_ON(PIN_LED_RED); + delay(500); + LED_OFF(PIN_LED_RED); + delay(500); + } + } + + Serial.print("WiFi IP: "); + Serial.println(WiFi.localIP()); + + setupWebServer(); + server.begin(); + +#if DEF_DEUG_SPIFFS + debug_spiffs_files(); +#endif + +#endif + Serial.println("Ready to go."); + LED_OFF(PIN_LED_BLUE); +} + +// +// ** Main loop ** +// +void loop() +{ + // Sample temperature and humidity from all available sensors + if (!readHeaterTemperature(&temperature_heater)) + { + // Handle heater sensor error + Serial.println("Failed to read heater temperature!"); + } + sample_sens_in_and_out(); + +// Debug +#if DEF_DEBUG_HETER_SAMPLES + Serial.println((String)temperature_in + "\t" + temperature_heater + "\t" + + target_temperature_in); +#endif + + // Check if we have WiFi connection, if not try to reconnect + check_wifi_connection(); + + // Dry box is active + if (box_status) + { + LED_ON(LED_STATUS_HEATER); + // Sample temperature values + if (sample_temperatures(temperature_in, temperature_heater)) + { + // Recalculate PWM value for the heater + heater_recalc_pwm(); + } + } + // Drybox is off. Turn/Keep off the heater + else + { + LED_OFF(LED_STATUS_HEATER); + set_heater_duty(HEATER_DUTY_OFF); + } +} + +void debug_spiffs_files(void) +{ + File root = SPIFFS.open("/"); + File file = root.openNextFile(); + + while (file) + { + Serial.print("FILE: "); + Serial.println(file.name()); + file = root.openNextFile(); + } +} + +void sample_sens_in_and_out(void) +{ + float tmp_temp = 0.0; + float tmp_humid = 0.0; + uint8_t i = 5; + + while (i--) + { + tmp_temp = temp_sensor_out.readTemperature(); + // delay(5); + tmp_humid = temp_sensor_out.readHumidity(); + if (!isnan(tmp_temp) && !isnan(tmp_humid)) + { + break; + } + delay(50); + } + + // Make sure final values are valid + if (!isnan(tmp_temp) && !isnan(tmp_humid)) + { + temperature_out = tmp_temp; + humidity_out = tmp_humid; +#if DEF_DEBUG_SENSOR_SAMPLES + Serial.println((String) "TempOut:" + temperature_out + + " - HumidOut:" + humidity_out); +#endif + } + // Otherwise we have a problem + else + { + Serial.println("Out sensor: I2C error!"); + } + + // Read SHT temperature and humidity + while (i--) + { + tmp_temp = temp_sensor_in.readTemperature(); + // delay(5); + tmp_humid = temp_sensor_in.readHumidity(); + if (!isnan(tmp_temp) && !isnan(tmp_humid)) + { + break; + } + delay(50); + } + + // Make sure final values are valid + if (!isnan(tmp_temp) && !isnan(tmp_humid)) + { + temperature_in = tmp_temp; + humidity_in = tmp_humid; +#if DEF_DEBUG_SENSOR_SAMPLES + Serial.println((String) "TempIn:" + temperature_in + + " - HumidIn:" + humidity_in); +#endif + } + // Otherwise we have a problem + else + { + Serial.println("In sensor: I2C error!"); + } +} + +bool readHeaterTemperature(float *fpTemp) +{ + float tempC; + uint8_t i = 5; + + while (i--) + { + oneWireSensors.requestTemperatures(); + delay(20); + tempC = oneWireSensors.getTempC(heaterSensor); + if (tempC != DEVICE_DISCONNECTED_C) + { + *fpTemp = tempC; +#if DEF_DEBUG_SENSOR_SAMPLES + Serial.print("Temp C: "); + Serial.println(tempC); +#endif + return true; + } + else + { +#if DEF_DEBUG_SENSOR_SAMPLES + Serial.println((String) "Heater sensor fault: " + tempC); +#endif + } + delay(20); + } + + return false; +} + +void set_fan_duty(uint8_t duty) +{ + if (duty > 100) + { + duty = 100; + } + + fan_duty = duty; + uint32_t pwm_raw_fan = ((PWM_MAX_VALUE * (100 - duty)) / 100.0); +#if DEF_DEBUG_PWM_VALUES + Serial.println((String) "Setting fan to " + pwm_raw_fan); +#endif + ledcWrite(PWM_CH_FAN, pwm_raw_fan); +} + +void set_heater_duty(uint8_t duty) +{ + uint32_t pwm_raw_heater = 0; + if (duty > 100) + { + duty = 100; + } + + pwm_raw_heater = ((PWM_MAX_VALUE * duty) / 100.0); + +#if DEF_DEBUG_PWM_VALUES + Serial.println((String) "Setting heater duty " + duty + "%"); +#endif + set_heater_pwm(pwm_raw_heater); +} + +void set_heater_pwm(uint32_t pwm) +{ + if (pwm > PWM_MAX_VALUE) + { + pwm = PWM_MAX_VALUE; + } + +#if PWM_HEATER_INVERT_VALUES + pwm = PWM_MAX_VALUE - pwm; +#endif +#if DEF_DEBUG_PWM_VALUES + Serial.println((String) "set_heater_duty: " + pwm + "/" + PWM_MAX_VALUE); +#endif + ledcWrite(PWM_CH_HEATER, pwm); +} + +bool sample_temperatures(float in, float heater) +{ + temperature_samples_in[ts_pos] = in; + temperature_samples_heater[ts_pos] = heater; + + ts_pos++; + if (ts_pos == 0) + { + // Record milliseconds of our first sample + pid_first_millis = millis(); + } + if (ts_pos >= PID_SAMPLES) + { + pid_last_millis = millis(); + ts_pos = 0; + return true; + } + else + { + return false; + } +} + +void heater_recalc_pwm(void) +{ + // We are using a simple PID-like control loop to calculate PWM value for a + // heater Heater is heating up our box to a target temperature and keeping + // it steady after/if that temperature is reached. At the same time we have + // to ensure heater does not go beyond our "safe" temperature and start + // damaging itself/fillament/cables/enclosure etc. + // + // As a simple solution, we will use the following flow + // 1. Check if heater temperature is higher or equal to the maximum set + // heater temperature + // - if True, use heater max temperature as the target for our PID + // controller + // - if False, use enclosure maximum temperature as the target for + // our PID controller + + float average = 0; + float pid_del_p; + float pid_del_i; + float pid_del_d; + int32_t pid_val_p; + int32_t pid_val_i; + int32_t pid_val_d; + int32_t pwm_val; + float pid_target_temperature = 0.0; + float pid_temperature = 0.0; + float pid_temperature_previous = 0.0; + unsigned long pid_time_diff; + + // Make sure values are valid + if (isnan(temperature_heater)) + { + Serial.println("Invalid temperature values"); + Serial.println((String) "temp_heater:" + temperature_heater); + Serial.println((String) "target_temperature_in:" + + target_temperature_in); + set_heater_duty(HEATER_DUTY_OFF); + return; + } + + // Inside temperature has NOT reached the target temperature + // However, heater temperature is approaching it's maximum allowed + // temperature. Then, regulate heater max temperature + if ((temperature_heater >= (max_temperature_heater - PID_TEMP_PROXIMITY)) && + (temperature_in < target_temperature_in)) + { + Serial.println("Using HEATER temperature as target."); + for (uint8_t i = 0; i < PID_SAMPLES; i++) + { + average += temperature_samples_heater[i]; + } + average = average / PID_SAMPLES; + + pid_target_temperature = max_temperature_heater; + pid_temperature = temperature_heater; + pid_temperature_previous = temperature_samples_heater[PID_SAMPLES - 1]; + } + // Heater is not close to it's maximum allowed temperature + // Or, inside temperature has already reached the target value + else + { + Serial.println("Using IN temperature as target."); + for (uint8_t i = 0; i < PID_SAMPLES; i++) + { + average += temperature_samples_in[i]; + } + average = average / PID_SAMPLES; + + pid_target_temperature = target_temperature_in; + pid_temperature = temperature_in; + pid_temperature_previous = temperature_samples_in[PID_SAMPLES - 1]; + } + + // P + pid_del_p = pid_target_temperature - pid_temperature; + pid_val_p = (uint32_t)(pid_del_p)*PID_KP; + + // I + pid_del_i = pid_target_temperature - average; + pid_val_i = (uint32_t)(pid_del_i)*PID_KI; + + // D + pid_del_d = pid_target_temperature - pid_temperature_previous; + pid_time_diff = pid_last_millis - pid_first_millis; + if (pid_time_diff > 0) + { + pid_val_d = (uint32_t)(pid_del_d) / pid_time_diff; + pid_val_d = (uint32_t)(pid_val_d)*PID_KD; + } + else + { + pid_val_d = 0; + } + + // P + I + D + pwm_val = pid_val_p + pid_val_i + pid_val_d; + +#if DEF_DEBUG_PID + Serial.println((String) "Pd: " + pid_del_p); + Serial.println((String) "Pv: " + pid_val_p); + // Serial.println((String)"Ia: "+ sum); + Serial.println((String) "Id: " + pid_del_i); + Serial.println((String) "Iv: " + pid_val_i); + Serial.println((String) "Dd: " + pid_del_d); + Serial.println((String) "Dv: " + pid_val_d); + Serial.println((String) "Calc PWM val: " + pwm_val); +#endif + + if (pwm_val > PWM_MAX_VALUE) + { + pwm_val = PWM_MAX_VALUE; + } + else if (pwm_val < 0) + { + pwm_val = 0; + } + +#if DEF_DEBUG_PID + Serial.println((String) "New PWM val: " + pwm_val); +#endif + set_heater_pwm(pwm_val); +} + +void setupWebServer(void) +{ + server.onNotFound([](AsyncWebServerRequest *request) { + Serial.println("404:"); + Serial.println(request->url()); + request->send(404); + }); + + // // send a file when /index is requested + server.on("/index.html", HTTP_ANY, [](AsyncWebServerRequest *request) { + request->send(SPIFFS, "/index.html"); + }); + + // send a file when /index is requested + server.on("/", HTTP_ANY, [](AsyncWebServerRequest *request) { + request->send(SPIFFS, "/index.html"); + }); + + server.serveStatic("/img/", SPIFFS, "/img/"); + server.serveStatic("/css/", SPIFFS, "/css/"); + server.serveStatic("/js/", SPIFFS, "/js/"); + server.serveStatic("/webfonts/", SPIFFS, "/webfonts/"); + + // Get dry box status + server.on("/status", HTTP_GET, [](AsyncWebServerRequest *request) { + char buff[200] = {0}; + int len; + len = + snprintf(buff, 200, + "{\"status\":%d, \"target_temp_in\":%f, " + "\"max_temp_heater\":%f, " + "\"temp_in\":%f, \"temp_heater\":%f, \"humid_in\":%f, " + "\"fan_speed\":%d, \"temp_out\":%f, \"humid_out\":%d}", + box_status, target_temperature_in, max_temperature_heater, + temperature_in, temperature_heater, humidity_in, fan_duty, + temperature_out, humidity_out); + + if (len) + { + request->send(200, "text/plain", buff); + } + else + { + request->send(500, "text/plain", + "{\"status\": \"Internal server error\"}"); + } + }); + + // Turn OFF dry box + server.on("/off", HTTP_GET, [](AsyncWebServerRequest *request) { + box_status = 0; + set_fan_duty(0); + set_heater_duty(HEATER_DUTY_OFF); + target_temperature_in = 0; + max_temperature_heater = 0; + request->send(200, "text/plain", "{\"status\": \"OK\"}"); + }); + + // Turn ON dry box and set target temperature, max heater temperature and fan speed + server.on("/set", HTTP_GET, [](AsyncWebServerRequest *request) { + // Check if temperature, heater temperature and fan speed arguments are present + if (request->hasParam("temperature") && request->hasParam("heater") && + request->hasParam("fanspeed")) + { + String str_temperature; + String str_heater; + String str_fanspeed; + int32_t temperature = 0; + int32_t heater = 0; + int32_t fanspeed = 0; + + str_temperature = request->getParam("temperature")->value(); + temperature = str_temperature.toInt(); + + str_heater = request->getParam("heater")->value(); + heater = str_heater.toInt(); + + str_fanspeed = request->getParam("fanspeed")->value(); + fanspeed = str_fanspeed.toInt(); + +#if DEF_DEUG_WEB_API + Serial.println((String) "Target temp: " + temperature + + "C Heater: " + heater + "C Fan Speed: " + fanspeed); +#endif + + // Check drybox temperature and heater temperature limit + if ( (temperature <= LIMIT_TEMP_IN_MAX) && (heater <= LIMIT_TEMP_HEATER_MAX) ) + { + target_temperature_in = temperature; + max_temperature_heater = heater; + set_fan_duty(fanspeed); + box_status = 1; + request->send(200, "text/plain", "{\"status\": \"OK\"}"); + return; + } + // If either of them are out of range, return bad request status + else + { + request->send(400, "text/plain", "{\"status\": \"Bad request. Limit error!\"}"); + return; + } + + } + // Not all arguments are present in the request + else + { + request->send(400, "text/plain", "{\"status\": \"Bad request\"}"); + return; + } + }); +} + +void check_wifi_connection(void) +{ + unsigned long currentMillis = millis(); + + // Check WiFi status every WIFI_CHECK_CONNECTION_MS miliseconds + if ((currentMillis - wifi_tick_previous) >= WIFI_CHECK_CONNECTION_MS) + { + if (WiFi.status() == WL_CONNECTED) + { + LED_ON(LED_STATUS_WIFI); + LED_OFF(PIN_LED_BLUE); + } + else + { + LED_OFF(LED_STATUS_WIFI); + LED_ON(PIN_LED_BLUE); + Serial.println("Reconnecting to WiFi..."); + WiFi.disconnect(); + WiFi.reconnect(); + } + + wifi_tick_previous = currentMillis; + } +} diff --git a/Firmware/platformio/src/wifi_credentials.h b/Firmware/platformio/src/wifi_credentials.h new file mode 100644 index 0000000..3478ce3 --- /dev/null +++ b/Firmware/platformio/src/wifi_credentials.h @@ -0,0 +1,7 @@ +#ifndef __WIFI_CRED_CFG_ +#define __WIFI_CRED_CFG_ +// clang-format off +const char* ssid = "Your-WiFi"; +const char* password = "wifi-password"; +// clang-format on +#endif \ No newline at end of file diff --git a/Hardware/Altium_Project/01_Top.SchDoc b/Hardware/Altium_Project/01_Top.SchDoc new file mode 100644 index 0000000..584058f Binary files /dev/null and b/Hardware/Altium_Project/01_Top.SchDoc differ diff --git a/Hardware/Altium_Project/02_Microcontroller.SchDoc b/Hardware/Altium_Project/02_Microcontroller.SchDoc new file mode 100644 index 0000000..ec32b45 Binary files /dev/null and b/Hardware/Altium_Project/02_Microcontroller.SchDoc differ diff --git a/Hardware/Altium_Project/03_Heater_Control.SchDoc b/Hardware/Altium_Project/03_Heater_Control.SchDoc new file mode 100644 index 0000000..c51a42b Binary files /dev/null and b/Hardware/Altium_Project/03_Heater_Control.SchDoc differ diff --git a/Hardware/Altium_Project/04_Fan_Control.SchDoc b/Hardware/Altium_Project/04_Fan_Control.SchDoc new file mode 100644 index 0000000..72999bc Binary files /dev/null and b/Hardware/Altium_Project/04_Fan_Control.SchDoc differ diff --git a/Hardware/Altium_Project/05_Power.SchDoc b/Hardware/Altium_Project/05_Power.SchDoc new file mode 100644 index 0000000..9b262b7 Binary files /dev/null and b/Hardware/Altium_Project/05_Power.SchDoc differ diff --git a/Hardware/Altium_Project/DryBox.PcbDoc b/Hardware/Altium_Project/DryBox.PcbDoc new file mode 100644 index 0000000..4ecfa32 Binary files /dev/null and b/Hardware/Altium_Project/DryBox.PcbDoc differ diff --git a/Hardware/Altium_Project/DryBox.PrjPcb b/Hardware/Altium_Project/DryBox.PrjPcb new file mode 100644 index 0000000..1c70ce7 --- /dev/null +++ b/Hardware/Altium_Project/DryBox.PrjPcb @@ -0,0 +1,1189 @@ +[Design] +Version=1.0 +HierarchyMode=0 +ChannelRoomNamingStyle=0 +ReleasesFolder= +ChannelDesignatorFormatString=$Component_$RoomName +ChannelRoomLevelSeperator=_ +OpenOutputs=1 +ArchiveProject=0 +TimestampOutput=0 +SeparateFolders=0 +TemplateLocationPath= +PinSwapBy_Netlabel=1 +PinSwapBy_Pin=1 +AllowPortNetNames=0 +AllowSheetEntryNetNames=1 +AppendSheetNumberToLocalNets=0 +NetlistSinglePinNets=0 +DefaultConfiguration=Sources +UserID=0xFFFFFFFF +DefaultPcbProtel=1 +DefaultPcbPcad=0 +ReorderDocumentsOnCompile=1 +NameNetsHierarchically=0 +PowerPortNamesTakePriority=0 +AutoSheetNumbering=0 +AutoCrossReferences=0 +PushECOToAnnotationFile=1 +DItemRevisionGUID= +ReportSuppressedErrorsInMessages=0 +FSMCodingStyle=eFMSDropDownList_OneProcess +FSMEncodingStyle=eFMSDropDownList_OneHot +IsProjectConflictPreventionWarningsEnabled=1 +OutputPath= +LogFolderPath= +ManagedProjectGUID= +IncludeDesignInRelease=0 + +[Preferences] +PrefsVaultGUID= +PrefsRevisionGUID= + +[Document1] +DocumentPath=MFGOutput.OutJob +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=-1 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=1 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId= + +[Document2] +DocumentPath=DryBox.PcbDoc +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=-1 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=1 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId=TOXCRBQU + +[Document3] +DocumentPath=01_Top.SchDoc +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=0 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=0 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId=VAZOALOO + +[Document4] +DocumentPath=02_Microcontroller.SchDoc +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=1 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=0 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId=JSGPXTVD + +[Document5] +DocumentPath=05_Power.SchDoc +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=2 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=0 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId=VWSGKHUX + +[Document6] +DocumentPath=03_Heater_Control.SchDoc +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=3 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=0 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId=ZULJMDWM + +[Document7] +DocumentPath=04_Fan_Control.SchDoc +AnnotationEnabled=1 +AnnotateStartValue=1 +AnnotationIndexControlEnabled=0 +AnnotateSuffix= +AnnotateScope=All +AnnotateOrder=4 +DoLibraryUpdate=1 +DoDatabaseUpdate=1 +ClassGenCCAutoEnabled=0 +ClassGenCCAutoRoomEnabled=1 +ClassGenNCAutoScope=None +DItemRevisionGUID= +GenerateClassCluster=0 +DocumentUniqueId=GTYHRKSH + +[Parameter1] +Name=revision +Value=1.0 + +[Parameter2] +Name=sk_ProjectName +Value=DIY Dry Box + +[Configuration1] +Name=Sources +ParameterCount=0 +ConstraintFileCount=0 +ReleaseItemId= +Variant=[No Variations] +OutputJobsCount=0 +ContentTypeGUID=CB6F2064-E317-11DF-B822-12313F0024A2 +ConfigurationType=Source + +[Generic_EDE] +OutputDir= + +[OutputGroup1] +Name=Netlist Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=CadnetixNetlist +OutputName1=Cadnetix Netlist +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 +OutputType2=CalayNetlist +OutputName2=Calay Netlist +OutputDocumentPath2= +OutputVariantName2= +OutputDefault2=0 +OutputType3=EDIF +OutputName3=EDIF for PCB +OutputDocumentPath3= +OutputVariantName3= +OutputDefault3=0 +OutputType4=EESofNetlist +OutputName4=EESof Netlist +OutputDocumentPath4= +OutputVariantName4= +OutputDefault4=0 +OutputType5=IntergraphNetlist +OutputName5=Intergraph Netlist +OutputDocumentPath5= +OutputVariantName5= +OutputDefault5=0 +OutputType6=MentorBoardStationNetlist +OutputName6=Mentor BoardStation Netlist +OutputDocumentPath6= +OutputVariantName6= +OutputDefault6=0 +OutputType7=MultiWire +OutputName7=MultiWire +OutputDocumentPath7= +OutputVariantName7= +OutputDefault7=0 +OutputType8=OrCadPCB2Netlist +OutputName8=Orcad/PCB2 Netlist +OutputDocumentPath8= +OutputVariantName8= +OutputDefault8=0 +OutputType9=PADSNetlist +OutputName9=PADS ASCII Netlist +OutputDocumentPath9= +OutputVariantName9= +OutputDefault9=0 +OutputType10=Pcad +OutputName10=Pcad for PCB +OutputDocumentPath10= +OutputVariantName10= +OutputDefault10=0 +OutputType11=PCADNetlist +OutputName11=PCAD Netlist +OutputDocumentPath11= +OutputVariantName11= +OutputDefault11=0 +OutputType12=PCADnltNetlist +OutputName12=PCADnlt Netlist +OutputDocumentPath12= +OutputVariantName12= +OutputDefault12=0 +OutputType13=Protel2Netlist +OutputName13=Protel2 Netlist +OutputDocumentPath13= +OutputVariantName13= +OutputDefault13=0 +OutputType14=ProtelNetlist +OutputName14=Protel +OutputDocumentPath14= +OutputVariantName14= +OutputDefault14=0 +OutputType15=RacalNetlist +OutputName15=Racal Netlist +OutputDocumentPath15= +OutputVariantName15= +OutputDefault15=0 +OutputType16=RINFNetlist +OutputName16=RINF Netlist +OutputDocumentPath16= +OutputVariantName16= +OutputDefault16=0 +OutputType17=SciCardsNetlist +OutputName17=SciCards Netlist +OutputDocumentPath17= +OutputVariantName17= +OutputDefault17=0 +OutputType18=SIMetrixNetlist +OutputName18=SIMetrix +OutputDocumentPath18= +OutputVariantName18= +OutputDefault18=0 +OutputType19=SIMPLISNetlist +OutputName19=SIMPLIS +OutputDocumentPath19= +OutputVariantName19= +OutputDefault19=0 +OutputType20=TangoNetlist +OutputName20=Tango Netlist +OutputDocumentPath20= +OutputVariantName20= +OutputDefault20=0 +OutputType21=TelesisNetlist +OutputName21=Telesis Netlist +OutputDocumentPath21= +OutputVariantName21= +OutputDefault21=0 +OutputType22=WireListNetlist +OutputName22=WireList Netlist +OutputDocumentPath22= +OutputVariantName22= +OutputDefault22=0 +OutputType23=XSpiceNetlist +OutputName23=XSpice Netlist +OutputDocumentPath23= +OutputVariantName23= +OutputDefault23=0 + +[OutputGroup2] +Name=Simulator Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=AdvSimNetlist +OutputName1=Mixed Sim +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 +OutputType2=SIMetrixSimulation +OutputName2=SIMetrix +OutputDocumentPath2= +OutputVariantName2= +OutputDefault2=0 +OutputType3=SIMPLISSimulation +OutputName3=SIMPLIS +OutputDocumentPath3= +OutputVariantName3= +OutputDefault3=0 + +[OutputGroup3] +Name=Documentation Outputs +Description= +TargetPrinter=Virtual Printer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=Composite +OutputName1=Composite Drawing +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=A4|PaperIndex=9 +Configuration1_Name1=OutputConfigurationParameter1 +Configuration1_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration1_Name2=OutputConfigurationParameter2 +Configuration1_Item2=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Multilayer Composite Print|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration1_Name3=OutputConfigurationParameter3 +Configuration1_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Draft|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration1_Name4=OutputConfigurationParameter4 +Configuration1_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Draft|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration1_Name5=OutputConfigurationParameter5 +Configuration1_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration1_Name6=OutputConfigurationParameter6 +Configuration1_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +OutputType2=PCB 3D Print +OutputName2=PCB 3D Print +OutputDocumentPath2= +OutputVariantName2=[No Variations] +OutputDefault2=0 +PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType3=PCB 3D Video +OutputName3=PCB 3D Video +OutputDocumentPath3= +OutputVariantName3=[No Variations] +OutputDefault3=0 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType4=PCB Print +OutputName4=PCB Prints +OutputDocumentPath4= +OutputVariantName4= +OutputDefault4=0 +PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType5=PCBDrawing +OutputName5=Draftsman +OutputDocumentPath5= +OutputVariantName5=[No Variations] +OutputDefault5=0 +PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType6=PCBLIB Print +OutputName6=PCBLIB Prints +OutputDocumentPath6= +OutputVariantName6= +OutputDefault6=0 +PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType7=PDF3D +OutputName7=PDF3D +OutputDocumentPath7= +OutputVariantName7=[No Variations] +OutputDefault7=0 +PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType8=Report Print +OutputName8=Report Prints +OutputDocumentPath8= +OutputVariantName8= +OutputDefault8=0 +PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType9=Schematic Print +OutputName9=Schematic Prints +OutputDocumentPath9= +OutputVariantName9= +OutputDefault9=0 +PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType10=SimView Print +OutputName10=SimView Prints +OutputDocumentPath10= +OutputVariantName10= +OutputDefault10=0 +PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType11=PDF3D MBA +OutputName11=PDF3D MBA +OutputDocumentPath11= +OutputVariantName11= +OutputDefault11=0 +PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 + +[OutputGroup4] +Name=Assembly Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=Assembly +OutputName1=Assembly Drawings +OutputDocumentPath1= +OutputVariantName1=[No Variations] +OutputDefault1=0 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType2=Pick Place +OutputName2=Generates pick and place files +OutputDocumentPath2= +OutputVariantName2=[No Variations] +OutputDefault2=0 +OutputType3=Test Points For Assembly +OutputName3=Test Point Report +OutputDocumentPath3= +OutputVariantName3=[No Variations] +OutputDefault3=0 + +[OutputGroup5] +Name=Fabrication Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=0|PrintWhat=1 +OutputType1=Board Stack Report +OutputName1=Report Board Stack +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType2=CompositeDrill +OutputName2=Composite Drill Drawing +OutputDocumentPath2= +OutputVariantName2= +OutputDefault2=0 +PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType3=Drill +OutputName3=Drill Drawing/Guides +OutputDocumentPath3= +OutputVariantName3= +OutputDefault3=0 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType4=Final +OutputName4=Final Artwork Prints +OutputDocumentPath4= +OutputVariantName4=[No Variations] +OutputDefault4=0 +PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=A4|PaperIndex=9 +Configuration4_Name1=ForceUpdateSettings +Configuration4_Item1=False +Configuration4_Name2=OutputConfigurationParameter1 +Configuration4_Item2=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration4_Name3=OutputConfigurationParameter2 +Configuration4_Item3=IncludeBoardCutouts=False|IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Fit check - Top|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=True|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration4_Name4=OutputConfigurationParameter3 +Configuration4_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration4_Name5=OutputConfigurationParameter4 +Configuration4_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Draft|FVia=Full|Layer=TopLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration4_Name6=OutputConfigurationParameter5 +Configuration4_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration4_Name7=OutputConfigurationParameter6 +Configuration4_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration4_Name8=OutputConfigurationParameter7 +Configuration4_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +Configuration4_Name9=OutputConfigurationParameter8 +Configuration4_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|DrillType=Regular|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +OutputType5=Gerber +OutputName5=Gerber Files +OutputDocumentPath5= +OutputVariantName5=[No Variations] +OutputDefault5=0 +OutputType6=Gerber X2 +OutputName6=Gerber X2 Files +OutputDocumentPath6= +OutputVariantName6= +OutputDefault6=0 +OutputType7=IPC2581 +OutputName7=IPC-2581 Files +OutputDocumentPath7= +OutputVariantName7= +OutputDefault7=0 +OutputType8=Mask +OutputName8=Solder/Paste Mask Prints +OutputDocumentPath8= +OutputVariantName8= +OutputDefault8=0 +PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType9=NC Drill +OutputName9=NC Drill Files +OutputDocumentPath9= +OutputVariantName9= +OutputDefault9=0 +OutputType10=ODB +OutputName10=ODB++ Files +OutputDocumentPath10= +OutputVariantName10=[No Variations] +OutputDefault10=0 +Configuration10_Name1=OutputConfigurationParameter1 +Configuration10_Item1=Compression_None=True|Compression_tar_tgz=True|Compression_zip=True|ExportPositivePlaneLayers=False|GenerateDRCRulesFile=False|IncludeUnconnectedMidLayerPads=False|MergeNetTieNets=False|ObjsInsideBoardOutlineOnly=False|ODBProfileLayer=-1000|ODBProfileLayerV7=-1|PlotBackDrillingPairs=False|PlotBlindViasPairs=False|PlotBottomLayerPlot=True|PlotBottomOverlayPlot=True|PlotBottomPastePlot=True|PlotBottomSolderPlot=True|PlotDrillDrawingPairs=False|PlotDrillGuidePairs=False|PlotInternalPlane10Plot=False|PlotInternalPlane11Plot=False|PlotInternalPlane12Plot=False|PlotInternalPlane13Plot=False|PlotInternalPlane14Plot=False|PlotInternalPlane15Plot=False|PlotInternalPlane16Plot=False|PlotInternalPlane1Plot=False|PlotInternalPlane2Plot=False|PlotInternalPlane3Plot=False|PlotInternalPlane4Plot=False|PlotInternalPlane5Plot=False|PlotInternalPlane6Plot=False|PlotInternalPlane7Plot=False|PlotInternalPlane8Plot=False|PlotInternalPlane9Plot=False|PlotKeepOutLayerPlot=True|PlotMechanical10Plot=False|PlotMechanical11Plot=False|PlotMechanical12Plot=False|PlotMechanical13Plot=True|PlotMechanical14Plot=False|PlotMechanical15Plot=True|PlotMechanical16Plot=False|PlotMechanical1Plot=True|PlotMechanical2Plot=False|PlotMechanical3Plot=False|PlotMechanical4Plot=False|PlotMechanical5Plot=False|PlotMechanical6Plot=False|PlotMechanical7Plot=False|PlotMechanical8Plot=False|PlotMechanical9Plot=False|PlotMicroViasPairs=False|PlotMidLayer10Plot=False|PlotMidLayer11Plot=False|PlotMidLayer12Plot=False|PlotMidLayer13Plot=False|PlotMidLayer14Plot=False|PlotMidLayer15Plot=False|PlotMidLayer16Plot=False|PlotMidLayer17Plot=False|PlotMidLayer18Plot=False|PlotMidLayer19Plot=False|PlotMidLayer1Plot=False|PlotMidLayer20Plot=False|PlotMidLayer21Plot=False|PlotMidLayer22Plot=False|PlotMidLayer23Plot=False|PlotMidLayer24Plot=False|PlotMidLayer25Plot=False|PlotMidLayer26Plot=False|PlotMidLayer27Plot=False|PlotMidLayer28Plot=False|PlotMidLayer29Plot=False|PlotMidLayer2Plot=False|PlotMidLayer30Plot=False|PlotMidLayer3Plot=False|PlotMidLayer4Plot=False|PlotMidLayer5Plot=False|PlotMidLayer6Plot=False|PlotMidLayer7Plot=False|PlotMidLayer8Plot=False|PlotMidLayer9Plot=False|PlotNPTHPairs=False|PlotPTHPairs=False|PlotTopLayerPlot=True|PlotTopOverlayPlot=True|PlotTopPastePlot=True|PlotTopSolderPlot=True|Record=ODBView|Units=Imperial|DocumentPath=C:\Users\Sasa\Desktop\git\DIY_DryBox\PDNAnalyzer_Output\DryBox\SimulationDummy.PcbDoc +OutputType11=Plane +OutputName11=Power-Plane Prints +OutputDocumentPath11= +OutputVariantName11= +OutputDefault11=0 +PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType12=Test Points +OutputName12=Test Point Report +OutputDocumentPath12= +OutputVariantName12= +OutputDefault12=0 + +[OutputGroup6] +Name=Report Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=BOM_PartType +OutputName1=Bill of Materials +OutputDocumentPath1= +OutputVariantName1=[No Variations] +OutputDefault1=0 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType2=ComponentCrossReference +OutputName2=Component Cross Reference Report +OutputDocumentPath2= +OutputVariantName2=[No Variations] +OutputDefault2=0 +OutputType3=ReportHierarchy +OutputName3=Report Project Hierarchy +OutputDocumentPath3= +OutputVariantName3=[No Variations] +OutputDefault3=0 +OutputType4=Script +OutputName4=Script Output +OutputDocumentPath4= +OutputVariantName4=[No Variations] +OutputDefault4=0 +OutputType5=SimpleBOM +OutputName5=Simple BOM +OutputDocumentPath5= +OutputVariantName5=[No Variations] +OutputDefault5=0 +OutputType6=SinglePinNetReporter +OutputName6=Report Single Pin Nets +OutputDocumentPath6= +OutputVariantName6=[No Variations] +OutputDefault6=0 +OutputType7=BOM_ReportCompare +OutputName7=BOM Compare +OutputDocumentPath7= +OutputVariantName7=[No Variations] +OutputDefault7=0 +PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType8=Export Comments +OutputName8=Export Comments +OutputDocumentPath8= +OutputVariantName8=[No Variations] +OutputDefault8=0 +PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 + +[OutputGroup7] +Name=Other Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=Text Print +OutputName1=Text Print +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType2=Text Print +OutputName2=Text Print +OutputDocumentPath2= +OutputVariantName2= +OutputDefault2=0 +PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType3=Text Print +OutputName3=Text Print +OutputDocumentPath3= +OutputVariantName3= +OutputDefault3=0 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType4=Text Print +OutputName4=Text Print +OutputDocumentPath4= +OutputVariantName4= +OutputDefault4=0 +PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType5=Text Print +OutputName5=Text Print +OutputDocumentPath5= +OutputVariantName5= +OutputDefault5=0 +PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType6=Text Print +OutputName6=Text Print +OutputDocumentPath6= +OutputVariantName6= +OutputDefault6=0 +PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType7=Text Print +OutputName7=Text Print +OutputDocumentPath7= +OutputVariantName7= +OutputDefault7=0 +PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType8=Text Print +OutputName8=Text Print +OutputDocumentPath8= +OutputVariantName8= +OutputDefault8=0 +PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType9=Text Print +OutputName9=Text Print +OutputDocumentPath9= +OutputVariantName9= +OutputDefault9=0 +PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType10=Text Print +OutputName10=Text Print +OutputDocumentPath10= +OutputVariantName10= +OutputDefault10=0 +PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType11=Text Print +OutputName11=Text Print +OutputDocumentPath11= +OutputVariantName11= +OutputDefault11=0 +PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType12=Text Print +OutputName12=Text Print +OutputDocumentPath12= +OutputVariantName12= +OutputDefault12=0 +PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType13=Text Print +OutputName13=Text Print +OutputDocumentPath13= +OutputVariantName13= +OutputDefault13=0 +PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType14=Text Print +OutputName14=Text Print +OutputDocumentPath14= +OutputVariantName14= +OutputDefault14=0 +PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType15=Text Print +OutputName15=Text Print +OutputDocumentPath15= +OutputVariantName15= +OutputDefault15=0 +PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType16=Text Print +OutputName16=Text Print +OutputDocumentPath16= +OutputVariantName16= +OutputDefault16=0 +PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType17=Text Print +OutputName17=Text Print +OutputDocumentPath17= +OutputVariantName17= +OutputDefault17=0 +PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 + +[OutputGroup8] +Name=Validation Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=Component states check +OutputName1=Server's components states check +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 +OutputType2=Configuration compliance +OutputName2=Environment configuration compliance check +OutputDocumentPath2= +OutputVariantName2= +OutputDefault2=0 +OutputType3=Design Rules Check +OutputName3=Design Rules Check +OutputDocumentPath3= +OutputVariantName3= +OutputDefault3=0 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType4=Differences Report +OutputName4=Differences Report +OutputDocumentPath4= +OutputVariantName4= +OutputDefault4=0 +PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType5=Electrical Rules Check +OutputName5=Electrical Rules Check +OutputDocumentPath5= +OutputVariantName5= +OutputDefault5=0 +PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +OutputType6=Footprint Comparison Report +OutputName6=Footprint Comparison Report +OutputDocumentPath6= +OutputVariantName6= +OutputDefault6=0 +OutputType7=BOM_Violations +OutputName7=BOM Checks Report +OutputDocumentPath7= +OutputVariantName7= +OutputDefault7=0 + +[OutputGroup9] +Name=Export Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=AutoCAD dwg/dxf PCB +OutputName1=AutoCAD dwg/dxf File PCB +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 +OutputType2=AutoCAD dwg/dxf Schematic +OutputName2=AutoCAD dwg/dxf File Schematic +OutputDocumentPath2= +OutputVariantName2= +OutputDefault2=0 +OutputType3=ExportIDF +OutputName3=Export IDF +OutputDocumentPath3= +OutputVariantName3= +OutputDefault3=0 +OutputType4=ExportPARASOLID +OutputName4=Export PARASOLID +OutputDocumentPath4= +OutputVariantName4=[No Variations] +OutputDefault4=0 +OutputType5=ExportSTEP +OutputName5=Export STEP +OutputDocumentPath5= +OutputVariantName5=[No Variations] +OutputDefault5=0 +OutputType6=ExportVRML +OutputName6=Export VRML +OutputDocumentPath6= +OutputVariantName6=[No Variations] +OutputDefault6=0 +OutputType7=Save As/Export PCB +OutputName7=Save As/Export PCB +OutputDocumentPath7= +OutputVariantName7= +OutputDefault7=0 +OutputType8=Save As/Export Schematic +OutputName8=Save As/Export Schematic +OutputDocumentPath8= +OutputVariantName8= +OutputDefault8=0 +OutputType9=Specctra Design PCB +OutputName9=Specctra Design PCB +OutputDocumentPath9= +OutputVariantName9= +OutputDefault9=0 +OutputType10=MBAExportPARASOLID +OutputName10=Export PARASOLID +OutputDocumentPath10= +OutputVariantName10= +OutputDefault10=0 +OutputType11=MBAExportSTEP +OutputName11=Export STEP +OutputDocumentPath11= +OutputVariantName11= +OutputDefault11=0 + +[OutputGroup10] +Name=PostProcess Outputs +Description= +TargetPrinter=Brother MFC-L2720DW +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputType1=Copy Files +OutputName1=Copy Files +OutputDocumentPath1= +OutputVariantName1= +OutputDefault1=0 + +[Modification Levels] +Type1=1 +Type2=1 +Type3=1 +Type4=1 +Type5=1 +Type6=1 +Type7=1 +Type8=1 +Type9=1 +Type10=1 +Type11=1 +Type12=1 +Type13=1 +Type14=1 +Type15=1 +Type16=1 +Type17=1 +Type18=1 +Type19=1 +Type20=1 +Type21=1 +Type22=1 +Type23=1 +Type24=1 +Type25=1 +Type26=1 +Type27=1 +Type28=1 +Type29=1 +Type30=1 +Type31=1 +Type32=1 +Type33=1 +Type34=1 +Type35=1 +Type36=1 +Type37=1 +Type38=1 +Type39=1 +Type40=1 +Type41=1 +Type42=1 +Type43=1 +Type44=1 +Type45=1 +Type46=1 +Type47=1 +Type48=1 +Type49=1 +Type50=1 +Type51=1 +Type52=1 +Type53=1 +Type54=1 +Type55=1 +Type56=1 +Type57=1 +Type58=1 +Type59=1 +Type60=1 +Type61=1 +Type62=1 +Type63=1 +Type64=1 +Type65=1 +Type66=1 +Type67=1 +Type68=1 +Type69=1 +Type70=1 +Type71=1 +Type72=1 +Type73=1 +Type74=1 +Type75=1 +Type76=1 +Type77=1 +Type78=1 +Type79=1 +Type80=1 +Type81=1 +Type82=1 +Type83=1 +Type84=1 +Type85=1 +Type86=1 +Type87=1 +Type88=1 +Type89=1 +Type90=1 +Type91=1 +Type92=1 +Type93=1 +Type94=1 +Type95=1 +Type96=1 +Type97=1 +Type98=1 +Type99=1 +Type100=1 +Type101=1 +Type102=1 +Type103=1 +Type104=1 +Type105=1 +Type106=1 +Type107=1 +Type108=1 +Type109=1 +Type110=1 +Type111=1 +Type112=1 +Type113=1 +Type114=1 +Type115=1 +Type116=1 +Type117=1 +Type118=1 +Type119=1 + +[Difference Levels] +Type1=1 +Type2=1 +Type3=1 +Type4=1 +Type5=1 +Type6=1 +Type7=1 +Type8=1 +Type9=1 +Type10=1 +Type11=1 +Type12=1 +Type13=1 +Type14=1 +Type15=1 +Type16=1 +Type17=1 +Type18=1 +Type19=1 +Type20=1 +Type21=1 +Type22=1 +Type23=1 +Type24=1 +Type25=1 +Type26=1 +Type27=1 +Type28=1 +Type29=1 +Type30=1 +Type31=1 +Type32=1 +Type33=1 +Type34=1 +Type35=1 +Type36=1 +Type37=1 +Type38=1 +Type39=1 +Type40=1 +Type41=1 +Type42=1 +Type43=1 +Type44=1 +Type45=1 +Type46=1 +Type47=1 +Type48=1 +Type49=1 +Type50=1 +Type51=1 +Type52=1 +Type53=1 +Type54=1 +Type55=1 +Type56=1 +Type57=1 +Type58=1 +Type59=1 +Type60=1 +Type61=1 +Type62=1 +Type63=1 +Type64=1 +Type65=1 +Type66=1 +Type67=1 +Type68=1 + +[Electrical Rules Check] +Type1=1 +Type2=1 +Type3=2 +Type4=1 +Type5=2 +Type6=2 +Type7=0 +Type8=1 +Type9=1 +Type10=1 +Type11=2 +Type12=0 +Type13=0 +Type14=1 +Type15=1 +Type16=1 +Type17=1 +Type18=1 +Type19=1 +Type20=0 +Type21=0 +Type22=0 +Type23=0 +Type24=1 +Type25=2 +Type26=0 +Type27=2 +Type28=1 +Type29=1 +Type30=1 +Type31=1 +Type32=2 +Type33=0 +Type34=2 +Type35=1 +Type36=2 +Type37=1 +Type38=2 +Type39=2 +Type40=2 +Type41=0 +Type42=2 +Type43=1 +Type44=0 +Type45=0 +Type46=0 +Type47=0 +Type48=0 +Type49=0 +Type50=2 +Type51=0 +Type52=0 +Type53=1 +Type54=1 +Type55=1 +Type56=2 +Type57=1 +Type58=1 +Type59=2 +Type60=0 +Type61=0 +Type62=0 +Type63=0 +Type64=0 +Type65=2 +Type66=3 +Type67=2 +Type68=2 +Type69=2 +Type70=2 +Type71=2 +Type72=2 +Type73=2 +Type74=1 +Type75=2 +Type76=1 +Type77=1 +Type78=1 +Type79=1 +Type80=2 +Type81=3 +Type82=3 +Type83=3 +Type84=3 +Type85=3 +Type86=2 +Type87=2 +Type88=2 +Type89=1 +Type90=1 +Type91=3 +Type92=3 +Type93=2 +Type94=2 +Type95=2 +Type96=2 +Type97=2 +Type98=0 +Type99=1 +Type100=2 +Type101=0 +Type102=2 +Type103=2 +Type104=1 +Type105=2 +Type106=2 +Type107=2 +Type108=2 +Type109=1 +Type110=1 +Type111=1 +Type112=1 +Type113=1 +Type114=2 +Type115=2 +Type116=2 +Type117=3 +Type118=3 +Type119=3 +MultiChannelAlternate=2 +AlternateItemFail=3 +Type122=2 +Type123=1 +Type124=1 +Type125=1 + +[ERC Connection Matrix] +L1=NNNNNNNNNNNWNNNWW +L2=NNWNNNNWWWNWNWNWN +L3=NWEENEEEENEWNEEWN +L4=NNENNNWEENNWNENWN +L5=NNNNNNNNNNNNNNNNN +L6=NNENNNNEENNWNENWN +L7=NNEWNNWEENNWNENWN +L8=NWEENEENEEENNEENN +L9=NWEENEEEENEWNEEWW +L10=NWNNNNNENNEWNNEWN +L11=NNENNNNEEENWNENWN +L12=WWWWNWWNWWWNWWWNN +L13=NNNNNNNNNNNWNNNWW +L14=NWEENEEEENEWNEEWW +L15=NNENNNNEEENWNENWW +L16=WWWWNWWNWWWNWWWNW +L17=WNNNNNNNWNNNWWWWN + +[Annotate] +SortOrder=3 +SortLocation=0 +ReplaceSubparts=0 +MatchParameter1=Comment +MatchStrictly1=1 +MatchParameter2=Library Reference +MatchStrictly2=1 +PhysicalNamingFormat=$Component_$RoomName +GlobalIndexSortOrder=3 +GlobalIndexSortLocation=0 + +[PrjClassGen] +CompClassManualEnabled=0 +CompClassManualRoomEnabled=0 +NetClassAutoBusEnabled=1 +NetClassAutoCompEnabled=0 +NetClassAutoNamedHarnessEnabled=0 +NetClassManualEnabled=1 +NetClassSeparateForBusSections=0 + +[LibraryUpdateOptions] +SelectedOnly=0 +UpdateVariants=1 +UpdateToLatestRevision=1 +PartTypes=0 +FullReplace=1 +UpdateDesignatorLock=1 +UpdatePartIDLock=1 +PreserveParameterLocations=1 +PreserveParameterVisibility=1 +DoGraphics=1 +DoParameters=1 +DoModels=1 +AddParameters=0 +RemoveParameters=0 +AddModels=1 +RemoveModels=1 +UpdateCurrentModels=1 + +[DatabaseUpdateOptions] +SelectedOnly=0 +UpdateVariants=1 +UpdateToLatestRevision=1 +PartTypes=0 + +[Comparison Options] +ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 +ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 +ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 +ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 +ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|UseName=0|InclAllRules=0 +ComparisonOptions5=Kind=Structure Class|MinPercent=75|MinMatch=3|ShowMatch=-1|UseName=-1|InclAllRules=0 + +[SmartPDF] +PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 + diff --git a/Hardware/Altium_Project/MFGOutput.OutJob b/Hardware/Altium_Project/MFGOutput.OutJob new file mode 100644 index 0000000..a167c69 --- /dev/null +++ b/Hardware/Altium_Project/MFGOutput.OutJob @@ -0,0 +1,300 @@ +[OutputJobFile] +Version=1.0 +Caption= +Description= +VaultGUID= +ItemGUID= +ItemHRID= +RevisionGUID= +RevisionId= +VaultHRID= +AutoItemHRID= +NextRevId= +FolderGUID= +LifeCycleDefinitionGUID= +RevisionNamingSchemeGUID= + +[OutputGroup1] +Name=MFGOutput.OutJob +Description= +TargetOutputMedium=PDF +VariantName=[No Variations] +VariantScope=1 +CurrentConfigurationName= +TargetPrinter=Virtual Printer +PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputMedium1=Print Job +OutputMedium1_Type=Printer +OutputMedium1_Printer= +OutputMedium1_PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintJobKind=1|PrintWhat=1 +OutputMedium2=PDF +OutputMedium2_Type=Publish +OutputMedium3=Folder Structure +OutputMedium3_Type=GeneratedFiles +OutputMedium4=Video +OutputMedium4_Type=Multimedia +OutputType1=Schematic Print +OutputName1=Schematic Prints +OutputCategory1=Documentation +OutputDocumentPath1=[Project Physical Documents] +OutputVariantName1= +OutputEnabled1=1 +OutputEnabled1_OutputMedium1=0 +OutputEnabled1_OutputMedium2=1 +OutputEnabled1_OutputMedium3=0 +OutputEnabled1_OutputMedium4=0 +OutputDefault1=0 +PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +Configuration1_Name1=OutputConfigurationParameter1 +Configuration1_Item1=Record=SchPrintView|ShowNoERC=True|ShowParamSet=True|ShowProbe=True|ShowBlanket=True|NoERCSymbolsToShow="Thin Cross","Thick Cross","Small Cross",Checkbox,Triangle|ShowNote=True|ShowNoteCollapsed=True|ShowOpenEnds=True|ExpandDesignator=True|ExpandNetLabel=False|ExpandPort=False|ExpandSheetNum=False|ExpandDocNum=False|PrintArea=0|PrintAreaRect.X1=0|PrintAreaRect.Y1=0|PrintAreaRect.X2=0|PrintAreaRect.Y2=0|DocumentPath=[Project Physical Documents] +OutputType2=Pick Place +OutputName2=Generates pick and place files +OutputCategory2=Assembly +OutputDocumentPath2= +OutputVariantName2= +OutputEnabled2=0 +OutputEnabled2_OutputMedium1=0 +OutputEnabled2_OutputMedium2=0 +OutputEnabled2_OutputMedium3=1 +OutputEnabled2_OutputMedium4=0 +OutputDefault2=0 +Configuration2_Name1=OutputConfigurationParameter1 +Configuration2_Item1=Record=PickPlaceView|Units=Imperial|GenerateCSVFormat=False|GenerateTextFormat=True|ShowUnits=True|Separator=.|ExcludeFilterParam=False|IncludeVariations=False|Filter= |FilterActive=False|Column#1=Name:Designator,Fixed:True,Metric:False,Visible:True,Sort:None,Position:0|Column#2=Name:Comment,Fixed:True,Metric:False,Visible:True,Sort:None,Position:1|Column#3=Name:Layer,Fixed:True,Metric:False,Visible:True,Sort:None,Position:2|Column#4=Name:Footprint,Fixed:True,Metric:False,Visible:True,Sort:None,Position:3|Column#5=Name:Footprint Description,Fixed:True,Metric:False,Visible:False,Sort:None,Position:4|Column#6=Name:Center-X,Fixed:True,Metric:True,Visible:True,Sort:None,Position:5|Column#7=Name:Center-Y,Fixed:True,Metric:True,Visible:True,Sort:None,Position:6|Column#8=Name:Rotation,Fixed:True,Metric:False,Visible:True,Sort:None,Position:7|Column#9=Name:Description,Fixed:True,Metric:False,Visible:True,Sort:None,Position:8|Column#10=Name:ComponentKind,Fixed:True,Metric:False,Visible:False,Sort:None,Position:9|Column#11=Name:Height,Fixed:True,Metric:True,Visible:False,Sort:None,Position:10|Column#12=Name:Ref-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:11|Column#13=Name:Ref-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:12|Column#14=Name:Pad-X,Fixed:True,Metric:True,Visible:False,Sort:None,Position:13|Column#15=Name:Pad-Y,Fixed:True,Metric:True,Visible:False,Sort:None,Position:14|Column#16=Name:Variation,Fixed:True,Metric:False,Visible:False,Sort:None,Position:15|Column#17=Name:Published,Fixed:False,Metric:False,Visible:False,Sort:None,Position:24|Column#18=Name:LatestRevisionDate,Fixed:False,Metric:False,Visible:False,Sort:None,Position:18|Column#19=Name:PackageReference,Fixed:False,Metric:False,Visible:False,Sort:None,Position:23|Column#20=Name:Value,Fixed:False,Metric:False,Visible:False,Sort:None,Position:26|Column#21=Name:Publisher,Fixed:False,Metric:False,Visible:False,Sort:None,Position:25|Column#22=Name:Distributor Part Number,Fixed:False,Metric:False,Visible:False,Sort:None,Position:17|Column#23=Name:PackageDescription,Fixed:False,Metric:False,Visible:False,Sort:None,Position:22|Column#24=Name:LatestRevisionNote,Fixed:False,Metric:False,Visible:False,Sort:None,Position:19|Column#25=Name:Distributor,Fixed:False,Metric:False,Visible:False,Sort:None,Position:16|Column#26=Name:Manufacturer,Fixed:False,Metric:False,Visible:False,Sort:None,Position:20|Column#27=Name:Manufacturer Part Number,Fixed:False,Metric:False,Visible:False,Sort:None,Position:21|DocumentPath=C:\Users\Sasa\Desktop\git\StreaCom\GaugeDriver\Hardware\EINK_BreakOut\EINK_Breakout.PcbDoc +OutputType3=Assembly +OutputName3=Assembly Drawings +OutputCategory3=Assembly +OutputDocumentPath3= +OutputVariantName3= +OutputEnabled3=0 +OutputEnabled3_OutputMedium1=0 +OutputEnabled3_OutputMedium2=0 +OutputEnabled3_OutputMedium3=0 +OutputEnabled3_OutputMedium4=0 +OutputDefault3=0 +PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=A4|PaperIndex=9 +Configuration3_Name1=OutputConfigurationParameter1 +Configuration3_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView +Configuration3_Name2=OutputConfigurationParameter2 +Configuration3_Item2=IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Top LayerAssembly Drawing|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False +Configuration3_Name3=OutputConfigurationParameter3 +Configuration3_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Hidden|FFill=Hidden|FPad=Hidden|FRegion=Hidden|FText=Hidden|FTrack=Hidden|FVia=Hidden|Layer=TopLayer|Polygon=Hidden|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name4=OutputConfigurationParameter4 +Configuration3_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=TopOverlay|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name5=OutputConfigurationParameter5 +Configuration3_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Hidden|Layer=MultiLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name6=OutputConfigurationParameter6 +Configuration3_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name7=OutputConfigurationParameter7 +Configuration3_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name8=OutputConfigurationParameter8 +Configuration3_Item8=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=DrillDrawing|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name9=OutputConfigurationParameter9 +Configuration3_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name10=OutputConfigurationParameter10 +Configuration3_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration3_Name11=OutputConfigurationParameter11 +Configuration3_Item11=IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=1|Mirror=False|Name=Bottom LayerAssembly Drawing|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False +Configuration3_Name12=OutputConfigurationParameter12 +Configuration3_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Hidden|FFill=Hidden|FPad=Hidden|FRegion=Hidden|FText=Hidden|FTrack=Hidden|FVia=Hidden|Layer=BottomLayer|Polygon=Hidden|PrintOutIndex=1|Record=PcbPrintLayer +Configuration3_Name13=OutputConfigurationParameter13 +Configuration3_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration3_Name14=OutputConfigurationParameter14 +Configuration3_Item14=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=BottomOverlay|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration3_Name15=OutputConfigurationParameter15 +Configuration3_Item15=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=DrillDrawing|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration3_Name16=OutputConfigurationParameter16 +Configuration3_Item16=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Hidden|Layer=MultiLayer|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration3_Name17=OutputConfigurationParameter17 +Configuration3_Item17=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration3_Name18=OutputConfigurationParameter18 +Configuration3_Item18=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration3_Name19=OutputConfigurationParameter19 +Configuration3_Item19=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +PcbPrintPreferences3= +OutputType4=Gerber +OutputName4=Gerber Files +OutputCategory4=Fabrication +OutputDocumentPath4= +OutputVariantName4= +OutputEnabled4=0 +OutputEnabled4_OutputMedium1=0 +OutputEnabled4_OutputMedium2=0 +OutputEnabled4_OutputMedium3=2 +OutputEnabled4_OutputMedium4=0 +OutputDefault4=0 +Configuration4_Name1=OutputConfigurationParameter1 +Configuration4_Item1=AddToAllLayerClasses.Set= |AddToAllPlots.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|CentrePlots=False|DrillDrawingSymbol=GraphicsSymbol|DrillDrawingSymbolSize=200000|EmbeddedApertures=True|FilmBorderSize=10000000|FilmXSize=200000000|FilmYSize=160000000|FlashAllFills=False|FlashPadShapes=True|G54OnApertureChange=False|GenerateDRCRulesFile=True|GenerateDRCRulesFile=True|GenerateReliefShapes=True|GerberUnit=Imperial|GerberUnit=Imperial|IncludeUnconnectedMidLayerPads=False|LayerClassesMirror.Set= |LayerClassesPlot.Set= |LeadingAndTrailingZeroesMode=SuppressLeadingZeroes|MaxApertureSize=2500000|MinusApertureTolerance=50|MinusApertureTolerance=50|Mirror.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean|MirrorDrillDrawingPlots=False|MirrorDrillGuidePlots=False|NoRegularPolygons=False|NumberOfDecimals=5|NumberOfDecimals=5|OptimizeChangeLocationCommands=True|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Panelize=False|Plot.Set=SerializeLayerHash.Version~2,ClassName~TLayerToBoolean,16973830~1,16973832~1,16973834~1,16777217~1,16842751~1,16973835~1,16973833~1,16973831~1,16973837~1|PlotPositivePlaneLayers=False|PlotUsedDrillDrawingLayerPairs=True|PlotUsedDrillGuideLayerPairs=True|PlusApertureTolerance=50|PlusApertureTolerance=50|Record=GerberView|SoftwareArcs=False|Sorted=False|Sorted=False|DocumentPath=C:\Users\Sasa\Desktop\git\StreaCom\GaugeDriver\Hardware\EINK_BreakOut\EINK_Breakout.PcbDoc +OutputType5=NC Drill +OutputName5=NC Drill Files +OutputCategory5=Fabrication +OutputDocumentPath5= +OutputVariantName5= +OutputEnabled5=0 +OutputEnabled5_OutputMedium1=0 +OutputEnabled5_OutputMedium2=0 +OutputEnabled5_OutputMedium3=3 +OutputEnabled5_OutputMedium4=0 +OutputDefault5=0 +Configuration5_Name1=OutputConfigurationParameter1 +Configuration5_Item1=BoardEdgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|NumberOfDecimals=5|NumberOfUnits=2|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Imperial|ZeroesMode=SuppressTrailingZeroes|DocumentPath=C:\Users\Sasa\Desktop\git\StreaCom\GaugeDriver\Hardware\EINK_BreakOut\EINK_Breakout.PcbDoc +OutputType6=Drill +OutputName6=Drill Drawing/Guides +OutputCategory6=Fabrication +OutputDocumentPath6= +OutputVariantName6= +OutputEnabled6=0 +OutputEnabled6_OutputMedium1=0 +OutputEnabled6_OutputMedium2=0 +OutputEnabled6_OutputMedium3=0 +OutputEnabled6_OutputMedium4=0 +OutputDefault6=0 +PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=0|PaperKind=A4|PaperIndex=9 +Configuration6_Name1=OutputConfigurationParameter1 +Configuration6_Item1=DesignatorDisplayMode=Physical|PrintArea=DesignExtent|PrintAreaLowerLeftCornerX=0|PrintAreaLowerLeftCornerY=0|PrintAreaUpperRightCornerX=0|PrintAreaUpperRightCornerY=0|Record=PcbPrintView +Configuration6_Name2=OutputConfigurationParameter2 +Configuration6_Item2=IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=0|Mirror=False|Name=Drill Drawing For (Bottom Layer,Top Layer)|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False +Configuration6_Name3=OutputConfigurationParameter3 +Configuration6_Item3=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=BottomLayer|DLayer2=TopLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=DrillDrawing|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration6_Name4=OutputConfigurationParameter4 +Configuration6_Item4=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration6_Name5=OutputConfigurationParameter5 +Configuration6_Item5=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration6_Name6=OutputConfigurationParameter6 +Configuration6_Item6=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration6_Name7=OutputConfigurationParameter7 +Configuration6_Item7=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=0|Record=PcbPrintLayer +Configuration6_Name8=OutputConfigurationParameter8 +Configuration6_Item8=IncludeBottomLayerComponents=True|IncludeMultiLayerComponents=True|IncludeTopLayerComponents=True|IncludeViewports=True|Index=1|Mirror=False|Name=Drill Guide For (Bottom Layer,Top Layer)|PadNumberFontSize=14|Record=PcbPrintOut|ShowHoles=False|ShowPadNets=False|ShowPadNumbers=False|SubstituteFonts=False +Configuration6_Name9=OutputConfigurationParameter9 +Configuration6_Item9=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=BottomLayer|DLayer2=TopLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=DrillGuide|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration6_Name10=OutputConfigurationParameter10 +Configuration6_Item10=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical1|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration6_Name11=OutputConfigurationParameter11 +Configuration6_Item11=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=KeepOutLayer|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration6_Name12=OutputConfigurationParameter12 +Configuration6_Item12=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical13|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +Configuration6_Name13=OutputConfigurationParameter13 +Configuration6_Item13=CArc=Full|CFill=Full|Comment=Full|Coordinate=Full|CPad=Full|CRegion=Full|CText=Full|CTrack=Full|CVia=Full|Designator=Full|Dimension=Full|DLayer1=TopLayer|DLayer2=BottomLayer|FArc=Full|FFill=Full|FPad=Full|FRegion=Full|FText=Full|FTrack=Full|FVia=Full|Layer=Mechanical15|Polygon=Full|PrintOutIndex=1|Record=PcbPrintLayer +PcbPrintPreferences6= +OutputType7=BOM_PartType +OutputName7=Bill of Materials +OutputCategory7=Report +OutputDocumentPath7= +OutputVariantName7= +OutputEnabled7=1 +OutputEnabled7_OutputMedium1=0 +OutputEnabled7_OutputMedium2=2 +OutputEnabled7_OutputMedium3=4 +OutputEnabled7_OutputMedium4=0 +OutputDefault7=0 +PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=0|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-3|MediaType=1|DitherType=10|PrintScaleMode=1|PaperKind=A4|PaperIndex=9 +Configuration7_Name1=ColumnNameFormat +Configuration7_Item1=CaptionAsName +Configuration7_Name2=General +Configuration7_Item2=OpenExported=False|AddToProject=False|ReportBOMViolationsInMessages=False|ForceFit=False|NotFitted=False|Database=False|DatabasePriority=False|IncludePcbData=False|IncludeVaultData=False|IncludeCloudData=False|IncludeDocumentData=True|IncludeAlternatives=False|ShowExportOptions=True|TemplateFilename=|TemplateVaultGuid=|TemplateItemGuid=|TemplateRevisionGuid=|BatchMode=6|FormWidth=1732|FormHeight=1072|SupplierProdQty=1|SupplierAutoQty=False|SupplierUseCachedPricing=False|SupplierCurrency=|SolutionsPerItem=1|SuppliersPerSolution=1|ViewType=1|UseDirectApi=False|BomSetName= +Configuration7_Name3=GroupOrder +Configuration7_Item3=Manufacturer Part Number=True +Configuration7_Name4=OutputConfigurationParameter1 +Configuration7_Item4=dgeRoutToolDia=2000000|GenerateBoardEdgeRout=False|GenerateDrilledSlotsG85=False|GenerateEIADrillFile=False|GenerateSeparatePlatedNonPlatedFiles=False|NumberOfDecimals=5|NumberOfUnits=2|OptimizeChangeLocationCommands=True|OriginPosition=Relative|Record=DrillView|Units=Imperial|ZeroesMode=SuppressTrailingZeroes|DocumentPath=[Project] +Configuration7_Name5=SortOrder +Configuration7_Item5=Designator=Up +Configuration7_Name6=VisibleOrder +Configuration7_Item6=Designator=159|Description=175|Distributor=175|Distributor Part Number=175|Manufacturer=175|Manufacturer Part Number=175|Quantity=177 +Configuration7_Name7=VisibleOrder_Flat +Configuration7_Item7=Designator=159|Description=175|Distributor=175|Distributor Part Number=175|Manufacturer=175|Manufacturer Part Number=175|Quantity=177 + +[PublishSettings] +OutputFilePath2=C:\Users\Sasa\Desktop\git\StreaCom\GaugeDriver\Hardware\EINK_BreakOut\Project Outputs for EINK_Breakout\ +ReleaseManaged2=1 +OutputBasePath2=Project Outputs for DryBox +OutputPathMedia2= +OutputPathMediaValue2= +OutputPathOutputer2=[Output Type] +OutputPathOutputerPrefix2= +OutputPathOutputerValue2= +OutputFileName2=MFGOutput.PDF +OutputFileNameMulti2= +UseOutputNameForMulti2=1 +OutputFileNameSpecial2= +OpenOutput2=0 +PromptOverwrite2=1 +PublishMethod2=1 +ZoomLevel2=50 +FitSCHPrintSizeToDoc2=1 +FitPCBPrintSizeToDoc2=1 +GenerateNetsInfo2=1 +MarkPins2=1 +MarkNetLabels2=1 +MarkPortsId2=1 +GenerateTOC2=1 +ShowComponentParameters2=1 +GlobalBookmarks2=0 +PDFACompliance2=Disabled +PDFVersion2=Default +OutputFilePath3=C:\Users\Sasa\Desktop\git\StreaCom\GaugeDriver\Hardware\EINK_BreakOut\Project Outputs for EINK_Breakout\ +ReleaseManaged3=1 +OutputBasePath3=Project Outputs for DryBox +OutputPathMedia3= +OutputPathMediaValue3= +OutputPathOutputer3=[Output Type] +OutputPathOutputerPrefix3= +OutputPathOutputerValue3= +OutputFileName3= +OutputFileNameMulti3= +UseOutputNameForMulti3=1 +OutputFileNameSpecial3= +OpenOutput3=0 +OutputFilePath4= +ReleaseManaged4=1 +OutputBasePath4=Project Outputs for DryBox +OutputPathMedia4= +OutputPathMediaValue4= +OutputPathOutputer4=[Output Type] +OutputPathOutputerPrefix4= +OutputPathOutputerValue4= +OutputFileName4= +OutputFileNameMulti4= +UseOutputNameForMulti4=1 +OutputFileNameSpecial4= +OpenOutput4=1 +PromptOverwrite4=1 +PublishMethod4=5 +ZoomLevel4=50 +FitSCHPrintSizeToDoc4=1 +FitPCBPrintSizeToDoc4=1 +GenerateNetsInfo4=1 +MarkPins4=1 +MarkNetLabels4=1 +MarkPortsId4=1 +MediaFormat4=Windows Media file (*.wmv,*.wma,*.asf) +FixedDimensions4=1 +Width4=352 +Height4=288 +MultiFile4=0 +FramesPerSecond4=25 +FramesPerSecondDenom4=1 +AviPixelFormat4=7 +AviCompression4=MP42 MS-MPEG4 V2 +AviQuality4=100 +FFmpegVideoCodecId4=13 +FFmpegPixelFormat4=0 +FFmpegQuality4=80 +WmvVideoCodecName4=Windows Media Video V7 +WmvQuality4=80 + +[GeneratedFilesSettings] +RelativeOutputPath2=C:\Users\Sasa\Desktop\git\StreaCom\GaugeDriver\Hardware\EINK_BreakOut\Project Outputs for EINK_Breakout\ +OpenOutputs2=0 +RelativeOutputPath3=C:\Users\Sasa\Desktop\git\StreaCom\GaugeDriver\Hardware\EINK_BreakOut\Project Outputs for EINK_Breakout\ +OpenOutputs3=0 +AddToProject3=0 +TimestampFolder3=0 +UseOutputName3=0 +OpenODBOutput3=0 +OpenGerberOutput3=0 +OpenNCDrillOutput3=0 +OpenIPCOutput3=0 +EnableReload3=0 +RelativeOutputPath4= +OpenOutputs4=1 + diff --git a/Hardware/Bill of Materials.pdf b/Hardware/Bill of Materials.pdf new file mode 100644 index 0000000..448505e Binary files /dev/null and b/Hardware/Bill of Materials.pdf differ diff --git a/Hardware/README.md b/Hardware/README.md new file mode 100644 index 0000000..da262db --- /dev/null +++ b/Hardware/README.md @@ -0,0 +1,35 @@ +# Building the Hardware + +### Schematic +Schematic files are available in `Schematic.pdf` as well as Altium source files. +This file should be enough to understand how things are connected and how hardware works. + +Bill of Material is available in `Bill of Materials.pdf`. +Most parts are interchangable, so feel free to source these parts from your favorite part distributor. +When replacing capacitors, make sure you choose the same voltage rating! + +### How can I order the PCB + +I have prepared Gerber files that are verified and ready to go. You can take `Release\2021-12-07_23-28_DryBox_R1\2021-12-07_23-28_DryBox_R1_Gerber.zip` and upload it to your favorite PCB manufactuer like PCBWay, SeeedStudio, JLCPCB. +There are no critical PCB specs, so you can select whichever one you prefer. +Specifications of the PCBs that I ordered are listed below. + +PCB Specs: +- Board type: Single pieces +- Different Design in Panel:1 +- Layer: 2 Layers +- Thickness: 1.6 mm +- Min Track/Spacing: 6/6mil +- Material: FR-4: TG150 +- Min Hole Size: 0.3mm ↑ +- Solder Mask: White +- Silkscreen: Black +- Quantity: 10 +- Edge connector: No +- Surface Finish: HASL lead free +- "HASL" to "ENIG" No +- Via Process: Tenting vias +- Finished Copper: 1 oz Cu + + +[<- Go back to repository root](../README.md) diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/2021-12-07_23-28_DryBox_R1_Gerber.zip b/Hardware/Release/2021-12-07_23-28_DryBox_R1/2021-12-07_23-28_DryBox_R1_Gerber.zip new file mode 100644 index 0000000..652032a Binary files /dev/null and b/Hardware/Release/2021-12-07_23-28_DryBox_R1/2021-12-07_23-28_DryBox_R1_Gerber.zip differ diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox-macro.APR_LIB b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox-macro.APR_LIB new file mode 100644 index 0000000..e69de29 diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.DRR b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.DRR new file mode 100644 index 0000000..9977404 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.DRR @@ -0,0 +1,19 @@ +---------------------------------------------------------------------------------------------------------------------------------- +NCDrill File Report For: DryBox.PcbDoc 2021-12-07 23:14:43 +---------------------------------------------------------------------------------------------------------------------------------- + +Layer Pair : Top Layer to Bottom Layer +ASCII RoundHoles File : DryBox.TXT + +Tool Hole Size Hole Tolerance Hole Type Hole Count Plated Tool Travel +---------------------------------------------------------------------------------------------------------------------------------- +T1 16mil (0.4mm) Round 34 PTH 8.70inch (221.05mm) +T2 24mil (0.6mm) Round 6 PTH 0.24inch (6.07mm) +T3 30mil (0.762mm) Round 2 PTH 0.20inch (5.08mm) +T4 32mil (0.8mm) Round 4 PTH 1.45inch (36.71mm) +T5 35mil (0.9mm) Round 25 PTH 5.43inch (137.95mm) +T6 118mil (3mm) Round 4 NPTH 5.35inch (136.00mm) +---------------------------------------------------------------------------------------------------------------------------------- +Totals 75 + +Total Processing Time (hh:mm:ss) : 00:00:00 diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.EXTREP b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.EXTREP new file mode 100644 index 0000000..7c82071 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.EXTREP @@ -0,0 +1,20 @@ +------------------------------------------------------------------------------------------ +Gerber File Extension Report For: DryBox.GBR 2021-12-07 23:14:42 +------------------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------------------ +Layer Extension Layer Description +------------------------------------------------------------------------------------------ +.GTO Top Overlay +.GTP Top Paste +.GTS Top Solder +.GTL Top Layer +.GBL Bottom Layer +.GBS Bottom Solder +.GBP Bottom Paste +.GBO Bottom Overlay +.GKO Keep-Out Layer +.GD1 Drill Drawing +.GG1 Drill Guide +------------------------------------------------------------------------------------------ diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBL b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBL new file mode 100644 index 0000000..e7e5a00 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBL @@ -0,0 +1,2438 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Physical_Order=2* +G04 Layer_Color=16711680* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +%ADD64C,0.01968*% +%ADD65C,0.01181*% +%ADD68C,0.03150*% +%ADD71C,0.13780*% +%ADD72R,0.05906X0.05906*% +%ADD73C,0.05906*% +%ADD74C,0.04724*% +%ADD75R,0.04724X0.04724*% +%ADD76C,0.06000*% +%ADD77R,0.05906X0.05906*% +%ADD78R,0.05906X0.07874*% +%ADD79O,0.05906X0.07874*% +%ADD80C,0.03150*% +%ADD81C,0.03937*% +G36* +X88665Y111652D02* +X89880Y111283D01* +X91000Y110685D01* +X91982Y109879D01* +X92787Y108898D01* +X93386Y107778D01* +X93754Y106563D01* +X93876Y105327D01* +X93871Y105299D01* +X93871Y-97626D01* +X93876Y-97654D01* +X93754Y-98890D01* +X93386Y-100105D01* +X92787Y-101225D01* +X91982Y-102206D01* +X91000Y-103012D01* +X89880Y-103610D01* +X88665Y-103979D01* +X87429Y-104101D01* +X87402Y-104095D01* +X-86905Y-104095D01* +X-87402Y-104095D01* +X-87885Y-104056D01* +X-88665Y-103979D01* +X-89880Y-103610D01* +X-91000Y-103012D01* +X-91982Y-102206D01* +X-92787Y-101225D01* +X-93386Y-100105D01* +X-93754Y-98890D01* +X-93876Y-97654D01* +X-93871Y-97626D01* +X-93871Y104801D01* +X-93871Y104808D01* +X-93871Y105299D01* +X-93831Y105783D01* +X-93754Y106563D01* +X-93386Y107778D01* +X-92787Y108898D01* +X-91982Y109879D01* +X-91000Y110685D01* +X-89880Y111283D01* +X-88665Y111652D01* +X-87429Y111774D01* +X-87402Y111768D01* +X-67874D01* +X-67847Y111774D01* +X-66610Y111652D01* +X-65395Y111283D01* +X-64275Y110685D01* +X-63294Y109879D01* +X-62488Y108898D01* +X-61890Y107778D01* +X-61521Y106563D01* +X-61400Y105327D01* +X-61405Y105299D01* +Y87500D01* +X-61407D01* +X-61292Y86626D01* +X-60955Y85812D01* +X-60418Y85113D01* +X-59719Y84577D01* +X-58905Y84240D01* +X-58031Y84125D01* +Y84127D01* +X13657D01* +Y84125D01* +X14531Y84240D01* +X15345Y84577D01* +X16044Y85113D01* +X16581Y85812D01* +X16918Y86626D01* +X17033Y87500D01* +X17031D01* +Y105299D01* +X17026Y105327D01* +X17147Y106563D01* +X17516Y107778D01* +X18114Y108898D01* +X18920Y109879D01* +X19901Y110685D01* +X21021Y111283D01* +X22236Y111652D01* +X23472Y111774D01* +X23500Y111768D01* +X87402Y111768D01* +X87429Y111774D01* +X88665Y111652D01* +D02* +G37* +G36* +X-120433Y-97943D02* +Y-98852D01* +X-121039D01* +Y-97971D01* +X-121921Y-96499D01* +X-121233D01* +X-120722Y-97408D01* +X-120231Y-96499D01* +X-119565D01* +X-120433Y-97943D01* +D02* +G37* +G36* +X-127913Y-98852D02* +X-128519D01* +Y-97277D01* +X-128956Y-98298D01* +X-129374D01* +X-129808Y-97277D01* +Y-98852D01* +X-130378D01* +Y-96499D01* +X-129677D01* +X-129147Y-97681D01* +X-128620Y-96499D01* +X-127913D01* +Y-98852D01* +D02* +G37* +G36* +X-115904Y-96502D02* +X-115847Y-96505D01* +X-115787Y-96510D01* +X-115724Y-96516D01* +X-115667Y-96524D01* +X-115661D01* +X-115653Y-96526D01* +X-115642Y-96529D01* +X-115612Y-96535D01* +X-115574Y-96546D01* +X-115533Y-96559D01* +X-115484Y-96578D01* +X-115435Y-96600D01* +X-115385Y-96627D01* +X-115383D01* +X-115380Y-96630D01* +X-115364Y-96641D01* +X-115339Y-96660D01* +X-115309Y-96682D01* +X-115276Y-96712D01* +X-115241Y-96748D01* +X-115208Y-96789D01* +X-115175Y-96832D01* +Y-96835D01* +X-115173Y-96838D01* +X-115167Y-96846D01* +X-115162Y-96854D01* +X-115151Y-96881D01* +X-115134Y-96920D01* +X-115121Y-96963D01* +X-115107Y-97018D01* +X-115099Y-97078D01* +X-115096Y-97146D01* +Y-97149D01* +Y-97157D01* +Y-97171D01* +X-115099Y-97190D01* +Y-97212D01* +X-115102Y-97239D01* +X-115107Y-97266D01* +X-115112Y-97296D01* +X-115126Y-97365D01* +X-115148Y-97436D01* +X-115178Y-97507D01* +X-115197Y-97539D01* +X-115219Y-97572D01* +Y-97575D01* +X-115224Y-97580D01* +X-115233Y-97588D01* +X-115241Y-97599D01* +X-115268Y-97629D01* +X-115306Y-97668D01* +X-115355Y-97711D01* +X-115415Y-97755D01* +X-115484Y-97801D01* +X-115563Y-97845D01* +X-114777Y-98852D01* +X-115519D01* +X-116158Y-97990D01* +X-116436D01* +Y-98852D01* +X-117043D01* +Y-96499D01* +X-115953D01* +X-115904Y-96502D01* +D02* +G37* +G36* +X-117550Y-96955D02* +X-118645D01* +Y-97359D01* +X-117629D01* +Y-97815D01* +X-118645D01* +Y-98397D01* +X-117550D01* +Y-98852D01* +X-119251D01* +Y-96499D01* +X-117550D01* +Y-96955D01* +D02* +G37* +G36* +X-121973Y-98852D02* +X-122601D01* +X-122765Y-98378D01* +X-123633D01* +X-123796Y-98852D01* +X-124408D01* +X-123540Y-96499D01* +X-122844D01* +X-121973Y-98852D01* +D02* +G37* +G36* +X-125601Y-98397D02* +X-124512D01* +Y-98852D01* +X-126207D01* +Y-96499D01* +X-125601D01* +Y-98397D01* +D02* +G37* +G36* +X-133493Y-96955D02* +X-134228D01* +Y-98852D01* +X-134834D01* +Y-96955D01* +X-135568D01* +Y-96499D01* +X-133493D01* +Y-96955D01* +D02* +G37* +G36* +X-135699D02* +X-136434D01* +Y-98852D01* +X-137040D01* +Y-96955D01* +X-137774D01* +Y-96499D01* +X-135699D01* +Y-96955D01* +D02* +G37* +G36* +X-141716Y-96502D02* +X-141683D01* +X-141615Y-96505D01* +X-141547Y-96507D01* +X-141481Y-96513D01* +X-141454Y-96516D01* +X-141427Y-96518D01* +X-141421D01* +X-141405Y-96521D01* +X-141378Y-96526D01* +X-141345Y-96535D01* +X-141304Y-96548D01* +X-141260Y-96562D01* +X-141214Y-96581D01* +X-141165Y-96603D01* +X-141162D01* +X-141159Y-96606D01* +X-141143Y-96617D01* +X-141118Y-96630D01* +X-141088Y-96652D01* +X-141058Y-96677D01* +X-141023Y-96710D01* +X-140993Y-96745D01* +X-140965Y-96786D01* +X-140963Y-96791D01* +X-140955Y-96805D01* +X-140944Y-96830D01* +X-140930Y-96862D01* +X-140919Y-96900D01* +X-140908Y-96944D01* +X-140900Y-96993D01* +X-140897Y-97048D01* +Y-97051D01* +Y-97056D01* +Y-97064D01* +Y-97075D01* +X-140900Y-97092D01* +X-140903Y-97108D01* +X-140908Y-97149D01* +X-140919Y-97195D01* +X-140936Y-97247D01* +X-140957Y-97296D01* +X-140987Y-97348D01* +Y-97351D01* +X-140993Y-97354D01* +X-141004Y-97370D01* +X-141025Y-97395D01* +X-141053Y-97422D01* +X-141088Y-97455D01* +X-141132Y-97487D01* +X-141184Y-97520D01* +X-141241Y-97550D01* +Y-97564D01* +X-141238D01* +X-141230Y-97567D01* +X-141219Y-97569D01* +X-141203Y-97572D01* +X-141184Y-97580D01* +X-141162Y-97586D01* +X-141110Y-97605D01* +X-141053Y-97632D01* +X-140990Y-97665D01* +X-140933Y-97706D01* +X-140878Y-97755D01* +X-140875Y-97758D01* +X-140873Y-97760D01* +X-140865Y-97769D01* +X-140856Y-97780D01* +X-140845Y-97796D01* +X-140834Y-97812D01* +X-140823Y-97831D01* +X-140810Y-97856D01* +X-140796Y-97881D01* +X-140785Y-97911D01* +X-140763Y-97973D01* +X-140747Y-98047D01* +X-140744Y-98088D01* +X-140742Y-98132D01* +Y-98134D01* +Y-98140D01* +Y-98148D01* +Y-98162D01* +X-140744Y-98176D01* +Y-98192D01* +X-140750Y-98235D01* +X-140758Y-98282D01* +X-140772Y-98334D01* +X-140788Y-98386D01* +X-140813Y-98438D01* +Y-98440D01* +X-140815Y-98443D01* +X-140826Y-98459D01* +X-140840Y-98484D01* +X-140862Y-98517D01* +X-140889Y-98552D01* +X-140922Y-98588D01* +X-140957Y-98626D01* +X-141001Y-98661D01* +X-141004D01* +X-141006Y-98667D01* +X-141015Y-98672D01* +X-141025Y-98678D01* +X-141053Y-98697D01* +X-141091Y-98719D01* +X-141138Y-98743D01* +X-141189Y-98768D01* +X-141247Y-98790D01* +X-141307Y-98809D01* +X-141309D01* +X-141315Y-98812D01* +X-141323D01* +X-141337Y-98814D01* +X-141353Y-98820D01* +X-141372Y-98822D01* +X-141397Y-98825D01* +X-141421Y-98831D01* +X-141451Y-98833D01* +X-141481Y-98839D01* +X-141517Y-98842D01* +X-141555Y-98844D01* +X-141637Y-98850D01* +X-141727Y-98852D01* +X-142754D01* +Y-96499D01* +X-141746D01* +X-141716Y-96502D01* +D02* +G37* +G36* +X-132000Y-96453D02* +X-131962Y-96456D01* +X-131913Y-96461D01* +X-131858Y-96466D01* +X-131798Y-96477D01* +X-131733Y-96491D01* +X-131662Y-96510D01* +X-131591Y-96532D01* +X-131517Y-96557D01* +X-131443Y-96589D01* +X-131369Y-96627D01* +X-131299Y-96671D01* +X-131230Y-96723D01* +X-131167Y-96780D01* +X-131165Y-96783D01* +X-131154Y-96797D01* +X-131138Y-96816D01* +X-131116Y-96841D01* +X-131091Y-96873D01* +X-131064Y-96914D01* +X-131036Y-96963D01* +X-131004Y-97015D01* +X-130974Y-97078D01* +X-130946Y-97144D01* +X-130919Y-97217D01* +X-130894Y-97299D01* +X-130873Y-97384D01* +X-130856Y-97477D01* +X-130845Y-97575D01* +X-130843Y-97679D01* +Y-97681D01* +Y-97684D01* +Y-97692D01* +Y-97703D01* +X-130845Y-97733D01* +X-130848Y-97771D01* +X-130854Y-97818D01* +X-130859Y-97875D01* +X-130870Y-97935D01* +X-130884Y-98001D01* +X-130900Y-98072D01* +X-130922Y-98143D01* +X-130946Y-98219D01* +X-130979Y-98293D01* +X-131015Y-98367D01* +X-131058Y-98438D01* +X-131107Y-98506D01* +X-131165Y-98571D01* +X-131167Y-98574D01* +X-131178Y-98585D01* +X-131198Y-98601D01* +X-131225Y-98623D01* +X-131258Y-98648D01* +X-131296Y-98675D01* +X-131342Y-98705D01* +X-131397Y-98735D01* +X-131457Y-98768D01* +X-131522Y-98798D01* +X-131596Y-98825D01* +X-131675Y-98850D01* +X-131763Y-98872D01* +X-131853Y-98888D01* +X-131951Y-98899D01* +X-132055Y-98902D01* +X-132093D01* +X-132109Y-98899D01* +X-132148Y-98896D01* +X-132197Y-98891D01* +X-132251Y-98885D01* +X-132311Y-98874D01* +X-132380Y-98861D01* +X-132448Y-98842D01* +X-132522Y-98820D01* +X-132595Y-98795D01* +X-132669Y-98762D01* +X-132743Y-98724D01* +X-132814Y-98681D01* +X-132882Y-98629D01* +X-132945Y-98571D01* +X-132948Y-98569D01* +X-132958Y-98555D01* +X-132975Y-98536D01* +X-132994Y-98511D01* +X-133019Y-98479D01* +X-133046Y-98438D01* +X-133076Y-98391D01* +X-133103Y-98336D01* +X-133133Y-98277D01* +X-133163Y-98208D01* +X-133191Y-98134D01* +X-133215Y-98055D01* +X-133234Y-97971D01* +X-133250Y-97878D01* +X-133261Y-97782D01* +X-133264Y-97679D01* +Y-97676D01* +Y-97673D01* +Y-97665D01* +Y-97654D01* +Y-97640D01* +X-133261Y-97624D01* +X-133259Y-97586D01* +X-133253Y-97537D01* +X-133248Y-97482D01* +X-133237Y-97419D01* +X-133223Y-97354D01* +X-133207Y-97283D01* +X-133185Y-97209D01* +X-133160Y-97135D01* +X-133130Y-97059D01* +X-133092Y-96985D01* +X-133051Y-96914D01* +X-133002Y-96846D01* +X-132945Y-96780D01* +X-132942Y-96778D01* +X-132928Y-96767D01* +X-132912Y-96750D01* +X-132885Y-96729D01* +X-132852Y-96704D01* +X-132814Y-96677D01* +X-132767Y-96647D01* +X-132713Y-96614D01* +X-132653Y-96584D01* +X-132587Y-96554D01* +X-132513Y-96526D01* +X-132434Y-96502D01* +X-132347Y-96480D01* +X-132257Y-96464D01* +X-132159Y-96453D01* +X-132055Y-96450D01* +X-132030D01* +X-132000Y-96453D01* +D02* +G37* +G36* +X-139161D02* +X-139123Y-96456D01* +X-139074Y-96461D01* +X-139019Y-96466D01* +X-138959Y-96477D01* +X-138893Y-96491D01* +X-138822Y-96510D01* +X-138751Y-96532D01* +X-138678Y-96557D01* +X-138604Y-96589D01* +X-138530Y-96627D01* +X-138459Y-96671D01* +X-138391Y-96723D01* +X-138328Y-96780D01* +X-138326Y-96783D01* +X-138315Y-96797D01* +X-138298Y-96816D01* +X-138276Y-96841D01* +X-138252Y-96873D01* +X-138225Y-96914D01* +X-138197Y-96963D01* +X-138164Y-97015D01* +X-138135Y-97078D01* +X-138107Y-97144D01* +X-138080Y-97217D01* +X-138055Y-97299D01* +X-138033Y-97384D01* +X-138017Y-97477D01* +X-138006Y-97575D01* +X-138003Y-97679D01* +Y-97681D01* +Y-97684D01* +Y-97692D01* +Y-97703D01* +X-138006Y-97733D01* +X-138009Y-97771D01* +X-138014Y-97818D01* +X-138020Y-97875D01* +X-138031Y-97935D01* +X-138044Y-98001D01* +X-138061Y-98072D01* +X-138083Y-98143D01* +X-138107Y-98219D01* +X-138140Y-98293D01* +X-138175Y-98367D01* +X-138219Y-98438D01* +X-138268Y-98506D01* +X-138326Y-98571D01* +X-138328Y-98574D01* +X-138339Y-98585D01* +X-138358Y-98601D01* +X-138386Y-98623D01* +X-138418Y-98648D01* +X-138457Y-98675D01* +X-138503Y-98705D01* +X-138558Y-98735D01* +X-138618Y-98768D01* +X-138683Y-98798D01* +X-138757Y-98825D01* +X-138836Y-98850D01* +X-138924Y-98872D01* +X-139014Y-98888D01* +X-139112Y-98899D01* +X-139216Y-98902D01* +X-139254D01* +X-139270Y-98899D01* +X-139308Y-98896D01* +X-139357Y-98891D01* +X-139412Y-98885D01* +X-139472Y-98874D01* +X-139540Y-98861D01* +X-139609Y-98842D01* +X-139682Y-98820D01* +X-139756Y-98795D01* +X-139830Y-98762D01* +X-139903Y-98724D01* +X-139974Y-98681D01* +X-140043Y-98629D01* +X-140105Y-98571D01* +X-140108Y-98569D01* +X-140119Y-98555D01* +X-140136Y-98536D01* +X-140155Y-98511D01* +X-140179Y-98479D01* +X-140207Y-98438D01* +X-140237Y-98391D01* +X-140264Y-98336D01* +X-140294Y-98277D01* +X-140324Y-98208D01* +X-140351Y-98134D01* +X-140376Y-98055D01* +X-140395Y-97971D01* +X-140411Y-97878D01* +X-140422Y-97782D01* +X-140425Y-97679D01* +Y-97676D01* +Y-97673D01* +Y-97665D01* +Y-97654D01* +Y-97640D01* +X-140422Y-97624D01* +X-140419Y-97586D01* +X-140414Y-97537D01* +X-140409Y-97482D01* +X-140398Y-97419D01* +X-140384Y-97354D01* +X-140368Y-97283D01* +X-140346Y-97209D01* +X-140321Y-97135D01* +X-140291Y-97059D01* +X-140253Y-96985D01* +X-140212Y-96914D01* +X-140163Y-96846D01* +X-140105Y-96780D01* +X-140103Y-96778D01* +X-140089Y-96767D01* +X-140073Y-96750D01* +X-140045Y-96729D01* +X-140013Y-96704D01* +X-139974Y-96677D01* +X-139928Y-96647D01* +X-139874Y-96614D01* +X-139813Y-96584D01* +X-139748Y-96554D01* +X-139674Y-96526D01* +X-139595Y-96502D01* +X-139508Y-96480D01* +X-139418Y-96464D01* +X-139319Y-96453D01* +X-139216Y-96450D01* +X-139191D01* +X-139161Y-96453D01* +D02* +G37* +%LPC*% +G36* +X28575Y103174D02* +Y100075D01* +X31674D01* +X31299Y100982D01* +X30510Y102010D01* +X29482Y102799D01* +X28575Y103174D01* +D02* +G37* +G36* +X25425D02* +X24518Y102799D01* +X23490Y102010D01* +X22701Y100982D01* +X22326Y100075D01* +X25425D01* +Y103174D01* +D02* +G37* +G36* +X37000Y102670D02* +X35921Y102527D01* +X34915Y102111D01* +X34052Y101448D01* +X33389Y100585D01* +X32973Y99579D01* +X32831Y98500D01* +X32973Y97421D01* +X33389Y96415D01* +X34052Y95552D01* +X34915Y94889D01* +X35921Y94473D01* +X37000Y94331D01* +X38079Y94473D01* +X39085Y94889D01* +X39948Y95552D01* +X40611Y96415D01* +X41027Y97421D01* +X41170Y98500D01* +X41027Y99579D01* +X40611Y100585D01* +X39948Y101448D01* +X39085Y102111D01* +X38079Y102527D01* +X37000Y102670D01* +D02* +G37* +G36* +X84646Y110472D02* +X83064Y110316D01* +X81542Y109855D01* +X80140Y109105D01* +X78911Y108097D01* +X77903Y106868D01* +X77153Y105466D01* +X76692Y103944D01* +X76536Y102362D01* +X76692Y100780D01* +X77153Y99259D01* +X77903Y97857D01* +X78911Y96628D01* +X80140Y95619D01* +X81542Y94870D01* +X83064Y94408D01* +X84646Y94252D01* +X86228Y94408D01* +X87749Y94870D01* +X89151Y95619D01* +X90380Y96628D01* +X91389Y97857D01* +X92138Y99259D01* +X92600Y100780D01* +X92756Y102362D01* +X92600Y103944D01* +X92138Y105466D01* +X91389Y106868D01* +X90380Y108097D01* +X89151Y109105D01* +X87749Y109855D01* +X86228Y110316D01* +X84646Y110472D01* +D02* +G37* +G36* +X-84646D02* +X-86228Y110316D01* +X-87749Y109855D01* +X-89151Y109105D01* +X-90380Y108097D01* +X-91389Y106868D01* +X-92138Y105466D01* +X-92600Y103944D01* +X-92756Y102362D01* +X-92600Y100780D01* +X-92138Y99259D01* +X-91389Y97857D01* +X-90380Y96628D01* +X-89151Y95619D01* +X-87749Y94870D01* +X-86228Y94408D01* +X-84646Y94252D01* +X-83064Y94408D01* +X-81542Y94870D01* +X-80140Y95619D01* +X-78911Y96628D01* +X-77903Y97857D01* +X-77153Y99259D01* +X-76692Y100780D01* +X-76536Y102362D01* +X-76692Y103944D01* +X-77153Y105466D01* +X-77903Y106868D01* +X-78911Y108097D01* +X-80140Y109105D01* +X-81542Y109855D01* +X-83064Y110316D01* +X-84646Y110472D01* +D02* +G37* +G36* +X31674Y96925D02* +X28575D01* +Y93826D01* +X29482Y94201D01* +X30510Y94990D01* +X31299Y96018D01* +X31674Y96925D01* +D02* +G37* +G36* +X25425D02* +X22326D01* +X22701Y96018D01* +X23490Y94990D01* +X24518Y94201D01* +X25425Y93826D01* +Y96925D01* +D02* +G37* +G36* +X37000Y92669D02* +X35921Y92527D01* +X34915Y92111D01* +X34052Y91448D01* +X33389Y90585D01* +X32973Y89579D01* +X32831Y88500D01* +X32973Y87421D01* +X33389Y86415D01* +X34052Y85552D01* +X34915Y84889D01* +X35921Y84473D01* +X37000Y84330D01* +X38079Y84473D01* +X39085Y84889D01* +X39948Y85552D01* +X40611Y86415D01* +X41027Y87421D01* +X41170Y88500D01* +X41027Y89579D01* +X40611Y90585D01* +X39948Y91448D01* +X39085Y92111D01* +X38079Y92527D01* +X37000Y92669D01* +D02* +G37* +G36* +X47000Y102670D02* +X45921Y102527D01* +X44915Y102111D01* +X44052Y101448D01* +X43389Y100585D01* +X42973Y99579D01* +X42831Y98500D01* +X42973Y97421D01* +X43389Y96415D01* +X44052Y95552D01* +X44915Y94889D01* +X45921Y94473D01* +X47000Y94331D01* +X48079Y94473D01* +X49017Y94861D01* +X50744Y93134D01* +X50537Y92634D01* +X42866D01* +Y84366D01* +X44675D01* +X44744Y83866D01* +X43586Y82708D01* +X23000D01* +X22962Y82700D01* +X22716Y83161D01* +X24648Y85094D01* +X24915Y84889D01* +X25921Y84473D01* +X27000Y84330D01* +X28079Y84473D01* +X29085Y84889D01* +X29948Y85552D01* +X30611Y86415D01* +X31027Y87421D01* +X31170Y88500D01* +X31027Y89579D01* +X30611Y90585D01* +X29948Y91448D01* +X29085Y92111D01* +X28079Y92527D01* +X27000Y92669D01* +X25921Y92527D01* +X24915Y92111D01* +X24052Y91448D01* +X23389Y90585D01* +X22973Y89579D01* +X22830Y88500D01* +X22845Y88389D01* +X22813Y88368D01* +X13252Y78806D01* +X7088D01* +X6966Y78966D01* +X6390Y79407D01* +X5719Y79685D01* +X5000Y79780D01* +X4281Y79685D01* +X3610Y79407D01* +X3035Y78966D01* +X2593Y78390D01* +X2315Y77719D01* +X2220Y77000D01* +X2315Y76281D01* +X2593Y75610D01* +X3035Y75034D01* +X3460Y74708D01* +X3291Y74208D01* +X2491D01* +X2231Y74407D01* +X1560Y74685D01* +X841Y74780D01* +X122Y74685D01* +X-549Y74407D01* +X-1125Y73966D01* +X-1566Y73390D01* +X-1844Y72719D01* +X-1939Y72000D01* +X-1844Y71281D01* +X-1808Y71193D01* +X-2159Y70735D01* +X-2500Y70780D01* +X-3219Y70685D01* +X-3890Y70407D01* +X-4465Y69965D01* +X-4907Y69390D01* +X-5185Y68719D01* +X-5280Y68000D01* +X-5185Y67281D01* +X-4907Y66610D01* +X-4465Y66035D01* +X-3890Y65593D01* +X-3219Y65315D01* +X-2500Y65220D01* +X-1781Y65315D01* +X-1110Y65593D01* +X-850Y65792D01* +X40500D01* +X41345Y65960D01* +X42061Y66439D01* +X55061Y79439D01* +X55540Y80155D01* +X55708Y81000D01* +Y93500D01* +X55540Y94345D01* +X55061Y95061D01* +X51518Y98604D01* +X51121Y98870D01* +X51027Y99579D01* +X50611Y100585D01* +X49948Y101448D01* +X49085Y102111D01* +X48079Y102527D01* +X47000Y102670D01* +D02* +G37* +G36* +X86634Y75134D02* +X78366D01* +Y66866D01* +X86634D01* +Y75134D01* +D02* +G37* +G36* +X74134D02* +X65866D01* +Y66866D01* +X74134D01* +Y75134D01* +D02* +G37* +G36* +X82500Y65170D02* +X81421Y65027D01* +X80415Y64611D01* +X79552Y63948D01* +X78889Y63085D01* +X78473Y62079D01* +X78330Y61000D01* +X78473Y59921D01* +X78889Y58915D01* +X79552Y58052D01* +X80415Y57389D01* +X81421Y56973D01* +X82500Y56831D01* +X83579Y56973D01* +X84585Y57389D01* +X85448Y58052D01* +X86111Y58915D01* +X86527Y59921D01* +X86669Y61000D01* +X86527Y62079D01* +X86111Y63085D01* +X85448Y63948D01* +X84585Y64611D01* +X83579Y65027D01* +X82500Y65170D01* +D02* +G37* +G36* +X70000D02* +X68921Y65027D01* +X67915Y64611D01* +X67052Y63948D01* +X66389Y63085D01* +X65973Y62079D01* +X65830Y61000D01* +X65973Y59921D01* +X66389Y58915D01* +X67052Y58052D01* +X67915Y57389D01* +X68921Y56973D01* +X70000Y56831D01* +X71079Y56973D01* +X72085Y57389D01* +X72948Y58052D01* +X73611Y58915D01* +X74027Y59921D01* +X74169Y61000D01* +X74027Y62079D01* +X73611Y63085D01* +X72948Y63948D01* +X72085Y64611D01* +X71079Y65027D01* +X70000Y65170D01* +D02* +G37* +G36* +X82500Y55169D02* +X81421Y55027D01* +X80415Y54611D01* +X79552Y53948D01* +X78889Y53085D01* +X78473Y52079D01* +X78330Y51000D01* +X78473Y49921D01* +X78889Y48915D01* +X79552Y48052D01* +X80415Y47389D01* +X81421Y46973D01* +X82500Y46830D01* +X83579Y46973D01* +X84585Y47389D01* +X85448Y48052D01* +X86111Y48915D01* +X86527Y49921D01* +X86669Y51000D01* +X86527Y52079D01* +X86111Y53085D01* +X85448Y53948D01* +X84585Y54611D01* +X83579Y55027D01* +X82500Y55169D01* +D02* +G37* +G36* +X70000D02* +X68921Y55027D01* +X67915Y54611D01* +X67052Y53948D01* +X66389Y53085D01* +X65973Y52079D01* +X65830Y51000D01* +X65973Y49921D01* +X66389Y48915D01* +X67052Y48052D01* +X67915Y47389D01* +X68921Y46973D01* +X70000Y46830D01* +X71079Y46973D01* +X72085Y47389D01* +X72948Y48052D01* +X73611Y48915D01* +X74027Y49921D01* +X74169Y51000D01* +X74027Y52079D01* +X73611Y53085D01* +X72948Y53948D01* +X72085Y54611D01* +X71079Y55027D01* +X70000Y55169D01* +D02* +G37* +G36* +X84075Y45674D02* +Y42575D01* +X87174D01* +X86799Y43482D01* +X86010Y44510D01* +X84982Y45299D01* +X84075Y45674D01* +D02* +G37* +G36* +X71575D02* +Y42575D01* +X74674D01* +X74299Y43482D01* +X73510Y44510D01* +X72482Y45299D01* +X71575Y45674D01* +D02* +G37* +G36* +X68425D02* +X67518Y45299D01* +X66490Y44510D01* +X65701Y43482D01* +X65326Y42575D01* +X68425D01* +Y45674D01* +D02* +G37* +G36* +X80925D02* +X80018Y45299D01* +X78990Y44510D01* +X78201Y43482D01* +X77826Y42575D01* +X80925D01* +Y45674D01* +D02* +G37* +G36* +X87174Y39425D02* +X84075D01* +Y36326D01* +X84982Y36701D01* +X86010Y37490D01* +X86799Y38518D01* +X87174Y39425D01* +D02* +G37* +G36* +X74674D02* +X71575D01* +Y36326D01* +X72482Y36701D01* +X73510Y37490D01* +X74299Y38518D01* +X74674Y39425D01* +D02* +G37* +G36* +X80925D02* +X77826D01* +X78201Y38518D01* +X78990Y37490D01* +X80018Y36701D01* +X80925Y36326D01* +Y39425D01* +D02* +G37* +G36* +X68425D02* +X65326D01* +X65701Y38518D01* +X66490Y37490D01* +X67518Y36701D01* +X68425Y36326D01* +Y39425D01* +D02* +G37* +G36* +X84075Y32674D02* +Y29575D01* +X87174D01* +X86799Y30482D01* +X86010Y31510D01* +X84982Y32299D01* +X84075Y32674D01* +D02* +G37* +G36* +X80925D02* +X80018Y32299D01* +X78990Y31510D01* +X78201Y30482D01* +X77826Y29575D01* +X80925D01* +Y32674D01* +D02* +G37* +G36* +X87174Y26425D02* +X84075D01* +Y23326D01* +X84982Y23701D01* +X86010Y24490D01* +X86799Y25518D01* +X87174Y26425D01* +D02* +G37* +G36* +X80925D02* +X77826D01* +X78201Y25518D01* +X78990Y24490D01* +X80018Y23701D01* +X80925Y23326D01* +Y26425D01* +D02* +G37* +G36* +X82500Y22170D02* +X81421Y22027D01* +X80415Y21611D01* +X79552Y20948D01* +X78889Y20085D01* +X78473Y19079D01* +X78330Y18000D01* +X78473Y16921D01* +X78889Y15915D01* +X79552Y15052D01* +X80415Y14389D01* +X81421Y13973D01* +X82500Y13830D01* +X83579Y13973D01* +X84585Y14389D01* +X85448Y15052D01* +X86111Y15915D01* +X86527Y16921D01* +X86669Y18000D01* +X86527Y19079D01* +X86111Y20085D01* +X85448Y20948D01* +X84585Y21611D01* +X83579Y22027D01* +X82500Y22170D01* +D02* +G37* +G36* +X56500Y10780D02* +X38000D01* +X37281Y10685D01* +X36610Y10407D01* +X36035Y9966D01* +X35593Y9390D01* +X35315Y8719D01* +X35220Y8000D01* +X35315Y7281D01* +X35593Y6610D01* +X36035Y6035D01* +X36610Y5593D01* +X37281Y5315D01* +X38000Y5220D01* +X56500D01* +X57219Y5315D01* +X57890Y5593D01* +X58465Y6035D01* +X58907Y6610D01* +X59185Y7281D01* +X59280Y8000D01* +X59185Y8719D01* +X58907Y9390D01* +X58465Y9966D01* +X57890Y10407D01* +X57219Y10685D01* +X56500Y10780D01* +D02* +G37* +G36* +X86634Y12134D02* +X78366D01* +Y3866D01* +X86634D01* +Y12134D01* +D02* +G37* +G36* +X-9000Y-9783D02* +X-10091Y-9927D01* +X-11109Y-10348D01* +X-11982Y-11018D01* +X-12652Y-11891D01* +X-13073Y-12909D01* +X-13217Y-14000D01* +X-13073Y-15091D01* +X-12652Y-16109D01* +X-11982Y-16982D01* +X-11109Y-17652D01* +X-10091Y-18074D01* +X-9000Y-18217D01* +X-7908Y-18074D01* +X-6891Y-17652D01* +X-6018Y-16982D01* +X-5348Y-16109D01* +X-4927Y-15091D01* +X-4783Y-14000D01* +X-4927Y-12909D01* +X-5348Y-11891D01* +X-6018Y-11018D01* +X-6891Y-10348D01* +X-7908Y-9927D01* +X-9000Y-9783D01* +D02* +G37* +G36* +Y-29783D02* +X-10091Y-29926D01* +X-11109Y-30348D01* +X-11982Y-31018D01* +X-12652Y-31891D01* +X-13073Y-32908D01* +X-13217Y-34000D01* +X-13073Y-35092D01* +X-12652Y-36109D01* +X-11982Y-36982D01* +X-11109Y-37652D01* +X-10091Y-38074D01* +X-9000Y-38217D01* +X-7908Y-38074D01* +X-6891Y-37652D01* +X-6018Y-36982D01* +X-5348Y-36109D01* +X-4927Y-35092D01* +X-4783Y-34000D01* +X-4927Y-32908D01* +X-5348Y-31891D01* +X-6018Y-31018D01* +X-6891Y-30348D01* +X-7908Y-29926D01* +X-9000Y-29783D01* +D02* +G37* +G36* +X44000Y-39720D02* +X17500D01* +X16781Y-39815D01* +X16110Y-40093D01* +X15534Y-40534D01* +X15093Y-41110D01* +X14815Y-41781D01* +X14720Y-42500D01* +X14815Y-43219D01* +X15093Y-43890D01* +X15534Y-44466D01* +X16110Y-44907D01* +X16781Y-45185D01* +X17500Y-45280D01* +X44000D01* +X44719Y-45185D01* +X45390Y-44907D01* +X45965Y-44466D01* +X46407Y-43890D01* +X46685Y-43219D01* +X46780Y-42500D01* +X46685Y-41781D01* +X46407Y-41110D01* +X45965Y-40534D01* +X45390Y-40093D01* +X44719Y-39815D01* +X44000Y-39720D01* +D02* +G37* +G36* +X-42079Y-64095D02* +X-45425D01* +Y-68425D01* +X-42079D01* +Y-64095D01* +D02* +G37* +G36* +X-48575D02* +X-51921D01* +Y-68425D01* +X-48575D01* +Y-64095D01* +D02* +G37* +G36* +X81831Y-68169D02* +X79075D01* +Y-70925D01* +X81831D01* +Y-68169D01* +D02* +G37* +G36* +X75925D02* +X73169D01* +Y-70925D01* +X75925D01* +Y-68169D01* +D02* +G37* +G36* +X-37000Y-64846D02* +X-38079Y-64988D01* +X-39085Y-65405D01* +X-39948Y-66067D01* +X-40611Y-66931D01* +X-41027Y-67937D01* +X-41170Y-69016D01* +Y-70984D01* +X-41027Y-72063D01* +X-40611Y-73069D01* +X-39948Y-73933D01* +X-39085Y-74595D01* +X-38079Y-75012D01* +X-37000Y-75154D01* +X-35921Y-75012D01* +X-34915Y-74595D01* +X-34052Y-73933D01* +X-33389Y-73069D01* +X-32973Y-72063D01* +X-32831Y-70984D01* +Y-69016D01* +X-32973Y-67937D01* +X-33389Y-66931D01* +X-34052Y-66067D01* +X-34915Y-65405D01* +X-35921Y-64988D01* +X-37000Y-64846D01* +D02* +G37* +G36* +X-42079Y-71575D02* +X-45425D01* +Y-75906D01* +X-42079D01* +Y-71575D01* +D02* +G37* +G36* +X-48575D02* +X-51921D01* +Y-75906D01* +X-48575D01* +Y-71575D01* +D02* +G37* +G36* +X87500Y-68926D02* +X86575Y-69048D01* +X85713Y-69405D01* +X84973Y-69973D01* +X84405Y-70713D01* +X84048Y-71575D01* +X83926Y-72500D01* +X84048Y-73425D01* +X84405Y-74287D01* +X84973Y-75027D01* +X85713Y-75595D01* +X86575Y-75952D01* +X87500Y-76074D01* +X88425Y-75952D01* +X89287Y-75595D01* +X90027Y-75027D01* +X90595Y-74287D01* +X90952Y-73425D01* +X91074Y-72500D01* +X90952Y-71575D01* +X90595Y-70713D01* +X90027Y-69973D01* +X89287Y-69405D01* +X88425Y-69048D01* +X87500Y-68926D01* +D02* +G37* +G36* +X81831Y-74075D02* +X79075D01* +Y-76831D01* +X81831D01* +Y-74075D01* +D02* +G37* +G36* +X75925D02* +X73169D01* +Y-76831D01* +X75925D01* +Y-74075D01* +D02* +G37* +G36* +X66421Y-89579D02* +X63075D01* +Y-92925D01* +X66421D01* +Y-89579D01* +D02* +G37* +G36* +X-49925Y-89826D02* +Y-92925D01* +X-46826D01* +X-47201Y-92018D01* +X-47990Y-90990D01* +X-49018Y-90201D01* +X-49925Y-89826D01* +D02* +G37* +G36* +X-53075D02* +X-53982Y-90201D01* +X-55010Y-90990D01* +X-55799Y-92018D01* +X-56174Y-92925D01* +X-53075D01* +Y-89826D01* +D02* +G37* +G36* +X59925Y-89579D02* +X56579D01* +Y-92925D01* +X59925D01* +Y-89579D01* +D02* +G37* +G36* +X-31366Y-90366D02* +X-39634D01* +Y-98634D01* +X-31366D01* +Y-90366D01* +D02* +G37* +G36* +X-57366D02* +X-65634D01* +Y-98634D01* +X-57366D01* +Y-90366D01* +D02* +G37* +G36* +X51500Y-90330D02* +X50421Y-90473D01* +X49415Y-90889D01* +X48552Y-91552D01* +X47889Y-92415D01* +X47473Y-93421D01* +X47330Y-94500D01* +X47473Y-95579D01* +X47889Y-96585D01* +X48552Y-97448D01* +X49415Y-98111D01* +X50421Y-98527D01* +X51500Y-98669D01* +X52579Y-98527D01* +X53585Y-98111D01* +X54448Y-97448D01* +X55111Y-96585D01* +X55527Y-95579D01* +X55669Y-94500D01* +X55527Y-93421D01* +X55111Y-92415D01* +X54448Y-91552D01* +X53585Y-90889D01* +X52579Y-90473D01* +X51500Y-90330D01* +D02* +G37* +G36* +X41500D02* +X40421Y-90473D01* +X39415Y-90889D01* +X38552Y-91552D01* +X37889Y-92415D01* +X37473Y-93421D01* +X37330Y-94500D01* +X37473Y-95579D01* +X37889Y-96585D01* +X38552Y-97448D01* +X39415Y-98111D01* +X40421Y-98527D01* +X41500Y-98669D01* +X42579Y-98527D01* +X43585Y-98111D01* +X44448Y-97448D01* +X45111Y-96585D01* +X45527Y-95579D01* +X45669Y-94500D01* +X45527Y-93421D01* +X45111Y-92415D01* +X44448Y-91552D01* +X43585Y-90889D01* +X42579Y-90473D01* +X41500Y-90330D01* +D02* +G37* +G36* +X31500D02* +X30421Y-90473D01* +X29415Y-90889D01* +X28552Y-91552D01* +X27889Y-92415D01* +X27473Y-93421D01* +X27330Y-94500D01* +X27473Y-95579D01* +X27889Y-96585D01* +X28552Y-97448D01* +X29415Y-98111D01* +X30421Y-98527D01* +X31500Y-98669D01* +X32579Y-98527D01* +X33585Y-98111D01* +X34448Y-97448D01* +X35111Y-96585D01* +X35527Y-95579D01* +X35669Y-94500D01* +X35527Y-93421D01* +X35111Y-92415D01* +X34448Y-91552D01* +X33585Y-90889D01* +X32579Y-90473D01* +X31500Y-90330D01* +D02* +G37* +G36* +X-25500D02* +X-26579Y-90473D01* +X-27585Y-90889D01* +X-28448Y-91552D01* +X-29111Y-92415D01* +X-29527Y-93421D01* +X-29669Y-94500D01* +X-29527Y-95579D01* +X-29111Y-96585D01* +X-28448Y-97448D01* +X-27585Y-98111D01* +X-26579Y-98527D01* +X-25500Y-98669D01* +X-24421Y-98527D01* +X-23415Y-98111D01* +X-22552Y-97448D01* +X-21889Y-96585D01* +X-21473Y-95579D01* +X-21330Y-94500D01* +X-21473Y-93421D01* +X-21889Y-92415D01* +X-22552Y-91552D01* +X-23415Y-90889D01* +X-24421Y-90473D01* +X-25500Y-90330D01* +D02* +G37* +G36* +X-46826Y-96075D02* +X-49925D01* +Y-99174D01* +X-49018Y-98799D01* +X-47990Y-98010D01* +X-47201Y-96982D01* +X-46826Y-96075D01* +D02* +G37* +G36* +X-53075D02* +X-56174D01* +X-55799Y-96982D01* +X-55010Y-98010D01* +X-53982Y-98799D01* +X-53075Y-99174D01* +Y-96075D01* +D02* +G37* +G36* +X66421D02* +X63075D01* +Y-99421D01* +X66421D01* +Y-96075D01* +D02* +G37* +G36* +X59925D02* +X56579D01* +Y-99421D01* +X59925D01* +Y-96075D01* +D02* +G37* +G36* +X84646Y-86378D02* +X83064Y-86534D01* +X81542Y-86996D01* +X80140Y-87745D01* +X78911Y-88754D01* +X77903Y-89983D01* +X77153Y-91385D01* +X76692Y-92906D01* +X76536Y-94488D01* +X76692Y-96070D01* +X77153Y-97592D01* +X77903Y-98994D01* +X78911Y-100223D01* +X80140Y-101231D01* +X81542Y-101981D01* +X83064Y-102442D01* +X84646Y-102598D01* +X86228Y-102442D01* +X87749Y-101981D01* +X89151Y-101231D01* +X90380Y-100223D01* +X91389Y-98994D01* +X92138Y-97592D01* +X92600Y-96070D01* +X92756Y-94488D01* +X92600Y-92906D01* +X92138Y-91385D01* +X91389Y-89983D01* +X90380Y-88754D01* +X89151Y-87745D01* +X87749Y-86996D01* +X86228Y-86534D01* +X84646Y-86378D01* +D02* +G37* +G36* +X-84646D02* +X-86228Y-86534D01* +X-87749Y-86996D01* +X-89151Y-87745D01* +X-90380Y-88754D01* +X-91389Y-89983D01* +X-92138Y-91385D01* +X-92600Y-92906D01* +X-92756Y-94488D01* +X-92600Y-96070D01* +X-92138Y-97592D01* +X-91389Y-98994D01* +X-90380Y-100223D01* +X-89151Y-101231D01* +X-87749Y-101981D01* +X-86228Y-102442D01* +X-84646Y-102598D01* +X-83064Y-102442D01* +X-81542Y-101981D01* +X-80140Y-101231D01* +X-78911Y-100223D01* +X-77903Y-98994D01* +X-77153Y-97592D01* +X-76692Y-96070D01* +X-76536Y-94488D01* +X-76692Y-92906D01* +X-77153Y-91385D01* +X-77903Y-89983D01* +X-78911Y-88754D01* +X-80140Y-87745D01* +X-81542Y-86996D01* +X-83064Y-86534D01* +X-84646Y-86378D01* +D02* +G37* +G36* +X-116144Y-96933D02* +X-116436D01* +Y-97564D01* +X-116202D01* +X-116169Y-97561D01* +X-116131D01* +X-116090Y-97558D01* +X-116051Y-97556D01* +X-116013Y-97550D01* +X-116008D01* +X-115997Y-97548D01* +X-115978Y-97542D01* +X-115956Y-97537D01* +X-115929Y-97528D01* +X-115901Y-97518D01* +X-115874Y-97504D01* +X-115849Y-97487D01* +X-115847Y-97485D01* +X-115839Y-97479D01* +X-115828Y-97468D01* +X-115814Y-97455D01* +X-115784Y-97422D01* +X-115770Y-97403D01* +X-115757Y-97381D01* +X-115754Y-97378D01* +X-115751Y-97370D01* +X-115746Y-97356D01* +X-115740Y-97337D01* +X-115735Y-97316D01* +X-115732Y-97288D01* +X-115727Y-97255D01* +Y-97220D01* +Y-97217D01* +Y-97206D01* +X-115729Y-97190D01* +X-115732Y-97168D01* +X-115735Y-97144D01* +X-115743Y-97119D01* +X-115751Y-97094D01* +X-115765Y-97070D01* +X-115768Y-97067D01* +X-115770Y-97059D01* +X-115781Y-97048D01* +X-115792Y-97034D01* +X-115811Y-97018D01* +X-115830Y-97002D01* +X-115858Y-96985D01* +X-115888Y-96971D01* +X-115890D01* +X-115899Y-96969D01* +X-115912Y-96963D01* +X-115929Y-96958D01* +X-115948Y-96952D01* +X-115972Y-96950D01* +X-116000Y-96944D01* +X-116030Y-96942D01* +X-116032D01* +X-116043Y-96939D01* +X-116062D01* +X-116084Y-96936D01* +X-116112D01* +X-116144Y-96933D01* +D02* +G37* +G36* +X-123199Y-97108D02* +X-123485Y-97946D01* +X-122909D01* +X-123199Y-97108D01* +D02* +G37* +G36* +X-141885Y-96931D02* +X-142148D01* +Y-97427D01* +X-141891D01* +X-141847Y-97425D01* +X-141804D01* +X-141793Y-97422D01* +X-141774D01* +X-141752Y-97419D01* +X-141700Y-97408D01* +X-141673Y-97400D01* +X-141651Y-97392D01* +X-141648Y-97389D01* +X-141637Y-97386D01* +X-141623Y-97378D01* +X-141607Y-97367D01* +X-141572Y-97337D01* +X-141555Y-97318D01* +X-141544Y-97299D01* +Y-97296D01* +X-141539Y-97288D01* +X-141536Y-97277D01* +X-141531Y-97261D01* +X-141525Y-97242D01* +X-141522Y-97217D01* +X-141517Y-97165D01* +Y-97163D01* +Y-97154D01* +X-141520Y-97144D01* +Y-97130D01* +X-141531Y-97092D01* +X-141536Y-97072D01* +X-141547Y-97051D01* +Y-97048D01* +X-141552Y-97040D01* +X-141561Y-97029D01* +X-141572Y-97018D01* +X-141585Y-97002D01* +X-141604Y-96988D01* +X-141626Y-96974D01* +X-141651Y-96961D01* +X-141653D01* +X-141662Y-96958D01* +X-141675Y-96952D01* +X-141694Y-96947D01* +X-141719Y-96944D01* +X-141746Y-96939D01* +X-141779Y-96936D01* +X-141814Y-96933D01* +X-141856D01* +X-141885Y-96931D01* +D02* +G37* +G36* +X-141839Y-97834D02* +X-142148D01* +Y-98421D01* +X-141722D01* +X-141703Y-98418D01* +X-141675Y-98416D01* +X-141642Y-98410D01* +X-141610Y-98402D01* +X-141574Y-98394D01* +X-141539Y-98380D01* +X-141533Y-98378D01* +X-141522Y-98372D01* +X-141506Y-98364D01* +X-141487Y-98350D01* +X-141465Y-98336D01* +X-141443Y-98317D01* +X-141424Y-98298D01* +X-141408Y-98274D01* +X-141405Y-98271D01* +X-141402Y-98263D01* +X-141397Y-98249D01* +X-141389Y-98230D01* +X-141383Y-98208D01* +X-141378Y-98184D01* +X-141375Y-98154D01* +X-141372Y-98124D01* +Y-98118D01* +Y-98105D01* +X-141375Y-98085D01* +X-141378Y-98061D01* +X-141383Y-98033D01* +X-141391Y-98004D01* +X-141402Y-97976D01* +X-141416Y-97952D01* +X-141419Y-97949D01* +X-141424Y-97941D01* +X-141435Y-97930D01* +X-141451Y-97916D01* +X-141471Y-97903D01* +X-141495Y-97886D01* +X-141528Y-97872D01* +X-141563Y-97859D01* +X-141566D01* +X-141577Y-97856D01* +X-141593Y-97853D01* +X-141615Y-97848D01* +X-141642Y-97845D01* +X-141675Y-97842D01* +X-141716Y-97840D01* +X-141760Y-97837D01* +X-141806D01* +X-141839Y-97834D01* +D02* +G37* +G36* +X-132055Y-96895D02* +X-132074D01* +X-132096Y-96898D01* +X-132126Y-96900D01* +X-132159Y-96906D01* +X-132194Y-96914D01* +X-132232Y-96925D01* +X-132270Y-96939D01* +X-132276Y-96942D01* +X-132287Y-96947D01* +X-132306Y-96958D01* +X-132331Y-96971D01* +X-132360Y-96991D01* +X-132391Y-97013D01* +X-132423Y-97040D01* +X-132456Y-97072D01* +X-132459Y-97075D01* +X-132470Y-97089D01* +X-132483Y-97108D01* +X-132502Y-97138D01* +X-132522Y-97171D01* +X-132543Y-97215D01* +X-132565Y-97264D01* +X-132584Y-97318D01* +Y-97321D01* +X-132587Y-97326D01* +X-132590Y-97335D01* +X-132593Y-97346D01* +X-132595Y-97359D01* +X-132601Y-97378D01* +X-132609Y-97422D01* +X-132617Y-97474D01* +X-132625Y-97537D01* +X-132631Y-97605D01* +X-132633Y-97679D01* +Y-97681D01* +Y-97687D01* +Y-97698D01* +Y-97714D01* +X-132631Y-97730D01* +Y-97752D01* +X-132628Y-97801D01* +X-132623Y-97859D01* +X-132614Y-97919D01* +X-132604Y-97979D01* +X-132587Y-98036D01* +Y-98039D01* +X-132584Y-98042D01* +X-132582Y-98050D01* +X-132579Y-98061D01* +X-132568Y-98088D01* +X-132552Y-98121D01* +X-132535Y-98159D01* +X-132513Y-98200D01* +X-132486Y-98238D01* +X-132459Y-98277D01* +X-132456Y-98279D01* +X-132445Y-98293D01* +X-132429Y-98309D01* +X-132407Y-98328D01* +X-132380Y-98350D01* +X-132350Y-98372D01* +X-132314Y-98394D01* +X-132276Y-98413D01* +X-132270Y-98416D01* +X-132257Y-98418D01* +X-132235Y-98427D01* +X-132208Y-98435D01* +X-132175Y-98443D01* +X-132137Y-98448D01* +X-132098Y-98454D01* +X-132055Y-98457D01* +X-132036D01* +X-132011Y-98454D01* +X-131984Y-98451D01* +X-131948Y-98446D01* +X-131913Y-98438D01* +X-131872Y-98427D01* +X-131834Y-98413D01* +X-131828Y-98410D01* +X-131815Y-98405D01* +X-131795Y-98394D01* +X-131771Y-98380D01* +X-131741Y-98358D01* +X-131711Y-98336D01* +X-131678Y-98307D01* +X-131648Y-98274D01* +X-131645Y-98268D01* +X-131634Y-98255D01* +X-131618Y-98233D01* +X-131599Y-98200D01* +X-131577Y-98164D01* +X-131555Y-98121D01* +X-131536Y-98072D01* +X-131517Y-98020D01* +Y-98017D01* +X-131514Y-98014D01* +X-131511Y-98006D01* +X-131509Y-97993D01* +X-131506Y-97979D01* +X-131503Y-97962D01* +X-131495Y-97922D01* +X-131487Y-97870D01* +X-131479Y-97812D01* +X-131476Y-97747D01* +X-131473Y-97676D01* +Y-97673D01* +Y-97668D01* +Y-97657D01* +Y-97640D01* +X-131476Y-97621D01* +Y-97602D01* +X-131479Y-97553D01* +X-131484Y-97496D01* +X-131495Y-97436D01* +X-131506Y-97376D01* +X-131522Y-97318D01* +Y-97316D01* +X-131525Y-97313D01* +X-131528Y-97305D01* +X-131531Y-97294D01* +X-131542Y-97266D01* +X-131558Y-97231D01* +X-131574Y-97193D01* +X-131596Y-97152D01* +X-131623Y-97114D01* +X-131651Y-97075D01* +X-131653Y-97070D01* +X-131664Y-97059D01* +X-131681Y-97043D01* +X-131703Y-97023D01* +X-131730Y-97002D01* +X-131763Y-96980D01* +X-131798Y-96958D01* +X-131836Y-96939D01* +X-131842Y-96936D01* +X-131855Y-96931D01* +X-131875Y-96925D01* +X-131902Y-96917D01* +X-131935Y-96909D01* +X-131973Y-96900D01* +X-132011Y-96898D01* +X-132055Y-96895D01* +D02* +G37* +G36* +X-139216D02* +X-139235D01* +X-139257Y-96898D01* +X-139286Y-96900D01* +X-139319Y-96906D01* +X-139355Y-96914D01* +X-139393Y-96925D01* +X-139431Y-96939D01* +X-139437Y-96942D01* +X-139448Y-96947D01* +X-139467Y-96958D01* +X-139491Y-96971D01* +X-139521Y-96991D01* +X-139551Y-97013D01* +X-139584Y-97040D01* +X-139617Y-97072D01* +X-139620Y-97075D01* +X-139630Y-97089D01* +X-139644Y-97108D01* +X-139663Y-97138D01* +X-139682Y-97171D01* +X-139704Y-97215D01* +X-139726Y-97264D01* +X-139745Y-97318D01* +Y-97321D01* +X-139748Y-97326D01* +X-139751Y-97335D01* +X-139753Y-97346D01* +X-139756Y-97359D01* +X-139762Y-97378D01* +X-139770Y-97422D01* +X-139778Y-97474D01* +X-139786Y-97537D01* +X-139792Y-97605D01* +X-139794Y-97679D01* +Y-97681D01* +Y-97687D01* +Y-97698D01* +Y-97714D01* +X-139792Y-97730D01* +Y-97752D01* +X-139789Y-97801D01* +X-139783Y-97859D01* +X-139775Y-97919D01* +X-139764Y-97979D01* +X-139748Y-98036D01* +Y-98039D01* +X-139745Y-98042D01* +X-139743Y-98050D01* +X-139740Y-98061D01* +X-139729Y-98088D01* +X-139712Y-98121D01* +X-139696Y-98159D01* +X-139674Y-98200D01* +X-139647Y-98238D01* +X-139620Y-98277D01* +X-139617Y-98279D01* +X-139606Y-98293D01* +X-139590Y-98309D01* +X-139568Y-98328D01* +X-139540Y-98350D01* +X-139510Y-98372D01* +X-139475Y-98394D01* +X-139437Y-98413D01* +X-139431Y-98416D01* +X-139418Y-98418D01* +X-139396Y-98427D01* +X-139368Y-98435D01* +X-139336Y-98443D01* +X-139297Y-98448D01* +X-139259Y-98454D01* +X-139216Y-98457D01* +X-139197D01* +X-139172Y-98454D01* +X-139145Y-98451D01* +X-139109Y-98446D01* +X-139074Y-98438D01* +X-139033Y-98427D01* +X-138994Y-98413D01* +X-138989Y-98410D01* +X-138975Y-98405D01* +X-138956Y-98394D01* +X-138932Y-98380D01* +X-138902Y-98358D01* +X-138872Y-98336D01* +X-138839Y-98307D01* +X-138809Y-98274D01* +X-138806Y-98268D01* +X-138795Y-98255D01* +X-138779Y-98233D01* +X-138760Y-98200D01* +X-138738Y-98164D01* +X-138716Y-98121D01* +X-138697Y-98072D01* +X-138678Y-98020D01* +Y-98017D01* +X-138675Y-98014D01* +X-138672Y-98006D01* +X-138670Y-97993D01* +X-138667Y-97979D01* +X-138664Y-97962D01* +X-138656Y-97922D01* +X-138648Y-97870D01* +X-138639Y-97812D01* +X-138637Y-97747D01* +X-138634Y-97676D01* +Y-97673D01* +Y-97668D01* +Y-97657D01* +Y-97640D01* +X-138637Y-97621D01* +Y-97602D01* +X-138639Y-97553D01* +X-138645Y-97496D01* +X-138656Y-97436D01* +X-138667Y-97376D01* +X-138683Y-97318D01* +Y-97316D01* +X-138686Y-97313D01* +X-138689Y-97305D01* +X-138691Y-97294D01* +X-138702Y-97266D01* +X-138719Y-97231D01* +X-138735Y-97193D01* +X-138757Y-97152D01* +X-138784Y-97114D01* +X-138812Y-97075D01* +X-138814Y-97070D01* +X-138825Y-97059D01* +X-138842Y-97043D01* +X-138863Y-97023D01* +X-138891Y-97002D01* +X-138924Y-96980D01* +X-138959Y-96958D01* +X-138997Y-96939D01* +X-139003Y-96936D01* +X-139016Y-96931D01* +X-139035Y-96925D01* +X-139063Y-96917D01* +X-139095Y-96909D01* +X-139134Y-96900D01* +X-139172Y-96898D01* +X-139216Y-96895D01* +D02* +G37* +%LPD*% +D64* +X47000Y83000D02* +Y88500D01* +X44500Y80500D02* +X47000Y83000D01* +X23000Y80500D02* +X44500D01* +X14500Y72000D02* +X23000Y80500D01* +X841Y72000D02* +X14500D01* +X-2500Y68000D02* +X40500D01* +X47000Y98500D02* +X48065D01* +X49957Y97043D02* +X53500Y93500D01* +Y81000D02* +Y93500D01* +X48065Y98500D02* +X49523Y97043D01* +X49957D01* +X40500Y68000D02* +X53500Y81000D01* +X21137Y72637D02* +X36089D01* +X36226Y72774D01* +X21000Y72500D02* +X21137Y72637D01* +D65* +X14000Y77000D02* +X24090Y87090D01* +X5000Y77000D02* +X14000D01* +X24312Y87090D02* +X25722Y88500D01* +X27000D01* +X24090Y87090D02* +X24312D01* +D68* +X17500Y-42500D02* +X44000D01* +X38000Y8000D02* +X56500D01* +D71* +X-84646Y102362D02* +D03* +Y-94488D02* +D03* +X84646D02* +D03* +Y102362D02* +D03* +D72* +X47000Y88500D02* +D03* +X-35500Y-94500D02* +D03* +X-61500D02* +D03* +X61500D02* +D03* +D73* +X47000Y98500D02* +D03* +X37000Y88500D02* +D03* +Y98500D02* +D03* +X27000Y88500D02* +D03* +Y98500D02* +D03* +X82500Y28000D02* +D03* +Y18000D02* +D03* +X-25500Y-94500D02* +D03* +X-51500D02* +D03* +X51500D02* +D03* +X41500D02* +D03* +X31500D02* +D03* +X82500Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +X70000Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +D74* +X87500Y-72500D02* +D03* +D75* +X77500D02* +D03* +D76* +X-9000Y-34000D02* +D03* +Y-14000D02* +D03* +D77* +X82500Y8000D02* +D03* +Y71000D02* +D03* +X70000D02* +D03* +D78* +X-47000Y-70000D02* +D03* +D79* +X-37000D02* +D03* +D80* +X69000Y1500D02* +D03* +X76000Y-22500D02* +D03* +X5000Y77000D02* +D03* +X841Y72000D02* +D03* +X-2500Y68000D02* +D03* +X17500Y-42500D02* +D03* +X44000D02* +D03* +X-83000Y56500D02* +D03* +X-84000Y74500D02* +D03* +X56500Y8000D02* +D03* +X36226Y72774D02* +D03* +X21000Y72500D02* +D03* +X50000Y65000D02* +D03* +X-70500Y-15000D02* +D03* +Y-20000D02* +D03* +Y-25000D02* +D03* +X-75748D02* +D03* +Y-15000D02* +D03* +Y-20000D02* +D03* +X-24500Y-6000D02* +D03* +X-1000Y-24000D02* +D03* +X-5500D02* +D03* +X-9500D02* +D03* +X-13500D02* +D03* +X-17500D02* +D03* +X38000Y8000D02* +D03* +X67150Y-76000D02* +D03* +X29850Y-61350D02* +D03* +X-64500Y82500D02* +D03* +X-50000Y11500D02* +D03* +X9000Y-70500D02* +D03* +X26390Y6000D02* +D03* +Y-24000D02* +D03* +X-3500Y-67500D02* +D03* +D81* +X-18500Y-52000D02* +D03* +X-14000D02* +D03* +X-9500D02* +D03* +X-9400Y-46100D02* +D03* +X-13900D02* +D03* +X-18400D02* +D03* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBO b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBO new file mode 100644 index 0000000..2d19f11 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBO @@ -0,0 +1,11045 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=32896* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +G36* +X13598Y62262D02* +X13836D01* +Y62023D01* +X14074D01* +Y61785D01* +X14312D01* +Y61309D01* +X14551D01* +Y60356D01* +X14312D01* +Y59879D01* +X14074D01* +Y59402D01* +X13598D01* +Y59164D01* +X13121D01* +Y58926D01* +X7641D01* +Y59164D01* +X7164D01* +Y59402D01* +X6688D01* +Y59641D01* +X6449D01* +Y60117D01* +X6211D01* +Y61547D01* +X6449D01* +Y61785D01* +X6688D01* +Y62023D01* +X6926D01* +Y62262D01* +X7164D01* +Y62500D01* +X13598D01* +Y62262D01* +D02* +G37* +G36* +X-7848Y60117D02* +X-7133D01* +Y59879D01* +X-6894D01* +Y59641D01* +X-6656D01* +Y59164D01* +X-6418D01* +Y57734D01* +X-6656D01* +Y57258D01* +X-6894D01* +Y57020D01* +X-7371D01* +Y56781D01* +X-22144D01* +Y57020D01* +X-22383D01* +Y57258D01* +X-22621D01* +Y57496D01* +X-22859D01* +Y57734D01* +X-23098D01* +Y59164D01* +X-22859D01* +Y59641D01* +X-22621D01* +Y59879D01* +X-22383D01* +Y60117D01* +X-21668D01* +Y60356D01* +X-7848D01* +Y60117D01* +D02* +G37* +G36* +X-26434D02* +X-25957D01* +Y59879D01* +X-25480D01* +Y59641D01* +X-25242D01* +Y59164D01* +X-25004D01* +Y57734D01* +X-25242D01* +Y57496D01* +X-25480D01* +Y57258D01* +X-25719D01* +Y57020D01* +X-25957D01* +Y56781D01* +X-29531D01* +Y57020D01* +X-29770D01* +Y57258D01* +X-30008D01* +Y57496D01* +X-30246D01* +Y58211D01* +X-30484D01* +Y58926D01* +X-30246D01* +Y59402D01* +X-30008D01* +Y59641D01* +X-29770D01* +Y59879D01* +X-29531D01* +Y60117D01* +X-28816D01* +Y60356D01* +X-26434D01* +Y60117D01* +D02* +G37* +G36* +X13359Y56781D02* +X13836D01* +Y56543D01* +X14074D01* +Y56305D01* +X14312D01* +Y55828D01* +X14551D01* +Y54637D01* +X14312D01* +Y54160D01* +X14074D01* +Y53922D01* +X13836D01* +Y53684D01* +X13359D01* +Y53445D01* +X7402D01* +Y53684D01* +X6926D01* +Y53922D01* +X6688D01* +Y54160D01* +X6449D01* +Y54637D01* +X6211D01* +Y55828D01* +X6449D01* +Y56305D01* +X6688D01* +Y56543D01* +X6926D01* +Y56781D01* +X7402D01* +Y57020D01* +X13359D01* +Y56781D01* +D02* +G37* +G36* +X-1891Y66789D02* +X-1414D01* +Y66551D01* +X-938D01* +Y66312D01* +X-699D01* +Y66074D01* +X-461D01* +Y65836D01* +X-223D01* +Y65598D01* +X16D01* +Y65121D01* +X254D01* +Y64883D01* +X492D01* +Y64168D01* +X730D01* +Y52731D01* +X492D01* +Y52254D01* +X254D01* +Y51777D01* +X16D01* +Y51301D01* +X-223D01* +Y51063D01* +X-461D01* +Y50824D01* +X-699D01* +Y50586D01* +X-1176D01* +Y50348D01* +X-1652D01* +Y50109D01* +X-2129D01* +Y49871D01* +X-23812D01* +Y50109D01* +X-24289D01* +Y50348D01* +X-24527D01* +Y50586D01* +X-24766D01* +Y51063D01* +X-25004D01* +Y52254D01* +X-24766D01* +Y52731D01* +X-24527D01* +Y52969D01* +X-24289D01* +Y53207D01* +X-23812D01* +Y53445D01* +X-3082D01* +Y53684D01* +X-2844D01* +Y63453D01* +X-33820D01* +Y63215D01* +X-34059D01* +Y53684D01* +X-33820D01* +Y53445D01* +X-29770D01* +Y53207D01* +X-29293D01* +Y52969D01* +X-29055D01* +Y52731D01* +X-28816D01* +Y52254D01* +X-28578D01* +Y51063D01* +X-28816D01* +Y50586D01* +X-29055D01* +Y50348D01* +X-29293D01* +Y50109D01* +X-29531D01* +Y49871D01* +X-34535D01* +Y50109D01* +X-35250D01* +Y50348D01* +X-35727D01* +Y50586D01* +X-35965D01* +Y50824D01* +X-36203D01* +Y51063D01* +X-36441D01* +Y51301D01* +X-36680D01* +Y51539D01* +X-36918D01* +Y52016D01* +X-37156D01* +Y52492D01* +X-37394D01* +Y53207D01* +X-37633D01* +Y63691D01* +X-37394D01* +Y64644D01* +X-37156D01* +Y65121D01* +X-36918D01* +Y65359D01* +X-36680D01* +Y65598D01* +X-36441D01* +Y66074D01* +X-35965D01* +Y66312D01* +X-35727D01* +Y66551D01* +X-35250D01* +Y66789D01* +X-34773D01* +Y67027D01* +X-1891D01* +Y66789D01* +D02* +G37* +G36* +X31707D02* +X32660D01* +Y66551D01* +X33375D01* +Y66312D01* +X33852D01* +Y66074D01* +X34328D01* +Y65836D01* +X34566D01* +Y65598D01* +X35043D01* +Y65359D01* +X35281D01* +Y65121D01* +X35519D01* +Y64883D01* +X35996D01* +Y64644D01* +X36234D01* +Y64406D01* +X36473D01* +Y64168D01* +X36711D01* +Y63691D01* +X36949D01* +Y63453D01* +X37187D01* +Y63215D01* +X37426D01* +Y62738D01* +X37664D01* +Y62500D01* +X37902D01* +Y62023D01* +X38141D01* +Y61309D01* +X38379D01* +Y60594D01* +X38617D01* +Y59879D01* +X38855D01* +Y56305D01* +X38617D01* +Y55352D01* +X38379D01* +Y55113D01* +Y54875D01* +Y54637D01* +X38141D01* +Y54160D01* +X37902D01* +Y53684D01* +X37664D01* +Y53207D01* +X37426D01* +Y52969D01* +X37187D01* +Y52492D01* +X36949D01* +Y52254D01* +X36711D01* +Y52016D01* +X36473D01* +Y51777D01* +X36234D01* +Y51539D01* +X35996D01* +Y51301D01* +X35758D01* +Y51063D01* +X35519D01* +Y50824D01* +X35281D01* +Y50586D01* +X34805D01* +Y50348D01* +X34566D01* +Y50109D01* +X34090D01* +Y49871D01* +X33613D01* +Y49633D01* +X33137D01* +Y49395D01* +X32422D01* +Y49156D01* +X31469D01* +Y48918D01* +X28133D01* +Y49156D01* +X27180D01* +Y49395D01* +X26465D01* +Y49633D01* +X25988D01* +Y49871D01* +X25512D01* +Y50109D01* +X25035D01* +Y50348D01* +X24797D01* +Y50586D01* +X24320D01* +Y50824D01* +X24082D01* +Y51063D01* +X23844D01* +Y51301D01* +X23606D01* +Y51539D01* +X23367D01* +Y51777D01* +X23129D01* +Y52016D01* +X22891D01* +Y52254D01* +X22652D01* +Y52492D01* +X22414D01* +Y52731D01* +X22176D01* +Y53207D01* +X21937D01* +Y53684D01* +X21699D01* +Y54160D01* +X21461D01* +Y54637D01* +X21223D01* +Y55352D01* +X20984D01* +Y56305D01* +X20746D01* +Y59879D01* +X20984D01* +Y60832D01* +X21223D01* +Y61309D01* +X21461D01* +Y62023D01* +X21699D01* +Y62500D01* +X21937D01* +Y62738D01* +X22176D01* +Y63215D01* +X22414D01* +Y63453D01* +X22652D01* +Y63691D01* +X22891D01* +Y64168D01* +X23129D01* +Y64406D01* +X23367D01* +Y64644D01* +X23606D01* +Y64883D01* +X23844D01* +Y65121D01* +X24320D01* +Y65359D01* +X24559D01* +Y65598D01* +X25035D01* +Y65836D01* +X25273D01* +Y66074D01* +X25750D01* +Y66312D01* +X26227D01* +Y66551D01* +X26941D01* +Y66789D01* +X27894D01* +Y67027D01* +X31707D01* +Y66789D01* +D02* +G37* +G36* +X44813Y46535D02* +X45051D01* +Y46297D01* +X45289D01* +Y46059D01* +X45527D01* +Y45820D01* +X45766D01* +Y45582D01* +X46004D01* +Y45344D01* +X46242D01* +Y45105D01* +X46481D01* +Y44867D01* +X46719D01* +Y44629D01* +X46957D01* +Y44391D01* +X47195D01* +Y44152D01* +X47434D01* +Y43914D01* +X47672D01* +Y43676D01* +X47910D01* +Y43437D01* +X48148D01* +Y43199D01* +X48387D01* +Y42961D01* +X48625D01* +Y42723D01* +X48863D01* +Y42484D01* +X49102D01* +Y42246D01* +X49340D01* +Y42008D01* +X49578D01* +Y41293D01* +X49816D01* +Y-25664D01* +X49578D01* +Y-26379D01* +X49340D01* +Y-26617D01* +X49102D01* +Y-26855D01* +X48863D01* +Y-27094D01* +X48625D01* +Y-27332D01* +X48387D01* +Y-27570D01* +X48148D01* +Y-27809D01* +X47910D01* +Y-28047D01* +X47672D01* +Y-28285D01* +X47434D01* +Y-28523D01* +X47195D01* +Y-28762D01* +X46957D01* +Y-29000D01* +X46719D01* +Y-29238D01* +X46481D01* +Y-29477D01* +X46242D01* +Y-29715D01* +X46004D01* +Y-29953D01* +X45766D01* +Y-30191D01* +X45527D01* +Y-30430D01* +X45289D01* +Y-30668D01* +X45051D01* +Y-30906D01* +X44574D01* +Y-31144D01* +X-44066D01* +Y-30906D01* +X-44543D01* +Y-30668D01* +X-44781D01* +Y-30430D01* +X-45020D01* +Y-30191D01* +X-45258D01* +Y-29953D01* +X-45496D01* +Y-29715D01* +X-45734D01* +Y-29477D01* +X-45973D01* +Y-29238D01* +X-46211D01* +Y-29000D01* +X-46449D01* +Y-28762D01* +X-46687D01* +Y-28523D01* +X-46926D01* +Y-28285D01* +X-47164D01* +Y-28047D01* +X-47402D01* +Y-27809D01* +X-47641D01* +Y-27570D01* +X-47879D01* +Y-27332D01* +X-48117D01* +Y-27094D01* +X-48355D01* +Y-26855D01* +X-48594D01* +Y-26617D01* +X-48832D01* +Y-26379D01* +X-49070D01* +Y-25664D01* +X-49309D01* +Y-17324D01* +X-49070D01* +Y-16609D01* +X-48832D01* +Y-16371D01* +X-48594D01* +Y-16133D01* +X-48355D01* +Y-15894D01* +X-47641D01* +Y-15656D01* +X-47164D01* +Y-15894D01* +X-46449D01* +Y-16133D01* +X-46211D01* +Y-16371D01* +X-45973D01* +Y-16848D01* +X-45734D01* +Y-24711D01* +X-45496D01* +Y-24949D01* +X-45258D01* +Y-25188D01* +X-45020D01* +Y-25426D01* +X-44781D01* +Y-25664D01* +X-44543D01* +Y-25902D01* +X-44305D01* +Y-26141D01* +X-44066D01* +Y-26379D01* +X-43828D01* +Y-26617D01* +X-43590D01* +Y-26855D01* +X-43352D01* +Y-27094D01* +X-43113D01* +Y-27332D01* +X-42875D01* +Y-27570D01* +X-36680D01* +Y-5172D01* +X-36441D01* +Y-4457D01* +X-36203D01* +Y-3980D01* +X-35965D01* +Y-3742D01* +X-35488D01* +Y-3504D01* +X-34297D01* +Y-3742D01* +X-33820D01* +Y-3980D01* +X-33582D01* +Y-4219D01* +X-33344D01* +Y-4457D01* +X-33105D01* +Y-27570D01* +X-23098D01* +Y-23519D01* +X-22859D01* +Y-22805D01* +X-22621D01* +Y-22566D01* +X-22383D01* +Y-22090D01* +X-22144D01* +Y-21852D01* +X-21906D01* +Y-21613D01* +X-21668D01* +Y-21375D01* +X-21191D01* +Y-21137D01* +X-20715D01* +Y-20898D01* +X-20238D01* +Y-20660D01* +X-13566D01* +Y-14465D01* +X-13328D01* +Y-13988D01* +X-13090D01* +Y-13512D01* +X-12852D01* +Y-13273D01* +X-12375D01* +Y-13035D01* +X-12137D01* +Y-12797D01* +X-11898D01* +Y-12559D01* +X-11660D01* +Y-12320D01* +X-11422D01* +Y-12082D01* +X-11184D01* +Y-11844D01* +X-10945D01* +Y-11605D01* +X-10469D01* +Y-11367D01* +X-10231D01* +Y-11129D01* +X-9992D01* +Y-10891D01* +X-9754D01* +Y-10652D01* +X-9516D01* +Y-10414D01* +X-9277D01* +Y-10176D01* +X-9039D01* +Y-9938D01* +X-8563D01* +Y-9699D01* +X-8324D01* +Y-9461D01* +X-8086D01* +Y-9223D01* +X-7848D01* +Y-8984D01* +X-7609D01* +Y-8746D01* +X-7371D01* +Y-8508D01* +X-7133D01* +Y-8269D01* +X-6894D01* +Y-8031D01* +X-6418D01* +Y-7793D01* +X-6180D01* +Y-7555D01* +X-5941D01* +Y-7316D01* +X-5703D01* +Y-7078D01* +X-5465D01* +Y-6840D01* +X-5227D01* +Y-6602D01* +X-4988D01* +Y-6363D01* +X-4512D01* +Y-6125D01* +X-4273D01* +Y-5887D01* +X-2606D01* +Y-6125D01* +X-1652D01* +Y-6363D01* +X-461D01* +Y-6602D01* +X492D01* +Y-6840D01* +X1445D01* +Y-7078D01* +X2637D01* +Y-7316D01* +X3590D01* +Y-7555D01* +X4543D01* +Y-7793D01* +X5734D01* +Y-8031D01* +X6688D01* +Y-8269D01* +X7641D01* +Y-8508D01* +X8832D01* +Y-8746D01* +X9785D01* +Y-8984D01* +X10023D01* +Y-9223D01* +X10500D01* +Y-9699D01* +X10738D01* +Y-9938D01* +X10977D01* +Y-10414D01* +X11215D01* +Y-10652D01* +X11453D01* +Y-10891D01* +X11691D01* +Y-11367D01* +X11930D01* +Y-11605D01* +X12168D01* +Y-12082D01* +X12406D01* +Y-12320D01* +X12644D01* +Y-12559D01* +X12883D01* +Y-13035D01* +X13121D01* +Y-13273D01* +X13359D01* +Y-13750D01* +X13598D01* +Y-13988D01* +X13836D01* +Y-14465D01* +X14074D01* +Y-20660D01* +X20746D01* +Y-20898D01* +X21223D01* +Y-21137D01* +X21699D01* +Y-21375D01* +X22176D01* +Y-21613D01* +X22414D01* +Y-21852D01* +X22652D01* +Y-22090D01* +X22891D01* +Y-22566D01* +X23129D01* +Y-22805D01* +X23367D01* +Y-23519D01* +X23606D01* +Y-27570D01* +X33613D01* +Y-4457D01* +X33852D01* +Y-4219D01* +X34090D01* +Y-3980D01* +X34328D01* +Y-3742D01* +X34805D01* +Y-3504D01* +X35996D01* +Y-3742D01* +X36234D01* +Y-3980D01* +X36711D01* +Y-4457D01* +X36949D01* +Y-5172D01* +X37187D01* +Y-27570D01* +X43383D01* +Y-27332D01* +X43621D01* +Y-27094D01* +X43859D01* +Y-26855D01* +X44098D01* +Y-26617D01* +X44336D01* +Y-26379D01* +X44574D01* +Y-26141D01* +X44813D01* +Y-25902D01* +X45051D01* +Y-25664D01* +X45289D01* +Y-25426D01* +X45527D01* +Y-25188D01* +X45766D01* +Y-24949D01* +X46004D01* +Y-24711D01* +X46242D01* +Y24375D01* +X46004D01* +Y24613D01* +X5734D01* +Y18894D01* +X5496D01* +Y18418D01* +X5258D01* +Y17941D01* +X4781D01* +Y17703D01* +X4305D01* +Y17465D01* +X730D01* +Y16988D01* +X492D01* +Y16273D01* +X254D01* +Y15559D01* +X16D01* +Y14605D01* +X-223D01* +Y13891D01* +X-461D01* +Y13176D01* +X-699D01* +Y12461D01* +X-938D01* +Y11746D01* +X-1176D01* +Y11270D01* +X-1414D01* +Y11031D01* +X-1652D01* +Y10793D01* +X-2129D01* +Y10555D01* +X-5465D01* +Y4598D01* +X-5703D01* +Y4121D01* +X-5941D01* +Y3883D01* +X-6180D01* +Y3644D01* +X-6656D01* +Y3406D01* +X-7848D01* +Y3644D01* +X-8324D01* +Y3883D01* +X-8563D01* +Y4121D01* +X-8801D01* +Y4598D01* +X-9039D01* +Y10555D01* +X-12375D01* +Y10793D01* +X-12852D01* +Y11031D01* +X-13090D01* +Y11270D01* +X-13328D01* +Y11746D01* +X-13566D01* +Y11984D01* +X-13805D01* +Y11746D01* +X-14043D01* +Y11508D01* +X-14520D01* +Y11270D01* +X-14996D01* +Y11031D01* +X-15473D01* +Y10793D01* +X-16187D01* +Y10555D01* +X-17855D01* +Y10316D01* +X-18094D01* +Y10555D01* +X-19762D01* +Y10793D01* +X-20477D01* +Y11031D01* +X-21191D01* +Y11270D01* +X-21668D01* +Y11508D01* +X-22144D01* +Y11746D01* +X-22621D01* +Y11984D01* +X-22859D01* +Y12223D01* +X-23336D01* +Y12461D01* +X-23574D01* +Y12699D01* +X-24051D01* +Y12937D01* +X-24289D01* +Y13176D01* +X-24766D01* +Y13414D01* +X-26910D01* +Y13176D01* +X-27625D01* +Y12937D01* +X-28340D01* +Y12699D01* +X-29055D01* +Y12461D01* +X-30008D01* +Y12223D01* +X-30961D01* +Y11984D01* +X-33344D01* +Y12223D01* +X-34059D01* +Y12461D01* +X-34535D01* +Y12699D01* +X-34773D01* +Y12937D01* +X-35250D01* +Y13176D01* +X-35488D01* +Y13414D01* +X-35727D01* +Y13652D01* +X-35965D01* +Y14129D01* +X-36203D01* +Y14367D01* +X-36441D01* +Y14605D01* +X-36680D01* +Y15082D01* +X-36918D01* +Y15559D01* +X-37156D01* +Y16512D01* +X-37394D01* +Y18894D01* +X-37156D01* +Y19609D01* +X-36918D01* +Y20324D01* +X-36680D01* +Y20801D01* +X-36441D01* +Y21039D01* +X-36203D01* +Y21516D01* +X-35965D01* +Y21754D01* +X-35727D01* +Y21992D01* +X-35488D01* +Y22230D01* +X-35250D01* +Y22707D01* +X-35012D01* +Y22945D01* +X-34773D01* +Y23184D01* +X-34535D01* +Y23422D01* +X-34059D01* +Y23660D01* +X-33820D01* +Y23898D01* +X-33582D01* +Y24137D01* +X-33344D01* +Y24375D01* +X-33105D01* +Y24613D01* +X-45496D01* +Y24375D01* +X-45734D01* +Y-11129D01* +X-45973D01* +Y-11605D01* +X-46211D01* +Y-11844D01* +X-46687D01* +Y-12082D01* +X-48355D01* +Y-11844D01* +X-48594D01* +Y-11605D01* +X-48832D01* +Y-11367D01* +X-49070D01* +Y-10652D01* +X-49309D01* +Y41293D01* +X-49070D01* +Y42008D01* +X-48832D01* +Y42246D01* +X-48594D01* +Y42484D01* +X-48355D01* +Y42723D01* +X-48117D01* +Y42961D01* +X-47879D01* +Y43199D01* +X-47641D01* +Y43437D01* +X-47402D01* +Y43676D01* +X-47164D01* +Y43914D01* +X-46926D01* +Y44152D01* +X-46687D01* +Y44391D01* +X-46449D01* +Y44629D01* +X-46211D01* +Y44867D01* +X-45973D01* +Y45105D01* +X-45734D01* +Y45344D01* +X-45496D01* +Y45582D01* +X-45258D01* +Y45820D01* +X-45020D01* +Y46059D01* +X-44781D01* +Y46297D01* +X-44543D01* +Y46535D01* +X-44305D01* +Y46773D01* +X44813D01* +Y46535D01* +D02* +G37* +G36* +X48387Y73223D02* +X48863D01* +Y72984D01* +X49102D01* +Y72746D01* +X49340D01* +Y72508D01* +X49578D01* +Y72269D01* +X49816D01* +Y72031D01* +X50055D01* +Y71793D01* +X50293D01* +Y71555D01* +X50531D01* +Y71316D01* +X50770D01* +Y71078D01* +X51008D01* +Y70840D01* +X51246D01* +Y70602D01* +X51484D01* +Y70363D01* +X51723D01* +Y70125D01* +X51961D01* +Y69887D01* +X52199D01* +Y69648D01* +X52438D01* +Y69410D01* +X52676D01* +Y69172D01* +X52914D01* +Y68934D01* +X53152D01* +Y68695D01* +X53391D01* +Y68457D01* +X53629D01* +Y68219D01* +X53867D01* +Y67980D01* +X54106D01* +Y67742D01* +X54344D01* +Y67504D01* +X54582D01* +Y67266D01* +X54820D01* +Y67027D01* +X55059D01* +Y66789D01* +X55297D01* +Y66551D01* +X55535D01* +Y66312D01* +X55773D01* +Y66074D01* +X56012D01* +Y65836D01* +X56250D01* +Y65598D01* +X56488D01* +Y65359D01* +X56727D01* +Y65121D01* +X56965D01* +Y64883D01* +X57203D01* +Y64644D01* +X57441D01* +Y64406D01* +X57680D01* +Y64168D01* +X57918D01* +Y63930D01* +X58156D01* +Y63691D01* +X58394D01* +Y63453D01* +X58633D01* +Y63215D01* +X58871D01* +Y62977D01* +X59109D01* +Y62738D01* +X59348D01* +Y62500D01* +X59586D01* +Y62262D01* +X59824D01* +Y62023D01* +X60062D01* +Y61785D01* +X60301D01* +Y61547D01* +X60539D01* +Y61309D01* +X60777D01* +Y61070D01* +X61016D01* +Y60594D01* +X61254D01* +Y-47348D01* +X61016D01* +Y-47824D01* +X60777D01* +Y-48063D01* +X60539D01* +Y-48301D01* +X60062D01* +Y-48539D01* +X38617D01* +Y-48301D01* +X38141D01* +Y-48063D01* +X37902D01* +Y-47824D01* +X37664D01* +Y-47586D01* +X37426D01* +Y-41391D01* +X-36918D01* +Y-47586D01* +X-37156D01* +Y-47824D01* +X-37394D01* +Y-48063D01* +X-37633D01* +Y-48301D01* +X-38109D01* +Y-48539D01* +X-59555D01* +Y-48301D01* +X-60031D01* +Y-48063D01* +X-60269D01* +Y-47824D01* +X-60508D01* +Y-47348D01* +X-60746D01* +Y60594D01* +X-60508D01* +Y61070D01* +X-60269D01* +Y61309D01* +X-60031D01* +Y61547D01* +X-59793D01* +Y61785D01* +X-59555D01* +Y62023D01* +X-59316D01* +Y62262D01* +X-59078D01* +Y62500D01* +X-58840D01* +Y62738D01* +X-58602D01* +Y62977D01* +X-58363D01* +Y63215D01* +X-58125D01* +Y63453D01* +X-57887D01* +Y63691D01* +X-57648D01* +Y63930D01* +X-57410D01* +Y64168D01* +X-57172D01* +Y64406D01* +X-56934D01* +Y64644D01* +X-56695D01* +Y64883D01* +X-56457D01* +Y65121D01* +X-56219D01* +Y65359D01* +X-55980D01* +Y65598D01* +X-55742D01* +Y65836D01* +X-55504D01* +Y66074D01* +X-55266D01* +Y66312D01* +X-55027D01* +Y66551D01* +X-54789D01* +Y66789D01* +X-54551D01* +Y67027D01* +X-54312D01* +Y67266D01* +X-54074D01* +Y67504D01* +X-53836D01* +Y67742D01* +X-53598D01* +Y67980D01* +X-53359D01* +Y68219D01* +X-53121D01* +Y68457D01* +X-52883D01* +Y68695D01* +X-52644D01* +Y68934D01* +X-52406D01* +Y69172D01* +X-52168D01* +Y69410D01* +X-51930D01* +Y69648D01* +X-51691D01* +Y69887D01* +X-51453D01* +Y70125D01* +X-51215D01* +Y70363D01* +X-50977D01* +Y70602D01* +X-50738D01* +Y70840D01* +X-50500D01* +Y71078D01* +X-50262D01* +Y71316D01* +X-50023D01* +Y71555D01* +X-49785D01* +Y71793D01* +X-49547D01* +Y72031D01* +X-49309D01* +Y72269D01* +X-49070D01* +Y72508D01* +X-48832D01* +Y72746D01* +X-48594D01* +Y72984D01* +X-48355D01* +Y73223D01* +X-47879D01* +Y73461D01* +X29324D01* +Y73223D01* +X29801D01* +Y72984D01* +X30039D01* +Y72746D01* +X30277D01* +Y72508D01* +X30516D01* +Y70840D01* +X30277D01* +Y70602D01* +X30039D01* +Y70363D01* +X29801D01* +Y70125D01* +X29324D01* +Y69887D01* +X-46687D01* +Y69648D01* +X-46926D01* +Y69410D01* +X-47164D01* +Y69172D01* +X-47402D01* +Y68934D01* +X-47641D01* +Y68695D01* +X-47879D01* +Y68457D01* +X-48117D01* +Y68219D01* +X-48355D01* +Y67980D01* +X-48594D01* +Y67742D01* +X-48832D01* +Y67504D01* +X-49070D01* +Y67266D01* +X-49309D01* +Y67027D01* +X-49547D01* +Y66789D01* +X-49785D01* +Y66551D01* +X-50023D01* +Y66312D01* +X-50262D01* +Y66074D01* +X-50500D01* +Y65836D01* +X-50738D01* +Y65598D01* +X-50977D01* +Y65359D01* +X-51215D01* +Y65121D01* +X-51453D01* +Y64883D01* +X-51691D01* +Y64644D01* +X-51930D01* +Y64406D01* +X-52168D01* +Y64168D01* +X-52406D01* +Y63930D01* +X-52644D01* +Y63691D01* +X-52883D01* +Y63453D01* +X-53121D01* +Y63215D01* +X-53359D01* +Y62977D01* +X-53598D01* +Y62738D01* +X-53836D01* +Y62500D01* +X-54074D01* +Y62262D01* +X-54312D01* +Y62023D01* +X-54551D01* +Y61785D01* +X-54789D01* +Y61547D01* +X-55027D01* +Y61309D01* +X-55266D01* +Y61070D01* +X-55504D01* +Y60832D01* +X-55742D01* +Y60594D01* +X-55980D01* +Y60356D01* +X-56219D01* +Y60117D01* +X-56457D01* +Y59879D01* +X-56695D01* +Y59641D01* +X-56934D01* +Y59402D01* +X-57172D01* +Y57020D01* +Y56781D01* +Y-44965D01* +X-40492D01* +Y-39246D01* +X-40254D01* +Y-38770D01* +X-40016D01* +Y-38293D01* +X-39777D01* +Y-38055D01* +X-39301D01* +Y-37816D01* +X39809D01* +Y-38055D01* +X40285D01* +Y-38293D01* +X40523D01* +Y-38770D01* +X40762D01* +Y-39246D01* +X41000D01* +Y-44965D01* +X57680D01* +Y59402D01* +X57441D01* +Y59641D01* +X57203D01* +Y59879D01* +X56965D01* +Y60117D01* +X56727D01* +Y60356D01* +X56488D01* +Y60594D01* +X56250D01* +Y60832D01* +X56012D01* +Y61070D01* +X55773D01* +Y61309D01* +X55535D01* +Y61547D01* +X55297D01* +Y61785D01* +X55059D01* +Y62023D01* +X54820D01* +Y62262D01* +X54582D01* +Y62500D01* +X54344D01* +Y62738D01* +X54106D01* +Y62977D01* +X53867D01* +Y63215D01* +X53629D01* +Y63453D01* +X53391D01* +Y63691D01* +X53152D01* +Y63930D01* +X52914D01* +Y64168D01* +X52676D01* +Y64406D01* +X52438D01* +Y64644D01* +X52199D01* +Y64883D01* +X51961D01* +Y65121D01* +X51723D01* +Y65359D01* +X51484D01* +Y65598D01* +X51246D01* +Y65836D01* +X51008D01* +Y66074D01* +X50770D01* +Y66312D01* +X50531D01* +Y66551D01* +X50293D01* +Y66789D01* +X50055D01* +Y67027D01* +X49816D01* +Y67266D01* +X49578D01* +Y67504D01* +X49340D01* +Y67742D01* +X49102D01* +Y67980D01* +X48863D01* +Y68219D01* +X48625D01* +Y68457D01* +X48387D01* +Y68695D01* +X48148D01* +Y68934D01* +X47910D01* +Y69172D01* +X47672D01* +Y69410D01* +X47434D01* +Y69648D01* +X47195D01* +Y69887D01* +X35281D01* +Y70125D01* +X34805D01* +Y70363D01* +X34566D01* +Y70602D01* +X34328D01* +Y71316D01* +X34090D01* +Y72031D01* +X34328D01* +Y72746D01* +X34566D01* +Y72984D01* +X34805D01* +Y73223D01* +X35281D01* +Y73461D01* +X48387D01* +Y73223D01* +D02* +G37* +G36* +X-748Y-45381D02* +X-398D01* +Y-45556D01* +X-224D01* +Y-45731D01* +X126D01* +Y-45906D01* +X476D01* +Y-46081D01* +X826D01* +Y-46256D01* +X1001D01* +Y-46431D01* +X1351D01* +Y-46606D01* +X1701D01* +Y-46781D01* +X2051D01* +Y-46956D01* +X2226D01* +Y-47131D01* +X2576D01* +Y-47306D01* +X2926D01* +Y-47481D01* +X3275D01* +Y-47656D01* +X3450D01* +Y-47831D01* +X3800D01* +Y-48006D01* +X4150D01* +Y-48180D01* +X4500D01* +Y-48355D01* +X4675D01* +Y-48530D01* +X5025D01* +Y-48705D01* +X5375D01* +Y-48880D01* +X5550D01* +Y-49055D01* +X5900D01* +Y-49230D01* +X6075D01* +Y-54129D01* +X6424D01* +Y-54303D01* +X6599D01* +Y-54479D01* +X6949D01* +Y-54653D01* +X7299D01* +Y-54828D01* +X7474D01* +Y-55003D01* +X7824D01* +Y-55178D01* +X8174D01* +Y-55353D01* +X8524D01* +Y-55528D01* +X8699D01* +Y-55703D01* +X9049D01* +Y-55878D01* +X9398D01* +Y-56053D01* +X9748D01* +Y-56228D01* +X9923D01* +Y-56403D01* +X10273D01* +Y-56578D01* +X10448D01* +Y-64800D01* +X10098D01* +Y-64975D01* +X9748D01* +Y-65150D01* +X9398D01* +Y-65325D01* +X9223D01* +Y-65500D01* +X8874D01* +Y-65675D01* +X8524D01* +Y-65850D01* +X8174D01* +Y-66025D01* +X7999D01* +Y-66200D01* +X7649D01* +Y-66375D01* +X7299D01* +Y-66550D01* +X7124D01* +Y-66725D01* +X6774D01* +Y-66900D01* +X6424D01* +Y-67075D01* +X6075D01* +Y-67249D01* +X5900D01* +Y-67424D01* +X5550D01* +Y-67599D01* +X5200D01* +Y-67774D01* +X4850D01* +Y-67949D01* +X4675D01* +Y-68124D01* +X4325D01* +Y-68299D01* +X3975D01* +Y-68474D01* +X3625D01* +Y-68649D01* +X3450D01* +Y-68474D01* +X3275D01* +Y-68299D01* +X2926D01* +Y-68124D01* +X2576D01* +Y-67949D01* +X2226D01* +Y-67774D01* +X2051D01* +Y-67599D01* +X1701D01* +Y-67424D01* +X1351D01* +Y-67249D01* +X1001D01* +Y-67075D01* +X826D01* +Y-66900D01* +X476D01* +Y-66725D01* +X126D01* +Y-66550D01* +X-224D01* +Y-66375D01* +X-398D01* +Y-66200D01* +X-748D01* +Y-66025D01* +X-923D01* +Y-66200D01* +X-1273D01* +Y-66375D01* +X-1448D01* +Y-66550D01* +X-1798D01* +Y-66725D01* +X-2148D01* +Y-66900D01* +X-2498D01* +Y-67075D01* +X-2673D01* +Y-67249D01* +X-3023D01* +Y-67424D01* +X-3373D01* +Y-67599D01* +X-3722D01* +Y-67774D01* +X-3897D01* +Y-67949D01* +X-4247D01* +Y-68124D01* +X-4597D01* +Y-68299D01* +X-4772D01* +Y-68474D01* +X-5122D01* +Y-68649D01* +X-5297D01* +Y-68474D01* +X-5647D01* +Y-68299D01* +X-5997D01* +Y-68124D01* +X-6346D01* +Y-67949D01* +X-6521D01* +Y-67774D01* +X-6871D01* +Y-67599D01* +X-7221D01* +Y-67424D01* +X-7571D01* +Y-67249D01* +X-7746D01* +Y-67075D01* +X-8096D01* +Y-66900D01* +X-8446D01* +Y-66725D01* +X-8796D01* +Y-66550D01* +X-8971D01* +Y-66375D01* +X-9321D01* +Y-66200D01* +X-9670D01* +Y-66025D01* +X-9845D01* +Y-65850D01* +X-10195D01* +Y-65675D01* +X-10545D01* +Y-65500D01* +X-10895D01* +Y-65325D01* +X-11070D01* +Y-65150D01* +X-11420D01* +Y-64975D01* +X-11770D01* +Y-64800D01* +X-12120D01* +Y-56578D01* +X-11945D01* +Y-56403D01* +X-11595D01* +Y-56228D01* +X-11420D01* +Y-56053D01* +X-11070D01* +Y-55878D01* +X-10720D01* +Y-55703D01* +X-10370D01* +Y-55528D01* +X-10195D01* +Y-55353D01* +X-9845D01* +Y-55178D01* +X-9496D01* +Y-55003D01* +X-9146D01* +Y-54828D01* +X-8971D01* +Y-54653D01* +X-8621D01* +Y-54479D01* +X-8271D01* +Y-54303D01* +X-8096D01* +Y-54129D01* +X-7746D01* +Y-49230D01* +X-7571D01* +Y-49055D01* +X-7396D01* +Y-48880D01* +X-7046D01* +Y-48705D01* +X-6696D01* +Y-48530D01* +X-6346D01* +Y-48355D01* +X-6172D01* +Y-48180D01* +X-5822D01* +Y-48006D01* +X-5472D01* +Y-47831D01* +X-5122D01* +Y-47656D01* +X-4947D01* +Y-47481D01* +X-4597D01* +Y-47306D01* +X-4247D01* +Y-47131D01* +X-4072D01* +Y-46956D01* +X-3722D01* +Y-46781D01* +X-3373D01* +Y-46606D01* +X-3023D01* +Y-46431D01* +X-2848D01* +Y-46256D01* +X-2498D01* +Y-46081D01* +X-2148D01* +Y-45906D01* +X-1798D01* +Y-45731D01* +X-1623D01* +Y-45556D01* +X-1273D01* +Y-45381D01* +X-923D01* +Y-45206D01* +X-748D01* +Y-45381D01* +D02* +G37* +G36* +X-110474Y-102644D02* +Y-103553D01* +X-111080D01* +Y-102672D01* +X-111962Y-101200D01* +X-111274D01* +X-110764Y-102109D01* +X-110272Y-101200D01* +X-109606D01* +X-110474Y-102644D01* +D02* +G37* +G36* +X-127913Y-103553D02* +X-128519D01* +Y-101978D01* +X-128956Y-102999D01* +X-129374D01* +X-129808Y-101978D01* +Y-103553D01* +X-130378D01* +Y-101200D01* +X-129677D01* +X-129147Y-102382D01* +X-128620Y-101200D01* +X-127913D01* +Y-103553D01* +D02* +G37* +G36* +X-122186D02* +X-122863D01* +X-123720Y-101200D01* +X-123084D01* +X-122516Y-102852D01* +X-121948Y-101200D01* +X-121326D01* +X-122186Y-103553D01* +D02* +G37* +G36* +X-112014Y-103553D02* +X-112642D01* +X-112805Y-103078D01* +X-113674D01* +X-113838Y-103553D01* +X-114449Y-103553D01* +X-113581Y-101200D01* +X-112885D01* +X-112014Y-103553D01* +D02* +G37* +G36* +X-115642Y-103097D02* +X-114553D01* +Y-103553D01* +X-116248D01* +Y-101200D01* +X-115642D01* +Y-103097D01* +D02* +G37* +G36* +X-117640Y-101203D02* +X-117583Y-101206D01* +X-117523Y-101211D01* +X-117460Y-101216D01* +X-117403Y-101225D01* +X-117397D01* +X-117389Y-101227D01* +X-117378Y-101230D01* +X-117348Y-101236D01* +X-117310Y-101247D01* +X-117269Y-101260D01* +X-117220Y-101279D01* +X-117171Y-101301D01* +X-117122Y-101328D01* +X-117119D01* +X-117116Y-101331D01* +X-117100Y-101342D01* +X-117075Y-101361D01* +X-117045Y-101383D01* +X-117013Y-101413D01* +X-116977Y-101449D01* +X-116944Y-101489D01* +X-116911Y-101533D01* +Y-101536D01* +X-116909Y-101539D01* +X-116903Y-101547D01* +X-116898Y-101555D01* +X-116887Y-101582D01* +X-116870Y-101620D01* +X-116857Y-101664D01* +X-116843Y-101719D01* +X-116835Y-101779D01* +X-116832Y-101847D01* +Y-101850D01* +Y-101858D01* +Y-101872D01* +X-116835Y-101891D01* +Y-101913D01* +X-116838Y-101940D01* +X-116843Y-101967D01* +X-116849Y-101997D01* +X-116862Y-102066D01* +X-116884Y-102137D01* +X-116914Y-102207D01* +X-116933Y-102240D01* +X-116955Y-102273D01* +Y-102276D01* +X-116961Y-102281D01* +X-116969Y-102289D01* +X-116977Y-102300D01* +X-117004Y-102330D01* +X-117043Y-102368D01* +X-117092Y-102412D01* +X-117152Y-102456D01* +X-117220Y-102502D01* +X-117299Y-102546D01* +X-116513Y-103553D01* +X-117255D01* +X-117894Y-102691D01* +X-118173D01* +Y-103553D01* +X-118779D01* +Y-101200D01* +X-117690D01* +X-117640Y-101203D01* +D02* +G37* +G36* +X-119287Y-101656D02* +X-120381D01* +Y-102060D01* +X-119366D01* +Y-102516D01* +X-120381D01* +Y-103097D01* +X-119287D01* +Y-103553D01* +X-120987D01* +Y-101200D01* +X-119287D01* +Y-101656D01* +D02* +G37* +G36* +X-133493D02* +X-134228D01* +Y-103553D01* +X-134834D01* +Y-101656D01* +X-135568D01* +Y-101200D01* +X-133493D01* +Y-101656D01* +D02* +G37* +G36* +X-135699D02* +X-136434D01* +Y-103553D01* +X-137040D01* +Y-101656D01* +X-137774D01* +Y-101200D01* +X-135699D01* +Y-101656D01* +D02* +G37* +G36* +X-141716Y-101203D02* +X-141683D01* +X-141615Y-101206D01* +X-141547Y-101208D01* +X-141481Y-101214D01* +X-141454Y-101216D01* +X-141427Y-101219D01* +X-141421D01* +X-141405Y-101222D01* +X-141378Y-101227D01* +X-141345Y-101236D01* +X-141304Y-101249D01* +X-141260Y-101263D01* +X-141214Y-101282D01* +X-141165Y-101304D01* +X-141162D01* +X-141159Y-101306D01* +X-141143Y-101317D01* +X-141118Y-101331D01* +X-141088Y-101353D01* +X-141058Y-101377D01* +X-141023Y-101410D01* +X-140993Y-101446D01* +X-140965Y-101487D01* +X-140963Y-101492D01* +X-140955Y-101506D01* +X-140944Y-101530D01* +X-140930Y-101563D01* +X-140919Y-101601D01* +X-140908Y-101645D01* +X-140900Y-101694D01* +X-140897Y-101749D01* +Y-101751D01* +Y-101757D01* +Y-101765D01* +Y-101776D01* +X-140900Y-101793D01* +X-140903Y-101809D01* +X-140908Y-101850D01* +X-140919Y-101896D01* +X-140936Y-101948D01* +X-140957Y-101997D01* +X-140987Y-102049D01* +Y-102052D01* +X-140993Y-102055D01* +X-141004Y-102071D01* +X-141025Y-102095D01* +X-141053Y-102123D01* +X-141088Y-102156D01* +X-141132Y-102188D01* +X-141184Y-102221D01* +X-141241Y-102251D01* +Y-102265D01* +X-141238D01* +X-141230Y-102268D01* +X-141219Y-102270D01* +X-141203Y-102273D01* +X-141184Y-102281D01* +X-141162Y-102287D01* +X-141110Y-102306D01* +X-141053Y-102333D01* +X-140990Y-102366D01* +X-140933Y-102407D01* +X-140878Y-102456D01* +X-140875Y-102459D01* +X-140873Y-102461D01* +X-140865Y-102470D01* +X-140856Y-102480D01* +X-140845Y-102497D01* +X-140834Y-102513D01* +X-140823Y-102532D01* +X-140810Y-102557D01* +X-140796Y-102581D01* +X-140785Y-102611D01* +X-140763Y-102674D01* +X-140747Y-102748D01* +X-140744Y-102789D01* +X-140742Y-102833D01* +Y-102835D01* +Y-102841D01* +Y-102849D01* +Y-102863D01* +X-140744Y-102876D01* +Y-102893D01* +X-140750Y-102936D01* +X-140758Y-102983D01* +X-140772Y-103035D01* +X-140788Y-103086D01* +X-140813Y-103138D01* +Y-103141D01* +X-140815Y-103144D01* +X-140826Y-103160D01* +X-140840Y-103185D01* +X-140862Y-103217D01* +X-140889Y-103253D01* +X-140922Y-103288D01* +X-140957Y-103327D01* +X-141001Y-103362D01* +X-141004D01* +X-141006Y-103368D01* +X-141015Y-103373D01* +X-141025Y-103379D01* +X-141053Y-103398D01* +X-141091Y-103420D01* +X-141138Y-103444D01* +X-141189Y-103469D01* +X-141247Y-103490D01* +X-141307Y-103510D01* +X-141309D01* +X-141315Y-103512D01* +X-141323D01* +X-141337Y-103515D01* +X-141353Y-103521D01* +X-141372Y-103523D01* +X-141397Y-103526D01* +X-141421Y-103532D01* +X-141451Y-103534D01* +X-141481Y-103540D01* +X-141517Y-103542D01* +X-141555Y-103545D01* +X-141637Y-103551D01* +X-141727Y-103553D01* +X-142754D01* +Y-101200D01* +X-141746D01* +X-141716Y-101203D01* +D02* +G37* +G36* +X-125080Y-101154D02* +X-125041Y-101156D01* +X-124992Y-101162D01* +X-124938Y-101167D01* +X-124878Y-101178D01* +X-124812Y-101192D01* +X-124741Y-101211D01* +X-124670Y-101233D01* +X-124596Y-101257D01* +X-124523Y-101290D01* +X-124449Y-101328D01* +X-124378Y-101372D01* +X-124310Y-101424D01* +X-124247Y-101481D01* +X-124244Y-101484D01* +X-124233Y-101498D01* +X-124217Y-101517D01* +X-124195Y-101541D01* +X-124170Y-101574D01* +X-124143Y-101615D01* +X-124116Y-101664D01* +X-124083Y-101716D01* +X-124053Y-101779D01* +X-124026Y-101844D01* +X-123998Y-101918D01* +X-123974Y-102000D01* +X-123952Y-102085D01* +X-123936Y-102177D01* +X-123925Y-102276D01* +X-123922Y-102379D01* +Y-102382D01* +Y-102385D01* +Y-102393D01* +Y-102404D01* +X-123925Y-102434D01* +X-123928Y-102472D01* +X-123933Y-102519D01* +X-123939Y-102576D01* +X-123949Y-102636D01* +X-123963Y-102702D01* +X-123979Y-102772D01* +X-124001Y-102843D01* +X-124026Y-102920D01* +X-124059Y-102994D01* +X-124094Y-103067D01* +X-124138Y-103138D01* +X-124187Y-103207D01* +X-124244Y-103272D01* +X-124247Y-103275D01* +X-124258Y-103286D01* +X-124277Y-103302D01* +X-124304Y-103324D01* +X-124337Y-103349D01* +X-124375Y-103376D01* +X-124422Y-103406D01* +X-124476Y-103436D01* +X-124536Y-103469D01* +X-124602Y-103499D01* +X-124676Y-103526D01* +X-124755Y-103551D01* +X-124842Y-103572D01* +X-124932Y-103589D01* +X-125031Y-103600D01* +X-125134Y-103603D01* +X-125172D01* +X-125189Y-103600D01* +X-125227Y-103597D01* +X-125276Y-103592D01* +X-125331Y-103586D01* +X-125391Y-103575D01* +X-125459Y-103561D01* +X-125527Y-103542D01* +X-125601Y-103521D01* +X-125675Y-103496D01* +X-125749Y-103463D01* +X-125822Y-103425D01* +X-125893Y-103381D01* +X-125961Y-103330D01* +X-126024Y-103272D01* +X-126027Y-103269D01* +X-126038Y-103256D01* +X-126054Y-103237D01* +X-126073Y-103212D01* +X-126098Y-103179D01* +X-126125Y-103138D01* +X-126155Y-103092D01* +X-126182Y-103037D01* +X-126213Y-102977D01* +X-126243Y-102909D01* +X-126270Y-102835D01* +X-126295Y-102756D01* +X-126314Y-102672D01* +X-126330Y-102579D01* +X-126341Y-102483D01* +X-126344Y-102379D01* +Y-102377D01* +Y-102374D01* +Y-102366D01* +Y-102355D01* +Y-102341D01* +X-126341Y-102325D01* +X-126338Y-102287D01* +X-126333Y-102237D01* +X-126327Y-102183D01* +X-126316Y-102120D01* +X-126303Y-102055D01* +X-126286Y-101984D01* +X-126264Y-101910D01* +X-126240Y-101836D01* +X-126210Y-101760D01* +X-126172Y-101686D01* +X-126131Y-101615D01* +X-126082Y-101547D01* +X-126024Y-101481D01* +X-126022Y-101479D01* +X-126008Y-101468D01* +X-125991Y-101451D01* +X-125964Y-101429D01* +X-125931Y-101405D01* +X-125893Y-101377D01* +X-125847Y-101347D01* +X-125792Y-101315D01* +X-125732Y-101285D01* +X-125667Y-101255D01* +X-125593Y-101227D01* +X-125514Y-101203D01* +X-125426Y-101181D01* +X-125336Y-101165D01* +X-125238Y-101154D01* +X-125134Y-101151D01* +X-125110D01* +X-125080Y-101154D01* +D02* +G37* +G36* +X-132000D02* +X-131962Y-101156D01* +X-131913Y-101162D01* +X-131858Y-101167D01* +X-131798Y-101178D01* +X-131733Y-101192D01* +X-131662Y-101211D01* +X-131591Y-101233D01* +X-131517Y-101257D01* +X-131443Y-101290D01* +X-131369Y-101328D01* +X-131299Y-101372D01* +X-131230Y-101424D01* +X-131167Y-101481D01* +X-131165Y-101484D01* +X-131154Y-101498D01* +X-131138Y-101517D01* +X-131116Y-101541D01* +X-131091Y-101574D01* +X-131064Y-101615D01* +X-131036Y-101664D01* +X-131004Y-101716D01* +X-130974Y-101779D01* +X-130946Y-101844D01* +X-130919Y-101918D01* +X-130894Y-102000D01* +X-130873Y-102085D01* +X-130856Y-102177D01* +X-130845Y-102276D01* +X-130843Y-102379D01* +Y-102382D01* +Y-102385D01* +Y-102393D01* +Y-102404D01* +X-130845Y-102434D01* +X-130848Y-102472D01* +X-130854Y-102519D01* +X-130859Y-102576D01* +X-130870Y-102636D01* +X-130884Y-102702D01* +X-130900Y-102772D01* +X-130922Y-102843D01* +X-130946Y-102920D01* +X-130979Y-102994D01* +X-131015Y-103067D01* +X-131058Y-103138D01* +X-131107Y-103207D01* +X-131165Y-103272D01* +X-131167Y-103275D01* +X-131178Y-103286D01* +X-131198Y-103302D01* +X-131225Y-103324D01* +X-131258Y-103349D01* +X-131296Y-103376D01* +X-131342Y-103406D01* +X-131397Y-103436D01* +X-131457Y-103469D01* +X-131522Y-103499D01* +X-131596Y-103526D01* +X-131675Y-103551D01* +X-131763Y-103572D01* +X-131853Y-103589D01* +X-131951Y-103600D01* +X-132055Y-103603D01* +X-132093D01* +X-132109Y-103600D01* +X-132148Y-103597D01* +X-132197Y-103592D01* +X-132251Y-103586D01* +X-132311Y-103575D01* +X-132380Y-103561D01* +X-132448Y-103542D01* +X-132522Y-103521D01* +X-132595Y-103496D01* +X-132669Y-103463D01* +X-132743Y-103425D01* +X-132814Y-103381D01* +X-132882Y-103330D01* +X-132945Y-103272D01* +X-132948Y-103269D01* +X-132958Y-103256D01* +X-132975Y-103237D01* +X-132994Y-103212D01* +X-133019Y-103179D01* +X-133046Y-103138D01* +X-133076Y-103092D01* +X-133103Y-103037D01* +X-133133Y-102977D01* +X-133163Y-102909D01* +X-133191Y-102835D01* +X-133215Y-102756D01* +X-133234Y-102672D01* +X-133250Y-102579D01* +X-133261Y-102483D01* +X-133264Y-102379D01* +Y-102377D01* +Y-102374D01* +Y-102366D01* +Y-102355D01* +Y-102341D01* +X-133261Y-102325D01* +X-133259Y-102287D01* +X-133253Y-102237D01* +X-133248Y-102183D01* +X-133237Y-102120D01* +X-133223Y-102055D01* +X-133207Y-101984D01* +X-133185Y-101910D01* +X-133160Y-101836D01* +X-133130Y-101760D01* +X-133092Y-101686D01* +X-133051Y-101615D01* +X-133002Y-101547D01* +X-132945Y-101481D01* +X-132942Y-101479D01* +X-132928Y-101468D01* +X-132912Y-101451D01* +X-132885Y-101429D01* +X-132852Y-101405D01* +X-132814Y-101377D01* +X-132767Y-101347D01* +X-132713Y-101315D01* +X-132653Y-101285D01* +X-132587Y-101255D01* +X-132513Y-101227D01* +X-132434Y-101203D01* +X-132347Y-101181D01* +X-132257Y-101165D01* +X-132159Y-101154D01* +X-132055Y-101151D01* +X-132030D01* +X-132000Y-101154D01* +D02* +G37* +G36* +X-139161D02* +X-139123Y-101156D01* +X-139074Y-101162D01* +X-139019Y-101167D01* +X-138959Y-101178D01* +X-138893Y-101192D01* +X-138822Y-101211D01* +X-138751Y-101233D01* +X-138678Y-101257D01* +X-138604Y-101290D01* +X-138530Y-101328D01* +X-138459Y-101372D01* +X-138391Y-101424D01* +X-138328Y-101481D01* +X-138326Y-101484D01* +X-138315Y-101498D01* +X-138298Y-101517D01* +X-138276Y-101541D01* +X-138252Y-101574D01* +X-138225Y-101615D01* +X-138197Y-101664D01* +X-138164Y-101716D01* +X-138135Y-101779D01* +X-138107Y-101844D01* +X-138080Y-101918D01* +X-138055Y-102000D01* +X-138033Y-102085D01* +X-138017Y-102177D01* +X-138006Y-102276D01* +X-138003Y-102379D01* +Y-102382D01* +Y-102385D01* +Y-102393D01* +Y-102404D01* +X-138006Y-102434D01* +X-138009Y-102472D01* +X-138014Y-102519D01* +X-138020Y-102576D01* +X-138031Y-102636D01* +X-138044Y-102702D01* +X-138061Y-102772D01* +X-138083Y-102843D01* +X-138107Y-102920D01* +X-138140Y-102994D01* +X-138175Y-103067D01* +X-138219Y-103138D01* +X-138268Y-103207D01* +X-138326Y-103272D01* +X-138328Y-103275D01* +X-138339Y-103286D01* +X-138358Y-103302D01* +X-138386Y-103324D01* +X-138418Y-103349D01* +X-138457Y-103376D01* +X-138503Y-103406D01* +X-138558Y-103436D01* +X-138618Y-103469D01* +X-138683Y-103499D01* +X-138757Y-103526D01* +X-138836Y-103551D01* +X-138924Y-103572D01* +X-139014Y-103589D01* +X-139112Y-103600D01* +X-139216Y-103603D01* +X-139254D01* +X-139270Y-103600D01* +X-139308Y-103597D01* +X-139357Y-103592D01* +X-139412Y-103586D01* +X-139472Y-103575D01* +X-139540Y-103561D01* +X-139609Y-103542D01* +X-139682Y-103521D01* +X-139756Y-103496D01* +X-139830Y-103463D01* +X-139903Y-103425D01* +X-139974Y-103381D01* +X-140043Y-103330D01* +X-140105Y-103272D01* +X-140108Y-103269D01* +X-140119Y-103256D01* +X-140136Y-103237D01* +X-140155Y-103212D01* +X-140179Y-103179D01* +X-140207Y-103138D01* +X-140237Y-103092D01* +X-140264Y-103037D01* +X-140294Y-102977D01* +X-140324Y-102909D01* +X-140351Y-102835D01* +X-140376Y-102756D01* +X-140395Y-102672D01* +X-140411Y-102579D01* +X-140422Y-102483D01* +X-140425Y-102379D01* +Y-102377D01* +Y-102374D01* +Y-102366D01* +Y-102355D01* +Y-102341D01* +X-140422Y-102325D01* +X-140419Y-102287D01* +X-140414Y-102237D01* +X-140409Y-102183D01* +X-140398Y-102120D01* +X-140384Y-102055D01* +X-140368Y-101984D01* +X-140346Y-101910D01* +X-140321Y-101836D01* +X-140291Y-101760D01* +X-140253Y-101686D01* +X-140212Y-101615D01* +X-140163Y-101547D01* +X-140105Y-101481D01* +X-140103Y-101479D01* +X-140089Y-101468D01* +X-140073Y-101451D01* +X-140045Y-101429D01* +X-140013Y-101405D01* +X-139974Y-101377D01* +X-139928Y-101347D01* +X-139874Y-101315D01* +X-139813Y-101285D01* +X-139748Y-101255D01* +X-139674Y-101227D01* +X-139595Y-101203D01* +X-139508Y-101181D01* +X-139418Y-101165D01* +X-139319Y-101154D01* +X-139216Y-101151D01* +X-139191D01* +X-139161Y-101154D01* +D02* +G37* +G36* +X-9358Y-78691D02* +X-10264D01* +Y-78044D01* +X-9358D01* +Y-78691D01* +D02* +G37* +G36* +X-23483Y-78999D02* +X-23401Y-79011D01* +X-23323Y-79028D01* +X-23257Y-79044D01* +X-23204Y-79060D01* +X-23163Y-79077D01* +X-23146Y-79085D01* +X-23134Y-79089D01* +X-23130Y-79093D01* +X-23126D01* +X-23052Y-79134D01* +X-22974Y-79175D01* +X-22905Y-79220D01* +X-22843Y-79265D01* +X-22786Y-79302D01* +X-22745Y-79335D01* +X-22728Y-79347D01* +X-22716Y-79356D01* +X-22712Y-79360D01* +X-22708Y-79364D01* +Y-79069D01* +X-21851D01* +Y-81734D01* +X-22708D01* +Y-79843D01* +X-22782Y-79803D01* +X-22814Y-79786D01* +X-22847Y-79770D01* +X-22876Y-79757D01* +X-22896Y-79745D01* +X-22913Y-79741D01* +X-22917Y-79737D01* +X-22962Y-79720D01* +X-23007Y-79704D01* +X-23048Y-79696D01* +X-23085Y-79692D01* +X-23118Y-79688D01* +X-23142Y-79684D01* +X-23216D01* +X-23266Y-79692D01* +X-23306Y-79696D01* +X-23343Y-79704D01* +X-23368Y-79712D01* +X-23389Y-79716D01* +X-23401Y-79725D01* +X-23405D01* +X-23462Y-79761D01* +X-23503Y-79803D01* +X-23516Y-79819D01* +X-23528Y-79835D01* +X-23536Y-79843D01* +Y-79848D01* +X-23548Y-79880D01* +X-23561Y-79917D01* +X-23577Y-79991D01* +X-23581Y-80024D01* +X-23585Y-80049D01* +Y-80065D01* +Y-80073D01* +X-23589Y-80126D01* +X-23594Y-80180D01* +Y-80237D01* +X-23598Y-80286D01* +Y-80331D01* +Y-80368D01* +Y-80393D01* +Y-80397D01* +Y-80401D01* +Y-81734D01* +X-24454D01* +Y-79843D01* +X-24508Y-79815D01* +X-24553Y-79786D01* +X-24594Y-79766D01* +X-24631Y-79749D01* +X-24659Y-79737D01* +X-24684Y-79729D01* +X-24696Y-79720D01* +X-24701D01* +X-24778Y-79700D01* +X-24811Y-79692D01* +X-24844Y-79688D01* +X-24869Y-79684D01* +X-24967D01* +X-25016Y-79692D01* +X-25057Y-79696D01* +X-25094Y-79704D01* +X-25119Y-79712D01* +X-25139Y-79716D01* +X-25151Y-79725D01* +X-25155D01* +X-25184Y-79741D01* +X-25213Y-79761D01* +X-25233Y-79782D01* +X-25250Y-79803D01* +X-25266Y-79819D01* +X-25274Y-79835D01* +X-25283Y-79843D01* +Y-79848D01* +X-25295Y-79880D01* +X-25307Y-79917D01* +X-25324Y-79991D01* +X-25328Y-80020D01* +X-25332Y-80044D01* +Y-80065D01* +Y-80069D01* +X-25336Y-80122D01* +X-25340Y-80180D01* +Y-80233D01* +X-25344Y-80286D01* +Y-80331D01* +Y-80368D01* +Y-80393D01* +Y-80397D01* +Y-80401D01* +Y-81734D01* +X-26201D01* +Y-79999D01* +X-26197Y-79909D01* +X-26193Y-79827D01* +X-26180Y-79749D01* +X-26164Y-79680D01* +X-26148Y-79614D01* +X-26131Y-79552D01* +X-26111Y-79495D01* +X-26090Y-79446D01* +X-26066Y-79401D01* +X-26045Y-79364D01* +X-26029Y-79331D01* +X-26013Y-79306D01* +X-25996Y-79286D01* +X-25984Y-79269D01* +X-25980Y-79261D01* +X-25975Y-79257D01* +X-25931Y-79212D01* +X-25881Y-79171D01* +X-25832Y-79134D01* +X-25779Y-79106D01* +X-25725Y-79081D01* +X-25668Y-79060D01* +X-25561Y-79028D01* +X-25512Y-79015D01* +X-25467Y-79007D01* +X-25426Y-79003D01* +X-25389Y-78999D01* +X-25361Y-78995D01* +X-25320D01* +X-25233Y-78999D01* +X-25147Y-79015D01* +X-25069Y-79036D01* +X-25000Y-79056D01* +X-24938Y-79081D01* +X-24909Y-79093D01* +X-24889Y-79101D01* +X-24873Y-79110D01* +X-24860Y-79118D01* +X-24852Y-79122D01* +X-24848D01* +X-24758Y-79171D01* +X-24668Y-79224D01* +X-24586Y-79282D01* +X-24508Y-79335D01* +X-24446Y-79384D01* +X-24418Y-79405D01* +X-24397Y-79421D01* +X-24377Y-79438D01* +X-24364Y-79450D01* +X-24356Y-79454D01* +X-24352Y-79458D01* +X-24307Y-79380D01* +X-24254Y-79311D01* +X-24200Y-79249D01* +X-24151Y-79200D01* +X-24106Y-79163D01* +X-24069Y-79134D01* +X-24045Y-79118D01* +X-24040Y-79114D01* +X-24036D01* +X-23958Y-79073D01* +X-23880Y-79044D01* +X-23802Y-79023D01* +X-23729Y-79011D01* +X-23667Y-78999D01* +X-23639D01* +X-23618Y-78995D01* +X-23573D01* +X-23483Y-78999D01* +D02* +G37* +G36* +X21740Y-79003D02* +X21847Y-79011D01* +X21937Y-79019D01* +X21978Y-79023D01* +X22015Y-79027D01* +X22048Y-79032D01* +X22076Y-79036D01* +X22101Y-79040D01* +X22117D01* +X22126Y-79044D01* +X22130D01* +X22236Y-79060D01* +X22327Y-79077D01* +X22400Y-79093D01* +X22462Y-79105D01* +X22507Y-79114D01* +X22540Y-79122D01* +X22556Y-79130D01* +X22564D01* +Y-79770D01* +X22486D01* +X22441Y-79753D01* +X22388Y-79737D01* +X22335Y-79716D01* +X22277Y-79700D01* +X22228Y-79684D01* +X22183Y-79671D01* +X22167Y-79667D01* +X22158Y-79663D01* +X22150Y-79659D01* +X22146D01* +X22060Y-79634D01* +X21974Y-79614D01* +X21900Y-79602D01* +X21830Y-79589D01* +X21773Y-79585D01* +X21732Y-79581D01* +X21695D01* +X21572Y-79585D01* +X21465Y-79593D01* +X21375Y-79610D01* +X21302Y-79622D01* +X21269Y-79630D01* +X21240Y-79638D01* +X21220Y-79647D01* +X21199Y-79655D01* +X21187Y-79659D01* +X21174Y-79663D01* +X21166Y-79667D01* +X21133Y-79684D01* +X21105Y-79704D01* +X21064Y-79749D01* +X21031Y-79798D01* +X21006Y-79848D01* +X20994Y-79897D01* +X20990Y-79934D01* +X20986Y-79950D01* +Y-79962D01* +Y-79966D01* +Y-79971D01* +Y-79983D01* +X21125Y-79991D01* +X21261Y-80003D01* +X21384Y-80016D01* +X21441Y-80020D01* +X21490Y-80028D01* +X21539Y-80032D01* +X21585Y-80036D01* +X21621Y-80040D01* +X21654Y-80044D01* +X21679Y-80049D01* +X21699D01* +X21711Y-80053D01* +X21716D01* +X21843Y-80073D01* +X21953Y-80094D01* +X22056Y-80122D01* +X22138Y-80147D01* +X22175Y-80155D01* +X22208Y-80167D01* +X22236Y-80180D01* +X22261Y-80188D01* +X22277Y-80192D01* +X22290Y-80200D01* +X22298Y-80204D01* +X22302D01* +X22384Y-80245D01* +X22458Y-80294D01* +X22523Y-80344D01* +X22577Y-80389D01* +X22618Y-80430D01* +X22646Y-80467D01* +X22663Y-80487D01* +X22671Y-80491D01* +Y-80495D01* +X22712Y-80569D01* +X22745Y-80647D01* +X22765Y-80725D01* +X22782Y-80803D01* +X22790Y-80868D01* +X22794Y-80897D01* +Y-80922D01* +X22798Y-80942D01* +Y-80959D01* +Y-80967D01* +Y-80971D01* +X22794Y-81037D01* +X22786Y-81102D01* +X22773Y-81160D01* +X22757Y-81217D01* +X22716Y-81319D01* +X22696Y-81365D01* +X22671Y-81406D01* +X22646Y-81442D01* +X22626Y-81475D01* +X22601Y-81504D01* +X22585Y-81529D01* +X22569Y-81545D01* +X22556Y-81557D01* +X22548Y-81565D01* +X22544Y-81570D01* +X22495Y-81611D01* +X22445Y-81647D01* +X22392Y-81676D01* +X22339Y-81705D01* +X22286Y-81725D01* +X22232Y-81746D01* +X22130Y-81774D01* +X22085Y-81783D01* +X22044Y-81791D01* +X22003Y-81795D01* +X21970Y-81799D01* +X21945Y-81803D01* +X21851D01* +X21793Y-81799D01* +X21744Y-81795D01* +X21699Y-81787D01* +X21662Y-81783D01* +X21638Y-81779D01* +X21617Y-81774D01* +X21613D01* +X21515Y-81750D01* +X21474Y-81738D01* +X21433Y-81725D01* +X21400Y-81713D01* +X21375Y-81705D01* +X21359Y-81697D01* +X21355D01* +X21285Y-81660D01* +X21252Y-81639D01* +X21224Y-81619D01* +X21199Y-81602D01* +X21179Y-81590D01* +X21166Y-81582D01* +X21162Y-81578D01* +X21092Y-81529D01* +X21064Y-81508D01* +X21039Y-81488D01* +X21019Y-81475D01* +X21002Y-81463D01* +X20994Y-81459D01* +X20990Y-81455D01* +Y-81734D01* +X20141D01* +Y-79926D01* +X20145Y-79839D01* +X20154Y-79757D01* +X20170Y-79684D01* +X20190Y-79614D01* +X20215Y-79548D01* +X20244Y-79491D01* +X20272Y-79438D01* +X20301Y-79392D01* +X20334Y-79351D01* +X20363Y-79319D01* +X20391Y-79286D01* +X20416Y-79261D01* +X20436Y-79245D01* +X20453Y-79233D01* +X20461Y-79224D01* +X20465Y-79220D01* +X20531Y-79179D01* +X20605Y-79146D01* +X20683Y-79114D01* +X20764Y-79089D01* +X20941Y-79048D01* +X21113Y-79023D01* +X21195Y-79015D01* +X21269Y-79007D01* +X21339Y-79003D01* +X21400Y-78999D01* +X21449Y-78995D01* +X21634D01* +X21740Y-79003D01* +D02* +G37* +G36* +X15611D02* +X15717Y-79011D01* +X15808Y-79019D01* +X15849Y-79023D01* +X15886Y-79027D01* +X15918Y-79032D01* +X15947Y-79036D01* +X15971Y-79040D01* +X15988D01* +X15996Y-79044D01* +X16000D01* +X16107Y-79060D01* +X16197Y-79077D01* +X16271Y-79093D01* +X16332Y-79105D01* +X16377Y-79114D01* +X16410Y-79122D01* +X16427Y-79130D01* +X16435D01* +Y-79770D01* +X16357D01* +X16312Y-79753D01* +X16259Y-79737D01* +X16205Y-79716D01* +X16148Y-79700D01* +X16099Y-79684D01* +X16054Y-79671D01* +X16037Y-79667D01* +X16029Y-79663D01* +X16021Y-79659D01* +X16017D01* +X15931Y-79634D01* +X15845Y-79614D01* +X15771Y-79602D01* +X15701Y-79589D01* +X15643Y-79585D01* +X15603Y-79581D01* +X15566D01* +X15443Y-79585D01* +X15336Y-79593D01* +X15246Y-79610D01* +X15172Y-79622D01* +X15139Y-79630D01* +X15111Y-79638D01* +X15090Y-79647D01* +X15070Y-79655D01* +X15057Y-79659D01* +X15045Y-79663D01* +X15037Y-79667D01* +X15004Y-79684D01* +X14975Y-79704D01* +X14934Y-79749D01* +X14901Y-79798D01* +X14877Y-79848D01* +X14864Y-79897D01* +X14861Y-79934D01* +X14856Y-79950D01* +Y-79962D01* +Y-79966D01* +Y-79971D01* +Y-79983D01* +X14996Y-79991D01* +X15131Y-80003D01* +X15254Y-80016D01* +X15311Y-80020D01* +X15361Y-80028D01* +X15410Y-80032D01* +X15455Y-80036D01* +X15492Y-80040D01* +X15525Y-80044D01* +X15549Y-80049D01* +X15570D01* +X15582Y-80053D01* +X15586D01* +X15713Y-80073D01* +X15824Y-80094D01* +X15926Y-80122D01* +X16008Y-80147D01* +X16045Y-80155D01* +X16078Y-80167D01* +X16107Y-80180D01* +X16131Y-80188D01* +X16148Y-80192D01* +X16160Y-80200D01* +X16168Y-80204D01* +X16172D01* +X16254Y-80245D01* +X16328Y-80294D01* +X16394Y-80344D01* +X16447Y-80389D01* +X16488Y-80430D01* +X16517Y-80467D01* +X16533Y-80487D01* +X16542Y-80491D01* +Y-80495D01* +X16582Y-80569D01* +X16615Y-80647D01* +X16636Y-80725D01* +X16652Y-80803D01* +X16660Y-80868D01* +X16664Y-80897D01* +Y-80922D01* +X16669Y-80942D01* +Y-80959D01* +Y-80967D01* +Y-80971D01* +X16664Y-81037D01* +X16656Y-81102D01* +X16644Y-81160D01* +X16627Y-81217D01* +X16587Y-81319D01* +X16566Y-81365D01* +X16542Y-81406D01* +X16517Y-81442D01* +X16496Y-81475D01* +X16472Y-81504D01* +X16455Y-81529D01* +X16439Y-81545D01* +X16427Y-81557D01* +X16419Y-81565D01* +X16414Y-81570D01* +X16365Y-81611D01* +X16316Y-81647D01* +X16263Y-81676D01* +X16209Y-81705D01* +X16156Y-81725D01* +X16103Y-81746D01* +X16000Y-81774D01* +X15955Y-81783D01* +X15914Y-81791D01* +X15873Y-81795D01* +X15840Y-81799D01* +X15816Y-81803D01* +X15721D01* +X15664Y-81799D01* +X15615Y-81795D01* +X15570Y-81787D01* +X15533Y-81783D01* +X15508Y-81779D01* +X15488Y-81774D01* +X15484D01* +X15385Y-81750D01* +X15344Y-81738D01* +X15303Y-81725D01* +X15270Y-81713D01* +X15246Y-81705D01* +X15229Y-81697D01* +X15225D01* +X15156Y-81660D01* +X15123Y-81639D01* +X15094Y-81619D01* +X15070Y-81602D01* +X15049Y-81590D01* +X15037Y-81582D01* +X15033Y-81578D01* +X14963Y-81529D01* +X14934Y-81508D01* +X14910Y-81488D01* +X14889Y-81475D01* +X14873Y-81463D01* +X14864Y-81459D01* +X14861Y-81455D01* +Y-81734D01* +X14012D01* +Y-79926D01* +X14016Y-79839D01* +X14024Y-79757D01* +X14040Y-79684D01* +X14061Y-79614D01* +X14086Y-79548D01* +X14114Y-79491D01* +X14143Y-79438D01* +X14172Y-79392D01* +X14204Y-79351D01* +X14233Y-79319D01* +X14262Y-79286D01* +X14286Y-79261D01* +X14307Y-79245D01* +X14323Y-79233D01* +X14332Y-79224D01* +X14336Y-79220D01* +X14401Y-79179D01* +X14475Y-79146D01* +X14553Y-79114D01* +X14635Y-79089D01* +X14811Y-79048D01* +X14983Y-79023D01* +X15066Y-79015D01* +X15139Y-79007D01* +X15209Y-79003D01* +X15270Y-78999D01* +X15320Y-78995D01* +X15504D01* +X15611Y-79003D01* +D02* +G37* +G36* +X8616D02* +X8723Y-79011D01* +X8813Y-79019D01* +X8854Y-79023D01* +X8891Y-79027D01* +X8924Y-79032D01* +X8952Y-79036D01* +X8977Y-79040D01* +X8993D01* +X9002Y-79044D01* +X9006D01* +X9112Y-79060D01* +X9202Y-79077D01* +X9276Y-79093D01* +X9338Y-79105D01* +X9383Y-79114D01* +X9416Y-79122D01* +X9432Y-79130D01* +X9440D01* +Y-79770D01* +X9362D01* +X9317Y-79753D01* +X9264Y-79737D01* +X9211Y-79716D01* +X9153Y-79700D01* +X9104Y-79684D01* +X9059Y-79671D01* +X9042Y-79667D01* +X9034Y-79663D01* +X9026Y-79659D01* +X9022D01* +X8936Y-79634D01* +X8850Y-79614D01* +X8776Y-79602D01* +X8706Y-79589D01* +X8649Y-79585D01* +X8608Y-79581D01* +X8571D01* +X8448Y-79585D01* +X8342Y-79593D01* +X8251Y-79610D01* +X8178Y-79622D01* +X8145Y-79630D01* +X8116Y-79638D01* +X8095Y-79647D01* +X8075Y-79655D01* +X8063Y-79659D01* +X8050Y-79663D01* +X8042Y-79667D01* +X8009Y-79684D01* +X7981Y-79704D01* +X7940Y-79749D01* +X7907Y-79798D01* +X7882Y-79848D01* +X7870Y-79897D01* +X7866Y-79934D01* +X7862Y-79950D01* +Y-79962D01* +Y-79966D01* +Y-79971D01* +Y-79983D01* +X8001Y-79991D01* +X8136Y-80003D01* +X8259Y-80016D01* +X8317Y-80020D01* +X8366Y-80028D01* +X8415Y-80032D01* +X8460Y-80036D01* +X8497Y-80040D01* +X8530Y-80044D01* +X8555Y-80049D01* +X8575D01* +X8587Y-80053D01* +X8591D01* +X8719Y-80073D01* +X8829Y-80094D01* +X8932Y-80122D01* +X9014Y-80147D01* +X9051Y-80155D01* +X9083Y-80167D01* +X9112Y-80180D01* +X9137Y-80188D01* +X9153Y-80192D01* +X9166Y-80200D01* +X9174Y-80204D01* +X9178D01* +X9260Y-80245D01* +X9334Y-80294D01* +X9399Y-80344D01* +X9453Y-80389D01* +X9494Y-80430D01* +X9522Y-80467D01* +X9539Y-80487D01* +X9547Y-80491D01* +Y-80495D01* +X9588Y-80569D01* +X9621Y-80647D01* +X9641Y-80725D01* +X9658Y-80803D01* +X9666Y-80868D01* +X9670Y-80897D01* +Y-80922D01* +X9674Y-80942D01* +Y-80959D01* +Y-80967D01* +Y-80971D01* +X9670Y-81037D01* +X9662Y-81102D01* +X9649Y-81160D01* +X9633Y-81217D01* +X9592Y-81319D01* +X9572Y-81365D01* +X9547Y-81406D01* +X9522Y-81442D01* +X9502Y-81475D01* +X9477Y-81504D01* +X9461Y-81529D01* +X9444Y-81545D01* +X9432Y-81557D01* +X9424Y-81565D01* +X9420Y-81570D01* +X9371Y-81611D01* +X9321Y-81647D01* +X9268Y-81676D01* +X9215Y-81705D01* +X9161Y-81725D01* +X9108Y-81746D01* +X9006Y-81774D01* +X8961Y-81783D01* +X8919Y-81791D01* +X8879Y-81795D01* +X8846Y-81799D01* +X8821Y-81803D01* +X8727D01* +X8670Y-81799D01* +X8620Y-81795D01* +X8575Y-81787D01* +X8538Y-81783D01* +X8514Y-81779D01* +X8493Y-81774D01* +X8489D01* +X8391Y-81750D01* +X8350Y-81738D01* +X8309Y-81725D01* +X8276Y-81713D01* +X8251Y-81705D01* +X8235Y-81697D01* +X8231D01* +X8161Y-81660D01* +X8128Y-81639D01* +X8100Y-81619D01* +X8075Y-81602D01* +X8054Y-81590D01* +X8042Y-81582D01* +X8038Y-81578D01* +X7968Y-81529D01* +X7940Y-81508D01* +X7915Y-81488D01* +X7895Y-81475D01* +X7878Y-81463D01* +X7870Y-81459D01* +X7866Y-81455D01* +Y-81734D01* +X7017D01* +Y-79926D01* +X7021Y-79839D01* +X7029Y-79757D01* +X7046Y-79684D01* +X7066Y-79614D01* +X7091Y-79548D01* +X7120Y-79491D01* +X7148Y-79438D01* +X7177Y-79392D01* +X7210Y-79351D01* +X7238Y-79319D01* +X7267Y-79286D01* +X7292Y-79261D01* +X7312Y-79245D01* +X7329Y-79233D01* +X7337Y-79224D01* +X7341Y-79220D01* +X7407Y-79179D01* +X7480Y-79146D01* +X7558Y-79114D01* +X7640Y-79089D01* +X7817Y-79048D01* +X7989Y-79023D01* +X8071Y-79015D01* +X8145Y-79007D01* +X8214Y-79003D01* +X8276Y-78999D01* +X8325Y-78995D01* +X8510D01* +X8616Y-79003D01* +D02* +G37* +G36* +X2954D02* +X3061Y-79011D01* +X3151Y-79019D01* +X3192Y-79023D01* +X3229Y-79027D01* +X3261Y-79032D01* +X3290Y-79036D01* +X3315Y-79040D01* +X3331D01* +X3339Y-79044D01* +X3343D01* +X3450Y-79060D01* +X3540Y-79077D01* +X3614Y-79093D01* +X3676Y-79105D01* +X3721Y-79114D01* +X3754Y-79122D01* +X3770Y-79130D01* +X3778D01* +Y-79770D01* +X3700D01* +X3655Y-79753D01* +X3602Y-79737D01* +X3549Y-79716D01* +X3491Y-79700D01* +X3442Y-79684D01* +X3397Y-79671D01* +X3380Y-79667D01* +X3372Y-79663D01* +X3364Y-79659D01* +X3360D01* +X3274Y-79634D01* +X3188Y-79614D01* +X3114Y-79602D01* +X3044Y-79589D01* +X2987Y-79585D01* +X2946Y-79581D01* +X2909D01* +X2786Y-79585D01* +X2679Y-79593D01* +X2589Y-79610D01* +X2515Y-79622D01* +X2483Y-79630D01* +X2454Y-79638D01* +X2433Y-79647D01* +X2413Y-79655D01* +X2401Y-79659D01* +X2388Y-79663D01* +X2380Y-79667D01* +X2347Y-79684D01* +X2319Y-79704D01* +X2278Y-79749D01* +X2245Y-79798D01* +X2220Y-79848D01* +X2208Y-79897D01* +X2204Y-79934D01* +X2200Y-79950D01* +Y-79962D01* +Y-79966D01* +Y-79971D01* +Y-79983D01* +X2339Y-79991D01* +X2474Y-80003D01* +X2597Y-80016D01* +X2655Y-80020D01* +X2704Y-80028D01* +X2753Y-80032D01* +X2798Y-80036D01* +X2835Y-80040D01* +X2868Y-80044D01* +X2892Y-80049D01* +X2913D01* +X2925Y-80053D01* +X2929D01* +X3057Y-80073D01* +X3167Y-80094D01* +X3270Y-80122D01* +X3352Y-80147D01* +X3389Y-80155D01* +X3421Y-80167D01* +X3450Y-80180D01* +X3475Y-80188D01* +X3491Y-80192D01* +X3503Y-80200D01* +X3512Y-80204D01* +X3516D01* +X3598Y-80245D01* +X3672Y-80294D01* +X3737Y-80344D01* +X3790Y-80389D01* +X3831Y-80430D01* +X3860Y-80467D01* +X3877Y-80487D01* +X3885Y-80491D01* +Y-80495D01* +X3926Y-80569D01* +X3959Y-80647D01* +X3979Y-80725D01* +X3996Y-80803D01* +X4004Y-80868D01* +X4008Y-80897D01* +Y-80922D01* +X4012Y-80942D01* +Y-80959D01* +Y-80967D01* +Y-80971D01* +X4008Y-81037D01* +X3999Y-81102D01* +X3987Y-81160D01* +X3971Y-81217D01* +X3930Y-81319D01* +X3909Y-81365D01* +X3885Y-81406D01* +X3860Y-81442D01* +X3840Y-81475D01* +X3815Y-81504D01* +X3799Y-81529D01* +X3782Y-81545D01* +X3770Y-81557D01* +X3762Y-81565D01* +X3758Y-81570D01* +X3708Y-81611D01* +X3659Y-81647D01* +X3606Y-81676D01* +X3553Y-81705D01* +X3499Y-81725D01* +X3446Y-81746D01* +X3343Y-81774D01* +X3298Y-81783D01* +X3258Y-81791D01* +X3216Y-81795D01* +X3184Y-81799D01* +X3159Y-81803D01* +X3065D01* +X3007Y-81799D01* +X2958Y-81795D01* +X2913Y-81787D01* +X2876Y-81783D01* +X2851Y-81779D01* +X2831Y-81774D01* +X2827D01* +X2729Y-81750D01* +X2688Y-81738D01* +X2647Y-81725D01* +X2614Y-81713D01* +X2589Y-81705D01* +X2573Y-81697D01* +X2569D01* +X2499Y-81660D01* +X2466Y-81639D01* +X2437Y-81619D01* +X2413Y-81602D01* +X2392Y-81590D01* +X2380Y-81582D01* +X2376Y-81578D01* +X2306Y-81529D01* +X2278Y-81508D01* +X2253Y-81488D01* +X2232Y-81475D01* +X2216Y-81463D01* +X2208Y-81459D01* +X2204Y-81455D01* +Y-81734D01* +X1355D01* +Y-79926D01* +X1359Y-79839D01* +X1367Y-79757D01* +X1384Y-79684D01* +X1404Y-79614D01* +X1429Y-79548D01* +X1457Y-79491D01* +X1486Y-79438D01* +X1515Y-79392D01* +X1548Y-79351D01* +X1576Y-79319D01* +X1605Y-79286D01* +X1630Y-79261D01* +X1650Y-79245D01* +X1667Y-79233D01* +X1675Y-79224D01* +X1679Y-79220D01* +X1744Y-79179D01* +X1818Y-79146D01* +X1896Y-79114D01* +X1978Y-79089D01* +X2155Y-79048D01* +X2327Y-79023D01* +X2409Y-79015D01* +X2483Y-79007D01* +X2552Y-79003D01* +X2614Y-78999D01* +X2663Y-78995D01* +X2847D01* +X2954Y-79003D01* +D02* +G37* +G36* +X13179Y-81734D02* +X12269D01* +Y-80581D01* +X12060Y-80319D01* +X11002Y-81734D01* +X9879D01* +X11334Y-79835D01* +X9949Y-78199D01* +X11006D01* +X12269Y-79802D01* +Y-78199D01* +X13179D01* +Y-81734D01* +D02* +G37* +G36* +X-6915Y-81734D02* +X-7882D01* +X-8911Y-79069D01* +X-8026D01* +X-7411Y-80910D01* +X-6792Y-79069D01* +X-5894D01* +X-6915Y-81734D01* +D02* +G37* +G36* +X-12294Y-78999D02* +X-12183Y-79007D01* +X-12085Y-79019D01* +X-11999Y-79036D01* +X-11958Y-79044D01* +X-11925Y-79052D01* +X-11892Y-79056D01* +X-11867Y-79065D01* +X-11847Y-79069D01* +X-11830Y-79073D01* +X-11822Y-79077D01* +X-11818D01* +X-11716Y-79110D01* +X-11621Y-79146D01* +X-11535Y-79188D01* +X-11466Y-79229D01* +X-11404Y-79265D01* +X-11380Y-79282D01* +X-11359Y-79294D01* +X-11343Y-79306D01* +X-11330Y-79315D01* +X-11326Y-79323D01* +X-11322D01* +X-11244Y-79392D01* +X-11175Y-79466D01* +X-11113Y-79540D01* +X-11064Y-79614D01* +X-11023Y-79675D01* +X-11011Y-79700D01* +X-10998Y-79725D01* +X-10986Y-79745D01* +X-10978Y-79757D01* +X-10974Y-79766D01* +Y-79770D01* +X-10933Y-79876D01* +X-10904Y-79983D01* +X-10879Y-80094D01* +X-10867Y-80192D01* +X-10863Y-80237D01* +X-10859Y-80282D01* +X-10855Y-80319D01* +Y-80352D01* +X-10851Y-80376D01* +Y-80397D01* +Y-80409D01* +Y-80413D01* +X-10855Y-80541D01* +X-10867Y-80659D01* +X-10888Y-80766D01* +X-10896Y-80811D01* +X-10908Y-80856D01* +X-10920Y-80893D01* +X-10928Y-80930D01* +X-10941Y-80959D01* +X-10949Y-80983D01* +X-10953Y-81004D01* +X-10961Y-81020D01* +X-10965Y-81028D01* +Y-81033D01* +X-11015Y-81127D01* +X-11064Y-81213D01* +X-11121Y-81287D01* +X-11175Y-81348D01* +X-11220Y-81397D01* +X-11257Y-81434D01* +X-11285Y-81459D01* +X-11289Y-81463D01* +X-11293Y-81467D01* +X-11375Y-81529D01* +X-11462Y-81578D01* +X-11544Y-81623D01* +X-11626Y-81660D01* +X-11691Y-81684D01* +X-11720Y-81697D01* +X-11744Y-81705D01* +X-11765Y-81713D01* +X-11781Y-81717D01* +X-11789Y-81721D01* +X-11794D01* +X-11904Y-81750D01* +X-12015Y-81770D01* +X-12122Y-81783D01* +X-12220Y-81791D01* +X-12265Y-81795D01* +X-12302Y-81799D01* +X-12339D01* +X-12372Y-81803D01* +X-12429D01* +X-12528Y-81799D01* +X-12618Y-81795D01* +X-12700Y-81787D01* +X-12769Y-81775D01* +X-12831Y-81762D01* +X-12855Y-81758D01* +X-12876Y-81754D01* +X-12892Y-81750D01* +X-12905D01* +X-12909Y-81746D01* +X-12913D01* +X-12995Y-81725D01* +X-13073Y-81701D01* +X-13147Y-81676D01* +X-13208Y-81652D01* +X-13261Y-81631D01* +X-13302Y-81615D01* +X-13319Y-81607D01* +X-13331Y-81602D01* +X-13335Y-81598D01* +X-13339D01* +Y-80869D01* +X-13216D01* +X-13175Y-80910D01* +X-13138Y-80942D01* +X-13122Y-80955D01* +X-13114Y-80967D01* +X-13106Y-80971D01* +X-13102Y-80975D01* +X-13052Y-81012D01* +X-13007Y-81041D01* +X-12991Y-81057D01* +X-12974Y-81065D01* +X-12966Y-81069D01* +X-12962Y-81073D01* +X-12929Y-81090D01* +X-12892Y-81106D01* +X-12823Y-81135D01* +X-12790Y-81143D01* +X-12765Y-81151D01* +X-12749Y-81160D01* +X-12745D01* +X-12646Y-81180D01* +X-12597Y-81184D01* +X-12552Y-81188D01* +X-12515Y-81192D01* +X-12458D01* +X-12396Y-81188D01* +X-12335Y-81184D01* +X-12228Y-81160D01* +X-12134Y-81131D01* +X-12060Y-81094D01* +X-12027Y-81073D01* +X-11999Y-81057D01* +X-11974Y-81041D01* +X-11958Y-81024D01* +X-11941Y-81012D01* +X-11929Y-81004D01* +X-11925Y-81000D01* +X-11921Y-80996D01* +X-11888Y-80955D01* +X-11859Y-80914D01* +X-11814Y-80819D01* +X-11781Y-80725D01* +X-11761Y-80631D01* +X-11744Y-80545D01* +X-11740Y-80508D01* +Y-80475D01* +X-11736Y-80450D01* +Y-80430D01* +Y-80418D01* +Y-80413D01* +X-11740Y-80344D01* +X-11744Y-80282D01* +X-11765Y-80163D01* +X-11777Y-80110D01* +X-11794Y-80061D01* +X-11810Y-80020D01* +X-11826Y-79979D01* +X-11843Y-79942D01* +X-11859Y-79913D01* +X-11876Y-79884D01* +X-11888Y-79864D01* +X-11900Y-79843D01* +X-11908Y-79831D01* +X-11917Y-79827D01* +Y-79823D01* +X-11953Y-79786D01* +X-11990Y-79749D01* +X-12036Y-79720D01* +X-12077Y-79696D01* +X-12163Y-79659D01* +X-12249Y-79634D01* +X-12323Y-79618D01* +X-12355Y-79614D01* +X-12384Y-79610D01* +X-12409Y-79606D01* +X-12499D01* +X-12548Y-79610D01* +X-12597Y-79618D01* +X-12634Y-79622D01* +X-12667Y-79630D01* +X-12691Y-79638D01* +X-12708Y-79643D01* +X-12712D01* +X-12794Y-79671D01* +X-12831Y-79684D01* +X-12864Y-79696D01* +X-12888Y-79708D01* +X-12909Y-79720D01* +X-12921Y-79725D01* +X-12925Y-79729D01* +X-12995Y-79770D01* +X-13024Y-79786D01* +X-13048Y-79803D01* +X-13069Y-79819D01* +X-13085Y-79831D01* +X-13093Y-79835D01* +X-13097Y-79839D01* +X-13147Y-79880D01* +X-13183Y-79909D01* +X-13208Y-79930D01* +X-13212Y-79938D01* +X-13339D01* +Y-79212D01* +X-13261Y-79175D01* +X-13188Y-79146D01* +X-13114Y-79118D01* +X-13048Y-79097D01* +X-12991Y-79081D01* +X-12950Y-79069D01* +X-12933Y-79060D01* +X-12921D01* +X-12913Y-79056D01* +X-12909D01* +X-12823Y-79036D01* +X-12733Y-79019D01* +X-12651Y-79011D01* +X-12573Y-79003D01* +X-12503Y-78999D01* +X-12474Y-78995D01* +X-12405D01* +X-12294Y-78999D01* +D02* +G37* +G36* +X-16906D02* +X-16796Y-79007D01* +X-16697Y-79019D01* +X-16611Y-79036D01* +X-16570Y-79044D01* +X-16537Y-79052D01* +X-16505Y-79056D01* +X-16480Y-79065D01* +X-16459Y-79069D01* +X-16443Y-79073D01* +X-16435Y-79077D01* +X-16431D01* +X-16328Y-79110D01* +X-16234Y-79146D01* +X-16148Y-79188D01* +X-16078Y-79229D01* +X-16017Y-79265D01* +X-15992Y-79282D01* +X-15971Y-79294D01* +X-15955Y-79306D01* +X-15943Y-79315D01* +X-15939Y-79323D01* +X-15935D01* +X-15857Y-79392D01* +X-15787Y-79466D01* +X-15726Y-79540D01* +X-15676Y-79614D01* +X-15635Y-79675D01* +X-15623Y-79700D01* +X-15611Y-79725D01* +X-15598Y-79745D01* +X-15590Y-79757D01* +X-15586Y-79766D01* +Y-79770D01* +X-15545Y-79876D01* +X-15517Y-79983D01* +X-15492Y-80094D01* +X-15480Y-80192D01* +X-15475Y-80237D01* +X-15471Y-80282D01* +X-15467Y-80319D01* +Y-80352D01* +X-15463Y-80376D01* +Y-80397D01* +Y-80409D01* +Y-80413D01* +X-15467Y-80541D01* +X-15480Y-80659D01* +X-15500Y-80766D01* +X-15508Y-80811D01* +X-15521Y-80856D01* +X-15533Y-80893D01* +X-15541Y-80930D01* +X-15553Y-80959D01* +X-15562Y-80983D01* +X-15566Y-81004D01* +X-15574Y-81020D01* +X-15578Y-81028D01* +Y-81033D01* +X-15627Y-81127D01* +X-15676Y-81213D01* +X-15734Y-81287D01* +X-15787Y-81348D01* +X-15832Y-81397D01* +X-15869Y-81434D01* +X-15898Y-81459D01* +X-15902Y-81463D01* +X-15906Y-81467D01* +X-15988Y-81529D01* +X-16074Y-81578D01* +X-16156Y-81623D01* +X-16238Y-81660D01* +X-16304Y-81684D01* +X-16332Y-81697D01* +X-16357Y-81705D01* +X-16377Y-81713D01* +X-16394Y-81717D01* +X-16402Y-81721D01* +X-16406D01* +X-16517Y-81750D01* +X-16627Y-81770D01* +X-16734Y-81783D01* +X-16833Y-81791D01* +X-16878Y-81795D01* +X-16915Y-81799D01* +X-16951D01* +X-16984Y-81803D01* +X-17042D01* +X-17140Y-81799D01* +X-17230Y-81795D01* +X-17312Y-81787D01* +X-17382Y-81775D01* +X-17444Y-81762D01* +X-17468Y-81758D01* +X-17489Y-81754D01* +X-17505Y-81750D01* +X-17517D01* +X-17521Y-81746D01* +X-17526D01* +X-17607Y-81725D01* +X-17685Y-81701D01* +X-17759Y-81676D01* +X-17821Y-81652D01* +X-17874Y-81631D01* +X-17915Y-81615D01* +X-17931Y-81607D01* +X-17944Y-81602D01* +X-17948Y-81598D01* +X-17952D01* +Y-80869D01* +X-17829D01* +X-17788Y-80910D01* +X-17751Y-80942D01* +X-17734Y-80955D01* +X-17726Y-80967D01* +X-17718Y-80971D01* +X-17714Y-80975D01* +X-17665Y-81012D01* +X-17620Y-81041D01* +X-17603Y-81057D01* +X-17587Y-81065D01* +X-17579Y-81069D01* +X-17575Y-81073D01* +X-17542Y-81090D01* +X-17505Y-81106D01* +X-17435Y-81135D01* +X-17402Y-81143D01* +X-17378Y-81151D01* +X-17361Y-81160D01* +X-17357D01* +X-17259Y-81180D01* +X-17210Y-81184D01* +X-17165Y-81188D01* +X-17128Y-81192D01* +X-17070D01* +X-17009Y-81188D01* +X-16947Y-81184D01* +X-16841Y-81160D01* +X-16746Y-81131D01* +X-16673Y-81094D01* +X-16640Y-81073D01* +X-16611Y-81057D01* +X-16587Y-81041D01* +X-16570Y-81024D01* +X-16554Y-81012D01* +X-16542Y-81004D01* +X-16537Y-81000D01* +X-16533Y-80996D01* +X-16500Y-80955D01* +X-16472Y-80914D01* +X-16427Y-80819D01* +X-16394Y-80725D01* +X-16373Y-80631D01* +X-16357Y-80545D01* +X-16353Y-80508D01* +Y-80475D01* +X-16349Y-80450D01* +Y-80430D01* +Y-80418D01* +Y-80413D01* +X-16353Y-80344D01* +X-16357Y-80282D01* +X-16377Y-80163D01* +X-16390Y-80110D01* +X-16406Y-80061D01* +X-16423Y-80020D01* +X-16439Y-79979D01* +X-16455Y-79942D01* +X-16472Y-79913D01* +X-16488Y-79884D01* +X-16500Y-79864D01* +X-16513Y-79843D01* +X-16521Y-79831D01* +X-16529Y-79827D01* +Y-79823D01* +X-16566Y-79786D01* +X-16603Y-79749D01* +X-16648Y-79720D01* +X-16689Y-79696D01* +X-16775Y-79659D01* +X-16861Y-79634D01* +X-16935Y-79618D01* +X-16968Y-79614D01* +X-16996Y-79610D01* +X-17021Y-79606D01* +X-17111D01* +X-17161Y-79610D01* +X-17210Y-79618D01* +X-17247Y-79622D01* +X-17279Y-79630D01* +X-17304Y-79638D01* +X-17320Y-79643D01* +X-17324D01* +X-17406Y-79671D01* +X-17444Y-79684D01* +X-17476Y-79696D01* +X-17501Y-79708D01* +X-17521Y-79720D01* +X-17534Y-79725D01* +X-17538Y-79729D01* +X-17607Y-79770D01* +X-17636Y-79786D01* +X-17661Y-79803D01* +X-17681Y-79819D01* +X-17698Y-79831D01* +X-17706Y-79835D01* +X-17710Y-79839D01* +X-17759Y-79880D01* +X-17796Y-79909D01* +X-17821Y-79930D01* +X-17825Y-79938D01* +X-17952D01* +Y-79212D01* +X-17874Y-79175D01* +X-17800Y-79146D01* +X-17726Y-79118D01* +X-17661Y-79097D01* +X-17603Y-79081D01* +X-17562Y-79069D01* +X-17546Y-79060D01* +X-17534D01* +X-17526Y-79056D01* +X-17521D01* +X-17435Y-79036D01* +X-17345Y-79019D01* +X-17263Y-79011D01* +X-17185Y-79003D01* +X-17116Y-78999D01* +X-17087Y-78995D01* +X-17017D01* +X-16906Y-78999D01* +D02* +G37* +G36* +X4574Y-79064D02* +X4639Y-79073D01* +X4705Y-79085D01* +X4762Y-79101D01* +X4815Y-79118D01* +X4852Y-79130D01* +X4869Y-79134D01* +X4881Y-79138D01* +X4885Y-79142D01* +X4889D01* +X4971Y-79179D01* +X5053Y-79224D01* +X5135Y-79278D01* +X5213Y-79331D01* +X5279Y-79380D01* +X5308Y-79405D01* +X5332Y-79421D01* +X5348Y-79438D01* +X5365Y-79450D01* +X5373Y-79458D01* +X5377Y-79462D01* +Y-79069D01* +X6234D01* +Y-81734D01* +X5377D01* +Y-79954D01* +X5320Y-79934D01* +X5262Y-79917D01* +X5213Y-79901D01* +X5168Y-79893D01* +X5131Y-79884D01* +X5102Y-79876D01* +X5086Y-79872D01* +X5078D01* +X4967Y-79856D01* +X4914Y-79852D01* +X4865D01* +X4824Y-79848D01* +X4693D01* +X4627Y-79852D01* +X4598Y-79856D01* +X4578D01* +X4561Y-79860D01* +X4557D01* +X4516Y-79864D01* +X4479Y-79868D01* +X4447Y-79872D01* +X4422Y-79876D01* +X4405Y-79880D01* +X4389D01* +X4385Y-79884D01* +X4303D01* +Y-79073D01* +X4340Y-79069D01* +X4373D01* +X4397Y-79064D01* +X4405D01* +X4447Y-79060D01* +X4508D01* +X4574Y-79064D01* +D02* +G37* +G36* +X-1093Y-78999D02* +X-1007Y-79011D01* +X-924Y-79027D01* +X-855Y-79044D01* +X-797Y-79060D01* +X-756Y-79077D01* +X-740Y-79085D01* +X-728Y-79089D01* +X-724Y-79093D01* +X-720D01* +X-642Y-79130D01* +X-564Y-79175D01* +X-490Y-79220D01* +X-424Y-79265D01* +X-367Y-79302D01* +X-322Y-79335D01* +X-305Y-79347D01* +X-293Y-79356D01* +X-289Y-79360D01* +X-285Y-79364D01* +Y-79069D01* +X572D01* +Y-81734D01* +X-285D01* +Y-79843D01* +X-338Y-79815D01* +X-383Y-79790D01* +X-428Y-79770D01* +X-465Y-79753D01* +X-498Y-79741D01* +X-523Y-79733D01* +X-539Y-79725D01* +X-543D01* +X-629Y-79700D01* +X-670Y-79692D01* +X-703Y-79688D01* +X-736Y-79684D01* +X-834D01* +X-888Y-79692D01* +X-929Y-79696D01* +X-966Y-79704D01* +X-994Y-79712D01* +X-1015Y-79716D01* +X-1027Y-79725D01* +X-1031D01* +X-1064Y-79741D01* +X-1093Y-79761D01* +X-1117Y-79782D01* +X-1138Y-79807D01* +X-1154Y-79823D01* +X-1166Y-79839D01* +X-1171Y-79852D01* +X-1175Y-79856D01* +X-1187Y-79888D01* +X-1199Y-79921D01* +X-1216Y-79999D01* +X-1220Y-80036D01* +X-1224Y-80065D01* +X-1228Y-80081D01* +Y-80089D01* +X-1240Y-80208D01* +X-1244Y-80262D01* +Y-80311D01* +X-1249Y-80352D01* +Y-80385D01* +Y-80405D01* +Y-80413D01* +Y-81734D01* +X-2105D01* +Y-79999D01* +X-2101Y-79909D01* +X-2093Y-79823D01* +X-2081Y-79745D01* +X-2068Y-79671D01* +X-2048Y-79602D01* +X-2027Y-79540D01* +X-2007Y-79487D01* +X-1982Y-79438D01* +X-1958Y-79392D01* +X-1937Y-79356D01* +X-1917Y-79323D01* +X-1896Y-79294D01* +X-1884Y-79274D01* +X-1872Y-79261D01* +X-1863Y-79253D01* +X-1859Y-79249D01* +X-1810Y-79204D01* +X-1761Y-79167D01* +X-1708Y-79130D01* +X-1654Y-79101D01* +X-1597Y-79077D01* +X-1540Y-79056D01* +X-1433Y-79027D01* +X-1384Y-79015D01* +X-1335Y-79007D01* +X-1293Y-79003D01* +X-1257Y-78999D01* +X-1228Y-78995D01* +X-1187D01* +X-1093Y-78999D01* +D02* +G37* +G36* +X-9383Y-81734D02* +X-10240D01* +Y-79069D01* +X-9383D01* +Y-81734D01* +D02* +G37* +G36* +X-13934D02* +X-14819D01* +Y-80803D01* +X-13934D01* +Y-81734D01* +D02* +G37* +G36* +X24729Y-78142D02* +X24848Y-78150D01* +X24963Y-78167D01* +X25074Y-78187D01* +X25172Y-78212D01* +X25266Y-78236D01* +X25352Y-78265D01* +X25430Y-78294D01* +X25500Y-78326D01* +X25561Y-78355D01* +X25615Y-78380D01* +X25656Y-78404D01* +X25693Y-78425D01* +X25717Y-78441D01* +X25734Y-78449D01* +X25738Y-78453D01* +X25816Y-78515D01* +X25885Y-78576D01* +X25943Y-78642D01* +X25992Y-78712D01* +X26037Y-78777D01* +X26074Y-78843D01* +X26103Y-78909D01* +X26123Y-78970D01* +X26144Y-79032D01* +X26156Y-79085D01* +X26168Y-79134D01* +X26172Y-79175D01* +X26176Y-79208D01* +X26180Y-79237D01* +Y-79253D01* +Y-79257D01* +X26176Y-79323D01* +X26172Y-79388D01* +X26152Y-79511D01* +X26119Y-79614D01* +X26103Y-79663D01* +X26082Y-79704D01* +X26066Y-79745D01* +X26049Y-79778D01* +X26033Y-79807D01* +X26017Y-79831D01* +X26004Y-79852D01* +X25996Y-79864D01* +X25988Y-79872D01* +Y-79876D01* +X25947Y-79921D01* +X25902Y-79962D01* +X25803Y-80040D01* +X25697Y-80106D01* +X25590Y-80163D01* +X25541Y-80188D01* +X25496Y-80208D01* +X25455Y-80225D01* +X25418Y-80241D01* +X25385Y-80249D01* +X25365Y-80258D01* +X25348Y-80266D01* +X25344D01* +X25196Y-80311D01* +X25127Y-80327D01* +X25065Y-80344D01* +X25012Y-80356D01* +X24967Y-80364D01* +X24951Y-80368D01* +X24938Y-80372D01* +X24930D01* +X24848Y-80389D01* +X24770Y-80405D01* +X24696Y-80417D01* +X24635Y-80434D01* +X24581Y-80446D01* +X24541Y-80454D01* +X24528Y-80458D01* +X24516D01* +X24512Y-80462D01* +X24508D01* +X24442Y-80479D01* +X24385Y-80500D01* +X24336Y-80520D01* +X24295Y-80540D01* +X24262Y-80561D01* +X24237Y-80577D01* +X24225Y-80586D01* +X24221Y-80590D01* +X24188Y-80623D01* +X24163Y-80655D01* +X24143Y-80692D01* +X24130Y-80721D01* +X24122Y-80749D01* +X24118Y-80770D01* +Y-80787D01* +Y-80791D01* +X24122Y-80836D01* +X24130Y-80873D01* +X24139Y-80905D01* +X24151Y-80934D01* +X24167Y-80954D01* +X24176Y-80971D01* +X24184Y-80979D01* +X24188Y-80983D01* +X24241Y-81024D01* +X24299Y-81057D01* +X24323Y-81069D01* +X24344Y-81077D01* +X24356Y-81086D01* +X24360D01* +X24393Y-81098D01* +X24430Y-81110D01* +X24504Y-81123D01* +X24532Y-81131D01* +X24557D01* +X24577Y-81135D01* +X24581D01* +X24631Y-81139D01* +X24672Y-81143D01* +X24709D01* +X24742Y-81147D01* +X24799D01* +X24922Y-81143D01* +X25041Y-81127D01* +X25155Y-81110D01* +X25258Y-81086D01* +X25303Y-81077D01* +X25344Y-81065D01* +X25381Y-81057D01* +X25410Y-81045D01* +X25438Y-81041D01* +X25455Y-81032D01* +X25467Y-81028D01* +X25471D01* +X25598Y-80979D01* +X25717Y-80922D01* +X25824Y-80864D01* +X25918Y-80807D01* +X25959Y-80782D01* +X25996Y-80758D01* +X26025Y-80737D01* +X26053Y-80717D01* +X26074Y-80700D01* +X26090Y-80688D01* +X26099Y-80684D01* +X26103Y-80680D01* +X26201D01* +Y-81529D01* +X26094Y-81570D01* +X25988Y-81611D01* +X25885Y-81643D01* +X25791Y-81672D01* +X25750Y-81684D01* +X25713Y-81693D01* +X25676Y-81705D01* +X25648Y-81713D01* +X25627Y-81717D01* +X25607Y-81721D01* +X25598Y-81725D01* +X25594D01* +X25467Y-81750D01* +X25336Y-81766D01* +X25209Y-81783D01* +X25086Y-81791D01* +X25033D01* +X24983Y-81795D01* +X24938D01* +X24901Y-81799D01* +X24827D01* +X24688Y-81795D01* +X24557Y-81787D01* +X24434Y-81770D01* +X24319Y-81750D01* +X24208Y-81725D01* +X24110Y-81697D01* +X24020Y-81668D01* +X23938Y-81635D01* +X23864Y-81606D01* +X23802Y-81578D01* +X23749Y-81549D01* +X23704Y-81524D01* +X23667Y-81504D01* +X23643Y-81488D01* +X23626Y-81479D01* +X23622Y-81475D01* +X23544Y-81410D01* +X23474Y-81344D01* +X23417Y-81274D01* +X23368Y-81205D01* +X23323Y-81135D01* +X23286Y-81061D01* +X23257Y-80996D01* +X23233Y-80926D01* +X23216Y-80864D01* +X23204Y-80807D01* +X23192Y-80758D01* +X23188Y-80713D01* +X23183Y-80676D01* +X23179Y-80651D01* +Y-80631D01* +Y-80626D01* +X23183Y-80561D01* +X23188Y-80495D01* +X23208Y-80381D01* +X23241Y-80278D01* +X23257Y-80233D01* +X23278Y-80192D01* +X23294Y-80155D01* +X23315Y-80122D01* +X23331Y-80098D01* +X23343Y-80073D01* +X23360Y-80057D01* +X23368Y-80044D01* +X23372Y-80036D01* +X23376Y-80032D01* +X23413Y-79991D01* +X23458Y-79950D01* +X23552Y-79880D01* +X23651Y-79819D01* +X23749Y-79765D01* +X23835Y-79725D01* +X23876Y-79708D01* +X23909Y-79696D01* +X23938Y-79684D01* +X23958Y-79675D01* +X23971Y-79671D01* +X23975D01* +X24049Y-79647D01* +X24122Y-79626D01* +X24188Y-79610D01* +X24245Y-79593D01* +X24291Y-79585D01* +X24327Y-79577D01* +X24352Y-79569D01* +X24360D01* +X24495Y-79540D01* +X24557Y-79524D01* +X24614Y-79511D01* +X24664Y-79503D01* +X24701Y-79495D01* +X24725Y-79487D01* +X24733D01* +X24787Y-79475D01* +X24836Y-79462D01* +X24881Y-79450D01* +X24922Y-79438D01* +X24992Y-79417D01* +X25045Y-79397D01* +X25086Y-79376D01* +X25115Y-79364D01* +X25131Y-79356D01* +X25135Y-79351D01* +X25172Y-79323D01* +X25196Y-79286D01* +X25217Y-79253D01* +X25229Y-79216D01* +X25238Y-79188D01* +X25242Y-79163D01* +Y-79142D01* +Y-79138D01* +X25238Y-79105D01* +X25229Y-79073D01* +X25221Y-79044D01* +X25209Y-79019D01* +X25196Y-79003D01* +X25184Y-78987D01* +X25180Y-78978D01* +X25176Y-78974D01* +X25123Y-78925D01* +X25069Y-78892D01* +X25049Y-78880D01* +X25033Y-78872D01* +X25020Y-78864D01* +X25016D01* +X24938Y-78839D01* +X24905Y-78827D01* +X24873Y-78818D01* +X24844Y-78814D01* +X24823Y-78810D01* +X24807Y-78806D01* +X24803D01* +X24717Y-78798D01* +X24680Y-78794D01* +X24643Y-78790D01* +X24573D01* +X24454Y-78794D01* +X24340Y-78806D01* +X24233Y-78827D01* +X24135Y-78847D01* +X24094Y-78860D01* +X24057Y-78868D01* +X24024Y-78876D01* +X23995Y-78888D01* +X23971Y-78892D01* +X23954Y-78900D01* +X23946Y-78904D01* +X23942D01* +X23831Y-78950D01* +X23729Y-78999D01* +X23639Y-79044D01* +X23561Y-79089D01* +X23499Y-79130D01* +X23474Y-79146D01* +X23454Y-79159D01* +X23438Y-79171D01* +X23425Y-79179D01* +X23421Y-79188D01* +X23319D01* +Y-78376D01* +X23417Y-78339D01* +X23516Y-78306D01* +X23618Y-78277D01* +X23708Y-78253D01* +X23753Y-78244D01* +X23790Y-78232D01* +X23827Y-78224D01* +X23856Y-78220D01* +X23880Y-78216D01* +X23897Y-78212D01* +X23909Y-78208D01* +X23913D01* +X24040Y-78183D01* +X24163Y-78167D01* +X24282Y-78154D01* +X24385Y-78146D01* +X24430Y-78142D01* +X24475D01* +X24512Y-78138D01* +X24602D01* +X24729Y-78142D01* +D02* +G37* +G36* +X18280Y-78999D02* +X18391Y-79007D01* +X18493Y-79019D01* +X18587Y-79036D01* +X18677Y-79056D01* +X18759Y-79077D01* +X18833Y-79101D01* +X18899Y-79122D01* +X18960Y-79146D01* +X19014Y-79171D01* +X19059Y-79191D01* +X19096Y-79212D01* +X19124Y-79228D01* +X19145Y-79241D01* +X19157Y-79249D01* +X19161Y-79253D01* +X19223Y-79302D01* +X19280Y-79351D01* +X19329Y-79405D01* +X19370Y-79458D01* +X19403Y-79515D01* +X19432Y-79569D01* +X19456Y-79618D01* +X19477Y-79667D01* +X19493Y-79716D01* +X19502Y-79757D01* +X19510Y-79794D01* +X19518Y-79827D01* +Y-79856D01* +X19522Y-79876D01* +Y-79888D01* +Y-79893D01* +X19514Y-79999D01* +X19493Y-80098D01* +X19469Y-80184D01* +X19436Y-80253D01* +X19403Y-80315D01* +X19391Y-80335D01* +X19379Y-80356D01* +X19366Y-80372D01* +X19358Y-80385D01* +X19350Y-80389D01* +Y-80393D01* +X19313Y-80430D01* +X19276Y-80462D01* +X19190Y-80524D01* +X19100Y-80573D01* +X19014Y-80614D01* +X18932Y-80647D01* +X18899Y-80659D01* +X18870Y-80672D01* +X18842Y-80680D01* +X18825Y-80684D01* +X18813Y-80688D01* +X18809D01* +X18706Y-80713D01* +X18657Y-80721D01* +X18612Y-80729D01* +X18575Y-80737D01* +X18546Y-80746D01* +X18526Y-80749D01* +X18518D01* +X18460Y-80758D01* +X18407Y-80766D01* +X18362Y-80774D01* +X18325Y-80782D01* +X18296Y-80787D01* +X18276Y-80791D01* +X18263Y-80795D01* +X18259D01* +X18190Y-80811D01* +X18132Y-80823D01* +X18087Y-80840D01* +X18050Y-80852D01* +X18022Y-80864D01* +X18001Y-80873D01* +X17993Y-80877D01* +X17989Y-80881D01* +X17964Y-80897D01* +X17948Y-80918D01* +X17931Y-80942D01* +X17923Y-80967D01* +X17919Y-80987D01* +X17915Y-81004D01* +Y-81016D01* +Y-81020D01* +X17919Y-81057D01* +X17935Y-81090D01* +X17952Y-81119D01* +X17976Y-81143D01* +X17997Y-81160D01* +X18017Y-81172D01* +X18034Y-81180D01* +X18038Y-81184D01* +X18087Y-81200D01* +X18145Y-81213D01* +X18210Y-81225D01* +X18268Y-81229D01* +X18325Y-81233D01* +X18370Y-81238D01* +X18481D01* +X18551Y-81233D01* +X18608Y-81225D01* +X18665Y-81217D01* +X18710Y-81213D01* +X18743Y-81205D01* +X18764Y-81200D01* +X18772D01* +X18833Y-81184D01* +X18891Y-81172D01* +X18940Y-81155D01* +X18985Y-81139D01* +X19022Y-81127D01* +X19047Y-81114D01* +X19067Y-81110D01* +X19071Y-81106D01* +X19124Y-81082D01* +X19174Y-81061D01* +X19215Y-81045D01* +X19252Y-81024D01* +X19276Y-81012D01* +X19297Y-81000D01* +X19309Y-80996D01* +X19313Y-80991D01* +X19370Y-80954D01* +X19415Y-80922D01* +X19432Y-80910D01* +X19444Y-80901D01* +X19452Y-80893D01* +X19534D01* +Y-81594D01* +X19465Y-81623D01* +X19391Y-81652D01* +X19313Y-81676D01* +X19239Y-81697D01* +X19174Y-81717D01* +X19145Y-81725D01* +X19124Y-81729D01* +X19104Y-81734D01* +X19087Y-81738D01* +X19079Y-81742D01* +X19075D01* +X18965Y-81762D01* +X18850Y-81779D01* +X18743Y-81791D01* +X18641Y-81799D01* +X18596Y-81803D01* +X18518D01* +X18489Y-81807D01* +X18427D01* +X18308Y-81803D01* +X18198Y-81795D01* +X18095Y-81783D01* +X17997Y-81766D01* +X17907Y-81750D01* +X17825Y-81729D01* +X17747Y-81705D01* +X17681Y-81680D01* +X17620Y-81660D01* +X17567Y-81635D01* +X17521Y-81615D01* +X17480Y-81594D01* +X17452Y-81582D01* +X17431Y-81570D01* +X17419Y-81561D01* +X17415Y-81557D01* +X17349Y-81508D01* +X17292Y-81455D01* +X17243Y-81401D01* +X17198Y-81344D01* +X17165Y-81291D01* +X17132Y-81233D01* +X17107Y-81180D01* +X17087Y-81127D01* +X17074Y-81077D01* +X17062Y-81032D01* +X17054Y-80991D01* +X17046Y-80959D01* +Y-80930D01* +X17042Y-80905D01* +Y-80893D01* +Y-80889D01* +X17050Y-80791D01* +X17066Y-80696D01* +X17095Y-80618D01* +X17124Y-80549D01* +X17152Y-80495D01* +X17181Y-80454D01* +X17189Y-80442D01* +X17198Y-80430D01* +X17206Y-80426D01* +Y-80422D01* +X17239Y-80389D01* +X17271Y-80356D01* +X17349Y-80299D01* +X17431Y-80249D01* +X17513Y-80212D01* +X17587Y-80180D01* +X17620Y-80167D01* +X17648Y-80159D01* +X17669Y-80151D01* +X17685Y-80147D01* +X17698Y-80143D01* +X17702D01* +X17812Y-80118D01* +X17866Y-80106D01* +X17911Y-80098D01* +X17948Y-80089D01* +X17980Y-80085D01* +X17997Y-80081D01* +X18005D01* +X18063Y-80073D01* +X18112Y-80061D01* +X18161Y-80053D01* +X18202Y-80044D01* +X18235Y-80036D01* +X18263Y-80032D01* +X18280Y-80028D01* +X18284D01* +X18366Y-80007D01* +X18431Y-79991D01* +X18485Y-79975D01* +X18526Y-79958D01* +X18555Y-79946D01* +X18575Y-79938D01* +X18583Y-79934D01* +X18587Y-79930D01* +X18608Y-79909D01* +X18624Y-79884D01* +X18632Y-79864D01* +X18641Y-79839D01* +X18645Y-79819D01* +X18649Y-79802D01* +Y-79790D01* +Y-79786D01* +X18645Y-79749D01* +X18628Y-79716D01* +X18604Y-79688D01* +X18579Y-79663D01* +X18555Y-79647D01* +X18530Y-79634D01* +X18514Y-79626D01* +X18509Y-79622D01* +X18456Y-79602D01* +X18395Y-79589D01* +X18337Y-79577D01* +X18284Y-79573D01* +X18235Y-79569D01* +X18194Y-79565D01* +X18161D01* +X18067Y-79569D01* +X17976Y-79577D01* +X17895Y-79593D01* +X17821Y-79606D01* +X17759Y-79622D01* +X17734Y-79630D01* +X17710Y-79638D01* +X17694Y-79643D01* +X17681Y-79647D01* +X17673Y-79651D01* +X17669D01* +X17579Y-79684D01* +X17501Y-79716D01* +X17427Y-79753D01* +X17361Y-79786D01* +X17308Y-79815D01* +X17267Y-79839D01* +X17243Y-79856D01* +X17239Y-79860D01* +X17161D01* +Y-79188D01* +X17222Y-79163D01* +X17292Y-79138D01* +X17366Y-79114D01* +X17435Y-79097D01* +X17497Y-79081D01* +X17521Y-79073D01* +X17546Y-79069D01* +X17567Y-79060D01* +X17579D01* +X17587Y-79056D01* +X17591D01* +X17694Y-79036D01* +X17796Y-79019D01* +X17895Y-79011D01* +X17980Y-79003D01* +X18022Y-78999D01* +X18054D01* +X18087Y-78995D01* +X18165D01* +X18280Y-78999D01* +D02* +G37* +G36* +X-4028Y-78991D02* +X-3914Y-79003D01* +X-3799Y-79019D01* +X-3696Y-79044D01* +X-3602Y-79073D01* +X-3512Y-79106D01* +X-3434Y-79138D01* +X-3360Y-79175D01* +X-3294Y-79212D01* +X-3241Y-79245D01* +X-3192Y-79278D01* +X-3151Y-79306D01* +X-3122Y-79327D01* +X-3098Y-79347D01* +X-3085Y-79360D01* +X-3081Y-79364D01* +X-3011Y-79438D01* +X-2954Y-79515D01* +X-2901Y-79602D01* +X-2860Y-79684D01* +X-2823Y-79774D01* +X-2790Y-79860D01* +X-2765Y-79942D01* +X-2745Y-80024D01* +X-2729Y-80102D01* +X-2716Y-80176D01* +X-2708Y-80241D01* +X-2704Y-80295D01* +X-2700Y-80340D01* +X-2696Y-80376D01* +Y-80397D01* +Y-80405D01* +X-2700Y-80524D01* +X-2712Y-80639D01* +X-2733Y-80746D01* +X-2757Y-80844D01* +X-2786Y-80934D01* +X-2815Y-81020D01* +X-2851Y-81098D01* +X-2888Y-81168D01* +X-2921Y-81229D01* +X-2958Y-81283D01* +X-2987Y-81332D01* +X-3020Y-81369D01* +X-3040Y-81397D01* +X-3061Y-81422D01* +X-3073Y-81434D01* +X-3077Y-81438D01* +X-3151Y-81504D01* +X-3233Y-81561D01* +X-3319Y-81615D01* +X-3405Y-81656D01* +X-3495Y-81693D01* +X-3585Y-81725D01* +X-3676Y-81750D01* +X-3758Y-81766D01* +X-3840Y-81783D01* +X-3914Y-81795D01* +X-3983Y-81803D01* +X-4041Y-81811D01* +X-4090D01* +X-4127Y-81816D01* +X-4155D01* +X-4282Y-81811D01* +X-4401Y-81799D01* +X-4512Y-81779D01* +X-4614Y-81758D01* +X-4713Y-81730D01* +X-4799Y-81697D01* +X-4881Y-81664D01* +X-4951Y-81627D01* +X-5016Y-81590D01* +X-5074Y-81557D01* +X-5119Y-81524D01* +X-5160Y-81496D01* +X-5189Y-81471D01* +X-5213Y-81455D01* +X-5226Y-81442D01* +X-5229Y-81438D01* +X-5299Y-81365D01* +X-5357Y-81287D01* +X-5410Y-81205D01* +X-5451Y-81119D01* +X-5488Y-81033D01* +X-5521Y-80946D01* +X-5545Y-80860D01* +X-5566Y-80778D01* +X-5582Y-80704D01* +X-5594Y-80631D01* +X-5603Y-80569D01* +X-5611Y-80512D01* +Y-80467D01* +X-5615Y-80434D01* +Y-80413D01* +Y-80405D01* +X-5611Y-80286D01* +X-5599Y-80172D01* +X-5578Y-80065D01* +X-5557Y-79966D01* +X-5525Y-79872D01* +X-5496Y-79790D01* +X-5459Y-79712D01* +X-5426Y-79638D01* +X-5390Y-79577D01* +X-5353Y-79524D01* +X-5324Y-79475D01* +X-5295Y-79438D01* +X-5271Y-79409D01* +X-5250Y-79384D01* +X-5238Y-79372D01* +X-5234Y-79368D01* +X-5160Y-79302D01* +X-5078Y-79241D01* +X-4992Y-79192D01* +X-4906Y-79146D01* +X-4815Y-79110D01* +X-4725Y-79081D01* +X-4635Y-79056D01* +X-4553Y-79036D01* +X-4471Y-79019D01* +X-4397Y-79007D01* +X-4328Y-78999D01* +X-4270Y-78991D01* +X-4221D01* +X-4188Y-78987D01* +X-4155D01* +X-4028Y-78991D01* +D02* +G37* +G36* +X-19653D02* +X-19539Y-79003D01* +X-19424Y-79019D01* +X-19321Y-79044D01* +X-19227Y-79073D01* +X-19137Y-79106D01* +X-19059Y-79138D01* +X-18985Y-79175D01* +X-18920Y-79212D01* +X-18866Y-79245D01* +X-18817Y-79278D01* +X-18776Y-79306D01* +X-18747Y-79327D01* +X-18723Y-79347D01* +X-18710Y-79360D01* +X-18706Y-79364D01* +X-18636Y-79438D01* +X-18579Y-79515D01* +X-18526Y-79602D01* +X-18485Y-79684D01* +X-18448Y-79774D01* +X-18415Y-79860D01* +X-18391Y-79942D01* +X-18370Y-80024D01* +X-18354Y-80102D01* +X-18341Y-80176D01* +X-18333Y-80241D01* +X-18329Y-80295D01* +X-18325Y-80340D01* +X-18321Y-80376D01* +Y-80397D01* +Y-80405D01* +X-18325Y-80524D01* +X-18337Y-80639D01* +X-18358Y-80746D01* +X-18382Y-80844D01* +X-18411Y-80934D01* +X-18440Y-81020D01* +X-18477Y-81098D01* +X-18514Y-81168D01* +X-18546Y-81229D01* +X-18583Y-81283D01* +X-18612Y-81332D01* +X-18645Y-81369D01* +X-18665Y-81397D01* +X-18686Y-81422D01* +X-18698Y-81434D01* +X-18702Y-81438D01* +X-18776Y-81504D01* +X-18858Y-81561D01* +X-18944Y-81615D01* +X-19030Y-81656D01* +X-19120Y-81693D01* +X-19211Y-81725D01* +X-19301Y-81750D01* +X-19383Y-81766D01* +X-19465Y-81783D01* +X-19539Y-81795D01* +X-19608Y-81803D01* +X-19666Y-81811D01* +X-19715D01* +X-19752Y-81816D01* +X-19780D01* +X-19908Y-81811D01* +X-20026Y-81799D01* +X-20137Y-81779D01* +X-20240Y-81758D01* +X-20338Y-81730D01* +X-20424Y-81697D01* +X-20506Y-81664D01* +X-20576Y-81627D01* +X-20641Y-81590D01* +X-20699Y-81557D01* +X-20744Y-81524D01* +X-20785Y-81496D01* +X-20814Y-81471D01* +X-20838Y-81455D01* +X-20851Y-81442D01* +X-20855Y-81438D01* +X-20924Y-81365D01* +X-20982Y-81287D01* +X-21035Y-81205D01* +X-21076Y-81119D01* +X-21113Y-81033D01* +X-21146Y-80946D01* +X-21170Y-80860D01* +X-21191Y-80778D01* +X-21207Y-80704D01* +X-21220Y-80631D01* +X-21228Y-80569D01* +X-21236Y-80512D01* +Y-80467D01* +X-21240Y-80434D01* +Y-80413D01* +Y-80405D01* +X-21236Y-80286D01* +X-21224Y-80172D01* +X-21203Y-80065D01* +X-21183Y-79966D01* +X-21150Y-79872D01* +X-21121Y-79790D01* +X-21084Y-79712D01* +X-21051Y-79638D01* +X-21014Y-79577D01* +X-20978Y-79524D01* +X-20949Y-79475D01* +X-20920Y-79438D01* +X-20896Y-79409D01* +X-20875Y-79384D01* +X-20863Y-79372D01* +X-20859Y-79368D01* +X-20785Y-79302D01* +X-20703Y-79241D01* +X-20617Y-79192D01* +X-20531Y-79146D01* +X-20440Y-79110D01* +X-20350Y-79081D01* +X-20260Y-79056D01* +X-20178Y-79036D01* +X-20096Y-79019D01* +X-20022Y-79007D01* +X-19953Y-78999D01* +X-19895Y-78991D01* +X-19846D01* +X-19813Y-78987D01* +X-19780D01* +X-19653Y-78991D01* +D02* +G37* +G36* +X-1304Y-95236D02* +X-2271D01* +X-3300Y-92571D01* +X-2415D01* +X-1800Y-94412D01* +X-1181Y-92571D01* +X-283D01* +X-1304Y-95236D01* +D02* +G37* +G36* +X1423Y-92493D02* +X1546Y-92506D01* +X1656Y-92526D01* +X1763Y-92551D01* +X1861Y-92580D01* +X1956Y-92612D01* +X2038Y-92645D01* +X2111Y-92682D01* +X2177Y-92719D01* +X2239Y-92752D01* +X2288Y-92785D01* +X2329Y-92813D01* +X2362Y-92838D01* +X2382Y-92858D01* +X2399Y-92871D01* +X2403Y-92875D01* +X2472Y-92949D01* +X2534Y-93031D01* +X2587Y-93112D01* +X2636Y-93199D01* +X2673Y-93289D01* +X2706Y-93375D01* +X2735Y-93461D01* +X2755Y-93543D01* +X2772Y-93621D01* +X2784Y-93691D01* +X2792Y-93756D01* +X2796Y-93810D01* +X2800Y-93855D01* +X2804Y-93892D01* +Y-93912D01* +Y-93920D01* +X2800Y-94043D01* +X2784Y-94158D01* +X2763Y-94265D01* +X2739Y-94363D01* +X2706Y-94453D01* +X2669Y-94539D01* +X2632Y-94617D01* +X2591Y-94687D01* +X2550Y-94749D01* +X2513Y-94802D01* +X2476Y-94847D01* +X2444Y-94884D01* +X2419Y-94912D01* +X2394Y-94933D01* +X2382Y-94945D01* +X2378Y-94949D01* +X2292Y-95011D01* +X2202Y-95068D01* +X2107Y-95113D01* +X2005Y-95154D01* +X1907Y-95191D01* +X1804Y-95220D01* +X1702Y-95240D01* +X1603Y-95261D01* +X1513Y-95277D01* +X1427Y-95286D01* +X1349Y-95294D01* +X1283Y-95302D01* +X1230D01* +X1189Y-95306D01* +X1152D01* +X1037Y-95302D01* +X931Y-95298D01* +X836Y-95290D01* +X750Y-95277D01* +X717Y-95273D01* +X685Y-95269D01* +X656Y-95265D01* +X631Y-95261D01* +X611Y-95257D01* +X599D01* +X590Y-95253D01* +X586D01* +X488Y-95232D01* +X390Y-95208D01* +X299Y-95179D01* +X213Y-95150D01* +X143Y-95126D01* +X111Y-95117D01* +X86Y-95109D01* +X66Y-95101D01* +X49Y-95093D01* +X41Y-95089D01* +X37D01* +Y-94400D01* +X135D01* +X193Y-94441D01* +X258Y-94482D01* +X324Y-94519D01* +X390Y-94548D01* +X447Y-94576D01* +X492Y-94597D01* +X508Y-94605D01* +X521Y-94609D01* +X529Y-94613D01* +X533D01* +X627Y-94646D01* +X722Y-94671D01* +X812Y-94687D01* +X890Y-94699D01* +X959Y-94707D01* +X988D01* +X1013Y-94712D01* +X1136D01* +X1209Y-94703D01* +X1275Y-94695D01* +X1341Y-94687D01* +X1398Y-94675D01* +X1451Y-94658D01* +X1496Y-94646D01* +X1542Y-94630D01* +X1578Y-94613D01* +X1611Y-94601D01* +X1640Y-94585D01* +X1665Y-94572D01* +X1681Y-94564D01* +X1693Y-94556D01* +X1702Y-94548D01* +X1706D01* +X1743Y-94515D01* +X1779Y-94478D01* +X1808Y-94441D01* +X1833Y-94400D01* +X1874Y-94318D01* +X1902Y-94240D01* +X1923Y-94170D01* +X1927Y-94138D01* +X1935Y-94113D01* +Y-94088D01* +X1939Y-94072D01* +Y-94064D01* +Y-94060D01* +X-12D01* +Y-93764D01* +X-8Y-93654D01* +X0Y-93547D01* +X16Y-93449D01* +X37Y-93359D01* +X66Y-93273D01* +X90Y-93195D01* +X123Y-93125D01* +X152Y-93063D01* +X180Y-93006D01* +X213Y-92957D01* +X238Y-92916D01* +X262Y-92883D01* +X287Y-92854D01* +X303Y-92838D01* +X312Y-92826D01* +X316Y-92822D01* +X381Y-92764D01* +X451Y-92711D01* +X529Y-92666D01* +X607Y-92629D01* +X689Y-92596D01* +X771Y-92571D01* +X849Y-92547D01* +X927Y-92530D01* +X1005Y-92518D01* +X1070Y-92506D01* +X1136Y-92498D01* +X1189Y-92493D01* +X1234D01* +X1267Y-92489D01* +X1296D01* +X1423Y-92493D01* +D02* +G37* +G36* +X6363Y-95236D02* +X5453D01* +Y-93941D01* +X5035D01* +X4075Y-95236D01* +X2960D01* +X4141Y-93723D01* +X4022Y-93658D01* +X3920Y-93588D01* +X3829Y-93523D01* +X3756Y-93457D01* +X3698Y-93400D01* +X3657Y-93354D01* +X3645Y-93338D01* +X3633Y-93326D01* +X3624Y-93318D01* +Y-93313D01* +X3592Y-93264D01* +X3563Y-93215D01* +X3518Y-93108D01* +X3485Y-93002D01* +X3464Y-92899D01* +X3456Y-92854D01* +X3448Y-92813D01* +X3444Y-92772D01* +Y-92739D01* +X3440Y-92711D01* +Y-92690D01* +Y-92678D01* +Y-92674D01* +X3444Y-92571D01* +X3456Y-92481D01* +X3477Y-92399D01* +X3497Y-92334D01* +X3522Y-92276D01* +X3538Y-92235D01* +X3546Y-92223D01* +X3555Y-92211D01* +X3559Y-92206D01* +Y-92202D01* +X3608Y-92137D01* +X3657Y-92075D01* +X3711Y-92022D01* +X3760Y-91977D01* +X3805Y-91944D01* +X3842Y-91915D01* +X3866Y-91899D01* +X3870Y-91895D01* +X3875D01* +X3948Y-91854D01* +X4022Y-91821D01* +X4096Y-91792D01* +X4157Y-91772D01* +X4215Y-91755D01* +X4260Y-91747D01* +X4276Y-91743D01* +X4289Y-91739D01* +X4297D01* +X4383Y-91727D01* +X4477Y-91719D01* +X4567Y-91710D01* +X4654Y-91706D01* +X4727Y-91702D01* +X6363D01* +Y-95236D01* +D02* +G37* +G36* +X-4842Y-91747D02* +X-4830Y-91792D01* +X-4817Y-91833D01* +X-4805Y-91866D01* +X-4793Y-91895D01* +X-4785Y-91915D01* +X-4777Y-91928D01* +X-4772Y-91932D01* +X-4748Y-91965D01* +X-4719Y-91997D01* +X-4686Y-92022D01* +X-4658Y-92047D01* +X-4629Y-92063D01* +X-4608Y-92075D01* +X-4592Y-92084D01* +X-4588Y-92088D01* +X-4547Y-92104D01* +X-4502Y-92120D01* +X-4461Y-92133D01* +X-4420Y-92141D01* +X-4383Y-92149D01* +X-4354Y-92153D01* +X-4334Y-92157D01* +X-4326D01* +X-4211Y-92165D01* +X-4153Y-92170D01* +X-4104D01* +X-4063Y-92174D01* +X-4002D01* +Y-92752D01* +X-4748D01* +Y-94621D01* +X-4002D01* +Y-95236D01* +X-6363D01* +Y-94621D01* +X-5633D01* +Y-91694D01* +X-4846D01* +X-4842Y-91747D01* +D02* +G37* +G36* +X19323Y-71815D02* +X18417D01* +Y-71167D01* +X19323D01* +Y-71815D01* +D02* +G37* +G36* +X11099Y-72122D02* +X11181Y-72135D01* +X11259Y-72151D01* +X11324Y-72167D01* +X11377Y-72184D01* +X11418Y-72200D01* +X11435Y-72208D01* +X11447Y-72213D01* +X11451Y-72217D01* +X11455D01* +X11529Y-72258D01* +X11607Y-72299D01* +X11677Y-72344D01* +X11738Y-72389D01* +X11796Y-72426D01* +X11837Y-72459D01* +X11853Y-72471D01* +X11865Y-72479D01* +X11869Y-72483D01* +X11874Y-72487D01* +Y-72192D01* +X12731D01* +Y-74857D01* +X11874D01* +Y-72967D01* +X11800Y-72926D01* +X11767Y-72910D01* +X11734Y-72893D01* +X11705Y-72881D01* +X11685Y-72869D01* +X11669Y-72865D01* +X11665Y-72860D01* +X11619Y-72844D01* +X11574Y-72828D01* +X11533Y-72819D01* +X11496Y-72815D01* +X11464Y-72811D01* +X11439Y-72807D01* +X11365D01* +X11316Y-72815D01* +X11275Y-72819D01* +X11238Y-72828D01* +X11214Y-72836D01* +X11193Y-72840D01* +X11181Y-72848D01* +X11177D01* +X11119Y-72885D01* +X11078Y-72926D01* +X11066Y-72942D01* +X11054Y-72959D01* +X11045Y-72967D01* +Y-72971D01* +X11033Y-73004D01* +X11021Y-73041D01* +X11004Y-73115D01* +X11000Y-73147D01* +X10996Y-73172D01* +Y-73188D01* +Y-73197D01* +X10992Y-73250D01* +X10988Y-73303D01* +Y-73361D01* +X10984Y-73410D01* +Y-73455D01* +Y-73492D01* +Y-73516D01* +Y-73520D01* +Y-73525D01* +Y-74857D01* +X10127D01* +Y-72967D01* +X10074Y-72938D01* +X10029Y-72910D01* +X9988Y-72889D01* +X9951Y-72873D01* +X9922Y-72860D01* +X9897Y-72852D01* +X9885Y-72844D01* +X9881D01* +X9803Y-72824D01* +X9770Y-72815D01* +X9737Y-72811D01* +X9713Y-72807D01* +X9614D01* +X9565Y-72815D01* +X9524Y-72819D01* +X9487Y-72828D01* +X9463Y-72836D01* +X9442Y-72840D01* +X9430Y-72848D01* +X9426D01* +X9397Y-72865D01* +X9369Y-72885D01* +X9348Y-72905D01* +X9332Y-72926D01* +X9315Y-72942D01* +X9307Y-72959D01* +X9299Y-72967D01* +Y-72971D01* +X9286Y-73004D01* +X9274Y-73041D01* +X9258Y-73115D01* +X9254Y-73143D01* +X9250Y-73168D01* +Y-73188D01* +Y-73193D01* +X9245Y-73246D01* +X9241Y-73303D01* +Y-73356D01* +X9237Y-73410D01* +Y-73455D01* +Y-73492D01* +Y-73516D01* +Y-73520D01* +Y-73525D01* +Y-74857D01* +X8380D01* +Y-73123D01* +X8384Y-73033D01* +X8389Y-72951D01* +X8401Y-72873D01* +X8417Y-72803D01* +X8434Y-72737D01* +X8450Y-72676D01* +X8471Y-72619D01* +X8491Y-72569D01* +X8516Y-72524D01* +X8536Y-72487D01* +X8553Y-72455D01* +X8569Y-72430D01* +X8585Y-72409D01* +X8598Y-72393D01* +X8602Y-72385D01* +X8606Y-72381D01* +X8651Y-72336D01* +X8700Y-72295D01* +X8749Y-72258D01* +X8803Y-72229D01* +X8856Y-72204D01* +X8913Y-72184D01* +X9020Y-72151D01* +X9069Y-72139D01* +X9114Y-72131D01* +X9155Y-72127D01* +X9192Y-72122D01* +X9221Y-72118D01* +X9262D01* +X9348Y-72122D01* +X9434Y-72139D01* +X9512Y-72159D01* +X9582Y-72180D01* +X9643Y-72204D01* +X9672Y-72217D01* +X9692Y-72225D01* +X9709Y-72233D01* +X9721Y-72241D01* +X9729Y-72245D01* +X9733D01* +X9824Y-72295D01* +X9914Y-72348D01* +X9996Y-72405D01* +X10074Y-72459D01* +X10135Y-72508D01* +X10164Y-72528D01* +X10184Y-72545D01* +X10205Y-72561D01* +X10217Y-72573D01* +X10225Y-72578D01* +X10229Y-72582D01* +X10275Y-72504D01* +X10328Y-72434D01* +X10381Y-72373D01* +X10430Y-72323D01* +X10475Y-72286D01* +X10512Y-72258D01* +X10537Y-72241D01* +X10541Y-72237D01* +X10545D01* +X10623Y-72196D01* +X10701Y-72167D01* +X10779Y-72147D01* +X10853Y-72135D01* +X10914Y-72122D01* +X10943D01* +X10963Y-72118D01* +X11009D01* +X11099Y-72122D01* +D02* +G37* +G36* +X15113Y-72127D02* +X15219Y-72135D01* +X15309Y-72143D01* +X15350Y-72147D01* +X15387Y-72151D01* +X15420Y-72155D01* +X15449Y-72159D01* +X15473Y-72163D01* +X15490D01* +X15498Y-72167D01* +X15502D01* +X15609Y-72184D01* +X15699Y-72200D01* +X15773Y-72217D01* +X15834Y-72229D01* +X15879Y-72237D01* +X15912Y-72245D01* +X15928Y-72254D01* +X15937D01* +Y-72893D01* +X15859D01* +X15814Y-72877D01* +X15760Y-72860D01* +X15707Y-72840D01* +X15650Y-72824D01* +X15600Y-72807D01* +X15555Y-72795D01* +X15539Y-72791D01* +X15531Y-72787D01* +X15523Y-72782D01* +X15518D01* +X15432Y-72758D01* +X15346Y-72737D01* +X15272Y-72725D01* +X15203Y-72713D01* +X15145Y-72709D01* +X15104Y-72705D01* +X15067D01* +X14944Y-72709D01* +X14838Y-72717D01* +X14748Y-72733D01* +X14674Y-72746D01* +X14641Y-72754D01* +X14612Y-72762D01* +X14592Y-72770D01* +X14571Y-72778D01* +X14559Y-72782D01* +X14547Y-72787D01* +X14539Y-72791D01* +X14506Y-72807D01* +X14477Y-72828D01* +X14436Y-72873D01* +X14403Y-72922D01* +X14379Y-72971D01* +X14366Y-73020D01* +X14362Y-73057D01* +X14358Y-73074D01* +Y-73086D01* +Y-73090D01* +Y-73094D01* +Y-73106D01* +X14498Y-73115D01* +X14633Y-73127D01* +X14756Y-73139D01* +X14813Y-73143D01* +X14863Y-73151D01* +X14912Y-73156D01* +X14957Y-73160D01* +X14994Y-73164D01* +X15026Y-73168D01* +X15051Y-73172D01* +X15072D01* +X15084Y-73176D01* +X15088D01* +X15215Y-73197D01* +X15326Y-73217D01* +X15428Y-73246D01* +X15510Y-73270D01* +X15547Y-73279D01* +X15580Y-73291D01* +X15609Y-73303D01* +X15633Y-73311D01* +X15650Y-73316D01* +X15662Y-73324D01* +X15670Y-73328D01* +X15674D01* +X15756Y-73369D01* +X15830Y-73418D01* +X15896Y-73467D01* +X15949Y-73512D01* +X15990Y-73553D01* +X16019Y-73590D01* +X16035Y-73611D01* +X16043Y-73615D01* +Y-73619D01* +X16084Y-73693D01* +X16117Y-73771D01* +X16138Y-73848D01* +X16154Y-73926D01* +X16162Y-73992D01* +X16166Y-74021D01* +Y-74045D01* +X16170Y-74066D01* +Y-74082D01* +Y-74090D01* +Y-74094D01* +X16166Y-74160D01* +X16158Y-74226D01* +X16146Y-74283D01* +X16129Y-74340D01* +X16088Y-74443D01* +X16068Y-74488D01* +X16043Y-74529D01* +X16019Y-74566D01* +X15998Y-74599D01* +X15974Y-74628D01* +X15957Y-74652D01* +X15941Y-74669D01* +X15928Y-74681D01* +X15920Y-74689D01* +X15916Y-74693D01* +X15867Y-74734D01* +X15818Y-74771D01* +X15765Y-74800D01* +X15711Y-74828D01* +X15658Y-74849D01* +X15605Y-74869D01* +X15502Y-74898D01* +X15457Y-74906D01* +X15416Y-74914D01* +X15375Y-74919D01* +X15342Y-74923D01* +X15318Y-74927D01* +X15223D01* +X15166Y-74923D01* +X15117Y-74919D01* +X15072Y-74910D01* +X15035Y-74906D01* +X15010Y-74902D01* +X14990Y-74898D01* +X14986D01* +X14887Y-74874D01* +X14846Y-74861D01* +X14805Y-74849D01* +X14772Y-74837D01* +X14748Y-74828D01* +X14731Y-74820D01* +X14727D01* +X14658Y-74783D01* +X14625Y-74763D01* +X14596Y-74742D01* +X14571Y-74726D01* +X14551Y-74714D01* +X14539Y-74705D01* +X14535Y-74701D01* +X14465Y-74652D01* +X14436Y-74632D01* +X14412Y-74611D01* +X14391Y-74599D01* +X14375Y-74586D01* +X14366Y-74582D01* +X14362Y-74578D01* +Y-74857D01* +X13514D01* +Y-73049D01* +X13518Y-72963D01* +X13526Y-72881D01* +X13542Y-72807D01* +X13563Y-72737D01* +X13587Y-72672D01* +X13616Y-72614D01* +X13645Y-72561D01* +X13674Y-72516D01* +X13706Y-72475D01* +X13735Y-72442D01* +X13764Y-72409D01* +X13788Y-72385D01* +X13809Y-72368D01* +X13825Y-72356D01* +X13833Y-72348D01* +X13837Y-72344D01* +X13903Y-72303D01* +X13977Y-72270D01* +X14055Y-72237D01* +X14137Y-72213D01* +X14313Y-72172D01* +X14485Y-72147D01* +X14567Y-72139D01* +X14641Y-72131D01* +X14711Y-72127D01* +X14772Y-72122D01* +X14821Y-72118D01* +X15006D01* +X15113Y-72127D01* +D02* +G37* +G36* +X-20336Y-73525D02* +X-19282Y-74857D01* +X-20250D01* +X-20840Y-74058D01* +X-21414Y-74857D01* +X-22411D01* +X-21357Y-73504D01* +X-22398Y-72192D01* +X-21422D01* +X-20857Y-72979D01* +X-20291Y-72192D01* +X-19299D01* +X-20336Y-73525D01* +D02* +G37* +G36* +X-10127Y-74841D02* +X-9705Y-75833D01* +X-10627D01* +X-12111Y-72192D01* +X-11234D01* +X-10623Y-73918D01* +X-9988Y-72192D01* +X-9090D01* +X-10127Y-74841D01* +D02* +G37* +G36* +X6400Y-72114D02* +X6523Y-72127D01* +X6634Y-72147D01* +X6740Y-72172D01* +X6839Y-72200D01* +X6933Y-72233D01* +X7015Y-72266D01* +X7089Y-72303D01* +X7154Y-72340D01* +X7216Y-72373D01* +X7265Y-72405D01* +X7306Y-72434D01* +X7339Y-72459D01* +X7360Y-72479D01* +X7376Y-72491D01* +X7380Y-72496D01* +X7450Y-72569D01* +X7511Y-72651D01* +X7564Y-72733D01* +X7614Y-72819D01* +X7651Y-72910D01* +X7683Y-72996D01* +X7712Y-73082D01* +X7733Y-73164D01* +X7749Y-73242D01* +X7761Y-73311D01* +X7769Y-73377D01* +X7774Y-73430D01* +X7778Y-73475D01* +X7782Y-73512D01* +Y-73533D01* +Y-73541D01* +X7778Y-73664D01* +X7761Y-73779D01* +X7741Y-73885D01* +X7716Y-73984D01* +X7683Y-74074D01* +X7647Y-74160D01* +X7610Y-74238D01* +X7569Y-74308D01* +X7528Y-74369D01* +X7491Y-74423D01* +X7454Y-74468D01* +X7421Y-74505D01* +X7396Y-74533D01* +X7372Y-74554D01* +X7360Y-74566D01* +X7355Y-74570D01* +X7269Y-74632D01* +X7179Y-74689D01* +X7085Y-74734D01* +X6982Y-74775D01* +X6884Y-74812D01* +X6781Y-74841D01* +X6679Y-74861D01* +X6581Y-74882D01* +X6490Y-74898D01* +X6404Y-74906D01* +X6326Y-74914D01* +X6261Y-74923D01* +X6207D01* +X6166Y-74927D01* +X6129D01* +X6015Y-74923D01* +X5908Y-74919D01* +X5814Y-74910D01* +X5728Y-74898D01* +X5695Y-74894D01* +X5662Y-74890D01* +X5633Y-74886D01* +X5609Y-74882D01* +X5588Y-74878D01* +X5576D01* +X5568Y-74874D01* +X5564D01* +X5465Y-74853D01* +X5367Y-74828D01* +X5277Y-74800D01* +X5191Y-74771D01* +X5121Y-74746D01* +X5088Y-74738D01* +X5063Y-74730D01* +X5043Y-74722D01* +X5027Y-74714D01* +X5018Y-74709D01* +X5014D01* +Y-74021D01* +X5113D01* +X5170Y-74062D01* +X5236Y-74103D01* +X5301Y-74140D01* +X5367Y-74168D01* +X5424Y-74197D01* +X5469Y-74217D01* +X5486Y-74226D01* +X5498Y-74230D01* +X5506Y-74234D01* +X5510D01* +X5605Y-74267D01* +X5699Y-74291D01* +X5789Y-74308D01* +X5867Y-74320D01* +X5937Y-74328D01* +X5965D01* +X5990Y-74332D01* +X6113D01* +X6187Y-74324D01* +X6252Y-74316D01* +X6318Y-74308D01* +X6375Y-74295D01* +X6429Y-74279D01* +X6474Y-74267D01* +X6519Y-74250D01* +X6556Y-74234D01* +X6589Y-74222D01* +X6617Y-74205D01* +X6642Y-74193D01* +X6658Y-74185D01* +X6671Y-74177D01* +X6679Y-74168D01* +X6683D01* +X6720Y-74136D01* +X6757Y-74099D01* +X6786Y-74062D01* +X6810Y-74021D01* +X6851Y-73939D01* +X6880Y-73861D01* +X6900Y-73791D01* +X6904Y-73758D01* +X6913Y-73734D01* +Y-73709D01* +X6917Y-73693D01* +Y-73685D01* +Y-73680D01* +X4965D01* +Y-73385D01* +X4969Y-73274D01* +X4977Y-73168D01* +X4994Y-73070D01* +X5014Y-72979D01* +X5043Y-72893D01* +X5068Y-72815D01* +X5100Y-72746D01* +X5129Y-72684D01* +X5158Y-72627D01* +X5191Y-72578D01* +X5215Y-72536D01* +X5240Y-72504D01* +X5264Y-72475D01* +X5281Y-72459D01* +X5289Y-72446D01* +X5293Y-72442D01* +X5359Y-72385D01* +X5428Y-72332D01* +X5506Y-72286D01* +X5584Y-72250D01* +X5666Y-72217D01* +X5748Y-72192D01* +X5826Y-72167D01* +X5904Y-72151D01* +X5982Y-72139D01* +X6047Y-72127D01* +X6113Y-72118D01* +X6166Y-72114D01* +X6211D01* +X6244Y-72110D01* +X6273D01* +X6400Y-72114D01* +D02* +G37* +G36* +X849Y-72192D02* +X1201D01* +Y-72770D01* +X849D01* +Y-74021D01* +X845Y-74107D01* +X836Y-74189D01* +X828Y-74267D01* +X812Y-74332D01* +X791Y-74398D01* +X771Y-74451D01* +X750Y-74505D01* +X726Y-74550D01* +X705Y-74586D01* +X685Y-74619D01* +X664Y-74648D01* +X644Y-74669D01* +X627Y-74689D01* +X619Y-74701D01* +X611Y-74705D01* +X607Y-74709D01* +X558Y-74746D01* +X504Y-74775D01* +X447Y-74804D01* +X390Y-74824D01* +X267Y-74861D01* +X148Y-74886D01* +X90Y-74894D01* +X37Y-74898D01* +X-8Y-74902D01* +X-49Y-74906D01* +X-82Y-74910D01* +X-213D01* +X-287Y-74906D01* +X-348Y-74902D01* +X-406Y-74898D01* +X-447D01* +X-480Y-74894D01* +X-500Y-74890D01* +X-508D01* +X-566Y-74882D01* +X-619Y-74874D01* +X-672Y-74865D01* +X-713Y-74857D01* +X-750Y-74849D01* +X-779Y-74841D01* +X-795Y-74837D01* +X-804D01* +Y-74250D01* +X-730D01* +X-713Y-74259D01* +X-689Y-74271D01* +X-640Y-74287D01* +X-615Y-74291D01* +X-594Y-74300D01* +X-582Y-74304D01* +X-578D01* +X-541Y-74312D01* +X-508Y-74320D01* +X-476Y-74324D01* +X-451Y-74328D01* +X-430Y-74332D01* +X-406D01* +X-348Y-74328D01* +X-299Y-74324D01* +X-258Y-74316D01* +X-221Y-74308D01* +X-197Y-74300D01* +X-176Y-74295D01* +X-164Y-74287D01* +X-160D01* +X-131Y-74267D01* +X-107Y-74246D01* +X-86Y-74222D01* +X-74Y-74201D01* +X-62Y-74181D01* +X-53Y-74164D01* +X-45Y-74156D01* +Y-74152D01* +X-25Y-74086D01* +X-16Y-74029D01* +X-12Y-74004D01* +X-8Y-73984D01* +Y-73971D01* +Y-73967D01* +Y-73885D01* +Y-73844D01* +Y-73803D01* +Y-73771D01* +Y-73746D01* +Y-73725D01* +Y-73721D01* +Y-72770D01* +X-804D01* +Y-72192D01* +X-8D01* +Y-71430D01* +X849D01* +Y-72192D01* +D02* +G37* +G36* +X22411Y-74857D02* +X21500D01* +Y-73348D01* +X19996D01* +Y-72664D01* +X21500D01* +Y-72008D01* +X19877D01* +Y-71323D01* +X22411D01* +Y-74857D01* +D02* +G37* +G36* +X19299D02* +X18442D01* +Y-72192D01* +X19299D01* +Y-74857D01* +D02* +G37* +G36* +X17638D02* +X16781D01* +Y-71167D01* +X17638D01* +Y-74857D01* +D02* +G37* +G36* +X2698Y-72122D02* +X2784Y-72135D01* +X2866Y-72151D01* +X2936Y-72167D01* +X2993Y-72184D01* +X3034Y-72200D01* +X3050Y-72208D01* +X3063Y-72213D01* +X3067Y-72217D01* +X3071D01* +X3149Y-72254D01* +X3227Y-72299D01* +X3300Y-72344D01* +X3366Y-72389D01* +X3424Y-72426D01* +X3469Y-72459D01* +X3485Y-72471D01* +X3497Y-72479D01* +X3501Y-72483D01* +X3506Y-72487D01* +Y-72192D01* +X4362D01* +Y-74857D01* +X3506D01* +Y-72967D01* +X3452Y-72938D01* +X3407Y-72914D01* +X3362Y-72893D01* +X3325Y-72877D01* +X3292Y-72865D01* +X3268Y-72856D01* +X3251Y-72848D01* +X3247D01* +X3161Y-72824D01* +X3120Y-72815D01* +X3087Y-72811D01* +X3054Y-72807D01* +X2956D01* +X2903Y-72815D01* +X2862Y-72819D01* +X2825Y-72828D01* +X2796Y-72836D01* +X2776Y-72840D01* +X2763Y-72848D01* +X2759D01* +X2726Y-72865D01* +X2698Y-72885D01* +X2673Y-72905D01* +X2653Y-72930D01* +X2636Y-72947D01* +X2624Y-72963D01* +X2620Y-72975D01* +X2616Y-72979D01* +X2603Y-73012D01* +X2591Y-73045D01* +X2575Y-73123D01* +X2571Y-73160D01* +X2567Y-73188D01* +X2562Y-73205D01* +Y-73213D01* +X2550Y-73332D01* +X2546Y-73385D01* +Y-73434D01* +X2542Y-73475D01* +Y-73508D01* +Y-73529D01* +Y-73537D01* +Y-74857D01* +X1685D01* +Y-73123D01* +X1689Y-73033D01* +X1697Y-72947D01* +X1710Y-72869D01* +X1722Y-72795D01* +X1743Y-72725D01* +X1763Y-72664D01* +X1784Y-72610D01* +X1808Y-72561D01* +X1833Y-72516D01* +X1853Y-72479D01* +X1874Y-72446D01* +X1894Y-72418D01* +X1907Y-72397D01* +X1919Y-72385D01* +X1927Y-72377D01* +X1931Y-72373D01* +X1980Y-72327D01* +X2029Y-72290D01* +X2083Y-72254D01* +X2136Y-72225D01* +X2193Y-72200D01* +X2251Y-72180D01* +X2358Y-72151D01* +X2407Y-72139D01* +X2456Y-72131D01* +X2497Y-72127D01* +X2534Y-72122D01* +X2562Y-72118D01* +X2603D01* +X2698Y-72122D01* +D02* +G37* +G36* +X-3022Y-74857D02* +X-4264D01* +X-4416Y-74853D01* +X-4555Y-74849D01* +X-4621Y-74841D01* +X-4682Y-74837D01* +X-4735Y-74832D01* +X-4789Y-74824D01* +X-4834Y-74820D01* +X-4875Y-74816D01* +X-4908Y-74808D01* +X-4941Y-74804D01* +X-4961Y-74800D01* +X-4981D01* +X-4990Y-74796D01* +X-4994D01* +X-5109Y-74767D01* +X-5215Y-74734D01* +X-5310Y-74701D01* +X-5396Y-74664D01* +X-5432Y-74648D01* +X-5465Y-74632D01* +X-5494Y-74615D01* +X-5519Y-74603D01* +X-5539Y-74595D01* +X-5551Y-74586D01* +X-5560Y-74578D01* +X-5564D01* +X-5625Y-74537D01* +X-5687Y-74492D01* +X-5797Y-74398D01* +X-5896Y-74295D01* +X-5978Y-74201D01* +X-6015Y-74156D01* +X-6043Y-74115D01* +X-6072Y-74078D01* +X-6093Y-74045D01* +X-6109Y-74017D01* +X-6125Y-73996D01* +X-6129Y-73984D01* +X-6134Y-73980D01* +X-6175Y-73906D01* +X-6207Y-73828D01* +X-6240Y-73754D01* +X-6265Y-73676D01* +X-6306Y-73529D01* +X-6318Y-73459D01* +X-6330Y-73389D01* +X-6339Y-73328D01* +X-6347Y-73270D01* +X-6351Y-73221D01* +X-6355Y-73176D01* +X-6359Y-73143D01* +Y-73115D01* +Y-73098D01* +Y-73094D01* +X-6355Y-73000D01* +X-6351Y-72910D01* +X-6339Y-72824D01* +X-6326Y-72737D01* +X-6310Y-72659D01* +X-6294Y-72586D01* +X-6273Y-72520D01* +X-6252Y-72459D01* +X-6232Y-72401D01* +X-6211Y-72352D01* +X-6195Y-72307D01* +X-6179Y-72270D01* +X-6166Y-72241D01* +X-6154Y-72221D01* +X-6150Y-72208D01* +X-6146Y-72204D01* +X-6060Y-72069D01* +X-5970Y-71950D01* +X-5920Y-71897D01* +X-5871Y-71848D01* +X-5826Y-71803D01* +X-5781Y-71762D01* +X-5740Y-71725D01* +X-5699Y-71692D01* +X-5662Y-71667D01* +X-5633Y-71643D01* +X-5609Y-71626D01* +X-5588Y-71614D01* +X-5576Y-71606D01* +X-5572Y-71602D01* +X-5490Y-71557D01* +X-5400Y-71516D01* +X-5310Y-71479D01* +X-5227Y-71450D01* +X-5154Y-71425D01* +X-5121Y-71417D01* +X-5096Y-71409D01* +X-5072Y-71405D01* +X-5055Y-71401D01* +X-5047Y-71397D01* +X-5043D01* +X-4920Y-71372D01* +X-4797Y-71356D01* +X-4670Y-71339D01* +X-4555Y-71331D01* +X-4502Y-71327D01* +X-4412D01* +X-4375Y-71323D01* +X-3022D01* +Y-74857D01* +D02* +G37* +G36* +X-8667Y-72188D02* +X-8602Y-72196D01* +X-8536Y-72208D01* +X-8479Y-72225D01* +X-8426Y-72241D01* +X-8389Y-72254D01* +X-8372Y-72258D01* +X-8360Y-72262D01* +X-8356Y-72266D01* +X-8352D01* +X-8270Y-72303D01* +X-8188Y-72348D01* +X-8106Y-72401D01* +X-8028Y-72455D01* +X-7962Y-72504D01* +X-7933Y-72528D01* +X-7909Y-72545D01* +X-7892Y-72561D01* +X-7876Y-72573D01* +X-7868Y-72582D01* +X-7864Y-72586D01* +Y-72192D01* +X-7007D01* +Y-74857D01* +X-7864D01* +Y-73078D01* +X-7921Y-73057D01* +X-7979Y-73041D01* +X-8028Y-73024D01* +X-8073Y-73016D01* +X-8110Y-73008D01* +X-8139Y-73000D01* +X-8155Y-72996D01* +X-8163D01* +X-8274Y-72979D01* +X-8327Y-72975D01* +X-8376D01* +X-8417Y-72971D01* +X-8548D01* +X-8614Y-72975D01* +X-8643Y-72979D01* +X-8663D01* +X-8680Y-72983D01* +X-8684D01* +X-8725Y-72988D01* +X-8762Y-72992D01* +X-8794Y-72996D01* +X-8819Y-73000D01* +X-8835Y-73004D01* +X-8852D01* +X-8856Y-73008D01* +X-8938D01* +Y-72196D01* +X-8901Y-72192D01* +X-8868D01* +X-8844Y-72188D01* +X-8835D01* +X-8794Y-72184D01* +X-8733D01* +X-8667Y-72188D01* +D02* +G37* +G36* +X-12632Y-74857D02* +X-14174D01* +X-14309Y-74853D01* +X-14432Y-74845D01* +X-14489Y-74841D01* +X-14543Y-74837D01* +X-14588Y-74828D01* +X-14633Y-74824D01* +X-14670Y-74816D01* +X-14707Y-74812D01* +X-14735Y-74808D01* +X-14760Y-74800D01* +X-14781Y-74796D01* +X-14793D01* +X-14801Y-74792D01* +X-14805D01* +X-14895Y-74763D01* +X-14981Y-74730D01* +X-15059Y-74693D01* +X-15129Y-74656D01* +X-15186Y-74623D01* +X-15227Y-74595D01* +X-15244Y-74586D01* +X-15256Y-74578D01* +X-15260Y-74570D01* +X-15264D01* +X-15330Y-74517D01* +X-15383Y-74459D01* +X-15432Y-74406D01* +X-15473Y-74353D01* +X-15506Y-74304D01* +X-15527Y-74267D01* +X-15543Y-74242D01* +X-15547Y-74238D01* +Y-74234D01* +X-15584Y-74156D01* +X-15609Y-74078D01* +X-15629Y-74000D01* +X-15642Y-73931D01* +X-15650Y-73865D01* +Y-73840D01* +X-15654Y-73820D01* +Y-73799D01* +Y-73787D01* +Y-73779D01* +Y-73775D01* +X-15650Y-73709D01* +X-15646Y-73648D01* +X-15621Y-73537D01* +X-15588Y-73443D01* +X-15572Y-73397D01* +X-15551Y-73361D01* +X-15531Y-73324D01* +X-15514Y-73295D01* +X-15498Y-73270D01* +X-15482Y-73246D01* +X-15469Y-73229D01* +X-15457Y-73217D01* +X-15453Y-73213D01* +X-15449Y-73209D01* +X-15367Y-73135D01* +X-15281Y-73074D01* +X-15186Y-73024D01* +X-15100Y-72983D01* +X-15022Y-72955D01* +X-14990Y-72947D01* +X-14961Y-72934D01* +X-14936Y-72930D01* +X-14920Y-72926D01* +X-14908Y-72922D01* +X-14904D01* +Y-72901D01* +X-14990Y-72856D01* +X-15067Y-72807D01* +X-15133Y-72758D01* +X-15186Y-72709D01* +X-15227Y-72668D01* +X-15260Y-72631D01* +X-15277Y-72606D01* +X-15285Y-72602D01* +Y-72598D01* +X-15330Y-72520D01* +X-15363Y-72446D01* +X-15387Y-72368D01* +X-15404Y-72299D01* +X-15412Y-72237D01* +X-15416Y-72213D01* +X-15420Y-72188D01* +Y-72172D01* +Y-72159D01* +Y-72151D01* +Y-72147D01* +X-15416Y-72065D01* +X-15404Y-71991D01* +X-15387Y-71926D01* +X-15371Y-71868D01* +X-15350Y-71819D01* +X-15334Y-71782D01* +X-15322Y-71762D01* +X-15318Y-71753D01* +X-15277Y-71692D01* +X-15232Y-71639D01* +X-15178Y-71589D01* +X-15133Y-71552D01* +X-15088Y-71520D01* +X-15051Y-71499D01* +X-15026Y-71483D01* +X-15022Y-71479D01* +X-15018D01* +X-14944Y-71446D01* +X-14875Y-71417D01* +X-14809Y-71397D01* +X-14748Y-71376D01* +X-14698Y-71364D01* +X-14658Y-71356D01* +X-14633Y-71352D01* +X-14625D01* +X-14584Y-71347D01* +X-14543Y-71343D01* +X-14444Y-71335D01* +X-14342Y-71331D01* +X-14239Y-71327D01* +X-14190D01* +X-14145Y-71323D01* +X-12632D01* +Y-74857D01* +D02* +G37* +G36* +X-17425Y-72114D02* +X-17310Y-72127D01* +X-17195Y-72143D01* +X-17093Y-72167D01* +X-16999Y-72196D01* +X-16908Y-72229D01* +X-16830Y-72262D01* +X-16757Y-72299D01* +X-16691Y-72336D01* +X-16638Y-72368D01* +X-16589Y-72401D01* +X-16548Y-72430D01* +X-16519Y-72450D01* +X-16494Y-72471D01* +X-16482Y-72483D01* +X-16478Y-72487D01* +X-16408Y-72561D01* +X-16351Y-72639D01* +X-16297Y-72725D01* +X-16256Y-72807D01* +X-16220Y-72897D01* +X-16187Y-72983D01* +X-16162Y-73065D01* +X-16142Y-73147D01* +X-16125Y-73225D01* +X-16113Y-73299D01* +X-16105Y-73365D01* +X-16101Y-73418D01* +X-16097Y-73463D01* +X-16093Y-73500D01* +Y-73520D01* +Y-73529D01* +X-16097Y-73648D01* +X-16109Y-73762D01* +X-16129Y-73869D01* +X-16154Y-73967D01* +X-16183Y-74058D01* +X-16211Y-74144D01* +X-16248Y-74222D01* +X-16285Y-74291D01* +X-16318Y-74353D01* +X-16355Y-74406D01* +X-16384Y-74455D01* +X-16416Y-74492D01* +X-16437Y-74521D01* +X-16457Y-74546D01* +X-16470Y-74558D01* +X-16474Y-74562D01* +X-16548Y-74628D01* +X-16630Y-74685D01* +X-16716Y-74738D01* +X-16802Y-74779D01* +X-16892Y-74816D01* +X-16982Y-74849D01* +X-17072Y-74874D01* +X-17154Y-74890D01* +X-17236Y-74906D01* +X-17310Y-74919D01* +X-17380Y-74927D01* +X-17437Y-74935D01* +X-17487D01* +X-17523Y-74939D01* +X-17552D01* +X-17679Y-74935D01* +X-17798Y-74923D01* +X-17909Y-74902D01* +X-18011Y-74882D01* +X-18110Y-74853D01* +X-18196Y-74820D01* +X-18278Y-74787D01* +X-18348Y-74751D01* +X-18413Y-74714D01* +X-18471Y-74681D01* +X-18516Y-74648D01* +X-18557Y-74619D01* +X-18585Y-74595D01* +X-18610Y-74578D01* +X-18622Y-74566D01* +X-18626Y-74562D01* +X-18696Y-74488D01* +X-18753Y-74410D01* +X-18807Y-74328D01* +X-18848Y-74242D01* +X-18885Y-74156D01* +X-18917Y-74070D01* +X-18942Y-73984D01* +X-18962Y-73902D01* +X-18979Y-73828D01* +X-18991Y-73754D01* +X-18999Y-73693D01* +X-19008Y-73635D01* +Y-73590D01* +X-19012Y-73557D01* +Y-73537D01* +Y-73529D01* +X-19008Y-73410D01* +X-18995Y-73295D01* +X-18975Y-73188D01* +X-18954Y-73090D01* +X-18922Y-72996D01* +X-18893Y-72914D01* +X-18856Y-72836D01* +X-18823Y-72762D01* +X-18786Y-72701D01* +X-18749Y-72647D01* +X-18721Y-72598D01* +X-18692Y-72561D01* +X-18667Y-72532D01* +X-18647Y-72508D01* +X-18634Y-72496D01* +X-18630Y-72491D01* +X-18557Y-72426D01* +X-18475Y-72364D01* +X-18388Y-72315D01* +X-18302Y-72270D01* +X-18212Y-72233D01* +X-18122Y-72204D01* +X-18032Y-72180D01* +X-17950Y-72159D01* +X-17868Y-72143D01* +X-17794Y-72131D01* +X-17724Y-72122D01* +X-17667Y-72114D01* +X-17618D01* +X-17585Y-72110D01* +X-17552D01* +X-17425Y-72114D01* +D02* +G37* +G36* +X11708Y-84924D02* +X11826Y-84932D01* +X11937Y-84945D01* +X12036Y-84957D01* +X12081Y-84965D01* +X12117Y-84969D01* +X12154Y-84977D01* +X12183Y-84982D01* +X12208Y-84986D01* +X12224Y-84990D01* +X12236Y-84994D01* +X12241D01* +X12355Y-85022D01* +X12458Y-85047D01* +X12540Y-85072D01* +X12610Y-85096D01* +X12667Y-85113D01* +X12704Y-85129D01* +X12728Y-85137D01* +X12737Y-85141D01* +Y-85925D01* +X12663D01* +X12585Y-85875D01* +X12507Y-85830D01* +X12433Y-85789D01* +X12364Y-85756D01* +X12302Y-85732D01* +X12257Y-85711D01* +X12241Y-85703D01* +X12228Y-85699D01* +X12220Y-85695D01* +X12216D01* +X12126Y-85666D01* +X12044Y-85642D01* +X11966Y-85625D01* +X11896Y-85617D01* +X11839Y-85609D01* +X11794Y-85605D01* +X11757D01* +X11654Y-85609D01* +X11564Y-85625D01* +X11486Y-85646D01* +X11425Y-85670D01* +X11375Y-85699D01* +X11338Y-85720D01* +X11318Y-85736D01* +X11310Y-85740D01* +X11257Y-85793D01* +X11220Y-85855D01* +X11191Y-85916D01* +X11175Y-85974D01* +X11162Y-86031D01* +X11158Y-86072D01* +X11154Y-86089D01* +Y-86101D01* +Y-86109D01* +Y-86113D01* +X11158Y-86187D01* +X11175Y-86261D01* +X11191Y-86330D01* +X11216Y-86392D01* +X11236Y-86445D01* +X11257Y-86482D01* +X11265Y-86498D01* +X11273Y-86511D01* +X11277Y-86515D01* +Y-86519D01* +X11330Y-86597D01* +X11392Y-86679D01* +X11457Y-86761D01* +X11523Y-86839D01* +X11585Y-86904D01* +X11613Y-86933D01* +X11638Y-86958D01* +X11654Y-86974D01* +X11671Y-86990D01* +X11679Y-86999D01* +X11683Y-87003D01* +X11761Y-87077D01* +X11843Y-87150D01* +X11929Y-87228D01* +X12011Y-87298D01* +X12085Y-87359D01* +X12113Y-87384D01* +X12142Y-87405D01* +X12163Y-87425D01* +X12183Y-87437D01* +X12191Y-87446D01* +X12195Y-87450D01* +X12314Y-87544D01* +X12429Y-87634D01* +X12536Y-87716D01* +X12634Y-87790D01* +X12675Y-87823D01* +X12712Y-87852D01* +X12749Y-87876D01* +X12778Y-87897D01* +X12798Y-87913D01* +X12819Y-87925D01* +X12827Y-87933D01* +X12831Y-87938D01* +Y-88520D01* +X10059D01* +Y-87843D01* +X11646D01* +X11605Y-87815D01* +X11560Y-87778D01* +X11511Y-87741D01* +X11457Y-87704D01* +X11412Y-87667D01* +X11375Y-87638D01* +X11347Y-87622D01* +X11343Y-87614D01* +X11338D01* +X11257Y-87548D01* +X11179Y-87487D01* +X11105Y-87421D01* +X11039Y-87368D01* +X10982Y-87318D01* +X10941Y-87278D01* +X10925Y-87265D01* +X10912Y-87253D01* +X10908Y-87249D01* +X10904Y-87245D01* +X10842Y-87183D01* +X10781Y-87126D01* +X10728Y-87068D01* +X10678Y-87011D01* +X10592Y-86909D01* +X10519Y-86814D01* +X10490Y-86773D01* +X10461Y-86736D01* +X10441Y-86703D01* +X10424Y-86679D01* +X10408Y-86654D01* +X10400Y-86638D01* +X10391Y-86630D01* +Y-86626D01* +X10334Y-86511D01* +X10293Y-86400D01* +X10264Y-86289D01* +X10244Y-86195D01* +X10236Y-86150D01* +X10232Y-86109D01* +X10227Y-86076D01* +Y-86048D01* +X10223Y-86023D01* +Y-86006D01* +Y-85994D01* +Y-85990D01* +X10227Y-85896D01* +X10240Y-85810D01* +X10256Y-85728D01* +X10277Y-85650D01* +X10305Y-85580D01* +X10334Y-85514D01* +X10367Y-85457D01* +X10396Y-85404D01* +X10428Y-85355D01* +X10461Y-85314D01* +X10490Y-85281D01* +X10519Y-85252D01* +X10539Y-85228D01* +X10555Y-85211D01* +X10568Y-85203D01* +X10572Y-85199D01* +X10642Y-85150D01* +X10715Y-85109D01* +X10793Y-85068D01* +X10875Y-85039D01* +X10961Y-85010D01* +X11043Y-84990D01* +X11207Y-84953D01* +X11285Y-84945D01* +X11355Y-84936D01* +X11421Y-84928D01* +X11474Y-84924D01* +X11519Y-84920D01* +X11585D01* +X11708Y-84924D01* +D02* +G37* +G36* +X4803D02* +X4922Y-84932D01* +X5033Y-84945D01* +X5131Y-84957D01* +X5176Y-84965D01* +X5213Y-84969D01* +X5250Y-84977D01* +X5279Y-84982D01* +X5303Y-84986D01* +X5320Y-84990D01* +X5332Y-84994D01* +X5336D01* +X5451Y-85022D01* +X5553Y-85047D01* +X5635Y-85072D01* +X5705Y-85096D01* +X5763Y-85113D01* +X5799Y-85129D01* +X5824Y-85137D01* +X5832Y-85141D01* +Y-85925D01* +X5758D01* +X5681Y-85875D01* +X5603Y-85830D01* +X5529Y-85789D01* +X5459Y-85756D01* +X5398Y-85732D01* +X5353Y-85711D01* +X5336Y-85703D01* +X5324Y-85699D01* +X5316Y-85695D01* +X5311D01* +X5221Y-85666D01* +X5139Y-85642D01* +X5061Y-85625D01* +X4992Y-85617D01* +X4934Y-85609D01* +X4889Y-85605D01* +X4852D01* +X4750Y-85609D01* +X4660Y-85625D01* +X4582Y-85646D01* +X4520Y-85670D01* +X4471Y-85699D01* +X4434Y-85720D01* +X4414Y-85736D01* +X4405Y-85740D01* +X4352Y-85793D01* +X4315Y-85855D01* +X4287Y-85916D01* +X4270Y-85974D01* +X4258Y-86031D01* +X4254Y-86072D01* +X4250Y-86089D01* +Y-86101D01* +Y-86109D01* +Y-86113D01* +X4254Y-86187D01* +X4270Y-86261D01* +X4287Y-86330D01* +X4311Y-86392D01* +X4332Y-86445D01* +X4352Y-86482D01* +X4360Y-86498D01* +X4369Y-86511D01* +X4373Y-86515D01* +Y-86519D01* +X4426Y-86597D01* +X4487Y-86679D01* +X4553Y-86761D01* +X4619Y-86839D01* +X4680Y-86904D01* +X4709Y-86933D01* +X4733Y-86958D01* +X4750Y-86974D01* +X4766Y-86990D01* +X4775Y-86999D01* +X4778Y-87003D01* +X4857Y-87077D01* +X4939Y-87150D01* +X5024Y-87228D01* +X5107Y-87298D01* +X5180Y-87359D01* +X5209Y-87384D01* +X5238Y-87405D01* +X5258Y-87425D01* +X5279Y-87437D01* +X5287Y-87446D01* +X5291Y-87450D01* +X5410Y-87544D01* +X5525Y-87634D01* +X5631Y-87716D01* +X5730Y-87790D01* +X5771Y-87823D01* +X5808Y-87852D01* +X5845Y-87876D01* +X5873Y-87897D01* +X5894Y-87913D01* +X5914Y-87925D01* +X5922Y-87933D01* +X5927Y-87938D01* +Y-88520D01* +X3155D01* +Y-87843D01* +X4742D01* +X4701Y-87815D01* +X4656Y-87778D01* +X4606Y-87741D01* +X4553Y-87704D01* +X4508Y-87667D01* +X4471Y-87638D01* +X4442Y-87622D01* +X4438Y-87614D01* +X4434D01* +X4352Y-87548D01* +X4274Y-87487D01* +X4200Y-87421D01* +X4135Y-87368D01* +X4078Y-87318D01* +X4036Y-87278D01* +X4020Y-87265D01* +X4008Y-87253D01* +X4004Y-87249D01* +X3999Y-87245D01* +X3938Y-87183D01* +X3877Y-87126D01* +X3823Y-87068D01* +X3774Y-87011D01* +X3688Y-86909D01* +X3614Y-86814D01* +X3585Y-86773D01* +X3557Y-86736D01* +X3536Y-86703D01* +X3520Y-86679D01* +X3503Y-86654D01* +X3495Y-86638D01* +X3487Y-86630D01* +Y-86626D01* +X3430Y-86511D01* +X3389Y-86400D01* +X3360Y-86289D01* +X3339Y-86195D01* +X3331Y-86150D01* +X3327Y-86109D01* +X3323Y-86076D01* +Y-86048D01* +X3319Y-86023D01* +Y-86006D01* +Y-85994D01* +Y-85990D01* +X3323Y-85896D01* +X3335Y-85810D01* +X3352Y-85728D01* +X3372Y-85650D01* +X3401Y-85580D01* +X3430Y-85514D01* +X3462Y-85457D01* +X3491Y-85404D01* +X3524Y-85355D01* +X3557Y-85314D01* +X3585Y-85281D01* +X3614Y-85252D01* +X3635Y-85228D01* +X3651Y-85211D01* +X3663Y-85203D01* +X3667Y-85199D01* +X3737Y-85150D01* +X3811Y-85109D01* +X3889Y-85068D01* +X3971Y-85039D01* +X4057Y-85010D01* +X4139Y-84990D01* +X4303Y-84953D01* +X4381Y-84945D01* +X4451Y-84936D01* +X4516Y-84928D01* +X4569Y-84924D01* +X4614Y-84920D01* +X4680D01* +X4803Y-84924D01* +D02* +G37* +G36* +X-802Y-87294D02* +X-2610D01* +Y-86609D01* +X-802D01* +Y-87294D01* +D02* +G37* +G36* +X-11785Y-85785D02* +X-11675Y-85793D01* +X-11576Y-85806D01* +X-11490Y-85822D01* +X-11449Y-85830D01* +X-11417Y-85838D01* +X-11384Y-85843D01* +X-11359Y-85851D01* +X-11338Y-85855D01* +X-11322Y-85859D01* +X-11314Y-85863D01* +X-11310D01* +X-11207Y-85896D01* +X-11113Y-85933D01* +X-11027Y-85974D01* +X-10957Y-86015D01* +X-10896Y-86052D01* +X-10871Y-86068D01* +X-10851Y-86080D01* +X-10834Y-86093D01* +X-10822Y-86101D01* +X-10818Y-86109D01* +X-10814D01* +X-10736Y-86179D01* +X-10666Y-86252D01* +X-10605Y-86326D01* +X-10555Y-86400D01* +X-10514Y-86462D01* +X-10502Y-86486D01* +X-10490Y-86511D01* +X-10477Y-86531D01* +X-10469Y-86544D01* +X-10465Y-86552D01* +Y-86556D01* +X-10424Y-86663D01* +X-10396Y-86769D01* +X-10371Y-86880D01* +X-10359Y-86978D01* +X-10355Y-87023D01* +X-10350Y-87068D01* +X-10346Y-87105D01* +Y-87138D01* +X-10342Y-87163D01* +Y-87183D01* +Y-87195D01* +Y-87200D01* +X-10346Y-87327D01* +X-10359Y-87446D01* +X-10379Y-87552D01* +X-10387Y-87597D01* +X-10400Y-87642D01* +X-10412Y-87679D01* +X-10420Y-87716D01* +X-10432Y-87745D01* +X-10441Y-87770D01* +X-10445Y-87790D01* +X-10453Y-87806D01* +X-10457Y-87815D01* +Y-87819D01* +X-10506Y-87913D01* +X-10555Y-87999D01* +X-10613Y-88073D01* +X-10666Y-88134D01* +X-10711Y-88184D01* +X-10748Y-88221D01* +X-10777Y-88245D01* +X-10781Y-88249D01* +X-10785Y-88253D01* +X-10867Y-88315D01* +X-10953Y-88364D01* +X-11035Y-88409D01* +X-11117Y-88446D01* +X-11183Y-88471D01* +X-11212Y-88483D01* +X-11236Y-88491D01* +X-11257Y-88499D01* +X-11273Y-88503D01* +X-11281Y-88507D01* +X-11285D01* +X-11396Y-88536D01* +X-11507Y-88557D01* +X-11613Y-88569D01* +X-11712Y-88577D01* +X-11757Y-88581D01* +X-11794Y-88585D01* +X-11830D01* +X-11863Y-88590D01* +X-11921D01* +X-12019Y-88585D01* +X-12109Y-88581D01* +X-12191Y-88573D01* +X-12261Y-88561D01* +X-12323Y-88548D01* +X-12347Y-88544D01* +X-12368Y-88540D01* +X-12384Y-88536D01* +X-12396D01* +X-12400Y-88532D01* +X-12405D01* +X-12487Y-88512D01* +X-12564Y-88487D01* +X-12638Y-88462D01* +X-12700Y-88438D01* +X-12753Y-88417D01* +X-12794Y-88401D01* +X-12810Y-88393D01* +X-12823Y-88389D01* +X-12827Y-88384D01* +X-12831D01* +Y-87655D01* +X-12708D01* +X-12667Y-87696D01* +X-12630Y-87729D01* +X-12614Y-87741D01* +X-12606Y-87753D01* +X-12597Y-87757D01* +X-12593Y-87761D01* +X-12544Y-87798D01* +X-12499Y-87827D01* +X-12483Y-87843D01* +X-12466Y-87852D01* +X-12458Y-87856D01* +X-12454Y-87860D01* +X-12421Y-87876D01* +X-12384Y-87893D01* +X-12314Y-87921D01* +X-12282Y-87929D01* +X-12257Y-87938D01* +X-12241Y-87946D01* +X-12236D01* +X-12138Y-87966D01* +X-12089Y-87970D01* +X-12044Y-87975D01* +X-12007Y-87979D01* +X-11949D01* +X-11888Y-87975D01* +X-11826Y-87970D01* +X-11720Y-87946D01* +X-11626Y-87917D01* +X-11552Y-87880D01* +X-11519Y-87860D01* +X-11490Y-87843D01* +X-11466Y-87827D01* +X-11449Y-87810D01* +X-11433Y-87798D01* +X-11421Y-87790D01* +X-11417Y-87786D01* +X-11412Y-87782D01* +X-11380Y-87741D01* +X-11351Y-87700D01* +X-11306Y-87606D01* +X-11273Y-87511D01* +X-11253Y-87417D01* +X-11236Y-87331D01* +X-11232Y-87294D01* +Y-87261D01* +X-11228Y-87236D01* +Y-87216D01* +Y-87204D01* +Y-87200D01* +X-11232Y-87130D01* +X-11236Y-87068D01* +X-11257Y-86949D01* +X-11269Y-86896D01* +X-11285Y-86847D01* +X-11302Y-86806D01* +X-11318Y-86765D01* +X-11334Y-86728D01* +X-11351Y-86699D01* +X-11367Y-86671D01* +X-11380Y-86650D01* +X-11392Y-86630D01* +X-11400Y-86617D01* +X-11408Y-86613D01* +Y-86609D01* +X-11445Y-86572D01* +X-11482Y-86535D01* +X-11527Y-86507D01* +X-11568Y-86482D01* +X-11654Y-86445D01* +X-11740Y-86421D01* +X-11814Y-86404D01* +X-11847Y-86400D01* +X-11876Y-86396D01* +X-11900Y-86392D01* +X-11990D01* +X-12040Y-86396D01* +X-12089Y-86404D01* +X-12126Y-86408D01* +X-12158Y-86417D01* +X-12183Y-86425D01* +X-12200Y-86429D01* +X-12204D01* +X-12286Y-86458D01* +X-12323Y-86470D01* +X-12355Y-86482D01* +X-12380Y-86494D01* +X-12400Y-86507D01* +X-12413Y-86511D01* +X-12417Y-86515D01* +X-12487Y-86556D01* +X-12515Y-86572D01* +X-12540Y-86589D01* +X-12560Y-86605D01* +X-12577Y-86617D01* +X-12585Y-86621D01* +X-12589Y-86626D01* +X-12638Y-86667D01* +X-12675Y-86695D01* +X-12700Y-86716D01* +X-12704Y-86724D01* +X-12831D01* +Y-85998D01* +X-12753Y-85961D01* +X-12679Y-85933D01* +X-12606Y-85904D01* +X-12540Y-85883D01* +X-12483Y-85867D01* +X-12442Y-85855D01* +X-12425Y-85847D01* +X-12413D01* +X-12405Y-85843D01* +X-12400D01* +X-12314Y-85822D01* +X-12224Y-85806D01* +X-12142Y-85797D01* +X-12064Y-85789D01* +X-11994Y-85785D01* +X-11966Y-85781D01* +X-11896D01* +X-11785Y-85785D01* +D02* +G37* +G36* +X-8497Y-85777D02* +X-8374Y-85789D01* +X-8264Y-85810D01* +X-8157Y-85834D01* +X-8059Y-85863D01* +X-7964Y-85896D01* +X-7882Y-85929D01* +X-7808Y-85966D01* +X-7743Y-86002D01* +X-7681Y-86035D01* +X-7632Y-86068D01* +X-7591Y-86097D01* +X-7558Y-86121D01* +X-7538Y-86142D01* +X-7521Y-86154D01* +X-7517Y-86158D01* +X-7448Y-86232D01* +X-7386Y-86314D01* +X-7333Y-86396D01* +X-7284Y-86482D01* +X-7247Y-86572D01* +X-7214Y-86658D01* +X-7185Y-86744D01* +X-7165Y-86826D01* +X-7148Y-86904D01* +X-7136Y-86974D01* +X-7128Y-87040D01* +X-7124Y-87093D01* +X-7120Y-87138D01* +X-7116Y-87175D01* +Y-87195D01* +Y-87204D01* +X-7120Y-87327D01* +X-7136Y-87441D01* +X-7157Y-87548D01* +X-7181Y-87647D01* +X-7214Y-87737D01* +X-7251Y-87823D01* +X-7288Y-87901D01* +X-7329Y-87970D01* +X-7370Y-88032D01* +X-7407Y-88085D01* +X-7444Y-88130D01* +X-7476Y-88167D01* +X-7501Y-88196D01* +X-7525Y-88216D01* +X-7538Y-88229D01* +X-7542Y-88233D01* +X-7628Y-88294D01* +X-7718Y-88352D01* +X-7813Y-88397D01* +X-7915Y-88438D01* +X-8014Y-88475D01* +X-8116Y-88503D01* +X-8218Y-88524D01* +X-8317Y-88544D01* +X-8407Y-88561D01* +X-8493Y-88569D01* +X-8571Y-88577D01* +X-8637Y-88585D01* +X-8690D01* +X-8731Y-88590D01* +X-8768D01* +X-8883Y-88585D01* +X-8989Y-88581D01* +X-9083Y-88573D01* +X-9170Y-88561D01* +X-9202Y-88557D01* +X-9235Y-88553D01* +X-9264Y-88548D01* +X-9289Y-88544D01* +X-9309Y-88540D01* +X-9321D01* +X-9330Y-88536D01* +X-9334D01* +X-9432Y-88516D01* +X-9531Y-88491D01* +X-9621Y-88462D01* +X-9707Y-88434D01* +X-9776Y-88409D01* +X-9809Y-88401D01* +X-9834Y-88393D01* +X-9854Y-88384D01* +X-9871Y-88376D01* +X-9879Y-88372D01* +X-9883D01* +Y-87683D01* +X-9785D01* +X-9727Y-87724D01* +X-9662Y-87765D01* +X-9596Y-87802D01* +X-9531Y-87831D01* +X-9473Y-87860D01* +X-9428Y-87880D01* +X-9411Y-87888D01* +X-9399Y-87893D01* +X-9391Y-87897D01* +X-9387D01* +X-9293Y-87929D01* +X-9198Y-87954D01* +X-9108Y-87970D01* +X-9030Y-87983D01* +X-8961Y-87991D01* +X-8932D01* +X-8907Y-87995D01* +X-8784D01* +X-8710Y-87987D01* +X-8645Y-87979D01* +X-8579Y-87970D01* +X-8522Y-87958D01* +X-8469Y-87942D01* +X-8423Y-87929D01* +X-8378Y-87913D01* +X-8342Y-87897D01* +X-8309Y-87884D01* +X-8280Y-87868D01* +X-8255Y-87856D01* +X-8239Y-87847D01* +X-8227Y-87839D01* +X-8218Y-87831D01* +X-8214D01* +X-8178Y-87798D01* +X-8141Y-87761D01* +X-8112Y-87724D01* +X-8087Y-87683D01* +X-8046Y-87601D01* +X-8017Y-87524D01* +X-7997Y-87454D01* +X-7993Y-87421D01* +X-7985Y-87396D01* +Y-87372D01* +X-7981Y-87355D01* +Y-87347D01* +Y-87343D01* +X-9932D01* +Y-87048D01* +X-9928Y-86937D01* +X-9920Y-86831D01* +X-9904Y-86732D01* +X-9883Y-86642D01* +X-9854Y-86556D01* +X-9830Y-86478D01* +X-9797Y-86408D01* +X-9768Y-86347D01* +X-9740Y-86289D01* +X-9707Y-86240D01* +X-9682Y-86199D01* +X-9658Y-86166D01* +X-9633Y-86138D01* +X-9617Y-86121D01* +X-9608Y-86109D01* +X-9604Y-86105D01* +X-9539Y-86048D01* +X-9469Y-85994D01* +X-9391Y-85949D01* +X-9313Y-85912D01* +X-9231Y-85879D01* +X-9149Y-85855D01* +X-9071Y-85830D01* +X-8993Y-85814D01* +X-8915Y-85802D01* +X-8850Y-85789D01* +X-8784Y-85781D01* +X-8731Y-85777D01* +X-8686D01* +X-8653Y-85773D01* +X-8624D01* +X-8497Y-85777D01* +D02* +G37* +G36* +X1441Y-85031D02* +X1453Y-85076D01* +X1466Y-85117D01* +X1478Y-85150D01* +X1490Y-85178D01* +X1499Y-85199D01* +X1507Y-85211D01* +X1511Y-85215D01* +X1535Y-85248D01* +X1564Y-85281D01* +X1597Y-85305D01* +X1626Y-85330D01* +X1654Y-85346D01* +X1675Y-85359D01* +X1691Y-85367D01* +X1695Y-85371D01* +X1736Y-85387D01* +X1781Y-85404D01* +X1822Y-85416D01* +X1863Y-85424D01* +X1900Y-85432D01* +X1929Y-85437D01* +X1949Y-85441D01* +X1958D01* +X2073Y-85449D01* +X2130Y-85453D01* +X2179D01* +X2220Y-85457D01* +X2282D01* +Y-86035D01* +X1535D01* +Y-87905D01* +X2282D01* +Y-88520D01* +X-80D01* +Y-87905D01* +X650D01* +Y-84977D01* +X1437D01* +X1441Y-85031D01* +D02* +G37* +G36* +X-3323Y-88520D02* +X-4565D01* +X-4717Y-88516D01* +X-4857Y-88512D01* +X-4922Y-88503D01* +X-4984Y-88499D01* +X-5037Y-88495D01* +X-5090Y-88487D01* +X-5135Y-88483D01* +X-5176Y-88479D01* +X-5209Y-88471D01* +X-5242Y-88467D01* +X-5262Y-88462D01* +X-5283D01* +X-5291Y-88458D01* +X-5295D01* +X-5410Y-88430D01* +X-5517Y-88397D01* +X-5611Y-88364D01* +X-5697Y-88327D01* +X-5734Y-88311D01* +X-5767Y-88294D01* +X-5795Y-88278D01* +X-5820Y-88266D01* +X-5840Y-88257D01* +X-5853Y-88249D01* +X-5861Y-88241D01* +X-5865D01* +X-5927Y-88200D01* +X-5988Y-88155D01* +X-6099Y-88061D01* +X-6197Y-87958D01* +X-6279Y-87864D01* +X-6316Y-87819D01* +X-6345Y-87778D01* +X-6373Y-87741D01* +X-6394Y-87708D01* +X-6410Y-87679D01* +X-6427Y-87659D01* +X-6431Y-87647D01* +X-6435Y-87642D01* +X-6476Y-87569D01* +X-6509Y-87491D01* +X-6542Y-87417D01* +X-6566Y-87339D01* +X-6607Y-87191D01* +X-6620Y-87122D01* +X-6632Y-87052D01* +X-6640Y-86990D01* +X-6648Y-86933D01* +X-6652Y-86884D01* +X-6656Y-86839D01* +X-6661Y-86806D01* +Y-86777D01* +Y-86761D01* +Y-86757D01* +X-6656Y-86663D01* +X-6652Y-86572D01* +X-6640Y-86486D01* +X-6628Y-86400D01* +X-6611Y-86322D01* +X-6595Y-86248D01* +X-6574Y-86183D01* +X-6554Y-86121D01* +X-6533Y-86064D01* +X-6513Y-86015D01* +X-6497Y-85970D01* +X-6480Y-85933D01* +X-6468Y-85904D01* +X-6455Y-85883D01* +X-6451Y-85871D01* +X-6447Y-85867D01* +X-6361Y-85732D01* +X-6271Y-85613D01* +X-6222Y-85560D01* +X-6173Y-85510D01* +X-6128Y-85465D01* +X-6082Y-85424D01* +X-6041Y-85387D01* +X-6000Y-85355D01* +X-5963Y-85330D01* +X-5935Y-85305D01* +X-5910Y-85289D01* +X-5890Y-85277D01* +X-5877Y-85268D01* +X-5873Y-85264D01* +X-5791Y-85219D01* +X-5701Y-85178D01* +X-5611Y-85141D01* +X-5529Y-85113D01* +X-5455Y-85088D01* +X-5422Y-85080D01* +X-5398Y-85072D01* +X-5373Y-85068D01* +X-5357Y-85063D01* +X-5348Y-85059D01* +X-5344D01* +X-5221Y-85035D01* +X-5098Y-85018D01* +X-4971Y-85002D01* +X-4857Y-84994D01* +X-4803Y-84990D01* +X-4713D01* +X-4676Y-84986D01* +X-3323D01* +Y-88520D01* +D02* +G37* +G36* +X8231Y-84916D02* +X8362Y-84928D01* +X8477Y-84949D01* +X8526Y-84961D01* +X8575Y-84969D01* +X8616Y-84982D01* +X8653Y-84994D01* +X8686Y-85002D01* +X8715Y-85010D01* +X8735Y-85018D01* +X8751Y-85027D01* +X8760Y-85031D01* +X8764D01* +X8862Y-85080D01* +X8952Y-85133D01* +X9030Y-85191D01* +X9092Y-85248D01* +X9145Y-85297D01* +X9182Y-85342D01* +X9198Y-85359D01* +X9207Y-85367D01* +X9211Y-85375D01* +X9215Y-85379D01* +X9276Y-85469D01* +X9330Y-85568D01* +X9375Y-85662D01* +X9411Y-85752D01* +X9436Y-85834D01* +X9448Y-85867D01* +X9457Y-85896D01* +X9465Y-85920D01* +X9469Y-85937D01* +X9473Y-85949D01* +Y-85953D01* +X9498Y-86084D01* +X9518Y-86220D01* +X9531Y-86355D01* +X9543Y-86482D01* +Y-86535D01* +X9547Y-86589D01* +Y-86634D01* +X9551Y-86675D01* +Y-86708D01* +Y-86732D01* +Y-86749D01* +Y-86753D01* +X9547Y-86917D01* +X9539Y-87064D01* +X9535Y-87134D01* +X9526Y-87200D01* +X9518Y-87261D01* +X9510Y-87318D01* +X9506Y-87368D01* +X9498Y-87413D01* +X9489Y-87454D01* +X9485Y-87487D01* +X9481Y-87511D01* +X9477Y-87532D01* +X9473Y-87544D01* +Y-87548D01* +X9440Y-87671D01* +X9399Y-87782D01* +X9358Y-87880D01* +X9317Y-87966D01* +X9301Y-88003D01* +X9280Y-88036D01* +X9264Y-88061D01* +X9252Y-88085D01* +X9239Y-88102D01* +X9231Y-88114D01* +X9223Y-88122D01* +Y-88126D01* +X9153Y-88208D01* +X9075Y-88278D01* +X9002Y-88339D01* +X8928Y-88389D01* +X8866Y-88430D01* +X8838Y-88446D01* +X8813Y-88458D01* +X8797Y-88467D01* +X8780Y-88475D01* +X8772Y-88479D01* +X8768D01* +X8657Y-88516D01* +X8542Y-88544D01* +X8432Y-88565D01* +X8325Y-88577D01* +X8276Y-88585D01* +X8231D01* +X8194Y-88590D01* +X8157Y-88594D01* +X8091D01* +X7948Y-88590D01* +X7817Y-88577D01* +X7755Y-88565D01* +X7702Y-88557D01* +X7649Y-88548D01* +X7603Y-88536D01* +X7558Y-88524D01* +X7521Y-88516D01* +X7489Y-88503D01* +X7464Y-88495D01* +X7444Y-88491D01* +X7427Y-88483D01* +X7419Y-88479D01* +X7415D01* +X7316Y-88430D01* +X7230Y-88372D01* +X7153Y-88315D01* +X7087Y-88261D01* +X7034Y-88208D01* +X6997Y-88167D01* +X6980Y-88151D01* +X6972Y-88139D01* +X6964Y-88134D01* +Y-88130D01* +X6906Y-88040D01* +X6853Y-87946D01* +X6812Y-87847D01* +X6775Y-87757D01* +X6747Y-87675D01* +X6738Y-87642D01* +X6730Y-87610D01* +X6722Y-87585D01* +X6718Y-87569D01* +X6714Y-87556D01* +Y-87552D01* +X6685Y-87417D01* +X6664Y-87278D01* +X6652Y-87142D01* +X6648Y-87081D01* +X6640Y-87019D01* +Y-86966D01* +X6636Y-86913D01* +Y-86867D01* +X6632Y-86826D01* +Y-86798D01* +Y-86773D01* +Y-86757D01* +Y-86753D01* +X6636Y-86589D01* +X6644Y-86441D01* +X6652Y-86371D01* +X6656Y-86306D01* +X6664Y-86248D01* +X6673Y-86191D01* +X6681Y-86142D01* +X6689Y-86097D01* +X6693Y-86060D01* +X6701Y-86027D01* +X6706Y-85998D01* +X6710Y-85982D01* +X6714Y-85970D01* +Y-85966D01* +X6747Y-85843D01* +X6788Y-85732D01* +X6829Y-85633D01* +X6870Y-85551D01* +X6886Y-85514D01* +X6906Y-85482D01* +X6923Y-85457D01* +X6935Y-85432D01* +X6948Y-85416D01* +X6956Y-85404D01* +X6960Y-85396D01* +X6964Y-85391D01* +X7034Y-85309D01* +X7107Y-85236D01* +X7185Y-85174D01* +X7255Y-85125D01* +X7321Y-85084D01* +X7345Y-85068D01* +X7370Y-85055D01* +X7390Y-85047D01* +X7402Y-85039D01* +X7411Y-85035D01* +X7415D01* +X7521Y-84994D01* +X7636Y-84965D01* +X7751Y-84940D01* +X7858Y-84928D01* +X7903Y-84920D01* +X7948D01* +X7989Y-84916D01* +X8026Y-84912D01* +X8091D01* +X8231Y-84916D01* +D02* +G37* +%LPC*% +G36* +X31231Y63453D02* +X28371D01* +Y63215D01* +X27656D01* +Y62977D01* +X27180D01* +Y62738D01* +X26703D01* +Y62500D01* +X26465D01* +Y62262D01* +X26227D01* +Y62023D01* +X25750D01* +Y61547D01* +X25512D01* +Y61309D01* +X25273D01* +Y61070D01* +X25035D01* +Y60594D01* +X24797D01* +Y60117D01* +X24559D01* +Y59402D01* +X24320D01* +Y57258D01* +Y57020D01* +Y56543D01* +X24559D01* +Y55828D01* +X24797D01* +Y55352D01* +X25035D01* +Y54875D01* +X25273D01* +Y54637D01* +X25512D01* +Y54398D01* +X25750D01* +Y54160D01* +X25988D01* +Y53922D01* +X26227D01* +Y53684D01* +X26465D01* +Y53445D01* +X26941D01* +Y53207D01* +X27180D01* +Y52969D01* +X27894D01* +Y52731D01* +X28609D01* +Y52492D01* +X30992D01* +Y52731D01* +X31707D01* +Y52969D01* +X32422D01* +Y53207D01* +X32660D01* +Y53445D01* +X33137D01* +Y53684D01* +X33375D01* +Y53922D01* +X33613D01* +Y54160D01* +X33852D01* +Y54398D01* +X34090D01* +Y54637D01* +X34328D01* +Y55113D01* +X34566D01* +Y55352D01* +X34805D01* +Y55828D01* +X35043D01* +Y56543D01* +X35281D01* +Y59402D01* +X35043D01* +Y60117D01* +X34805D01* +Y60594D01* +X34566D01* +Y61070D01* +X34328D01* +Y61309D01* +X34090D01* +Y61547D01* +X33852D01* +Y61785D01* +X33613D01* +Y62023D01* +X33375D01* +Y62262D01* +X33137D01* +Y62500D01* +X32898D01* +Y62738D01* +X32422D01* +Y62977D01* +X31945D01* +Y63215D01* +X31231D01* +Y63453D01* +D02* +G37* +G36* +X43383Y43199D02* +X-5465D01* +Y35098D01* +X4543D01* +Y34859D01* +X5020D01* +Y34621D01* +X5258D01* +Y34383D01* +X5496D01* +Y33668D01* +X5734D01* +Y28188D01* +X46242D01* +Y40340D01* +X46004D01* +Y40578D01* +X45766D01* +Y40816D01* +X45527D01* +Y41055D01* +X45289D01* +Y41293D01* +X45051D01* +Y41531D01* +X44813D01* +Y41769D01* +X44574D01* +Y42008D01* +X44336D01* +Y42246D01* +X44098D01* +Y42484D01* +X43859D01* +Y42723D01* +X43621D01* +Y42961D01* +X43383D01* +Y43199D01* +D02* +G37* +G36* +X-9039D02* +X-42875D01* +Y42961D01* +X-43113D01* +Y42723D01* +X-43352D01* +Y42484D01* +X-43590D01* +Y42246D01* +X-43828D01* +Y42008D01* +X-44066D01* +Y41769D01* +X-44305D01* +Y41531D01* +X-44543D01* +Y41293D01* +X-44781D01* +Y41055D01* +X-45020D01* +Y40816D01* +X-45258D01* +Y40578D01* +X-45496D01* +Y40340D01* +X-45734D01* +Y28188D01* +X-20238D01* +Y28426D01* +Y33906D01* +X-20000D01* +Y34383D01* +X-19762D01* +Y34621D01* +X-19523D01* +Y34859D01* +X-19047D01* +Y35098D01* +X-9039D01* +Y43199D01* +D02* +G37* +G36* +X2160Y31523D02* +X-16664D01* +Y21039D01* +X2160D01* +Y29379D01* +Y29617D01* +Y31523D01* +D02* +G37* +G36* +X-3082Y17465D02* +X-11422D01* +Y16750D01* +X-11184D01* +Y16035D01* +X-10945D01* +Y15320D01* +X-10707D01* +Y14605D01* +X-10469D01* +Y14129D01* +X-4035D01* +Y14605D01* +X-3797D01* +Y15320D01* +X-3559D01* +Y16035D01* +X-3320D01* +Y16750D01* +X-3082D01* +Y17465D01* +D02* +G37* +G36* +X-20238Y24613D02* +X-25957D01* +Y24375D01* +X-26434D01* +Y24137D01* +X-26910D01* +Y23898D01* +X-27387D01* +Y23660D01* +X-27863D01* +Y23422D01* +X-28340D01* +Y23184D01* +X-28578D01* +Y22945D01* +X-29055D01* +Y22707D01* +X-29531D01* +Y22469D01* +X-29770D01* +Y22230D01* +X-30246D01* +Y21992D01* +X-30484D01* +Y21754D01* +X-30723D01* +Y21516D01* +X-31199D01* +Y21277D01* +X-31438D01* +Y21039D01* +X-31676D01* +Y20801D01* +X-31914D01* +Y20562D01* +X-32152D01* +Y20324D01* +X-32391D01* +Y20086D01* +X-32629D01* +Y19848D01* +X-32867D01* +Y19609D01* +X-33105D01* +Y19371D01* +X-33344D01* +Y18894D01* +X-33582D01* +Y18418D01* +X-33820D01* +Y16988D01* +X-33582D01* +Y16512D01* +X-33344D01* +Y16273D01* +X-33105D01* +Y15797D01* +X-32629D01* +Y15559D01* +X-31199D01* +Y15797D01* +X-30484D01* +Y16035D01* +X-29770D01* +Y16273D01* +X-29055D01* +Y16512D01* +X-28340D01* +Y16750D01* +X-27148D01* +Y16988D01* +X-24289D01* +Y16750D01* +X-23574D01* +Y16512D01* +X-22859D01* +Y16273D01* +X-22621D01* +Y16035D01* +X-22144D01* +Y15797D01* +X-21906D01* +Y15559D01* +X-21430D01* +Y15320D01* +X-21191D01* +Y15082D01* +X-20715D01* +Y14844D01* +X-20238D01* +Y14605D01* +X-19762D01* +Y14367D01* +X-19285D01* +Y14129D01* +X-16664D01* +Y14367D01* +X-16187D01* +Y14605D01* +X-15949D01* +Y14844D01* +X-15711D01* +Y15082D01* +X-15473D01* +Y15320D01* +X-15234D01* +Y15559D01* +X-14996D01* +Y16273D01* +Y16512D01* +Y16750D01* +X-15234D01* +Y17465D01* +X-18809D01* +Y17703D01* +X-19285D01* +Y17941D01* +X-19762D01* +Y18418D01* +X-20000D01* +Y18894D01* +X-20238D01* +Y24613D01* +D02* +G37* +G36* +X-1891Y-9699D02* +X-3320D01* +Y-9938D01* +X-3559D01* +Y-10176D01* +X-3797D01* +Y-10414D01* +X-4035D01* +Y-10652D01* +X-4273D01* +Y-10891D01* +X-4512D01* +Y-11129D01* +X-4988D01* +Y-11367D01* +X-5227D01* +Y-11605D01* +X-5465D01* +Y-11844D01* +X-5703D01* +Y-12082D01* +X-5941D01* +Y-12320D01* +X-6180D01* +Y-12559D01* +X-6418D01* +Y-12797D01* +X-6894D01* +Y-13035D01* +X-7133D01* +Y-13273D01* +X-7371D01* +Y-13512D01* +X-7609D01* +Y-13750D01* +X-7848D01* +Y-13988D01* +X-8086D01* +Y-14227D01* +X-8324D01* +Y-14465D01* +X-8801D01* +Y-14703D01* +X-9039D01* +Y-14941D01* +X-9277D01* +Y-15180D01* +X-9516D01* +Y-15418D01* +X-9754D01* +Y-15656D01* +X-9992D01* +Y-20660D01* +X10500D01* +Y-15418D01* +X10262D01* +Y-15180D01* +X10023D01* +Y-14703D01* +X9785D01* +Y-14465D01* +X9547D01* +Y-14227D01* +X9309D01* +Y-13750D01* +X9070D01* +Y-13512D01* +X8832D01* +Y-13035D01* +X8594D01* +Y-12797D01* +X8355D01* +Y-12559D01* +X8117D01* +Y-12082D01* +X7402D01* +Y-11844D01* +X6211D01* +Y-11605D01* +X5258D01* +Y-11367D01* +X4305D01* +Y-11129D01* +X3113D01* +Y-10891D01* +X2160D01* +Y-10652D01* +X1207D01* +Y-10414D01* +X16D01* +Y-10176D01* +X-938D01* +Y-9938D01* +X-1891D01* +Y-9699D01* +D02* +G37* +G36* +X20031Y-24234D02* +X-19523D01* +Y-27570D01* +X20031D01* +Y-24234D01* +D02* +G37* +G36* +X-573Y-48006D02* +X-1273D01* +Y-48180D01* +X-1448D01* +Y-48355D01* +X-1798D01* +Y-48530D01* +X-2148D01* +Y-48705D01* +X-2323D01* +Y-48880D01* +X-2673D01* +Y-49055D01* +X-3023D01* +Y-49230D01* +X-3373D01* +Y-49405D01* +X-3547D01* +Y-49580D01* +X-3897D01* +Y-49755D01* +X-4247D01* +Y-49930D01* +X-4422D01* +Y-50105D01* +X-4772D01* +Y-50280D01* +X-5122D01* +Y-50455D01* +X-5472D01* +Y-50630D01* +Y-50805D01* +Y-50980D01* +Y-51155D01* +Y-51329D01* +Y-51504D01* +Y-51679D01* +Y-51854D01* +Y-52029D01* +Y-52204D01* +Y-52379D01* +Y-52554D01* +Y-52729D01* +X-5297D01* +Y-52554D01* +X-4947D01* +Y-52379D01* +X-4597D01* +Y-52204D01* +X-4422D01* +Y-52029D01* +X-4072D01* +Y-51854D01* +X-3722D01* +Y-51679D01* +X-3373D01* +Y-51504D01* +X-3198D01* +Y-51329D01* +X-2848D01* +Y-51155D01* +X-2498D01* +Y-50980D01* +X-2323D01* +Y-50805D01* +X-1973D01* +Y-50630D01* +X-1623D01* +Y-50455D01* +X-1273D01* +Y-50280D01* +X-1098D01* +Y-50105D01* +X-573D01* +Y-50280D01* +X-398D01* +Y-50455D01* +X-49D01* +Y-50630D01* +X301D01* +Y-50805D01* +X476D01* +Y-50980D01* +X826D01* +Y-51155D01* +X1176D01* +Y-51329D01* +X1526D01* +Y-51504D01* +X1701D01* +Y-51679D01* +X2051D01* +Y-51854D01* +X2401D01* +Y-52029D01* +X2751D01* +Y-52204D01* +X2926D01* +Y-52379D01* +X3275D01* +Y-52554D01* +X3625D01* +Y-52729D01* +X3800D01* +Y-52554D01* +Y-52379D01* +Y-52204D01* +Y-52029D01* +Y-51854D01* +Y-51679D01* +Y-51504D01* +Y-51329D01* +Y-51155D01* +Y-50980D01* +Y-50805D01* +Y-50630D01* +X3625D01* +Y-50455D01* +X3450D01* +Y-50280D01* +X3101D01* +Y-50105D01* +X2751D01* +Y-49930D01* +X2576D01* +Y-49755D01* +X2226D01* +Y-49580D01* +X1876D01* +Y-49405D01* +X1526D01* +Y-49230D01* +X1351D01* +Y-49055D01* +X1001D01* +Y-48880D01* +X651D01* +Y-48705D01* +X301D01* +Y-48530D01* +X126D01* +Y-48355D01* +X-224D01* +Y-48180D01* +X-573D01* +Y-48006D01* +D02* +G37* +G36* +Y-52729D02* +X-1098D01* +Y-52904D01* +X-1448D01* +Y-53079D01* +X-1623D01* +Y-53254D01* +X-1973D01* +Y-53429D01* +X-2323D01* +Y-53604D01* +X-2673D01* +Y-53779D01* +X-2848D01* +Y-53954D01* +X-3198D01* +Y-54129D01* +X-3547D01* +Y-54303D01* +X-3722D01* +Y-54479D01* +X-4072D01* +Y-54653D01* +X-4422D01* +Y-54828D01* +X-4772D01* +Y-55003D01* +X-4947D01* +Y-55178D01* +X-5297D01* +Y-55353D01* +X-5472D01* +Y-55528D01* +Y-55703D01* +Y-55878D01* +Y-56053D01* +Y-56228D01* +Y-56403D01* +Y-56578D01* +Y-56753D01* +Y-56928D01* +Y-57103D01* +Y-57278D01* +Y-57452D01* +Y-57627D01* +Y-57802D01* +X-5122D01* +Y-57627D01* +X-4772D01* +Y-57452D01* +X-4597D01* +Y-57278D01* +X-4247D01* +Y-57103D01* +X-3897D01* +Y-56928D01* +X-3547D01* +Y-56753D01* +X-3373D01* +Y-56578D01* +X-3023D01* +Y-56403D01* +X-2673D01* +Y-56228D01* +X-2498D01* +Y-56053D01* +X-2148D01* +Y-55878D01* +X-1798D01* +Y-55703D01* +X-1448D01* +Y-55528D01* +X-1273D01* +Y-55353D01* +X-923D01* +Y-55178D01* +X-748D01* +Y-55353D01* +X-398D01* +Y-55528D01* +X-49D01* +Y-55703D01* +X301D01* +Y-55878D01* +Y-56053D01* +X126D01* +Y-56228D01* +X-224D01* +Y-56403D01* +X-573D01* +Y-56578D01* +X-748D01* +Y-56753D01* +X-1098D01* +Y-56928D01* +X-1448D01* +Y-57103D01* +X-1798D01* +Y-57278D01* +X-1973D01* +Y-57452D01* +X-2323D01* +Y-57627D01* +X-2673D01* +Y-57802D01* +X-3023D01* +Y-57977D01* +X-3198D01* +Y-58152D01* +X-3547D01* +Y-58327D01* +X-3897D01* +Y-58502D01* +X-4072D01* +Y-58677D01* +X-4422D01* +Y-58852D01* +X-4772D01* +Y-59027D01* +X-5122D01* +Y-59202D01* +X-5297D01* +Y-59377D01* +X-5472D01* +Y-59552D01* +Y-59727D01* +Y-59902D01* +Y-60077D01* +Y-60252D01* +Y-60427D01* +Y-60602D01* +Y-60777D01* +X-5297D01* +Y-60951D01* +X-4947D01* +Y-61126D01* +X-4597D01* +Y-61301D01* +X-4422D01* +Y-61476D01* +X-4072D01* +Y-61651D01* +X-3722D01* +Y-61826D01* +X-3373D01* +Y-62001D01* +X-3198D01* +Y-62176D01* +X-2848D01* +Y-62351D01* +X-2498D01* +Y-62526D01* +X-2148D01* +Y-62701D01* +X-1973D01* +Y-62876D01* +X-1623D01* +Y-63051D01* +X-1273D01* +Y-63226D01* +X-923D01* +Y-63401D01* +X-573D01* +Y-63226D01* +X-224D01* +Y-63051D01* +X126D01* +Y-62876D01* +X301D01* +Y-62701D01* +X651D01* +Y-62526D01* +X1001D01* +Y-62351D01* +X1176D01* +Y-62176D01* +X1526D01* +Y-62001D01* +X1876D01* +Y-61826D01* +X2226D01* +Y-61651D01* +X2401D01* +Y-61476D01* +X2751D01* +Y-61301D01* +X3101D01* +Y-61126D01* +X3275D01* +Y-60951D01* +X3625D01* +Y-60777D01* +X3800D01* +Y-60602D01* +Y-60427D01* +Y-60252D01* +Y-60077D01* +Y-59902D01* +Y-59727D01* +Y-59552D01* +Y-59377D01* +Y-59202D01* +Y-59027D01* +Y-58852D01* +Y-58677D01* +Y-58502D01* +Y-58327D01* +X3450D01* +Y-58502D01* +X3101D01* +Y-58677D01* +X2926D01* +Y-58852D01* +X2576D01* +Y-59027D01* +X2226D01* +Y-59202D01* +X2051D01* +Y-59377D01* +X1701D01* +Y-59552D01* +X1351D01* +Y-59727D01* +X1001D01* +Y-59902D01* +X826D01* +Y-60077D01* +X476D01* +Y-60252D01* +X126D01* +Y-60427D01* +X-49D01* +Y-60602D01* +X-398D01* +Y-60777D01* +X-1098D01* +Y-60602D01* +X-1448D01* +Y-60427D01* +X-1798D01* +Y-60252D01* +X-1973D01* +Y-60077D01* +X-1798D01* +Y-59902D01* +X-1448D01* +Y-59727D01* +X-1098D01* +Y-59552D01* +X-748D01* +Y-59377D01* +X-573D01* +Y-59202D01* +X-224D01* +Y-59027D01* +X126D01* +Y-58852D01* +X301D01* +Y-58677D01* +X651D01* +Y-58502D01* +X1001D01* +Y-58327D01* +X1351D01* +Y-58152D01* +X1526D01* +Y-57977D01* +X1876D01* +Y-57802D01* +X2226D01* +Y-57627D01* +X2576D01* +Y-57452D01* +X2751D01* +Y-57278D01* +X3101D01* +Y-57103D01* +X3450D01* +Y-56928D01* +X3625D01* +Y-56753D01* +X3800D01* +Y-56578D01* +Y-56403D01* +Y-56228D01* +Y-56053D01* +Y-55878D01* +Y-55703D01* +Y-55528D01* +Y-55353D01* +Y-55178D01* +X3450D01* +Y-55003D01* +X3101D01* +Y-54828D01* +X2751D01* +Y-54653D01* +X2576D01* +Y-54479D01* +X2226D01* +Y-54303D01* +X1876D01* +Y-54129D01* +X1526D01* +Y-53954D01* +X1351D01* +Y-53779D01* +X1001D01* +Y-53604D01* +X651D01* +Y-53429D01* +X301D01* +Y-53254D01* +X126D01* +Y-53079D01* +X-224D01* +Y-52904D01* +X-573D01* +Y-52729D01* +D02* +G37* +G36* +X6249Y-56753D02* +X6075D01* +Y-56928D01* +Y-57103D01* +Y-57278D01* +Y-57452D01* +Y-57627D01* +Y-57802D01* +Y-57977D01* +Y-58152D01* +Y-58327D01* +Y-58502D01* +Y-58677D01* +Y-58852D01* +Y-59027D01* +Y-59202D01* +Y-59377D01* +Y-59552D01* +Y-59727D01* +Y-59902D01* +Y-60077D01* +Y-60252D01* +Y-60427D01* +Y-60602D01* +Y-60777D01* +Y-60951D01* +Y-61126D01* +Y-61301D01* +Y-61476D01* +Y-61651D01* +Y-61826D01* +Y-62001D01* +Y-62176D01* +X5725D01* +Y-62351D01* +X5550D01* +Y-62526D01* +X5200D01* +Y-62701D01* +X4850D01* +Y-62876D01* +X4500D01* +Y-63051D01* +X4325D01* +Y-63226D01* +X3975D01* +Y-63401D01* +X3625D01* +Y-63576D01* +X3275D01* +Y-63750D01* +X3101D01* +Y-63925D01* +X2751D01* +Y-64100D01* +X2401D01* +Y-64275D01* +X2051D01* +Y-64450D01* +X1876D01* +Y-64625D01* +X1526D01* +Y-64800D01* +X1701D01* +Y-64975D01* +X2051D01* +Y-65150D01* +X2401D01* +Y-65325D01* +X2751D01* +Y-65500D01* +X2926D01* +Y-65675D01* +X3275D01* +Y-65850D01* +X3975D01* +Y-65675D01* +X4150D01* +Y-65500D01* +X4500D01* +Y-65325D01* +X4850D01* +Y-65150D01* +X5200D01* +Y-64975D01* +X5375D01* +Y-64800D01* +X5725D01* +Y-64625D01* +X6075D01* +Y-64450D01* +X6424D01* +Y-64275D01* +X6599D01* +Y-64100D01* +X6949D01* +Y-63925D01* +X7299D01* +Y-63750D01* +X7474D01* +Y-63576D01* +X7824D01* +Y-63401D01* +X8174D01* +Y-63226D01* +Y-63051D01* +Y-62876D01* +Y-62701D01* +Y-62526D01* +Y-62351D01* +Y-62176D01* +Y-62001D01* +Y-61826D01* +Y-61651D01* +Y-61476D01* +Y-61301D01* +Y-61126D01* +Y-60951D01* +Y-60777D01* +Y-60602D01* +Y-60427D01* +Y-60252D01* +Y-60077D01* +Y-59902D01* +Y-59727D01* +Y-59552D01* +Y-59377D01* +Y-59202D01* +Y-59027D01* +Y-58852D01* +Y-58677D01* +Y-58502D01* +Y-58327D01* +Y-58152D01* +Y-57977D01* +Y-57802D01* +X7824D01* +Y-57627D01* +X7474D01* +Y-57452D01* +X7124D01* +Y-57278D01* +X6949D01* +Y-57103D01* +X6599D01* +Y-56928D01* +X6249D01* +Y-56753D01* +D02* +G37* +G36* +X-7746D02* +X-7921D01* +Y-56928D01* +X-8271D01* +Y-57103D01* +X-8446D01* +Y-57278D01* +X-8796D01* +Y-57452D01* +X-9146D01* +Y-57627D01* +X-9496D01* +Y-57802D01* +X-9670D01* +Y-57977D01* +X-9845D01* +Y-58152D01* +Y-58327D01* +Y-58502D01* +Y-58677D01* +Y-58852D01* +Y-59027D01* +Y-59202D01* +Y-59377D01* +Y-59552D01* +Y-59727D01* +Y-59902D01* +Y-60077D01* +Y-60252D01* +Y-60427D01* +Y-60602D01* +Y-60777D01* +Y-60951D01* +Y-61126D01* +Y-61301D01* +Y-61476D01* +Y-61651D01* +Y-61826D01* +Y-62001D01* +Y-62176D01* +Y-62351D01* +Y-62526D01* +Y-62701D01* +Y-62876D01* +Y-63051D01* +Y-63226D01* +Y-63401D01* +X-9496D01* +Y-63576D01* +X-9321D01* +Y-63750D01* +X-8971D01* +Y-63925D01* +X-8621D01* +Y-64100D01* +X-8271D01* +Y-64275D01* +X-8096D01* +Y-64450D01* +X-7746D01* +Y-64625D01* +X-7396D01* +Y-64800D01* +X-7046D01* +Y-64975D01* +X-6871D01* +Y-65150D01* +X-6521D01* +Y-65325D01* +X-6172D01* +Y-65500D01* +X-5822D01* +Y-65675D01* +X-5647D01* +Y-65850D01* +X-4947D01* +Y-65675D01* +X-4597D01* +Y-65500D01* +X-4247D01* +Y-65325D01* +X-4072D01* +Y-65150D01* +X-3722D01* +Y-64975D01* +X-3373D01* +Y-64800D01* +X-3198D01* +Y-64625D01* +X-3547D01* +Y-64450D01* +X-3722D01* +Y-64275D01* +X-4072D01* +Y-64100D01* +X-4422D01* +Y-63925D01* +X-4772D01* +Y-63750D01* +X-4947D01* +Y-63576D01* +X-5297D01* +Y-63401D01* +X-5647D01* +Y-63226D01* +X-5997D01* +Y-63051D01* +X-6346D01* +Y-62876D01* +X-6521D01* +Y-62701D01* +X-6871D01* +Y-62526D01* +X-7221D01* +Y-62351D01* +X-7396D01* +Y-62176D01* +X-7746D01* +Y-62001D01* +Y-61826D01* +Y-61651D01* +Y-61476D01* +Y-61301D01* +Y-61126D01* +Y-60951D01* +Y-60777D01* +Y-60602D01* +Y-60427D01* +Y-60252D01* +Y-60077D01* +Y-59902D01* +Y-59727D01* +Y-59552D01* +Y-59377D01* +Y-59202D01* +Y-59027D01* +Y-58852D01* +Y-58677D01* +Y-58502D01* +Y-58327D01* +Y-58152D01* +Y-57977D01* +Y-57802D01* +Y-57627D01* +Y-57452D01* +Y-57278D01* +Y-57103D01* +Y-56928D01* +Y-56753D01* +D02* +G37* +G36* +X-113240Y-101809D02* +X-113526Y-102647D01* +X-112950D01* +X-113240Y-101809D01* +D02* +G37* +G36* +X-117881Y-101634D02* +X-118173D01* +Y-102265D01* +X-117938D01* +X-117905Y-102262D01* +X-117867D01* +X-117826Y-102259D01* +X-117788Y-102257D01* +X-117750Y-102251D01* +X-117744D01* +X-117733Y-102248D01* +X-117714Y-102243D01* +X-117692Y-102237D01* +X-117665Y-102229D01* +X-117638Y-102218D01* +X-117610Y-102205D01* +X-117586Y-102188D01* +X-117583Y-102186D01* +X-117575Y-102180D01* +X-117564Y-102169D01* +X-117550Y-102156D01* +X-117520Y-102123D01* +X-117507Y-102104D01* +X-117493Y-102082D01* +X-117490Y-102079D01* +X-117488Y-102071D01* +X-117482Y-102057D01* +X-117477Y-102038D01* +X-117471Y-102016D01* +X-117468Y-101989D01* +X-117463Y-101956D01* +Y-101921D01* +Y-101918D01* +Y-101907D01* +X-117466Y-101891D01* +X-117468Y-101869D01* +X-117471Y-101844D01* +X-117479Y-101820D01* +X-117488Y-101795D01* +X-117501Y-101771D01* +X-117504Y-101768D01* +X-117507Y-101760D01* +X-117517Y-101749D01* +X-117528Y-101735D01* +X-117548Y-101719D01* +X-117567Y-101702D01* +X-117594Y-101686D01* +X-117624Y-101672D01* +X-117627D01* +X-117635Y-101670D01* +X-117649Y-101664D01* +X-117665Y-101659D01* +X-117684Y-101653D01* +X-117709Y-101651D01* +X-117736Y-101645D01* +X-117766Y-101642D01* +X-117769D01* +X-117780Y-101640D01* +X-117799D01* +X-117821Y-101637D01* +X-117848D01* +X-117881Y-101634D01* +D02* +G37* +G36* +X-141885Y-101631D02* +X-142148D01* +Y-102128D01* +X-141891D01* +X-141847Y-102126D01* +X-141804D01* +X-141793Y-102123D01* +X-141774D01* +X-141752Y-102120D01* +X-141700Y-102109D01* +X-141673Y-102101D01* +X-141651Y-102093D01* +X-141648Y-102090D01* +X-141637Y-102087D01* +X-141623Y-102079D01* +X-141607Y-102068D01* +X-141572Y-102038D01* +X-141555Y-102019D01* +X-141544Y-102000D01* +Y-101997D01* +X-141539Y-101989D01* +X-141536Y-101978D01* +X-141531Y-101962D01* +X-141525Y-101943D01* +X-141522Y-101918D01* +X-141517Y-101866D01* +Y-101864D01* +Y-101855D01* +X-141520Y-101844D01* +Y-101831D01* +X-141531Y-101793D01* +X-141536Y-101773D01* +X-141547Y-101751D01* +Y-101749D01* +X-141552Y-101741D01* +X-141561Y-101730D01* +X-141572Y-101719D01* +X-141585Y-101702D01* +X-141604Y-101689D01* +X-141626Y-101675D01* +X-141651Y-101661D01* +X-141653D01* +X-141662Y-101659D01* +X-141675Y-101653D01* +X-141694Y-101648D01* +X-141719Y-101645D01* +X-141746Y-101640D01* +X-141779Y-101637D01* +X-141814Y-101634D01* +X-141856D01* +X-141885Y-101631D01* +D02* +G37* +G36* +X-141839Y-102535D02* +X-142148D01* +Y-103122D01* +X-141722D01* +X-141703Y-103119D01* +X-141675Y-103117D01* +X-141642Y-103111D01* +X-141610Y-103103D01* +X-141574Y-103095D01* +X-141539Y-103081D01* +X-141533Y-103078D01* +X-141522Y-103073D01* +X-141506Y-103065D01* +X-141487Y-103051D01* +X-141465Y-103037D01* +X-141443Y-103018D01* +X-141424Y-102999D01* +X-141408Y-102975D01* +X-141405Y-102972D01* +X-141402Y-102964D01* +X-141397Y-102950D01* +X-141389Y-102931D01* +X-141383Y-102909D01* +X-141378Y-102884D01* +X-141375Y-102854D01* +X-141372Y-102824D01* +Y-102819D01* +Y-102805D01* +X-141375Y-102786D01* +X-141378Y-102762D01* +X-141383Y-102734D01* +X-141391Y-102704D01* +X-141402Y-102677D01* +X-141416Y-102652D01* +X-141419Y-102650D01* +X-141424Y-102641D01* +X-141435Y-102631D01* +X-141451Y-102617D01* +X-141471Y-102603D01* +X-141495Y-102587D01* +X-141528Y-102573D01* +X-141563Y-102560D01* +X-141566D01* +X-141577Y-102557D01* +X-141593Y-102554D01* +X-141615Y-102549D01* +X-141642Y-102546D01* +X-141675Y-102543D01* +X-141716Y-102541D01* +X-141760Y-102538D01* +X-141806D01* +X-141839Y-102535D01* +D02* +G37* +G36* +X-125134Y-101596D02* +X-125153D01* +X-125175Y-101599D01* +X-125205Y-101601D01* +X-125238Y-101607D01* +X-125274Y-101615D01* +X-125312Y-101626D01* +X-125350Y-101640D01* +X-125355Y-101642D01* +X-125366Y-101648D01* +X-125385Y-101659D01* +X-125410Y-101672D01* +X-125440Y-101691D01* +X-125470Y-101713D01* +X-125503Y-101741D01* +X-125536Y-101773D01* +X-125538Y-101776D01* +X-125549Y-101790D01* +X-125563Y-101809D01* +X-125582Y-101839D01* +X-125601Y-101872D01* +X-125623Y-101915D01* +X-125645Y-101964D01* +X-125664Y-102019D01* +Y-102022D01* +X-125667Y-102027D01* +X-125669Y-102035D01* +X-125672Y-102046D01* +X-125675Y-102060D01* +X-125680Y-102079D01* +X-125688Y-102123D01* +X-125697Y-102175D01* +X-125705Y-102237D01* +X-125710Y-102306D01* +X-125713Y-102379D01* +Y-102382D01* +Y-102388D01* +Y-102399D01* +Y-102415D01* +X-125710Y-102431D01* +Y-102453D01* +X-125707Y-102502D01* +X-125702Y-102560D01* +X-125694Y-102620D01* +X-125683Y-102680D01* +X-125667Y-102737D01* +Y-102740D01* +X-125664Y-102743D01* +X-125661Y-102751D01* +X-125658Y-102762D01* +X-125647Y-102789D01* +X-125631Y-102822D01* +X-125615Y-102860D01* +X-125593Y-102901D01* +X-125566Y-102939D01* +X-125538Y-102977D01* +X-125536Y-102980D01* +X-125525Y-102994D01* +X-125508Y-103010D01* +X-125486Y-103029D01* +X-125459Y-103051D01* +X-125429Y-103073D01* +X-125394Y-103095D01* +X-125355Y-103114D01* +X-125350Y-103117D01* +X-125336Y-103119D01* +X-125314Y-103127D01* +X-125287Y-103136D01* +X-125254Y-103144D01* +X-125216Y-103149D01* +X-125178Y-103155D01* +X-125134Y-103157D01* +X-125115D01* +X-125091Y-103155D01* +X-125063Y-103152D01* +X-125028Y-103147D01* +X-124992Y-103138D01* +X-124951Y-103127D01* +X-124913Y-103114D01* +X-124908Y-103111D01* +X-124894Y-103106D01* +X-124875Y-103095D01* +X-124850Y-103081D01* +X-124820Y-103059D01* +X-124790Y-103037D01* +X-124758Y-103007D01* +X-124727Y-102975D01* +X-124725Y-102969D01* +X-124714Y-102955D01* +X-124697Y-102934D01* +X-124678Y-102901D01* +X-124656Y-102865D01* +X-124635Y-102822D01* +X-124616Y-102772D01* +X-124596Y-102721D01* +Y-102718D01* +X-124594Y-102715D01* +X-124591Y-102707D01* +X-124588Y-102693D01* +X-124585Y-102680D01* +X-124583Y-102663D01* +X-124575Y-102622D01* +X-124566Y-102570D01* +X-124558Y-102513D01* +X-124556Y-102448D01* +X-124553Y-102377D01* +Y-102374D01* +Y-102368D01* +Y-102358D01* +Y-102341D01* +X-124556Y-102322D01* +Y-102303D01* +X-124558Y-102254D01* +X-124564Y-102197D01* +X-124575Y-102137D01* +X-124585Y-102076D01* +X-124602Y-102019D01* +Y-102016D01* +X-124605Y-102014D01* +X-124607Y-102005D01* +X-124610Y-101995D01* +X-124621Y-101967D01* +X-124637Y-101932D01* +X-124654Y-101893D01* +X-124676Y-101853D01* +X-124703Y-101814D01* +X-124730Y-101776D01* +X-124733Y-101771D01* +X-124744Y-101760D01* +X-124760Y-101743D01* +X-124782Y-101724D01* +X-124809Y-101702D01* +X-124842Y-101681D01* +X-124878Y-101659D01* +X-124916Y-101640D01* +X-124921Y-101637D01* +X-124935Y-101631D01* +X-124954Y-101626D01* +X-124981Y-101618D01* +X-125014Y-101610D01* +X-125052Y-101601D01* +X-125091Y-101599D01* +X-125134Y-101596D01* +D02* +G37* +G36* +X-132055D02* +X-132074D01* +X-132096Y-101599D01* +X-132126Y-101601D01* +X-132159Y-101607D01* +X-132194Y-101615D01* +X-132232Y-101626D01* +X-132270Y-101640D01* +X-132276Y-101642D01* +X-132287Y-101648D01* +X-132306Y-101659D01* +X-132331Y-101672D01* +X-132360Y-101691D01* +X-132391Y-101713D01* +X-132423Y-101741D01* +X-132456Y-101773D01* +X-132459Y-101776D01* +X-132470Y-101790D01* +X-132483Y-101809D01* +X-132502Y-101839D01* +X-132522Y-101872D01* +X-132543Y-101915D01* +X-132565Y-101964D01* +X-132584Y-102019D01* +Y-102022D01* +X-132587Y-102027D01* +X-132590Y-102035D01* +X-132593Y-102046D01* +X-132595Y-102060D01* +X-132601Y-102079D01* +X-132609Y-102123D01* +X-132617Y-102175D01* +X-132625Y-102237D01* +X-132631Y-102306D01* +X-132633Y-102379D01* +Y-102382D01* +Y-102388D01* +Y-102399D01* +Y-102415D01* +X-132631Y-102431D01* +Y-102453D01* +X-132628Y-102502D01* +X-132623Y-102560D01* +X-132614Y-102620D01* +X-132604Y-102680D01* +X-132587Y-102737D01* +Y-102740D01* +X-132584Y-102743D01* +X-132582Y-102751D01* +X-132579Y-102762D01* +X-132568Y-102789D01* +X-132552Y-102822D01* +X-132535Y-102860D01* +X-132513Y-102901D01* +X-132486Y-102939D01* +X-132459Y-102977D01* +X-132456Y-102980D01* +X-132445Y-102994D01* +X-132429Y-103010D01* +X-132407Y-103029D01* +X-132380Y-103051D01* +X-132350Y-103073D01* +X-132314Y-103095D01* +X-132276Y-103114D01* +X-132270Y-103117D01* +X-132257Y-103119D01* +X-132235Y-103127D01* +X-132208Y-103136D01* +X-132175Y-103144D01* +X-132137Y-103149D01* +X-132098Y-103155D01* +X-132055Y-103157D01* +X-132036D01* +X-132011Y-103155D01* +X-131984Y-103152D01* +X-131948Y-103147D01* +X-131913Y-103138D01* +X-131872Y-103127D01* +X-131834Y-103114D01* +X-131828Y-103111D01* +X-131815Y-103106D01* +X-131795Y-103095D01* +X-131771Y-103081D01* +X-131741Y-103059D01* +X-131711Y-103037D01* +X-131678Y-103007D01* +X-131648Y-102975D01* +X-131645Y-102969D01* +X-131634Y-102955D01* +X-131618Y-102934D01* +X-131599Y-102901D01* +X-131577Y-102865D01* +X-131555Y-102822D01* +X-131536Y-102772D01* +X-131517Y-102721D01* +Y-102718D01* +X-131514Y-102715D01* +X-131511Y-102707D01* +X-131509Y-102693D01* +X-131506Y-102680D01* +X-131503Y-102663D01* +X-131495Y-102622D01* +X-131487Y-102570D01* +X-131479Y-102513D01* +X-131476Y-102448D01* +X-131473Y-102377D01* +Y-102374D01* +Y-102368D01* +Y-102358D01* +Y-102341D01* +X-131476Y-102322D01* +Y-102303D01* +X-131479Y-102254D01* +X-131484Y-102197D01* +X-131495Y-102137D01* +X-131506Y-102076D01* +X-131522Y-102019D01* +Y-102016D01* +X-131525Y-102014D01* +X-131528Y-102005D01* +X-131531Y-101995D01* +X-131542Y-101967D01* +X-131558Y-101932D01* +X-131574Y-101893D01* +X-131596Y-101853D01* +X-131623Y-101814D01* +X-131651Y-101776D01* +X-131653Y-101771D01* +X-131664Y-101760D01* +X-131681Y-101743D01* +X-131703Y-101724D01* +X-131730Y-101702D01* +X-131763Y-101681D01* +X-131798Y-101659D01* +X-131836Y-101640D01* +X-131842Y-101637D01* +X-131855Y-101631D01* +X-131875Y-101626D01* +X-131902Y-101618D01* +X-131935Y-101610D01* +X-131973Y-101601D01* +X-132011Y-101599D01* +X-132055Y-101596D01* +D02* +G37* +G36* +X-139216D02* +X-139235D01* +X-139257Y-101599D01* +X-139286Y-101601D01* +X-139319Y-101607D01* +X-139355Y-101615D01* +X-139393Y-101626D01* +X-139431Y-101640D01* +X-139437Y-101642D01* +X-139448Y-101648D01* +X-139467Y-101659D01* +X-139491Y-101672D01* +X-139521Y-101691D01* +X-139551Y-101713D01* +X-139584Y-101741D01* +X-139617Y-101773D01* +X-139620Y-101776D01* +X-139630Y-101790D01* +X-139644Y-101809D01* +X-139663Y-101839D01* +X-139682Y-101872D01* +X-139704Y-101915D01* +X-139726Y-101964D01* +X-139745Y-102019D01* +Y-102022D01* +X-139748Y-102027D01* +X-139751Y-102035D01* +X-139753Y-102046D01* +X-139756Y-102060D01* +X-139762Y-102079D01* +X-139770Y-102123D01* +X-139778Y-102175D01* +X-139786Y-102237D01* +X-139792Y-102306D01* +X-139794Y-102379D01* +Y-102382D01* +Y-102388D01* +Y-102399D01* +Y-102415D01* +X-139792Y-102431D01* +Y-102453D01* +X-139789Y-102502D01* +X-139783Y-102560D01* +X-139775Y-102620D01* +X-139764Y-102680D01* +X-139748Y-102737D01* +Y-102740D01* +X-139745Y-102743D01* +X-139743Y-102751D01* +X-139740Y-102762D01* +X-139729Y-102789D01* +X-139712Y-102822D01* +X-139696Y-102860D01* +X-139674Y-102901D01* +X-139647Y-102939D01* +X-139620Y-102977D01* +X-139617Y-102980D01* +X-139606Y-102994D01* +X-139590Y-103010D01* +X-139568Y-103029D01* +X-139540Y-103051D01* +X-139510Y-103073D01* +X-139475Y-103095D01* +X-139437Y-103114D01* +X-139431Y-103117D01* +X-139418Y-103119D01* +X-139396Y-103127D01* +X-139368Y-103136D01* +X-139336Y-103144D01* +X-139297Y-103149D01* +X-139259Y-103155D01* +X-139216Y-103157D01* +X-139197D01* +X-139172Y-103155D01* +X-139145Y-103152D01* +X-139109Y-103147D01* +X-139074Y-103138D01* +X-139033Y-103127D01* +X-138994Y-103114D01* +X-138989Y-103111D01* +X-138975Y-103106D01* +X-138956Y-103095D01* +X-138932Y-103081D01* +X-138902Y-103059D01* +X-138872Y-103037D01* +X-138839Y-103007D01* +X-138809Y-102975D01* +X-138806Y-102969D01* +X-138795Y-102955D01* +X-138779Y-102934D01* +X-138760Y-102901D01* +X-138738Y-102865D01* +X-138716Y-102822D01* +X-138697Y-102772D01* +X-138678Y-102721D01* +Y-102718D01* +X-138675Y-102715D01* +X-138672Y-102707D01* +X-138670Y-102693D01* +X-138667Y-102680D01* +X-138664Y-102663D01* +X-138656Y-102622D01* +X-138648Y-102570D01* +X-138639Y-102513D01* +X-138637Y-102448D01* +X-138634Y-102377D01* +Y-102374D01* +Y-102368D01* +Y-102358D01* +Y-102341D01* +X-138637Y-102322D01* +Y-102303D01* +X-138639Y-102254D01* +X-138645Y-102197D01* +X-138656Y-102137D01* +X-138667Y-102076D01* +X-138683Y-102019D01* +Y-102016D01* +X-138686Y-102014D01* +X-138689Y-102005D01* +X-138691Y-101995D01* +X-138702Y-101967D01* +X-138719Y-101932D01* +X-138735Y-101893D01* +X-138757Y-101853D01* +X-138784Y-101814D01* +X-138812Y-101776D01* +X-138814Y-101771D01* +X-138825Y-101760D01* +X-138842Y-101743D01* +X-138863Y-101724D01* +X-138891Y-101702D01* +X-138924Y-101681D01* +X-138959Y-101659D01* +X-138997Y-101640D01* +X-139003Y-101637D01* +X-139016Y-101631D01* +X-139035Y-101626D01* +X-139063Y-101618D01* +X-139095Y-101610D01* +X-139134Y-101601D01* +X-139172Y-101599D01* +X-139216Y-101596D01* +D02* +G37* +G36* +X20998Y-80483D02* +X20990D01* +Y-81037D01* +X21068Y-81094D01* +X21109Y-81119D01* +X21146Y-81139D01* +X21179Y-81155D01* +X21203Y-81168D01* +X21220Y-81172D01* +X21224Y-81176D01* +X21273Y-81192D01* +X21318Y-81205D01* +X21363Y-81213D01* +X21400Y-81217D01* +X21433Y-81221D01* +X21461Y-81225D01* +X21539D01* +X21585Y-81221D01* +X21625Y-81217D01* +X21662Y-81213D01* +X21687D01* +X21703Y-81209D01* +X21716Y-81205D01* +X21720D01* +X21769Y-81184D01* +X21810Y-81164D01* +X21826Y-81151D01* +X21839Y-81143D01* +X21843Y-81135D01* +X21847D01* +X21867Y-81114D01* +X21884Y-81098D01* +X21904Y-81065D01* +X21913Y-81045D01* +X21917Y-81041D01* +Y-81037D01* +X21925Y-80991D01* +X21929Y-80950D01* +Y-80930D01* +Y-80914D01* +Y-80905D01* +Y-80901D01* +X21925Y-80856D01* +X21917Y-80815D01* +X21908Y-80782D01* +X21896Y-80754D01* +X21884Y-80729D01* +X21871Y-80713D01* +X21867Y-80704D01* +X21863Y-80700D01* +X21835Y-80672D01* +X21806Y-80647D01* +X21740Y-80610D01* +X21716Y-80598D01* +X21691Y-80590D01* +X21675Y-80581D01* +X21671D01* +X21625Y-80569D01* +X21576Y-80557D01* +X21527Y-80549D01* +X21478Y-80540D01* +X21433Y-80532D01* +X21396Y-80528D01* +X21371Y-80524D01* +X21363D01* +X21289Y-80516D01* +X21220Y-80508D01* +X21158Y-80500D01* +X21101Y-80495D01* +X21056Y-80491D01* +X21019Y-80487D01* +X20998Y-80483D01* +D02* +G37* +G36* +X14869D02* +X14861D01* +Y-81037D01* +X14938Y-81094D01* +X14979Y-81119D01* +X15016Y-81139D01* +X15049Y-81155D01* +X15074Y-81168D01* +X15090Y-81172D01* +X15094Y-81176D01* +X15143Y-81192D01* +X15189Y-81205D01* +X15234Y-81213D01* +X15270Y-81217D01* +X15303Y-81221D01* +X15332Y-81225D01* +X15410D01* +X15455Y-81221D01* +X15496Y-81217D01* +X15533Y-81213D01* +X15558D01* +X15574Y-81209D01* +X15586Y-81205D01* +X15590D01* +X15639Y-81184D01* +X15680Y-81164D01* +X15697Y-81151D01* +X15709Y-81143D01* +X15713Y-81135D01* +X15717D01* +X15738Y-81114D01* +X15754Y-81098D01* +X15775Y-81065D01* +X15783Y-81045D01* +X15787Y-81041D01* +Y-81037D01* +X15795Y-80991D01* +X15799Y-80950D01* +Y-80930D01* +Y-80914D01* +Y-80905D01* +Y-80901D01* +X15795Y-80856D01* +X15787Y-80815D01* +X15779Y-80782D01* +X15767Y-80754D01* +X15754Y-80729D01* +X15742Y-80713D01* +X15738Y-80704D01* +X15734Y-80700D01* +X15705Y-80672D01* +X15676Y-80647D01* +X15611Y-80610D01* +X15586Y-80598D01* +X15562Y-80590D01* +X15545Y-80581D01* +X15541D01* +X15496Y-80569D01* +X15447Y-80557D01* +X15398Y-80549D01* +X15348Y-80540D01* +X15303Y-80532D01* +X15266Y-80528D01* +X15242Y-80524D01* +X15234D01* +X15160Y-80516D01* +X15090Y-80508D01* +X15029Y-80500D01* +X14971Y-80495D01* +X14926Y-80491D01* +X14889Y-80487D01* +X14869Y-80483D01* +D02* +G37* +G36* +X7874D02* +X7866D01* +Y-81037D01* +X7944Y-81094D01* +X7985Y-81119D01* +X8022Y-81139D01* +X8054Y-81155D01* +X8079Y-81168D01* +X8095Y-81172D01* +X8100Y-81176D01* +X8149Y-81192D01* +X8194Y-81205D01* +X8239Y-81213D01* +X8276Y-81217D01* +X8309Y-81221D01* +X8337Y-81225D01* +X8415D01* +X8460Y-81221D01* +X8501Y-81217D01* +X8538Y-81213D01* +X8563D01* +X8579Y-81209D01* +X8591Y-81205D01* +X8596D01* +X8645Y-81184D01* +X8686Y-81164D01* +X8702Y-81151D01* +X8715Y-81143D01* +X8719Y-81135D01* +X8723D01* +X8743Y-81114D01* +X8760Y-81098D01* +X8780Y-81065D01* +X8788Y-81045D01* +X8792Y-81041D01* +Y-81037D01* +X8801Y-80991D01* +X8805Y-80950D01* +Y-80930D01* +Y-80914D01* +Y-80905D01* +Y-80901D01* +X8801Y-80856D01* +X8792Y-80815D01* +X8784Y-80782D01* +X8772Y-80754D01* +X8760Y-80729D01* +X8747Y-80713D01* +X8743Y-80704D01* +X8739Y-80700D01* +X8710Y-80672D01* +X8682Y-80647D01* +X8616Y-80610D01* +X8591Y-80598D01* +X8567Y-80590D01* +X8551Y-80581D01* +X8546D01* +X8501Y-80569D01* +X8452Y-80557D01* +X8403Y-80549D01* +X8354Y-80540D01* +X8309Y-80532D01* +X8272Y-80528D01* +X8247Y-80524D01* +X8239D01* +X8165Y-80516D01* +X8095Y-80508D01* +X8034Y-80500D01* +X7977Y-80495D01* +X7931Y-80491D01* +X7895Y-80487D01* +X7874Y-80483D01* +D02* +G37* +G36* +X2212D02* +X2204D01* +Y-81037D01* +X2282Y-81094D01* +X2323Y-81119D01* +X2360Y-81139D01* +X2392Y-81155D01* +X2417Y-81168D01* +X2433Y-81172D01* +X2437Y-81176D01* +X2487Y-81192D01* +X2532Y-81205D01* +X2577Y-81213D01* +X2614Y-81217D01* +X2647Y-81221D01* +X2675Y-81225D01* +X2753D01* +X2798Y-81221D01* +X2839Y-81217D01* +X2876Y-81213D01* +X2901D01* +X2917Y-81209D01* +X2929Y-81205D01* +X2933D01* +X2983Y-81184D01* +X3024Y-81164D01* +X3040Y-81151D01* +X3052Y-81143D01* +X3057Y-81135D01* +X3061D01* +X3081Y-81114D01* +X3098Y-81098D01* +X3118Y-81065D01* +X3126Y-81045D01* +X3130Y-81041D01* +Y-81037D01* +X3139Y-80991D01* +X3143Y-80950D01* +Y-80930D01* +Y-80914D01* +Y-80905D01* +Y-80901D01* +X3139Y-80856D01* +X3130Y-80815D01* +X3122Y-80782D01* +X3110Y-80754D01* +X3098Y-80729D01* +X3085Y-80713D01* +X3081Y-80704D01* +X3077Y-80700D01* +X3048Y-80672D01* +X3020Y-80647D01* +X2954Y-80610D01* +X2929Y-80598D01* +X2905Y-80590D01* +X2888Y-80581D01* +X2884D01* +X2839Y-80569D01* +X2790Y-80557D01* +X2741Y-80549D01* +X2692Y-80540D01* +X2647Y-80532D01* +X2610Y-80528D01* +X2585Y-80524D01* +X2577D01* +X2503Y-80516D01* +X2433Y-80508D01* +X2372Y-80500D01* +X2314Y-80495D01* +X2269Y-80491D01* +X2232Y-80487D01* +X2212Y-80483D01* +D02* +G37* +G36* +X-4110Y-79581D02* +X-4155D01* +X-4241Y-79589D01* +X-4282Y-79593D01* +X-4315Y-79602D01* +X-4344Y-79610D01* +X-4369Y-79614D01* +X-4381Y-79622D01* +X-4385D01* +X-4422Y-79638D01* +X-4459Y-79659D01* +X-4487Y-79684D01* +X-4516Y-79708D01* +X-4537Y-79729D01* +X-4553Y-79745D01* +X-4561Y-79757D01* +X-4565Y-79761D01* +X-4594Y-79798D01* +X-4619Y-79839D01* +X-4639Y-79884D01* +X-4656Y-79926D01* +X-4668Y-79958D01* +X-4676Y-79991D01* +X-4684Y-80007D01* +Y-80016D01* +X-4701Y-80077D01* +X-4709Y-80143D01* +X-4717Y-80208D01* +X-4725Y-80274D01* +Y-80327D01* +X-4729Y-80368D01* +Y-80385D01* +Y-80397D01* +Y-80405D01* +Y-80409D01* +Y-80500D01* +X-4721Y-80577D01* +X-4717Y-80647D01* +X-4709Y-80704D01* +X-4701Y-80750D01* +X-4693Y-80782D01* +X-4688Y-80799D01* +X-4684Y-80807D01* +X-4668Y-80860D01* +X-4647Y-80905D01* +X-4627Y-80946D01* +X-4606Y-80983D01* +X-4590Y-81012D01* +X-4574Y-81037D01* +X-4565Y-81049D01* +X-4561Y-81053D01* +X-4532Y-81086D01* +X-4504Y-81110D01* +X-4471Y-81135D01* +X-4442Y-81151D01* +X-4418Y-81168D01* +X-4397Y-81176D01* +X-4385Y-81180D01* +X-4381Y-81184D01* +X-4303Y-81205D01* +X-4266Y-81213D01* +X-4233Y-81217D01* +X-4205D01* +X-4180Y-81221D01* +X-4110D01* +X-4065Y-81213D01* +X-4024Y-81209D01* +X-3987Y-81201D01* +X-3959Y-81192D01* +X-3938Y-81188D01* +X-3922Y-81180D01* +X-3918D01* +X-3881Y-81164D01* +X-3848Y-81143D01* +X-3815Y-81119D01* +X-3790Y-81098D01* +X-3766Y-81078D01* +X-3749Y-81061D01* +X-3741Y-81049D01* +X-3737Y-81045D01* +X-3708Y-81004D01* +X-3684Y-80963D01* +X-3667Y-80918D01* +X-3647Y-80877D01* +X-3635Y-80844D01* +X-3626Y-80811D01* +X-3618Y-80795D01* +Y-80787D01* +X-3606Y-80725D01* +X-3598Y-80659D01* +X-3590Y-80598D01* +X-3585Y-80536D01* +Y-80487D01* +X-3581Y-80446D01* +Y-80430D01* +Y-80418D01* +Y-80413D01* +Y-80409D01* +X-3585Y-80319D01* +X-3590Y-80241D01* +X-3598Y-80172D01* +X-3606Y-80114D01* +X-3614Y-80065D01* +X-3618Y-80032D01* +X-3626Y-80012D01* +Y-80003D01* +X-3643Y-79946D01* +X-3663Y-79897D01* +X-3684Y-79852D01* +X-3704Y-79815D01* +X-3721Y-79786D01* +X-3737Y-79766D01* +X-3745Y-79753D01* +X-3749Y-79749D01* +X-3782Y-79716D01* +X-3815Y-79688D01* +X-3848Y-79663D01* +X-3877Y-79647D01* +X-3901Y-79634D01* +X-3918Y-79626D01* +X-3930Y-79618D01* +X-3934D01* +X-4008Y-79598D01* +X-4045Y-79589D01* +X-4082Y-79585D01* +X-4110Y-79581D01* +D02* +G37* +G36* +X-19735D02* +X-19780D01* +X-19867Y-79589D01* +X-19908Y-79593D01* +X-19940Y-79602D01* +X-19969Y-79610D01* +X-19994Y-79614D01* +X-20006Y-79622D01* +X-20010D01* +X-20047Y-79638D01* +X-20084Y-79659D01* +X-20112Y-79684D01* +X-20141Y-79708D01* +X-20162Y-79729D01* +X-20178Y-79745D01* +X-20186Y-79757D01* +X-20190Y-79761D01* +X-20219Y-79798D01* +X-20244Y-79839D01* +X-20264Y-79884D01* +X-20281Y-79926D01* +X-20293Y-79958D01* +X-20301Y-79991D01* +X-20309Y-80007D01* +Y-80016D01* +X-20326Y-80077D01* +X-20334Y-80143D01* +X-20342Y-80208D01* +X-20350Y-80274D01* +Y-80327D01* +X-20354Y-80368D01* +Y-80385D01* +Y-80397D01* +Y-80405D01* +Y-80409D01* +Y-80500D01* +X-20346Y-80577D01* +X-20342Y-80647D01* +X-20334Y-80704D01* +X-20326Y-80750D01* +X-20317Y-80782D01* +X-20313Y-80799D01* +X-20309Y-80807D01* +X-20293Y-80860D01* +X-20272Y-80905D01* +X-20252Y-80946D01* +X-20232Y-80983D01* +X-20215Y-81012D01* +X-20199Y-81037D01* +X-20190Y-81049D01* +X-20186Y-81053D01* +X-20158Y-81086D01* +X-20129Y-81110D01* +X-20096Y-81135D01* +X-20067Y-81151D01* +X-20043Y-81168D01* +X-20022Y-81176D01* +X-20010Y-81180D01* +X-20006Y-81184D01* +X-19928Y-81205D01* +X-19891Y-81213D01* +X-19858Y-81217D01* +X-19830D01* +X-19805Y-81221D01* +X-19735D01* +X-19690Y-81213D01* +X-19649Y-81209D01* +X-19612Y-81201D01* +X-19584Y-81192D01* +X-19563Y-81188D01* +X-19547Y-81180D01* +X-19543D01* +X-19506Y-81164D01* +X-19473Y-81143D01* +X-19440Y-81119D01* +X-19415Y-81098D01* +X-19391Y-81078D01* +X-19375Y-81061D01* +X-19366Y-81049D01* +X-19362Y-81045D01* +X-19333Y-81004D01* +X-19309Y-80963D01* +X-19293Y-80918D01* +X-19272Y-80877D01* +X-19260Y-80844D01* +X-19252Y-80811D01* +X-19243Y-80795D01* +Y-80787D01* +X-19231Y-80725D01* +X-19223Y-80659D01* +X-19215Y-80598D01* +X-19211Y-80536D01* +Y-80487D01* +X-19207Y-80446D01* +Y-80430D01* +Y-80418D01* +Y-80413D01* +Y-80409D01* +X-19211Y-80319D01* +X-19215Y-80241D01* +X-19223Y-80172D01* +X-19231Y-80114D01* +X-19239Y-80065D01* +X-19243Y-80032D01* +X-19252Y-80012D01* +Y-80003D01* +X-19268Y-79946D01* +X-19288Y-79897D01* +X-19309Y-79852D01* +X-19329Y-79815D01* +X-19346Y-79786D01* +X-19362Y-79766D01* +X-19370Y-79753D01* +X-19375Y-79749D01* +X-19407Y-79716D01* +X-19440Y-79688D01* +X-19473Y-79663D01* +X-19502Y-79647D01* +X-19526Y-79634D01* +X-19543Y-79626D01* +X-19555Y-79618D01* +X-19559D01* +X-19633Y-79598D01* +X-19670Y-79589D01* +X-19707Y-79585D01* +X-19735Y-79581D01* +D02* +G37* +G36* +X1402Y-93022D02* +X1361D01* +X1267Y-93026D01* +X1189Y-93043D01* +X1119Y-93063D01* +X1066Y-93088D01* +X1025Y-93117D01* +X996Y-93137D01* +X976Y-93154D01* +X972Y-93158D01* +X931Y-93215D01* +X898Y-93277D01* +X873Y-93342D01* +X857Y-93408D01* +X845Y-93469D01* +X840Y-93514D01* +X836Y-93535D01* +Y-93547D01* +Y-93555D01* +Y-93559D01* +X1943D01* +X1931Y-93461D01* +X1907Y-93379D01* +X1878Y-93309D01* +X1849Y-93252D01* +X1816Y-93207D01* +X1792Y-93178D01* +X1775Y-93158D01* +X1767Y-93154D01* +X1706Y-93108D01* +X1636Y-93076D01* +X1570Y-93055D01* +X1505Y-93039D01* +X1447Y-93031D01* +X1402Y-93022D01* +D02* +G37* +G36* +X5453Y-92354D02* +X5014D01* +X4965Y-92358D01* +X4924D01* +X4891Y-92362D01* +X4863D01* +X4846Y-92366D01* +X4842D01* +X4797Y-92370D01* +X4756Y-92379D01* +X4719Y-92383D01* +X4690Y-92391D01* +X4666Y-92399D01* +X4645Y-92407D01* +X4633Y-92412D01* +X4629D01* +X4584Y-92432D01* +X4543Y-92457D01* +X4514Y-92481D01* +X4485Y-92506D01* +X4469Y-92526D01* +X4453Y-92543D01* +X4448Y-92555D01* +X4444Y-92559D01* +X4424Y-92596D01* +X4412Y-92633D01* +X4399Y-92670D01* +X4395Y-92707D01* +X4391Y-92739D01* +X4387Y-92764D01* +Y-92780D01* +Y-92785D01* +Y-92838D01* +X4395Y-92887D01* +X4399Y-92928D01* +X4408Y-92961D01* +X4416Y-92989D01* +X4424Y-93010D01* +X4428Y-93022D01* +X4432Y-93026D01* +X4453Y-93059D01* +X4473Y-93088D01* +X4518Y-93137D01* +X4539Y-93158D01* +X4555Y-93174D01* +X4567Y-93182D01* +X4572Y-93186D01* +X4608Y-93211D01* +X4649Y-93231D01* +X4690Y-93248D01* +X4731Y-93260D01* +X4764Y-93268D01* +X4793Y-93277D01* +X4809Y-93281D01* +X4817D01* +X4875Y-93289D01* +X4932Y-93293D01* +X4994Y-93297D01* +X5051D01* +X5100Y-93301D01* +X5453D01* +Y-92354D01* +D02* +G37* +G36* +X14370Y-73607D02* +X14362D01* +Y-74160D01* +X14440Y-74217D01* +X14481Y-74242D01* +X14518Y-74263D01* +X14551Y-74279D01* +X14575Y-74291D01* +X14592Y-74295D01* +X14596Y-74300D01* +X14645Y-74316D01* +X14690Y-74328D01* +X14735Y-74336D01* +X14772Y-74340D01* +X14805Y-74345D01* +X14834Y-74349D01* +X14912D01* +X14957Y-74345D01* +X14998Y-74340D01* +X15035Y-74336D01* +X15059D01* +X15076Y-74332D01* +X15088Y-74328D01* +X15092D01* +X15141Y-74308D01* +X15182Y-74287D01* +X15199Y-74275D01* +X15211Y-74267D01* +X15215Y-74259D01* +X15219D01* +X15240Y-74238D01* +X15256Y-74222D01* +X15277Y-74189D01* +X15285Y-74168D01* +X15289Y-74164D01* +Y-74160D01* +X15297Y-74115D01* +X15301Y-74074D01* +Y-74054D01* +Y-74037D01* +Y-74029D01* +Y-74025D01* +X15297Y-73980D01* +X15289Y-73939D01* +X15281Y-73906D01* +X15268Y-73877D01* +X15256Y-73853D01* +X15244Y-73836D01* +X15240Y-73828D01* +X15236Y-73824D01* +X15207Y-73795D01* +X15178Y-73771D01* +X15113Y-73734D01* +X15088Y-73721D01* +X15063Y-73713D01* +X15047Y-73705D01* +X15043D01* +X14998Y-73693D01* +X14949Y-73680D01* +X14899Y-73672D01* +X14850Y-73664D01* +X14805Y-73656D01* +X14768Y-73652D01* +X14744Y-73648D01* +X14735D01* +X14662Y-73639D01* +X14592Y-73631D01* +X14530Y-73623D01* +X14473Y-73619D01* +X14428Y-73615D01* +X14391Y-73611D01* +X14370Y-73607D01* +D02* +G37* +G36* +X6380Y-72643D02* +X6339D01* +X6244Y-72647D01* +X6166Y-72664D01* +X6097Y-72684D01* +X6043Y-72709D01* +X6002Y-72737D01* +X5974Y-72758D01* +X5953Y-72774D01* +X5949Y-72778D01* +X5908Y-72836D01* +X5875Y-72897D01* +X5851Y-72963D01* +X5834Y-73028D01* +X5822Y-73090D01* +X5818Y-73135D01* +X5814Y-73156D01* +Y-73168D01* +Y-73176D01* +Y-73180D01* +X6921D01* +X6909Y-73082D01* +X6884Y-73000D01* +X6855Y-72930D01* +X6826Y-72873D01* +X6794Y-72828D01* +X6769Y-72799D01* +X6753Y-72778D01* +X6745Y-72774D01* +X6683Y-72729D01* +X6613Y-72696D01* +X6548Y-72676D01* +X6482Y-72659D01* +X6425Y-72651D01* +X6380Y-72643D01* +D02* +G37* +G36* +X-3932Y-71983D02* +X-4260D01* +X-4350Y-71987D01* +X-4428Y-71991D01* +X-4490Y-71995D01* +X-4535Y-72004D01* +X-4567Y-72008D01* +X-4588Y-72012D01* +X-4596D01* +X-4703Y-72036D01* +X-4752Y-72053D01* +X-4797Y-72065D01* +X-4830Y-72081D01* +X-4859Y-72090D01* +X-4879Y-72098D01* +X-4883Y-72102D01* +X-4977Y-72159D01* +X-5063Y-72221D01* +X-5129Y-72286D01* +X-5187Y-72348D01* +X-5232Y-72405D01* +X-5260Y-72450D01* +X-5273Y-72467D01* +X-5281Y-72479D01* +X-5285Y-72487D01* +Y-72491D01* +X-5326Y-72586D01* +X-5359Y-72688D01* +X-5379Y-72787D01* +X-5396Y-72881D01* +X-5400Y-72922D01* +X-5404Y-72963D01* +X-5408Y-72996D01* +X-5412Y-73028D01* +Y-73053D01* +Y-73070D01* +Y-73082D01* +Y-73086D01* +X-5408Y-73213D01* +X-5396Y-73324D01* +X-5375Y-73426D01* +X-5355Y-73508D01* +X-5342Y-73545D01* +X-5330Y-73578D01* +X-5322Y-73607D01* +X-5314Y-73631D01* +X-5305Y-73648D01* +X-5297Y-73660D01* +X-5293Y-73668D01* +Y-73672D01* +X-5244Y-73758D01* +X-5187Y-73832D01* +X-5129Y-73898D01* +X-5068Y-73951D01* +X-5014Y-73996D01* +X-4969Y-74029D01* +X-4953Y-74037D01* +X-4941Y-74045D01* +X-4932Y-74054D01* +X-4928D01* +X-4875Y-74082D01* +X-4822Y-74103D01* +X-4772Y-74123D01* +X-4727Y-74136D01* +X-4690Y-74148D01* +X-4658Y-74156D01* +X-4641Y-74160D01* +X-4633D01* +X-4567Y-74168D01* +X-4494Y-74177D01* +X-4416Y-74181D01* +X-4338Y-74185D01* +X-4268Y-74189D01* +X-3932D01* +Y-71983D01* +D02* +G37* +G36* +X-13542Y-71971D02* +X-13936D01* +X-13981Y-71975D01* +X-14042D01* +X-14096Y-71979D01* +X-14145Y-71983D01* +X-14186Y-71991D01* +X-14223Y-71995D01* +X-14252Y-72004D01* +X-14272Y-72012D01* +X-14284Y-72016D01* +X-14288D01* +X-14325Y-72036D01* +X-14358Y-72057D01* +X-14387Y-72077D01* +X-14407Y-72102D01* +X-14424Y-72118D01* +X-14436Y-72135D01* +X-14444Y-72147D01* +Y-72151D01* +X-14461Y-72184D01* +X-14469Y-72213D01* +X-14485Y-72270D01* +Y-72290D01* +X-14489Y-72307D01* +Y-72319D01* +Y-72323D01* +X-14481Y-72401D01* +X-14477Y-72438D01* +X-14469Y-72467D01* +X-14461Y-72491D01* +X-14457Y-72508D01* +X-14448Y-72520D01* +Y-72524D01* +X-14432Y-72553D01* +X-14407Y-72582D01* +X-14354Y-72627D01* +X-14330Y-72643D01* +X-14309Y-72655D01* +X-14293Y-72659D01* +X-14288Y-72664D01* +X-14256Y-72676D01* +X-14215Y-72688D01* +X-14137Y-72705D01* +X-14104Y-72709D01* +X-14075D01* +X-14059Y-72713D01* +X-13993D01* +X-13928Y-72717D01* +X-13542D01* +Y-71971D01* +D02* +G37* +G36* +Y-73328D02* +X-14006D01* +X-14055Y-73332D01* +X-14124D01* +X-14190Y-73336D01* +X-14252Y-73340D01* +X-14301Y-73344D01* +X-14342Y-73348D01* +X-14375Y-73356D01* +X-14399Y-73361D01* +X-14416Y-73365D01* +X-14420D01* +X-14473Y-73385D01* +X-14522Y-73406D01* +X-14559Y-73430D01* +X-14588Y-73451D01* +X-14612Y-73471D01* +X-14629Y-73488D01* +X-14637Y-73500D01* +X-14641Y-73504D01* +X-14662Y-73541D01* +X-14678Y-73582D01* +X-14690Y-73627D01* +X-14698Y-73668D01* +X-14703Y-73705D01* +X-14707Y-73734D01* +Y-73754D01* +Y-73762D01* +X-14703Y-73808D01* +X-14698Y-73853D01* +X-14690Y-73889D01* +X-14682Y-73922D01* +X-14670Y-73951D01* +X-14662Y-73971D01* +X-14658Y-73984D01* +X-14653Y-73988D01* +X-14629Y-74025D01* +X-14600Y-74054D01* +X-14567Y-74082D01* +X-14535Y-74103D01* +X-14506Y-74123D01* +X-14481Y-74136D01* +X-14465Y-74144D01* +X-14457Y-74148D01* +X-14403Y-74168D01* +X-14350Y-74181D01* +X-14301Y-74193D01* +X-14252Y-74201D01* +X-14211Y-74205D01* +X-14182Y-74209D01* +X-13542D01* +Y-73328D01* +D02* +G37* +G36* +X-17507Y-72705D02* +X-17552D01* +X-17638Y-72713D01* +X-17679Y-72717D01* +X-17712Y-72725D01* +X-17741Y-72733D01* +X-17765Y-72737D01* +X-17778Y-72746D01* +X-17782D01* +X-17819Y-72762D01* +X-17855Y-72782D01* +X-17884Y-72807D01* +X-17913Y-72832D01* +X-17933Y-72852D01* +X-17950Y-72869D01* +X-17958Y-72881D01* +X-17962Y-72885D01* +X-17991Y-72922D01* +X-18015Y-72963D01* +X-18036Y-73008D01* +X-18052Y-73049D01* +X-18065Y-73082D01* +X-18073Y-73115D01* +X-18081Y-73131D01* +Y-73139D01* +X-18097Y-73201D01* +X-18106Y-73266D01* +X-18114Y-73332D01* +X-18122Y-73397D01* +Y-73451D01* +X-18126Y-73492D01* +Y-73508D01* +Y-73520D01* +Y-73529D01* +Y-73533D01* +Y-73623D01* +X-18118Y-73701D01* +X-18114Y-73771D01* +X-18106Y-73828D01* +X-18097Y-73873D01* +X-18089Y-73906D01* +X-18085Y-73922D01* +X-18081Y-73931D01* +X-18065Y-73984D01* +X-18044Y-74029D01* +X-18024Y-74070D01* +X-18003Y-74107D01* +X-17987Y-74136D01* +X-17970Y-74160D01* +X-17962Y-74172D01* +X-17958Y-74177D01* +X-17929Y-74209D01* +X-17901Y-74234D01* +X-17868Y-74259D01* +X-17839Y-74275D01* +X-17815Y-74291D01* +X-17794Y-74300D01* +X-17782Y-74304D01* +X-17778Y-74308D01* +X-17700Y-74328D01* +X-17663Y-74336D01* +X-17630Y-74340D01* +X-17601D01* +X-17577Y-74345D01* +X-17507D01* +X-17462Y-74336D01* +X-17421Y-74332D01* +X-17384Y-74324D01* +X-17355Y-74316D01* +X-17335Y-74312D01* +X-17318Y-74304D01* +X-17314D01* +X-17277Y-74287D01* +X-17245Y-74267D01* +X-17212Y-74242D01* +X-17187Y-74222D01* +X-17163Y-74201D01* +X-17146Y-74185D01* +X-17138Y-74172D01* +X-17134Y-74168D01* +X-17105Y-74127D01* +X-17081Y-74086D01* +X-17064Y-74041D01* +X-17044Y-74000D01* +X-17031Y-73967D01* +X-17023Y-73935D01* +X-17015Y-73918D01* +Y-73910D01* +X-17003Y-73848D01* +X-16995Y-73783D01* +X-16986Y-73721D01* +X-16982Y-73660D01* +Y-73611D01* +X-16978Y-73570D01* +Y-73553D01* +Y-73541D01* +Y-73537D01* +Y-73533D01* +X-16982Y-73443D01* +X-16986Y-73365D01* +X-16995Y-73295D01* +X-17003Y-73238D01* +X-17011Y-73188D01* +X-17015Y-73156D01* +X-17023Y-73135D01* +Y-73127D01* +X-17040Y-73070D01* +X-17060Y-73020D01* +X-17081Y-72975D01* +X-17101Y-72938D01* +X-17118Y-72910D01* +X-17134Y-72889D01* +X-17142Y-72877D01* +X-17146Y-72873D01* +X-17179Y-72840D01* +X-17212Y-72811D01* +X-17245Y-72787D01* +X-17273Y-72770D01* +X-17298Y-72758D01* +X-17314Y-72750D01* +X-17327Y-72742D01* +X-17331D01* +X-17404Y-72721D01* +X-17441Y-72713D01* +X-17478Y-72709D01* +X-17507Y-72705D01* +D02* +G37* +G36* +X-8518Y-86306D02* +X-8559D01* +X-8653Y-86310D01* +X-8731Y-86326D01* +X-8801Y-86347D01* +X-8854Y-86371D01* +X-8895Y-86400D01* +X-8924Y-86421D01* +X-8944Y-86437D01* +X-8948Y-86441D01* +X-8989Y-86498D01* +X-9022Y-86560D01* +X-9047Y-86626D01* +X-9063Y-86691D01* +X-9075Y-86753D01* +X-9079Y-86798D01* +X-9083Y-86818D01* +Y-86831D01* +Y-86839D01* +Y-86843D01* +X-7977D01* +X-7989Y-86744D01* +X-8014Y-86663D01* +X-8042Y-86593D01* +X-8071Y-86535D01* +X-8104Y-86490D01* +X-8128Y-86462D01* +X-8145Y-86441D01* +X-8153Y-86437D01* +X-8214Y-86392D01* +X-8284Y-86359D01* +X-8350Y-86339D01* +X-8415Y-86322D01* +X-8473Y-86314D01* +X-8518Y-86306D01* +D02* +G37* +G36* +X-4233Y-85646D02* +X-4561D01* +X-4651Y-85650D01* +X-4729Y-85654D01* +X-4791Y-85658D01* +X-4836Y-85666D01* +X-4869Y-85670D01* +X-4889Y-85674D01* +X-4897D01* +X-5004Y-85699D01* +X-5053Y-85715D01* +X-5098Y-85728D01* +X-5131Y-85744D01* +X-5160Y-85752D01* +X-5180Y-85760D01* +X-5184Y-85765D01* +X-5279Y-85822D01* +X-5365Y-85883D01* +X-5430Y-85949D01* +X-5488Y-86011D01* +X-5533Y-86068D01* +X-5562Y-86113D01* +X-5574Y-86129D01* +X-5582Y-86142D01* +X-5586Y-86150D01* +Y-86154D01* +X-5627Y-86248D01* +X-5660Y-86351D01* +X-5681Y-86449D01* +X-5697Y-86544D01* +X-5701Y-86585D01* +X-5705Y-86626D01* +X-5709Y-86658D01* +X-5713Y-86691D01* +Y-86716D01* +Y-86732D01* +Y-86744D01* +Y-86749D01* +X-5709Y-86876D01* +X-5697Y-86986D01* +X-5676Y-87089D01* +X-5656Y-87171D01* +X-5644Y-87208D01* +X-5631Y-87241D01* +X-5623Y-87269D01* +X-5615Y-87294D01* +X-5607Y-87310D01* +X-5599Y-87323D01* +X-5594Y-87331D01* +Y-87335D01* +X-5545Y-87421D01* +X-5488Y-87495D01* +X-5430Y-87560D01* +X-5369Y-87614D01* +X-5316Y-87659D01* +X-5271Y-87692D01* +X-5254Y-87700D01* +X-5242Y-87708D01* +X-5234Y-87716D01* +X-5229D01* +X-5176Y-87745D01* +X-5123Y-87765D01* +X-5074Y-87786D01* +X-5029Y-87798D01* +X-4992Y-87810D01* +X-4959Y-87819D01* +X-4942Y-87823D01* +X-4934D01* +X-4869Y-87831D01* +X-4795Y-87839D01* +X-4717Y-87843D01* +X-4639Y-87847D01* +X-4569Y-87852D01* +X-4233D01* +Y-85646D01* +D02* +G37* +G36* +X8120Y-85564D02* +X8091D01* +X8038Y-85568D01* +X7993Y-85576D01* +X7948Y-85588D01* +X7907Y-85605D01* +X7833Y-85650D01* +X7776Y-85699D01* +X7730Y-85752D01* +X7702Y-85793D01* +X7689Y-85814D01* +X7681Y-85826D01* +X7677Y-85834D01* +Y-85838D01* +X7657Y-85892D01* +X7636Y-85953D01* +X7620Y-86023D01* +X7603Y-86097D01* +X7583Y-86248D01* +X7566Y-86396D01* +X7562Y-86470D01* +X7558Y-86535D01* +X7554Y-86597D01* +X7550Y-86646D01* +Y-86691D01* +Y-86724D01* +Y-86744D01* +Y-86753D01* +Y-86867D01* +X7554Y-86974D01* +X7562Y-87072D01* +X7571Y-87163D01* +X7579Y-87245D01* +X7591Y-87323D01* +X7603Y-87388D01* +X7616Y-87450D01* +X7628Y-87499D01* +X7640Y-87544D01* +X7653Y-87581D01* +X7661Y-87614D01* +X7669Y-87638D01* +X7677Y-87655D01* +X7681Y-87663D01* +Y-87667D01* +X7706Y-87716D01* +X7735Y-87757D01* +X7767Y-87794D01* +X7800Y-87827D01* +X7833Y-87852D01* +X7866Y-87876D01* +X7936Y-87909D01* +X7997Y-87925D01* +X8046Y-87938D01* +X8063Y-87942D01* +X8091D01* +X8145Y-87938D01* +X8190Y-87929D01* +X8235Y-87917D01* +X8276Y-87897D01* +X8350Y-87856D01* +X8407Y-87802D01* +X8448Y-87753D01* +X8481Y-87708D01* +X8493Y-87692D01* +X8497Y-87679D01* +X8506Y-87671D01* +Y-87667D01* +X8526Y-87610D01* +X8546Y-87548D01* +X8563Y-87478D01* +X8579Y-87409D01* +X8600Y-87257D01* +X8616Y-87105D01* +X8620Y-87036D01* +X8624Y-86970D01* +X8628Y-86913D01* +Y-86859D01* +X8633Y-86818D01* +Y-86786D01* +Y-86765D01* +Y-86757D01* +Y-86638D01* +X8628Y-86531D01* +X8620Y-86433D01* +X8612Y-86339D01* +X8604Y-86257D01* +X8591Y-86183D01* +X8583Y-86113D01* +X8571Y-86056D01* +X8559Y-86002D01* +X8546Y-85957D01* +X8538Y-85920D01* +X8530Y-85892D01* +X8522Y-85867D01* +X8514Y-85851D01* +X8510Y-85843D01* +Y-85838D01* +X8485Y-85789D01* +X8456Y-85748D01* +X8423Y-85711D01* +X8391Y-85678D01* +X8358Y-85654D01* +X8321Y-85629D01* +X8251Y-85597D01* +X8190Y-85580D01* +X8161Y-85572D01* +X8141Y-85568D01* +X8120Y-85564D01* +D02* +G37* +%LPD*% +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBP b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBP new file mode 100644 index 0000000..4eed170 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBP @@ -0,0 +1,16 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=128* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBS b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBS new file mode 100644 index 0000000..7bf3542 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GBS @@ -0,0 +1,98 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=16711935* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Negative* +G04* +G01* +G75* +%ADD55C,0.14580*% +%ADD56R,0.06706X0.06706*% +%ADD57C,0.06706*% +%ADD58C,0.05524*% +%ADD59R,0.05524X0.05524*% +%ADD61R,0.06706X0.06706*% +%ADD62R,0.06706X0.08674*% +%ADD63O,0.06706X0.08674*% +D55* +X-84646Y102362D02* +D03* +Y-94488D02* +D03* +X84646D02* +D03* +Y102362D02* +D03* +D56* +X47000Y88500D02* +D03* +X-35500Y-94500D02* +D03* +X-61500D02* +D03* +X61500D02* +D03* +D57* +X47000Y98500D02* +D03* +X37000Y88500D02* +D03* +Y98500D02* +D03* +X27000Y88500D02* +D03* +Y98500D02* +D03* +X82500Y28000D02* +D03* +Y18000D02* +D03* +X-25500Y-94500D02* +D03* +X-51500D02* +D03* +X51500D02* +D03* +X41500D02* +D03* +X31500D02* +D03* +X82500Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +X70000Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +D58* +X87500Y-72500D02* +D03* +D59* +X77500D02* +D03* +D61* +X82500Y8000D02* +D03* +Y71000D02* +D03* +X70000D02* +D03* +D62* +X-47000Y-70000D02* +D03* +D63* +X-37000D02* +D03* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GD1 b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GD1 new file mode 100644 index 0000000..3076aa4 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GD1 @@ -0,0 +1,5252 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=2752767* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +%ADD12C,0.01000*% +%ADD14C,0.00600*% +%ADD83C,0.00200*% +%ADD84C,0.01500*% +%ADD85C,0.00100*% +%ADD86C,0.01600*% +D12* +X221939Y-10810D02* +G03* +X221939Y-10810I-3333J0D01* +G01* +X215273Y17523D02* +X216939D01* +X215273D02* +Y20856D01* +X216939D01* +Y22523D01* +X220273D01* +Y20856D02* +Y22523D01* +Y20856D02* +X221939D01* +Y17523D02* +Y20856D01* +X220273Y17523D02* +X221939D01* +X220273Y15856D02* +Y17523D01* +X216939Y15856D02* +X220273D01* +X216939D02* +Y17523D01* +X215273Y856D02* +Y2523D01* +X216939Y4190D01* +X215273Y5856D02* +X216939Y4190D01* +X215273Y5856D02* +Y7523D01* +X216939D01* +X218606Y5856D01* +X220273Y7523D01* +X221939D01* +Y5856D02* +Y7523D01* +X220273Y4190D02* +X221939Y5856D01* +X220273Y4190D02* +X221939Y2523D01* +Y856D02* +Y2523D01* +X220273Y856D02* +X221939D01* +X218606Y2523D02* +X220273Y856D01* +X216939D02* +X218606Y2523D01* +X215273Y856D02* +X216939D01* +X218606Y-29144D02* +X221939Y-22477D01* +X215273D02* +X221939D01* +X215273D02* +X218606Y-29144D01* +X215273Y-44144D02* +X221939D01* +Y-37477D01* +X215273D02* +X221939D01* +X215273Y-44144D02* +Y-37477D01* +X216939Y-57477D02* +X218606Y-59144D01* +X215273Y-57477D02* +X216939D01* +X215273D02* +X216939Y-55810D01* +X215273Y-54144D02* +X216939Y-55810D01* +X215273Y-54144D02* +X216939D01* +X218606Y-52477D01* +X220273Y-54144D01* +X221939D01* +X220273Y-55810D02* +X221939Y-54144D01* +X220273Y-55810D02* +X221939Y-57477D01* +X220273D02* +X221939D01* +X218606Y-59144D02* +X220273Y-57477D01* +X88598Y113173D02* +X118500D01* +X88598Y-105500D02* +X118500D01* +X117500Y17332D02* +Y113173D01* +Y-105500D02* +Y-12859D01* +X115500Y107173D02* +X117500Y113173D01* +X119500Y107173D01* +X117500Y-105500D02* +X119500Y-99500D01* +X115500D02* +X117500Y-105500D01* +X95276Y-114000D02* +Y-98823D01* +X-95276Y-114000D02* +Y-98823D01* +X13496Y-113000D02* +X95276D01* +X-95276D02* +X-16696D01* +X89276Y-111000D02* +X95276Y-113000D01* +X89276Y-115000D02* +X95276Y-113000D01* +X-95276D02* +X-89276Y-115000D01* +X-95276Y-113000D02* +X-89276Y-111000D01* +X617787Y15856D02* +Y21855D01* +X620786D01* +X621786Y20855D01* +Y18856D01* +X620786Y17856D01* +X617787D01* +X619787D02* +X621786Y15856D01* +X624785D02* +X626784D01* +X627784Y16856D01* +Y18856D01* +X626784Y19855D01* +X624785D01* +X623785Y18856D01* +Y16856D01* +X624785Y15856D01* +X629783Y19855D02* +Y16856D01* +X630783Y15856D01* +X633782D01* +Y19855D01* +X635781Y15856D02* +Y19855D01* +X638780D01* +X639780Y18856D01* +Y15856D01* +X645778Y21855D02* +Y15856D01* +X642779D01* +X641779Y16856D01* +Y18856D01* +X642779Y19855D01* +X645778D01* +X650776Y15856D02* +X648777D01* +X647777Y16856D01* +Y18856D01* +X648777Y19855D01* +X650776D01* +X651776Y18856D01* +Y17856D01* +X647777D01* +X657774Y21855D02* +Y15856D01* +X654775D01* +X653776Y16856D01* +Y18856D01* +X654775Y19855D01* +X657774D01* +X617787Y856D02* +Y6854D01* +X620786D01* +X621786Y5855D01* +Y3855D01* +X620786Y2856D01* +X617787D01* +X619787D02* +X621786Y856D01* +X624785D02* +X626784D01* +X627784Y1856D01* +Y3855D01* +X626784Y4855D01* +X624785D01* +X623785Y3855D01* +Y1856D01* +X624785Y856D01* +X629783Y4855D02* +Y1856D01* +X630783Y856D01* +X633782D01* +Y4855D01* +X635781Y856D02* +Y4855D01* +X638780D01* +X639780Y3855D01* +Y856D01* +X645778Y6854D02* +Y856D01* +X642779D01* +X641779Y1856D01* +Y3855D01* +X642779Y4855D01* +X645778D01* +X650776Y856D02* +X648777D01* +X647777Y1856D01* +Y3855D01* +X648777Y4855D01* +X650776D01* +X651776Y3855D01* +Y2856D01* +X647777D01* +X657774Y6854D02* +Y856D01* +X654775D01* +X653776Y1856D01* +Y3855D01* +X654775Y4855D01* +X657774D01* +X617787Y-14144D02* +Y-8145D01* +X620786D01* +X621786Y-9145D01* +Y-11145D01* +X620786Y-12144D01* +X617787D01* +X619787D02* +X621786Y-14144D01* +X624785D02* +X626784D01* +X627784Y-13144D01* +Y-11145D01* +X626784Y-10145D01* +X624785D01* +X623785Y-11145D01* +Y-13144D01* +X624785Y-14144D01* +X629783Y-10145D02* +Y-13144D01* +X630783Y-14144D01* +X633782D01* +Y-10145D01* +X635781Y-14144D02* +Y-10145D01* +X638780D01* +X639780Y-11145D01* +Y-14144D01* +X645778Y-8145D02* +Y-14144D01* +X642779D01* +X641779Y-13144D01* +Y-11145D01* +X642779Y-10145D01* +X645778D01* +X650776Y-14144D02* +X648777D01* +X647777Y-13144D01* +Y-11145D01* +X648777Y-10145D01* +X650776D01* +X651776Y-11145D01* +Y-12144D01* +X647777D01* +X657774Y-8145D02* +Y-14144D01* +X654775D01* +X653776Y-13144D01* +Y-11145D01* +X654775Y-10145D01* +X657774D01* +X619787Y-29144D02* +X617787Y-27144D01* +Y-25145D01* +X619787Y-23145D01* +X622786Y-29144D02* +Y-23145D01* +X624785Y-25145D01* +X626784Y-23145D01* +Y-29144D01* +X628784D02* +X630783D01* +X629783D01* +Y-25145D01* +X628784D01* +X633782D02* +X637781Y-29144D01* +X635781Y-27144D01* +X637781Y-25145D01* +X633782Y-29144D01* +X642779D02* +X640780D01* +X639780Y-28144D01* +Y-26144D01* +X640780Y-25145D01* +X642779D01* +X643779Y-26144D01* +Y-27144D01* +X639780D01* +X649777Y-23145D02* +Y-29144D01* +X646778D01* +X645778Y-28144D01* +Y-26144D01* +X646778Y-25145D01* +X649777D01* +X651776Y-29144D02* +X653776Y-27144D01* +Y-25145D01* +X651776Y-23145D01* +X619787Y-44144D02* +X617787Y-42144D01* +Y-40145D01* +X619787Y-38146D01* +X622786Y-44144D02* +Y-38146D01* +X624785Y-40145D01* +X626784Y-38146D01* +Y-44144D01* +X628784D02* +X630783D01* +X629783D01* +Y-40145D01* +X628784D01* +X633782D02* +X637781Y-44144D01* +X635781Y-42144D01* +X637781Y-40145D01* +X633782Y-44144D01* +X642779D02* +X640780D01* +X639780Y-43144D01* +Y-41144D01* +X640780Y-40145D01* +X642779D01* +X643779Y-41144D01* +Y-42144D01* +X639780D01* +X649777Y-38146D02* +Y-44144D01* +X646778D01* +X645778Y-43144D01* +Y-41144D01* +X646778Y-40145D01* +X649777D01* +X651776Y-44144D02* +X653776Y-42144D01* +Y-40145D01* +X651776Y-38146D01* +X617787Y-59144D02* +Y-53145D01* +X620786D01* +X621786Y-54145D01* +Y-56144D01* +X620786Y-57144D01* +X617787D01* +X619787D02* +X621786Y-59144D01* +X624785D02* +X626784D01* +X627784Y-58144D01* +Y-56144D01* +X626784Y-55145D01* +X624785D01* +X623785Y-56144D01* +Y-58144D01* +X624785Y-59144D01* +X629783Y-55145D02* +Y-58144D01* +X630783Y-59144D01* +X633782D01* +Y-55145D01* +X635781Y-59144D02* +Y-55145D01* +X638780D01* +X639780Y-56144D01* +Y-59144D01* +X645778Y-53145D02* +Y-59144D01* +X642779D01* +X641779Y-58144D01* +Y-56144D01* +X642779Y-55145D01* +X645778D01* +X650776Y-59144D02* +X648777D01* +X647777Y-58144D01* +Y-56144D01* +X648777Y-55145D01* +X650776D01* +X651776Y-56144D01* +Y-57144D01* +X647777D01* +X657774Y-53145D02* +Y-59144D01* +X654775D01* +X653776Y-58144D01* +Y-56144D01* +X654775Y-55145D01* +X657774D01* +X558802Y21855D02* +Y17856D01* +X560802Y15856D01* +X562801Y17856D01* +Y21855D01* +X564800Y15856D02* +X566800D01* +X565800D01* +Y19855D01* +X564800D01* +X570798D02* +X572798D01* +X573797Y18856D01* +Y15856D01* +X570798D01* +X569799Y16856D01* +X570798Y17856D01* +X573797D01* +X558802Y6854D02* +Y2856D01* +X560802Y856D01* +X562801Y2856D01* +Y6854D01* +X564800Y856D02* +X566800D01* +X565800D01* +Y4855D01* +X564800D01* +X570798D02* +X572798D01* +X573797Y3855D01* +Y856D01* +X570798D01* +X569799Y1856D01* +X570798Y2856D01* +X573797D01* +X558802Y-14144D02* +Y-8145D01* +X561801D01* +X562801Y-9145D01* +Y-11145D01* +X561801Y-12144D01* +X558802D01* +X565800Y-10145D02* +X567799D01* +X568799Y-11145D01* +Y-14144D01* +X565800D01* +X564800Y-13144D01* +X565800Y-12144D01* +X568799D01* +X574797Y-8145D02* +Y-14144D01* +X571798D01* +X570798Y-13144D01* +Y-11145D01* +X571798Y-10145D01* +X574797D01* +X558802Y-29144D02* +Y-23145D01* +X561801D01* +X562801Y-24145D01* +Y-26144D01* +X561801Y-27144D01* +X558802D01* +X565800Y-25145D02* +X567799D01* +X568799Y-26144D01* +Y-29144D01* +X565800D01* +X564800Y-28144D01* +X565800Y-27144D01* +X568799D01* +X574797Y-23145D02* +Y-29144D01* +X571798D01* +X570798Y-28144D01* +Y-26144D01* +X571798Y-25145D01* +X574797D01* +X558802Y-44144D02* +Y-38146D01* +X561801D01* +X562801Y-39145D01* +Y-41144D01* +X561801Y-42144D01* +X558802D01* +X565800Y-40145D02* +X567799D01* +X568799Y-41144D01* +Y-44144D01* +X565800D01* +X564800Y-43144D01* +X565800Y-42144D01* +X568799D01* +X574797Y-38146D02* +Y-44144D01* +X571798D01* +X570798Y-43144D01* +Y-41144D01* +X571798Y-40145D01* +X574797D01* +X558802Y-59144D02* +Y-53145D01* +X561801D01* +X562801Y-54145D01* +Y-56144D01* +X561801Y-57144D01* +X558802D01* +X565800Y-55145D02* +X567799D01* +X568799Y-56144D01* +Y-59144D01* +X565800D01* +X564800Y-58144D01* +X565800Y-57144D01* +X568799D01* +X574797Y-53145D02* +Y-59144D01* +X571798D01* +X570798Y-58144D01* +Y-56144D01* +X571798Y-55145D01* +X574797D01* +X485422Y15856D02* +Y21855D01* +X488421D01* +X489421Y20855D01* +Y18856D01* +X488421Y17856D01* +X485422D01* +X487421D02* +X489421Y15856D01* +X492420D02* +X494419D01* +X495419Y16856D01* +Y18856D01* +X494419Y19855D01* +X492420D01* +X491420Y18856D01* +Y16856D01* +X492420Y15856D01* +X497418Y19855D02* +Y16856D01* +X498418Y15856D01* +X501417D01* +Y19855D01* +X503416Y15856D02* +Y19855D01* +X506415D01* +X507415Y18856D01* +Y15856D01* +X513413Y21855D02* +Y15856D01* +X510414D01* +X509414Y16856D01* +Y18856D01* +X510414Y19855D01* +X513413D01* +X485422Y856D02* +Y6854D01* +X488421D01* +X489421Y5855D01* +Y3855D01* +X488421Y2856D01* +X485422D01* +X487421D02* +X489421Y856D01* +X492420D02* +X494419D01* +X495419Y1856D01* +Y3855D01* +X494419Y4855D01* +X492420D01* +X491420Y3855D01* +Y1856D01* +X492420Y856D01* +X497418Y4855D02* +Y1856D01* +X498418Y856D01* +X501417D01* +Y4855D01* +X503416Y856D02* +Y4855D01* +X506415D01* +X507415Y3855D01* +Y856D01* +X513413Y6854D02* +Y856D01* +X510414D01* +X509414Y1856D01* +Y3855D01* +X510414Y4855D01* +X513413D01* +X485422Y-14144D02* +Y-8145D01* +X488421D01* +X489421Y-9145D01* +Y-11145D01* +X488421Y-12144D01* +X485422D01* +X487421D02* +X489421Y-14144D01* +X492420D02* +X494419D01* +X495419Y-13144D01* +Y-11145D01* +X494419Y-10145D01* +X492420D01* +X491420Y-11145D01* +Y-13144D01* +X492420Y-14144D01* +X497418Y-10145D02* +Y-13144D01* +X498418Y-14144D01* +X501417D01* +Y-10145D01* +X503416Y-14144D02* +Y-10145D01* +X506415D01* +X507415Y-11145D01* +Y-14144D01* +X513413Y-8145D02* +Y-14144D01* +X510414D01* +X509414Y-13144D01* +Y-11145D01* +X510414Y-10145D01* +X513413D01* +X485422Y-29144D02* +Y-23145D01* +X488421D01* +X489421Y-24145D01* +Y-26144D01* +X488421Y-27144D01* +X485422D01* +X487421D02* +X489421Y-29144D01* +X492420D02* +X494419D01* +X495419Y-28144D01* +Y-26144D01* +X494419Y-25145D01* +X492420D01* +X491420Y-26144D01* +Y-28144D01* +X492420Y-29144D01* +X497418Y-25145D02* +Y-28144D01* +X498418Y-29144D01* +X501417D01* +Y-25145D01* +X503416Y-29144D02* +Y-25145D01* +X506415D01* +X507415Y-26144D01* +Y-29144D01* +X513413Y-23145D02* +Y-29144D01* +X510414D01* +X509414Y-28144D01* +Y-26144D01* +X510414Y-25145D01* +X513413D01* +X485422Y-44144D02* +Y-38146D01* +X488421D01* +X489421Y-39145D01* +Y-41144D01* +X488421Y-42144D01* +X485422D01* +X487421D02* +X489421Y-44144D01* +X492420D02* +X494419D01* +X495419Y-43144D01* +Y-41144D01* +X494419Y-40145D01* +X492420D01* +X491420Y-41144D01* +Y-43144D01* +X492420Y-44144D01* +X497418Y-40145D02* +Y-43144D01* +X498418Y-44144D01* +X501417D01* +Y-40145D01* +X503416Y-44144D02* +Y-40145D01* +X506415D01* +X507415Y-41144D01* +Y-44144D01* +X513413Y-38146D02* +Y-44144D01* +X510414D01* +X509414Y-43144D01* +Y-41144D01* +X510414Y-40145D01* +X513413D01* +X485422Y-59144D02* +Y-53145D01* +X488421D01* +X489421Y-54145D01* +Y-56144D01* +X488421Y-57144D01* +X485422D01* +X487421D02* +X489421Y-59144D01* +X492420D02* +X494419D01* +X495419Y-58144D01* +Y-56144D01* +X494419Y-55145D01* +X492420D01* +X491420Y-56144D01* +Y-58144D01* +X492420Y-59144D01* +X497418Y-55145D02* +Y-58144D01* +X498418Y-59144D01* +X501417D01* +Y-55145D01* +X503416Y-59144D02* +Y-55145D01* +X506415D01* +X507415Y-56144D01* +Y-59144D01* +X513413Y-53145D02* +Y-59144D01* +X510414D01* +X509414Y-58144D01* +Y-56144D01* +X510414Y-55145D01* +X513413D01* +X434834Y15856D02* +Y21855D01* +X437833D01* +X438833Y20855D01* +Y18856D01* +X437833Y17856D01* +X434834D01* +X440833Y21855D02* +X444831D01* +X442832D01* +Y15856D01* +X446831Y21855D02* +Y15856D01* +Y18856D01* +X450829D01* +Y21855D01* +Y15856D01* +X434834Y856D02* +Y6854D01* +X437833D01* +X438833Y5855D01* +Y3855D01* +X437833Y2856D01* +X434834D01* +X440833Y6854D02* +X444831D01* +X442832D01* +Y856D01* +X446831Y6854D02* +Y856D01* +Y3855D01* +X450829D01* +Y6854D01* +Y856D01* +X434834Y-14144D02* +Y-8145D01* +X437833D01* +X438833Y-9145D01* +Y-11145D01* +X437833Y-12144D01* +X434834D01* +X440833Y-8145D02* +X444831D01* +X442832D01* +Y-14144D01* +X446831Y-8145D02* +Y-14144D01* +Y-11145D01* +X450829D01* +Y-8145D01* +Y-14144D01* +X434834Y-29144D02* +Y-23145D01* +X437833D01* +X438833Y-24145D01* +Y-26144D01* +X437833Y-27144D01* +X434834D01* +X440833Y-23145D02* +X444831D01* +X442832D01* +Y-29144D01* +X446831Y-23145D02* +Y-29144D01* +Y-26144D01* +X450829D01* +Y-23145D01* +Y-29144D01* +X434834Y-44144D02* +Y-38146D01* +X437833D01* +X438833Y-39145D01* +Y-41144D01* +X437833Y-42144D01* +X434834D01* +X440833Y-38146D02* +X444831D01* +X442832D01* +Y-44144D01* +X446831Y-38146D02* +Y-44144D01* +Y-41144D01* +X450829D01* +Y-38146D01* +Y-44144D01* +X434834Y-59144D02* +Y-53145D01* +X438833Y-59144D01* +Y-53145D01* +X440833Y-59144D02* +Y-53145D01* +X443832D01* +X444831Y-54145D01* +Y-56144D01* +X443832Y-57144D01* +X440833D01* +X446831Y-53145D02* +X450829D01* +X448830D01* +Y-59144D01* +X452829Y-53145D02* +Y-59144D01* +Y-56144D01* +X456827D01* +Y-53145D01* +Y-59144D01* +X322867Y20855D02* +X323867Y21855D01* +X325866D01* +X326866Y20855D01* +Y16856D01* +X325866Y15856D01* +X323867D01* +X322867Y16856D01* +Y20855D01* +X328865Y15856D02* +Y16856D01* +X329865D01* +Y15856D01* +X328865D01* +X336863D02* +Y21855D01* +X333864Y18856D01* +X337862D01* +X339862Y20855D02* +X340861Y21855D01* +X342861D01* +X343860Y20855D01* +Y16856D01* +X342861Y15856D01* +X340861D01* +X339862Y16856D01* +Y20855D01* +X345860D02* +X346859Y21855D01* +X348859D01* +X349858Y20855D01* +Y16856D01* +X348859Y15856D01* +X346859D01* +X345860Y16856D01* +Y20855D01* +X351858Y15856D02* +Y19855D01* +X352857D01* +X353857Y18856D01* +Y15856D01* +Y18856D01* +X354857Y19855D01* +X355856Y18856D01* +Y15856D01* +X357856D02* +Y19855D01* +X358856D01* +X359855Y18856D01* +Y15856D01* +Y18856D01* +X360855Y19855D01* +X361855Y18856D01* +Y15856D01* +X371851D02* +X369852Y17856D01* +Y19855D01* +X371851Y21855D01* +X374850Y15856D02* +X376850D01* +X375850D01* +Y21855D01* +X374850Y20855D01* +X383847Y21855D02* +X379849D01* +Y18856D01* +X381848Y19855D01* +X382848D01* +X383847Y18856D01* +Y16856D01* +X382848Y15856D01* +X380848D01* +X379849Y16856D01* +X385847Y15856D02* +Y16856D01* +X386846D01* +Y15856D01* +X385847D01* +X390845Y21855D02* +X394844D01* +Y20855D01* +X390845Y16856D01* +Y15856D01* +X400842Y21855D02* +X396843D01* +Y18856D01* +X398843Y19855D01* +X399842D01* +X400842Y18856D01* +Y16856D01* +X399842Y15856D01* +X397843D01* +X396843Y16856D01* +X402841Y15856D02* +Y19855D01* +X403841D01* +X404841Y18856D01* +Y15856D01* +Y18856D01* +X405840Y19855D01* +X406840Y18856D01* +Y15856D01* +X408839D02* +X410839D01* +X409839D01* +Y19855D01* +X408839D01* +X413838Y15856D02* +X415837D01* +X414837D01* +Y21855D01* +X413838D01* +X418836Y15856D02* +X420835Y17856D01* +Y19855D01* +X418836Y21855D01* +X322867Y5855D02* +X323867Y6854D01* +X325866D01* +X326866Y5855D01* +Y1856D01* +X325866Y856D01* +X323867D01* +X322867Y1856D01* +Y5855D01* +X328865Y856D02* +Y1856D01* +X329865D01* +Y856D01* +X328865D01* +X337862Y6854D02* +X335863Y5855D01* +X333864Y3855D01* +Y1856D01* +X334863Y856D01* +X336863D01* +X337862Y1856D01* +Y2856D01* +X336863Y3855D01* +X333864D01* +X339862Y5855D02* +X340861Y6854D01* +X342861D01* +X343860Y5855D01* +Y1856D01* +X342861Y856D01* +X340861D01* +X339862Y1856D01* +Y5855D01* +X345860D02* +X346859Y6854D01* +X348859D01* +X349858Y5855D01* +Y1856D01* +X348859Y856D01* +X346859D01* +X345860Y1856D01* +Y5855D01* +X351858Y856D02* +Y4855D01* +X352857D01* +X353857Y3855D01* +Y856D01* +Y3855D01* +X354857Y4855D01* +X355856Y3855D01* +Y856D01* +X357856D02* +Y4855D01* +X358856D01* +X359855Y3855D01* +Y856D01* +Y3855D01* +X360855Y4855D01* +X361855Y3855D01* +Y856D01* +X371851D02* +X369852Y2856D01* +Y4855D01* +X371851Y6854D01* +X378849Y856D02* +X374850D01* +X378849Y4855D01* +Y5855D01* +X377849Y6854D01* +X375850D01* +X374850Y5855D01* +X380848D02* +X381848Y6854D01* +X383847D01* +X384847Y5855D01* +Y4855D01* +X383847Y3855D01* +X382848D01* +X383847D01* +X384847Y2856D01* +Y1856D01* +X383847Y856D01* +X381848D01* +X380848Y1856D01* +X386846Y856D02* +Y1856D01* +X387846D01* +Y856D01* +X386846D01* +X395844Y6854D02* +X393844Y5855D01* +X391845Y3855D01* +Y1856D01* +X392845Y856D01* +X394844D01* +X395844Y1856D01* +Y2856D01* +X394844Y3855D01* +X391845D01* +X401842Y856D02* +X397843D01* +X401842Y4855D01* +Y5855D01* +X400842Y6854D01* +X398843D01* +X397843Y5855D01* +X403841Y856D02* +Y4855D01* +X404841D01* +X405840Y3855D01* +Y856D01* +Y3855D01* +X406840Y4855D01* +X407840Y3855D01* +Y856D01* +X409839D02* +X411838D01* +X410839D01* +Y4855D01* +X409839D01* +X414837Y856D02* +X416837D01* +X415837D01* +Y6854D01* +X414837D01* +X419836Y856D02* +X421835Y2856D01* +Y4855D01* +X419836Y6854D01* +X322867Y-9145D02* +X323867Y-8145D01* +X325866D01* +X326866Y-9145D01* +Y-13144D01* +X325866Y-14144D01* +X323867D01* +X322867Y-13144D01* +Y-9145D01* +X328865Y-14144D02* +Y-13144D01* +X329865D01* +Y-14144D01* +X328865D01* +X333864Y-8145D02* +X337862D01* +Y-9145D01* +X333864Y-13144D01* +Y-14144D01* +X343860Y-8145D02* +X341861Y-9145D01* +X339862Y-11145D01* +Y-13144D01* +X340861Y-14144D01* +X342861D01* +X343860Y-13144D01* +Y-12144D01* +X342861Y-11145D01* +X339862D01* +X349858Y-14144D02* +X345860D01* +X349858Y-10145D01* +Y-9145D01* +X348859Y-8145D01* +X346859D01* +X345860Y-9145D01* +X351858Y-14144D02* +Y-10145D01* +X352857D01* +X353857Y-11145D01* +Y-14144D01* +Y-11145D01* +X354857Y-10145D01* +X355856Y-11145D01* +Y-14144D01* +X357856D02* +Y-10145D01* +X358856D01* +X359855Y-11145D01* +Y-14144D01* +Y-11145D01* +X360855Y-10145D01* +X361855Y-11145D01* +Y-14144D01* +X371851D02* +X369852Y-12144D01* +Y-10145D01* +X371851Y-8145D01* +X374850Y-9145D02* +X375850Y-8145D01* +X377849D01* +X378849Y-9145D01* +Y-10145D01* +X377849Y-11145D01* +X376850D01* +X377849D01* +X378849Y-12144D01* +Y-13144D01* +X377849Y-14144D01* +X375850D01* +X374850Y-13144D01* +X380848Y-9145D02* +X381848Y-8145D01* +X383847D01* +X384847Y-9145D01* +Y-13144D01* +X383847Y-14144D01* +X381848D01* +X380848Y-13144D01* +Y-9145D01* +X386846Y-14144D02* +Y-13144D01* +X387846D01* +Y-14144D01* +X386846D01* +X391845Y-9145D02* +X392845Y-8145D01* +X394844D01* +X395844Y-9145D01* +Y-13144D01* +X394844Y-14144D01* +X392845D01* +X391845Y-13144D01* +Y-9145D01* +X397843D02* +X398843Y-8145D01* +X400842D01* +X401842Y-9145D01* +Y-13144D01* +X400842Y-14144D01* +X398843D01* +X397843Y-13144D01* +Y-9145D01* +X403841Y-14144D02* +Y-10145D01* +X404841D01* +X405840Y-11145D01* +Y-14144D01* +Y-11145D01* +X406840Y-10145D01* +X407840Y-11145D01* +Y-14144D01* +X409839D02* +X411838D01* +X410839D01* +Y-10145D01* +X409839D01* +X414837Y-14144D02* +X416837D01* +X415837D01* +Y-8145D01* +X414837D01* +X419836Y-14144D02* +X421835Y-12144D01* +Y-10145D01* +X419836Y-8145D01* +X322867Y-24145D02* +X323867Y-23145D01* +X325866D01* +X326866Y-24145D01* +Y-28144D01* +X325866Y-29144D01* +X323867D01* +X322867Y-28144D01* +Y-24145D01* +X328865Y-29144D02* +Y-28144D01* +X329865D01* +Y-29144D01* +X328865D01* +X333864Y-24145D02* +X334863Y-23145D01* +X336863D01* +X337862Y-24145D01* +Y-25145D01* +X336863Y-26144D01* +X337862Y-27144D01* +Y-28144D01* +X336863Y-29144D01* +X334863D01* +X333864Y-28144D01* +Y-27144D01* +X334863Y-26144D01* +X333864Y-25145D01* +Y-24145D01* +X334863Y-26144D02* +X336863D01* +X339862Y-24145D02* +X340861Y-23145D01* +X342861D01* +X343860Y-24145D01* +Y-28144D01* +X342861Y-29144D01* +X340861D01* +X339862Y-28144D01* +Y-24145D01* +X345860D02* +X346859Y-23145D01* +X348859D01* +X349858Y-24145D01* +Y-28144D01* +X348859Y-29144D01* +X346859D01* +X345860Y-28144D01* +Y-24145D01* +X351858Y-29144D02* +Y-25145D01* +X352857D01* +X353857Y-26144D01* +Y-29144D01* +Y-26144D01* +X354857Y-25145D01* +X355856Y-26144D01* +Y-29144D01* +X357856D02* +Y-25145D01* +X358856D01* +X359855Y-26144D01* +Y-29144D01* +Y-26144D01* +X360855Y-25145D01* +X361855Y-26144D01* +Y-29144D01* +X371851D02* +X369852Y-27144D01* +Y-25145D01* +X371851Y-23145D01* +X374850Y-24145D02* +X375850Y-23145D01* +X377849D01* +X378849Y-24145D01* +Y-25145D01* +X377849Y-26144D01* +X376850D01* +X377849D01* +X378849Y-27144D01* +Y-28144D01* +X377849Y-29144D01* +X375850D01* +X374850Y-28144D01* +X380848Y-29144D02* +X382848D01* +X381848D01* +Y-23145D01* +X380848Y-24145D01* +X385847Y-29144D02* +Y-28144D01* +X386846D01* +Y-29144D01* +X385847D01* +X394844Y-23145D02* +X390845D01* +Y-26144D01* +X392845Y-25145D01* +X393844D01* +X394844Y-26144D01* +Y-28144D01* +X393844Y-29144D01* +X391845D01* +X390845Y-28144D01* +X396843Y-24145D02* +X397843Y-23145D01* +X399842D01* +X400842Y-24145D01* +Y-28144D01* +X399842Y-29144D01* +X397843D01* +X396843Y-28144D01* +Y-24145D01* +X402841Y-29144D02* +Y-25145D01* +X403841D01* +X404841Y-26144D01* +Y-29144D01* +Y-26144D01* +X405840Y-25145D01* +X406840Y-26144D01* +Y-29144D01* +X408839D02* +X410839D01* +X409839D01* +Y-25145D01* +X408839D01* +X413838Y-29144D02* +X415837D01* +X414837D01* +Y-23145D01* +X413838D01* +X418836Y-29144D02* +X420835Y-27144D01* +Y-25145D01* +X418836Y-23145D01* +X322867Y-39145D02* +X323867Y-38146D01* +X325866D01* +X326866Y-39145D01* +Y-43144D01* +X325866Y-44144D01* +X323867D01* +X322867Y-43144D01* +Y-39145D01* +X328865Y-44144D02* +Y-43144D01* +X329865D01* +Y-44144D01* +X328865D01* +X333864Y-43144D02* +X334863Y-44144D01* +X336863D01* +X337862Y-43144D01* +Y-39145D01* +X336863Y-38146D01* +X334863D01* +X333864Y-39145D01* +Y-40145D01* +X334863Y-41144D01* +X337862D01* +X339862Y-39145D02* +X340861Y-38146D01* +X342861D01* +X343860Y-39145D01* +Y-43144D01* +X342861Y-44144D01* +X340861D01* +X339862Y-43144D01* +Y-39145D01* +X345860D02* +X346859Y-38146D01* +X348859D01* +X349858Y-39145D01* +Y-43144D01* +X348859Y-44144D01* +X346859D01* +X345860Y-43144D01* +Y-39145D01* +X351858Y-44144D02* +Y-40145D01* +X352857D01* +X353857Y-41144D01* +Y-44144D01* +Y-41144D01* +X354857Y-40145D01* +X355856Y-41144D01* +Y-44144D01* +X357856D02* +Y-40145D01* +X358856D01* +X359855Y-41144D01* +Y-44144D01* +Y-41144D01* +X360855Y-40145D01* +X361855Y-41144D01* +Y-44144D01* +X371851D02* +X369852Y-42144D01* +Y-40145D01* +X371851Y-38146D01* +X374850Y-39145D02* +X375850Y-38146D01* +X377849D01* +X378849Y-39145D01* +Y-40145D01* +X377849Y-41144D01* +X376850D01* +X377849D01* +X378849Y-42144D01* +Y-43144D01* +X377849Y-44144D01* +X375850D01* +X374850Y-43144D01* +X384847Y-38146D02* +X380848D01* +Y-41144D01* +X382848Y-40145D01* +X383847D01* +X384847Y-41144D01* +Y-43144D01* +X383847Y-44144D01* +X381848D01* +X380848Y-43144D01* +X386846Y-44144D02* +Y-43144D01* +X387846D01* +Y-44144D01* +X386846D01* +X394844D02* +Y-38146D01* +X391845Y-41144D01* +X395844D01* +X397843Y-39145D02* +X398843Y-38146D01* +X400842D01* +X401842Y-39145D01* +Y-40145D01* +X400842Y-41144D01* +X399842D01* +X400842D01* +X401842Y-42144D01* +Y-43144D01* +X400842Y-44144D01* +X398843D01* +X397843Y-43144D01* +X403841Y-44144D02* +Y-40145D01* +X404841D01* +X405840Y-41144D01* +Y-44144D01* +Y-41144D01* +X406840Y-40145D01* +X407840Y-41144D01* +Y-44144D01* +X409839D02* +X411838D01* +X410839D01* +Y-40145D01* +X409839D01* +X414837Y-44144D02* +X416837D01* +X415837D01* +Y-38146D01* +X414837D01* +X419836Y-44144D02* +X421835Y-42144D01* +Y-40145D01* +X419836Y-38146D01* +X322867Y-54145D02* +X323867Y-53145D01* +X325866D01* +X326866Y-54145D01* +Y-55145D01* +X325866Y-56144D01* +X324867D01* +X325866D01* +X326866Y-57144D01* +Y-58144D01* +X325866Y-59144D01* +X323867D01* +X322867Y-58144D01* +X328865Y-59144D02* +Y-58144D01* +X329865D01* +Y-59144D01* +X328865D01* +X333864Y-54145D02* +X334863Y-53145D01* +X336863D01* +X337862Y-54145D01* +Y-58144D01* +X336863Y-59144D01* +X334863D01* +X333864Y-58144D01* +Y-54145D01* +X339862D02* +X340861Y-53145D01* +X342861D01* +X343860Y-54145D01* +Y-58144D01* +X342861Y-59144D01* +X340861D01* +X339862Y-58144D01* +Y-54145D01* +X345860D02* +X346859Y-53145D01* +X348859D01* +X349858Y-54145D01* +Y-58144D01* +X348859Y-59144D01* +X346859D01* +X345860Y-58144D01* +Y-54145D01* +X351858Y-59144D02* +Y-55145D01* +X352857D01* +X353857Y-56144D01* +Y-59144D01* +Y-56144D01* +X354857Y-55145D01* +X355856Y-56144D01* +Y-59144D01* +X357856D02* +Y-55145D01* +X358856D01* +X359855Y-56144D01* +Y-59144D01* +Y-56144D01* +X360855Y-55145D01* +X361855Y-56144D01* +Y-59144D01* +X371851D02* +X369852Y-57144D01* +Y-55145D01* +X371851Y-53145D01* +X374850Y-59144D02* +X376850D01* +X375850D01* +Y-53145D01* +X374850Y-54145D01* +X379849Y-59144D02* +X381848D01* +X380848D01* +Y-53145D01* +X379849Y-54145D01* +X384847D02* +X385847Y-53145D01* +X387846D01* +X388846Y-54145D01* +Y-55145D01* +X387846Y-56144D01* +X388846Y-57144D01* +Y-58144D01* +X387846Y-59144D01* +X385847D01* +X384847Y-58144D01* +Y-57144D01* +X385847Y-56144D01* +X384847Y-55145D01* +Y-54145D01* +X385847Y-56144D02* +X387846D01* +X390845Y-59144D02* +Y-58144D01* +X391845D01* +Y-59144D01* +X390845D01* +X395844D02* +X397843D01* +X396843D01* +Y-53145D01* +X395844Y-54145D01* +X400842Y-59144D02* +X402841D01* +X401842D01* +Y-53145D01* +X400842Y-54145D01* +X405840Y-59144D02* +Y-55145D01* +X406840D01* +X407840Y-56144D01* +Y-59144D01* +Y-56144D01* +X408839Y-55145D01* +X409839Y-56144D01* +Y-59144D01* +X411838D02* +X413838D01* +X412838D01* +Y-55145D01* +X411838D01* +X416837Y-59144D02* +X418836D01* +X417836D01* +Y-53145D01* +X416837D01* +X421835Y-59144D02* +X423835Y-57144D01* +Y-55145D01* +X421835Y-53145D01* +X268881Y-68146D02* +X272880D01* +Y-69145D01* +X268881Y-73144D01* +Y-74144D01* +X278878Y-68146D02* +X274879D01* +Y-71144D01* +X276878Y-70145D01* +X277878D01* +X278878Y-71144D01* +Y-73144D01* +X277878Y-74144D01* +X275879D01* +X274879Y-73144D01* +X286875Y-68146D02* +X290874D01* +X288875D01* +Y-74144D01* +X293873D02* +X295872D01* +X296872Y-73144D01* +Y-71144D01* +X295872Y-70145D01* +X293873D01* +X292873Y-71144D01* +Y-73144D01* +X293873Y-74144D01* +X299871Y-69145D02* +Y-70145D01* +X298871D01* +X300871D01* +X299871D01* +Y-73144D01* +X300871Y-74144D01* +X304869Y-70145D02* +X306869D01* +X307869Y-71144D01* +Y-74144D01* +X304869D01* +X303870Y-73144D01* +X304869Y-72144D01* +X307869D01* +X309868Y-74144D02* +X311867D01* +X310868D01* +Y-68146D01* +X309868D01* +X268881Y20855D02* +X269881Y21855D01* +X271880D01* +X272880Y20855D01* +Y19855D01* +X271880Y18856D01* +X270880D01* +X271880D01* +X272880Y17856D01* +Y16856D01* +X271880Y15856D01* +X269881D01* +X268881Y16856D01* +X277878Y15856D02* +Y21855D01* +X274879Y18856D01* +X278878D01* +X272880Y6854D02* +X270880Y5855D01* +X268881Y3855D01* +Y1856D01* +X269881Y856D01* +X271880D01* +X272880Y1856D01* +Y2856D01* +X271880Y3855D01* +X268881D01* +X272880Y-14144D02* +X268881D01* +X272880Y-10145D01* +Y-9145D01* +X271880Y-8145D01* +X269881D01* +X268881Y-9145D01* +X271880Y-29144D02* +Y-23145D01* +X268881Y-26144D01* +X272880D01* +Y-44144D02* +X268881D01* +X272880Y-40145D01* +Y-39145D01* +X271880Y-38146D01* +X269881D01* +X268881Y-39145D01* +X278878Y-38146D02* +X274879D01* +Y-41144D01* +X276878Y-40145D01* +X277878D01* +X278878Y-41144D01* +Y-43144D01* +X277878Y-44144D01* +X275879D01* +X274879Y-43144D01* +X271880Y-59144D02* +Y-53145D01* +X268881Y-56144D01* +X272880D01* +X557470Y138998D02* +Y133000D01* +X560469D01* +X561468Y134000D01* +Y134999D01* +X560469Y135999D01* +X557470D01* +X560469D01* +X561468Y136999D01* +Y137998D01* +X560469Y138998D01* +X557470D01* +X564467Y133000D02* +X566467D01* +X567466Y134000D01* +Y135999D01* +X566467Y136999D01* +X564467D01* +X563468Y135999D01* +Y134000D01* +X564467Y133000D01* +X570465Y136999D02* +X572465D01* +X573464Y135999D01* +Y133000D01* +X570465D01* +X569466Y134000D01* +X570465Y134999D01* +X573464D01* +X575464Y136999D02* +Y133000D01* +Y134999D01* +X576464Y135999D01* +X577463Y136999D01* +X578463D01* +X585461Y138998D02* +Y133000D01* +X582462D01* +X581462Y134000D01* +Y135999D01* +X582462Y136999D01* +X585461D01* +X593458Y138998D02* +Y133000D01* +X597457D01* +X600456Y136999D02* +X602455D01* +X603455Y135999D01* +Y133000D01* +X600456D01* +X599456Y134000D01* +X600456Y134999D01* +X603455D01* +X605454Y136999D02* +Y134000D01* +X606454Y133000D01* +X609453D01* +Y132000D01* +X608453Y131001D01* +X607453D01* +X609453Y133000D02* +Y136999D01* +X614451Y133000D02* +X612452D01* +X611452Y134000D01* +Y135999D01* +X612452Y136999D01* +X614451D01* +X615451Y135999D01* +Y134999D01* +X611452D01* +X617450Y136999D02* +Y133000D01* +Y134999D01* +X618450Y135999D01* +X619450Y136999D01* +X620449D01* +X633445Y137998D02* +X632445Y138998D01* +X630446D01* +X629446Y137998D01* +Y136999D01* +X630446Y135999D01* +X632445D01* +X633445Y134999D01* +Y134000D01* +X632445Y133000D01* +X630446D01* +X629446Y134000D01* +X636444Y137998D02* +Y136999D01* +X635444D01* +X637444D01* +X636444D01* +Y134000D01* +X637444Y133000D01* +X641442Y136999D02* +X643442D01* +X644442Y135999D01* +Y133000D01* +X641442D01* +X640443Y134000D01* +X641442Y134999D01* +X644442D01* +X650440Y136999D02* +X647440D01* +X646441Y135999D01* +Y134000D01* +X647440Y133000D01* +X650440D01* +X652439D02* +Y138998D01* +Y134999D02* +X655438Y136999D01* +X652439Y134999D02* +X655438Y133000D01* +X500484Y113998D02* +X501483Y114998D01* +X503482D01* +X504482Y113998D01* +Y112999D01* +X503482Y111999D01* +X502483D01* +X503482D01* +X504482Y110999D01* +Y110000D01* +X503482Y109000D01* +X501483D01* +X500484Y110000D01* +X506482Y109000D02* +Y110000D01* +X507481D01* +Y109000D01* +X506482D01* +X515479Y114998D02* +X511480D01* +Y111999D01* +X513479Y112999D01* +X514479D01* +X515479Y111999D01* +Y110000D01* +X514479Y109000D01* +X512480D01* +X511480Y110000D01* +X503482Y85000D02* +Y90998D01* +X500484Y87999D01* +X504482D01* +X506482Y85000D02* +Y86000D01* +X507481D01* +Y85000D01* +X506482D01* +X511480Y89998D02* +X512480Y90998D01* +X514479D01* +X515479Y89998D01* +Y88999D01* +X514479Y87999D01* +X515479Y86999D01* +Y86000D01* +X514479Y85000D01* +X512480D01* +X511480Y86000D01* +Y86999D01* +X512480Y87999D01* +X511480Y88999D01* +Y89998D01* +X512480Y87999D02* +X514479D01* +X500484Y65998D02* +X501483Y66998D01* +X503482D01* +X504482Y65998D01* +Y64999D01* +X503482Y63999D01* +X502483D01* +X503482D01* +X504482Y62999D01* +Y62000D01* +X503482Y61000D01* +X501483D01* +X500484Y62000D01* +X506482Y61000D02* +Y62000D01* +X507481D01* +Y61000D01* +X506482D01* +X515479Y66998D02* +X511480D01* +Y63999D01* +X513479Y64999D01* +X514479D01* +X515479Y63999D01* +Y62000D01* +X514479Y61000D01* +X512480D01* +X511480Y62000D01* +X504482Y137998D02* +X503482Y138998D01* +X501483D01* +X500484Y137998D01* +Y134000D01* +X501483Y133000D01* +X503482D01* +X504482Y134000D01* +X507481Y133000D02* +X509481D01* +X510480Y134000D01* +Y135999D01* +X509481Y136999D01* +X507481D01* +X506482Y135999D01* +Y134000D01* +X507481Y133000D01* +X512480D02* +Y136999D01* +X515479D01* +X516478Y135999D01* +Y133000D01* +X518478D02* +X521477D01* +X522476Y134000D01* +X521477Y134999D01* +X519477D01* +X518478Y135999D01* +X519477Y136999D01* +X522476D01* +X525475Y137998D02* +Y136999D01* +X524476D01* +X526475D01* +X525475D01* +Y134000D01* +X526475Y133000D01* +X530474Y136999D02* +X532473D01* +X533473Y135999D01* +Y133000D01* +X530474D01* +X529474Y134000D01* +X530474Y134999D01* +X533473D01* +X535472Y133000D02* +Y136999D01* +X538471D01* +X539471Y135999D01* +Y133000D01* +X542470Y137998D02* +Y136999D01* +X541470D01* +X543470D01* +X542470D01* +Y134000D01* +X543470Y133000D01* +X435500Y113998D02* +X436500Y114998D01* +X438499D01* +X439499Y113998D01* +Y110000D01* +X438499Y109000D01* +X436500D01* +X435500Y110000D01* +Y113998D01* +X441498Y109000D02* +Y110000D01* +X442498D01* +Y109000D01* +X441498D01* +X446496Y113998D02* +X447496Y114998D01* +X449496D01* +X450495Y113998D01* +Y110000D01* +X449496Y109000D01* +X447496D01* +X446496Y110000D01* +Y113998D01* +X452494Y109000D02* +X454494D01* +X453494D01* +Y114998D01* +X452494Y113998D01* +X457493D02* +X458493Y114998D01* +X460492D01* +X461492Y113998D01* +Y110000D01* +X460492Y109000D01* +X458493D01* +X457493Y110000D01* +Y113998D01* +X463491Y109000D02* +Y112999D01* +X464491D01* +X465490Y111999D01* +Y109000D01* +Y111999D01* +X466490Y112999D01* +X467490Y111999D01* +Y109000D01* +X469489D02* +Y112999D01* +X470489D01* +X471488Y111999D01* +Y109000D01* +Y111999D01* +X472488Y112999D01* +X473488Y111999D01* +Y109000D01* +X435500Y101998D02* +X436500Y102998D01* +X438499D01* +X439499Y101998D01* +Y98000D01* +X438499Y97000D01* +X436500D01* +X435500Y98000D01* +Y101998D01* +X441498Y97000D02* +Y98000D01* +X442498D01* +Y97000D01* +X441498D01* +X446496Y101998D02* +X447496Y102998D01* +X449496D01* +X450495Y101998D01* +Y98000D01* +X449496Y97000D01* +X447496D01* +X446496Y98000D01* +Y101998D01* +X452494D02* +X453494Y102998D01* +X455493D01* +X456493Y101998D01* +Y100999D01* +X455493Y99999D01* +X454494D01* +X455493D01* +X456493Y98999D01* +Y98000D01* +X455493Y97000D01* +X453494D01* +X452494Y98000D01* +X462491Y102998D02* +X460492Y101998D01* +X458493Y99999D01* +Y98000D01* +X459492Y97000D01* +X461492D01* +X462491Y98000D01* +Y98999D01* +X461492Y99999D01* +X458493D01* +X464491Y97000D02* +Y100999D01* +X465490D01* +X466490Y99999D01* +Y97000D01* +Y99999D01* +X467490Y100999D01* +X468489Y99999D01* +Y97000D01* +X470489D02* +Y100999D01* +X471488D01* +X472488Y99999D01* +Y97000D01* +Y99999D01* +X473488Y100999D01* +X474487Y99999D01* +Y97000D01* +X435500Y89998D02* +X436500Y90998D01* +X438499D01* +X439499Y89998D01* +Y86000D01* +X438499Y85000D01* +X436500D01* +X435500Y86000D01* +Y89998D01* +X441498Y85000D02* +Y86000D01* +X442498D01* +Y85000D01* +X441498D01* +X446496Y89998D02* +X447496Y90998D01* +X449496D01* +X450495Y89998D01* +Y88999D01* +X449496Y87999D01* +X448496D01* +X449496D01* +X450495Y86999D01* +Y86000D01* +X449496Y85000D01* +X447496D01* +X446496Y86000D01* +X456493Y85000D02* +X452494D01* +X456493Y88999D01* +Y89998D01* +X455493Y90998D01* +X453494D01* +X452494Y89998D01* +X458493D02* +X459492Y90998D01* +X461492D01* +X462491Y89998D01* +Y86000D01* +X461492Y85000D01* +X459492D01* +X458493Y86000D01* +Y89998D01* +X464491Y85000D02* +Y88999D01* +X465490D01* +X466490Y87999D01* +Y85000D01* +Y87999D01* +X467490Y88999D01* +X468489Y87999D01* +Y85000D01* +X470489D02* +Y88999D01* +X471488D01* +X472488Y87999D01* +Y85000D01* +Y87999D01* +X473488Y88999D01* +X474487Y87999D01* +Y85000D01* +X435500Y77998D02* +X436500Y78998D01* +X438499D01* +X439499Y77998D01* +Y74000D01* +X438499Y73000D01* +X436500D01* +X435500Y74000D01* +Y77998D01* +X441498Y73000D02* +Y74000D01* +X442498D01* +Y73000D01* +X441498D01* +X446496Y77998D02* +X447496Y78998D01* +X449496D01* +X450495Y77998D01* +Y74000D01* +X449496Y73000D01* +X447496D01* +X446496Y74000D01* +Y77998D01* +X452494D02* +X453494Y78998D01* +X455493D01* +X456493Y77998D01* +Y76999D01* +X455493Y75999D01* +X454494D01* +X455493D01* +X456493Y74999D01* +Y74000D01* +X455493Y73000D01* +X453494D01* +X452494Y74000D01* +X462491Y78998D02* +X460492Y77998D01* +X458493Y75999D01* +Y74000D01* +X459492Y73000D01* +X461492D01* +X462491Y74000D01* +Y74999D01* +X461492Y75999D01* +X458493D01* +X464491Y73000D02* +Y76999D01* +X465490D01* +X466490Y75999D01* +Y73000D01* +Y75999D01* +X467490Y76999D01* +X468489Y75999D01* +Y73000D01* +X470489D02* +Y76999D01* +X471488D01* +X472488Y75999D01* +Y73000D01* +Y75999D01* +X473488Y76999D01* +X474487Y75999D01* +Y73000D01* +X435500Y65998D02* +X436500Y66998D01* +X438499D01* +X439499Y65998D01* +Y62000D01* +X438499Y61000D01* +X436500D01* +X435500Y62000D01* +Y65998D01* +X441498Y61000D02* +Y62000D01* +X442498D01* +Y61000D01* +X441498D01* +X446496Y65998D02* +X447496Y66998D01* +X449496D01* +X450495Y65998D01* +Y62000D01* +X449496Y61000D01* +X447496D01* +X446496Y62000D01* +Y65998D01* +X452494Y61000D02* +X454494D01* +X453494D01* +Y66998D01* +X452494Y65998D01* +X457493D02* +X458493Y66998D01* +X460492D01* +X461492Y65998D01* +Y62000D01* +X460492Y61000D01* +X458493D01* +X457493Y62000D01* +Y65998D01* +X463491Y61000D02* +Y64999D01* +X464491D01* +X465490Y63999D01* +Y61000D01* +Y63999D01* +X466490Y64999D01* +X467490Y63999D01* +Y61000D01* +X469489D02* +Y64999D01* +X470489D01* +X471488Y63999D01* +Y61000D01* +Y63999D01* +X472488Y64999D01* +X473488Y63999D01* +Y61000D01* +X435500Y138998D02* +X439499D01* +X437499D01* +Y133000D01* +X441498Y138998D02* +Y133000D01* +Y135999D01* +X442498Y136999D01* +X444497D01* +X445497Y135999D01* +Y133000D01* +X447496D02* +X449496D01* +X448496D01* +Y136999D01* +X447496D01* +X456493D02* +X453494D01* +X452494Y135999D01* +Y134000D01* +X453494Y133000D01* +X456493D01* +X458493D02* +Y138998D01* +Y134999D02* +X461492Y136999D01* +X458493Y134999D02* +X461492Y133000D01* +X464491D02* +Y136999D01* +X467490D01* +X468489Y135999D01* +Y133000D01* +X473488D02* +X471488D01* +X470489Y134000D01* +Y135999D01* +X471488Y136999D01* +X473488D01* +X474487Y135999D01* +Y134999D01* +X470489D01* +X476487Y133000D02* +X479486D01* +X480485Y134000D01* +X479486Y134999D01* +X477486D01* +X476487Y135999D01* +X477486Y136999D01* +X480485D01* +X482485Y133000D02* +X485484D01* +X486483Y134000D01* +X485484Y134999D01* +X483485D01* +X482485Y135999D01* +X483485Y136999D01* +X486483D01* +X353522Y113998D02* +X352522Y114998D01* +X350523D01* +X349523Y113998D01* +Y112999D01* +X350523Y111999D01* +X352522D01* +X353522Y110999D01* +Y110000D01* +X352522Y109000D01* +X350523D01* +X349523Y110000D01* +X356521Y109000D02* +X358520D01* +X359520Y110000D01* +Y111999D01* +X358520Y112999D01* +X356521D01* +X355521Y111999D01* +Y110000D01* +X356521Y109000D01* +X361519D02* +X363519D01* +X362519D01* +Y114998D01* +X361519D01* +X370516D02* +Y109000D01* +X367517D01* +X366518Y110000D01* +Y111999D01* +X367517Y112999D01* +X370516D01* +X375515Y109000D02* +X373516D01* +X372516Y110000D01* +Y111999D01* +X373516Y112999D01* +X375515D01* +X376515Y111999D01* +Y110999D01* +X372516D01* +X378514Y112999D02* +Y109000D01* +Y110999D01* +X379514Y111999D01* +X380513Y112999D01* +X381513D01* +X390510Y109000D02* +Y114998D01* +X393509D01* +X394509Y113998D01* +Y111999D01* +X393509Y110999D01* +X390510D01* +X392509D02* +X394509Y109000D01* +X399507D02* +X397508D01* +X396508Y110000D01* +Y111999D01* +X397508Y112999D01* +X399507D01* +X400507Y111999D01* +Y110999D01* +X396508D01* +X402506Y109000D02* +X405505D01* +X406505Y110000D01* +X405505Y110999D01* +X403506D01* +X402506Y111999D01* +X403506Y112999D01* +X406505D01* +X408504Y109000D02* +X410504D01* +X409504D01* +Y112999D01* +X408504D01* +X413503Y109000D02* +X416502D01* +X417501Y110000D01* +X416502Y110999D01* +X414502D01* +X413503Y111999D01* +X414502Y112999D01* +X417501D01* +X420500Y113998D02* +Y112999D01* +X419501D01* +X421500D01* +X420500D01* +Y110000D01* +X421500Y109000D01* +X353522Y90998D02* +X349523D01* +Y87999D01* +X351523D01* +X349523D01* +Y85000D01* +X355521D02* +Y90998D01* +X358520D01* +X359520Y89998D01* +Y87999D01* +X358520Y86999D01* +X355521D01* +X357521D02* +X359520Y85000D01* +X361519Y87999D02* +X365518D01* +X370516Y85000D02* +Y90998D01* +X367517Y87999D01* +X371516D01* +X353522Y65998D02* +X352522Y66998D01* +X350523D01* +X349523Y65998D01* +Y64999D01* +X350523Y63999D01* +X352522D01* +X353522Y62999D01* +Y62000D01* +X352522Y61000D01* +X350523D01* +X349523Y62000D01* +X356521Y61000D02* +X358520D01* +X359520Y62000D01* +Y63999D01* +X358520Y64999D01* +X356521D01* +X355521Y63999D01* +Y62000D01* +X356521Y61000D01* +X361519D02* +X363519D01* +X362519D01* +Y66998D01* +X361519D01* +X370516D02* +Y61000D01* +X367517D01* +X366518Y62000D01* +Y63999D01* +X367517Y64999D01* +X370516D01* +X375515Y61000D02* +X373516D01* +X372516Y62000D01* +Y63999D01* +X373516Y64999D01* +X375515D01* +X376515Y63999D01* +Y62999D01* +X372516D01* +X378514Y64999D02* +Y61000D01* +Y62999D01* +X379514Y63999D01* +X380513Y64999D01* +X381513D01* +X390510Y61000D02* +Y66998D01* +X393509D01* +X394509Y65998D01* +Y63999D01* +X393509Y62999D01* +X390510D01* +X392509D02* +X394509Y61000D01* +X399507D02* +X397508D01* +X396508Y62000D01* +Y63999D01* +X397508Y64999D01* +X399507D01* +X400507Y63999D01* +Y62999D01* +X396508D01* +X402506Y61000D02* +X405505D01* +X406505Y62000D01* +X405505Y62999D01* +X403506D01* +X402506Y63999D01* +X403506Y64999D01* +X406505D01* +X408504Y61000D02* +X410504D01* +X409504D01* +Y64999D01* +X408504D01* +X413503Y61000D02* +X416502D01* +X417501Y62000D01* +X416502Y62999D01* +X414502D01* +X413503Y63999D01* +X414502Y64999D01* +X417501D01* +X420500Y65998D02* +Y64999D01* +X419501D01* +X421500D01* +X420500D01* +Y62000D01* +X421500Y61000D01* +X349523Y133000D02* +Y138998D01* +X351523Y136999D01* +X353522Y138998D01* +Y133000D01* +X356521Y136999D02* +X358520D01* +X359520Y135999D01* +Y133000D01* +X356521D01* +X355521Y134000D01* +X356521Y134999D01* +X359520D01* +X362519Y137998D02* +Y136999D01* +X361519D01* +X363519D01* +X362519D01* +Y134000D01* +X363519Y133000D01* +X369517D02* +X367517D01* +X366518Y134000D01* +Y135999D01* +X367517Y136999D01* +X369517D01* +X370516Y135999D01* +Y134999D01* +X366518D01* +X372516Y136999D02* +Y133000D01* +Y134999D01* +X373516Y135999D01* +X374515Y136999D01* +X375515D01* +X378514Y133000D02* +X380513D01* +X379514D01* +Y136999D01* +X378514D01* +X384512D02* +X386511D01* +X387511Y135999D01* +Y133000D01* +X384512D01* +X383512Y134000D01* +X384512Y134999D01* +X387511D01* +X389510Y133000D02* +X391510D01* +X390510D01* +Y138998D01* +X389510D01* +X256549Y126998D02* +X260548D01* +X258548D01* +Y121000D01* +X263547D02* +X265546D01* +X266546Y122000D01* +Y123999D01* +X265546Y124999D01* +X263547D01* +X262547Y123999D01* +Y122000D01* +X263547Y121000D01* +X268545Y119001D02* +Y124999D01* +X271544D01* +X272544Y123999D01* +Y122000D01* +X271544Y121000D01* +X268545D01* +X283540Y126998D02* +X281541D01* +X280541Y125998D01* +Y122000D01* +X281541Y121000D01* +X283540D01* +X284540Y122000D01* +Y125998D01* +X283540Y126998D01* +X286539Y124999D02* +X288539Y121000D01* +X290538Y124999D01* +X295536Y121000D02* +X293537D01* +X292537Y122000D01* +Y123999D01* +X293537Y124999D01* +X295536D01* +X296536Y123999D01* +Y122999D01* +X292537D01* +X298535Y124999D02* +Y121000D01* +Y122999D01* +X299535Y123999D01* +X300535Y124999D01* +X301534D01* +X304533Y121000D02* +X306533D01* +X305533D01* +Y126998D01* +X304533D01* +X310531Y124999D02* +X312531D01* +X313530Y123999D01* +Y121000D01* +X310531D01* +X309532Y122000D01* +X310531Y122999D01* +X313530D01* +X315530Y124999D02* +Y122000D01* +X316529Y121000D01* +X319529D01* +Y120000D01* +X318529Y119001D01* +X317529D01* +X319529Y121000D02* +Y124999D01* +X256549Y114998D02* +X260548D01* +X258548D01* +Y109000D01* +X263547D02* +X265546D01* +X266546Y110000D01* +Y111999D01* +X265546Y112999D01* +X263547D01* +X262547Y111999D01* +Y110000D01* +X263547Y109000D01* +X268545Y107001D02* +Y112999D01* +X271544D01* +X272544Y111999D01* +Y110000D01* +X271544Y109000D01* +X268545D01* +X284540Y113998D02* +X283540Y114998D01* +X281541D01* +X280541Y113998D01* +Y112999D01* +X281541Y111999D01* +X283540D01* +X284540Y110999D01* +Y110000D01* +X283540Y109000D01* +X281541D01* +X280541Y110000D01* +X287539Y109000D02* +X289538D01* +X290538Y110000D01* +Y111999D01* +X289538Y112999D01* +X287539D01* +X286539Y111999D01* +Y110000D01* +X287539Y109000D01* +X292537D02* +X294536D01* +X293537D01* +Y114998D01* +X292537D01* +X301534D02* +Y109000D01* +X298535D01* +X297536Y110000D01* +Y111999D01* +X298535Y112999D01* +X301534D01* +X306533Y109000D02* +X304533D01* +X303534Y110000D01* +Y111999D01* +X304533Y112999D01* +X306533D01* +X307532Y111999D01* +Y110999D01* +X303534D01* +X309532Y112999D02* +Y109000D01* +Y110999D01* +X310531Y111999D01* +X311531Y112999D01* +X312531D01* +X256549Y102998D02* +X260548D01* +X258548D01* +Y97000D01* +X263547D02* +X265546D01* +X266546Y98000D01* +Y99999D01* +X265546Y100999D01* +X263547D01* +X262547Y99999D01* +Y98000D01* +X263547Y97000D01* +X268545Y95001D02* +Y100999D01* +X271544D01* +X272544Y99999D01* +Y98000D01* +X271544Y97000D01* +X268545D01* +X280541Y102998D02* +Y97000D01* +X284540D01* +X287539Y100999D02* +X289538D01* +X290538Y99999D01* +Y97000D01* +X287539D01* +X286539Y98000D01* +X287539Y98999D01* +X290538D01* +X292537Y100999D02* +Y98000D01* +X293537Y97000D01* +X296536D01* +Y96000D01* +X295536Y95001D01* +X294536D01* +X296536Y97000D02* +Y100999D01* +X301534Y97000D02* +X299535D01* +X298535Y98000D01* +Y99999D01* +X299535Y100999D01* +X301534D01* +X302534Y99999D01* +Y98999D01* +X298535D01* +X304533Y100999D02* +Y97000D01* +Y98999D01* +X305533Y99999D01* +X306533Y100999D01* +X307532D01* +X256549Y90998D02* +Y85000D01* +X259548D01* +X260548Y86000D01* +Y89998D01* +X259548Y90998D01* +X256549D01* +X262547Y85000D02* +X264546D01* +X263547D01* +Y88999D01* +X262547D01* +X270544Y85000D02* +X268545D01* +X267545Y86000D01* +Y87999D01* +X268545Y88999D01* +X270544D01* +X271544Y87999D01* +Y86999D01* +X267545D01* +X273543Y85000D02* +X275543D01* +X274543D01* +Y90998D01* +X273543D01* +X281541Y85000D02* +X279541D01* +X278542Y86000D01* +Y87999D01* +X279541Y88999D01* +X281541D01* +X282540Y87999D01* +Y86999D01* +X278542D01* +X288539Y88999D02* +X285540D01* +X284540Y87999D01* +Y86000D01* +X285540Y85000D01* +X288539D01* +X291537Y89998D02* +Y88999D01* +X290538D01* +X292537D01* +X291537D01* +Y86000D01* +X292537Y85000D01* +X295536Y88999D02* +Y85000D01* +Y86999D01* +X296536Y87999D01* +X297536Y88999D01* +X298535D01* +X301534Y85000D02* +X303534D01* +X302534D01* +Y88999D01* +X301534D01* +X310531D02* +X307532D01* +X306533Y87999D01* +Y86000D01* +X307532Y85000D01* +X310531D01* +X318529D02* +X320528D01* +X319529D01* +Y90998D01* +X318529Y89998D01* +X256549Y78998D02* +Y73000D01* +X259548D01* +X260548Y74000D01* +Y74999D01* +X259548Y75999D01* +X256549D01* +X259548D01* +X260548Y76999D01* +Y77998D01* +X259548Y78998D01* +X256549D01* +X263547Y73000D02* +X265546D01* +X266546Y74000D01* +Y75999D01* +X265546Y76999D01* +X263547D01* +X262547Y75999D01* +Y74000D01* +X263547Y73000D01* +X269545Y77998D02* +Y76999D01* +X268545D01* +X270544D01* +X269545D01* +Y74000D01* +X270544Y73000D01* +X274543Y77998D02* +Y76999D01* +X273543D01* +X275543D01* +X274543D01* +Y74000D01* +X275543Y73000D01* +X279541D02* +X281541D01* +X282540Y74000D01* +Y75999D01* +X281541Y76999D01* +X279541D01* +X278542Y75999D01* +Y74000D01* +X279541Y73000D01* +X284540D02* +Y76999D01* +X285540D01* +X286539Y75999D01* +Y73000D01* +Y75999D01* +X287539Y76999D01* +X288539Y75999D01* +Y73000D01* +X296536Y78998D02* +Y73000D01* +X300535D01* +X303534Y76999D02* +X305533D01* +X306533Y75999D01* +Y73000D01* +X303534D01* +X302534Y74000D01* +X303534Y74999D01* +X306533D01* +X308532Y76999D02* +Y74000D01* +X309532Y73000D01* +X312531D01* +Y72000D01* +X311531Y71001D01* +X310531D01* +X312531Y73000D02* +Y76999D01* +X317529Y73000D02* +X315530D01* +X314530Y74000D01* +Y75999D01* +X315530Y76999D01* +X317529D01* +X318529Y75999D01* +Y74999D01* +X314530D01* +X320528Y76999D02* +Y73000D01* +Y74999D01* +X321528Y75999D01* +X322528Y76999D01* +X323527D01* +X256549Y66998D02* +Y61000D01* +X259548D01* +X260548Y62000D01* +Y62999D01* +X259548Y63999D01* +X256549D01* +X259548D01* +X260548Y64999D01* +Y65998D01* +X259548Y66998D01* +X256549D01* +X263547Y61000D02* +X265546D01* +X266546Y62000D01* +Y63999D01* +X265546Y64999D01* +X263547D01* +X262547Y63999D01* +Y62000D01* +X263547Y61000D01* +X269545Y65998D02* +Y64999D01* +X268545D01* +X270544D01* +X269545D01* +Y62000D01* +X270544Y61000D01* +X274543Y65998D02* +Y64999D01* +X273543D01* +X275543D01* +X274543D01* +Y62000D01* +X275543Y61000D01* +X279541D02* +X281541D01* +X282540Y62000D01* +Y63999D01* +X281541Y64999D01* +X279541D01* +X278542Y63999D01* +Y62000D01* +X279541Y61000D01* +X284540D02* +Y64999D01* +X285540D01* +X286539Y63999D01* +Y61000D01* +Y63999D01* +X287539Y64999D01* +X288539Y63999D01* +Y61000D01* +X300535Y65998D02* +X299535Y66998D01* +X297536D01* +X296536Y65998D01* +Y64999D01* +X297536Y63999D01* +X299535D01* +X300535Y62999D01* +Y62000D01* +X299535Y61000D01* +X297536D01* +X296536Y62000D01* +X303534Y61000D02* +X305533D01* +X306533Y62000D01* +Y63999D01* +X305533Y64999D01* +X303534D01* +X302534Y63999D01* +Y62000D01* +X303534Y61000D01* +X308532D02* +X310531D01* +X309532D01* +Y66998D01* +X308532D01* +X317529D02* +Y61000D01* +X314530D01* +X313530Y62000D01* +Y63999D01* +X314530Y64999D01* +X317529D01* +X322528Y61000D02* +X320528D01* +X319529Y62000D01* +Y63999D01* +X320528Y64999D01* +X322528D01* +X323527Y63999D01* +Y62999D01* +X319529D01* +X325526Y64999D02* +Y61000D01* +Y62999D01* +X326526Y63999D01* +X327526Y64999D01* +X328526D01* +X256549Y54998D02* +Y49000D01* +X259548D01* +X260548Y50000D01* +Y50999D01* +X259548Y51999D01* +X256549D01* +X259548D01* +X260548Y52999D01* +Y53998D01* +X259548Y54998D01* +X256549D01* +X263547Y49000D02* +X265546D01* +X266546Y50000D01* +Y51999D01* +X265546Y52999D01* +X263547D01* +X262547Y51999D01* +Y50000D01* +X263547Y49000D01* +X269545Y53998D02* +Y52999D01* +X268545D01* +X270544D01* +X269545D01* +Y50000D01* +X270544Y49000D01* +X274543Y53998D02* +Y52999D01* +X273543D01* +X275543D01* +X274543D01* +Y50000D01* +X275543Y49000D01* +X279541D02* +X281541D01* +X282540Y50000D01* +Y51999D01* +X281541Y52999D01* +X279541D01* +X278542Y51999D01* +Y50000D01* +X279541Y49000D01* +X284540D02* +Y52999D01* +X285540D01* +X286539Y51999D01* +Y49000D01* +Y51999D01* +X287539Y52999D01* +X288539Y51999D01* +Y49000D01* +X299535Y54998D02* +X297536D01* +X296536Y53998D01* +Y50000D01* +X297536Y49000D01* +X299535D01* +X300535Y50000D01* +Y53998D01* +X299535Y54998D01* +X302534Y52999D02* +X304533Y49000D01* +X306533Y52999D01* +X311531Y49000D02* +X309532D01* +X308532Y50000D01* +Y51999D01* +X309532Y52999D01* +X311531D01* +X312531Y51999D01* +Y50999D01* +X308532D01* +X314530Y52999D02* +Y49000D01* +Y50999D01* +X315530Y51999D01* +X316529Y52999D01* +X317529D01* +X320528Y49000D02* +X322528D01* +X321528D01* +Y54998D01* +X320528D01* +X326526Y52999D02* +X328526D01* +X329525Y51999D01* +Y49000D01* +X326526D01* +X325526Y50000D01* +X326526Y50999D01* +X329525D01* +X331525Y52999D02* +Y50000D01* +X332524Y49000D01* +X335523D01* +Y48000D01* +X334524Y47001D01* +X333524D01* +X335523Y49000D02* +Y52999D01* +X256549Y133000D02* +Y138998D01* +X260548Y133000D01* +Y138998D01* +X263547Y136999D02* +X265546D01* +X266546Y135999D01* +Y133000D01* +X263547D01* +X262547Y134000D01* +X263547Y134999D01* +X266546D01* +X268545Y133000D02* +Y136999D01* +X269545D01* +X270544Y135999D01* +Y133000D01* +Y135999D01* +X271544Y136999D01* +X272544Y135999D01* +Y133000D01* +X277542D02* +X275543D01* +X274543Y134000D01* +Y135999D01* +X275543Y136999D01* +X277542D01* +X278542Y135999D01* +Y134999D01* +X274543D01* +X215558Y97000D02* +X217557D01* +X216557D01* +Y102998D01* +X215558Y101998D01* +X219556Y73000D02* +X215558D01* +X219556Y76999D01* +Y77998D01* +X218557Y78998D01* +X216557D01* +X215558Y77998D01* +Y138998D02* +Y133000D01* +X219556D01* +X222555Y136999D02* +X224555D01* +X225554Y135999D01* +Y133000D01* +X222555D01* +X221556Y134000D01* +X222555Y134999D01* +X225554D01* +X227554Y136999D02* +Y134000D01* +X228553Y133000D01* +X231552D01* +Y132000D01* +X230553Y131001D01* +X229553D01* +X231552Y133000D02* +Y136999D01* +X236551Y133000D02* +X234551D01* +X233552Y134000D01* +Y135999D01* +X234551Y136999D01* +X236551D01* +X237550Y135999D01* +Y134999D01* +X233552D01* +X239550Y136999D02* +Y133000D01* +Y134999D01* +X240549Y135999D01* +X241549Y136999D01* +X242549D01* +D14* +X115101Y-7260D02* +Y-11259D01* +X118100D01* +X117100Y-9260D01* +Y-8260D01* +X118100Y-7260D01* +X120099D01* +X121099Y-8260D01* +Y-10259D01* +X120099Y-11259D01* +X115101Y-1262D02* +Y-5261D01* +X118100D01* +X117100Y-3262D01* +Y-2262D01* +X118100Y-1262D01* +X120099D01* +X121099Y-2262D01* +Y-4261D01* +X120099Y-5261D01* +X121099Y737D02* +X120099D01* +Y1737D01* +X121099D01* +Y737D01* +X115101Y9734D02* +Y5736D01* +X118100D01* +X117100Y7735D01* +Y8734D01* +X118100Y9734D01* +X120099D01* +X121099Y8734D01* +Y6735D01* +X120099Y5736D01* +X121099Y14733D02* +X115101D01* +X118100Y11733D01* +Y15732D01* +X-12097Y-116599D02* +Y-110601D01* +X-15096Y-113600D01* +X-11097D01* +X-9098Y-111601D02* +X-8098Y-110601D01* +X-6099D01* +X-5099Y-111601D01* +Y-112600D01* +X-6099Y-113600D01* +X-5099Y-114600D01* +Y-115599D01* +X-6099Y-116599D01* +X-8098D01* +X-9098Y-115599D01* +Y-114600D01* +X-8098Y-113600D01* +X-9098Y-112600D01* +Y-111601D01* +X-8098Y-113600D02* +X-6099D01* +X-3100Y-116599D02* +Y-115599D01* +X-2100D01* +Y-116599D01* +X-3100D01* +X4898D02* +Y-110601D01* +X1899Y-113600D01* +X5898D01* +X7897Y-111601D02* +X8897Y-110601D01* +X10896D01* +X11896Y-111601D01* +Y-115599D01* +X10896Y-116599D01* +X8897D01* +X7897Y-115599D01* +Y-111601D01* +D83* +X-8000Y-14000D02* +G03* +X-8000Y-14000I-1000J0D01* +G01* +Y-34000D02* +G03* +X-8000Y-34000I-1000J0D01* +G01* +X-19400Y-47100D02* +Y-46600D01* +X-18900Y-46100D01* +X-19400Y-45600D02* +X-18900Y-46100D01* +X-19400Y-45600D02* +Y-45100D01* +X-18900D01* +X-18400Y-45600D01* +X-17900Y-45100D01* +X-17400D01* +Y-45600D02* +Y-45100D01* +X-17900Y-46100D02* +X-17400Y-45600D01* +X-17900Y-46100D02* +X-17400Y-46600D01* +Y-47100D02* +Y-46600D01* +X-17900Y-47100D02* +X-17400D01* +X-18400Y-46600D02* +X-17900Y-47100D01* +X-18900D02* +X-18400Y-46600D01* +X-19400Y-47100D02* +X-18900D01* +X-14900D02* +Y-46600D01* +X-14400Y-46100D01* +X-14900Y-45600D02* +X-14400Y-46100D01* +X-14900Y-45600D02* +Y-45100D01* +X-14400D01* +X-13900Y-45600D01* +X-13400Y-45100D01* +X-12900D01* +Y-45600D02* +Y-45100D01* +X-13400Y-46100D02* +X-12900Y-45600D01* +X-13400Y-46100D02* +X-12900Y-46600D01* +Y-47100D02* +Y-46600D01* +X-13400Y-47100D02* +X-12900D01* +X-13900Y-46600D02* +X-13400Y-47100D01* +X-14400D02* +X-13900Y-46600D01* +X-14900Y-47100D02* +X-14400D01* +X-10400D02* +Y-46600D01* +X-9900Y-46100D01* +X-10400Y-45600D02* +X-9900Y-46100D01* +X-10400Y-45600D02* +Y-45100D01* +X-9900D01* +X-9400Y-45600D01* +X-8900Y-45100D01* +X-8400D01* +Y-45600D02* +Y-45100D01* +X-8900Y-46100D02* +X-8400Y-45600D01* +X-8900Y-46100D02* +X-8400Y-46600D01* +Y-47100D02* +Y-46600D01* +X-8900Y-47100D02* +X-8400D01* +X-9400Y-46600D02* +X-8900Y-47100D01* +X-9900D02* +X-9400Y-46600D01* +X-10400Y-47100D02* +X-9900D01* +X-4500Y-68000D02* +X-4000D01* +X-4500D02* +Y-67000D01* +X-4000D01* +Y-66500D01* +X-3000D01* +Y-67000D02* +Y-66500D01* +Y-67000D02* +X-2500D01* +Y-68000D02* +Y-67000D01* +X-3000Y-68000D02* +X-2500D01* +X-3000Y-68500D02* +Y-68000D01* +X-4000Y-68500D02* +X-3000D01* +X-4000D02* +Y-68000D01* +X25390Y-24500D02* +X25890D01* +X25390D02* +Y-23500D01* +X25890D01* +Y-23000D01* +X26890D01* +Y-23500D02* +Y-23000D01* +Y-23500D02* +X27390D01* +Y-24500D02* +Y-23500D01* +X26890Y-24500D02* +X27390D01* +X26890Y-25000D02* +Y-24500D01* +X25890Y-25000D02* +X26890D01* +X25890D02* +Y-24500D01* +X25390Y5500D02* +X25890D01* +X25390D02* +Y6500D01* +X25890D01* +Y7000D01* +X26890D01* +Y6500D02* +Y7000D01* +Y6500D02* +X27390D01* +Y5500D02* +Y6500D01* +X26890Y5500D02* +X27390D01* +X26890Y5000D02* +Y5500D01* +X25890Y5000D02* +X26890D01* +X25890D02* +Y5500D01* +X8000Y-71000D02* +X8500D01* +X8000D02* +Y-70000D01* +X8500D01* +Y-69500D01* +X9500D01* +Y-70000D02* +Y-69500D01* +Y-70000D02* +X10000D01* +Y-71000D02* +Y-70000D01* +X9500Y-71000D02* +X10000D01* +X9500Y-71500D02* +Y-71000D01* +X8500Y-71500D02* +X9500D01* +X8500D02* +Y-71000D01* +X-51000Y11000D02* +X-50500D01* +X-51000D02* +Y12000D01* +X-50500D01* +Y12500D01* +X-49500D01* +Y12000D02* +Y12500D01* +Y12000D02* +X-49000D01* +Y11000D02* +Y12000D01* +X-49500Y11000D02* +X-49000D01* +X-49500Y10500D02* +Y11000D01* +X-50500Y10500D02* +X-49500D01* +X-50500D02* +Y11000D01* +X-65500Y82000D02* +X-65000D01* +X-65500D02* +Y83000D01* +X-65000D01* +Y83500D01* +X-64000D01* +Y83000D02* +Y83500D01* +Y83000D02* +X-63500D01* +Y82000D02* +Y83000D01* +X-64000Y82000D02* +X-63500D01* +X-64000Y81500D02* +Y82000D01* +X-65000Y81500D02* +X-64000D01* +X-65000D02* +Y82000D01* +X28850Y-61850D02* +X29350D01* +X28850D02* +Y-60850D01* +X29350D01* +Y-60350D01* +X30350D01* +Y-60850D02* +Y-60350D01* +Y-60850D02* +X30850D01* +Y-61850D02* +Y-60850D01* +X30350Y-61850D02* +X30850D01* +X30350Y-62350D02* +Y-61850D01* +X29350Y-62350D02* +X30350D01* +X29350D02* +Y-61850D01* +X66150Y-76500D02* +X66650D01* +X66150D02* +Y-75500D01* +X66650D01* +Y-75000D01* +X67650D01* +Y-75500D02* +Y-75000D01* +Y-75500D02* +X68150D01* +Y-76500D02* +Y-75500D01* +X67650Y-76500D02* +X68150D01* +X67650Y-77000D02* +Y-76500D01* +X66650Y-77000D02* +X67650D01* +X66650D02* +Y-76500D01* +X37000Y7500D02* +X37500D01* +X37000D02* +Y8500D01* +X37500D01* +Y9000D01* +X38500D01* +Y8500D02* +Y9000D01* +Y8500D02* +X39000D01* +Y7500D02* +Y8500D01* +X38500Y7500D02* +X39000D01* +X38500Y7000D02* +Y7500D01* +X37500Y7000D02* +X38500D01* +X37500D02* +Y7500D01* +X-18500Y-24500D02* +X-18000D01* +X-18500D02* +Y-23500D01* +X-18000D01* +Y-23000D01* +X-17000D01* +Y-23500D02* +Y-23000D01* +Y-23500D02* +X-16500D01* +Y-24500D02* +Y-23500D01* +X-17000Y-24500D02* +X-16500D01* +X-17000Y-25000D02* +Y-24500D01* +X-18000Y-25000D02* +X-17000D01* +X-18000D02* +Y-24500D01* +X-14500D02* +X-14000D01* +X-14500D02* +Y-23500D01* +X-14000D01* +Y-23000D01* +X-13000D01* +Y-23500D02* +Y-23000D01* +Y-23500D02* +X-12500D01* +Y-24500D02* +Y-23500D01* +X-13000Y-24500D02* +X-12500D01* +X-13000Y-25000D02* +Y-24500D01* +X-14000Y-25000D02* +X-13000D01* +X-14000D02* +Y-24500D01* +X-10500D02* +X-10000D01* +X-10500D02* +Y-23500D01* +X-10000D01* +Y-23000D01* +X-9000D01* +Y-23500D02* +Y-23000D01* +Y-23500D02* +X-8500D01* +Y-24500D02* +Y-23500D01* +X-9000Y-24500D02* +X-8500D01* +X-9000Y-25000D02* +Y-24500D01* +X-10000Y-25000D02* +X-9000D01* +X-10000D02* +Y-24500D01* +X-6500D02* +X-6000D01* +X-6500D02* +Y-23500D01* +X-6000D01* +Y-23000D01* +X-5000D01* +Y-23500D02* +Y-23000D01* +Y-23500D02* +X-4500D01* +Y-24500D02* +Y-23500D01* +X-5000Y-24500D02* +X-4500D01* +X-5000Y-25000D02* +Y-24500D01* +X-6000Y-25000D02* +X-5000D01* +X-6000D02* +Y-24500D01* +X-2000D02* +X-1500D01* +X-2000D02* +Y-23500D01* +X-1500D01* +Y-23000D01* +X-500D01* +Y-23500D02* +Y-23000D01* +Y-23500D02* +X0D01* +Y-24500D02* +Y-23500D01* +X-500Y-24500D02* +X0D01* +X-500Y-25000D02* +Y-24500D01* +X-1500Y-25000D02* +X-500D01* +X-1500D02* +Y-24500D01* +X-25500Y-6500D02* +X-25000D01* +X-25500D02* +Y-5500D01* +X-25000D01* +Y-5000D01* +X-24000D01* +Y-5500D02* +Y-5000D01* +Y-5500D02* +X-23500D01* +Y-6500D02* +Y-5500D01* +X-24000Y-6500D02* +X-23500D01* +X-24000Y-7000D02* +Y-6500D01* +X-25000Y-7000D02* +X-24000D01* +X-25000D02* +Y-6500D01* +X-76748Y-20500D02* +X-76248D01* +X-76748D02* +Y-19500D01* +X-76248D01* +Y-19000D01* +X-75248D01* +Y-19500D02* +Y-19000D01* +Y-19500D02* +X-74748D01* +Y-20500D02* +Y-19500D01* +X-75248Y-20500D02* +X-74748D01* +X-75248Y-21000D02* +Y-20500D01* +X-76248Y-21000D02* +X-75248D01* +X-76248D02* +Y-20500D01* +X-76748Y-15500D02* +X-76248D01* +X-76748D02* +Y-14500D01* +X-76248D01* +Y-14000D01* +X-75248D01* +Y-14500D02* +Y-14000D01* +Y-14500D02* +X-74748D01* +Y-15500D02* +Y-14500D01* +X-75248Y-15500D02* +X-74748D01* +X-75248Y-16000D02* +Y-15500D01* +X-76248Y-16000D02* +X-75248D01* +X-76248D02* +Y-15500D01* +X-76748Y-25500D02* +X-76248D01* +X-76748D02* +Y-24500D01* +X-76248D01* +Y-24000D01* +X-75248D01* +Y-24500D02* +Y-24000D01* +Y-24500D02* +X-74748D01* +Y-25500D02* +Y-24500D01* +X-75248Y-25500D02* +X-74748D01* +X-75248Y-26000D02* +Y-25500D01* +X-76248Y-26000D02* +X-75248D01* +X-76248D02* +Y-25500D01* +X-71500D02* +X-71000D01* +X-71500D02* +Y-24500D01* +X-71000D01* +Y-24000D01* +X-70000D01* +Y-24500D02* +Y-24000D01* +Y-24500D02* +X-69500D01* +Y-25500D02* +Y-24500D01* +X-70000Y-25500D02* +X-69500D01* +X-70000Y-26000D02* +Y-25500D01* +X-71000Y-26000D02* +X-70000D01* +X-71000D02* +Y-25500D01* +X-71500Y-20500D02* +X-71000D01* +X-71500D02* +Y-19500D01* +X-71000D01* +Y-19000D01* +X-70000D01* +Y-19500D02* +Y-19000D01* +Y-19500D02* +X-69500D01* +Y-20500D02* +Y-19500D01* +X-70000Y-20500D02* +X-69500D01* +X-70000Y-21000D02* +Y-20500D01* +X-71000Y-21000D02* +X-70000D01* +X-71000D02* +Y-20500D01* +X-71500Y-15500D02* +X-71000D01* +X-71500D02* +Y-14500D01* +X-71000D01* +Y-14000D01* +X-70000D01* +Y-14500D02* +Y-14000D01* +Y-14500D02* +X-69500D01* +Y-15500D02* +Y-14500D01* +X-70000Y-15500D02* +X-69500D01* +X-70000Y-16000D02* +Y-15500D01* +X-71000Y-16000D02* +X-70000D01* +X-71000D02* +Y-15500D01* +X49000Y64500D02* +X49500D01* +X49000D02* +Y65500D01* +X49500D01* +Y66000D01* +X50500D01* +Y65500D02* +Y66000D01* +Y65500D02* +X51000D01* +Y64500D02* +Y65500D01* +X50500Y64500D02* +X51000D01* +X50500Y64000D02* +Y64500D01* +X49500Y64000D02* +X50500D01* +X49500D02* +Y64500D01* +X20000Y72000D02* +X20500D01* +X20000D02* +Y73000D01* +X20500D01* +Y73500D01* +X21500D01* +Y73000D02* +Y73500D01* +Y73000D02* +X22000D01* +Y72000D02* +Y73000D01* +X21500Y72000D02* +X22000D01* +X21500Y71500D02* +Y72000D01* +X20500Y71500D02* +X21500D01* +X20500D02* +Y72000D01* +X35226Y72274D02* +X35726D01* +X35226D02* +Y73274D01* +X35726D01* +Y73774D01* +X36726D01* +Y73274D02* +Y73774D01* +Y73274D02* +X37226D01* +Y72274D02* +Y73274D01* +X36726Y72274D02* +X37226D01* +X36726Y71774D02* +Y72274D01* +X35726Y71774D02* +X36726D01* +X35726D02* +Y72274D01* +X55500Y7500D02* +X56000D01* +X55500D02* +Y8500D01* +X56000D01* +Y9000D01* +X57000D01* +Y8500D02* +Y9000D01* +Y8500D02* +X57500D01* +Y7500D02* +Y8500D01* +X57000Y7500D02* +X57500D01* +X57000Y7000D02* +Y7500D01* +X56000Y7000D02* +X57000D01* +X56000D02* +Y7500D01* +X-85000Y74000D02* +X-84500D01* +X-85000D02* +Y75000D01* +X-84500D01* +Y75500D01* +X-83500D01* +Y75000D02* +Y75500D01* +Y75000D02* +X-83000D01* +Y74000D02* +Y75000D01* +X-83500Y74000D02* +X-83000D01* +X-83500Y73500D02* +Y74000D01* +X-84500Y73500D02* +X-83500D01* +X-84500D02* +Y74000D01* +X-84000Y56000D02* +X-83500D01* +X-84000D02* +Y57000D01* +X-83500D01* +Y57500D01* +X-82500D01* +Y57000D02* +Y57500D01* +Y57000D02* +X-82000D01* +Y56000D02* +Y57000D01* +X-82500Y56000D02* +X-82000D01* +X-82500Y55500D02* +Y56000D01* +X-83500Y55500D02* +X-82500D01* +X-83500D02* +Y56000D01* +X43000Y-43000D02* +X43500D01* +X43000D02* +Y-42000D01* +X43500D01* +Y-41500D01* +X44500D01* +Y-42000D02* +Y-41500D01* +Y-42000D02* +X45000D01* +Y-43000D02* +Y-42000D01* +X44500Y-43000D02* +X45000D01* +X44500Y-43500D02* +Y-43000D01* +X43500Y-43500D02* +X44500D01* +X43500D02* +Y-43000D01* +X16500D02* +X17000D01* +X16500D02* +Y-42000D01* +X17000D01* +Y-41500D01* +X18000D01* +Y-42000D02* +Y-41500D01* +Y-42000D02* +X18500D01* +Y-43000D02* +Y-42000D01* +X18000Y-43000D02* +X18500D01* +X18000Y-43500D02* +Y-43000D01* +X17000Y-43500D02* +X18000D01* +X17000D02* +Y-43000D01* +X-10500Y-53000D02* +Y-52500D01* +X-10000Y-52000D01* +X-10500Y-51500D02* +X-10000Y-52000D01* +X-10500Y-51500D02* +Y-51000D01* +X-10000D01* +X-9500Y-51500D01* +X-9000Y-51000D01* +X-8500D01* +Y-51500D02* +Y-51000D01* +X-9000Y-52000D02* +X-8500Y-51500D01* +X-9000Y-52000D02* +X-8500Y-52500D01* +Y-53000D02* +Y-52500D01* +X-9000Y-53000D02* +X-8500D01* +X-9500Y-52500D02* +X-9000Y-53000D01* +X-10000D02* +X-9500Y-52500D01* +X-10500Y-53000D02* +X-10000D01* +X-15000D02* +Y-52500D01* +X-14500Y-52000D01* +X-15000Y-51500D02* +X-14500Y-52000D01* +X-15000Y-51500D02* +Y-51000D01* +X-14500D01* +X-14000Y-51500D01* +X-13500Y-51000D01* +X-13000D01* +Y-51500D02* +Y-51000D01* +X-13500Y-52000D02* +X-13000Y-51500D01* +X-13500Y-52000D02* +X-13000Y-52500D01* +Y-53000D02* +Y-52500D01* +X-13500Y-53000D02* +X-13000D01* +X-14000Y-52500D02* +X-13500Y-53000D01* +X-14500D02* +X-14000Y-52500D01* +X-15000Y-53000D02* +X-14500D01* +X-19500D02* +Y-52500D01* +X-19000Y-52000D01* +X-19500Y-51500D02* +X-19000Y-52000D01* +X-19500Y-51500D02* +Y-51000D01* +X-19000D01* +X-18500Y-51500D01* +X-18000Y-51000D01* +X-17500D01* +Y-51500D02* +Y-51000D01* +X-18000Y-52000D02* +X-17500Y-51500D01* +X-18000Y-52000D02* +X-17500Y-52500D01* +Y-53000D02* +Y-52500D01* +X-18000Y-53000D02* +X-17500D01* +X-18500Y-52500D02* +X-18000Y-53000D01* +X-19000D02* +X-18500Y-52500D01* +X-19500Y-53000D02* +X-19000D01* +X-3500Y67500D02* +X-3000D01* +X-3500D02* +Y68500D01* +X-3000D01* +Y69000D01* +X-2000D01* +Y68500D02* +Y69000D01* +Y68500D02* +X-1500D01* +Y67500D02* +Y68500D01* +X-2000Y67500D02* +X-1500D01* +X-2000Y67000D02* +Y67500D01* +X-3000Y67000D02* +X-2000D01* +X-3000D02* +Y67500D01* +X-159Y71500D02* +X341D01* +X-159D02* +Y72500D01* +X341D01* +Y73000D01* +X1341D01* +Y72500D02* +Y73000D01* +Y72500D02* +X1841D01* +Y71500D02* +Y72500D01* +X1341Y71500D02* +X1841D01* +X1341Y71000D02* +Y71500D01* +X341Y71000D02* +X1341D01* +X341D02* +Y71500D01* +X4000Y76500D02* +X4500D01* +X4000D02* +Y77500D01* +X4500D01* +Y78000D01* +X5500D01* +Y77500D02* +Y78000D01* +Y77500D02* +X6000D01* +Y76500D02* +Y77500D01* +X5500Y76500D02* +X6000D01* +X5500Y76000D02* +Y76500D01* +X4500Y76000D02* +X5500D01* +X4500D02* +Y76500D01* +X75000Y-23000D02* +X75500D01* +X75000D02* +Y-22000D01* +X75500D01* +Y-21500D01* +X76500D01* +Y-22000D02* +Y-21500D01* +Y-22000D02* +X77000D01* +Y-23000D02* +Y-22000D01* +X76500Y-23000D02* +X77000D01* +X76500Y-23500D02* +Y-23000D01* +X75500Y-23500D02* +X76500D01* +X75500D02* +Y-23000D01* +X68000Y1000D02* +X68500D01* +X68000D02* +Y2000D01* +X68500D01* +Y2500D01* +X69500D01* +Y2000D02* +Y2500D01* +Y2000D02* +X70000D01* +Y1000D02* +Y2000D01* +X69500Y1000D02* +X70000D01* +X69500Y500D02* +Y1000D01* +X68500Y500D02* +X69500D01* +X68500D02* +Y1000D01* +X69000Y40000D02* +X71000D01* +Y42000D01* +X69000D02* +X71000D01* +X69000Y40000D02* +Y42000D01* +Y50000D02* +X71000D01* +Y52000D01* +X69000D02* +X71000D01* +X69000Y50000D02* +Y52000D01* +Y60000D02* +X71000D01* +Y62000D01* +X69000D02* +X71000D01* +X69000Y60000D02* +Y62000D01* +Y70000D02* +X71000D01* +Y72000D01* +X69000D02* +X71000D01* +X69000Y70000D02* +Y72000D01* +X-37000Y-71000D02* +X-36000Y-69000D01* +X-38000D02* +X-36000D01* +X-38000D02* +X-37000Y-71000D01* +X-47000D02* +X-46000Y-69000D01* +X-48000D02* +X-46000D01* +X-48000D02* +X-47000Y-71000D01* +X81500Y40000D02* +X83500D01* +Y42000D01* +X81500D02* +X83500D01* +X81500Y40000D02* +Y42000D01* +Y50000D02* +X83500D01* +Y52000D01* +X81500D02* +X83500D01* +X81500Y50000D02* +Y52000D01* +Y60000D02* +X83500D01* +Y62000D01* +X81500D02* +X83500D01* +X81500Y60000D02* +Y62000D01* +Y70000D02* +X83500D01* +Y72000D01* +X81500D02* +X83500D01* +X81500Y70000D02* +Y72000D01* +X30500Y-95500D02* +X32500D01* +Y-93500D01* +X30500D02* +X32500D01* +X30500Y-95500D02* +Y-93500D01* +X40500Y-95500D02* +X42500D01* +Y-93500D01* +X40500D02* +X42500D01* +X40500Y-95500D02* +Y-93500D01* +X50500Y-95500D02* +X52500D01* +Y-93500D01* +X50500D02* +X52500D01* +X50500Y-95500D02* +Y-93500D01* +X60500Y-95500D02* +X62500D01* +Y-93500D01* +X60500D02* +X62500D01* +X60500Y-95500D02* +Y-93500D01* +X-62500Y-95500D02* +X-60500D01* +Y-93500D01* +X-62500D02* +X-60500D01* +X-62500Y-95500D02* +Y-93500D01* +X-52500Y-95500D02* +X-50500D01* +Y-93500D01* +X-52500D02* +X-50500D01* +X-52500Y-95500D02* +Y-93500D01* +X-36500Y-95500D02* +X-34500D01* +Y-93500D01* +X-36500D02* +X-34500D01* +X-36500Y-95500D02* +Y-93500D01* +X-26500Y-95500D02* +X-24500D01* +Y-93500D01* +X-26500D02* +X-24500D01* +X-26500Y-95500D02* +Y-93500D01* +X81500Y7000D02* +X83500D01* +Y9000D01* +X81500D02* +X83500D01* +X81500Y7000D02* +Y9000D01* +Y17000D02* +X83500D01* +Y19000D01* +X81500D02* +X83500D01* +X81500Y17000D02* +Y19000D01* +Y27000D02* +X83500D01* +Y29000D01* +X81500D02* +X83500D01* +X81500Y27000D02* +Y29000D01* +X77500Y-73500D02* +X78500Y-71500D01* +X76500D02* +X78500D01* +X76500D02* +X77500Y-73500D01* +X87500D02* +X88500Y-71500D01* +X86500D02* +X88500D01* +X86500D02* +X87500Y-73500D01* +X26000Y97500D02* +X28000D01* +Y99500D01* +X26000D02* +X28000D01* +X26000Y97500D02* +Y99500D01* +Y87500D02* +X28000D01* +Y89500D01* +X26000D02* +X28000D01* +X26000Y87500D02* +Y89500D01* +X36000Y97500D02* +X38000D01* +Y99500D01* +X36000D02* +X38000D01* +X36000Y97500D02* +Y99500D01* +Y87500D02* +X38000D01* +Y89500D01* +X36000D02* +X38000D01* +X36000Y87500D02* +Y89500D01* +X46000Y97500D02* +X48000D01* +Y99500D01* +X46000D02* +X48000D01* +X46000Y97500D02* +Y99500D01* +Y87500D02* +X48000D01* +Y89500D01* +X46000D02* +X48000D01* +X46000Y87500D02* +Y89500D01* +X84146Y101862D02* +X84646Y101362D01* +X83646Y101862D02* +X84146D01* +X83646D02* +X84146Y102362D01* +X83646Y102862D02* +X84146Y102362D01* +X83646Y102862D02* +X84146D01* +X84646Y103362D01* +X85146Y102862D01* +X85646D01* +X85146Y102362D02* +X85646Y102862D01* +X85146Y102362D02* +X85646Y101862D01* +X85146D02* +X85646D01* +X84646Y101362D02* +X85146Y101862D01* +X84146Y-94988D02* +X84646Y-95488D01* +X83646Y-94988D02* +X84146D01* +X83646D02* +X84146Y-94488D01* +X83646Y-93988D02* +X84146Y-94488D01* +X83646Y-93988D02* +X84146D01* +X84646Y-93488D01* +X85146Y-93988D01* +X85646D01* +X85146Y-94488D02* +X85646Y-93988D01* +X85146Y-94488D02* +X85646Y-94988D01* +X85146D02* +X85646D01* +X84646Y-95488D02* +X85146Y-94988D01* +X-85146D02* +X-84646Y-95488D01* +X-85646Y-94988D02* +X-85146D01* +X-85646D02* +X-85146Y-94488D01* +X-85646Y-93988D02* +X-85146Y-94488D01* +X-85646Y-93988D02* +X-85146D01* +X-84646Y-93488D01* +X-84146Y-93988D01* +X-83646D01* +X-84146Y-94488D02* +X-83646Y-93988D01* +X-84146Y-94488D02* +X-83646Y-94988D01* +X-84146D02* +X-83646D01* +X-84646Y-95488D02* +X-84146Y-94988D01* +X-85146Y101862D02* +X-84646Y101362D01* +X-85646Y101862D02* +X-85146D01* +X-85646D02* +X-85146Y102362D01* +X-85646Y102862D02* +X-85146Y102362D01* +X-85646Y102862D02* +X-85146D01* +X-84646Y103362D01* +X-84146Y102862D01* +X-83646D01* +X-84146Y102362D02* +X-83646Y102862D01* +X-84146Y102362D02* +X-83646Y101862D01* +X-84146D02* +X-83646D01* +X-84646Y101362D02* +X-84146Y101862D01* +D84* +X209294Y26356D02* +X692367D01* +X209294Y-63644D02* +X692367D01* +X209294Y-78644D02* +X692367D01* +Y41356D01* +X209294D02* +X692367D01* +X209294Y-78644D02* +Y41356D01* +X613287Y-78644D02* +Y41356D01* +X554302Y-78644D02* +Y41356D01* +X480922Y-78644D02* +Y41356D01* +X430335Y-78644D02* +Y41356D01* +X318367Y-78644D02* +Y41356D01* +X264381Y-78644D02* +Y41356D01* +X662438Y46000D02* +Y142000D01* +X550470Y118000D02* +X662438D01* +X550470Y106000D02* +X662438D01* +X550470Y94000D02* +X662438D01* +X550470Y82000D02* +X662438D01* +X550470Y70000D02* +X662438D01* +X550470Y58000D02* +X662438D01* +X550470Y46000D02* +X662438D01* +X550470D02* +Y142000D01* +X493483Y118000D02* +X550470D01* +X493483Y106000D02* +X550470D01* +X493483Y94000D02* +X550470D01* +X493483Y82000D02* +X550470D01* +X493483Y70000D02* +X550470D01* +X493483Y58000D02* +X550470D01* +X493483Y46000D02* +X550470D01* +X493483D02* +Y142000D01* +X428500Y118000D02* +X493483D01* +X428500Y106000D02* +X493483D01* +X428500Y94000D02* +X493483D01* +X428500Y82000D02* +X493483D01* +X428500Y70000D02* +X493483D01* +X428500Y58000D02* +X493483D01* +X428500Y46000D02* +X493483D01* +X428500D02* +Y142000D01* +X342523Y118000D02* +X428500D01* +X342523Y106000D02* +X428500D01* +X342523Y94000D02* +X428500D01* +X342523Y82000D02* +X428500D01* +X342523Y70000D02* +X428500D01* +X342523Y58000D02* +X428500D01* +X342523Y46000D02* +X428500D01* +X342523D02* +Y142000D01* +X249549Y118000D02* +X342523D01* +X249549Y106000D02* +X342523D01* +X249549Y94000D02* +X342523D01* +X249549Y82000D02* +X342523D01* +X249549Y70000D02* +X342523D01* +X249549Y58000D02* +X342523D01* +X249549Y46000D02* +X342523D01* +X249549D02* +Y142000D01* +X208558Y118000D02* +X249549D01* +X208558Y106000D02* +X249549D01* +X208558Y94000D02* +X249549D01* +X208558Y82000D02* +X249549D01* +X208558Y70000D02* +X249549D01* +X208558Y58000D02* +X249549D01* +X208558Y46000D02* +X249549D01* +X208558D02* +Y142000D01* +X662438D01* +X208558Y130000D02* +X662438D01* +D85* +X550470Y126032D02* +X554438Y130000D01* +X550470Y120032D02* +X560438Y130000D01* +X554438Y118000D02* +X566438Y130000D01* +X560438Y118000D02* +X572438Y130000D01* +X566438Y118000D02* +X578438Y130000D01* +X572438Y118000D02* +X584438Y130000D01* +X578438Y118000D02* +X590438Y130000D01* +X584438Y118000D02* +X596438Y130000D01* +X590438Y118000D02* +X602438Y130000D01* +X596438Y118000D02* +X608438Y130000D01* +X602438Y118000D02* +X614438Y130000D01* +X608438Y118000D02* +X620438Y130000D01* +X614438Y118000D02* +X626438Y130000D01* +X620438Y118000D02* +X632438Y130000D01* +X626438Y118000D02* +X638438Y130000D01* +X632438Y118000D02* +X644438Y130000D01* +X638438Y118000D02* +X650438Y130000D01* +X644438Y118000D02* +X656438Y130000D01* +X650438Y118000D02* +X662438Y130000D01* +X656438Y118000D02* +X662438Y124000D01* +X550470Y114032D02* +X554438Y118000D01* +X550470Y108032D02* +X560438Y118000D01* +X554438Y106000D02* +X566438Y118000D01* +X560438Y106000D02* +X572438Y118000D01* +X566438Y106000D02* +X578438Y118000D01* +X572438Y106000D02* +X584438Y118000D01* +X578438Y106000D02* +X590438Y118000D01* +X584438Y106000D02* +X596438Y118000D01* +X590438Y106000D02* +X602438Y118000D01* +X596438Y106000D02* +X608438Y118000D01* +X602438Y106000D02* +X614438Y118000D01* +X608438Y106000D02* +X620438Y118000D01* +X614438Y106000D02* +X626438Y118000D01* +X620438Y106000D02* +X632438Y118000D01* +X626438Y106000D02* +X638438Y118000D01* +X632438Y106000D02* +X644438Y118000D01* +X638438Y106000D02* +X650438Y118000D01* +X644438Y106000D02* +X656438Y118000D01* +X650438Y106000D02* +X662438Y118000D01* +X656438Y106000D02* +X662438Y112000D01* +X550470Y102032D02* +X554438Y106000D01* +X550470Y96032D02* +X560438Y106000D01* +X554438Y94000D02* +X566438Y106000D01* +X560438Y94000D02* +X572438Y106000D01* +X566438Y94000D02* +X578438Y106000D01* +X572438Y94000D02* +X584438Y106000D01* +X578438Y94000D02* +X590438Y106000D01* +X584438Y94000D02* +X596438Y106000D01* +X590438Y94000D02* +X602438Y106000D01* +X596438Y94000D02* +X608438Y106000D01* +X602438Y94000D02* +X614438Y106000D01* +X608438Y94000D02* +X620438Y106000D01* +X614438Y94000D02* +X626438Y106000D01* +X620438Y94000D02* +X632438Y106000D01* +X626438Y94000D02* +X638438Y106000D01* +X632438Y94000D02* +X644438Y106000D01* +X638438Y94000D02* +X650438Y106000D01* +X644438Y94000D02* +X656438Y106000D01* +X650438Y94000D02* +X662438Y106000D01* +X656438Y94000D02* +X662438Y100000D01* +X550470Y90032D02* +X554438Y94000D01* +X550470Y84032D02* +X560438Y94000D01* +X554438Y82000D02* +X566438Y94000D01* +X560438Y82000D02* +X572438Y94000D01* +X566438Y82000D02* +X578438Y94000D01* +X572438Y82000D02* +X584438Y94000D01* +X578438Y82000D02* +X590438Y94000D01* +X584438Y82000D02* +X596438Y94000D01* +X590438Y82000D02* +X602438Y94000D01* +X596438Y82000D02* +X608438Y94000D01* +X602438Y82000D02* +X614438Y94000D01* +X608438Y82000D02* +X620438Y94000D01* +X614438Y82000D02* +X626438Y94000D01* +X620438Y82000D02* +X632438Y94000D01* +X626438Y82000D02* +X638438Y94000D01* +X632438Y82000D02* +X644438Y94000D01* +X638438Y82000D02* +X650438Y94000D01* +X644438Y82000D02* +X656438Y94000D01* +X650438Y82000D02* +X662438Y94000D01* +X656438Y82000D02* +X662438Y88000D01* +X550470Y78032D02* +X554438Y82000D01* +X550470Y72032D02* +X560438Y82000D01* +X554438Y70000D02* +X566438Y82000D01* +X560438Y70000D02* +X572438Y82000D01* +X566438Y70000D02* +X578438Y82000D01* +X572438Y70000D02* +X584438Y82000D01* +X578438Y70000D02* +X590438Y82000D01* +X584438Y70000D02* +X596438Y82000D01* +X590438Y70000D02* +X602438Y82000D01* +X596438Y70000D02* +X608438Y82000D01* +X602438Y70000D02* +X614438Y82000D01* +X608438Y70000D02* +X620438Y82000D01* +X614438Y70000D02* +X626438Y82000D01* +X620438Y70000D02* +X632438Y82000D01* +X626438Y70000D02* +X638438Y82000D01* +X632438Y70000D02* +X644438Y82000D01* +X638438Y70000D02* +X650438Y82000D01* +X644438Y70000D02* +X656438Y82000D01* +X650438Y70000D02* +X662438Y82000D01* +X656438Y70000D02* +X662438Y76000D01* +X550470Y66032D02* +X554438Y70000D01* +X550470Y60032D02* +X560438Y70000D01* +X554438Y58000D02* +X566438Y70000D01* +X560438Y58000D02* +X572438Y70000D01* +X566438Y58000D02* +X578438Y70000D01* +X572438Y58000D02* +X584438Y70000D01* +X578438Y58000D02* +X590438Y70000D01* +X584438Y58000D02* +X596438Y70000D01* +X590438Y58000D02* +X602438Y70000D01* +X596438Y58000D02* +X608438Y70000D01* +X602438Y58000D02* +X614438Y70000D01* +X608438Y58000D02* +X620438Y70000D01* +X614438Y58000D02* +X626438Y70000D01* +X620438Y58000D02* +X632438Y70000D01* +X626438Y58000D02* +X638438Y70000D01* +X632438Y58000D02* +X644438Y70000D01* +X638438Y58000D02* +X650438Y70000D01* +X644438Y58000D02* +X656438Y70000D01* +X650438Y58000D02* +X662438Y70000D01* +X656438Y58000D02* +X662438Y64000D01* +X550470Y54032D02* +X554438Y58000D01* +X550470Y48032D02* +X560438Y58000D01* +X554438Y46000D02* +X566438Y58000D01* +X560438Y46000D02* +X572438Y58000D01* +X566438Y46000D02* +X578438Y58000D01* +X572438Y46000D02* +X584438Y58000D01* +X578438Y46000D02* +X590438Y58000D01* +X584438Y46000D02* +X596438Y58000D01* +X590438Y46000D02* +X602438Y58000D01* +X596438Y46000D02* +X608438Y58000D01* +X602438Y46000D02* +X614438Y58000D01* +X608438Y46000D02* +X620438Y58000D01* +X614438Y46000D02* +X626438Y58000D01* +X620438Y46000D02* +X632438Y58000D01* +X626438Y46000D02* +X638438Y58000D01* +X632438Y46000D02* +X644438Y58000D01* +X638438Y46000D02* +X650438Y58000D01* +X644438Y46000D02* +X656438Y58000D01* +X650438Y46000D02* +X662438Y58000D01* +X656438Y46000D02* +X662438Y52000D01* +D86* +X617787Y30856D02* +Y38054D01* +X621386D01* +X622586Y36854D01* +Y34455D01* +X621386Y33256D01* +X617787D01* +X626184Y35655D02* +X628584D01* +X629783Y34455D01* +Y30856D01* +X626184D01* +X624985Y32056D01* +X626184Y33256D01* +X629783D01* +X636981Y38054D02* +Y30856D01* +X633382D01* +X632183Y32056D01* +Y34455D01* +X633382Y35655D01* +X636981D01* +X651376Y36854D02* +X650177Y38054D01* +X647777D01* +X646578Y36854D01* +Y35655D01* +X647777Y34455D01* +X650177D01* +X651376Y33256D01* +Y32056D01* +X650177Y30856D01* +X647777D01* +X646578Y32056D01* +X653776Y38054D02* +Y30856D01* +Y34455D01* +X654975Y35655D01* +X657374D01* +X658574Y34455D01* +Y30856D01* +X662173Y35655D02* +X664572D01* +X665772Y34455D01* +Y30856D01* +X662173D01* +X660973Y32056D01* +X662173Y33256D01* +X665772D01* +X668171Y28457D02* +Y35655D01* +X671770D01* +X672969Y34455D01* +Y32056D01* +X671770Y30856D01* +X668171D01* +X678967D02* +X676568D01* +X675368Y32056D01* +Y34455D01* +X676568Y35655D01* +X678967D01* +X680167Y34455D01* +Y33256D01* +X675368D01* +X558802Y38054D02* +Y33256D01* +X561201Y30856D01* +X563601Y33256D01* +Y38054D01* +X566000Y30856D02* +X568399D01* +X567200D01* +Y35655D01* +X566000D01* +X573198D02* +X575597D01* +X576796Y34455D01* +Y30856D01* +X573198D01* +X571998Y32056D01* +X573198Y33256D01* +X576796D01* +X579196Y30856D02* +X583994Y35655D01* +X586393Y30856D02* +Y38054D01* +X589992D01* +X591192Y36854D01* +Y34455D01* +X589992Y33256D01* +X586393D01* +X594791Y35655D02* +X597190D01* +X598389Y34455D01* +Y30856D01* +X594791D01* +X593591Y32056D01* +X594791Y33256D01* +X598389D01* +X605587Y38054D02* +Y30856D01* +X601988D01* +X600789Y32056D01* +Y34455D01* +X601988Y35655D01* +X605587D01* +X485422Y38054D02* +Y30856D01* +Y34455D01* +X490220D01* +Y38054D01* +Y30856D01* +X493819D02* +X496219D01* +X497418Y32056D01* +Y34455D01* +X496219Y35655D01* +X493819D01* +X492620Y34455D01* +Y32056D01* +X493819Y30856D01* +X499817D02* +X502217D01* +X501017D01* +Y38054D01* +X499817D01* +X509414Y30856D02* +X507015D01* +X505816Y32056D01* +Y34455D01* +X507015Y35655D01* +X509414D01* +X510614Y34455D01* +Y33256D01* +X505816D01* +X520211Y38054D02* +X525009D01* +X522610D01* +Y30856D01* +X527409Y35655D02* +Y32056D01* +X528608Y30856D01* +X532207D01* +Y29657D01* +X531007Y28457D01* +X529808D01* +X532207Y30856D02* +Y35655D01* +X534606Y28457D02* +Y35655D01* +X538205D01* +X539405Y34455D01* +Y32056D01* +X538205Y30856D01* +X534606D01* +X545403D02* +X543003D01* +X541804Y32056D01* +Y34455D01* +X543003Y35655D01* +X545403D01* +X546602Y34455D01* +Y33256D01* +X541804D01* +X434834Y30856D02* +Y38054D01* +X438433D01* +X439633Y36854D01* +Y34455D01* +X438433Y33256D01* +X434834D01* +X442032Y30856D02* +X444431D01* +X443232D01* +Y38054D01* +X442032D01* +X449230Y35655D02* +X451629D01* +X452829Y34455D01* +Y30856D01* +X449230D01* +X448030Y32056D01* +X449230Y33256D01* +X452829D01* +X456427Y36854D02* +Y35655D01* +X455228D01* +X457627D01* +X456427D01* +Y32056D01* +X457627Y30856D01* +X464825D02* +X462426D01* +X461226Y32056D01* +Y34455D01* +X462426Y35655D01* +X464825D01* +X466024Y34455D01* +Y33256D01* +X461226D01* +X473222Y38054D02* +Y30856D01* +X469623D01* +X468424Y32056D01* +Y34455D01* +X469623Y35655D01* +X473222D01* +X322867Y38054D02* +Y30856D01* +Y34455D01* +X327666D01* +Y38054D01* +Y30856D01* +X331264D02* +X333664D01* +X334863Y32056D01* +Y34455D01* +X333664Y35655D01* +X331264D01* +X330065Y34455D01* +Y32056D01* +X331264Y30856D01* +X337263D02* +X339662D01* +X338462D01* +Y38054D01* +X337263D01* +X346859Y30856D02* +X344460D01* +X343261Y32056D01* +Y34455D01* +X344460Y35655D01* +X346859D01* +X348059Y34455D01* +Y33256D01* +X343261D01* +X362454Y36854D02* +X361255Y38054D01* +X358856D01* +X357656Y36854D01* +Y35655D01* +X358856Y34455D01* +X361255D01* +X362454Y33256D01* +Y32056D01* +X361255Y30856D01* +X358856D01* +X357656Y32056D01* +X364854Y30856D02* +X367253D01* +X366053D01* +Y35655D01* +X364854D01* +X370852D02* +X375650D01* +X370852Y30856D01* +X375650D01* +X381648D02* +X379249D01* +X378049Y32056D01* +Y34455D01* +X379249Y35655D01* +X381648D01* +X382848Y34455D01* +Y33256D01* +X378049D01* +X273679Y36854D02* +X272480Y38054D01* +X270081D01* +X268881Y36854D01* +Y32056D01* +X270081Y30856D01* +X272480D01* +X273679Y32056D01* +X277278Y30856D02* +X279678D01* +X280877Y32056D01* +Y34455D01* +X279678Y35655D01* +X277278D01* +X276079Y34455D01* +Y32056D01* +X277278Y30856D01* +X283276Y35655D02* +Y32056D01* +X284476Y30856D01* +X288075D01* +Y35655D01* +X290474Y30856D02* +Y35655D01* +X294073D01* +X295272Y34455D01* +Y30856D01* +X298871Y36854D02* +Y35655D01* +X297672D01* +X300071D01* +X298871D01* +Y32056D01* +X300071Y30856D01* +X223092Y36854D02* +X221892Y38054D01* +X219493D01* +X218293Y36854D01* +Y35655D01* +X219493Y34455D01* +X221892D01* +X223092Y33256D01* +Y32056D01* +X221892Y30856D01* +X219493D01* +X218293Y32056D01* +X225491Y35655D02* +Y32056D01* +X226691Y30856D01* +X230290D01* +Y29657D01* +X229090Y28457D01* +X227890D01* +X230290Y30856D02* +Y35655D01* +X232689Y30856D02* +Y35655D01* +X233889D01* +X235088Y34455D01* +Y30856D01* +Y34455D01* +X236288Y35655D01* +X237487Y34455D01* +Y30856D01* +X239886Y38054D02* +Y30856D01* +X243485D01* +X244685Y32056D01* +Y33256D01* +Y34455D01* +X243485Y35655D01* +X239886D01* +X248284Y30856D02* +X250683D01* +X251883Y32056D01* +Y34455D01* +X250683Y35655D01* +X248284D01* +X247084Y34455D01* +Y32056D01* +X248284Y30856D01* +X254282D02* +X256681D01* +X255482D01* +Y38054D01* +X254282D01* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GG1 b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GG1 new file mode 100644 index 0000000..7897e49 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GG1 @@ -0,0 +1,318 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=128* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +%ADD83C,0.00200*% +D83* +X-90551Y102362D02* +X-78740D01* +X-84646Y96457D02* +Y108268D01* +X-90551Y-94488D02* +X-78740D01* +X-84646Y-100394D02* +Y-88583D01* +X78740Y-94488D02* +X90551D01* +X84646Y-100394D02* +Y-88583D01* +X78740Y102362D02* +X90551D01* +X84646Y96457D02* +Y108268D01* +X45228Y88500D02* +X48772D01* +X47000Y86728D02* +Y90272D01* +X45228Y98500D02* +X48772D01* +X47000Y96728D02* +Y100272D01* +X35228Y88500D02* +X38772D01* +X37000Y86728D02* +Y90272D01* +X35228Y98500D02* +X38772D01* +X37000Y96728D02* +Y100272D01* +X25228Y88500D02* +X28772D01* +X27000Y86728D02* +Y90272D01* +X25228Y98500D02* +X28772D01* +X27000Y96728D02* +Y100272D01* +X85925Y-72500D02* +X89075D01* +X87500Y-74075D02* +Y-70925D01* +X75925Y-72500D02* +X79075D01* +X77500Y-74075D02* +Y-70925D01* +X-10500Y-34000D02* +X-7500D01* +X-9000Y-35500D02* +Y-32500D01* +X-10500Y-14000D02* +X-7500D01* +X-9000Y-15500D02* +Y-12500D01* +X80728Y28000D02* +X84272D01* +X82500Y26228D02* +Y29772D01* +X80728Y18000D02* +X84272D01* +X82500Y16228D02* +Y19772D01* +X80728Y8000D02* +X84272D01* +X82500Y6228D02* +Y9772D01* +X-27272Y-94500D02* +X-23728D01* +X-25500Y-96272D02* +Y-92728D01* +X-37272Y-94500D02* +X-33728D01* +X-35500Y-96272D02* +Y-92728D01* +X-53272Y-94500D02* +X-49728D01* +X-51500Y-96272D02* +Y-92728D01* +X-63272Y-94500D02* +X-59728D01* +X-61500Y-96272D02* +Y-92728D01* +X59728Y-94500D02* +X63272D01* +X61500Y-96272D02* +Y-92728D01* +X49728Y-94500D02* +X53272D01* +X51500Y-96272D02* +Y-92728D01* +X39728Y-94500D02* +X43272D01* +X41500Y-96272D02* +Y-92728D01* +X29728Y-94500D02* +X33272D01* +X31500Y-96272D02* +Y-92728D01* +X80728Y71000D02* +X84272D01* +X82500Y69228D02* +Y72772D01* +X80728Y61000D02* +X84272D01* +X82500Y59228D02* +Y62772D01* +X80728Y51000D02* +X84272D01* +X82500Y49228D02* +Y52772D01* +X80728Y41000D02* +X84272D01* +X82500Y39228D02* +Y42772D01* +X-48575Y-70000D02* +X-45425D01* +X-47000Y-71575D02* +Y-68425D01* +X-38575Y-70000D02* +X-35425D01* +X-37000Y-71575D02* +Y-68425D01* +X68228Y71000D02* +X71772D01* +X70000Y69228D02* +Y72772D01* +X68228Y61000D02* +X71772D01* +X70000Y59228D02* +Y62772D01* +X68228Y51000D02* +X71772D01* +X70000Y49228D02* +Y52772D01* +X68228Y41000D02* +X71772D01* +X70000Y39228D02* +Y42772D01* +X68213Y1500D02* +X69787D01* +X69000Y713D02* +Y2287D01* +X75213Y-22500D02* +X76787D01* +X76000Y-23287D02* +Y-21713D01* +X4213Y77000D02* +X5787D01* +X5000Y76213D02* +Y77787D01* +X53Y72000D02* +X1628D01* +X841Y71213D02* +Y72787D01* +X-3287Y68000D02* +X-1713D01* +X-2500Y67213D02* +Y68787D01* +X-19681Y-52000D02* +X-17319D01* +X-18500Y-53181D02* +Y-50819D01* +X-15181Y-52000D02* +X-12819D01* +X-14000Y-53181D02* +Y-50819D01* +X-10681Y-52000D02* +X-8319D01* +X-9500Y-53181D02* +Y-50819D01* +X16713Y-42500D02* +X18287D01* +X17500Y-43287D02* +Y-41713D01* +X43213Y-42500D02* +X44787D01* +X44000Y-43287D02* +Y-41713D01* +X-83787Y56500D02* +X-82213D01* +X-83000Y55713D02* +Y57287D01* +X-84787Y74500D02* +X-83213D01* +X-84000Y73713D02* +Y75287D01* +X55713Y8000D02* +X57287D01* +X56500Y7213D02* +Y8787D01* +X35439Y72774D02* +X37013D01* +X36226Y71987D02* +Y73561D01* +X20213Y72500D02* +X21787D01* +X21000Y71713D02* +Y73287D01* +X49213Y65000D02* +X50787D01* +X50000Y64213D02* +Y65787D01* +X-71287Y-15000D02* +X-69713D01* +X-70500Y-15787D02* +Y-14213D01* +X-71287Y-20000D02* +X-69713D01* +X-70500Y-20787D02* +Y-19213D01* +X-71287Y-25000D02* +X-69713D01* +X-70500Y-25787D02* +Y-24213D01* +X-76535Y-25000D02* +X-74961D01* +X-75748Y-25787D02* +Y-24213D01* +X-76535Y-15000D02* +X-74961D01* +X-75748Y-15787D02* +Y-14213D01* +X-76535Y-20000D02* +X-74961D01* +X-75748Y-20787D02* +Y-19213D01* +X-25287Y-6000D02* +X-23713D01* +X-24500Y-6787D02* +Y-5213D01* +X-1787Y-24000D02* +X-213D01* +X-1000Y-24787D02* +Y-23213D01* +X-6287Y-24000D02* +X-4713D01* +X-5500Y-24787D02* +Y-23213D01* +X-10287Y-24000D02* +X-8713D01* +X-9500Y-24787D02* +Y-23213D01* +X-14287Y-24000D02* +X-12713D01* +X-13500Y-24787D02* +Y-23213D01* +X-18287Y-24000D02* +X-16713D01* +X-17500Y-24787D02* +Y-23213D01* +X37213Y8000D02* +X38787D01* +X38000Y7213D02* +Y8787D01* +X66362Y-76000D02* +X67937D01* +X67150Y-76787D02* +Y-75213D01* +X29063Y-61350D02* +X30638D01* +X29850Y-62138D02* +Y-60563D01* +X-65287Y82500D02* +X-63713D01* +X-64500Y81713D02* +Y83287D01* +X-50787Y11500D02* +X-49213D01* +X-50000Y10713D02* +Y12287D01* +X8213Y-70500D02* +X9787D01* +X9000Y-71287D02* +Y-69713D01* +X25602Y6000D02* +X27177D01* +X26390Y5213D02* +Y6787D01* +X25602Y-24000D02* +X27177D01* +X26390Y-24787D02* +Y-23213D01* +X-4287Y-67500D02* +X-2713D01* +X-3500Y-68287D02* +Y-66713D01* +X-10581Y-46100D02* +X-8219D01* +X-9400Y-47281D02* +Y-44919D01* +X-15081Y-46100D02* +X-12719D01* +X-13900Y-47281D02* +Y-44919D01* +X-19581Y-46100D02* +X-17219D01* +X-18400Y-47281D02* +Y-44919D01* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GKO b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GKO new file mode 100644 index 0000000..7c039da --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GKO @@ -0,0 +1,66 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=16711935* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +%ADD82C,0.00394*% +D82* +X95276Y105299D02* +G03* +X87402Y113173I-7874J0D01* +G01* +X23500Y113173D02* +G03* +X15626Y105299I0J-7874D01* +G01* +X-60000D02* +G03* +X-67874Y113173I-7874J0D01* +G01* +X-87402D02* +G03* +X-95276Y105299I0J-7874D01* +G01* +Y-97626D02* +G03* +X-87402Y-105500I7874J0D01* +G01* +X87402D02* +G03* +X95276Y-97626I0J7874D01* +G01* +X13657Y85532D02* +G03* +X15626Y87500I0J1969D01* +G01* +X-60000D02* +G03* +X-58031Y85532I1969J0D01* +G01* +X-95276Y105299D02* +X-95276Y-97626D01* +X-60000Y87500D02* +Y105299D01* +X-87402Y-105500D02* +X87402Y-105500D01* +X15626Y87500D02* +Y105299D01* +X23500Y113173D02* +X87402Y113173D01* +X-58031Y85532D02* +X13657D01* +X-87402Y113173D02* +X-67874D01* +X95276Y105299D02* +X95276Y-97626D01* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTL b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTL new file mode 100644 index 0000000..30e01e2 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTL @@ -0,0 +1,1785 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Physical_Order=1* +G04 Layer_Color=255* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +%ADD17R,0.03543X0.03799*% +%ADD18R,0.06102X0.05118*% +%ADD19R,0.03150X0.02165*% +%ADD20R,0.03799X0.03543*% +%ADD21R,0.02756X0.03543*% +%ADD22R,0.03937X0.01968*% +%ADD23O,0.03937X0.01968*% +%ADD24R,0.03543X0.02756*% +%ADD25R,0.05276X0.07087*% +%ADD26R,0.12598X0.05906*% +%ADD27R,0.07087X0.05276*% +%ADD28R,0.03543X0.03150*% +%ADD29R,0.05906X0.03543*% +%ADD30R,0.03543X0.05906*% +%ADD31R,0.17362X0.16142*% +%ADD32R,0.02362X0.05118*% +%ADD33R,0.23622X0.07874*% +%ADD34R,0.07874X0.03543*% +%ADD35R,0.31496X0.39370*% +%ADD64C,0.01968*% +%ADD65C,0.01181*% +%ADD66C,0.05118*% +%ADD67C,0.02756*% +%ADD68C,0.03150*% +%ADD69C,0.02362*% +%ADD70C,0.03937*% +%ADD71C,0.13780*% +%ADD72R,0.05906X0.05906*% +%ADD73C,0.05906*% +%ADD74C,0.04724*% +%ADD75R,0.04724X0.04724*% +%ADD76C,0.06000*% +%ADD77R,0.05906X0.05906*% +%ADD78R,0.05906X0.07874*% +%ADD79O,0.05906X0.07874*% +%ADD80C,0.03150*% +%ADD81C,0.03937*% +G36* +X-7500Y-97500D02* +X-28500D01* +Y-59500D01* +X-7500D01* +Y-97500D01* +D02* +G37* +G36* +Y-54500D02* +X-20500D01* +Y-44000D01* +X-7500D01* +Y-54500D01* +D02* +G37* +G36* +X-128312Y-93243D02* +Y-94152D01* +X-128918D01* +Y-93270D01* +X-129800Y-91798D01* +X-129112D01* +X-128601Y-92708D01* +X-128110Y-91798D01* +X-127444D01* +X-128312Y-93243D01* +D02* +G37* +G36* +X-123783Y-91801D02* +X-123725Y-91804D01* +X-123665Y-91809D01* +X-123603Y-91815D01* +X-123545Y-91823D01* +X-123540D01* +X-123532Y-91826D01* +X-123521Y-91828D01* +X-123491Y-91834D01* +X-123452Y-91845D01* +X-123412Y-91859D01* +X-123362Y-91878D01* +X-123313Y-91899D01* +X-123264Y-91927D01* +X-123261D01* +X-123259Y-91930D01* +X-123242Y-91940D01* +X-123218Y-91960D01* +X-123188Y-91981D01* +X-123155Y-92011D01* +X-123119Y-92047D01* +X-123087Y-92088D01* +X-123054Y-92132D01* +Y-92134D01* +X-123051Y-92137D01* +X-123046Y-92145D01* +X-123040Y-92153D01* +X-123029Y-92181D01* +X-123013Y-92219D01* +X-122999Y-92263D01* +X-122986Y-92317D01* +X-122977Y-92377D01* +X-122975Y-92445D01* +Y-92448D01* +Y-92456D01* +Y-92470D01* +X-122977Y-92489D01* +Y-92511D01* +X-122980Y-92538D01* +X-122986Y-92566D01* +X-122991Y-92596D01* +X-123005Y-92664D01* +X-123027Y-92735D01* +X-123057Y-92806D01* +X-123076Y-92839D01* +X-123098Y-92871D01* +Y-92874D01* +X-123103Y-92879D01* +X-123111Y-92888D01* +X-123119Y-92899D01* +X-123147Y-92929D01* +X-123185Y-92967D01* +X-123234Y-93010D01* +X-123294Y-93054D01* +X-123362Y-93101D01* +X-123442Y-93144D01* +X-122655Y-94152D01* +X-123398D01* +X-124037Y-93289D01* +X-124315D01* +Y-94152D01* +X-124921D01* +Y-91798D01* +X-123832D01* +X-123783Y-91801D01* +D02* +G37* +G36* +X-125429Y-92254D02* +X-126524D01* +Y-92658D01* +X-125508D01* +Y-93114D01* +X-126524D01* +Y-93696D01* +X-125429D01* +Y-94152D01* +X-127130D01* +Y-91798D01* +X-125429D01* +Y-92254D01* +D02* +G37* +G36* +X-129852Y-94152D02* +X-130480D01* +X-130643Y-93677D01* +X-131511D01* +X-131675Y-94152D01* +X-132287D01* +X-131419Y-91798D01* +X-130722D01* +X-129852Y-94152D01* +D02* +G37* +G36* +X-133480Y-93696D02* +X-132391D01* +Y-94152D01* +X-134086D01* +Y-91798D01* +X-133480D01* +Y-93696D01* +D02* +G37* +G36* +X-136486Y-91801D02* +X-136434Y-91804D01* +X-136374Y-91809D01* +X-136311Y-91815D01* +X-136248Y-91826D01* +X-136188Y-91839D01* +X-136185D01* +X-136180Y-91842D01* +X-136172D01* +X-136161Y-91848D01* +X-136133Y-91856D01* +X-136095Y-91867D01* +X-136054Y-91883D01* +X-136008Y-91905D01* +X-135961Y-91927D01* +X-135915Y-91954D01* +X-135912D01* +X-135909Y-91960D01* +X-135890Y-91970D01* +X-135866Y-91992D01* +X-135833Y-92020D01* +X-135800Y-92052D01* +X-135762Y-92093D01* +X-135727Y-92142D01* +X-135697Y-92194D01* +Y-92197D01* +X-135694Y-92200D01* +X-135688Y-92208D01* +X-135686Y-92219D01* +X-135678Y-92235D01* +X-135672Y-92252D01* +X-135658Y-92293D01* +X-135645Y-92342D01* +X-135631Y-92402D01* +X-135623Y-92467D01* +X-135620Y-92541D01* +Y-92544D01* +Y-92549D01* +Y-92557D01* +Y-92568D01* +X-135623Y-92582D01* +Y-92598D01* +X-135628Y-92639D01* +X-135634Y-92686D01* +X-135645Y-92740D01* +X-135658Y-92795D01* +X-135678Y-92852D01* +Y-92855D01* +X-135680Y-92858D01* +X-135683Y-92866D01* +X-135688Y-92877D01* +X-135699Y-92904D01* +X-135718Y-92940D01* +X-135740Y-92980D01* +X-135768Y-93022D01* +X-135800Y-93062D01* +X-135836Y-93103D01* +X-135839Y-93106D01* +X-135841Y-93109D01* +X-135849Y-93117D01* +X-135860Y-93125D01* +X-135888Y-93150D01* +X-135926Y-93182D01* +X-135972Y-93215D01* +X-136027Y-93251D01* +X-136087Y-93283D01* +X-136150Y-93314D01* +X-136153D01* +X-136158Y-93316D01* +X-136166Y-93319D01* +X-136180Y-93325D01* +X-136196Y-93330D01* +X-136218Y-93335D01* +X-136243Y-93344D01* +X-136267Y-93349D01* +X-136297Y-93354D01* +X-136330Y-93363D01* +X-136365Y-93368D01* +X-136404Y-93374D01* +X-136488Y-93382D01* +X-136581Y-93385D01* +X-136958D01* +Y-94152D01* +X-137564D01* +Y-91798D01* +X-136507D01* +X-136486Y-91801D01* +D02* +G37* +G36* +X-140679Y-92254D02* +X-141413D01* +Y-94152D01* +X-142019D01* +Y-92254D01* +X-142754D01* +Y-91798D01* +X-140679D01* +Y-92254D01* +D02* +G37* +G36* +X-139186Y-91752D02* +X-139147Y-91755D01* +X-139098Y-91760D01* +X-139044Y-91766D01* +X-138984Y-91777D01* +X-138918Y-91790D01* +X-138847Y-91809D01* +X-138776Y-91831D01* +X-138702Y-91856D01* +X-138629Y-91888D01* +X-138555Y-91927D01* +X-138484Y-91970D01* +X-138416Y-92022D01* +X-138353Y-92080D01* +X-138350Y-92082D01* +X-138339Y-92096D01* +X-138323Y-92115D01* +X-138301Y-92140D01* +X-138276Y-92172D01* +X-138249Y-92213D01* +X-138222Y-92263D01* +X-138189Y-92314D01* +X-138159Y-92377D01* +X-138132Y-92443D01* +X-138104Y-92516D01* +X-138080Y-92598D01* +X-138058Y-92683D01* +X-138042Y-92776D01* +X-138031Y-92874D01* +X-138028Y-92978D01* +Y-92980D01* +Y-92983D01* +Y-92991D01* +Y-93002D01* +X-138031Y-93032D01* +X-138033Y-93071D01* +X-138039Y-93117D01* +X-138044Y-93174D01* +X-138055Y-93234D01* +X-138069Y-93300D01* +X-138085Y-93371D01* +X-138107Y-93442D01* +X-138132Y-93518D01* +X-138164Y-93592D01* +X-138200Y-93666D01* +X-138244Y-93737D01* +X-138293Y-93805D01* +X-138350Y-93871D01* +X-138353Y-93873D01* +X-138364Y-93884D01* +X-138383Y-93901D01* +X-138410Y-93922D01* +X-138443Y-93947D01* +X-138481Y-93974D01* +X-138528Y-94004D01* +X-138582Y-94034D01* +X-138642Y-94067D01* +X-138708Y-94097D01* +X-138781Y-94124D01* +X-138861Y-94149D01* +X-138948Y-94171D01* +X-139038Y-94187D01* +X-139136Y-94198D01* +X-139240Y-94201D01* +X-139278D01* +X-139295Y-94198D01* +X-139333Y-94195D01* +X-139382Y-94190D01* +X-139437Y-94184D01* +X-139497Y-94174D01* +X-139565Y-94160D01* +X-139633Y-94141D01* +X-139707Y-94119D01* +X-139781Y-94094D01* +X-139854Y-94062D01* +X-139928Y-94023D01* +X-139999Y-93980D01* +X-140067Y-93928D01* +X-140130Y-93871D01* +X-140133Y-93868D01* +X-140144Y-93854D01* +X-140160Y-93835D01* +X-140179Y-93810D01* +X-140204Y-93778D01* +X-140231Y-93737D01* +X-140261Y-93690D01* +X-140288Y-93636D01* +X-140319Y-93576D01* +X-140348Y-93507D01* +X-140376Y-93434D01* +X-140400Y-93354D01* +X-140419Y-93270D01* +X-140436Y-93177D01* +X-140447Y-93081D01* +X-140450Y-92978D01* +Y-92975D01* +Y-92972D01* +Y-92964D01* +Y-92953D01* +Y-92940D01* +X-140447Y-92923D01* +X-140444Y-92885D01* +X-140439Y-92836D01* +X-140433Y-92781D01* +X-140422Y-92718D01* +X-140409Y-92653D01* +X-140392Y-92582D01* +X-140370Y-92508D01* +X-140346Y-92435D01* +X-140316Y-92358D01* +X-140278Y-92284D01* +X-140237Y-92213D01* +X-140187Y-92145D01* +X-140130Y-92080D01* +X-140127Y-92077D01* +X-140114Y-92066D01* +X-140097Y-92050D01* +X-140070Y-92028D01* +X-140037Y-92003D01* +X-139999Y-91976D01* +X-139953Y-91946D01* +X-139898Y-91913D01* +X-139838Y-91883D01* +X-139772Y-91853D01* +X-139699Y-91826D01* +X-139620Y-91801D01* +X-139532Y-91779D01* +X-139442Y-91763D01* +X-139344Y-91752D01* +X-139240Y-91749D01* +X-139216D01* +X-139186Y-91752D01* +D02* +G37* +%LPC*% +G36* +X-124023Y-92233D02* +X-124315D01* +Y-92863D01* +X-124080D01* +X-124048Y-92860D01* +X-124010D01* +X-123969Y-92858D01* +X-123930Y-92855D01* +X-123892Y-92849D01* +X-123887D01* +X-123876Y-92847D01* +X-123857Y-92841D01* +X-123835Y-92836D01* +X-123807Y-92828D01* +X-123780Y-92817D01* +X-123753Y-92803D01* +X-123728Y-92787D01* +X-123725Y-92784D01* +X-123717Y-92778D01* +X-123706Y-92768D01* +X-123693Y-92754D01* +X-123663Y-92721D01* +X-123649Y-92702D01* +X-123635Y-92680D01* +X-123633Y-92677D01* +X-123630Y-92669D01* +X-123625Y-92656D01* +X-123619Y-92637D01* +X-123614Y-92615D01* +X-123611Y-92587D01* +X-123605Y-92555D01* +Y-92519D01* +Y-92516D01* +Y-92506D01* +X-123608Y-92489D01* +X-123611Y-92467D01* +X-123614Y-92443D01* +X-123622Y-92418D01* +X-123630Y-92394D01* +X-123644Y-92369D01* +X-123646Y-92366D01* +X-123649Y-92358D01* +X-123660Y-92347D01* +X-123671Y-92334D01* +X-123690Y-92317D01* +X-123709Y-92301D01* +X-123737Y-92284D01* +X-123767Y-92271D01* +X-123769D01* +X-123777Y-92268D01* +X-123791Y-92263D01* +X-123807Y-92257D01* +X-123827Y-92252D01* +X-123851Y-92249D01* +X-123878Y-92243D01* +X-123908Y-92241D01* +X-123911D01* +X-123922Y-92238D01* +X-123941D01* +X-123963Y-92235D01* +X-123990D01* +X-124023Y-92233D01* +D02* +G37* +G36* +X-131077Y-92407D02* +X-131364Y-93245D01* +X-130788D01* +X-131077Y-92407D01* +D02* +G37* +G36* +X-136753Y-92238D02* +X-136958D01* +Y-92940D01* +X-136731D01* +X-136696Y-92937D01* +X-136655D01* +X-136614Y-92931D01* +X-136570Y-92929D01* +X-136532Y-92923D01* +X-136527D01* +X-136516Y-92921D01* +X-136496Y-92915D01* +X-136472Y-92907D01* +X-136447Y-92896D01* +X-136417Y-92882D01* +X-136390Y-92866D01* +X-136363Y-92847D01* +X-136360Y-92844D01* +X-136354Y-92839D01* +X-136344Y-92828D01* +X-136330Y-92811D01* +X-136316Y-92795D01* +X-136303Y-92773D01* +X-136289Y-92751D01* +X-136278Y-92727D01* +Y-92724D01* +X-136273Y-92713D01* +X-136270Y-92699D01* +X-136264Y-92677D01* +X-136259Y-92653D01* +X-136256Y-92623D01* +X-136251Y-92590D01* +Y-92555D01* +Y-92549D01* +Y-92538D01* +X-136253Y-92519D01* +X-136256Y-92497D01* +X-136264Y-92470D01* +X-136273Y-92443D01* +X-136286Y-92413D01* +X-136305Y-92385D01* +X-136308Y-92383D01* +X-136314Y-92374D01* +X-136327Y-92361D01* +X-136341Y-92347D01* +X-136360Y-92331D01* +X-136382Y-92312D01* +X-136406Y-92298D01* +X-136431Y-92284D01* +X-136436Y-92282D01* +X-136447Y-92279D01* +X-136467Y-92271D01* +X-136491Y-92265D01* +X-136518Y-92257D01* +X-136548Y-92252D01* +X-136584Y-92246D01* +X-136617Y-92243D01* +X-136633D01* +X-136652Y-92241D01* +X-136712D01* +X-136753Y-92238D01* +D02* +G37* +G36* +X-139240Y-92194D02* +X-139259D01* +X-139281Y-92197D01* +X-139311Y-92200D01* +X-139344Y-92205D01* +X-139379Y-92213D01* +X-139418Y-92224D01* +X-139456Y-92238D01* +X-139461Y-92241D01* +X-139472Y-92246D01* +X-139491Y-92257D01* +X-139516Y-92271D01* +X-139546Y-92290D01* +X-139576Y-92312D01* +X-139609Y-92339D01* +X-139641Y-92372D01* +X-139644Y-92374D01* +X-139655Y-92388D01* +X-139669Y-92407D01* +X-139688Y-92437D01* +X-139707Y-92470D01* +X-139729Y-92514D01* +X-139751Y-92563D01* +X-139770Y-92617D01* +Y-92620D01* +X-139772Y-92626D01* +X-139775Y-92634D01* +X-139778Y-92645D01* +X-139781Y-92658D01* +X-139786Y-92677D01* +X-139794Y-92721D01* +X-139803Y-92773D01* +X-139811Y-92836D01* +X-139816Y-92904D01* +X-139819Y-92978D01* +Y-92980D01* +Y-92986D01* +Y-92997D01* +Y-93013D01* +X-139816Y-93030D01* +Y-93051D01* +X-139813Y-93101D01* +X-139808Y-93158D01* +X-139800Y-93218D01* +X-139789Y-93278D01* +X-139772Y-93335D01* +Y-93338D01* +X-139770Y-93341D01* +X-139767Y-93349D01* +X-139764Y-93360D01* +X-139753Y-93387D01* +X-139737Y-93420D01* +X-139721Y-93458D01* +X-139699Y-93499D01* +X-139672Y-93537D01* +X-139644Y-93576D01* +X-139641Y-93578D01* +X-139630Y-93592D01* +X-139614Y-93608D01* +X-139592Y-93628D01* +X-139565Y-93649D01* +X-139535Y-93671D01* +X-139499Y-93693D01* +X-139461Y-93712D01* +X-139456Y-93715D01* +X-139442Y-93718D01* +X-139420Y-93726D01* +X-139393Y-93734D01* +X-139360Y-93742D01* +X-139322Y-93748D01* +X-139284Y-93753D01* +X-139240Y-93756D01* +X-139221D01* +X-139197Y-93753D01* +X-139169Y-93750D01* +X-139134Y-93745D01* +X-139098Y-93737D01* +X-139057Y-93726D01* +X-139019Y-93712D01* +X-139014Y-93709D01* +X-139000Y-93704D01* +X-138981Y-93693D01* +X-138956Y-93679D01* +X-138926Y-93658D01* +X-138896Y-93636D01* +X-138863Y-93606D01* +X-138833Y-93573D01* +X-138831Y-93568D01* +X-138820Y-93554D01* +X-138803Y-93532D01* +X-138784Y-93499D01* +X-138762Y-93464D01* +X-138741Y-93420D01* +X-138721Y-93371D01* +X-138702Y-93319D01* +Y-93316D01* +X-138700Y-93314D01* +X-138697Y-93305D01* +X-138694Y-93292D01* +X-138691Y-93278D01* +X-138689Y-93262D01* +X-138681Y-93221D01* +X-138672Y-93169D01* +X-138664Y-93111D01* +X-138661Y-93046D01* +X-138659Y-92975D01* +Y-92972D01* +Y-92967D01* +Y-92956D01* +Y-92940D01* +X-138661Y-92921D01* +Y-92901D01* +X-138664Y-92852D01* +X-138670Y-92795D01* +X-138681Y-92735D01* +X-138691Y-92675D01* +X-138708Y-92617D01* +Y-92615D01* +X-138710Y-92612D01* +X-138713Y-92604D01* +X-138716Y-92593D01* +X-138727Y-92566D01* +X-138743Y-92530D01* +X-138760Y-92492D01* +X-138781Y-92451D01* +X-138809Y-92413D01* +X-138836Y-92374D01* +X-138839Y-92369D01* +X-138850Y-92358D01* +X-138866Y-92342D01* +X-138888Y-92323D01* +X-138915Y-92301D01* +X-138948Y-92279D01* +X-138984Y-92257D01* +X-139022Y-92238D01* +X-139027Y-92235D01* +X-139041Y-92230D01* +X-139060Y-92224D01* +X-139087Y-92216D01* +X-139120Y-92208D01* +X-139158Y-92200D01* +X-139197Y-92197D01* +X-139240Y-92194D01* +D02* +G37* +%LPD*% +D17* +X62500Y4650D02* +D03* +Y-1650D02* +D03* +X-70500Y30350D02* +D03* +Y36650D02* +D03* +X-76500Y30350D02* +D03* +Y36650D02* +D03* +X-82500Y30350D02* +D03* +Y36650D02* +D03* +X56500Y18150D02* +D03* +Y11850D02* +D03* +Y4650D02* +D03* +Y-1650D02* +D03* +X59000Y64850D02* +D03* +Y71150D02* +D03* +X53000D02* +D03* +Y64850D02* +D03* +X47000Y71150D02* +D03* +Y64850D02* +D03* +X41000D02* +D03* +Y71150D02* +D03* +D18* +X62319Y-22390D02* +D03* +X89681Y-8610D02* +D03* +Y-22390D02* +D03* +X62319Y-8610D02* +D03* +D19* +X-71850Y46228D02* +D03* +Y49772D02* +D03* +X-78150D02* +D03* +Y46228D02* +D03* +D20* +X-78650Y56500D02* +D03* +X-72350D02* +D03* +X32650Y17500D02* +D03* +X26350D02* +D03* +X150Y-5000D02* +D03* +X-6150D02* +D03* +X-13350D02* +D03* +X-19650D02* +D03* +X3650Y-51000D02* +D03* +X-2650D02* +D03* +Y-57000D02* +D03* +X3650D02* +D03* +X-2650Y-63287D02* +D03* +X3650D02* +D03* +X-1150Y-85500D02* +D03* +X5150D02* +D03* +X-1150Y-91500D02* +D03* +X5150D02* +D03* +X-72350Y77500D02* +D03* +X-78650D02* +D03* +X-72350Y71500D02* +D03* +X-78650D02* +D03* +X-72350Y62500D02* +D03* +X-78650D02* +D03* +X29850Y-80000D02* +D03* +X36150D02* +D03* +Y-55500D02* +D03* +X29850D02* +D03* +X36150Y-49500D02* +D03* +X29850D02* +D03* +X60850Y-73000D02* +D03* +X67150D02* +D03* +X60850Y-79000D02* +D03* +X67150D02* +D03* +D21* +X32610Y9000D02* +D03* +X26390D02* +D03* +X32610Y3000D02* +D03* +X26390D02* +D03* +X32610Y-21000D02* +D03* +X26390D02* +D03* +X32610Y-27000D02* +D03* +X26390D02* +D03* +X-63390Y-46500D02* +D03* +X-69610D02* +D03* +X-63390Y-52500D02* +D03* +X-69610D02* +D03* +D22* +X25248Y-5000D02* +D03* +D23* +Y-8740D02* +D03* +Y-12480D02* +D03* +X34500Y-5000D02* +D03* +Y-12480D02* +D03* +D24* +X14500Y-5000D02* +D03* +Y-11220D02* +D03* +X8500Y-4890D02* +D03* +Y-11110D02* +D03* +D25* +X-24870Y-84500D02* +D03* +X-36130D02* +D03* +D26* +X-61500Y-62232D02* +D03* +Y-78768D02* +D03* +D27* +X10000Y-20870D02* +D03* +Y-32130D02* +D03* +X52500Y-67370D02* +D03* +Y-78630D02* +D03* +D28* +X5937Y-77543D02* +D03* +Y-70457D02* +D03* +X-1937Y-74000D02* +D03* +X30126Y-67543D02* +D03* +X38000Y-64000D02* +D03* +Y-71087D02* +D03* +D29* +X12827Y82500D02* +D03* +Y77500D02* +D03* +Y72500D02* +D03* +Y67500D02* +D03* +Y62500D02* +D03* +Y57500D02* +D03* +Y52500D02* +D03* +Y47500D02* +D03* +Y42500D02* +D03* +Y37500D02* +D03* +Y32500D02* +D03* +Y27500D02* +D03* +Y22500D02* +D03* +Y17500D02* +D03* +D03* +X-58000D02* +D03* +Y82500D02* +D03* +D03* +Y22500D02* +D03* +Y27500D02* +D03* +Y32500D02* +D03* +Y37500D02* +D03* +Y42500D02* +D03* +Y47500D02* +D03* +Y52500D02* +D03* +Y57500D02* +D03* +Y62500D02* +D03* +Y67500D02* +D03* +Y72500D02* +D03* +Y77500D02* +D03* +D30* +X-87Y11594D02* +D03* +X-5087D02* +D03* +X-10087D02* +D03* +X-15087D02* +D03* +X-20087D02* +D03* +X-25087D02* +D03* +X-30087D02* +D03* +X-35087D02* +D03* +X-40087D02* +D03* +X-45087D02* +D03* +D03* +D31* +X-16300Y-67600D02* +D03* +D32* +X-8800Y-51900D02* +D03* +X-13800D02* +D03* +X-18800D02* +D03* +X-23800D02* +D03* +D33* +X-9000Y-32268D02* +D03* +Y-15732D02* +D03* +D34* +X-31260Y-6713D02* +D03* +Y-13406D02* +D03* +Y-20098D02* +D03* +Y-26791D02* +D03* +X-31457Y-33386D02* +D03* +D35* +X-75748Y-20000D02* +D03* +D64* +X-50000Y11500D02* +X-45181D01* +X-45087Y11594D01* +X69000Y0D02* +Y1500D01* +X67350Y-1650D02* +X69000Y0D01* +X62500Y-1650D02* +X67350D01* +X62500Y8000D02* +X82500D01* +X56500D02* +X62500D01* +Y4650D02* +Y8000D01* +X75945Y-22445D02* +X76000Y-22500D01* +X62374Y-22445D02* +X75945D01* +X76055D02* +X89626D01* +X62319Y-22390D02* +X62374Y-22445D01* +X89626D02* +X89681Y-22390D01* +X76000Y-22500D02* +X76055Y-22445D01* +X62319Y-8610D02* +X89681D01* +X47000Y98500D02* +X70000Y98500D01* +X91181Y-7110D02* +Y77319D01* +X70000Y98500D02* +X91181Y77319D01* +X82500Y51000D02* +X83253Y51753D01* +X88000Y54000D02* +Y64384D01* +X83253Y51753D02* +X85753D01* +X88000Y54000D01* +X70000Y51000D02* +X82500D01* +X59687Y65537D02* +X86847D01* +X88000Y64384D01* +X841Y19659D02* +X7260Y13240D01* +X841Y19659D02* +Y72000D01* +X7260Y13240D02* +X32630D01* +X8432Y18068D02* +X12258D01* +X5000Y21500D02* +X8432Y18068D01* +X5000Y21500D02* +Y77000D01* +X12258Y18068D02* +X12827Y17500D01* +X26350D01* +X32630Y13240D02* +Y17480D01* +Y9000D02* +Y13240D01* +X-58000Y72500D02* +X-7000D01* +X-2500Y68000D01* +X-72350Y77500D02* +X-4659D01* +X841Y72000D01* +X-64000Y72500D02* +X-58000D01* +X47000Y98500D02* +X70000D01* +X32000Y83500D02* +Y93500D01* +X26500Y71000D02* +Y78000D01* +X32000Y83500D01* +X31000Y70000D02* +Y76500D01* +X37000Y82500D02* +Y88500D01* +X31000Y76500D02* +X37000Y82500D01* +X70000Y71150D02* +X82350D01* +X59000D02* +X70000D01* +X32630Y3020D02* +Y9000D01* +X47000Y88500D02* +X67000D01* +X23000Y67500D02* +X26500Y71000D01* +X12827Y67500D02* +X23000D01* +X32000Y93500D02* +X37000Y98500D01* +X21094Y98094D02* +X26594D01* +X27000Y98500D01* +X19680Y96680D02* +X21094Y98094D01* +X19680Y85000D02* +Y96680D01* +X17274Y-42730D02* +X32610Y-27394D01* +X44000Y-42500D02* +X46000Y-44500D01* +Y-71500D02* +Y-44500D01* +Y-71500D02* +X47500Y-73000D01* +X60850D01* +X-82500Y20500D02* +X-79500Y17500D01* +X-82500Y20500D02* +Y30350D01* +X-79500Y17500D02* +X-58000D01* +X-76500Y25000D02* +X-74000Y22500D01* +X-76500Y25000D02* +Y30350D01* +X-74000Y22500D02* +X-58000D01* +X-70500Y30222D02* +Y30350D01* +X-67778Y27500D02* +X-58000D01* +X-70500Y30222D02* +X-67778Y27500D01* +X-71850Y49772D02* +X-67772D01* +X-66500Y48500D01* +Y37653D02* +Y48500D01* +X-70350Y36500D02* +X-67653D01* +X-66500Y37653D01* +X-70500Y36650D02* +X-70350Y36500D01* +X-76500Y40847D02* +X-75347Y42000D01* +X-76500Y36650D02* +Y40847D01* +X-75347Y42000D02* +X-73004D01* +X-71850Y43153D01* +Y46228D01* +X-82500Y44977D02* +X-81347Y46130D01* +X-78248D01* +X-82500Y36650D02* +Y44977D01* +X-78248Y46130D02* +X-78150Y46228D01* +X-89000Y52500D02* +X-86272Y49772D01* +X-78150D01* +X-89000Y52500D02* +Y58500D01* +X-85000Y62500D01* +X-78650D01* +X87185Y-72185D02* +Y-67185D01* +Y-72185D02* +X87500Y-72500D01* +X84500Y-64500D02* +X87185Y-67185D01* +X63500Y-64500D02* +X84500D01* +X60850Y-67150D02* +X63500Y-64500D01* +X60850Y-73000D02* +Y-67150D01* +X-83000Y56500D02* +X-78650D01* +X-84000Y71500D02* +Y77500D01* +X56575Y18075D02* +X82425D01* +X56500Y18150D02* +X56575Y18075D01* +X82425D02* +X82500Y18000D01* +X42000Y42500D02* +X56500Y28000D01* +Y18150D02* +Y28000D01* +Y8000D02* +Y11850D01* +X51000Y-1500D02* +Y25500D01* +Y-67240D02* +Y-1500D01* +X51150Y-1650D02* +X56500D01* +X51000Y-1500D02* +X51150Y-1650D01* +X70000Y71150D02* +Y85500D01* +Y71000D02* +Y71150D01* +X67000Y88500D02* +X70000Y85500D01* +X36226Y69752D02* +Y72774D01* +Y69752D02* +X41000Y64978D01* +X23500Y62500D02* +X31000Y70000D01* +X12827Y62500D02* +X23500D01* +X41000Y59000D02* +Y64978D01* +X12827Y72500D02* +X21000D01* +X17968Y83287D02* +X19680Y85000D01* +X12827Y82500D02* +X13614Y83287D01* +X17968D01* +X36680Y9000D02* +X37680Y8000D01* +X38000D01* +X32630Y9000D02* +X36680D01* +X32610D02* +X32630D01* +X67150Y-79000D02* +Y-73000D01* +X5150Y-91500D02* +X20000D01* +X23000Y-88500D01* +X5150Y-85500D02* +X16847D01* +X23000Y-88500D02* +Y-49500D01* +X16847Y-85500D02* +X18000Y-84347D01* +Y-48868D01* +X32610Y-21000D02* +Y-17610D01* +Y-27000D02* +Y-21000D01* +Y-27394D02* +Y-27000D01* +X41347Y-70848D02* +X42500Y-69695D01* +X38000Y-71087D02* +X38238Y-70848D01* +X41347D01* +X42500Y-69695D02* +Y-57500D01* +X40500Y-55500D02* +X42500Y-57500D01* +X36150Y-55500D02* +X40500D01* +X36150D02* +Y-49500D01* +X29850Y-61350D02* +X32500Y-64000D01* +X38000D01* +X29850Y-61350D02* +Y-55500D01* +X50500Y-85500D02* +Y-79000D01* +X41500Y-94500D02* +X50500Y-85500D01* +X60850Y-85150D02* +Y-79000D01* +X51500Y-94500D02* +X60850Y-85150D01* +Y-79000D02* +Y-73000D01* +X29850Y-91785D02* +X31500Y-93435D01* +Y-94500D02* +Y-93435D01* +X29850Y-91785D02* +Y-80000D01* +X29988Y-67681D02* +X30126Y-67543D01* +X29988Y-79862D02* +Y-67681D01* +X29850Y-80000D02* +X29988Y-79862D01* +X32610Y3000D02* +X33004Y2606D01* +Y-504D02* +Y2606D01* +Y-504D02* +X34500Y-2000D01* +Y-5000D02* +Y-2000D01* +Y-5000D02* +X37347D01* +X38500Y-6153D01* +Y-28368D02* +Y-6153D01* +X18000Y-48868D02* +X38500Y-28368D01* +X23000Y-49500D02* +X43000Y-29500D01* +Y19500D01* +X30766Y-48713D02* +Y-47234D01* +X47000Y-31000D01* +Y22000D01* +X29850Y-49500D02* +X29978D01* +X30766Y-48713D01* +X35000Y27500D02* +X43000Y19500D01* +X50500Y-67740D02* +X51000Y-67240D01* +X5980Y-70500D02* +X9000D01* +X5937Y-70457D02* +X5980Y-70500D01* +X2654Y-77846D02* +X5635D01* +X5937Y-77543D01* +X-1150Y-81650D02* +X2654Y-77846D01* +X-1150Y-85500D02* +Y-81650D01* +Y-91500D02* +Y-85500D01* +X12827Y27500D02* +X35000D01* +X26390Y3000D02* +Y9000D01* +X32630Y17480D02* +X32650Y17500D01* +X32610Y3000D02* +X32630Y3020D01* +X30000Y-15000D02* +Y-11500D01* +Y-15000D02* +X32610Y-17610D01* +X26390Y-27000D02* +Y-21000D01* +X-3500Y-67500D02* +Y-64075D01* +X-2713Y-63287D01* +X-2650D01* +X18779Y-11220D02* +X21260Y-8740D01* +X14500Y-11220D02* +X18779D01* +X21260Y-8740D02* +X25248D01* +X29000Y-5000D02* +X30000Y-6000D01* +X25248Y-5000D02* +X29000D01* +X30000Y-11500D02* +Y-6000D01* +X29020Y-12480D02* +X30000Y-11500D01* +X25248Y-12480D02* +X29020D01* +X14500Y-5000D02* +X25248D01* +X-64500Y82500D02* +X-58000D01* +X-84000Y71500D02* +X-78650D01* +X-84000Y77500D02* +X-78650D01* +X-72350Y56500D02* +Y62500D01* +X-67653D01* +X-66500Y63653D01* +Y70000D01* +X-64000Y72500D01* +X-72350Y71500D02* +Y77500D01* +Y68153D02* +Y71500D01* +X-76500Y67000D02* +X-73504D01* +X-72350Y68153D01* +X-77734Y65766D02* +X-76500Y67000D01* +X-77734Y63287D02* +Y65766D01* +X36500Y32500D02* +X47000Y22000D01* +X12827Y32500D02* +X36500D01* +X39000Y37500D02* +X51000Y25500D01* +X12827Y37500D02* +X39000D01* +X12827Y42500D02* +X42000D01* +X41000Y59000D02* +X63000D01* +X59000Y64850D02* +X59687Y65537D01* +X53000Y71150D02* +X59000D01* +X47000D02* +X53000D01* +X41000D02* +X47000D01* +X82350D02* +X82500Y71000D01* +X36000Y51000D02* +X70000D01* +X29500Y57500D02* +X36000Y51000D01* +X12827Y57500D02* +X29500D01* +X63000Y59000D02* +X64247Y60247D01* +X69247D02* +X70000Y61000D01* +X64247Y60247D02* +X69247D01* +X70000Y61000D02* +X82500D01* +X8555Y-11165D02* +X14445D01* +X8500Y-19370D02* +Y-11110D01* +X-63390Y-52500D02* +Y-46500D01* +X-55363Y-52500D02* +X-54863Y-53000D01* +X-63390Y-52500D02* +X-55363D01* +D65* +X-31457Y-39500D02* +X-5799D01* +X-2650Y-42650D01* +X41000Y-80000D02* +X46000Y-75000D01* +Y-71500D01* +X36150Y-80000D02* +X41000D01* +X36150D02* +X36500Y-80350D01* +X47000Y64850D02* +X53000D01* +X14445Y-11165D02* +X14500Y-11220D01* +X8500Y-11110D02* +X8555Y-11165D01* +X8500Y-19370D02* +X10000Y-20870D01* +X-31260Y-6713D02* +X-30547Y-6000D01* +X-20650D01* +X-19650Y-5000D01* +X-13350D02* +X-6150D01* +X-15000Y-9500D02* +X-14308Y-8808D01* +Y-5958D02* +X-13350Y-5000D01* +X-14308Y-8808D02* +Y-5958D01* +X-23500Y-9500D02* +X-15000D01* +X-24500Y-10500D02* +X-23500Y-9500D01* +X-24500Y-12500D02* +Y-10500D01* +X-25405Y-13406D02* +X-24500Y-12500D01* +X-31260Y-13406D02* +X-25405D01* +X-75748Y-20000D02* +X-69610Y-26138D01* +X-1937Y-70937D02* +X2341Y-66659D01* +X-1937Y-74000D02* +Y-70937D01* +X2341Y-66659D02* +Y-64468D01* +X3522Y-63287D02* +X3650D01* +X2341Y-64468D02* +X3522Y-63287D01* +X-2650Y-51000D02* +Y-42650D01* +X3650Y-57000D02* +Y-51000D01* +Y-63287D02* +Y-57000D01* +X-23800Y-55700D02* +X-22500Y-57000D01* +X-2650D01* +X-23800Y-55700D02* +Y-51900D01* +X-14000Y-46000D02* +X-13800Y-46200D01* +D66* +X-31457Y-47457D02* +Y-39500D01* +Y-34500D01* +X-35500Y-94500D02* +Y-84500D01* +Y-71500D01* +X-61500Y-94500D02* +Y-78768D01* +X-37000Y-53000D02* +X-31457Y-47457D01* +X-37000Y-70000D02* +Y-53000D01* +X-57861Y-61839D02* +Y-55998D01* +X-54863Y-53000D02* +X-37000D01* +X-57861Y-55998D02* +X-54863Y-53000D01* +X-58255Y-62232D02* +X-57861Y-61839D01* +X-61500Y-62232D02* +X-58255D01* +X-37000Y-70000D02* +X-35500Y-71500D01* +X-24870Y-84500D02* +X-18606D01* +X-16300Y-82194D02* +Y-67600D01* +X-18606Y-84500D02* +X-16300Y-82194D01* +D67* +X150Y-5000D02* +X14500D01* +X-8379Y-13379D02* +X-1465D01* +X150Y-11765D02* +Y-5000D01* +X-1465Y-13379D02* +X150Y-11765D01* +X-9000Y-14000D02* +X-8379Y-13379D01* +D68* +X3000Y-24000D02* +X5067Y-21933D01* +X8937D02* +X10000Y-20870D01* +X5067Y-21933D02* +X8937D01* +X-21500Y-24000D02* +X3000D01* +X-25402Y-20098D02* +X-21500Y-24000D01* +X-31260Y-20098D02* +X-25402D01* +X-8229Y-34000D02* +X-6359Y-32130D01* +X-19000Y-34000D02* +X-9000D01* +X-8229D01* +X-6359Y-32130D02* +X10000D01* +X-26012Y-26988D02* +X-19000Y-34000D01* +X-31260Y-26791D02* +X-31063Y-26988D01* +X-26012D01* +D69* +X-69610Y-46500D02* +Y-26138D01* +Y-52500D02* +Y-46500D01* +X-14000Y-46000D02* +X-10000D01* +X-18000D02* +X-14000D01* +X-13800Y-51900D02* +Y-46200D01* +X-10000Y-46000D02* +X-8800Y-47200D01* +Y-51900D02* +Y-47200D01* +X-18800Y-46800D02* +X-18000Y-46000D01* +X-18800Y-51900D02* +Y-46800D01* +D70* +X-25185Y-94185D02* +Y-84815D01* +X-25500Y-94500D02* +X-25185Y-94185D01* +D71* +X-84646Y102362D02* +D03* +Y-94488D02* +D03* +X84646D02* +D03* +Y102362D02* +D03* +D72* +X47000Y88500D02* +D03* +X-35500Y-94500D02* +D03* +X-61500D02* +D03* +X61500D02* +D03* +D73* +X47000Y98500D02* +D03* +X37000Y88500D02* +D03* +Y98500D02* +D03* +X27000Y88500D02* +D03* +Y98500D02* +D03* +X82500Y28000D02* +D03* +Y18000D02* +D03* +X-25500Y-94500D02* +D03* +X-51500D02* +D03* +X51500D02* +D03* +X41500D02* +D03* +X31500D02* +D03* +X82500Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +X70000Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +D74* +X87500Y-72500D02* +D03* +D75* +X77500D02* +D03* +D76* +X-9000Y-34000D02* +D03* +Y-14000D02* +D03* +D77* +X82500Y8000D02* +D03* +Y71000D02* +D03* +X70000D02* +D03* +D78* +X-47000Y-70000D02* +D03* +D79* +X-37000D02* +D03* +D80* +X69000Y1500D02* +D03* +X76000Y-22500D02* +D03* +X5000Y77000D02* +D03* +X841Y72000D02* +D03* +X-2500Y68000D02* +D03* +X17500Y-42500D02* +D03* +X44000D02* +D03* +X-83000Y56500D02* +D03* +X-84000Y74500D02* +D03* +X56500Y8000D02* +D03* +X36226Y72774D02* +D03* +X21000Y72500D02* +D03* +X50000Y65000D02* +D03* +X-70500Y-15000D02* +D03* +Y-20000D02* +D03* +Y-25000D02* +D03* +X-75748D02* +D03* +Y-15000D02* +D03* +Y-20000D02* +D03* +X-24500Y-6000D02* +D03* +X-1000Y-24000D02* +D03* +X-5500D02* +D03* +X-9500D02* +D03* +X-13500D02* +D03* +X-17500D02* +D03* +X38000Y8000D02* +D03* +X67150Y-76000D02* +D03* +X29850Y-61350D02* +D03* +X-64500Y82500D02* +D03* +X-50000Y11500D02* +D03* +X9000Y-70500D02* +D03* +X26390Y6000D02* +D03* +Y-24000D02* +D03* +X-3500Y-67500D02* +D03* +D81* +X-18500Y-52000D02* +D03* +X-14000D02* +D03* +X-9500D02* +D03* +X-9400Y-46100D02* +D03* +X-13900D02* +D03* +X-18400D02* +D03* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTO b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTO new file mode 100644 index 0000000..8f45a6a --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTO @@ -0,0 +1,16493 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=65535* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +%ADD10C,0.00787*% +%ADD11C,0.00984*% +%ADD12C,0.01000*% +%ADD13C,0.00800*% +%ADD14C,0.00600*% +%ADD15C,0.00502*% +%ADD16C,0.00591*% +G36* +X-42000Y-60158D02* +X-42742D01* +X-44209Y-60380D01* +X-45626Y-60820D01* +X-46961Y-61467D01* +X-48184Y-62307D01* +X-49267Y-63320D01* +X-50186Y-64485D01* +X-50920Y-65774D01* +X-51187Y-66467D01* +X-51186Y-66467D01* +X-51187Y-73533D01* +X-50920Y-74226D01* +X-50186Y-75515D01* +X-49267Y-76680D01* +X-48184Y-77693D01* +X-46961Y-78533D01* +X-45626Y-79180D01* +X-44209Y-79620D01* +X-42742Y-79843D01* +X-42000D01* +D01* +Y-60158D01* +D02* +G37* +G36* +X82500Y-62657D02* +X81758D01* +X80291Y-62880D01* +X78874Y-63320D01* +X77539Y-63967D01* +X76316Y-64807D01* +X75233Y-65820D01* +X74314Y-66985D01* +X73580Y-68274D01* +X73313Y-68967D01* +X73314Y-68967D01* +X73313Y-76033D01* +X73580Y-76726D01* +X74314Y-78015D01* +X75233Y-79180D01* +X76316Y-80193D01* +X77539Y-81033D01* +X78874Y-81680D01* +X80291Y-82120D01* +X81758Y-82342D01* +X82500D01* +D01* +Y-62657D01* +D02* +G37* +G36* +X49578Y-17981D02* +X49928D01* +Y-18156D01* +X50278D01* +Y-18331D01* +X50453D01* +Y-18506D01* +X50802D01* +Y-18680D01* +X51152D01* +Y-18855D01* +X51502D01* +Y-19030D01* +X51677D01* +Y-19205D01* +X52027D01* +Y-19380D01* +X52377D01* +Y-19555D01* +X52727D01* +Y-19730D01* +X52902D01* +Y-19905D01* +X53252D01* +Y-20080D01* +X53602D01* +Y-20255D01* +X53777D01* +Y-20430D01* +X54126D01* +Y-20605D01* +X54476D01* +Y-20780D01* +X54826D01* +Y-20955D01* +X55001D01* +Y-21130D01* +X55351D01* +Y-21305D01* +X55701D01* +Y-21480D01* +X56051D01* +Y-21655D01* +X56226D01* +Y-21829D01* +X56401D01* +Y-26728D01* +X56751D01* +Y-26903D01* +X56925D01* +Y-27078D01* +X57275D01* +Y-27253D01* +X57625D01* +Y-27428D01* +X57800D01* +Y-27603D01* +X58150D01* +Y-27778D01* +X58500D01* +Y-27953D01* +X58850D01* +Y-28128D01* +X59025D01* +Y-28302D01* +X59375D01* +Y-28477D01* +X59725D01* +Y-28652D01* +X60075D01* +Y-28827D01* +X60249D01* +Y-29002D01* +X60599D01* +Y-29177D01* +X60774D01* +Y-37400D01* +X60424D01* +Y-37574D01* +X60075D01* +Y-37749D01* +X59725D01* +Y-37924D01* +X59550D01* +Y-38099D01* +X59200D01* +Y-38274D01* +X58850D01* +Y-38449D01* +X58500D01* +Y-38624D01* +X58325D01* +Y-38799D01* +X57975D01* +Y-38974D01* +X57625D01* +Y-39149D01* +X57450D01* +Y-39324D01* +X57100D01* +Y-39499D01* +X56751D01* +Y-39674D01* +X56401D01* +Y-39849D01* +X56226D01* +Y-40024D01* +X55876D01* +Y-40199D01* +X55526D01* +Y-40374D01* +X55176D01* +Y-40549D01* +X55001D01* +Y-40723D01* +X54651D01* +Y-40898D01* +X54301D01* +Y-41073D01* +X53951D01* +Y-41248D01* +X53777D01* +Y-41073D01* +X53427D01* +Y-40898D01* +X53252D01* +Y-40723D01* +X52902D01* +Y-40549D01* +X52552D01* +Y-40374D01* +X52377D01* +Y-40199D01* +X52027D01* +Y-40024D01* +X51677D01* +Y-39849D01* +X51327D01* +Y-39674D01* +X51152D01* +Y-39499D01* +X50802D01* +Y-39324D01* +X50453D01* +Y-39149D01* +X50103D01* +Y-38974D01* +X49928D01* +Y-38799D01* +X49578D01* +Y-38624D01* +X49403D01* +Y-38799D01* +X49053D01* +Y-38974D01* +X48878D01* +Y-39149D01* +X48528D01* +Y-39324D01* +X48178D01* +Y-39499D01* +X47828D01* +Y-39674D01* +X47653D01* +Y-39849D01* +X47304D01* +Y-40024D01* +X46954D01* +Y-40199D01* +X46604D01* +Y-40374D01* +X46429D01* +Y-40549D01* +X46079D01* +Y-40723D01* +X45729D01* +Y-40898D01* +X45379D01* +Y-41073D01* +X45204D01* +Y-41248D01* +X45029D01* +Y-41073D01* +X44679D01* +Y-40898D01* +X44330D01* +Y-40723D01* +X43980D01* +Y-40549D01* +X43805D01* +Y-40374D01* +X43455D01* +Y-40199D01* +X43105D01* +Y-40024D01* +X42755D01* +Y-39849D01* +X42580D01* +Y-39674D01* +X42230D01* +Y-39499D01* +X41880D01* +Y-39324D01* +X41530D01* +Y-39149D01* +X41355D01* +Y-38974D01* +X41006D01* +Y-38799D01* +X40656D01* +Y-38624D01* +X40481D01* +Y-38449D01* +X40131D01* +Y-38274D01* +X39781D01* +Y-38099D01* +X39431D01* +Y-37924D01* +X39256D01* +Y-37749D01* +X38906D01* +Y-37574D01* +X38556D01* +Y-37400D01* +X38206D01* +Y-29177D01* +X38381D01* +Y-29002D01* +X38731D01* +Y-28827D01* +X38906D01* +Y-28652D01* +X39256D01* +Y-28477D01* +X39606D01* +Y-28302D01* +X39956D01* +Y-28128D01* +X40131D01* +Y-27953D01* +X40481D01* +Y-27778D01* +X40831D01* +Y-27603D01* +X41181D01* +Y-27428D01* +X41355D01* +Y-27253D01* +X41705D01* +Y-27078D01* +X42055D01* +Y-26903D01* +X42230D01* +Y-26728D01* +X42580D01* +Y-21829D01* +X42755D01* +Y-21655D01* +X43105D01* +Y-21480D01* +X43280D01* +Y-21305D01* +X43630D01* +Y-21130D01* +X43980D01* +Y-20955D01* +X44155D01* +Y-20780D01* +X44504D01* +Y-20605D01* +X44854D01* +Y-20430D01* +X45204D01* +Y-20255D01* +X45379D01* +Y-20080D01* +X45729D01* +Y-19905D01* +X46079D01* +Y-19730D01* +X46429D01* +Y-19555D01* +X46604D01* +Y-19380D01* +X46954D01* +Y-19205D01* +X47304D01* +Y-19030D01* +X47653D01* +Y-18855D01* +X47828D01* +Y-18680D01* +X48178D01* +Y-18506D01* +X48528D01* +Y-18331D01* +X48878D01* +Y-18156D01* +X49053D01* +Y-17981D01* +X49403D01* +Y-17806D01* +X49578D01* +Y-17981D01* +D02* +G37* +G36* +X68862Y17000D02* +X68193D01* +X67769Y18531D01* +X67357Y17000D01* +X66688D01* +X66055Y19353D01* +X66686D01* +X67049Y17732D01* +X67483Y19353D01* +X68086D01* +X68501Y17732D01* +X68881Y19353D01* +X69498D01* +X68862Y17000D01* +D02* +G37* +G36* +X75899Y18897D02* +X74805D01* +Y18493D01* +X75820D01* +Y18037D01* +X74805D01* +Y17456D01* +X75899D01* +Y17000D01* +X74199D01* +Y19353D01* +X75899D01* +Y18897D01* +D02* +G37* +G36* +X72806Y19351D02* +X72864Y19348D01* +X72924Y19342D01* +X72987Y19337D01* +X73044Y19329D01* +X73049D01* +X73058Y19326D01* +X73068Y19323D01* +X73098Y19318D01* +X73137Y19307D01* +X73178Y19293D01* +X73227Y19274D01* +X73276Y19252D01* +X73325Y19225D01* +X73328D01* +X73330Y19222D01* +X73347Y19211D01* +X73371Y19192D01* +X73401Y19170D01* +X73434Y19140D01* +X73470Y19105D01* +X73502Y19064D01* +X73535Y19020D01* +Y19017D01* +X73538Y19015D01* +X73543Y19006D01* +X73549Y18998D01* +X73560Y18971D01* +X73576Y18933D01* +X73590Y18889D01* +X73603Y18835D01* +X73612Y18775D01* +X73614Y18706D01* +Y18703D01* +Y18695D01* +Y18682D01* +X73612Y18663D01* +Y18641D01* +X73609Y18613D01* +X73603Y18586D01* +X73598Y18556D01* +X73584Y18488D01* +X73563Y18417D01* +X73532Y18346D01* +X73513Y18313D01* +X73492Y18280D01* +Y18278D01* +X73486Y18272D01* +X73478Y18264D01* +X73470Y18253D01* +X73442Y18223D01* +X73404Y18185D01* +X73355Y18141D01* +X73295Y18098D01* +X73227Y18051D01* +X73148Y18007D01* +X73934Y17000D01* +X73191D01* +X72552Y17863D01* +X72274D01* +Y17000D01* +X71668D01* +Y19353D01* +X72757D01* +X72806Y19351D01* +D02* +G37* +G36* +X71171Y18936D02* +X70786D01* +Y17418D01* +X71171D01* +Y17000D01* +X69795D01* +Y17418D01* +X70180D01* +Y18936D01* +X69795D01* +Y19353D01* +X71171D01* +Y18936D01* +D02* +G37* +G36* +X65160Y17410D02* +X65645D01* +Y17000D01* +X64073D01* +Y17410D01* +X64570D01* +Y18654D01* +X64073D01* +Y19039D01* +X64114D01* +X64141Y19042D01* +X64174D01* +X64212Y19045D01* +X64289Y19050D01* +X64294D01* +X64308Y19053D01* +X64327Y19056D01* +X64351Y19061D01* +X64379Y19067D01* +X64406Y19075D01* +X64436Y19086D01* +X64463Y19097D01* +X64466Y19099D01* +X64477Y19105D01* +X64491Y19113D01* +X64510Y19124D01* +X64529Y19140D01* +X64551Y19157D01* +X64570Y19178D01* +X64586Y19200D01* +X64589Y19203D01* +X64595Y19211D01* +X64600Y19225D01* +X64608Y19244D01* +X64616Y19266D01* +X64625Y19293D01* +X64633Y19323D01* +X64635Y19359D01* +X65160D01* +Y17410D01* +D02* +G37* +G36* +X-118353Y-88542D02* +Y-89451D01* +X-118959D01* +Y-88569D01* +X-119841Y-87098D01* +X-119153D01* +X-118642Y-88007D01* +X-118151Y-87098D01* +X-117485D01* +X-118353Y-88542D01* +D02* +G37* +G36* +X-130065Y-89451D02* +X-130742D01* +X-131599Y-87098D01* +X-130963D01* +X-130395Y-88749D01* +X-129827Y-87098D01* +X-129205D01* +X-130065Y-89451D01* +D02* +G37* +G36* +X-119893D02* +X-120520D01* +X-120684Y-88976D01* +X-121553D01* +X-121716Y-89451D01* +X-122328D01* +X-121460Y-87098D01* +X-120764D01* +X-119893Y-89451D01* +D02* +G37* +G36* +X-123521Y-88995D02* +X-122432D01* +Y-89451D01* +X-124127D01* +Y-87098D01* +X-123521D01* +Y-88995D01* +D02* +G37* +G36* +X-125519Y-87100D02* +X-125462Y-87103D01* +X-125402Y-87108D01* +X-125339Y-87114D01* +X-125282Y-87122D01* +X-125276D01* +X-125268Y-87125D01* +X-125257Y-87128D01* +X-125227Y-87133D01* +X-125189Y-87144D01* +X-125148Y-87158D01* +X-125099Y-87177D01* +X-125050Y-87199D01* +X-125001Y-87226D01* +X-124998D01* +X-124995Y-87229D01* +X-124979Y-87240D01* +X-124954Y-87259D01* +X-124924Y-87280D01* +X-124891Y-87310D01* +X-124856Y-87346D01* +X-124823Y-87387D01* +X-124790Y-87431D01* +Y-87433D01* +X-124787Y-87436D01* +X-124782Y-87444D01* +X-124777Y-87453D01* +X-124766Y-87480D01* +X-124749Y-87518D01* +X-124736Y-87562D01* +X-124722Y-87616D01* +X-124714Y-87676D01* +X-124711Y-87745D01* +Y-87747D01* +Y-87756D01* +Y-87769D01* +X-124714Y-87788D01* +Y-87810D01* +X-124716Y-87837D01* +X-124722Y-87865D01* +X-124727Y-87895D01* +X-124741Y-87963D01* +X-124763Y-88034D01* +X-124793Y-88105D01* +X-124812Y-88138D01* +X-124834Y-88170D01* +Y-88173D01* +X-124839Y-88179D01* +X-124848Y-88187D01* +X-124856Y-88198D01* +X-124883Y-88228D01* +X-124921Y-88266D01* +X-124970Y-88310D01* +X-125031Y-88353D01* +X-125099Y-88400D01* +X-125178Y-88443D01* +X-124392Y-89451D01* +X-125134D01* +X-125773Y-88588D01* +X-126051D01* +Y-89451D01* +X-126658D01* +Y-87098D01* +X-125568D01* +X-125519Y-87100D01* +D02* +G37* +G36* +X-127165Y-87554D02* +X-128260D01* +Y-87958D01* +X-127244D01* +Y-88414D01* +X-128260D01* +Y-88995D01* +X-127165D01* +Y-89451D01* +X-128866D01* +Y-87098D01* +X-127165D01* +Y-87554D01* +D02* +G37* +G36* +X-136486Y-87100D02* +X-136434Y-87103D01* +X-136374Y-87108D01* +X-136311Y-87114D01* +X-136248Y-87125D01* +X-136188Y-87138D01* +X-136185D01* +X-136180Y-87141D01* +X-136172D01* +X-136161Y-87147D01* +X-136133Y-87155D01* +X-136095Y-87166D01* +X-136054Y-87182D01* +X-136008Y-87204D01* +X-135961Y-87226D01* +X-135915Y-87253D01* +X-135912D01* +X-135909Y-87259D01* +X-135890Y-87270D01* +X-135866Y-87291D01* +X-135833Y-87319D01* +X-135800Y-87352D01* +X-135762Y-87392D01* +X-135727Y-87442D01* +X-135697Y-87493D01* +Y-87496D01* +X-135694Y-87499D01* +X-135688Y-87507D01* +X-135686Y-87518D01* +X-135678Y-87534D01* +X-135672Y-87551D01* +X-135658Y-87592D01* +X-135645Y-87641D01* +X-135631Y-87701D01* +X-135623Y-87766D01* +X-135620Y-87840D01* +Y-87843D01* +Y-87848D01* +Y-87857D01* +Y-87867D01* +X-135623Y-87881D01* +Y-87897D01* +X-135628Y-87938D01* +X-135634Y-87985D01* +X-135645Y-88039D01* +X-135658Y-88094D01* +X-135678Y-88151D01* +Y-88154D01* +X-135680Y-88157D01* +X-135683Y-88165D01* +X-135688Y-88176D01* +X-135699Y-88203D01* +X-135718Y-88239D01* +X-135740Y-88280D01* +X-135768Y-88321D01* +X-135800Y-88362D01* +X-135836Y-88402D01* +X-135839Y-88405D01* +X-135841Y-88408D01* +X-135849Y-88416D01* +X-135860Y-88424D01* +X-135888Y-88449D01* +X-135926Y-88482D01* +X-135972Y-88515D01* +X-136027Y-88550D01* +X-136087Y-88583D01* +X-136150Y-88613D01* +X-136153D01* +X-136158Y-88616D01* +X-136166Y-88618D01* +X-136180Y-88624D01* +X-136196Y-88629D01* +X-136218Y-88635D01* +X-136243Y-88643D01* +X-136267Y-88648D01* +X-136297Y-88654D01* +X-136330Y-88662D01* +X-136365Y-88667D01* +X-136404Y-88673D01* +X-136488Y-88681D01* +X-136581Y-88684D01* +X-136958D01* +Y-89451D01* +X-137564D01* +Y-87098D01* +X-136507D01* +X-136486Y-87100D01* +D02* +G37* +G36* +X-140679Y-87554D02* +X-141413D01* +Y-89451D01* +X-142019D01* +Y-87554D01* +X-142754D01* +Y-87098D01* +X-140679D01* +Y-87554D01* +D02* +G37* +G36* +X-132958Y-87051D02* +X-132920Y-87054D01* +X-132871Y-87059D01* +X-132816Y-87065D01* +X-132756Y-87076D01* +X-132691Y-87089D01* +X-132620Y-87108D01* +X-132549Y-87130D01* +X-132475Y-87155D01* +X-132402Y-87188D01* +X-132328Y-87226D01* +X-132257Y-87270D01* +X-132188Y-87322D01* +X-132126Y-87379D01* +X-132123Y-87382D01* +X-132112Y-87395D01* +X-132096Y-87414D01* +X-132074Y-87439D01* +X-132049Y-87472D01* +X-132022Y-87513D01* +X-131995Y-87562D01* +X-131962Y-87614D01* +X-131932Y-87676D01* +X-131905Y-87742D01* +X-131877Y-87816D01* +X-131853Y-87897D01* +X-131831Y-87982D01* +X-131815Y-88075D01* +X-131804Y-88173D01* +X-131801Y-88277D01* +Y-88280D01* +Y-88282D01* +Y-88291D01* +Y-88301D01* +X-131804Y-88332D01* +X-131806Y-88370D01* +X-131812Y-88416D01* +X-131817Y-88473D01* +X-131828Y-88534D01* +X-131842Y-88599D01* +X-131858Y-88670D01* +X-131880Y-88741D01* +X-131905Y-88818D01* +X-131937Y-88891D01* +X-131973Y-88965D01* +X-132017Y-89036D01* +X-132066Y-89104D01* +X-132123Y-89170D01* +X-132126Y-89172D01* +X-132137Y-89183D01* +X-132156Y-89200D01* +X-132183Y-89222D01* +X-132216Y-89246D01* +X-132254Y-89273D01* +X-132300Y-89303D01* +X-132355Y-89333D01* +X-132415Y-89366D01* +X-132481Y-89396D01* +X-132554Y-89424D01* +X-132633Y-89448D01* +X-132721Y-89470D01* +X-132811Y-89486D01* +X-132909Y-89497D01* +X-133013Y-89500D01* +X-133051D01* +X-133068Y-89497D01* +X-133106Y-89495D01* +X-133155Y-89489D01* +X-133210Y-89484D01* +X-133270Y-89473D01* +X-133338Y-89459D01* +X-133406Y-89440D01* +X-133480Y-89418D01* +X-133554Y-89394D01* +X-133627Y-89361D01* +X-133701Y-89323D01* +X-133772Y-89279D01* +X-133840Y-89227D01* +X-133903Y-89170D01* +X-133906Y-89167D01* +X-133917Y-89153D01* +X-133933Y-89134D01* +X-133952Y-89110D01* +X-133977Y-89077D01* +X-134004Y-89036D01* +X-134034Y-88990D01* +X-134061Y-88935D01* +X-134091Y-88875D01* +X-134121Y-88807D01* +X-134149Y-88733D01* +X-134173Y-88654D01* +X-134192Y-88569D01* +X-134209Y-88476D01* +X-134220Y-88381D01* +X-134222Y-88277D01* +Y-88274D01* +Y-88271D01* +Y-88263D01* +Y-88252D01* +Y-88239D01* +X-134220Y-88222D01* +X-134217Y-88184D01* +X-134212Y-88135D01* +X-134206Y-88080D01* +X-134195Y-88018D01* +X-134181Y-87952D01* +X-134165Y-87881D01* +X-134143Y-87807D01* +X-134119Y-87734D01* +X-134089Y-87657D01* +X-134050Y-87584D01* +X-134009Y-87513D01* +X-133960Y-87444D01* +X-133903Y-87379D01* +X-133900Y-87376D01* +X-133887Y-87365D01* +X-133870Y-87349D01* +X-133843Y-87327D01* +X-133810Y-87302D01* +X-133772Y-87275D01* +X-133726Y-87245D01* +X-133671Y-87212D01* +X-133611Y-87182D01* +X-133545Y-87152D01* +X-133472Y-87125D01* +X-133393Y-87100D01* +X-133305Y-87078D01* +X-133215Y-87062D01* +X-133117Y-87051D01* +X-133013Y-87049D01* +X-132988D01* +X-132958Y-87051D01* +D02* +G37* +G36* +X-139186D02* +X-139147Y-87054D01* +X-139098Y-87059D01* +X-139044Y-87065D01* +X-138984Y-87076D01* +X-138918Y-87089D01* +X-138847Y-87108D01* +X-138776Y-87130D01* +X-138702Y-87155D01* +X-138629Y-87188D01* +X-138555Y-87226D01* +X-138484Y-87270D01* +X-138416Y-87322D01* +X-138353Y-87379D01* +X-138350Y-87382D01* +X-138339Y-87395D01* +X-138323Y-87414D01* +X-138301Y-87439D01* +X-138276Y-87472D01* +X-138249Y-87513D01* +X-138222Y-87562D01* +X-138189Y-87614D01* +X-138159Y-87676D01* +X-138132Y-87742D01* +X-138104Y-87816D01* +X-138080Y-87897D01* +X-138058Y-87982D01* +X-138042Y-88075D01* +X-138031Y-88173D01* +X-138028Y-88277D01* +Y-88280D01* +Y-88282D01* +Y-88291D01* +Y-88301D01* +X-138031Y-88332D01* +X-138033Y-88370D01* +X-138039Y-88416D01* +X-138044Y-88473D01* +X-138055Y-88534D01* +X-138069Y-88599D01* +X-138085Y-88670D01* +X-138107Y-88741D01* +X-138132Y-88818D01* +X-138164Y-88891D01* +X-138200Y-88965D01* +X-138244Y-89036D01* +X-138293Y-89104D01* +X-138350Y-89170D01* +X-138353Y-89172D01* +X-138364Y-89183D01* +X-138383Y-89200D01* +X-138410Y-89222D01* +X-138443Y-89246D01* +X-138481Y-89273D01* +X-138528Y-89303D01* +X-138582Y-89333D01* +X-138642Y-89366D01* +X-138708Y-89396D01* +X-138781Y-89424D01* +X-138861Y-89448D01* +X-138948Y-89470D01* +X-139038Y-89486D01* +X-139136Y-89497D01* +X-139240Y-89500D01* +X-139278D01* +X-139295Y-89497D01* +X-139333Y-89495D01* +X-139382Y-89489D01* +X-139437Y-89484D01* +X-139497Y-89473D01* +X-139565Y-89459D01* +X-139633Y-89440D01* +X-139707Y-89418D01* +X-139781Y-89394D01* +X-139854Y-89361D01* +X-139928Y-89323D01* +X-139999Y-89279D01* +X-140067Y-89227D01* +X-140130Y-89170D01* +X-140133Y-89167D01* +X-140144Y-89153D01* +X-140160Y-89134D01* +X-140179Y-89110D01* +X-140204Y-89077D01* +X-140231Y-89036D01* +X-140261Y-88990D01* +X-140288Y-88935D01* +X-140319Y-88875D01* +X-140348Y-88807D01* +X-140376Y-88733D01* +X-140400Y-88654D01* +X-140419Y-88569D01* +X-140436Y-88476D01* +X-140447Y-88381D01* +X-140450Y-88277D01* +Y-88274D01* +Y-88271D01* +Y-88263D01* +Y-88252D01* +Y-88239D01* +X-140447Y-88222D01* +X-140444Y-88184D01* +X-140439Y-88135D01* +X-140433Y-88080D01* +X-140422Y-88018D01* +X-140409Y-87952D01* +X-140392Y-87881D01* +X-140370Y-87807D01* +X-140346Y-87734D01* +X-140316Y-87657D01* +X-140278Y-87584D01* +X-140237Y-87513D01* +X-140187Y-87444D01* +X-140130Y-87379D01* +X-140127Y-87376D01* +X-140114Y-87365D01* +X-140097Y-87349D01* +X-140070Y-87327D01* +X-140037Y-87302D01* +X-139999Y-87275D01* +X-139953Y-87245D01* +X-139898Y-87212D01* +X-139838Y-87182D01* +X-139772Y-87152D01* +X-139699Y-87125D01* +X-139620Y-87100D01* +X-139532Y-87078D01* +X-139442Y-87062D01* +X-139344Y-87051D01* +X-139240Y-87049D01* +X-139216D01* +X-139186Y-87051D01* +D02* +G37* +G36* +X54332Y102997D02* +X54362Y102995D01* +X54394Y102992D01* +X54433Y102986D01* +X54474Y102981D01* +X54520Y102973D01* +X54566Y102964D01* +X54665Y102937D01* +X54716Y102921D01* +X54766Y102899D01* +X54817Y102877D01* +X54867Y102850D01* +X54869Y102847D01* +X54878Y102844D01* +X54891Y102833D01* +X54910Y102823D01* +X54932Y102809D01* +X54957Y102790D01* +X54984Y102771D01* +X55014Y102746D01* +X55077Y102691D01* +X55145Y102626D01* +X55208Y102552D01* +X55238Y102511D01* +X55265Y102470D01* +Y102468D01* +X55271Y102462D01* +X55276Y102454D01* +X55282Y102440D01* +X55290Y102424D01* +X55301Y102405D01* +X55312Y102383D01* +X55323Y102358D01* +X55347Y102301D01* +X55369Y102238D01* +X55391Y102167D01* +X55410Y102091D01* +Y102088D01* +X55413Y102083D01* +Y102069D01* +X55415Y102055D01* +X55418Y102034D01* +X55424Y102012D01* +X55426Y101984D01* +X55429Y101954D01* +X55435Y101919D01* +X55437Y101883D01* +X55440Y101842D01* +X55445Y101799D01* +X55448Y101706D01* +X55451Y101605D01* +Y100778D01* +X53098D01* +Y101679D01* +X53100Y101703D01* +Y101763D01* +X53103Y101799D01* +X53109Y101875D01* +X53119Y101960D01* +X53130Y102042D01* +X53147Y102124D01* +Y102126D01* +X53149Y102132D01* +X53152Y102143D01* +X53155Y102159D01* +X53160Y102175D01* +X53166Y102197D01* +X53182Y102246D01* +X53201Y102301D01* +X53226Y102361D01* +X53253Y102421D01* +X53283Y102476D01* +X53286Y102479D01* +X53291Y102487D01* +X53300Y102500D01* +X53311Y102517D01* +X53327Y102536D01* +X53343Y102560D01* +X53365Y102588D01* +X53390Y102615D01* +X53417Y102645D01* +X53447Y102675D01* +X53480Y102708D01* +X53515Y102741D01* +X53594Y102801D01* +X53685Y102858D01* +X53687Y102861D01* +X53695Y102864D01* +X53709Y102872D01* +X53728Y102880D01* +X53753Y102891D01* +X53783Y102902D01* +X53816Y102915D01* +X53854Y102929D01* +X53895Y102943D01* +X53938Y102956D01* +X53988Y102967D01* +X54039Y102978D01* +X54097Y102986D01* +X54154Y102995D01* +X54214Y102997D01* +X54277Y103000D01* +X54280D01* +X54291D01* +X54310D01* +X54332Y102997D01* +D02* +G37* +G36* +X55451Y99590D02* +X53837Y98597D01* +X55451D01* +Y98040D01* +X53098D01* +Y98763D01* +X54446Y99620D01* +X53098D01* +Y100177D01* +X55451D01* +Y99590D01* +D02* +G37* +G36* +X55317Y97494D02* +X55320Y97488D01* +X55323Y97480D01* +X55328Y97466D01* +X55334Y97453D01* +X55339Y97434D01* +X55347Y97409D01* +X55355Y97384D01* +X55366Y97357D01* +X55374Y97324D01* +X55385Y97289D01* +X55396Y97253D01* +X55407Y97212D01* +X55418Y97169D01* +X55440Y97076D01* +Y97073D01* +X55443Y97065D01* +X55445Y97051D01* +X55448Y97032D01* +X55454Y97008D01* +X55459Y96980D01* +X55465Y96948D01* +X55470Y96915D01* +X55475Y96877D01* +X55481Y96836D01* +X55492Y96748D01* +X55497Y96653D01* +X55500Y96557D01* +Y96516D01* +X55497Y96500D01* +X55494Y96459D01* +X55489Y96407D01* +X55484Y96350D01* +X55473Y96284D01* +X55459Y96216D01* +X55443Y96140D01* +X55421Y96063D01* +X55393Y95987D01* +X55364Y95907D01* +X55325Y95831D01* +X55282Y95755D01* +X55233Y95684D01* +X55175Y95618D01* +X55172Y95615D01* +X55159Y95604D01* +X55142Y95588D01* +X55115Y95566D01* +X55082Y95539D01* +X55041Y95512D01* +X54995Y95482D01* +X54940Y95449D01* +X54880Y95416D01* +X54812Y95386D01* +X54738Y95359D01* +X54659Y95331D01* +X54572Y95310D01* +X54479Y95293D01* +X54378Y95282D01* +X54274Y95280D01* +X54272D01* +X54269D01* +X54261D01* +X54250D01* +X54222Y95282D01* +X54184Y95285D01* +X54138Y95290D01* +X54083Y95299D01* +X54023Y95307D01* +X53958Y95323D01* +X53889Y95340D01* +X53818Y95364D01* +X53745Y95391D01* +X53668Y95424D01* +X53597Y95463D01* +X53523Y95509D01* +X53455Y95561D01* +X53390Y95621D01* +X53387Y95626D01* +X53376Y95637D01* +X53360Y95656D01* +X53338Y95684D01* +X53311Y95719D01* +X53283Y95763D01* +X53253Y95812D01* +X53220Y95869D01* +X53190Y95935D01* +X53160Y96006D01* +X53130Y96085D01* +X53106Y96170D01* +X53084Y96262D01* +X53068Y96361D01* +X53057Y96464D01* +X53054Y96576D01* +Y96636D01* +X53057Y96661D01* +Y96688D01* +X53059Y96718D01* +X53065Y96786D01* +X53073Y96860D01* +X53084Y96939D01* +X53098Y97019D01* +Y97021D01* +X53100Y97030D01* +X53103Y97040D01* +X53106Y97057D01* +X53111Y97076D01* +X53117Y97098D01* +X53125Y97125D01* +X53133Y97155D01* +X53144Y97191D01* +X53155Y97226D01* +X53185Y97305D01* +X53220Y97393D01* +X53264Y97488D01* +X53813D01* +Y97420D01* +X53810Y97417D01* +X53807Y97412D01* +X53799Y97401D01* +X53788Y97387D01* +X53775Y97368D01* +X53761Y97346D01* +X53742Y97319D01* +X53720Y97289D01* +X53717Y97286D01* +X53709Y97275D01* +X53698Y97259D01* +X53685Y97237D01* +X53668Y97212D01* +X53652Y97185D01* +X53616Y97125D01* +X53614Y97120D01* +X53608Y97109D01* +X53600Y97089D01* +X53586Y97062D01* +X53573Y97032D01* +X53559Y96994D01* +X53545Y96953D01* +X53532Y96909D01* +X53529Y96904D01* +X53526Y96887D01* +X53521Y96863D01* +X53513Y96833D01* +X53504Y96795D01* +X53499Y96748D01* +X53496Y96702D01* +X53493Y96650D01* +Y96623D01* +X53496Y96593D01* +X53499Y96554D01* +X53504Y96508D01* +X53515Y96459D01* +X53526Y96407D01* +X53543Y96358D01* +Y96355D01* +X53545Y96352D01* +X53551Y96336D01* +X53562Y96311D01* +X53578Y96279D01* +X53597Y96243D01* +X53622Y96205D01* +X53652Y96164D01* +X53687Y96123D01* +X53693Y96118D01* +X53704Y96107D01* +X53725Y96090D01* +X53753Y96066D01* +X53788Y96041D01* +X53829Y96017D01* +X53878Y95992D01* +X53930Y95968D01* +X53933D01* +X53936Y95965D01* +X53944Y95962D01* +X53955Y95959D01* +X53969Y95954D01* +X53985Y95948D01* +X54026Y95940D01* +X54075Y95929D01* +X54132Y95918D01* +X54195Y95913D01* +X54263Y95910D01* +X54269D01* +X54280D01* +X54302Y95913D01* +X54326D01* +X54359Y95916D01* +X54397Y95921D01* +X54438Y95927D01* +X54484Y95935D01* +X54531Y95946D01* +X54580Y95959D01* +X54629Y95976D01* +X54681Y95998D01* +X54730Y96019D01* +X54777Y96047D01* +X54820Y96079D01* +X54861Y96115D01* +X54864Y96118D01* +X54869Y96126D01* +X54880Y96137D01* +X54894Y96153D01* +X54908Y96175D01* +X54927Y96202D01* +X54943Y96232D01* +X54962Y96271D01* +X54981Y96309D01* +X55000Y96355D01* +X55019Y96404D01* +X55033Y96462D01* +X55047Y96519D01* +X55058Y96584D01* +X55063Y96653D01* +X55066Y96727D01* +Y96816D01* +X55063Y96828D01* +Y96852D01* +X55060Y96879D01* +X54602D01* +Y96412D01* +X54157D01* +Y97496D01* +X55317D01* +Y97494D01* +D02* +G37* +G36* +X58292Y102410D02* +X58322Y102408D01* +X58355Y102405D01* +X58393Y102399D01* +X58434Y102394D01* +X58480Y102386D01* +X58527Y102377D01* +X58625Y102350D01* +X58677Y102334D01* +X58726Y102312D01* +X58778Y102290D01* +X58827Y102263D01* +X58830Y102260D01* +X58838Y102257D01* +X58852Y102246D01* +X58871Y102236D01* +X58893Y102222D01* +X58917Y102203D01* +X58944Y102184D01* +X58974Y102159D01* +X59037Y102104D01* +X59105Y102039D01* +X59168Y101965D01* +X59198Y101924D01* +X59226Y101883D01* +Y101881D01* +X59231Y101875D01* +X59237Y101867D01* +X59242Y101853D01* +X59250Y101837D01* +X59261Y101818D01* +X59272Y101796D01* +X59283Y101771D01* +X59307Y101714D01* +X59329Y101651D01* +X59351Y101580D01* +X59370Y101504D01* +Y101501D01* +X59373Y101496D01* +Y101482D01* +X59376Y101469D01* +X59378Y101447D01* +X59384Y101425D01* +X59387Y101398D01* +X59389Y101367D01* +X59395Y101332D01* +X59398Y101296D01* +X59400Y101256D01* +X59406Y101212D01* +X59408Y101119D01* +X59411Y101018D01* +Y100191D01* +X57058D01* +Y101092D01* +X57061Y101116D01* +Y101176D01* +X57064Y101212D01* +X57069Y101288D01* +X57080Y101373D01* +X57091Y101455D01* +X57107Y101537D01* +Y101539D01* +X57110Y101545D01* +X57113Y101556D01* +X57115Y101572D01* +X57121Y101589D01* +X57126Y101610D01* +X57143Y101660D01* +X57162Y101714D01* +X57186Y101774D01* +X57214Y101834D01* +X57244Y101889D01* +X57246Y101892D01* +X57252Y101900D01* +X57260Y101913D01* +X57271Y101930D01* +X57287Y101949D01* +X57304Y101973D01* +X57326Y102001D01* +X57350Y102028D01* +X57377Y102058D01* +X57407Y102088D01* +X57440Y102121D01* +X57476Y102154D01* +X57555Y102214D01* +X57645Y102271D01* +X57648Y102274D01* +X57656Y102277D01* +X57670Y102285D01* +X57689Y102293D01* +X57713Y102304D01* +X57743Y102315D01* +X57776Y102328D01* +X57814Y102342D01* +X57855Y102356D01* +X57899Y102369D01* +X57948Y102380D01* +X58000Y102391D01* +X58057Y102399D01* +X58114Y102408D01* +X58175Y102410D01* +X58237Y102413D01* +X58240D01* +X58251D01* +X58270D01* +X58292Y102410D01* +D02* +G37* +G36* +X59411Y99148D02* +X58641Y98643D01* +X59411Y98127D01* +Y97458D01* +X58226Y98291D01* +X57058Y97474D01* +Y98173D01* +X57792Y98662D01* +X57058Y99164D01* +Y99839D01* +X58202Y99017D01* +X59411Y99852D01* +Y99148D01* +D02* +G37* +G36* +X57514Y96620D02* +X59411D01* +Y96014D01* +X57514D01* +Y95280D01* +X57058D01* +Y97354D01* +X57514D01* +Y96620D01* +D02* +G37* +G36* +X61559Y101215D02* +X63456D01* +Y100609D01* +X61559D01* +Y99874D01* +X61103D01* +Y101949D01* +X61559D01* +Y101215D01* +D02* +G37* +G36* +X62752Y99691D02* +X62776Y99689D01* +X62807Y99686D01* +X62839Y99678D01* +X62878Y99669D01* +X62919Y99659D01* +X62965Y99642D01* +X63009Y99623D01* +X63058Y99598D01* +X63104Y99568D01* +X63151Y99536D01* +X63197Y99497D01* +X63241Y99451D01* +X63284Y99399D01* +X63287Y99396D01* +X63292Y99385D01* +X63303Y99369D01* +X63317Y99344D01* +X63333Y99314D01* +X63353Y99279D01* +X63372Y99238D01* +X63391Y99189D01* +X63413Y99134D01* +X63432Y99074D01* +X63451Y99009D01* +X63467Y98935D01* +X63481Y98859D01* +X63492Y98777D01* +X63497Y98689D01* +X63500Y98597D01* +Y98547D01* +X63497Y98523D01* +Y98493D01* +X63494Y98460D01* +Y98425D01* +X63489Y98343D01* +X63478Y98258D01* +X63467Y98171D01* +X63451Y98086D01* +Y98083D01* +X63448Y98078D01* +X63445Y98064D01* +X63443Y98050D01* +X63437Y98031D01* +X63429Y98007D01* +X63424Y97982D01* +X63415Y97955D01* +X63396Y97892D01* +X63374Y97824D01* +X63347Y97753D01* +X63320Y97682D01* +X62755D01* +Y97747D01* +X62757Y97750D01* +X62760Y97756D01* +X62768Y97767D01* +X62779Y97780D01* +X62793Y97799D01* +X62807Y97818D01* +X62823Y97843D01* +X62839Y97870D01* +X62878Y97933D01* +X62916Y98004D01* +X62954Y98083D01* +X62987Y98168D01* +Y98171D01* +X62989Y98179D01* +X62995Y98190D01* +X62998Y98209D01* +X63006Y98228D01* +X63011Y98252D01* +X63020Y98280D01* +X63025Y98310D01* +X63041Y98378D01* +X63052Y98454D01* +X63063Y98534D01* +X63066Y98616D01* +Y98654D01* +X63063Y98676D01* +Y98700D01* +X63060Y98728D01* +X63058Y98760D01* +Y98763D01* +X63055Y98777D01* +Y98793D01* +X63050Y98812D01* +X63041Y98861D01* +X63033Y98886D01* +X63025Y98908D01* +Y98910D01* +X63020Y98919D01* +X63014Y98932D01* +X63006Y98949D01* +X62984Y98987D01* +X62957Y99022D01* +X62954Y99025D01* +X62949Y99031D01* +X62938Y99036D01* +X62924Y99047D01* +X62905Y99055D01* +X62883Y99061D01* +X62858Y99066D01* +X62828Y99069D01* +X62826D01* +X62815D01* +X62801Y99066D01* +X62782Y99061D01* +X62763Y99052D01* +X62738Y99039D01* +X62717Y99022D01* +X62695Y99001D01* +X62692Y98998D01* +X62687Y98990D01* +X62675Y98973D01* +X62662Y98951D01* +X62648Y98924D01* +X62635Y98891D01* +X62621Y98853D01* +X62610Y98809D01* +Y98807D01* +X62607Y98804D01* +Y98796D01* +X62604Y98788D01* +X62599Y98760D01* +X62591Y98725D01* +X62580Y98684D01* +X62572Y98635D01* +X62561Y98583D01* +X62550Y98528D01* +Y98523D01* +X62547Y98515D01* +X62545Y98504D01* +X62539Y98474D01* +X62531Y98438D01* +X62520Y98397D01* +X62509Y98351D01* +X62479Y98252D01* +Y98250D01* +X62473Y98239D01* +X62468Y98225D01* +X62463Y98203D01* +X62452Y98179D01* +X62441Y98151D01* +X62427Y98122D01* +X62411Y98089D01* +X62372Y98018D01* +X62329Y97947D01* +X62277Y97881D01* +X62250Y97851D01* +X62220Y97824D01* +X62217D01* +X62211Y97818D01* +X62203Y97813D01* +X62190Y97805D01* +X62173Y97794D01* +X62154Y97783D01* +X62132Y97772D01* +X62105Y97761D01* +X62078Y97747D01* +X62045Y97737D01* +X61977Y97715D01* +X61895Y97701D01* +X61851Y97698D01* +X61807Y97696D01* +X61805D01* +X61794D01* +X61775Y97698D01* +X61753Y97701D01* +X61725Y97704D01* +X61693Y97712D01* +X61657Y97720D01* +X61616Y97734D01* +X61575Y97747D01* +X61532Y97767D01* +X61488Y97791D01* +X61444Y97821D01* +X61398Y97854D01* +X61354Y97892D01* +X61313Y97939D01* +X61272Y97990D01* +X61270Y97993D01* +X61264Y98004D01* +X61253Y98020D01* +X61239Y98045D01* +X61223Y98072D01* +X61207Y98108D01* +X61188Y98149D01* +X61166Y98195D01* +X61147Y98247D01* +X61128Y98304D01* +X61111Y98367D01* +X61095Y98433D01* +X61081Y98506D01* +X61070Y98583D01* +X61065Y98662D01* +X61062Y98747D01* +Y98807D01* +X61065Y98831D01* +Y98861D01* +X61068Y98891D01* +X61073Y98960D01* +X61081Y99039D01* +X61092Y99121D01* +X61108Y99205D01* +Y99208D01* +X61111Y99216D01* +X61114Y99227D01* +X61117Y99243D01* +X61119Y99263D01* +X61125Y99287D01* +X61133Y99312D01* +X61138Y99342D01* +X61155Y99402D01* +X61174Y99470D01* +X61196Y99536D01* +X61220Y99601D01* +X61761D01* +Y99533D01* +X61756Y99530D01* +X61750Y99522D01* +X61742Y99511D01* +X61734Y99497D01* +X61723Y99481D01* +X61695Y99440D01* +X61665Y99388D01* +X61635Y99328D01* +X61603Y99260D01* +X61573Y99186D01* +Y99183D01* +X61570Y99178D01* +X61564Y99167D01* +X61562Y99151D01* +X61554Y99132D01* +X61548Y99110D01* +X61543Y99085D01* +X61534Y99058D01* +X61521Y98992D01* +X61507Y98921D01* +X61499Y98845D01* +X61496Y98766D01* +Y98719D01* +X61499Y98695D01* +X61502Y98670D01* +X61507Y98613D01* +Y98610D01* +X61510Y98599D01* +X61513Y98586D01* +X61515Y98567D01* +X61521Y98545D01* +X61529Y98523D01* +X61545Y98471D01* +Y98468D01* +X61551Y98460D01* +X61556Y98449D01* +X61564Y98435D01* +X61586Y98400D01* +X61619Y98365D01* +X61622Y98362D01* +X61627Y98359D01* +X61638Y98351D01* +X61649Y98343D01* +X61665Y98334D01* +X61685Y98329D01* +X61706Y98324D01* +X61728Y98321D01* +X61731D01* +X61745D01* +X61761Y98324D01* +X61780Y98329D01* +X61805Y98337D01* +X61826Y98351D01* +X61851Y98367D01* +X61870Y98392D01* +X61873Y98395D01* +X61878Y98405D01* +X61887Y98425D01* +X61900Y98452D01* +X61914Y98487D01* +X61927Y98534D01* +X61936Y98561D01* +X61944Y98591D01* +X61952Y98624D01* +X61960Y98659D01* +Y98665D01* +X61966Y98681D01* +X61971Y98706D01* +X61977Y98738D01* +X61985Y98777D01* +X61996Y98818D01* +X62015Y98908D01* +Y98913D01* +X62020Y98930D01* +X62026Y98954D01* +X62031Y98984D01* +X62042Y99022D01* +X62053Y99066D01* +X62067Y99115D01* +X62083Y99164D01* +Y99167D01* +X62086Y99175D01* +X62091Y99189D01* +X62099Y99208D01* +X62108Y99230D01* +X62119Y99257D01* +X62146Y99314D01* +X62181Y99380D01* +X62222Y99445D01* +X62269Y99508D01* +X62296Y99538D01* +X62323Y99563D01* +X62326Y99566D01* +X62332Y99568D01* +X62340Y99574D01* +X62351Y99585D01* +X62367Y99593D01* +X62383Y99604D01* +X62405Y99617D01* +X62430Y99628D01* +X62457Y99642D01* +X62487Y99653D01* +X62555Y99675D01* +X62632Y99689D01* +X62675Y99691D01* +X62719Y99694D01* +X62722D01* +X62736D01* +X62752Y99691D01* +D02* +G37* +G36* +X63456Y96803D02* +X62594Y96164D01* +Y95886D01* +X63456D01* +Y95280D01* +X61103D01* +Y96369D01* +X61106Y96418D01* +X61108Y96475D01* +X61114Y96535D01* +X61119Y96598D01* +X61128Y96655D01* +Y96661D01* +X61130Y96669D01* +X61133Y96680D01* +X61138Y96710D01* +X61150Y96748D01* +X61163Y96789D01* +X61182Y96838D01* +X61204Y96887D01* +X61231Y96937D01* +Y96939D01* +X61234Y96942D01* +X61245Y96959D01* +X61264Y96983D01* +X61286Y97013D01* +X61316Y97046D01* +X61352Y97081D01* +X61392Y97114D01* +X61436Y97147D01* +X61439D01* +X61442Y97150D01* +X61450Y97155D01* +X61458Y97161D01* +X61485Y97171D01* +X61523Y97188D01* +X61567Y97202D01* +X61622Y97215D01* +X61682Y97223D01* +X61750Y97226D01* +X61753D01* +X61761D01* +X61775D01* +X61794Y97223D01* +X61816D01* +X61843Y97221D01* +X61870Y97215D01* +X61900Y97210D01* +X61968Y97196D01* +X62039Y97174D01* +X62110Y97144D01* +X62143Y97125D01* +X62176Y97103D01* +X62179D01* +X62184Y97098D01* +X62192Y97089D01* +X62203Y97081D01* +X62233Y97054D01* +X62271Y97016D01* +X62315Y96967D01* +X62359Y96907D01* +X62405Y96838D01* +X62449Y96759D01* +X63456Y97545D01* +Y96803D01* +D02* +G37* +G36* +X-59763Y-102995D02* +X-60350D01* +X-61343Y-101381D01* +Y-102995D01* +X-61900D01* +Y-100641D01* +X-61177D01* +X-60320Y-101990D01* +Y-100641D01* +X-59763D01* +Y-102995D01* +D02* +G37* +G36* +X-64865D02* +X-65542D01* +X-66399Y-100641D01* +X-65763D01* +X-65196Y-102293D01* +X-64628Y-100641D01* +X-64005D01* +X-64865Y-102995D01* +D02* +G37* +G36* +X-62397Y-101059D02* +X-62782D01* +Y-102577D01* +X-62397D01* +Y-102995D01* +X-63773D01* +Y-102577D01* +X-63388D01* +Y-101059D01* +X-63773D01* +Y-100641D01* +X-62397D01* +Y-101059D01* +D02* +G37* +G36* +X-57841Y-101736D02* +X-57000D01* +Y-102162D01* +X-57841D01* +Y-103000D01* +X-58275D01* +Y-102162D01* +X-59116D01* +Y-101736D01* +X-58275D01* +Y-100898D01* +X-57841D01* +Y-101736D01* +D02* +G37* +G36* +X-53339Y-100557D02* +X-53312D01* +X-53282Y-100559D01* +X-53214Y-100565D01* +X-53140Y-100573D01* +X-53061Y-100584D01* +X-52981Y-100598D01* +X-52979D01* +X-52970Y-100600D01* +X-52960Y-100603D01* +X-52943Y-100606D01* +X-52924Y-100611D01* +X-52902Y-100617D01* +X-52875Y-100625D01* +X-52845Y-100633D01* +X-52809Y-100644D01* +X-52774Y-100655D01* +X-52695Y-100685D01* +X-52607Y-100721D01* +X-52512Y-100764D01* +Y-101313D01* +X-52580D01* +X-52583Y-101310D01* +X-52588Y-101307D01* +X-52599Y-101299D01* +X-52613Y-101288D01* +X-52632Y-101275D01* +X-52654Y-101261D01* +X-52681Y-101242D01* +X-52711Y-101220D01* +X-52714Y-101217D01* +X-52725Y-101209D01* +X-52741Y-101198D01* +X-52763Y-101185D01* +X-52788Y-101168D01* +X-52815Y-101152D01* +X-52875Y-101116D01* +X-52880Y-101114D01* +X-52891Y-101108D01* +X-52911Y-101100D01* +X-52938Y-101086D01* +X-52968Y-101073D01* +X-53006Y-101059D01* +X-53047Y-101045D01* +X-53091Y-101032D01* +X-53096Y-101029D01* +X-53113Y-101026D01* +X-53137Y-101021D01* +X-53167Y-101013D01* +X-53205Y-101004D01* +X-53252Y-100999D01* +X-53298Y-100996D01* +X-53350Y-100993D01* +X-53377D01* +X-53407Y-100996D01* +X-53446Y-100999D01* +X-53492Y-101004D01* +X-53541Y-101015D01* +X-53593Y-101026D01* +X-53642Y-101043D01* +X-53645D01* +X-53648Y-101045D01* +X-53664Y-101051D01* +X-53689Y-101062D01* +X-53721Y-101078D01* +X-53757Y-101097D01* +X-53795Y-101122D01* +X-53836Y-101152D01* +X-53877Y-101187D01* +X-53882Y-101193D01* +X-53893Y-101204D01* +X-53910Y-101225D01* +X-53934Y-101253D01* +X-53959Y-101288D01* +X-53983Y-101329D01* +X-54008Y-101378D01* +X-54032Y-101430D01* +Y-101433D01* +X-54035Y-101436D01* +X-54038Y-101444D01* +X-54041Y-101455D01* +X-54046Y-101469D01* +X-54052Y-101485D01* +X-54060Y-101526D01* +X-54071Y-101575D01* +X-54082Y-101632D01* +X-54087Y-101695D01* +X-54090Y-101763D01* +Y-101769D01* +Y-101780D01* +X-54087Y-101802D01* +Y-101826D01* +X-54084Y-101859D01* +X-54079Y-101897D01* +X-54073Y-101938D01* +X-54065Y-101984D01* +X-54054Y-102031D01* +X-54041Y-102080D01* +X-54024Y-102129D01* +X-54002Y-102181D01* +X-53981Y-102230D01* +X-53953Y-102277D01* +X-53921Y-102320D01* +X-53885Y-102361D01* +X-53882Y-102364D01* +X-53874Y-102369D01* +X-53863Y-102380D01* +X-53847Y-102394D01* +X-53825Y-102408D01* +X-53798Y-102427D01* +X-53768Y-102443D01* +X-53729Y-102462D01* +X-53691Y-102481D01* +X-53645Y-102500D01* +X-53596Y-102520D01* +X-53538Y-102533D01* +X-53481Y-102547D01* +X-53416Y-102558D01* +X-53347Y-102563D01* +X-53273Y-102566D01* +X-53184D01* +X-53172Y-102563D01* +X-53148D01* +X-53121Y-102560D01* +Y-102102D01* +X-53588D01* +Y-101657D01* +X-52504D01* +Y-102817D01* +X-52506D01* +X-52512Y-102820D01* +X-52520Y-102823D01* +X-52534Y-102828D01* +X-52547Y-102833D01* +X-52566Y-102839D01* +X-52591Y-102847D01* +X-52616Y-102855D01* +X-52643Y-102866D01* +X-52676Y-102874D01* +X-52711Y-102885D01* +X-52747Y-102896D01* +X-52788Y-102907D01* +X-52831Y-102918D01* +X-52924Y-102940D01* +X-52927D01* +X-52935Y-102943D01* +X-52949Y-102945D01* +X-52968Y-102948D01* +X-52992Y-102954D01* +X-53020Y-102959D01* +X-53052Y-102964D01* +X-53085Y-102970D01* +X-53123Y-102975D01* +X-53164Y-102981D01* +X-53252Y-102992D01* +X-53347Y-102997D01* +X-53443Y-103000D01* +X-53484D01* +X-53500Y-102997D01* +X-53541Y-102995D01* +X-53593Y-102989D01* +X-53650Y-102984D01* +X-53716Y-102973D01* +X-53784Y-102959D01* +X-53860Y-102943D01* +X-53937Y-102921D01* +X-54013Y-102893D01* +X-54093Y-102864D01* +X-54169Y-102825D01* +X-54245Y-102782D01* +X-54316Y-102733D01* +X-54382Y-102675D01* +X-54385Y-102672D01* +X-54396Y-102659D01* +X-54412Y-102642D01* +X-54434Y-102615D01* +X-54461Y-102582D01* +X-54488Y-102541D01* +X-54518Y-102495D01* +X-54551Y-102440D01* +X-54584Y-102380D01* +X-54614Y-102312D01* +X-54641Y-102238D01* +X-54669Y-102159D01* +X-54690Y-102072D01* +X-54707Y-101979D01* +X-54718Y-101878D01* +X-54720Y-101774D01* +Y-101771D01* +Y-101769D01* +Y-101761D01* +Y-101750D01* +X-54718Y-101722D01* +X-54715Y-101684D01* +X-54710Y-101638D01* +X-54701Y-101583D01* +X-54693Y-101523D01* +X-54677Y-101458D01* +X-54660Y-101389D01* +X-54636Y-101318D01* +X-54609Y-101245D01* +X-54576Y-101168D01* +X-54537Y-101097D01* +X-54491Y-101023D01* +X-54439Y-100955D01* +X-54379Y-100890D01* +X-54374Y-100887D01* +X-54363Y-100876D01* +X-54344Y-100860D01* +X-54316Y-100838D01* +X-54281Y-100811D01* +X-54237Y-100783D01* +X-54188Y-100753D01* +X-54131Y-100721D01* +X-54065Y-100690D01* +X-53994Y-100660D01* +X-53915Y-100630D01* +X-53830Y-100606D01* +X-53738Y-100584D01* +X-53639Y-100568D01* +X-53536Y-100557D01* +X-53424Y-100554D01* +X-53364D01* +X-53339Y-100557D01* +D02* +G37* +G36* +X-49823Y-102951D02* +X-50410D01* +X-51403Y-101337D01* +Y-102951D01* +X-51960D01* +Y-100598D01* +X-51237D01* +X-50380Y-101946D01* +Y-100598D01* +X-49823D01* +Y-102951D01* +D02* +G37* +G36* +X-48297Y-100600D02* +X-48237D01* +X-48201Y-100603D01* +X-48125Y-100609D01* +X-48040Y-100619D01* +X-47958Y-100630D01* +X-47876Y-100647D01* +X-47874D01* +X-47868Y-100649D01* +X-47857Y-100652D01* +X-47841Y-100655D01* +X-47824Y-100660D01* +X-47803Y-100666D01* +X-47754Y-100682D01* +X-47699Y-100701D01* +X-47639Y-100726D01* +X-47579Y-100753D01* +X-47524Y-100783D01* +X-47521Y-100786D01* +X-47513Y-100791D01* +X-47500Y-100800D01* +X-47483Y-100811D01* +X-47464Y-100827D01* +X-47440Y-100843D01* +X-47412Y-100865D01* +X-47385Y-100890D01* +X-47355Y-100917D01* +X-47325Y-100947D01* +X-47292Y-100980D01* +X-47259Y-101015D01* +X-47199Y-101094D01* +X-47142Y-101185D01* +X-47139Y-101187D01* +X-47137Y-101196D01* +X-47128Y-101209D01* +X-47120Y-101228D01* +X-47109Y-101253D01* +X-47098Y-101283D01* +X-47085Y-101316D01* +X-47071Y-101354D01* +X-47057Y-101395D01* +X-47044Y-101438D01* +X-47033Y-101488D01* +X-47022Y-101539D01* +X-47014Y-101597D01* +X-47006Y-101654D01* +X-47003Y-101714D01* +X-47000Y-101777D01* +Y-101780D01* +Y-101791D01* +Y-101810D01* +X-47003Y-101832D01* +X-47006Y-101862D01* +X-47008Y-101894D01* +X-47014Y-101933D01* +X-47019Y-101973D01* +X-47027Y-102020D01* +X-47036Y-102066D01* +X-47063Y-102165D01* +X-47079Y-102216D01* +X-47101Y-102266D01* +X-47123Y-102318D01* +X-47150Y-102367D01* +X-47153Y-102369D01* +X-47156Y-102378D01* +X-47166Y-102391D01* +X-47177Y-102410D01* +X-47191Y-102432D01* +X-47210Y-102457D01* +X-47229Y-102484D01* +X-47254Y-102514D01* +X-47308Y-102577D01* +X-47374Y-102645D01* +X-47448Y-102708D01* +X-47489Y-102738D01* +X-47530Y-102765D01* +X-47532D01* +X-47538Y-102771D01* +X-47546Y-102776D01* +X-47560Y-102782D01* +X-47576Y-102790D01* +X-47595Y-102801D01* +X-47617Y-102812D01* +X-47642Y-102823D01* +X-47699Y-102847D01* +X-47762Y-102869D01* +X-47833Y-102891D01* +X-47909Y-102910D01* +X-47912D01* +X-47917Y-102913D01* +X-47931D01* +X-47945Y-102915D01* +X-47966Y-102918D01* +X-47988Y-102924D01* +X-48016Y-102926D01* +X-48046Y-102929D01* +X-48081Y-102935D01* +X-48117Y-102937D01* +X-48158Y-102940D01* +X-48201Y-102945D01* +X-48294Y-102948D01* +X-48395Y-102951D01* +X-49222D01* +Y-100598D01* +X-48321D01* +X-48297Y-100600D01* +D02* +G37* +G36* +X76217Y-27065D02* +X76247D01* +X76277Y-27068D01* +X76345Y-27073D01* +X76424Y-27081D01* +X76506Y-27092D01* +X76591Y-27108D01* +X76594D01* +X76602Y-27111D01* +X76613Y-27114D01* +X76629Y-27117D01* +X76648Y-27119D01* +X76673Y-27125D01* +X76697Y-27133D01* +X76727Y-27139D01* +X76788Y-27155D01* +X76856Y-27174D01* +X76921Y-27196D01* +X76987Y-27220D01* +Y-27761D01* +X76919D01* +X76916Y-27755D01* +X76908Y-27750D01* +X76897Y-27742D01* +X76883Y-27734D01* +X76867Y-27723D01* +X76826Y-27696D01* +X76774Y-27665D01* +X76714Y-27635D01* +X76646Y-27603D01* +X76572Y-27573D01* +X76569D01* +X76564Y-27570D01* +X76553Y-27564D01* +X76537Y-27562D01* +X76517Y-27553D01* +X76495Y-27548D01* +X76471Y-27543D01* +X76444Y-27534D01* +X76378Y-27521D01* +X76307Y-27507D01* +X76231Y-27499D01* +X76152Y-27496D01* +X76105D01* +X76081Y-27499D01* +X76056Y-27502D01* +X75999Y-27507D01* +X75996D01* +X75985Y-27510D01* +X75971Y-27513D01* +X75952Y-27515D01* +X75930Y-27521D01* +X75909Y-27529D01* +X75857Y-27545D01* +X75854D01* +X75846Y-27551D01* +X75835Y-27556D01* +X75821Y-27564D01* +X75786Y-27586D01* +X75750Y-27619D01* +X75748Y-27622D01* +X75745Y-27627D01* +X75737Y-27638D01* +X75728Y-27649D01* +X75720Y-27665D01* +X75715Y-27685D01* +X75709Y-27706D01* +X75706Y-27728D01* +Y-27731D01* +Y-27745D01* +X75709Y-27761D01* +X75715Y-27780D01* +X75723Y-27805D01* +X75737Y-27826D01* +X75753Y-27851D01* +X75778Y-27870D01* +X75780Y-27873D01* +X75791Y-27878D01* +X75810Y-27887D01* +X75838Y-27900D01* +X75873Y-27914D01* +X75920Y-27928D01* +X75947Y-27936D01* +X75977Y-27944D01* +X76010Y-27952D01* +X76045Y-27960D01* +X76051D01* +X76067Y-27966D01* +X76091Y-27971D01* +X76124Y-27977D01* +X76162Y-27985D01* +X76203Y-27996D01* +X76293Y-28015D01* +X76299D01* +X76315Y-28020D01* +X76340Y-28026D01* +X76370Y-28031D01* +X76408Y-28042D01* +X76452Y-28053D01* +X76501Y-28067D01* +X76550Y-28083D01* +X76553D01* +X76561Y-28086D01* +X76575Y-28091D01* +X76594Y-28100D01* +X76616Y-28108D01* +X76643Y-28119D01* +X76700Y-28146D01* +X76766Y-28181D01* +X76831Y-28222D01* +X76894Y-28269D01* +X76924Y-28296D01* +X76949Y-28323D01* +X76951Y-28326D01* +X76954Y-28332D01* +X76960Y-28340D01* +X76970Y-28351D01* +X76979Y-28367D01* +X76990Y-28383D01* +X77003Y-28405D01* +X77014Y-28430D01* +X77028Y-28457D01* +X77039Y-28487D01* +X77061Y-28555D01* +X77074Y-28632D01* +X77077Y-28675D01* +X77080Y-28719D01* +Y-28722D01* +Y-28736D01* +X77077Y-28752D01* +X77074Y-28776D01* +X77071Y-28807D01* +X77063Y-28839D01* +X77055Y-28878D01* +X77044Y-28918D01* +X77028Y-28965D01* +X77009Y-29009D01* +X76984Y-29058D01* +X76954Y-29104D01* +X76921Y-29151D01* +X76883Y-29197D01* +X76837Y-29241D01* +X76785Y-29284D01* +X76782Y-29287D01* +X76771Y-29293D01* +X76755Y-29303D01* +X76730Y-29317D01* +X76700Y-29333D01* +X76665Y-29353D01* +X76624Y-29372D01* +X76575Y-29391D01* +X76520Y-29413D01* +X76460Y-29432D01* +X76394Y-29451D01* +X76321Y-29467D01* +X76244Y-29481D01* +X76162Y-29492D01* +X76075Y-29497D01* +X75982Y-29500D01* +X75933D01* +X75909Y-29497D01* +X75879D01* +X75846Y-29495D01* +X75810D01* +X75728Y-29489D01* +X75644Y-29478D01* +X75556Y-29467D01* +X75472Y-29451D01* +X75469D01* +X75464Y-29448D01* +X75450Y-29445D01* +X75436Y-29443D01* +X75417Y-29437D01* +X75393Y-29429D01* +X75368Y-29424D01* +X75341Y-29415D01* +X75278Y-29396D01* +X75210Y-29374D01* +X75139Y-29347D01* +X75068Y-29320D01* +Y-28755D01* +X75133D01* +X75136Y-28757D01* +X75141Y-28760D01* +X75152Y-28768D01* +X75166Y-28779D01* +X75185Y-28793D01* +X75204Y-28807D01* +X75229Y-28823D01* +X75256Y-28839D01* +X75319Y-28878D01* +X75390Y-28916D01* +X75469Y-28954D01* +X75554Y-28987D01* +X75556D01* +X75565Y-28989D01* +X75576Y-28995D01* +X75595Y-28998D01* +X75614Y-29006D01* +X75638Y-29011D01* +X75666Y-29019D01* +X75696Y-29025D01* +X75764Y-29041D01* +X75840Y-29052D01* +X75920Y-29063D01* +X76001Y-29066D01* +X76040D01* +X76061Y-29063D01* +X76086D01* +X76113Y-29061D01* +X76146Y-29058D01* +X76149D01* +X76162Y-29055D01* +X76179D01* +X76198Y-29050D01* +X76247Y-29041D01* +X76272Y-29033D01* +X76293Y-29025D01* +X76296D01* +X76304Y-29019D01* +X76318Y-29014D01* +X76334Y-29006D01* +X76373Y-28984D01* +X76408Y-28957D01* +X76411Y-28954D01* +X76416Y-28949D01* +X76422Y-28938D01* +X76433Y-28924D01* +X76441Y-28905D01* +X76446Y-28883D01* +X76452Y-28858D01* +X76455Y-28828D01* +Y-28826D01* +Y-28815D01* +X76452Y-28801D01* +X76446Y-28782D01* +X76438Y-28763D01* +X76424Y-28738D01* +X76408Y-28716D01* +X76386Y-28695D01* +X76384Y-28692D01* +X76375Y-28686D01* +X76359Y-28675D01* +X76337Y-28662D01* +X76310Y-28648D01* +X76277Y-28635D01* +X76239Y-28621D01* +X76195Y-28610D01* +X76192D01* +X76190Y-28607D01* +X76182D01* +X76173Y-28605D01* +X76146Y-28599D01* +X76111Y-28591D01* +X76070Y-28580D01* +X76020Y-28572D01* +X75969Y-28561D01* +X75914Y-28550D01* +X75909D01* +X75900Y-28547D01* +X75889Y-28545D01* +X75859Y-28539D01* +X75824Y-28531D01* +X75783Y-28520D01* +X75737Y-28509D01* +X75638Y-28479D01* +X75636D01* +X75625Y-28473D01* +X75611Y-28468D01* +X75589Y-28463D01* +X75565Y-28452D01* +X75537Y-28441D01* +X75507Y-28427D01* +X75475Y-28411D01* +X75403Y-28372D01* +X75332Y-28329D01* +X75267Y-28277D01* +X75237Y-28250D01* +X75210Y-28220D01* +Y-28217D01* +X75204Y-28211D01* +X75199Y-28203D01* +X75191Y-28190D01* +X75180Y-28173D01* +X75169Y-28154D01* +X75158Y-28132D01* +X75147Y-28105D01* +X75133Y-28078D01* +X75122Y-28045D01* +X75100Y-27977D01* +X75087Y-27895D01* +X75084Y-27851D01* +X75081Y-27807D01* +Y-27805D01* +Y-27794D01* +X75084Y-27775D01* +X75087Y-27753D01* +X75090Y-27725D01* +X75098Y-27693D01* +X75106Y-27657D01* +X75120Y-27616D01* +X75133Y-27575D01* +X75152Y-27532D01* +X75177Y-27488D01* +X75207Y-27444D01* +X75240Y-27398D01* +X75278Y-27354D01* +X75324Y-27313D01* +X75376Y-27272D01* +X75379Y-27270D01* +X75390Y-27264D01* +X75406Y-27253D01* +X75431Y-27240D01* +X75458Y-27223D01* +X75494Y-27207D01* +X75534Y-27188D01* +X75581Y-27166D01* +X75633Y-27147D01* +X75690Y-27128D01* +X75753Y-27111D01* +X75819Y-27095D01* +X75892Y-27081D01* +X75969Y-27070D01* +X76048Y-27065D01* +X76132Y-27062D01* +X76192D01* +X76217Y-27065D01* +D02* +G37* +G36* +X81543Y-27559D02* +X80809D01* +Y-29456D01* +X80203D01* +Y-27559D01* +X79469D01* +Y-27103D01* +X81543D01* +Y-27559D01* +D02* +G37* +G36* +X79195D02* +X78101D01* +Y-27963D01* +X79116D01* +Y-28419D01* +X78101D01* +Y-29000D01* +X79195D01* +Y-29456D01* +X77495D01* +Y-27103D01* +X79195D01* +Y-27559D01* +D02* +G37* +G36* +X74688D02* +X73593D01* +Y-27963D01* +X74609D01* +Y-28419D01* +X73593D01* +Y-29000D01* +X74688D01* +Y-29456D01* +X72988D01* +Y-27103D01* +X74688D01* +Y-27559D01* +D02* +G37* +G36* +X71595Y-27106D02* +X71653Y-27108D01* +X71712Y-27114D01* +X71775Y-27119D01* +X71833Y-27128D01* +X71838D01* +X71846Y-27130D01* +X71857Y-27133D01* +X71887Y-27139D01* +X71925Y-27150D01* +X71966Y-27163D01* +X72016Y-27182D01* +X72065Y-27204D01* +X72114Y-27231D01* +X72117D01* +X72119Y-27234D01* +X72136Y-27245D01* +X72160Y-27264D01* +X72190Y-27286D01* +X72223Y-27316D01* +X72259Y-27351D01* +X72291Y-27392D01* +X72324Y-27436D01* +Y-27439D01* +X72327Y-27442D01* +X72332Y-27450D01* +X72338Y-27458D01* +X72349Y-27485D01* +X72365Y-27523D01* +X72379Y-27567D01* +X72392Y-27622D01* +X72400Y-27682D01* +X72403Y-27750D01* +Y-27753D01* +Y-27761D01* +Y-27775D01* +X72400Y-27794D01* +Y-27816D01* +X72398Y-27843D01* +X72392Y-27870D01* +X72387Y-27900D01* +X72373Y-27968D01* +X72351Y-28039D01* +X72321Y-28110D01* +X72302Y-28143D01* +X72280Y-28176D01* +Y-28179D01* +X72275Y-28184D01* +X72267Y-28192D01* +X72259Y-28203D01* +X72231Y-28233D01* +X72193Y-28271D01* +X72144Y-28315D01* +X72084Y-28359D01* +X72016Y-28405D01* +X71936Y-28449D01* +X72723Y-29456D01* +X71980D01* +X71341Y-28594D01* +X71063D01* +Y-29456D01* +X70457D01* +Y-27103D01* +X71546D01* +X71595Y-27106D01* +D02* +G37* +G36* +X77563Y-44376D02* +X76657D01* +Y-43728D01* +X77563D01* +Y-44376D01* +D02* +G37* +G36* +X42824Y-43826D02* +X42869D01* +X42914Y-43830D01* +X43017Y-43839D01* +X43136Y-43851D01* +X43259Y-43867D01* +X43386Y-43892D01* +X43390D01* +X43402Y-43896D01* +X43418Y-43900D01* +X43443Y-43904D01* +X43472Y-43908D01* +X43509Y-43917D01* +X43546Y-43929D01* +X43591Y-43937D01* +X43681Y-43962D01* +X43783Y-43990D01* +X43882Y-44023D01* +X43980Y-44060D01* +Y-44872D01* +X43878D01* +X43874Y-44864D01* +X43861Y-44855D01* +X43845Y-44843D01* +X43824Y-44831D01* +X43800Y-44815D01* +X43738Y-44774D01* +X43660Y-44728D01* +X43570Y-44683D01* +X43468Y-44634D01* +X43357Y-44589D01* +X43353D01* +X43345Y-44585D01* +X43328Y-44577D01* +X43304Y-44573D01* +X43275Y-44560D01* +X43242Y-44552D01* +X43205Y-44544D01* +X43164Y-44532D01* +X43066Y-44511D01* +X42959Y-44491D01* +X42845Y-44478D01* +X42726Y-44474D01* +X42656D01* +X42619Y-44478D01* +X42582Y-44482D01* +X42496Y-44491D01* +X42492D01* +X42476Y-44495D01* +X42455Y-44499D01* +X42426Y-44503D01* +X42393Y-44511D01* +X42361Y-44523D01* +X42283Y-44548D01* +X42279D01* +X42266Y-44556D01* +X42250Y-44564D01* +X42230Y-44577D01* +X42176Y-44609D01* +X42123Y-44659D01* +X42119Y-44663D01* +X42115Y-44671D01* +X42102Y-44687D01* +X42090Y-44704D01* +X42078Y-44728D01* +X42070Y-44757D01* +X42061Y-44790D01* +X42057Y-44823D01* +Y-44827D01* +Y-44847D01* +X42061Y-44872D01* +X42070Y-44901D01* +X42082Y-44938D01* +X42102Y-44970D01* +X42127Y-45007D01* +X42164Y-45036D01* +X42168Y-45040D01* +X42184Y-45048D01* +X42213Y-45061D01* +X42254Y-45081D01* +X42307Y-45101D01* +X42377Y-45122D01* +X42418Y-45134D01* +X42463Y-45147D01* +X42512Y-45159D01* +X42566Y-45171D01* +X42574D01* +X42599Y-45179D01* +X42635Y-45188D01* +X42685Y-45196D01* +X42742Y-45208D01* +X42803Y-45224D01* +X42939Y-45253D01* +X42947D01* +X42972Y-45261D01* +X43009Y-45270D01* +X43054Y-45278D01* +X43111Y-45294D01* +X43177Y-45311D01* +X43250Y-45331D01* +X43324Y-45356D01* +X43328D01* +X43341Y-45360D01* +X43361Y-45368D01* +X43390Y-45380D01* +X43423Y-45393D01* +X43464Y-45409D01* +X43550Y-45450D01* +X43648Y-45503D01* +X43747Y-45565D01* +X43841Y-45634D01* +X43886Y-45676D01* +X43923Y-45717D01* +X43927Y-45721D01* +X43931Y-45729D01* +X43939Y-45741D01* +X43956Y-45757D01* +X43968Y-45782D01* +X43984Y-45807D01* +X44005Y-45840D01* +X44021Y-45876D01* +X44042Y-45917D01* +X44058Y-45963D01* +X44091Y-46065D01* +X44111Y-46180D01* +X44115Y-46245D01* +X44120Y-46311D01* +Y-46315D01* +Y-46336D01* +X44115Y-46360D01* +X44111Y-46397D01* +X44107Y-46442D01* +X44095Y-46491D01* +X44083Y-46549D01* +X44066Y-46610D01* +X44042Y-46680D01* +X44013Y-46746D01* +X43976Y-46819D01* +X43931Y-46889D01* +X43882Y-46959D01* +X43824Y-47028D01* +X43755Y-47094D01* +X43677Y-47160D01* +X43673Y-47164D01* +X43656Y-47172D01* +X43632Y-47188D01* +X43595Y-47209D01* +X43550Y-47234D01* +X43496Y-47262D01* +X43435Y-47291D01* +X43361Y-47320D01* +X43279Y-47352D01* +X43189Y-47381D01* +X43091Y-47410D01* +X42980Y-47434D01* +X42865Y-47455D01* +X42742Y-47471D01* +X42611Y-47480D01* +X42471Y-47484D01* +X42398D01* +X42361Y-47480D01* +X42316D01* +X42266Y-47475D01* +X42213D01* +X42090Y-47467D01* +X41963Y-47451D01* +X41832Y-47434D01* +X41705Y-47410D01* +X41701D01* +X41692Y-47406D01* +X41672Y-47402D01* +X41651Y-47398D01* +X41623Y-47389D01* +X41586Y-47377D01* +X41549Y-47369D01* +X41508Y-47357D01* +X41414Y-47328D01* +X41311Y-47295D01* +X41205Y-47254D01* +X41098Y-47213D01* +Y-46364D01* +X41196D01* +X41200Y-46368D01* +X41209Y-46373D01* +X41225Y-46385D01* +X41245Y-46401D01* +X41274Y-46422D01* +X41303Y-46442D01* +X41340Y-46467D01* +X41381Y-46491D01* +X41475Y-46549D01* +X41582Y-46606D01* +X41701Y-46664D01* +X41828Y-46713D01* +X41832D01* +X41844Y-46717D01* +X41860Y-46725D01* +X41889Y-46729D01* +X41918Y-46742D01* +X41955Y-46750D01* +X41996Y-46762D01* +X42041Y-46770D01* +X42143Y-46795D01* +X42258Y-46811D01* +X42377Y-46828D01* +X42500Y-46832D01* +X42557D01* +X42590Y-46828D01* +X42627D01* +X42668Y-46823D01* +X42717Y-46819D01* +X42722D01* +X42742Y-46815D01* +X42767D01* +X42795Y-46807D01* +X42869Y-46795D01* +X42906Y-46782D01* +X42939Y-46770D01* +X42943D01* +X42955Y-46762D01* +X42976Y-46754D01* +X43000Y-46742D01* +X43058Y-46709D01* +X43111Y-46668D01* +X43115Y-46664D01* +X43123Y-46655D01* +X43132Y-46639D01* +X43148Y-46619D01* +X43160Y-46590D01* +X43168Y-46557D01* +X43177Y-46520D01* +X43181Y-46475D01* +Y-46471D01* +Y-46455D01* +X43177Y-46434D01* +X43168Y-46405D01* +X43156Y-46377D01* +X43136Y-46340D01* +X43111Y-46307D01* +X43078Y-46274D01* +X43074Y-46270D01* +X43062Y-46262D01* +X43037Y-46245D01* +X43004Y-46225D01* +X42963Y-46204D01* +X42914Y-46184D01* +X42857Y-46163D01* +X42791Y-46147D01* +X42787D01* +X42783Y-46143D01* +X42771D01* +X42758Y-46139D01* +X42717Y-46131D01* +X42664Y-46118D01* +X42603Y-46102D01* +X42529Y-46090D01* +X42451Y-46073D01* +X42369Y-46057D01* +X42361D01* +X42348Y-46053D01* +X42332Y-46049D01* +X42287Y-46040D01* +X42234Y-46028D01* +X42172Y-46012D01* +X42102Y-45995D01* +X41955Y-45950D01* +X41951D01* +X41934Y-45942D01* +X41914Y-45934D01* +X41881Y-45926D01* +X41844Y-45909D01* +X41803Y-45893D01* +X41758Y-45872D01* +X41709Y-45848D01* +X41602Y-45790D01* +X41496Y-45725D01* +X41397Y-45647D01* +X41352Y-45606D01* +X41311Y-45561D01* +Y-45557D01* +X41303Y-45548D01* +X41295Y-45536D01* +X41282Y-45516D01* +X41266Y-45491D01* +X41250Y-45462D01* +X41233Y-45430D01* +X41217Y-45388D01* +X41196Y-45347D01* +X41180Y-45298D01* +X41147Y-45196D01* +X41127Y-45073D01* +X41122Y-45007D01* +X41118Y-44942D01* +Y-44938D01* +Y-44921D01* +X41122Y-44892D01* +X41127Y-44860D01* +X41131Y-44819D01* +X41143Y-44769D01* +X41155Y-44716D01* +X41176Y-44655D01* +X41196Y-44593D01* +X41225Y-44528D01* +X41262Y-44462D01* +X41307Y-44396D01* +X41356Y-44327D01* +X41414Y-44261D01* +X41483Y-44199D01* +X41561Y-44138D01* +X41565Y-44134D01* +X41582Y-44126D01* +X41606Y-44109D01* +X41643Y-44089D01* +X41684Y-44064D01* +X41737Y-44040D01* +X41799Y-44011D01* +X41869Y-43978D01* +X41947Y-43949D01* +X42033Y-43921D01* +X42127Y-43896D01* +X42225Y-43872D01* +X42336Y-43851D01* +X42451Y-43835D01* +X42570Y-43826D01* +X42697Y-43822D01* +X42787D01* +X42824Y-43826D01* +D02* +G37* +G36* +X68556Y-44683D02* +X68593Y-44687D01* +X68634Y-44692D01* +X68683Y-44700D01* +X68732Y-44712D01* +X68839Y-44741D01* +X68896Y-44761D01* +X68953Y-44786D01* +X69007Y-44815D01* +X69060Y-44851D01* +X69109Y-44888D01* +X69158Y-44933D01* +X69162Y-44938D01* +X69171Y-44946D01* +X69183Y-44958D01* +X69195Y-44978D01* +X69216Y-45007D01* +X69236Y-45040D01* +X69257Y-45077D01* +X69281Y-45122D01* +X69306Y-45171D01* +X69326Y-45224D01* +X69347Y-45286D01* +X69367Y-45356D01* +X69380Y-45430D01* +X69392Y-45507D01* +X69400Y-45594D01* +X69404Y-45684D01* +Y-47418D01* +X68547D01* +Y-46098D01* +Y-46090D01* +Y-46069D01* +Y-46036D01* +X68543Y-45995D01* +Y-45946D01* +X68539Y-45893D01* +X68527Y-45774D01* +Y-45766D01* +X68523Y-45749D01* +X68519Y-45721D01* +X68515Y-45684D01* +X68498Y-45606D01* +X68486Y-45573D01* +X68474Y-45540D01* +X68470Y-45536D01* +X68465Y-45524D01* +X68453Y-45507D01* +X68437Y-45491D01* +X68416Y-45466D01* +X68392Y-45446D01* +X68363Y-45425D01* +X68330Y-45409D01* +X68326D01* +X68314Y-45401D01* +X68293Y-45397D01* +X68265Y-45388D01* +X68228Y-45380D01* +X68187Y-45376D01* +X68133Y-45368D01* +X68035D01* +X68002Y-45372D01* +X67969Y-45376D01* +X67928Y-45384D01* +X67842Y-45409D01* +X67838D01* +X67822Y-45417D01* +X67797Y-45425D01* +X67764Y-45438D01* +X67727Y-45454D01* +X67682Y-45475D01* +X67637Y-45499D01* +X67584Y-45528D01* +Y-47418D01* +X66727D01* +Y-44753D01* +X67584D01* +Y-45048D01* +X67588Y-45044D01* +X67592Y-45040D01* +X67604Y-45032D01* +X67621Y-45020D01* +X67666Y-44987D01* +X67723Y-44950D01* +X67789Y-44905D01* +X67863Y-44860D01* +X67941Y-44815D01* +X68019Y-44778D01* +X68023D01* +X68027Y-44774D01* +X68039Y-44769D01* +X68055Y-44761D01* +X68096Y-44745D01* +X68154Y-44728D01* +X68224Y-44712D01* +X68305Y-44696D01* +X68392Y-44683D01* +X68486Y-44679D01* +X68527D01* +X68556Y-44683D01* +D02* +G37* +G36* +X92688Y-44683D02* +X92725Y-44687D01* +X92766Y-44692D01* +X92811Y-44700D01* +X92860Y-44712D01* +X92967Y-44745D01* +X93024Y-44765D01* +X93078Y-44790D01* +X93131Y-44819D01* +X93180Y-44855D01* +X93229Y-44897D01* +X93274Y-44942D01* +X93279Y-44946D01* +X93283Y-44954D01* +X93295Y-44970D01* +X93311Y-44991D01* +X93328Y-45015D01* +X93344Y-45048D01* +X93365Y-45085D01* +X93389Y-45130D01* +X93410Y-45179D01* +X93430Y-45237D01* +X93447Y-45298D01* +X93463Y-45364D01* +X93480Y-45434D01* +X93492Y-45511D01* +X93496Y-45594D01* +X93500Y-45684D01* +Y-47418D01* +X92643D01* +Y-46086D01* +Y-46081D01* +Y-46077D01* +Y-46053D01* +Y-46016D01* +Y-45971D01* +X92639Y-45917D01* +Y-45864D01* +X92635Y-45807D01* +X92631Y-45753D01* +Y-45749D01* +Y-45729D01* +X92627Y-45704D01* +X92623Y-45676D01* +X92606Y-45602D01* +X92594Y-45565D01* +X92582Y-45532D01* +Y-45528D01* +X92573Y-45520D01* +X92565Y-45503D01* +X92549Y-45487D01* +X92532Y-45466D01* +X92512Y-45446D01* +X92483Y-45425D01* +X92454Y-45409D01* +X92450D01* +X92438Y-45401D01* +X92418Y-45397D01* +X92393Y-45388D01* +X92356Y-45380D01* +X92315Y-45376D01* +X92266Y-45368D01* +X92168D01* +X92143Y-45372D01* +X92110Y-45376D01* +X92077Y-45384D01* +X91999Y-45405D01* +X91995D01* +X91983Y-45413D01* +X91958Y-45421D01* +X91930Y-45434D01* +X91893Y-45450D01* +X91852Y-45470D01* +X91807Y-45499D01* +X91753Y-45528D01* +Y-47418D01* +X90896D01* +Y-46086D01* +Y-46081D01* +Y-46077D01* +Y-46053D01* +Y-46016D01* +Y-45971D01* +X90892Y-45921D01* +Y-45864D01* +X90888Y-45811D01* +X90884Y-45757D01* +Y-45749D01* +Y-45733D01* +X90880Y-45708D01* +X90876Y-45676D01* +X90860Y-45602D01* +X90847Y-45565D01* +X90835Y-45532D01* +Y-45528D01* +X90827Y-45520D01* +X90815Y-45503D01* +X90802Y-45487D01* +X90761Y-45446D01* +X90704Y-45409D01* +X90700D01* +X90687Y-45401D01* +X90667Y-45397D01* +X90642Y-45388D01* +X90605Y-45380D01* +X90564Y-45376D01* +X90515Y-45368D01* +X90441D01* +X90417Y-45372D01* +X90384Y-45376D01* +X90347Y-45380D01* +X90306Y-45388D01* +X90261Y-45405D01* +X90216Y-45421D01* +X90212Y-45425D01* +X90195Y-45430D01* +X90175Y-45442D01* +X90146Y-45454D01* +X90113Y-45470D01* +X90081Y-45487D01* +X90007Y-45528D01* +Y-47418D01* +X89150D01* +Y-44753D01* +X90007D01* +Y-45048D01* +X90011Y-45044D01* +X90015Y-45040D01* +X90027Y-45032D01* +X90044Y-45020D01* +X90085Y-44987D01* +X90142Y-44950D01* +X90204Y-44905D01* +X90273Y-44860D01* +X90351Y-44819D01* +X90425Y-44778D01* +X90429D01* +X90433Y-44774D01* +X90446Y-44769D01* +X90462Y-44761D01* +X90503Y-44745D01* +X90556Y-44728D01* +X90622Y-44712D01* +X90700Y-44696D01* +X90782Y-44683D01* +X90872Y-44679D01* +X90917D01* +X90938Y-44683D01* +X90966D01* +X91028Y-44696D01* +X91101Y-44708D01* +X91179Y-44728D01* +X91257Y-44757D01* +X91335Y-44798D01* +X91339D01* +X91343Y-44802D01* +X91368Y-44819D01* +X91405Y-44847D01* +X91450Y-44884D01* +X91499Y-44933D01* +X91553Y-44995D01* +X91606Y-45065D01* +X91651Y-45142D01* +X91655Y-45138D01* +X91663Y-45134D01* +X91676Y-45122D01* +X91696Y-45106D01* +X91716Y-45089D01* +X91745Y-45069D01* +X91807Y-45020D01* +X91885Y-44966D01* +X91967Y-44909D01* +X92057Y-44855D01* +X92147Y-44806D01* +X92151D01* +X92159Y-44802D01* +X92172Y-44794D01* +X92188Y-44786D01* +X92208Y-44778D01* +X92237Y-44765D01* +X92299Y-44741D01* +X92368Y-44720D01* +X92446Y-44700D01* +X92532Y-44683D01* +X92619Y-44679D01* +X92659D01* +X92688Y-44683D01* +D02* +G37* +G36* +X62893Y-44749D02* +X62902D01* +X62926Y-44753D01* +X62959D01* +X62996Y-44757D01* +Y-45569D01* +X62914D01* +X62910Y-45565D01* +X62893D01* +X62877Y-45561D01* +X62853Y-45557D01* +X62820Y-45553D01* +X62783Y-45548D01* +X62742Y-45544D01* +X62738D01* +X62721Y-45540D01* +X62701D01* +X62672Y-45536D01* +X62607Y-45532D01* +X62475D01* +X62434Y-45536D01* +X62385D01* +X62332Y-45540D01* +X62221Y-45557D01* +X62213D01* +X62196Y-45561D01* +X62168Y-45569D01* +X62131Y-45577D01* +X62086Y-45585D01* +X62037Y-45602D01* +X61979Y-45618D01* +X61922Y-45639D01* +Y-47418D01* +X61065D01* +Y-44753D01* +X61922D01* +Y-45147D01* +X61926Y-45142D01* +X61934Y-45134D01* +X61950Y-45122D01* +X61967Y-45106D01* +X61992Y-45089D01* +X62020Y-45065D01* +X62086Y-45015D01* +X62164Y-44962D01* +X62246Y-44909D01* +X62328Y-44864D01* +X62410Y-44827D01* +X62414D01* +X62418Y-44823D01* +X62430Y-44819D01* +X62447Y-44815D01* +X62484Y-44802D01* +X62537Y-44786D01* +X62594Y-44769D01* +X62660Y-44757D01* +X62725Y-44749D01* +X62791Y-44745D01* +X62853D01* +X62893Y-44749D01* +D02* +G37* +G36* +X55964Y-45520D02* +X57420Y-47418D01* +X56297D01* +X55239Y-46003D01* +X55030Y-46266D01* +Y-47418D01* +X54119D01* +Y-43884D01* +X55030D01* +Y-45487D01* +X56292Y-43884D01* +X57350D01* +X55964Y-45520D01* +D02* +G37* +G36* +X49245Y-44683D02* +X49277D01* +X49318Y-44687D01* +X49404Y-44696D01* +X49503Y-44704D01* +X49605Y-44720D01* +X49708Y-44741D01* +X49712D01* +X49720Y-44745D01* +X49733D01* +X49753Y-44753D01* +X49778Y-44757D01* +X49802Y-44765D01* +X49864Y-44782D01* +X49933Y-44798D01* +X50007Y-44823D01* +X50077Y-44847D01* +X50138Y-44872D01* +Y-45544D01* +X50060D01* +X50056Y-45540D01* +X50032Y-45524D01* +X49991Y-45499D01* +X49937Y-45470D01* +X49872Y-45438D01* +X49798Y-45401D01* +X49720Y-45368D01* +X49630Y-45335D01* +X49626D01* +X49618Y-45331D01* +X49605Y-45327D01* +X49589Y-45323D01* +X49564Y-45315D01* +X49540Y-45307D01* +X49478Y-45290D01* +X49404Y-45278D01* +X49323Y-45261D01* +X49232Y-45253D01* +X49138Y-45249D01* +X49105D01* +X49064Y-45253D01* +X49015Y-45257D01* +X48962Y-45261D01* +X48904Y-45274D01* +X48843Y-45286D01* +X48790Y-45307D01* +X48785Y-45311D01* +X48769Y-45319D01* +X48744Y-45331D01* +X48720Y-45347D01* +X48695Y-45372D01* +X48671Y-45401D01* +X48654Y-45434D01* +X48650Y-45470D01* +Y-45475D01* +Y-45487D01* +X48654Y-45503D01* +X48658Y-45524D01* +X48667Y-45548D01* +X48675Y-45569D01* +X48691Y-45594D01* +X48712Y-45614D01* +X48716Y-45618D01* +X48724Y-45622D01* +X48744Y-45630D01* +X48773Y-45643D01* +X48814Y-45659D01* +X48867Y-45676D01* +X48933Y-45692D01* +X49015Y-45712D01* +X49019D01* +X49036Y-45717D01* +X49064Y-45721D01* +X49097Y-45729D01* +X49138Y-45737D01* +X49187Y-45745D01* +X49236Y-45757D01* +X49294Y-45766D01* +X49302D01* +X49318Y-45770D01* +X49351Y-45774D01* +X49388Y-45782D01* +X49433Y-45790D01* +X49487Y-45803D01* +X49597Y-45827D01* +X49601D01* +X49614Y-45831D01* +X49630Y-45835D01* +X49650Y-45844D01* +X49679Y-45852D01* +X49712Y-45864D01* +X49786Y-45897D01* +X49868Y-45934D01* +X49950Y-45983D01* +X50028Y-46040D01* +X50060Y-46073D01* +X50093Y-46106D01* +Y-46110D01* +X50102Y-46114D01* +X50110Y-46126D01* +X50118Y-46139D01* +X50147Y-46180D01* +X50175Y-46233D01* +X50204Y-46303D01* +X50233Y-46381D01* +X50249Y-46475D01* +X50257Y-46573D01* +Y-46578D01* +Y-46590D01* +X50253Y-46614D01* +Y-46643D01* +X50245Y-46676D01* +X50237Y-46717D01* +X50225Y-46762D01* +X50212Y-46811D01* +X50192Y-46865D01* +X50167Y-46918D01* +X50134Y-46975D01* +X50102Y-47028D01* +X50056Y-47086D01* +X50007Y-47139D01* +X49950Y-47192D01* +X49884Y-47242D01* +X49880Y-47246D01* +X49868Y-47254D01* +X49847Y-47266D01* +X49819Y-47279D01* +X49778Y-47299D01* +X49733Y-47320D01* +X49679Y-47344D01* +X49618Y-47365D01* +X49552Y-47389D01* +X49474Y-47414D01* +X49392Y-47434D01* +X49302Y-47451D01* +X49204Y-47467D01* +X49101Y-47480D01* +X48990Y-47488D01* +X48871Y-47492D01* +X48810D01* +X48781Y-47488D01* +X48703D01* +X48658Y-47484D01* +X48556Y-47475D01* +X48449Y-47463D01* +X48334Y-47447D01* +X48224Y-47426D01* +X48220D01* +X48211Y-47422D01* +X48195Y-47418D01* +X48175Y-47414D01* +X48154Y-47410D01* +X48125Y-47402D01* +X48060Y-47381D01* +X47986Y-47361D01* +X47908Y-47336D01* +X47834Y-47307D01* +X47765Y-47279D01* +Y-46578D01* +X47846D01* +X47855Y-46586D01* +X47867Y-46594D01* +X47883Y-46606D01* +X47929Y-46639D01* +X47986Y-46676D01* +X47990Y-46680D01* +X48002Y-46684D01* +X48023Y-46696D01* +X48047Y-46709D01* +X48084Y-46729D01* +X48125Y-46746D01* +X48175Y-46766D01* +X48228Y-46791D01* +X48232Y-46795D01* +X48252Y-46799D01* +X48277Y-46811D01* +X48314Y-46823D01* +X48359Y-46840D01* +X48408Y-46856D01* +X48466Y-46869D01* +X48527Y-46885D01* +X48535D01* +X48556Y-46889D01* +X48589Y-46897D01* +X48634Y-46901D01* +X48691Y-46910D01* +X48748Y-46918D01* +X48818Y-46922D01* +X48929D01* +X48974Y-46918D01* +X49031Y-46914D01* +X49089Y-46910D01* +X49154Y-46897D01* +X49212Y-46885D01* +X49261Y-46869D01* +X49265Y-46865D01* +X49281Y-46856D01* +X49302Y-46844D01* +X49323Y-46828D01* +X49347Y-46803D01* +X49363Y-46774D01* +X49380Y-46742D01* +X49384Y-46705D01* +Y-46701D01* +Y-46688D01* +X49380Y-46672D01* +X49376Y-46651D01* +X49368Y-46627D01* +X49351Y-46602D01* +X49335Y-46582D01* +X49310Y-46565D01* +X49306Y-46561D01* +X49298Y-46557D01* +X49277Y-46549D01* +X49249Y-46536D01* +X49212Y-46524D01* +X49167Y-46508D01* +X49109Y-46496D01* +X49040Y-46479D01* +X49036D01* +X49023Y-46475D01* +X49003Y-46471D01* +X48974Y-46467D01* +X48937Y-46459D01* +X48892Y-46450D01* +X48839Y-46442D01* +X48781Y-46434D01* +X48773D01* +X48753Y-46430D01* +X48724Y-46422D01* +X48687Y-46413D01* +X48642Y-46405D01* +X48593Y-46397D01* +X48490Y-46373D01* +X48486D01* +X48474Y-46368D01* +X48457Y-46364D01* +X48429Y-46356D01* +X48400Y-46344D01* +X48367Y-46332D01* +X48285Y-46299D01* +X48199Y-46258D01* +X48109Y-46209D01* +X48023Y-46147D01* +X47986Y-46114D01* +X47949Y-46077D01* +Y-46073D01* +X47941Y-46069D01* +X47933Y-46057D01* +X47920Y-46040D01* +X47908Y-46020D01* +X47896Y-45999D01* +X47863Y-45938D01* +X47830Y-45868D01* +X47806Y-45782D01* +X47785Y-45684D01* +X47777Y-45577D01* +Y-45573D01* +Y-45561D01* +X47781Y-45540D01* +Y-45511D01* +X47789Y-45479D01* +X47797Y-45442D01* +X47806Y-45401D01* +X47822Y-45352D01* +X47842Y-45302D01* +X47867Y-45253D01* +X47896Y-45200D01* +X47929Y-45142D01* +X47969Y-45089D01* +X48019Y-45036D01* +X48076Y-44987D01* +X48138Y-44938D01* +X48142Y-44933D01* +X48154Y-44925D01* +X48175Y-44913D01* +X48203Y-44897D01* +X48240Y-44876D01* +X48285Y-44855D01* +X48338Y-44831D01* +X48400Y-44806D01* +X48466Y-44786D01* +X48539Y-44761D01* +X48621Y-44741D01* +X48712Y-44720D01* +X48806Y-44704D01* +X48908Y-44692D01* +X49019Y-44683D01* +X49134Y-44679D01* +X49212D01* +X49245Y-44683D01* +D02* +G37* +G36* +X84414Y-44683D02* +X84484Y-44687D01* +X84562Y-44696D01* +X84644Y-44704D01* +X84734Y-44720D01* +X84820Y-44741D01* +X84824D01* +X84833Y-44745D01* +X84845D01* +X84861Y-44753D01* +X84902Y-44765D01* +X84960Y-44782D01* +X85025Y-44802D01* +X85099Y-44831D01* +X85173Y-44860D01* +X85251Y-44897D01* +Y-45622D01* +X85124D01* +X85120Y-45614D01* +X85095Y-45594D01* +X85058Y-45565D01* +X85009Y-45524D01* +X85005Y-45520D01* +X84997Y-45516D01* +X84980Y-45503D01* +X84960Y-45487D01* +X84935Y-45470D01* +X84906Y-45454D01* +X84837Y-45413D01* +X84833Y-45409D01* +X84820Y-45405D01* +X84800Y-45393D01* +X84775Y-45380D01* +X84742Y-45368D01* +X84706Y-45356D01* +X84623Y-45327D01* +X84619D01* +X84603Y-45323D01* +X84578Y-45315D01* +X84546Y-45307D01* +X84509Y-45302D01* +X84460Y-45294D01* +X84410Y-45290D01* +X84320D01* +X84295Y-45294D01* +X84267Y-45298D01* +X84234Y-45302D01* +X84160Y-45319D01* +X84074Y-45343D01* +X83988Y-45380D01* +X83947Y-45405D01* +X83902Y-45434D01* +X83865Y-45470D01* +X83828Y-45507D01* +Y-45511D01* +X83820Y-45516D01* +X83812Y-45528D01* +X83799Y-45548D01* +X83787Y-45569D01* +X83771Y-45598D01* +X83754Y-45626D01* +X83738Y-45663D01* +X83722Y-45704D01* +X83705Y-45745D01* +X83689Y-45794D01* +X83676Y-45848D01* +X83656Y-45967D01* +X83652Y-46028D01* +X83648Y-46098D01* +Y-46102D01* +Y-46114D01* +Y-46135D01* +X83652Y-46159D01* +Y-46192D01* +X83656Y-46229D01* +X83672Y-46315D01* +X83693Y-46409D01* +X83726Y-46504D01* +X83771Y-46598D01* +X83799Y-46639D01* +X83832Y-46680D01* +X83836Y-46684D01* +X83840Y-46688D01* +X83853Y-46696D01* +X83869Y-46709D01* +X83886Y-46725D01* +X83910Y-46742D01* +X83939Y-46758D01* +X83972Y-46778D01* +X84045Y-46815D01* +X84140Y-46844D01* +X84246Y-46869D01* +X84308Y-46873D01* +X84369Y-46877D01* +X84427D01* +X84464Y-46873D01* +X84509Y-46869D01* +X84558Y-46865D01* +X84656Y-46844D01* +X84660D01* +X84677Y-46836D01* +X84701Y-46828D01* +X84734Y-46819D01* +X84804Y-46791D01* +X84841Y-46774D01* +X84874Y-46758D01* +X84878Y-46754D01* +X84886Y-46750D01* +X84902Y-46742D01* +X84919Y-46725D01* +X84964Y-46696D01* +X85013Y-46659D01* +X85017Y-46655D01* +X85025Y-46651D01* +X85034Y-46639D01* +X85050Y-46627D01* +X85087Y-46594D01* +X85128Y-46553D01* +X85251D01* +Y-47283D01* +X85247D01* +X85243Y-47287D01* +X85230Y-47291D01* +X85214Y-47299D01* +X85173Y-47315D01* +X85120Y-47336D01* +X85058Y-47361D01* +X84984Y-47385D01* +X84906Y-47410D01* +X84824Y-47430D01* +X84820D01* +X84816Y-47434D01* +X84804D01* +X84787Y-47438D01* +X84767Y-47443D01* +X84742Y-47447D01* +X84681Y-47459D01* +X84611Y-47471D01* +X84529Y-47480D01* +X84439Y-47484D01* +X84341Y-47488D01* +X84283D01* +X84250Y-47484D01* +X84214D01* +X84177Y-47480D01* +X84131Y-47475D01* +X84033Y-47467D01* +X83926Y-47455D01* +X83816Y-47434D01* +X83705Y-47406D01* +X83701D01* +X83693Y-47402D01* +X83676Y-47398D01* +X83656Y-47389D01* +X83631Y-47381D01* +X83603Y-47369D01* +X83537Y-47344D01* +X83455Y-47307D01* +X83373Y-47262D01* +X83287Y-47213D01* +X83205Y-47151D01* +X83201Y-47147D01* +X83197Y-47143D01* +X83168Y-47119D01* +X83131Y-47082D01* +X83086Y-47033D01* +X83033Y-46971D01* +X82975Y-46897D01* +X82926Y-46811D01* +X82877Y-46717D01* +Y-46713D01* +X82873Y-46705D01* +X82865Y-46688D01* +X82860Y-46668D01* +X82852Y-46643D01* +X82840Y-46614D01* +X82832Y-46578D01* +X82819Y-46541D01* +X82807Y-46496D01* +X82799Y-46450D01* +X82779Y-46344D01* +X82766Y-46225D01* +X82762Y-46098D01* +Y-46094D01* +Y-46081D01* +Y-46061D01* +X82766Y-46036D01* +Y-46003D01* +X82770Y-45967D01* +X82774Y-45921D01* +X82779Y-45876D01* +X82791Y-45778D01* +X82815Y-45667D01* +X82844Y-45561D01* +X82885Y-45454D01* +Y-45450D01* +X82889Y-45442D01* +X82897Y-45430D01* +X82910Y-45409D01* +X82922Y-45384D01* +X82934Y-45360D01* +X82975Y-45298D01* +X83025Y-45224D01* +X83086Y-45151D01* +X83156Y-45077D01* +X83234Y-45007D01* +X83238D01* +X83242Y-44999D01* +X83254Y-44991D01* +X83271Y-44978D01* +X83291Y-44966D01* +X83316Y-44950D01* +X83377Y-44913D01* +X83447Y-44872D01* +X83533Y-44831D01* +X83627Y-44794D01* +X83730Y-44761D01* +X83734D01* +X83742Y-44757D01* +X83758Y-44753D01* +X83779Y-44749D01* +X83803Y-44741D01* +X83836Y-44737D01* +X83869Y-44728D01* +X83910Y-44720D01* +X83996Y-44704D01* +X84095Y-44692D01* +X84205Y-44683D01* +X84316Y-44679D01* +X84386D01* +X84414Y-44683D01* +D02* +G37* +G36* +X79802D02* +X79872Y-44687D01* +X79949Y-44696D01* +X80032Y-44704D01* +X80122Y-44720D01* +X80208Y-44741D01* +X80212D01* +X80220Y-44745D01* +X80232D01* +X80249Y-44753D01* +X80290Y-44765D01* +X80347Y-44782D01* +X80413Y-44802D01* +X80487Y-44831D01* +X80560Y-44860D01* +X80638Y-44897D01* +Y-45622D01* +X80511D01* +X80507Y-45614D01* +X80483Y-45594D01* +X80446Y-45565D01* +X80396Y-45524D01* +X80392Y-45520D01* +X80384Y-45516D01* +X80368Y-45503D01* +X80347Y-45487D01* +X80323Y-45470D01* +X80294Y-45454D01* +X80224Y-45413D01* +X80220Y-45409D01* +X80208Y-45405D01* +X80187Y-45393D01* +X80163Y-45380D01* +X80130Y-45368D01* +X80093Y-45356D01* +X80011Y-45327D01* +X80007D01* +X79991Y-45323D01* +X79966Y-45315D01* +X79933Y-45307D01* +X79896Y-45302D01* +X79847Y-45294D01* +X79798Y-45290D01* +X79708D01* +X79683Y-45294D01* +X79654Y-45298D01* +X79621Y-45302D01* +X79548Y-45319D01* +X79462Y-45343D01* +X79375Y-45380D01* +X79334Y-45405D01* +X79289Y-45434D01* +X79252Y-45470D01* +X79216Y-45507D01* +Y-45511D01* +X79207Y-45516D01* +X79199Y-45528D01* +X79187Y-45548D01* +X79175Y-45569D01* +X79158Y-45598D01* +X79142Y-45626D01* +X79125Y-45663D01* +X79109Y-45704D01* +X79093Y-45745D01* +X79076Y-45794D01* +X79064Y-45848D01* +X79043Y-45967D01* +X79039Y-46028D01* +X79035Y-46098D01* +Y-46102D01* +Y-46114D01* +Y-46135D01* +X79039Y-46159D01* +Y-46192D01* +X79043Y-46229D01* +X79060Y-46315D01* +X79080Y-46409D01* +X79113Y-46504D01* +X79158Y-46598D01* +X79187Y-46639D01* +X79220Y-46680D01* +X79224Y-46684D01* +X79228Y-46688D01* +X79240Y-46696D01* +X79257Y-46709D01* +X79273Y-46725D01* +X79298Y-46742D01* +X79326Y-46758D01* +X79359Y-46778D01* +X79433Y-46815D01* +X79527Y-46844D01* +X79634Y-46869D01* +X79695Y-46873D01* +X79757Y-46877D01* +X79814D01* +X79851Y-46873D01* +X79896Y-46869D01* +X79945Y-46865D01* +X80044Y-46844D01* +X80048D01* +X80064Y-46836D01* +X80089Y-46828D01* +X80122Y-46819D01* +X80191Y-46791D01* +X80228Y-46774D01* +X80261Y-46758D01* +X80265Y-46754D01* +X80273Y-46750D01* +X80290Y-46742D01* +X80306Y-46725D01* +X80351Y-46696D01* +X80401Y-46659D01* +X80405Y-46655D01* +X80413Y-46651D01* +X80421Y-46639D01* +X80437Y-46627D01* +X80474Y-46594D01* +X80515Y-46553D01* +X80638D01* +Y-47283D01* +X80634D01* +X80630Y-47287D01* +X80618Y-47291D01* +X80601Y-47299D01* +X80560Y-47315D01* +X80507Y-47336D01* +X80446Y-47361D01* +X80372Y-47385D01* +X80294Y-47410D01* +X80212Y-47430D01* +X80208D01* +X80204Y-47434D01* +X80191D01* +X80175Y-47438D01* +X80155Y-47443D01* +X80130Y-47447D01* +X80068Y-47459D01* +X79999Y-47471D01* +X79917Y-47480D01* +X79826Y-47484D01* +X79728Y-47488D01* +X79671D01* +X79638Y-47484D01* +X79601D01* +X79564Y-47480D01* +X79519Y-47475D01* +X79421Y-47467D01* +X79314Y-47455D01* +X79203Y-47434D01* +X79093Y-47406D01* +X79088D01* +X79080Y-47402D01* +X79064Y-47398D01* +X79043Y-47389D01* +X79019Y-47381D01* +X78990Y-47369D01* +X78925Y-47344D01* +X78843Y-47307D01* +X78760Y-47262D01* +X78674Y-47213D01* +X78592Y-47151D01* +X78588Y-47147D01* +X78584Y-47143D01* +X78556Y-47119D01* +X78519Y-47082D01* +X78474Y-47033D01* +X78420Y-46971D01* +X78363Y-46897D01* +X78314Y-46811D01* +X78264Y-46717D01* +Y-46713D01* +X78260Y-46705D01* +X78252Y-46688D01* +X78248Y-46668D01* +X78240Y-46643D01* +X78228Y-46614D01* +X78219Y-46578D01* +X78207Y-46541D01* +X78195Y-46496D01* +X78187Y-46450D01* +X78166Y-46344D01* +X78154Y-46225D01* +X78150Y-46098D01* +Y-46094D01* +Y-46081D01* +Y-46061D01* +X78154Y-46036D01* +Y-46003D01* +X78158Y-45967D01* +X78162Y-45921D01* +X78166Y-45876D01* +X78178Y-45778D01* +X78203Y-45667D01* +X78232Y-45561D01* +X78273Y-45454D01* +Y-45450D01* +X78277Y-45442D01* +X78285Y-45430D01* +X78297Y-45409D01* +X78310Y-45384D01* +X78322Y-45360D01* +X78363Y-45298D01* +X78412Y-45224D01* +X78474Y-45151D01* +X78543Y-45077D01* +X78621Y-45007D01* +X78625D01* +X78629Y-44999D01* +X78642Y-44991D01* +X78658Y-44978D01* +X78679Y-44966D01* +X78703Y-44950D01* +X78765Y-44913D01* +X78834Y-44872D01* +X78920Y-44831D01* +X79015Y-44794D01* +X79117Y-44761D01* +X79121D01* +X79129Y-44757D01* +X79146Y-44753D01* +X79166Y-44749D01* +X79191Y-44741D01* +X79224Y-44737D01* +X79257Y-44728D01* +X79298Y-44720D01* +X79384Y-44704D01* +X79482Y-44692D01* +X79593Y-44683D01* +X79703Y-44679D01* +X79773D01* +X79802Y-44683D01* +D02* +G37* +G36* +X75181Y-47418D02* +X74214D01* +X73193Y-44753D01* +X74091D01* +X74710Y-46594D01* +X75325Y-44753D01* +X76210D01* +X75181Y-47418D01* +D02* +G37* +G36* +X82118D02* +X81233D01* +Y-46487D01* +X82118D01* +Y-47418D01* +D02* +G37* +G36* +X77539D02* +X76682D01* +Y-44753D01* +X77539D01* +Y-47418D01* +D02* +G37* +G36* +X64685Y-44683D02* +X64747Y-44687D01* +X64816Y-44692D01* +X64890Y-44700D01* +X64972Y-44708D01* +X65144Y-44732D01* +X65321Y-44774D01* +X65403Y-44798D01* +X65481Y-44831D01* +X65554Y-44864D01* +X65620Y-44905D01* +X65624Y-44909D01* +X65632Y-44917D01* +X65649Y-44929D01* +X65669Y-44946D01* +X65694Y-44970D01* +X65723Y-45003D01* +X65751Y-45036D01* +X65784Y-45077D01* +X65813Y-45122D01* +X65841Y-45175D01* +X65870Y-45233D01* +X65895Y-45298D01* +X65915Y-45368D01* +X65932Y-45442D01* +X65940Y-45524D01* +X65944Y-45610D01* +Y-47418D01* +X65095D01* +Y-47139D01* +X65091Y-47143D01* +X65083Y-47147D01* +X65066Y-47160D01* +X65046Y-47172D01* +X65021Y-47192D01* +X64993Y-47213D01* +X64923Y-47262D01* +X64919Y-47266D01* +X64907Y-47275D01* +X64886Y-47287D01* +X64862Y-47303D01* +X64833Y-47324D01* +X64800Y-47344D01* +X64730Y-47381D01* +X64726D01* +X64710Y-47389D01* +X64685Y-47398D01* +X64652Y-47410D01* +X64611Y-47422D01* +X64570Y-47434D01* +X64472Y-47459D01* +X64468D01* +X64447Y-47463D01* +X64423Y-47467D01* +X64386Y-47471D01* +X64341Y-47480D01* +X64292Y-47484D01* +X64234Y-47488D01* +X64140D01* +X64115Y-47484D01* +X64082Y-47480D01* +X64042Y-47475D01* +X64000Y-47467D01* +X63955Y-47459D01* +X63853Y-47430D01* +X63800Y-47410D01* +X63746Y-47389D01* +X63693Y-47361D01* +X63640Y-47332D01* +X63591Y-47295D01* +X63541Y-47254D01* +X63537Y-47250D01* +X63529Y-47242D01* +X63517Y-47229D01* +X63500Y-47213D01* +X63484Y-47188D01* +X63459Y-47160D01* +X63439Y-47127D01* +X63414Y-47090D01* +X63390Y-47049D01* +X63369Y-47004D01* +X63328Y-46901D01* +X63312Y-46844D01* +X63299Y-46787D01* +X63291Y-46721D01* +X63287Y-46655D01* +Y-46651D01* +Y-46643D01* +Y-46627D01* +X63291Y-46606D01* +Y-46582D01* +X63295Y-46553D01* +X63304Y-46487D01* +X63320Y-46409D01* +X63340Y-46332D01* +X63373Y-46254D01* +X63414Y-46180D01* +Y-46176D01* +X63422Y-46172D01* +X63439Y-46151D01* +X63468Y-46114D01* +X63508Y-46073D01* +X63562Y-46028D01* +X63627Y-45979D01* +X63701Y-45930D01* +X63783Y-45889D01* +X63787D01* +X63796Y-45885D01* +X63808Y-45876D01* +X63824Y-45872D01* +X63849Y-45864D01* +X63877Y-45852D01* +X63910Y-45840D01* +X63947Y-45831D01* +X64029Y-45807D01* +X64132Y-45778D01* +X64242Y-45757D01* +X64369Y-45737D01* +X64374D01* +X64386Y-45733D01* +X64406D01* +X64431Y-45729D01* +X64464Y-45725D01* +X64501Y-45721D01* +X64546Y-45717D01* +X64595Y-45712D01* +X64644Y-45704D01* +X64702Y-45700D01* +X64825Y-45688D01* +X64960Y-45676D01* +X65099Y-45667D01* +Y-45655D01* +Y-45651D01* +Y-45647D01* +Y-45634D01* +X65095Y-45618D01* +X65091Y-45581D01* +X65079Y-45532D01* +X65054Y-45483D01* +X65021Y-45434D01* +X64980Y-45388D01* +X64952Y-45368D01* +X64919Y-45352D01* +X64911Y-45347D01* +X64898Y-45343D01* +X64886Y-45339D01* +X64866Y-45331D01* +X64845Y-45323D01* +X64816Y-45315D01* +X64784Y-45307D01* +X64710Y-45294D01* +X64620Y-45278D01* +X64513Y-45270D01* +X64390Y-45265D01* +X64353D01* +X64312Y-45270D01* +X64255Y-45274D01* +X64185Y-45286D01* +X64111Y-45298D01* +X64025Y-45319D01* +X63939Y-45343D01* +X63935D01* +X63927Y-45347D01* +X63919Y-45352D01* +X63902Y-45356D01* +X63857Y-45368D01* +X63808Y-45384D01* +X63750Y-45401D01* +X63697Y-45421D01* +X63644Y-45438D01* +X63599Y-45454D01* +X63521D01* +Y-44815D01* +X63529D01* +X63545Y-44806D01* +X63578Y-44798D01* +X63623Y-44790D01* +X63685Y-44778D01* +X63759Y-44761D01* +X63849Y-44745D01* +X63955Y-44728D01* +X63959D01* +X63968Y-44724D01* +X63984D01* +X64009Y-44720D01* +X64037Y-44716D01* +X64070Y-44712D01* +X64107Y-44708D01* +X64148Y-44704D01* +X64238Y-44696D01* +X64345Y-44687D01* +X64451Y-44679D01* +X64636D01* +X64685Y-44683D01* +D02* +G37* +G36* +X59023D02* +X59085Y-44687D01* +X59154Y-44692D01* +X59228Y-44700D01* +X59310Y-44708D01* +X59482Y-44732D01* +X59659Y-44774D01* +X59741Y-44798D01* +X59819Y-44831D01* +X59892Y-44864D01* +X59958Y-44905D01* +X59962Y-44909D01* +X59970Y-44917D01* +X59987Y-44929D01* +X60007Y-44946D01* +X60032Y-44970D01* +X60060Y-45003D01* +X60089Y-45036D01* +X60122Y-45077D01* +X60151Y-45122D01* +X60179Y-45175D01* +X60208Y-45233D01* +X60233Y-45298D01* +X60253Y-45368D01* +X60269Y-45442D01* +X60278Y-45524D01* +X60282Y-45610D01* +Y-47418D01* +X59433D01* +Y-47139D01* +X59429Y-47143D01* +X59421Y-47147D01* +X59404Y-47160D01* +X59384Y-47172D01* +X59359Y-47192D01* +X59331Y-47213D01* +X59261Y-47262D01* +X59257Y-47266D01* +X59245Y-47275D01* +X59224Y-47287D01* +X59199Y-47303D01* +X59171Y-47324D01* +X59138Y-47344D01* +X59068Y-47381D01* +X59064D01* +X59048Y-47389D01* +X59023Y-47398D01* +X58990Y-47410D01* +X58949Y-47422D01* +X58908Y-47434D01* +X58810Y-47459D01* +X58806D01* +X58785Y-47463D01* +X58761Y-47467D01* +X58724Y-47471D01* +X58679Y-47480D01* +X58630Y-47484D01* +X58572Y-47488D01* +X58478D01* +X58453Y-47484D01* +X58420Y-47480D01* +X58379Y-47475D01* +X58338Y-47467D01* +X58293Y-47459D01* +X58191Y-47430D01* +X58138Y-47410D01* +X58084Y-47389D01* +X58031Y-47361D01* +X57978Y-47332D01* +X57928Y-47295D01* +X57879Y-47254D01* +X57875Y-47250D01* +X57867Y-47242D01* +X57855Y-47229D01* +X57838Y-47213D01* +X57822Y-47188D01* +X57797Y-47160D01* +X57777Y-47127D01* +X57752Y-47090D01* +X57727Y-47049D01* +X57707Y-47004D01* +X57666Y-46901D01* +X57650Y-46844D01* +X57637Y-46787D01* +X57629Y-46721D01* +X57625Y-46655D01* +Y-46651D01* +Y-46643D01* +Y-46627D01* +X57629Y-46606D01* +Y-46582D01* +X57633Y-46553D01* +X57641Y-46487D01* +X57658Y-46409D01* +X57678Y-46332D01* +X57711Y-46254D01* +X57752Y-46180D01* +Y-46176D01* +X57760Y-46172D01* +X57777Y-46151D01* +X57805Y-46114D01* +X57846Y-46073D01* +X57900Y-46028D01* +X57965Y-45979D01* +X58039Y-45930D01* +X58121Y-45889D01* +X58125D01* +X58133Y-45885D01* +X58146Y-45876D01* +X58162Y-45872D01* +X58187Y-45864D01* +X58215Y-45852D01* +X58248Y-45840D01* +X58285Y-45831D01* +X58367Y-45807D01* +X58470Y-45778D01* +X58580Y-45757D01* +X58707Y-45737D01* +X58711D01* +X58724Y-45733D01* +X58744D01* +X58769Y-45729D01* +X58802Y-45725D01* +X58839Y-45721D01* +X58884Y-45717D01* +X58933Y-45712D01* +X58982Y-45704D01* +X59039Y-45700D01* +X59162Y-45688D01* +X59298Y-45676D01* +X59437Y-45667D01* +Y-45655D01* +Y-45651D01* +Y-45647D01* +Y-45634D01* +X59433Y-45618D01* +X59429Y-45581D01* +X59417Y-45532D01* +X59392Y-45483D01* +X59359Y-45434D01* +X59318Y-45388D01* +X59290Y-45368D01* +X59257Y-45352D01* +X59249Y-45347D01* +X59236Y-45343D01* +X59224Y-45339D01* +X59203Y-45331D01* +X59183Y-45323D01* +X59154Y-45315D01* +X59122Y-45307D01* +X59048Y-45294D01* +X58957Y-45278D01* +X58851Y-45270D01* +X58728Y-45265D01* +X58691D01* +X58650Y-45270D01* +X58593Y-45274D01* +X58523Y-45286D01* +X58449Y-45298D01* +X58363Y-45319D01* +X58277Y-45343D01* +X58273D01* +X58265Y-45347D01* +X58256Y-45352D01* +X58240Y-45356D01* +X58195Y-45368D01* +X58146Y-45384D01* +X58088Y-45401D01* +X58035Y-45421D01* +X57982Y-45438D01* +X57937Y-45454D01* +X57859D01* +Y-44815D01* +X57867D01* +X57883Y-44806D01* +X57916Y-44798D01* +X57961Y-44790D01* +X58023Y-44778D01* +X58096Y-44761D01* +X58187Y-44745D01* +X58293Y-44728D01* +X58297D01* +X58306Y-44724D01* +X58322D01* +X58347Y-44720D01* +X58375Y-44716D01* +X58408Y-44712D01* +X58445Y-44708D01* +X58486Y-44704D01* +X58576Y-44696D01* +X58683Y-44687D01* +X58789Y-44679D01* +X58974D01* +X59023Y-44683D01* +D02* +G37* +G36* +X52029D02* +X52090Y-44687D01* +X52160Y-44692D01* +X52233Y-44700D01* +X52315Y-44708D01* +X52488Y-44732D01* +X52664Y-44774D01* +X52746Y-44798D01* +X52824Y-44831D01* +X52898Y-44864D01* +X52963Y-44905D01* +X52967Y-44909D01* +X52976Y-44917D01* +X52992Y-44929D01* +X53013Y-44946D01* +X53037Y-44970D01* +X53066Y-45003D01* +X53095Y-45036D01* +X53127Y-45077D01* +X53156Y-45122D01* +X53185Y-45175D01* +X53213Y-45233D01* +X53238Y-45298D01* +X53259Y-45368D01* +X53275Y-45442D01* +X53283Y-45524D01* +X53287Y-45610D01* +Y-47418D01* +X52438D01* +Y-47139D01* +X52434Y-47143D01* +X52426Y-47147D01* +X52410Y-47160D01* +X52389Y-47172D01* +X52365Y-47192D01* +X52336Y-47213D01* +X52266Y-47262D01* +X52262Y-47266D01* +X52250Y-47275D01* +X52229Y-47287D01* +X52205Y-47303D01* +X52176Y-47324D01* +X52143Y-47344D01* +X52074Y-47381D01* +X52069D01* +X52053Y-47389D01* +X52029Y-47398D01* +X51996Y-47410D01* +X51955Y-47422D01* +X51914Y-47434D01* +X51815Y-47459D01* +X51811D01* +X51791Y-47463D01* +X51766Y-47467D01* +X51729Y-47471D01* +X51684Y-47480D01* +X51635Y-47484D01* +X51578Y-47488D01* +X51483D01* +X51459Y-47484D01* +X51426Y-47480D01* +X51385Y-47475D01* +X51344Y-47467D01* +X51299Y-47459D01* +X51196Y-47430D01* +X51143Y-47410D01* +X51090Y-47389D01* +X51036Y-47361D01* +X50983Y-47332D01* +X50934Y-47295D01* +X50885Y-47254D01* +X50880Y-47250D01* +X50872Y-47242D01* +X50860Y-47229D01* +X50844Y-47213D01* +X50827Y-47188D01* +X50803Y-47160D01* +X50782Y-47127D01* +X50757Y-47090D01* +X50733Y-47049D01* +X50712Y-47004D01* +X50671Y-46901D01* +X50655Y-46844D01* +X50643Y-46787D01* +X50634Y-46721D01* +X50630Y-46655D01* +Y-46651D01* +Y-46643D01* +Y-46627D01* +X50634Y-46606D01* +Y-46582D01* +X50639Y-46553D01* +X50647Y-46487D01* +X50663Y-46409D01* +X50684Y-46332D01* +X50717Y-46254D01* +X50757Y-46180D01* +Y-46176D01* +X50766Y-46172D01* +X50782Y-46151D01* +X50811Y-46114D01* +X50852Y-46073D01* +X50905Y-46028D01* +X50971Y-45979D01* +X51044Y-45930D01* +X51126Y-45889D01* +X51131D01* +X51139Y-45885D01* +X51151Y-45876D01* +X51168Y-45872D01* +X51192Y-45864D01* +X51221Y-45852D01* +X51254Y-45840D01* +X51291Y-45831D01* +X51372Y-45807D01* +X51475Y-45778D01* +X51586Y-45757D01* +X51713Y-45737D01* +X51717D01* +X51729Y-45733D01* +X51750D01* +X51774Y-45729D01* +X51807Y-45725D01* +X51844Y-45721D01* +X51889Y-45717D01* +X51938Y-45712D01* +X51987Y-45704D01* +X52045Y-45700D01* +X52168Y-45688D01* +X52303Y-45676D01* +X52443Y-45667D01* +Y-45655D01* +Y-45651D01* +Y-45647D01* +Y-45634D01* +X52438Y-45618D01* +X52434Y-45581D01* +X52422Y-45532D01* +X52398Y-45483D01* +X52365Y-45434D01* +X52324Y-45388D01* +X52295Y-45368D01* +X52262Y-45352D01* +X52254Y-45347D01* +X52242Y-45343D01* +X52229Y-45339D01* +X52209Y-45331D01* +X52188Y-45323D01* +X52160Y-45315D01* +X52127Y-45307D01* +X52053Y-45294D01* +X51963Y-45278D01* +X51856Y-45270D01* +X51733Y-45265D01* +X51696D01* +X51655Y-45270D01* +X51598Y-45274D01* +X51528Y-45286D01* +X51455Y-45298D01* +X51368Y-45319D01* +X51282Y-45343D01* +X51278D01* +X51270Y-45347D01* +X51262Y-45352D01* +X51245Y-45356D01* +X51200Y-45368D01* +X51151Y-45384D01* +X51094Y-45401D01* +X51040Y-45421D01* +X50987Y-45438D01* +X50942Y-45454D01* +X50864D01* +Y-44815D01* +X50872D01* +X50889Y-44806D01* +X50921Y-44798D01* +X50967Y-44790D01* +X51028Y-44778D01* +X51102Y-44761D01* +X51192Y-44745D01* +X51299Y-44728D01* +X51303D01* +X51311Y-44724D01* +X51327D01* +X51352Y-44720D01* +X51381Y-44716D01* +X51414Y-44712D01* +X51450Y-44708D01* +X51491Y-44704D01* +X51582Y-44696D01* +X51688Y-44687D01* +X51795Y-44679D01* +X51979D01* +X52029Y-44683D01* +D02* +G37* +G36* +X45899D02* +X45961Y-44687D01* +X46030Y-44692D01* +X46104Y-44700D01* +X46186Y-44708D01* +X46358Y-44732D01* +X46534Y-44774D01* +X46617Y-44798D01* +X46694Y-44831D01* +X46768Y-44864D01* +X46834Y-44905D01* +X46838Y-44909D01* +X46846Y-44917D01* +X46863Y-44929D01* +X46883Y-44946D01* +X46908Y-44970D01* +X46936Y-45003D01* +X46965Y-45036D01* +X46998Y-45077D01* +X47027Y-45122D01* +X47055Y-45175D01* +X47084Y-45233D01* +X47109Y-45298D01* +X47129Y-45368D01* +X47145Y-45442D01* +X47154Y-45524D01* +X47158Y-45610D01* +Y-47418D01* +X46309D01* +Y-47139D01* +X46305Y-47143D01* +X46297Y-47147D01* +X46280Y-47160D01* +X46260Y-47172D01* +X46235Y-47192D01* +X46207Y-47213D01* +X46137Y-47262D01* +X46133Y-47266D01* +X46120Y-47275D01* +X46100Y-47287D01* +X46075Y-47303D01* +X46047Y-47324D01* +X46014Y-47344D01* +X45944Y-47381D01* +X45940D01* +X45924Y-47389D01* +X45899Y-47398D01* +X45866Y-47410D01* +X45825Y-47422D01* +X45784Y-47434D01* +X45686Y-47459D01* +X45682D01* +X45661Y-47463D01* +X45637Y-47467D01* +X45600Y-47471D01* +X45555Y-47480D01* +X45505Y-47484D01* +X45448Y-47488D01* +X45354D01* +X45329Y-47484D01* +X45296Y-47480D01* +X45255Y-47475D01* +X45214Y-47467D01* +X45169Y-47459D01* +X45067Y-47430D01* +X45013Y-47410D01* +X44960Y-47389D01* +X44907Y-47361D01* +X44853Y-47332D01* +X44804Y-47295D01* +X44755Y-47254D01* +X44751Y-47250D01* +X44743Y-47242D01* +X44730Y-47229D01* +X44714Y-47213D01* +X44698Y-47188D01* +X44673Y-47160D01* +X44653Y-47127D01* +X44628Y-47090D01* +X44603Y-47049D01* +X44583Y-47004D01* +X44542Y-46901D01* +X44526Y-46844D01* +X44513Y-46787D01* +X44505Y-46721D01* +X44501Y-46655D01* +Y-46651D01* +Y-46643D01* +Y-46627D01* +X44505Y-46606D01* +Y-46582D01* +X44509Y-46553D01* +X44517Y-46487D01* +X44534Y-46409D01* +X44554Y-46332D01* +X44587Y-46254D01* +X44628Y-46180D01* +Y-46176D01* +X44636Y-46172D01* +X44653Y-46151D01* +X44681Y-46114D01* +X44722Y-46073D01* +X44776Y-46028D01* +X44841Y-45979D01* +X44915Y-45930D01* +X44997Y-45889D01* +X45001D01* +X45009Y-45885D01* +X45022Y-45876D01* +X45038Y-45872D01* +X45063Y-45864D01* +X45091Y-45852D01* +X45124Y-45840D01* +X45161Y-45831D01* +X45243Y-45807D01* +X45346Y-45778D01* +X45456Y-45757D01* +X45583Y-45737D01* +X45587D01* +X45600Y-45733D01* +X45620D01* +X45645Y-45729D01* +X45678Y-45725D01* +X45715Y-45721D01* +X45760Y-45717D01* +X45809Y-45712D01* +X45858Y-45704D01* +X45915Y-45700D01* +X46038Y-45688D01* +X46174Y-45676D01* +X46313Y-45667D01* +Y-45655D01* +Y-45651D01* +Y-45647D01* +Y-45634D01* +X46309Y-45618D01* +X46305Y-45581D01* +X46293Y-45532D01* +X46268Y-45483D01* +X46235Y-45434D01* +X46194Y-45388D01* +X46165Y-45368D01* +X46133Y-45352D01* +X46125Y-45347D01* +X46112Y-45343D01* +X46100Y-45339D01* +X46079Y-45331D01* +X46059Y-45323D01* +X46030Y-45315D01* +X45997Y-45307D01* +X45924Y-45294D01* +X45833Y-45278D01* +X45727Y-45270D01* +X45604Y-45265D01* +X45567D01* +X45526Y-45270D01* +X45469Y-45274D01* +X45399Y-45286D01* +X45325Y-45298D01* +X45239Y-45319D01* +X45153Y-45343D01* +X45149D01* +X45140Y-45347D01* +X45132Y-45352D01* +X45116Y-45356D01* +X45071Y-45368D01* +X45022Y-45384D01* +X44964Y-45401D01* +X44911Y-45421D01* +X44858Y-45438D01* +X44813Y-45454D01* +X44735D01* +Y-44815D01* +X44743D01* +X44759Y-44806D01* +X44792Y-44798D01* +X44837Y-44790D01* +X44899Y-44778D01* +X44972Y-44761D01* +X45063Y-44745D01* +X45169Y-44728D01* +X45173D01* +X45182Y-44724D01* +X45198D01* +X45222Y-44720D01* +X45251Y-44716D01* +X45284Y-44712D01* +X45321Y-44708D01* +X45362Y-44704D01* +X45452Y-44696D01* +X45559Y-44687D01* +X45665Y-44679D01* +X45850D01* +X45899Y-44683D01* +D02* +G37* +G36* +X87145Y-44675D02* +X87194D01* +X87252Y-44683D01* +X87321Y-44692D01* +X87395Y-44704D01* +X87477Y-44720D01* +X87559Y-44741D01* +X87649Y-44765D01* +X87739Y-44794D01* +X87830Y-44831D01* +X87916Y-44876D01* +X88002Y-44925D01* +X88084Y-44987D01* +X88158Y-45052D01* +X88162Y-45056D01* +X88174Y-45069D01* +X88195Y-45093D01* +X88219Y-45122D01* +X88248Y-45159D01* +X88277Y-45208D01* +X88314Y-45261D01* +X88350Y-45323D01* +X88383Y-45397D01* +X88420Y-45475D01* +X88449Y-45557D01* +X88482Y-45651D01* +X88502Y-45749D01* +X88523Y-45856D01* +X88535Y-45971D01* +X88539Y-46090D01* +Y-46098D01* +Y-46118D01* +X88535Y-46151D01* +Y-46196D01* +X88527Y-46254D01* +X88519Y-46315D01* +X88506Y-46389D01* +X88490Y-46463D01* +X88469Y-46545D01* +X88445Y-46631D01* +X88412Y-46717D01* +X88375Y-46803D01* +X88334Y-46889D01* +X88281Y-46971D01* +X88223Y-47049D01* +X88154Y-47123D01* +X88149Y-47127D01* +X88137Y-47139D01* +X88113Y-47156D01* +X88084Y-47180D01* +X88043Y-47209D01* +X87998Y-47242D01* +X87940Y-47275D01* +X87875Y-47311D01* +X87805Y-47348D01* +X87723Y-47381D01* +X87637Y-47414D01* +X87539Y-47443D01* +X87436Y-47463D01* +X87325Y-47484D01* +X87207Y-47496D01* +X87079Y-47500D01* +X87051D01* +X87014Y-47496D01* +X86965D01* +X86907Y-47488D01* +X86838Y-47480D01* +X86764Y-47467D01* +X86682Y-47451D01* +X86600Y-47434D01* +X86510Y-47410D01* +X86419Y-47377D01* +X86329Y-47340D01* +X86243Y-47299D01* +X86157Y-47246D01* +X86075Y-47188D01* +X86001Y-47123D01* +X85997Y-47119D01* +X85985Y-47106D01* +X85964Y-47082D01* +X85944Y-47053D01* +X85911Y-47016D01* +X85882Y-46967D01* +X85845Y-46914D01* +X85812Y-46852D01* +X85776Y-46782D01* +X85739Y-46705D01* +X85710Y-46619D01* +X85681Y-46528D01* +X85657Y-46430D01* +X85636Y-46323D01* +X85624Y-46209D01* +X85620Y-46090D01* +Y-46081D01* +Y-46061D01* +X85624Y-46024D01* +X85628Y-45979D01* +X85632Y-45926D01* +X85640Y-45860D01* +X85653Y-45786D01* +X85669Y-45708D01* +X85690Y-45626D01* +X85714Y-45544D01* +X85747Y-45458D01* +X85784Y-45368D01* +X85825Y-45286D01* +X85878Y-45200D01* +X85935Y-45122D01* +X86005Y-45048D01* +X86009Y-45044D01* +X86022Y-45032D01* +X86046Y-45011D01* +X86075Y-44991D01* +X86116Y-44962D01* +X86165Y-44929D01* +X86218Y-44897D01* +X86284Y-44860D01* +X86358Y-44823D01* +X86436Y-44790D01* +X86526Y-44757D01* +X86620Y-44728D01* +X86723Y-44704D01* +X86838Y-44687D01* +X86952Y-44675D01* +X87079Y-44671D01* +X87112D01* +X87145Y-44675D01* +D02* +G37* +G36* +X71520D02* +X71569D01* +X71627Y-44683D01* +X71696Y-44692D01* +X71770Y-44704D01* +X71852Y-44720D01* +X71934Y-44741D01* +X72024Y-44765D01* +X72114Y-44794D01* +X72205Y-44831D01* +X72291Y-44876D01* +X72377Y-44925D01* +X72459Y-44987D01* +X72533Y-45052D01* +X72537Y-45056D01* +X72549Y-45069D01* +X72570Y-45093D01* +X72594Y-45122D01* +X72623Y-45159D01* +X72651Y-45208D01* +X72688Y-45261D01* +X72725Y-45323D01* +X72758Y-45397D01* +X72795Y-45475D01* +X72824Y-45557D01* +X72856Y-45651D01* +X72877Y-45749D01* +X72897Y-45856D01* +X72910Y-45971D01* +X72914Y-46090D01* +Y-46098D01* +Y-46118D01* +X72910Y-46151D01* +Y-46196D01* +X72902Y-46254D01* +X72893Y-46315D01* +X72881Y-46389D01* +X72865Y-46463D01* +X72844Y-46545D01* +X72820Y-46631D01* +X72787Y-46717D01* +X72750Y-46803D01* +X72709Y-46889D01* +X72656Y-46971D01* +X72598Y-47049D01* +X72528Y-47123D01* +X72524Y-47127D01* +X72512Y-47139D01* +X72487Y-47156D01* +X72459Y-47180D01* +X72418Y-47209D01* +X72373Y-47242D01* +X72315Y-47275D01* +X72250Y-47311D01* +X72180Y-47348D01* +X72098Y-47381D01* +X72012Y-47414D01* +X71913Y-47443D01* +X71811Y-47463D01* +X71700Y-47484D01* +X71581Y-47496D01* +X71454Y-47500D01* +X71426D01* +X71389Y-47496D01* +X71339D01* +X71282Y-47488D01* +X71212Y-47480D01* +X71139Y-47467D01* +X71057Y-47451D01* +X70975Y-47434D01* +X70884Y-47410D01* +X70794Y-47377D01* +X70704Y-47340D01* +X70618Y-47299D01* +X70532Y-47246D01* +X70450Y-47188D01* +X70376Y-47123D01* +X70372Y-47119D01* +X70360Y-47106D01* +X70339Y-47082D01* +X70319Y-47053D01* +X70286Y-47016D01* +X70257Y-46967D01* +X70220Y-46914D01* +X70187Y-46852D01* +X70151Y-46782D01* +X70114Y-46705D01* +X70085Y-46619D01* +X70056Y-46528D01* +X70032Y-46430D01* +X70011Y-46323D01* +X69999Y-46209D01* +X69995Y-46090D01* +Y-46081D01* +Y-46061D01* +X69999Y-46024D01* +X70003Y-45979D01* +X70007Y-45926D01* +X70015Y-45860D01* +X70028Y-45786D01* +X70044Y-45708D01* +X70064Y-45626D01* +X70089Y-45544D01* +X70122Y-45458D01* +X70159Y-45368D01* +X70200Y-45286D01* +X70253Y-45200D01* +X70310Y-45122D01* +X70380Y-45048D01* +X70384Y-45044D01* +X70397Y-45032D01* +X70421Y-45011D01* +X70450Y-44991D01* +X70491Y-44962D01* +X70540Y-44929D01* +X70593Y-44897D01* +X70659Y-44860D01* +X70733Y-44823D01* +X70811Y-44790D01* +X70901Y-44757D01* +X70995Y-44728D01* +X71098Y-44704D01* +X71212Y-44687D01* +X71327Y-44675D01* +X71454Y-44671D01* +X71487D01* +X71520Y-44675D01* +D02* +G37* +G36* +X48672Y-50482D02* +X47766D01* +Y-49834D01* +X48672D01* +Y-50482D01* +D02* +G37* +G36* +X64556Y-50789D02* +X64592Y-50794D01* +X64634Y-50798D01* +X64683Y-50806D01* +X64732Y-50818D01* +X64838Y-50847D01* +X64896Y-50867D01* +X64953Y-50892D01* +X65007Y-50921D01* +X65060Y-50958D01* +X65109Y-50994D01* +X65158Y-51040D01* +X65162Y-51044D01* +X65171Y-51052D01* +X65183Y-51064D01* +X65195Y-51085D01* +X65216Y-51113D01* +X65236Y-51146D01* +X65257Y-51183D01* +X65281Y-51228D01* +X65306Y-51277D01* +X65326Y-51331D01* +X65347Y-51392D01* +X65367Y-51462D01* +X65380Y-51536D01* +X65392Y-51614D01* +X65400Y-51700D01* +X65404Y-51790D01* +Y-53524D01* +X64547D01* +Y-52204D01* +Y-52196D01* +Y-52175D01* +Y-52143D01* +X64543Y-52101D01* +Y-52052D01* +X64539Y-51999D01* +X64527Y-51880D01* +Y-51872D01* +X64523Y-51855D01* +X64519Y-51827D01* +X64515Y-51790D01* +X64498Y-51712D01* +X64486Y-51679D01* +X64474Y-51646D01* +X64469Y-51642D01* +X64465Y-51630D01* +X64453Y-51614D01* +X64437Y-51597D01* +X64416Y-51573D01* +X64392Y-51552D01* +X64363Y-51532D01* +X64330Y-51515D01* +X64326D01* +X64314Y-51507D01* +X64293Y-51503D01* +X64265Y-51495D01* +X64228Y-51486D01* +X64187Y-51482D01* +X64133Y-51474D01* +X64035D01* +X64002Y-51478D01* +X63969Y-51482D01* +X63928Y-51491D01* +X63842Y-51515D01* +X63838D01* +X63822Y-51523D01* +X63797Y-51532D01* +X63764Y-51544D01* +X63727Y-51560D01* +X63682Y-51581D01* +X63637Y-51605D01* +X63584Y-51634D01* +Y-53524D01* +X62727D01* +Y-50859D01* +X63584D01* +Y-51154D01* +X63588Y-51150D01* +X63592Y-51146D01* +X63604Y-51138D01* +X63621Y-51126D01* +X63666Y-51093D01* +X63723Y-51056D01* +X63789Y-51011D01* +X63863Y-50966D01* +X63941Y-50921D01* +X64018Y-50884D01* +X64023D01* +X64027Y-50880D01* +X64039Y-50876D01* +X64055Y-50867D01* +X64096Y-50851D01* +X64154Y-50835D01* +X64223Y-50818D01* +X64306Y-50802D01* +X64392Y-50789D01* +X64486Y-50785D01* +X64527D01* +X64556Y-50789D01* +D02* +G37* +G36* +X57897D02* +X57934Y-50794D01* +X57975Y-50798D01* +X58020Y-50806D01* +X58069Y-50818D01* +X58176Y-50851D01* +X58233Y-50871D01* +X58287Y-50896D01* +X58340Y-50925D01* +X58389Y-50962D01* +X58438Y-51003D01* +X58483Y-51048D01* +X58488Y-51052D01* +X58492Y-51060D01* +X58504Y-51077D01* +X58520Y-51097D01* +X58537Y-51122D01* +X58553Y-51154D01* +X58574Y-51191D01* +X58598Y-51236D01* +X58619Y-51286D01* +X58639Y-51343D01* +X58656Y-51405D01* +X58672Y-51470D01* +X58688Y-51540D01* +X58701Y-51618D01* +X58705Y-51700D01* +X58709Y-51790D01* +Y-53524D01* +X57852D01* +Y-52192D01* +Y-52188D01* +Y-52184D01* +Y-52159D01* +Y-52122D01* +Y-52077D01* +X57848Y-52024D01* +Y-51970D01* +X57844Y-51913D01* +X57840Y-51860D01* +Y-51855D01* +Y-51835D01* +X57836Y-51810D01* +X57832Y-51782D01* +X57815Y-51708D01* +X57803Y-51671D01* +X57791Y-51638D01* +Y-51634D01* +X57782Y-51626D01* +X57774Y-51609D01* +X57758Y-51593D01* +X57741Y-51573D01* +X57721Y-51552D01* +X57692Y-51532D01* +X57664Y-51515D01* +X57659D01* +X57647Y-51507D01* +X57627Y-51503D01* +X57602Y-51495D01* +X57565Y-51486D01* +X57524Y-51482D01* +X57475Y-51474D01* +X57376D01* +X57352Y-51478D01* +X57319Y-51482D01* +X57286Y-51491D01* +X57208Y-51511D01* +X57204D01* +X57192Y-51519D01* +X57167Y-51528D01* +X57139Y-51540D01* +X57102Y-51556D01* +X57061Y-51577D01* +X57016Y-51605D01* +X56962Y-51634D01* +Y-53524D01* +X56106D01* +Y-52192D01* +Y-52188D01* +Y-52184D01* +Y-52159D01* +Y-52122D01* +Y-52077D01* +X56101Y-52028D01* +Y-51970D01* +X56097Y-51917D01* +X56093Y-51864D01* +Y-51855D01* +Y-51839D01* +X56089Y-51815D01* +X56085Y-51782D01* +X56069Y-51708D01* +X56056Y-51671D01* +X56044Y-51638D01* +Y-51634D01* +X56036Y-51626D01* +X56024Y-51609D01* +X56011Y-51593D01* +X55970Y-51552D01* +X55913Y-51515D01* +X55909D01* +X55896Y-51507D01* +X55876Y-51503D01* +X55851Y-51495D01* +X55814Y-51486D01* +X55773Y-51482D01* +X55724Y-51474D01* +X55650D01* +X55626Y-51478D01* +X55593Y-51482D01* +X55556Y-51486D01* +X55515Y-51495D01* +X55470Y-51511D01* +X55425Y-51528D01* +X55421Y-51532D01* +X55404Y-51536D01* +X55384Y-51548D01* +X55355Y-51560D01* +X55322Y-51577D01* +X55290Y-51593D01* +X55216Y-51634D01* +Y-53524D01* +X54359D01* +Y-50859D01* +X55216D01* +Y-51154D01* +X55220Y-51150D01* +X55224Y-51146D01* +X55236Y-51138D01* +X55253Y-51126D01* +X55294Y-51093D01* +X55351Y-51056D01* +X55413Y-51011D01* +X55482Y-50966D01* +X55560Y-50925D01* +X55634Y-50884D01* +X55638D01* +X55642Y-50880D01* +X55655Y-50876D01* +X55671Y-50867D01* +X55712Y-50851D01* +X55765Y-50835D01* +X55831Y-50818D01* +X55909Y-50802D01* +X55991Y-50789D01* +X56081Y-50785D01* +X56126D01* +X56147Y-50789D01* +X56175D01* +X56237Y-50802D01* +X56310Y-50814D01* +X56388Y-50835D01* +X56466Y-50863D01* +X56544Y-50904D01* +X56548D01* +X56552Y-50908D01* +X56577Y-50925D01* +X56614Y-50954D01* +X56659Y-50990D01* +X56708Y-51040D01* +X56761Y-51101D01* +X56815Y-51171D01* +X56860Y-51249D01* +X56864Y-51245D01* +X56872Y-51240D01* +X56884Y-51228D01* +X56905Y-51212D01* +X56925Y-51195D01* +X56954Y-51175D01* +X57016Y-51126D01* +X57094Y-51072D01* +X57176Y-51015D01* +X57266Y-50962D01* +X57356Y-50912D01* +X57360D01* +X57368Y-50908D01* +X57381Y-50900D01* +X57397Y-50892D01* +X57418Y-50884D01* +X57446Y-50871D01* +X57508Y-50847D01* +X57577Y-50826D01* +X57655Y-50806D01* +X57741Y-50789D01* +X57828Y-50785D01* +X57868D01* +X57897Y-50789D01* +D02* +G37* +G36* +X75925Y-50855D02* +X75933D01* +X75958Y-50859D01* +X75990D01* +X76027Y-50863D01* +Y-51675D01* +X75945D01* +X75941Y-51671D01* +X75925D01* +X75908Y-51667D01* +X75884Y-51663D01* +X75851Y-51659D01* +X75814Y-51655D01* +X75773Y-51651D01* +X75769D01* +X75753Y-51646D01* +X75732D01* +X75704Y-51642D01* +X75638Y-51638D01* +X75507D01* +X75466Y-51642D01* +X75416D01* +X75363Y-51646D01* +X75252Y-51663D01* +X75244D01* +X75228Y-51667D01* +X75199Y-51675D01* +X75162Y-51683D01* +X75117Y-51692D01* +X75068Y-51708D01* +X75011Y-51724D01* +X74953Y-51745D01* +Y-53524D01* +X74096D01* +Y-50859D01* +X74953D01* +Y-51253D01* +X74957Y-51249D01* +X74966Y-51240D01* +X74982Y-51228D01* +X74998Y-51212D01* +X75023Y-51195D01* +X75052Y-51171D01* +X75117Y-51122D01* +X75195Y-51068D01* +X75277Y-51015D01* +X75359Y-50970D01* +X75441Y-50933D01* +X75445D01* +X75449Y-50929D01* +X75462Y-50925D01* +X75478Y-50921D01* +X75515Y-50908D01* +X75568Y-50892D01* +X75626Y-50876D01* +X75691Y-50863D01* +X75757Y-50855D01* +X75822Y-50851D01* +X75884D01* +X75925Y-50855D01* +D02* +G37* +G36* +X88446Y-52171D02* +X89500Y-53524D01* +X88504D01* +X87930Y-52725D01* +X87339Y-53524D01* +X86372D01* +X87425Y-52192D01* +X86388Y-50859D01* +X87380D01* +X87946Y-51646D01* +X88512Y-50859D01* +X89488D01* +X88446Y-52171D01* +D02* +G37* +G36* +X77717Y-54500D02* +X76794D01* +X77216Y-53508D01* +X76179Y-50859D01* +X77077D01* +X77713Y-52585D01* +X78323Y-50859D01* +X79201D01* +X77717Y-54500D01* +D02* +G37* +G36* +X81279Y-49994D02* +X81329D01* +X81431Y-49998D01* +X81534Y-50002D01* +X81632Y-50011D01* +X81673Y-50015D01* +X81714Y-50019D01* +X81722D01* +X81747Y-50023D01* +X81788Y-50031D01* +X81837Y-50043D01* +X81899Y-50064D01* +X81964Y-50084D01* +X82034Y-50113D01* +X82108Y-50146D01* +X82112D01* +X82116Y-50150D01* +X82140Y-50166D01* +X82177Y-50187D01* +X82222Y-50220D01* +X82268Y-50257D01* +X82321Y-50306D01* +X82366Y-50359D01* +X82407Y-50420D01* +X82411Y-50429D01* +X82423Y-50449D01* +X82440Y-50486D01* +X82460Y-50535D01* +X82477Y-50593D01* +X82493Y-50658D01* +X82505Y-50732D01* +X82509Y-50814D01* +Y-50818D01* +Y-50826D01* +Y-50839D01* +Y-50855D01* +X82505Y-50880D01* +X82501Y-50904D01* +X82493Y-50966D01* +X82477Y-51035D01* +X82452Y-51113D01* +X82419Y-51187D01* +X82374Y-51265D01* +Y-51269D01* +X82366Y-51273D01* +X82350Y-51298D01* +X82317Y-51335D01* +X82276Y-51376D01* +X82222Y-51425D01* +X82157Y-51474D01* +X82079Y-51523D01* +X81993Y-51569D01* +Y-51589D01* +X81997D01* +X82009Y-51593D01* +X82026Y-51597D01* +X82050Y-51601D01* +X82079Y-51614D01* +X82112Y-51622D01* +X82190Y-51651D01* +X82276Y-51692D01* +X82370Y-51741D01* +X82456Y-51802D01* +X82538Y-51876D01* +X82542Y-51880D01* +X82546Y-51884D01* +X82559Y-51897D01* +X82571Y-51913D01* +X82587Y-51938D01* +X82604Y-51962D01* +X82620Y-51991D01* +X82641Y-52028D01* +X82661Y-52065D01* +X82678Y-52110D01* +X82710Y-52204D01* +X82735Y-52315D01* +X82739Y-52376D01* +X82743Y-52442D01* +Y-52446D01* +Y-52454D01* +Y-52466D01* +Y-52487D01* +X82739Y-52507D01* +Y-52532D01* +X82731Y-52598D01* +X82719Y-52667D01* +X82698Y-52745D01* +X82674Y-52823D01* +X82637Y-52901D01* +Y-52905D01* +X82632Y-52909D01* +X82616Y-52934D01* +X82596Y-52971D01* +X82563Y-53020D01* +X82522Y-53073D01* +X82473Y-53127D01* +X82419Y-53184D01* +X82354Y-53237D01* +X82350D01* +X82345Y-53245D01* +X82333Y-53254D01* +X82317Y-53262D01* +X82276Y-53290D01* +X82218Y-53323D01* +X82149Y-53360D01* +X82071Y-53397D01* +X81985Y-53430D01* +X81894Y-53459D01* +X81890D01* +X81882Y-53463D01* +X81870D01* +X81849Y-53467D01* +X81825Y-53475D01* +X81796Y-53479D01* +X81759Y-53483D01* +X81722Y-53491D01* +X81677Y-53496D01* +X81632Y-53504D01* +X81579Y-53508D01* +X81521Y-53512D01* +X81398Y-53520D01* +X81263Y-53524D01* +X79721D01* +Y-49990D01* +X81234D01* +X81279Y-49994D01* +D02* +G37* +G36* +X71501Y-49994D02* +X71591D01* +X71645Y-49998D01* +X71759Y-50006D01* +X71886Y-50023D01* +X72009Y-50039D01* +X72132Y-50064D01* +X72136D01* +X72145Y-50068D01* +X72161Y-50072D01* +X72186Y-50076D01* +X72210Y-50084D01* +X72243Y-50093D01* +X72317Y-50117D01* +X72399Y-50146D01* +X72489Y-50183D01* +X72579Y-50224D01* +X72661Y-50269D01* +X72665Y-50273D01* +X72678Y-50281D01* +X72698Y-50293D01* +X72723Y-50310D01* +X72751Y-50334D01* +X72788Y-50359D01* +X72829Y-50392D01* +X72870Y-50429D01* +X72916Y-50470D01* +X72961Y-50515D01* +X73010Y-50564D01* +X73059Y-50617D01* +X73149Y-50736D01* +X73235Y-50871D01* +X73239Y-50876D01* +X73243Y-50888D01* +X73256Y-50908D01* +X73268Y-50937D01* +X73285Y-50974D01* +X73301Y-51019D01* +X73321Y-51068D01* +X73342Y-51126D01* +X73362Y-51187D01* +X73383Y-51253D01* +X73399Y-51327D01* +X73416Y-51405D01* +X73428Y-51491D01* +X73440Y-51577D01* +X73444Y-51667D01* +X73448Y-51761D01* +Y-51765D01* +Y-51782D01* +Y-51810D01* +X73444Y-51843D01* +X73440Y-51888D01* +X73436Y-51938D01* +X73428Y-51995D01* +X73420Y-52056D01* +X73408Y-52126D01* +X73395Y-52196D01* +X73354Y-52343D01* +X73330Y-52421D01* +X73297Y-52495D01* +X73264Y-52573D01* +X73223Y-52647D01* +X73219Y-52651D01* +X73215Y-52663D01* +X73198Y-52684D01* +X73182Y-52712D01* +X73162Y-52745D01* +X73133Y-52782D01* +X73104Y-52823D01* +X73067Y-52868D01* +X72985Y-52962D01* +X72887Y-53065D01* +X72776Y-53159D01* +X72715Y-53204D01* +X72653Y-53245D01* +X72649D01* +X72641Y-53254D01* +X72628Y-53262D01* +X72608Y-53270D01* +X72583Y-53282D01* +X72555Y-53299D01* +X72522Y-53315D01* +X72485Y-53332D01* +X72399Y-53368D01* +X72305Y-53401D01* +X72198Y-53434D01* +X72083Y-53463D01* +X72079D01* +X72071Y-53467D01* +X72050D01* +X72030Y-53471D01* +X71997Y-53475D01* +X71964Y-53483D01* +X71923Y-53487D01* +X71878Y-53491D01* +X71825Y-53500D01* +X71772Y-53504D01* +X71710Y-53508D01* +X71645Y-53516D01* +X71505Y-53520D01* +X71353Y-53524D01* +X70111D01* +Y-49990D01* +X71464D01* +X71501Y-49994D01* +D02* +G37* +G36* +X52317Y-50789D02* +X52379Y-50794D01* +X52448Y-50798D01* +X52522Y-50806D01* +X52604Y-50814D01* +X52776Y-50839D01* +X52953Y-50880D01* +X53035Y-50904D01* +X53113Y-50937D01* +X53186Y-50970D01* +X53252Y-51011D01* +X53256Y-51015D01* +X53264Y-51023D01* +X53281Y-51035D01* +X53301Y-51052D01* +X53326Y-51077D01* +X53354Y-51109D01* +X53383Y-51142D01* +X53416Y-51183D01* +X53445Y-51228D01* +X53473Y-51281D01* +X53502Y-51339D01* +X53527Y-51405D01* +X53547Y-51474D01* +X53563Y-51548D01* +X53572Y-51630D01* +X53576Y-51716D01* +Y-53524D01* +X52727D01* +Y-53245D01* +X52723Y-53250D01* +X52715Y-53254D01* +X52698Y-53266D01* +X52678Y-53278D01* +X52653Y-53299D01* +X52625Y-53319D01* +X52555Y-53368D01* +X52551Y-53373D01* +X52539Y-53381D01* +X52518Y-53393D01* +X52493Y-53409D01* +X52465Y-53430D01* +X52432Y-53450D01* +X52362Y-53487D01* +X52358D01* +X52342Y-53496D01* +X52317Y-53504D01* +X52284Y-53516D01* +X52243Y-53528D01* +X52202Y-53541D01* +X52104Y-53565D01* +X52100D01* +X52079Y-53569D01* +X52055Y-53573D01* +X52018Y-53578D01* +X51973Y-53586D01* +X51924Y-53590D01* +X51866Y-53594D01* +X51772D01* +X51747Y-53590D01* +X51714Y-53586D01* +X51673Y-53582D01* +X51632Y-53573D01* +X51587Y-53565D01* +X51485Y-53536D01* +X51432Y-53516D01* +X51378Y-53496D01* +X51325Y-53467D01* +X51272Y-53438D01* +X51222Y-53401D01* +X51173Y-53360D01* +X51169Y-53356D01* +X51161Y-53348D01* +X51149Y-53336D01* +X51132Y-53319D01* +X51116Y-53295D01* +X51091Y-53266D01* +X51071Y-53233D01* +X51046Y-53196D01* +X51021Y-53155D01* +X51001Y-53110D01* +X50960Y-53008D01* +X50944Y-52950D01* +X50931Y-52893D01* +X50923Y-52827D01* +X50919Y-52762D01* +Y-52758D01* +Y-52749D01* +Y-52733D01* +X50923Y-52712D01* +Y-52688D01* +X50927Y-52659D01* +X50935Y-52593D01* +X50952Y-52516D01* +X50972Y-52438D01* +X51005Y-52360D01* +X51046Y-52286D01* +Y-52282D01* +X51054Y-52278D01* +X51071Y-52257D01* +X51099Y-52220D01* +X51140Y-52179D01* +X51194Y-52134D01* +X51259Y-52085D01* +X51333Y-52036D01* +X51415Y-51995D01* +X51419D01* +X51427Y-51991D01* +X51440Y-51983D01* +X51456Y-51978D01* +X51481Y-51970D01* +X51509Y-51958D01* +X51542Y-51946D01* +X51579Y-51938D01* +X51661Y-51913D01* +X51764Y-51884D01* +X51874Y-51864D01* +X52001Y-51843D01* +X52005D01* +X52018Y-51839D01* +X52038D01* +X52063Y-51835D01* +X52096Y-51831D01* +X52133Y-51827D01* +X52178Y-51823D01* +X52227Y-51819D01* +X52276Y-51810D01* +X52333Y-51806D01* +X52456Y-51794D01* +X52592Y-51782D01* +X52731Y-51774D01* +Y-51761D01* +Y-51757D01* +Y-51753D01* +Y-51741D01* +X52727Y-51724D01* +X52723Y-51687D01* +X52711Y-51638D01* +X52686Y-51589D01* +X52653Y-51540D01* +X52612Y-51495D01* +X52584Y-51474D01* +X52551Y-51458D01* +X52543Y-51454D01* +X52530Y-51450D01* +X52518Y-51446D01* +X52498Y-51437D01* +X52477Y-51429D01* +X52448Y-51421D01* +X52416Y-51413D01* +X52342Y-51400D01* +X52251Y-51384D01* +X52145Y-51376D01* +X52022Y-51372D01* +X51985D01* +X51944Y-51376D01* +X51887Y-51380D01* +X51817Y-51392D01* +X51743Y-51405D01* +X51657Y-51425D01* +X51571Y-51450D01* +X51567D01* +X51559Y-51454D01* +X51550Y-51458D01* +X51534Y-51462D01* +X51489Y-51474D01* +X51440Y-51491D01* +X51382Y-51507D01* +X51329Y-51528D01* +X51276Y-51544D01* +X51231Y-51560D01* +X51153D01* +Y-50921D01* +X51161D01* +X51177Y-50912D01* +X51210Y-50904D01* +X51255Y-50896D01* +X51317Y-50884D01* +X51390Y-50867D01* +X51481Y-50851D01* +X51587Y-50835D01* +X51591D01* +X51600Y-50831D01* +X51616D01* +X51641Y-50826D01* +X51669Y-50822D01* +X51702Y-50818D01* +X51739Y-50814D01* +X51780Y-50810D01* +X51870Y-50802D01* +X51977Y-50794D01* +X52083Y-50785D01* +X52268D01* +X52317Y-50789D01* +D02* +G37* +G36* +X50308Y-53524D02* +X49451D01* +Y-49834D01* +X50308D01* +Y-53524D01* +D02* +G37* +G36* +X48648D02* +X47791D01* +Y-50859D01* +X48648D01* +Y-53524D01* +D02* +G37* +G36* +X47213Y-50675D02* +X45589D01* +Y-51331D01* +X47094D01* +Y-52015D01* +X45589D01* +Y-53524D01* +X44679D01* +Y-49990D01* +X47213D01* +Y-50675D01* +D02* +G37* +G36* +X67098Y-50859D02* +X67893D01* +Y-51437D01* +X67098D01* +Y-52389D01* +Y-52393D01* +Y-52413D01* +Y-52438D01* +Y-52470D01* +Y-52512D01* +Y-52552D01* +Y-52635D01* +Y-52639D01* +Y-52651D01* +X67102Y-52671D01* +X67106Y-52696D01* +X67114Y-52753D01* +X67134Y-52819D01* +Y-52823D01* +X67143Y-52831D01* +X67151Y-52848D01* +X67163Y-52868D01* +X67176Y-52889D01* +X67196Y-52913D01* +X67221Y-52934D01* +X67249Y-52954D01* +X67253D01* +X67266Y-52962D01* +X67286Y-52967D01* +X67311Y-52975D01* +X67348Y-52983D01* +X67389Y-52991D01* +X67438Y-52995D01* +X67495Y-52999D01* +X67520D01* +X67540Y-52995D01* +X67565Y-52991D01* +X67598Y-52987D01* +X67631Y-52979D01* +X67668Y-52971D01* +X67672D01* +X67684Y-52967D01* +X67704Y-52958D01* +X67729Y-52954D01* +X67778Y-52938D01* +X67803Y-52926D01* +X67819Y-52917D01* +X67893D01* +Y-53504D01* +X67885D01* +X67868Y-53508D01* +X67840Y-53516D01* +X67803Y-53524D01* +X67762Y-53532D01* +X67708Y-53541D01* +X67655Y-53549D01* +X67598Y-53557D01* +X67590D01* +X67569Y-53561D01* +X67536Y-53565D01* +X67495D01* +X67438Y-53569D01* +X67376Y-53573D01* +X67303Y-53578D01* +X67171D01* +X67139Y-53573D01* +X67098Y-53569D01* +X67053Y-53565D01* +X66999Y-53561D01* +X66942Y-53553D01* +X66823Y-53528D01* +X66700Y-53491D01* +X66642Y-53471D01* +X66585Y-53442D01* +X66532Y-53413D01* +X66483Y-53377D01* +X66479Y-53373D01* +X66470Y-53368D01* +X66462Y-53356D01* +X66446Y-53336D01* +X66425Y-53315D01* +X66405Y-53286D01* +X66384Y-53254D01* +X66364Y-53217D01* +X66339Y-53172D01* +X66319Y-53118D01* +X66298Y-53065D01* +X66278Y-52999D01* +X66261Y-52934D01* +X66253Y-52856D01* +X66245Y-52774D01* +X66241Y-52688D01* +Y-51437D01* +X65888D01* +Y-50859D01* +X66241D01* +Y-50097D01* +X67098D01* +Y-50859D01* +D02* +G37* +G36* +X60878Y-50781D02* +X60923D01* +X60976Y-50785D01* +X61042Y-50794D01* +X61107Y-50806D01* +X61185Y-50818D01* +X61263Y-50835D01* +X61341Y-50859D01* +X61423Y-50884D01* +X61505Y-50917D01* +X61583Y-50954D01* +X61661Y-50999D01* +X61731Y-51052D01* +X61796Y-51109D01* +X61800Y-51113D01* +X61809Y-51126D01* +X61825Y-51142D01* +X61850Y-51171D01* +X61874Y-51204D01* +X61899Y-51245D01* +X61932Y-51294D01* +X61960Y-51351D01* +X61989Y-51413D01* +X62022Y-51482D01* +X62046Y-51560D01* +X62075Y-51646D01* +X62096Y-51737D01* +X62112Y-51835D01* +X62120Y-51942D01* +X62124Y-52052D01* +Y-52347D01* +X60173D01* +Y-52352D01* +Y-52360D01* +X60177Y-52376D01* +Y-52401D01* +X60185Y-52425D01* +X60189Y-52458D01* +X60210Y-52528D01* +X60238Y-52606D01* +X60279Y-52688D01* +X60304Y-52729D01* +X60333Y-52766D01* +X60369Y-52803D01* +X60406Y-52835D01* +X60410D01* +X60419Y-52844D01* +X60431Y-52852D01* +X60447Y-52860D01* +X60472Y-52872D01* +X60501Y-52889D01* +X60533Y-52901D01* +X60570Y-52917D01* +X60615Y-52934D01* +X60661Y-52946D01* +X60714Y-52962D01* +X60771Y-52975D01* +X60837Y-52983D01* +X60903Y-52991D01* +X60976Y-52999D01* +X61099D01* +X61124Y-52995D01* +X61153D01* +X61222Y-52987D01* +X61300Y-52975D01* +X61390Y-52958D01* +X61485Y-52934D01* +X61579Y-52901D01* +X61583D01* +X61591Y-52897D01* +X61604Y-52893D01* +X61620Y-52885D01* +X61665Y-52864D01* +X61722Y-52835D01* +X61788Y-52807D01* +X61854Y-52770D01* +X61919Y-52729D01* +X61977Y-52688D01* +X62075D01* +Y-53377D01* +X62071D01* +X62063Y-53381D01* +X62046Y-53389D01* +X62026Y-53397D01* +X62001Y-53405D01* +X61968Y-53413D01* +X61899Y-53438D01* +X61813Y-53467D01* +X61722Y-53496D01* +X61624Y-53520D01* +X61526Y-53541D01* +X61522D01* +X61513Y-53545D01* +X61501D01* +X61481Y-53549D01* +X61456Y-53553D01* +X61427Y-53557D01* +X61395Y-53561D01* +X61362Y-53565D01* +X61276Y-53578D01* +X61181Y-53586D01* +X61075Y-53590D01* +X60960Y-53594D01* +X60923D01* +X60882Y-53590D01* +X60829D01* +X60763Y-53582D01* +X60685Y-53573D01* +X60599Y-53565D01* +X60509Y-53549D01* +X60410Y-53528D01* +X60308Y-53508D01* +X60206Y-53479D01* +X60107Y-53442D01* +X60005Y-53401D01* +X59910Y-53356D01* +X59820Y-53299D01* +X59734Y-53237D01* +X59730Y-53233D01* +X59718Y-53221D01* +X59693Y-53200D01* +X59668Y-53172D01* +X59636Y-53135D01* +X59599Y-53090D01* +X59562Y-53036D01* +X59521Y-52975D01* +X59480Y-52905D01* +X59443Y-52827D01* +X59406Y-52741D01* +X59373Y-52651D01* +X59349Y-52552D01* +X59328Y-52446D01* +X59312Y-52331D01* +X59308Y-52208D01* +Y-52200D01* +Y-52179D01* +X59312Y-52143D01* +X59316Y-52097D01* +X59320Y-52044D01* +X59328Y-51978D01* +X59340Y-51909D01* +X59357Y-51831D01* +X59377Y-51749D01* +X59406Y-51663D01* +X59439Y-51577D01* +X59476Y-51486D01* +X59525Y-51400D01* +X59578Y-51318D01* +X59640Y-51236D01* +X59709Y-51163D01* +X59714Y-51158D01* +X59730Y-51146D01* +X59750Y-51126D01* +X59783Y-51101D01* +X59824Y-51072D01* +X59873Y-51040D01* +X59935Y-51007D01* +X60000Y-50970D01* +X60074Y-50933D01* +X60156Y-50900D01* +X60251Y-50867D01* +X60349Y-50839D01* +X60456Y-50814D01* +X60566Y-50794D01* +X60689Y-50781D01* +X60816Y-50777D01* +X60845D01* +X60878Y-50781D01* +D02* +G37* +G36* +X84707Y-50781D02* +X84756D01* +X84814Y-50789D01* +X84883Y-50798D01* +X84957Y-50810D01* +X85039Y-50826D01* +X85121Y-50847D01* +X85211Y-50871D01* +X85302Y-50900D01* +X85392Y-50937D01* +X85478Y-50982D01* +X85564Y-51031D01* +X85646Y-51093D01* +X85720Y-51158D01* +X85724Y-51163D01* +X85736Y-51175D01* +X85757Y-51200D01* +X85781Y-51228D01* +X85810Y-51265D01* +X85839Y-51314D01* +X85876Y-51368D01* +X85913Y-51429D01* +X85945Y-51503D01* +X85982Y-51581D01* +X86011Y-51663D01* +X86044Y-51757D01* +X86064Y-51855D01* +X86085Y-51962D01* +X86097Y-52077D01* +X86101Y-52196D01* +Y-52204D01* +Y-52224D01* +X86097Y-52257D01* +Y-52302D01* +X86089Y-52360D01* +X86081Y-52421D01* +X86068Y-52495D01* +X86052Y-52569D01* +X86031Y-52651D01* +X86007Y-52737D01* +X85974Y-52823D01* +X85937Y-52909D01* +X85896Y-52995D01* +X85843Y-53077D01* +X85785Y-53155D01* +X85716Y-53229D01* +X85712Y-53233D01* +X85699Y-53245D01* +X85675Y-53262D01* +X85646Y-53286D01* +X85605Y-53315D01* +X85560Y-53348D01* +X85502Y-53381D01* +X85437Y-53418D01* +X85367Y-53455D01* +X85285Y-53487D01* +X85199Y-53520D01* +X85101Y-53549D01* +X84998Y-53569D01* +X84887Y-53590D01* +X84769Y-53602D01* +X84641Y-53606D01* +X84613D01* +X84576Y-53602D01* +X84527D01* +X84469Y-53594D01* +X84400Y-53586D01* +X84326Y-53573D01* +X84244Y-53557D01* +X84162Y-53541D01* +X84072Y-53516D01* +X83981Y-53483D01* +X83891Y-53446D01* +X83805Y-53405D01* +X83719Y-53352D01* +X83637Y-53295D01* +X83563Y-53229D01* +X83559Y-53225D01* +X83547Y-53213D01* +X83526Y-53188D01* +X83506Y-53159D01* +X83473Y-53122D01* +X83444Y-53073D01* +X83407Y-53020D01* +X83375Y-52958D01* +X83338Y-52889D01* +X83301Y-52811D01* +X83272Y-52725D01* +X83243Y-52635D01* +X83219Y-52536D01* +X83198Y-52429D01* +X83186Y-52315D01* +X83182Y-52196D01* +Y-52188D01* +Y-52167D01* +X83186Y-52130D01* +X83190Y-52085D01* +X83194Y-52032D01* +X83202Y-51966D01* +X83215Y-51892D01* +X83231Y-51815D01* +X83252Y-51732D01* +X83276Y-51651D01* +X83309Y-51564D01* +X83346Y-51474D01* +X83387Y-51392D01* +X83440Y-51306D01* +X83498Y-51228D01* +X83567Y-51154D01* +X83571Y-51150D01* +X83584Y-51138D01* +X83608Y-51117D01* +X83637Y-51097D01* +X83678Y-51068D01* +X83727Y-51035D01* +X83780Y-51003D01* +X83846Y-50966D01* +X83920Y-50929D01* +X83998Y-50896D01* +X84088Y-50863D01* +X84182Y-50835D01* +X84285Y-50810D01* +X84400Y-50794D01* +X84514Y-50781D01* +X84641Y-50777D01* +X84674D01* +X84707Y-50781D01* +D02* +G37* +G36* +X62782Y91997D02* +X62798D01* +X62839Y91992D01* +X62888Y91984D01* +X62940Y91973D01* +X62995Y91956D01* +X63050Y91935D01* +X63052D01* +X63055Y91932D01* +X63063Y91926D01* +X63074Y91924D01* +X63101Y91907D01* +X63134Y91885D01* +X63172Y91855D01* +X63213Y91823D01* +X63254Y91782D01* +X63295Y91733D01* +Y91730D01* +X63301Y91727D01* +X63306Y91719D01* +X63312Y91708D01* +X63331Y91681D01* +X63353Y91642D01* +X63377Y91596D01* +X63402Y91544D01* +X63426Y91484D01* +X63448Y91418D01* +Y91416D01* +X63451Y91410D01* +X63454Y91399D01* +X63456Y91386D01* +X63459Y91369D01* +X63464Y91350D01* +X63470Y91326D01* +X63473Y91298D01* +X63478Y91268D01* +X63484Y91236D01* +X63492Y91162D01* +X63497Y91080D01* +X63500Y90987D01* +Y90938D01* +X63497Y90913D01* +Y90851D01* +X63494Y90815D01* +X63489Y90736D01* +X63481Y90651D01* +X63470Y90567D01* +X63454Y90485D01* +Y90482D01* +X63451Y90477D01* +X63448Y90466D01* +X63445Y90449D01* +X63443Y90433D01* +X63437Y90411D01* +X63424Y90365D01* +X63410Y90310D01* +X63393Y90253D01* +X63374Y90198D01* +X63353Y90146D01* +X62834D01* +Y90209D01* +X62837Y90212D01* +X62842Y90220D01* +X62848Y90231D01* +X62864Y90258D01* +X62883Y90299D01* +X62908Y90346D01* +X62929Y90400D01* +X62954Y90463D01* +X62979Y90531D01* +Y90534D01* +X62981Y90539D01* +X62984Y90550D01* +X62987Y90564D01* +X62992Y90580D01* +X62998Y90600D01* +X63006Y90646D01* +X63017Y90698D01* +X63028Y90755D01* +X63033Y90815D01* +X63036Y90875D01* +Y90911D01* +X63033Y90933D01* +Y90963D01* +X63030Y90995D01* +X63028Y91034D01* +X63022Y91072D01* +Y91077D01* +X63020Y91091D01* +X63014Y91110D01* +X63009Y91135D01* +X63000Y91165D01* +X62989Y91195D01* +X62973Y91225D01* +X62957Y91255D01* +X62954Y91257D01* +X62949Y91266D01* +X62940Y91274D01* +X62929Y91287D01* +X62902Y91317D01* +X62864Y91347D01* +X62861Y91350D01* +X62853Y91353D01* +X62839Y91359D01* +X62823Y91367D01* +X62798Y91372D01* +X62771Y91378D01* +X62738Y91380D01* +X62700Y91383D01* +X62695D01* +X62684D01* +X62665Y91380D01* +X62640Y91378D01* +X62616Y91372D01* +X62588Y91361D01* +X62564Y91350D01* +X62542Y91334D01* +X62539Y91331D01* +X62534Y91326D01* +X62523Y91315D01* +X62509Y91301D01* +X62495Y91285D01* +X62482Y91263D01* +X62471Y91238D01* +X62460Y91211D01* +Y91208D01* +X62457Y91197D01* +X62452Y91181D01* +X62446Y91159D01* +X62444Y91129D01* +X62438Y91099D01* +X62435Y91061D01* +X62433Y91023D01* +Y90984D01* +X62430Y90957D01* +Y90695D01* +X62009D01* +Y90903D01* +X62007Y90935D01* +Y91009D01* +X62004Y91044D01* +Y91050D01* +X62001Y91061D01* +X61998Y91077D01* +X61996Y91102D01* +X61990Y91126D01* +X61985Y91154D01* +X61966Y91208D01* +Y91211D01* +X61960Y91219D01* +X61955Y91233D01* +X61947Y91246D01* +X61922Y91282D01* +X61906Y91298D01* +X61889Y91312D01* +X61887Y91315D01* +X61878Y91317D01* +X61867Y91323D01* +X61851Y91331D01* +X61829Y91337D01* +X61805Y91342D01* +X61775Y91345D01* +X61742Y91347D01* +X61739D01* +X61731D01* +X61717Y91345D01* +X61701Y91342D01* +X61665Y91331D01* +X61646Y91323D01* +X61630Y91309D01* +X61627Y91307D01* +X61622Y91304D01* +X61614Y91296D01* +X61605Y91285D01* +X61584Y91257D01* +X61562Y91219D01* +X61559Y91216D01* +X61556Y91208D01* +X61551Y91195D01* +X61545Y91178D01* +X61540Y91156D01* +X61532Y91132D01* +X61526Y91102D01* +X61523Y91072D01* +Y91069D01* +X61521Y91058D01* +Y91042D01* +X61518Y91023D01* +X61515Y91001D01* +Y90976D01* +X61513Y90930D01* +Y90905D01* +X61515Y90892D01* +Y90875D01* +X61518Y90834D01* +X61526Y90785D01* +X61534Y90731D01* +X61548Y90671D01* +X61564Y90608D01* +Y90605D01* +X61567Y90600D01* +X61570Y90591D01* +X61573Y90578D01* +X61578Y90561D01* +X61584Y90545D01* +X61600Y90501D01* +X61622Y90449D01* +X61644Y90392D01* +X61674Y90332D01* +X61706Y90272D01* +Y90215D01* +X61199D01* +Y90217D01* +X61196Y90220D01* +X61193Y90228D01* +X61190Y90239D01* +X61185Y90250D01* +X61180Y90266D01* +X61166Y90307D01* +X61152Y90356D01* +X61133Y90417D01* +X61117Y90485D01* +X61098Y90564D01* +Y90567D01* +X61095Y90575D01* +X61092Y90586D01* +X61089Y90602D01* +X61087Y90624D01* +X61081Y90646D01* +X61079Y90673D01* +X61073Y90703D01* +X61065Y90772D01* +X61057Y90848D01* +X61051Y90930D01* +X61049Y91014D01* +Y91072D01* +X61051Y91094D01* +Y91118D01* +X61054Y91148D01* +X61059Y91208D01* +X61065Y91274D01* +X61076Y91339D01* +X61089Y91405D01* +Y91408D01* +X61092Y91413D01* +Y91421D01* +X61098Y91432D01* +X61106Y91462D01* +X61117Y91503D01* +X61130Y91544D01* +X61150Y91590D01* +X61169Y91637D01* +X61193Y91681D01* +Y91683D01* +X61196Y91686D01* +X61207Y91702D01* +X61223Y91724D01* +X61245Y91752D01* +X61272Y91784D01* +X61305Y91814D01* +X61341Y91844D01* +X61382Y91872D01* +X61387Y91874D01* +X61401Y91883D01* +X61422Y91894D01* +X61455Y91904D01* +X61491Y91915D01* +X61534Y91926D01* +X61584Y91935D01* +X61638Y91937D01* +X61641D01* +X61646D01* +X61657D01* +X61671Y91935D01* +X61687D01* +X61709Y91932D01* +X61756Y91921D01* +X61810Y91907D01* +X61870Y91885D01* +X61930Y91855D01* +X61960Y91836D01* +X61990Y91814D01* +X61993D01* +X61996Y91809D01* +X62004Y91801D01* +X62015Y91793D01* +X62042Y91765D01* +X62072Y91730D01* +X62105Y91683D01* +X62138Y91629D01* +X62165Y91566D01* +X62187Y91495D01* +X62209D01* +Y91498D01* +X62211Y91509D01* +X62214Y91525D01* +X62217Y91547D01* +X62225Y91574D01* +X62231Y91601D01* +X62252Y91667D01* +X62255Y91672D01* +X62258Y91683D01* +X62266Y91700D01* +X62277Y91721D01* +X62291Y91746D01* +X62307Y91773D01* +X62326Y91803D01* +X62348Y91831D01* +X62351Y91834D01* +X62359Y91844D01* +X62375Y91858D01* +X62394Y91874D01* +X62416Y91894D01* +X62444Y91915D01* +X62473Y91935D01* +X62506Y91954D01* +X62509Y91956D01* +X62523Y91962D01* +X62542Y91967D01* +X62569Y91978D01* +X62602Y91986D01* +X62640Y91992D01* +X62687Y91997D01* +X62738Y92000D01* +X62741D01* +X62747D01* +X62755D01* +X62766D01* +X62782Y91997D01* +D02* +G37* +G36* +X63451Y89027D02* +Y88350D01* +X61098Y87493D01* +Y88129D01* +X62749Y88697D01* +X61098Y89265D01* +Y89887D01* +X63451Y89027D01* +D02* +G37* +G36* +X62782Y87228D02* +X62798D01* +X62839Y87222D01* +X62888Y87214D01* +X62940Y87203D01* +X62995Y87187D01* +X63050Y87165D01* +X63052D01* +X63055Y87162D01* +X63063Y87157D01* +X63074Y87154D01* +X63101Y87138D01* +X63134Y87116D01* +X63172Y87086D01* +X63213Y87053D01* +X63254Y87012D01* +X63295Y86963D01* +Y86960D01* +X63301Y86958D01* +X63306Y86949D01* +X63312Y86939D01* +X63331Y86911D01* +X63353Y86873D01* +X63377Y86827D01* +X63402Y86775D01* +X63426Y86715D01* +X63448Y86649D01* +Y86646D01* +X63451Y86641D01* +X63454Y86630D01* +X63456Y86616D01* +X63459Y86600D01* +X63464Y86581D01* +X63470Y86556D01* +X63473Y86529D01* +X63478Y86499D01* +X63484Y86466D01* +X63492Y86393D01* +X63497Y86311D01* +X63500Y86218D01* +Y86169D01* +X63497Y86144D01* +Y86081D01* +X63494Y86046D01* +X63489Y85967D01* +X63481Y85882D01* +X63470Y85797D01* +X63454Y85716D01* +Y85713D01* +X63451Y85707D01* +X63448Y85696D01* +X63445Y85680D01* +X63443Y85664D01* +X63437Y85642D01* +X63424Y85595D01* +X63410Y85541D01* +X63393Y85483D01* +X63374Y85429D01* +X63353Y85377D01* +X62834D01* +Y85440D01* +X62837Y85443D01* +X62842Y85451D01* +X62848Y85462D01* +X62864Y85489D01* +X62883Y85530D01* +X62908Y85576D01* +X62929Y85631D01* +X62954Y85694D01* +X62979Y85762D01* +Y85765D01* +X62981Y85770D01* +X62984Y85781D01* +X62987Y85795D01* +X62992Y85811D01* +X62998Y85830D01* +X63006Y85877D01* +X63017Y85928D01* +X63028Y85986D01* +X63033Y86046D01* +X63036Y86106D01* +Y86141D01* +X63033Y86163D01* +Y86193D01* +X63030Y86226D01* +X63028Y86264D01* +X63022Y86303D01* +Y86308D01* +X63020Y86322D01* +X63014Y86341D01* +X63009Y86365D01* +X63000Y86395D01* +X62989Y86425D01* +X62973Y86455D01* +X62957Y86485D01* +X62954Y86488D01* +X62949Y86496D01* +X62940Y86505D01* +X62929Y86518D01* +X62902Y86548D01* +X62864Y86578D01* +X62861Y86581D01* +X62853Y86584D01* +X62839Y86589D01* +X62823Y86597D01* +X62798Y86603D01* +X62771Y86608D01* +X62738Y86611D01* +X62700Y86614D01* +X62695D01* +X62684D01* +X62665Y86611D01* +X62640Y86608D01* +X62616Y86603D01* +X62588Y86592D01* +X62564Y86581D01* +X62542Y86565D01* +X62539Y86562D01* +X62534Y86556D01* +X62523Y86545D01* +X62509Y86532D01* +X62495Y86515D01* +X62482Y86494D01* +X62471Y86469D01* +X62460Y86442D01* +Y86439D01* +X62457Y86428D01* +X62452Y86412D01* +X62446Y86390D01* +X62444Y86360D01* +X62438Y86330D01* +X62435Y86292D01* +X62433Y86253D01* +Y86215D01* +X62430Y86188D01* +Y85926D01* +X62009D01* +Y86133D01* +X62007Y86166D01* +Y86240D01* +X62004Y86275D01* +Y86281D01* +X62001Y86292D01* +X61998Y86308D01* +X61996Y86332D01* +X61990Y86357D01* +X61985Y86384D01* +X61966Y86439D01* +Y86442D01* +X61960Y86450D01* +X61955Y86464D01* +X61947Y86477D01* +X61922Y86513D01* +X61906Y86529D01* +X61889Y86543D01* +X61887Y86545D01* +X61878Y86548D01* +X61867Y86554D01* +X61851Y86562D01* +X61829Y86567D01* +X61805Y86573D01* +X61775Y86576D01* +X61742Y86578D01* +X61739D01* +X61731D01* +X61717Y86576D01* +X61701Y86573D01* +X61665Y86562D01* +X61646Y86554D01* +X61630Y86540D01* +X61627Y86537D01* +X61622Y86535D01* +X61614Y86526D01* +X61605Y86515D01* +X61584Y86488D01* +X61562Y86450D01* +X61559Y86447D01* +X61556Y86439D01* +X61551Y86425D01* +X61545Y86409D01* +X61540Y86387D01* +X61532Y86362D01* +X61526Y86332D01* +X61523Y86303D01* +Y86300D01* +X61521Y86289D01* +Y86273D01* +X61518Y86253D01* +X61515Y86231D01* +Y86207D01* +X61513Y86160D01* +Y86136D01* +X61515Y86122D01* +Y86106D01* +X61518Y86065D01* +X61526Y86016D01* +X61534Y85961D01* +X61548Y85901D01* +X61564Y85838D01* +Y85836D01* +X61567Y85830D01* +X61570Y85822D01* +X61573Y85808D01* +X61578Y85792D01* +X61584Y85776D01* +X61600Y85732D01* +X61622Y85680D01* +X61644Y85623D01* +X61674Y85563D01* +X61706Y85503D01* +Y85445D01* +X61199D01* +Y85448D01* +X61196Y85451D01* +X61193Y85459D01* +X61190Y85470D01* +X61185Y85481D01* +X61180Y85497D01* +X61166Y85538D01* +X61152Y85587D01* +X61133Y85647D01* +X61117Y85716D01* +X61098Y85795D01* +Y85797D01* +X61095Y85806D01* +X61092Y85817D01* +X61089Y85833D01* +X61087Y85855D01* +X61081Y85877D01* +X61079Y85904D01* +X61073Y85934D01* +X61065Y86002D01* +X61057Y86079D01* +X61051Y86160D01* +X61049Y86245D01* +Y86303D01* +X61051Y86324D01* +Y86349D01* +X61054Y86379D01* +X61059Y86439D01* +X61065Y86505D01* +X61076Y86570D01* +X61089Y86636D01* +Y86638D01* +X61092Y86644D01* +Y86652D01* +X61098Y86663D01* +X61106Y86693D01* +X61117Y86734D01* +X61130Y86775D01* +X61150Y86821D01* +X61169Y86868D01* +X61193Y86911D01* +Y86914D01* +X61196Y86917D01* +X61207Y86933D01* +X61223Y86955D01* +X61245Y86982D01* +X61272Y87015D01* +X61305Y87045D01* +X61341Y87075D01* +X61382Y87102D01* +X61387Y87105D01* +X61401Y87113D01* +X61422Y87124D01* +X61455Y87135D01* +X61491Y87146D01* +X61534Y87157D01* +X61584Y87165D01* +X61638Y87168D01* +X61641D01* +X61646D01* +X61657D01* +X61671Y87165D01* +X61687D01* +X61709Y87162D01* +X61756Y87151D01* +X61810Y87138D01* +X61870Y87116D01* +X61930Y87086D01* +X61960Y87067D01* +X61990Y87045D01* +X61993D01* +X61996Y87040D01* +X62004Y87031D01* +X62015Y87023D01* +X62042Y86996D01* +X62072Y86960D01* +X62105Y86914D01* +X62138Y86859D01* +X62165Y86797D01* +X62187Y86726D01* +X62209D01* +Y86728D01* +X62211Y86739D01* +X62214Y86756D01* +X62217Y86778D01* +X62225Y86805D01* +X62231Y86832D01* +X62252Y86898D01* +X62255Y86903D01* +X62258Y86914D01* +X62266Y86930D01* +X62277Y86952D01* +X62291Y86977D01* +X62307Y87004D01* +X62326Y87034D01* +X62348Y87061D01* +X62351Y87064D01* +X62359Y87075D01* +X62375Y87089D01* +X62394Y87105D01* +X62416Y87124D01* +X62444Y87146D01* +X62473Y87165D01* +X62506Y87184D01* +X62509Y87187D01* +X62523Y87192D01* +X62542Y87198D01* +X62569Y87209D01* +X62602Y87217D01* +X62640Y87222D01* +X62687Y87228D01* +X62738Y87231D01* +X62741D01* +X62747D01* +X62755D01* +X62766D01* +X62782Y87228D01* +D02* +G37* +G36* +X53553Y91266D02* +X55451D01* +Y90660D01* +X53553D01* +Y89925D01* +X53098D01* +Y92000D01* +X53553D01* +Y91266D01* +D02* +G37* +G36* +X54332Y89693D02* +X54370Y89690D01* +X54416Y89685D01* +X54474Y89679D01* +X54534Y89669D01* +X54599Y89655D01* +X54670Y89639D01* +X54741Y89617D01* +X54817Y89592D01* +X54891Y89559D01* +X54965Y89524D01* +X55036Y89480D01* +X55104Y89431D01* +X55170Y89374D01* +X55172Y89371D01* +X55183Y89360D01* +X55200Y89341D01* +X55221Y89314D01* +X55246Y89281D01* +X55273Y89243D01* +X55303Y89196D01* +X55334Y89142D01* +X55366Y89082D01* +X55396Y89016D01* +X55424Y88942D01* +X55448Y88863D01* +X55470Y88776D01* +X55486Y88686D01* +X55497Y88587D01* +X55500Y88484D01* +Y88446D01* +X55497Y88429D01* +X55494Y88391D01* +X55489Y88342D01* +X55484Y88287D01* +X55473Y88227D01* +X55459Y88159D01* +X55440Y88091D01* +X55418Y88017D01* +X55393Y87943D01* +X55361Y87870D01* +X55323Y87796D01* +X55279Y87725D01* +X55227Y87657D01* +X55170Y87594D01* +X55167Y87591D01* +X55153Y87580D01* +X55134Y87564D01* +X55110Y87545D01* +X55077Y87520D01* +X55036Y87493D01* +X54989Y87463D01* +X54935Y87435D01* +X54875Y87405D01* +X54807Y87375D01* +X54733Y87348D01* +X54654Y87323D01* +X54569Y87304D01* +X54476Y87288D01* +X54381Y87277D01* +X54277Y87274D01* +X54274D01* +X54272D01* +X54263D01* +X54252D01* +X54239D01* +X54222Y87277D01* +X54184Y87280D01* +X54135Y87285D01* +X54080Y87291D01* +X54018Y87302D01* +X53952Y87315D01* +X53881Y87332D01* +X53807Y87353D01* +X53734Y87378D01* +X53657Y87408D01* +X53584Y87446D01* +X53513Y87487D01* +X53444Y87537D01* +X53379Y87594D01* +X53376Y87596D01* +X53365Y87610D01* +X53349Y87626D01* +X53327Y87654D01* +X53302Y87687D01* +X53275Y87725D01* +X53245Y87771D01* +X53212Y87826D01* +X53182Y87886D01* +X53152Y87951D01* +X53125Y88025D01* +X53100Y88104D01* +X53079Y88192D01* +X53062Y88282D01* +X53051Y88380D01* +X53048Y88484D01* +Y88508D01* +X53051Y88538D01* +X53054Y88577D01* +X53059Y88626D01* +X53065Y88680D01* +X53076Y88740D01* +X53089Y88806D01* +X53109Y88877D01* +X53130Y88948D01* +X53155Y89022D01* +X53188Y89095D01* +X53226Y89169D01* +X53270Y89240D01* +X53321Y89308D01* +X53379Y89371D01* +X53382Y89374D01* +X53395Y89385D01* +X53414Y89401D01* +X53439Y89423D01* +X53472Y89447D01* +X53513Y89475D01* +X53562Y89502D01* +X53614Y89535D01* +X53676Y89565D01* +X53742Y89592D01* +X53816Y89619D01* +X53898Y89644D01* +X53982Y89666D01* +X54075Y89682D01* +X54173Y89693D01* +X54277Y89696D01* +X54280D01* +X54282D01* +X54291D01* +X54302D01* +X54332Y89693D01* +D02* +G37* +G36* +Y86944D02* +X54370Y86941D01* +X54416Y86936D01* +X54474Y86930D01* +X54534Y86919D01* +X54599Y86906D01* +X54670Y86889D01* +X54741Y86868D01* +X54817Y86843D01* +X54891Y86810D01* +X54965Y86775D01* +X55036Y86731D01* +X55104Y86682D01* +X55170Y86625D01* +X55172Y86622D01* +X55183Y86611D01* +X55200Y86592D01* +X55221Y86565D01* +X55246Y86532D01* +X55273Y86494D01* +X55303Y86447D01* +X55334Y86393D01* +X55366Y86332D01* +X55396Y86267D01* +X55424Y86193D01* +X55448Y86114D01* +X55470Y86027D01* +X55486Y85937D01* +X55497Y85838D01* +X55500Y85735D01* +Y85696D01* +X55497Y85680D01* +X55494Y85642D01* +X55489Y85593D01* +X55484Y85538D01* +X55473Y85478D01* +X55459Y85410D01* +X55440Y85342D01* +X55418Y85268D01* +X55393Y85194D01* +X55361Y85120D01* +X55323Y85047D01* +X55279Y84976D01* +X55227Y84908D01* +X55170Y84845D01* +X55167Y84842D01* +X55153Y84831D01* +X55134Y84815D01* +X55110Y84795D01* +X55077Y84771D01* +X55036Y84744D01* +X54989Y84714D01* +X54935Y84686D01* +X54875Y84656D01* +X54807Y84626D01* +X54733Y84599D01* +X54654Y84574D01* +X54569Y84555D01* +X54476Y84539D01* +X54381Y84528D01* +X54277Y84525D01* +X54274D01* +X54272D01* +X54263D01* +X54252D01* +X54239D01* +X54222Y84528D01* +X54184Y84531D01* +X54135Y84536D01* +X54080Y84542D01* +X54018Y84553D01* +X53952Y84566D01* +X53881Y84583D01* +X53807Y84604D01* +X53734Y84629D01* +X53657Y84659D01* +X53584Y84697D01* +X53513Y84738D01* +X53444Y84787D01* +X53379Y84845D01* +X53376Y84847D01* +X53365Y84861D01* +X53349Y84877D01* +X53327Y84905D01* +X53302Y84938D01* +X53275Y84976D01* +X53245Y85022D01* +X53212Y85077D01* +X53182Y85137D01* +X53152Y85202D01* +X53125Y85276D01* +X53100Y85355D01* +X53079Y85443D01* +X53062Y85533D01* +X53051Y85631D01* +X53048Y85735D01* +Y85759D01* +X53051Y85789D01* +X53054Y85827D01* +X53059Y85877D01* +X53065Y85931D01* +X53076Y85991D01* +X53089Y86057D01* +X53109Y86128D01* +X53130Y86199D01* +X53155Y86273D01* +X53188Y86346D01* +X53226Y86420D01* +X53270Y86491D01* +X53321Y86559D01* +X53379Y86622D01* +X53382Y86625D01* +X53395Y86636D01* +X53414Y86652D01* +X53439Y86674D01* +X53472Y86698D01* +X53513Y86726D01* +X53562Y86753D01* +X53614Y86786D01* +X53676Y86816D01* +X53742Y86843D01* +X53816Y86870D01* +X53898Y86895D01* +X53982Y86917D01* +X54075Y86933D01* +X54173Y86944D01* +X54277Y86947D01* +X54280D01* +X54282D01* +X54291D01* +X54302D01* +X54332Y86944D01* +D02* +G37* +G36* +X54774Y84206D02* +X54790D01* +X54834Y84200D01* +X54880Y84192D01* +X54932Y84179D01* +X54984Y84162D01* +X55036Y84138D01* +X55039D01* +X55041Y84135D01* +X55058Y84124D01* +X55082Y84110D01* +X55115Y84088D01* +X55151Y84061D01* +X55186Y84028D01* +X55224Y83993D01* +X55260Y83949D01* +Y83947D01* +X55265Y83944D01* +X55271Y83936D01* +X55276Y83925D01* +X55295Y83897D01* +X55317Y83859D01* +X55342Y83813D01* +X55366Y83761D01* +X55388Y83704D01* +X55407Y83644D01* +Y83641D01* +X55410Y83635D01* +Y83627D01* +X55413Y83613D01* +X55418Y83597D01* +X55421Y83578D01* +X55424Y83553D01* +X55429Y83529D01* +X55432Y83499D01* +X55437Y83469D01* +X55440Y83433D01* +X55443Y83395D01* +X55448Y83313D01* +X55451Y83223D01* +Y82197D01* +X53098D01* +Y83204D01* +X53100Y83234D01* +Y83267D01* +X53103Y83335D01* +X53106Y83403D01* +X53111Y83469D01* +X53114Y83496D01* +X53117Y83523D01* +Y83529D01* +X53119Y83545D01* +X53125Y83573D01* +X53133Y83605D01* +X53147Y83646D01* +X53160Y83690D01* +X53180Y83736D01* +X53201Y83785D01* +Y83788D01* +X53204Y83791D01* +X53215Y83807D01* +X53229Y83832D01* +X53250Y83862D01* +X53275Y83892D01* +X53308Y83927D01* +X53343Y83957D01* +X53384Y83985D01* +X53390Y83987D01* +X53403Y83996D01* +X53428Y84007D01* +X53461Y84020D01* +X53499Y84031D01* +X53543Y84042D01* +X53592Y84050D01* +X53646Y84053D01* +X53649D01* +X53654D01* +X53663D01* +X53674D01* +X53690Y84050D01* +X53706Y84048D01* +X53747Y84042D01* +X53794Y84031D01* +X53846Y84015D01* +X53895Y83993D01* +X53947Y83963D01* +X53949D01* +X53952Y83957D01* +X53969Y83947D01* +X53993Y83925D01* +X54020Y83897D01* +X54053Y83862D01* +X54086Y83818D01* +X54119Y83766D01* +X54149Y83709D01* +X54162D01* +Y83712D01* +X54165Y83720D01* +X54168Y83731D01* +X54171Y83747D01* +X54179Y83766D01* +X54184Y83788D01* +X54203Y83840D01* +X54231Y83897D01* +X54263Y83960D01* +X54304Y84017D01* +X54353Y84072D01* +X54356Y84075D01* +X54359Y84078D01* +X54367Y84086D01* +X54378Y84094D01* +X54394Y84105D01* +X54411Y84116D01* +X54430Y84127D01* +X54454Y84140D01* +X54479Y84154D01* +X54509Y84165D01* +X54572Y84187D01* +X54646Y84203D01* +X54686Y84206D01* +X54730Y84209D01* +X54733D01* +X54738D01* +X54747D01* +X54760D01* +X54774Y84206D01* +D02* +G37* +G36* +X58381Y91997D02* +X58411Y91995D01* +X58443Y91992D01* +X58482Y91986D01* +X58523Y91981D01* +X58569Y91973D01* +X58615Y91965D01* +X58714Y91937D01* +X58766Y91921D01* +X58815Y91899D01* +X58867Y91877D01* +X58916Y91850D01* +X58918Y91847D01* +X58927Y91844D01* +X58940Y91834D01* +X58960Y91823D01* +X58981Y91809D01* +X59006Y91790D01* +X59033Y91771D01* +X59063Y91746D01* +X59126Y91691D01* +X59194Y91626D01* +X59257Y91552D01* +X59287Y91511D01* +X59314Y91470D01* +Y91468D01* +X59320Y91462D01* +X59325Y91454D01* +X59331Y91440D01* +X59339Y91424D01* +X59350Y91405D01* +X59361Y91383D01* +X59372Y91359D01* +X59396Y91301D01* +X59418Y91238D01* +X59440Y91167D01* +X59459Y91091D01* +Y91088D01* +X59462Y91083D01* +Y91069D01* +X59465Y91055D01* +X59467Y91034D01* +X59473Y91012D01* +X59475Y90984D01* +X59478Y90954D01* +X59484Y90919D01* +X59486Y90883D01* +X59489Y90842D01* +X59495Y90799D01* +X59497Y90706D01* +X59500Y90605D01* +Y89778D01* +X57147D01* +Y90679D01* +X57149Y90703D01* +Y90763D01* +X57152Y90799D01* +X57158Y90875D01* +X57169Y90960D01* +X57179Y91042D01* +X57196Y91124D01* +Y91126D01* +X57199Y91132D01* +X57201Y91143D01* +X57204Y91159D01* +X57209Y91176D01* +X57215Y91197D01* +X57231Y91246D01* +X57250Y91301D01* +X57275Y91361D01* +X57302Y91421D01* +X57332Y91476D01* +X57335Y91479D01* +X57341Y91487D01* +X57349Y91500D01* +X57360Y91517D01* +X57376Y91536D01* +X57392Y91561D01* +X57414Y91588D01* +X57439Y91615D01* +X57466Y91645D01* +X57496Y91675D01* +X57529Y91708D01* +X57564Y91741D01* +X57644Y91801D01* +X57734Y91858D01* +X57736Y91861D01* +X57745Y91864D01* +X57758Y91872D01* +X57777Y91880D01* +X57802Y91891D01* +X57832Y91902D01* +X57865Y91915D01* +X57903Y91929D01* +X57944Y91943D01* +X57988Y91956D01* +X58037Y91967D01* +X58089Y91978D01* +X58146Y91986D01* +X58203Y91995D01* +X58263Y91997D01* +X58326Y92000D01* +X58329D01* +X58340D01* +X58359D01* +X58381Y91997D01* +D02* +G37* +G36* +X59500Y88735D02* +X58730Y88230D01* +X59500Y87714D01* +Y87045D01* +X58315Y87878D01* +X57147Y87061D01* +Y87760D01* +X57881Y88249D01* +X57147Y88751D01* +Y89426D01* +X58291Y88604D01* +X59500Y89439D01* +Y88735D01* +D02* +G37* +G36* +Y86300D02* +X58637Y85661D01* +Y85382D01* +X59500D01* +Y84776D01* +X57147D01* +Y85866D01* +X57149Y85915D01* +X57152Y85972D01* +X57158Y86032D01* +X57163Y86095D01* +X57171Y86152D01* +Y86158D01* +X57174Y86166D01* +X57177Y86177D01* +X57182Y86207D01* +X57193Y86245D01* +X57207Y86286D01* +X57226Y86335D01* +X57248Y86384D01* +X57275Y86434D01* +Y86436D01* +X57278Y86439D01* +X57289Y86455D01* +X57308Y86480D01* +X57330Y86510D01* +X57360Y86543D01* +X57395Y86578D01* +X57436Y86611D01* +X57480Y86644D01* +X57482D01* +X57485Y86646D01* +X57493Y86652D01* +X57502Y86657D01* +X57529Y86668D01* +X57567Y86685D01* +X57611Y86698D01* +X57665Y86712D01* +X57726Y86720D01* +X57794Y86723D01* +X57797D01* +X57805D01* +X57818D01* +X57837Y86720D01* +X57859D01* +X57887Y86717D01* +X57914Y86712D01* +X57944Y86707D01* +X58012Y86693D01* +X58083Y86671D01* +X58154Y86641D01* +X58187Y86622D01* +X58220Y86600D01* +X58222D01* +X58228Y86595D01* +X58236Y86586D01* +X58247Y86578D01* +X58277Y86551D01* +X58315Y86513D01* +X58359Y86464D01* +X58403Y86404D01* +X58449Y86335D01* +X58493Y86256D01* +X59500Y87042D01* +Y86300D01* +D02* +G37* +G36* +X58926Y57549D02* +X58249D01* +X57392Y59902D01* +X58028D01* +X58596Y58251D01* +X59164Y59902D01* +X59786D01* +X58926Y57549D01* +D02* +G37* +G36* +X60993Y59949D02* +X61018D01* +X61048Y59946D01* +X61108Y59941D01* +X61173Y59935D01* +X61239Y59924D01* +X61304Y59911D01* +X61307D01* +X61312Y59908D01* +X61321D01* +X61332Y59902D01* +X61362Y59894D01* +X61402Y59883D01* +X61444Y59870D01* +X61490Y59851D01* +X61536Y59831D01* +X61580Y59807D01* +X61583D01* +X61585Y59804D01* +X61602Y59793D01* +X61624Y59777D01* +X61651Y59755D01* +X61684Y59728D01* +X61714Y59695D01* +X61744Y59659D01* +X61771Y59619D01* +X61774Y59613D01* +X61782Y59599D01* +X61793Y59578D01* +X61804Y59545D01* +X61815Y59509D01* +X61826Y59466D01* +X61834Y59416D01* +X61837Y59362D01* +Y59359D01* +Y59354D01* +Y59343D01* +X61834Y59329D01* +Y59313D01* +X61831Y59291D01* +X61820Y59245D01* +X61807Y59190D01* +X61785Y59130D01* +X61755Y59070D01* +X61736Y59040D01* +X61714Y59010D01* +Y59007D01* +X61708Y59004D01* +X61700Y58996D01* +X61692Y58985D01* +X61665Y58958D01* +X61629Y58928D01* +X61583Y58895D01* +X61528Y58862D01* +X61465Y58835D01* +X61394Y58813D01* +Y58791D01* +X61397D01* +X61408Y58789D01* +X61424Y58786D01* +X61446Y58783D01* +X61474Y58775D01* +X61501Y58769D01* +X61566Y58748D01* +X61572Y58745D01* +X61583Y58742D01* +X61599Y58734D01* +X61621Y58723D01* +X61646Y58709D01* +X61673Y58693D01* +X61703Y58674D01* +X61730Y58652D01* +X61733Y58649D01* +X61744Y58641D01* +X61757Y58625D01* +X61774Y58606D01* +X61793Y58584D01* +X61815Y58556D01* +X61834Y58526D01* +X61853Y58494D01* +X61856Y58491D01* +X61861Y58477D01* +X61867Y58458D01* +X61878Y58431D01* +X61886Y58398D01* +X61891Y58360D01* +X61897Y58314D01* +X61899Y58262D01* +Y58259D01* +Y58254D01* +Y58245D01* +Y58234D01* +X61897Y58218D01* +Y58202D01* +X61891Y58161D01* +X61883Y58112D01* +X61872Y58060D01* +X61856Y58005D01* +X61834Y57950D01* +Y57948D01* +X61831Y57945D01* +X61826Y57937D01* +X61823Y57926D01* +X61807Y57899D01* +X61785Y57866D01* +X61755Y57828D01* +X61722Y57787D01* +X61681Y57746D01* +X61632Y57705D01* +X61629D01* +X61626Y57699D01* +X61618Y57694D01* +X61607Y57688D01* +X61580Y57669D01* +X61542Y57647D01* +X61495Y57623D01* +X61444Y57598D01* +X61383Y57574D01* +X61318Y57552D01* +X61315D01* +X61310Y57549D01* +X61299Y57546D01* +X61285Y57544D01* +X61269Y57541D01* +X61250Y57535D01* +X61225Y57530D01* +X61198Y57527D01* +X61168Y57522D01* +X61135Y57516D01* +X61061Y57508D01* +X60979Y57503D01* +X60887Y57500D01* +X60837D01* +X60813Y57503D01* +X60750D01* +X60715Y57505D01* +X60635Y57511D01* +X60551Y57519D01* +X60466Y57530D01* +X60384Y57546D01* +X60382D01* +X60376Y57549D01* +X60365Y57552D01* +X60349Y57555D01* +X60332Y57557D01* +X60311Y57563D01* +X60264Y57576D01* +X60210Y57590D01* +X60152Y57607D01* +X60098Y57626D01* +X60046Y57647D01* +Y58166D01* +X60109D01* +X60111Y58163D01* +X60119Y58158D01* +X60130Y58153D01* +X60158Y58136D01* +X60199Y58117D01* +X60245Y58092D01* +X60300Y58071D01* +X60362Y58046D01* +X60431Y58021D01* +X60433D01* +X60439Y58019D01* +X60450Y58016D01* +X60463Y58013D01* +X60480Y58008D01* +X60499Y58002D01* +X60545Y57994D01* +X60597Y57983D01* +X60654Y57972D01* +X60715Y57967D01* +X60775Y57964D01* +X60810D01* +X60832Y57967D01* +X60862D01* +X60895Y57970D01* +X60933Y57972D01* +X60971Y57978D01* +X60977D01* +X60990Y57981D01* +X61009Y57986D01* +X61034Y57991D01* +X61064Y58000D01* +X61094Y58011D01* +X61124Y58027D01* +X61154Y58043D01* +X61157Y58046D01* +X61165Y58051D01* +X61173Y58060D01* +X61187Y58071D01* +X61217Y58098D01* +X61247Y58136D01* +X61250Y58139D01* +X61252Y58147D01* +X61258Y58161D01* +X61266Y58177D01* +X61272Y58202D01* +X61277Y58229D01* +X61280Y58262D01* +X61282Y58300D01* +Y58305D01* +Y58316D01* +X61280Y58335D01* +X61277Y58360D01* +X61272Y58385D01* +X61261Y58412D01* +X61250Y58436D01* +X61233Y58458D01* +X61230Y58461D01* +X61225Y58466D01* +X61214Y58477D01* +X61200Y58491D01* +X61184Y58505D01* +X61162Y58518D01* +X61138Y58529D01* +X61110Y58540D01* +X61108D01* +X61097Y58543D01* +X61080Y58548D01* +X61059Y58554D01* +X61028Y58556D01* +X60998Y58562D01* +X60960Y58565D01* +X60922Y58567D01* +X60884D01* +X60856Y58570D01* +X60594D01* +Y58991D01* +X60802D01* +X60835Y58993D01* +X60908D01* +X60944Y58996D01* +X60949D01* +X60960Y58999D01* +X60977Y59001D01* +X61001Y59004D01* +X61026Y59010D01* +X61053Y59015D01* +X61108Y59034D01* +X61110D01* +X61119Y59040D01* +X61132Y59045D01* +X61146Y59053D01* +X61181Y59078D01* +X61198Y59094D01* +X61211Y59111D01* +X61214Y59113D01* +X61217Y59122D01* +X61222Y59132D01* +X61230Y59149D01* +X61236Y59171D01* +X61242Y59195D01* +X61244Y59225D01* +X61247Y59258D01* +Y59261D01* +Y59269D01* +X61244Y59283D01* +X61242Y59299D01* +X61230Y59335D01* +X61222Y59354D01* +X61209Y59370D01* +X61206Y59373D01* +X61203Y59378D01* +X61195Y59386D01* +X61184Y59395D01* +X61157Y59416D01* +X61119Y59438D01* +X61116Y59441D01* +X61108Y59444D01* +X61094Y59449D01* +X61078Y59455D01* +X61056Y59460D01* +X61031Y59468D01* +X61001Y59474D01* +X60971Y59477D01* +X60969D01* +X60957Y59479D01* +X60941D01* +X60922Y59482D01* +X60900Y59485D01* +X60876D01* +X60829Y59487D01* +X60805D01* +X60791Y59485D01* +X60775D01* +X60734Y59482D01* +X60685Y59474D01* +X60630Y59466D01* +X60570Y59452D01* +X60507Y59436D01* +X60504D01* +X60499Y59433D01* +X60491Y59430D01* +X60477Y59427D01* +X60461Y59422D01* +X60444Y59416D01* +X60401Y59400D01* +X60349Y59378D01* +X60291Y59356D01* +X60231Y59326D01* +X60171Y59294D01* +X60114D01* +Y59801D01* +X60117D01* +X60119Y59804D01* +X60128Y59807D01* +X60138Y59810D01* +X60150Y59815D01* +X60166Y59820D01* +X60207Y59834D01* +X60256Y59848D01* +X60316Y59867D01* +X60384Y59883D01* +X60463Y59902D01* +X60466D01* +X60474Y59905D01* +X60485Y59908D01* +X60502Y59911D01* +X60523Y59913D01* +X60545Y59919D01* +X60573Y59921D01* +X60603Y59927D01* +X60671Y59935D01* +X60747Y59943D01* +X60829Y59949D01* +X60914Y59952D01* +X60971D01* +X60993Y59949D01* +D02* +G37* +G36* +X56224D02* +X56248D01* +X56278Y59946D01* +X56338Y59941D01* +X56404Y59935D01* +X56469Y59924D01* +X56535Y59911D01* +X56538D01* +X56543Y59908D01* +X56551D01* +X56562Y59902D01* +X56592Y59894D01* +X56633Y59883D01* +X56674Y59870D01* +X56721Y59851D01* +X56767Y59831D01* +X56811Y59807D01* +X56813D01* +X56816Y59804D01* +X56832Y59793D01* +X56854Y59777D01* +X56882Y59755D01* +X56914Y59728D01* +X56944Y59695D01* +X56975Y59659D01* +X57002Y59619D01* +X57004Y59613D01* +X57013Y59599D01* +X57024Y59578D01* +X57034Y59545D01* +X57046Y59509D01* +X57056Y59466D01* +X57065Y59416D01* +X57067Y59362D01* +Y59359D01* +Y59354D01* +Y59343D01* +X57065Y59329D01* +Y59313D01* +X57062Y59291D01* +X57051Y59245D01* +X57037Y59190D01* +X57015Y59130D01* +X56985Y59070D01* +X56966Y59040D01* +X56944Y59010D01* +Y59007D01* +X56939Y59004D01* +X56931Y58996D01* +X56923Y58985D01* +X56895Y58958D01* +X56860Y58928D01* +X56813Y58895D01* +X56759Y58862D01* +X56696Y58835D01* +X56625Y58813D01* +Y58791D01* +X56628D01* +X56639Y58789D01* +X56655Y58786D01* +X56677Y58783D01* +X56704Y58775D01* +X56731Y58769D01* +X56797Y58748D01* +X56802Y58745D01* +X56813Y58742D01* +X56830Y58734D01* +X56852Y58723D01* +X56876Y58709D01* +X56903Y58693D01* +X56933Y58674D01* +X56961Y58652D01* +X56963Y58649D01* +X56975Y58641D01* +X56988Y58625D01* +X57004Y58606D01* +X57024Y58584D01* +X57046Y58556D01* +X57065Y58526D01* +X57084Y58494D01* +X57086Y58491D01* +X57092Y58477D01* +X57097Y58458D01* +X57108Y58431D01* +X57116Y58398D01* +X57122Y58360D01* +X57127Y58314D01* +X57130Y58262D01* +Y58259D01* +Y58254D01* +Y58245D01* +Y58234D01* +X57127Y58218D01* +Y58202D01* +X57122Y58161D01* +X57114Y58112D01* +X57103Y58060D01* +X57086Y58005D01* +X57065Y57950D01* +Y57948D01* +X57062Y57945D01* +X57056Y57937D01* +X57054Y57926D01* +X57037Y57899D01* +X57015Y57866D01* +X56985Y57828D01* +X56953Y57787D01* +X56912Y57746D01* +X56862Y57705D01* +X56860D01* +X56857Y57699D01* +X56849Y57694D01* +X56838Y57688D01* +X56811Y57669D01* +X56773Y57647D01* +X56726Y57623D01* +X56674Y57598D01* +X56614Y57574D01* +X56549Y57552D01* +X56546D01* +X56540Y57549D01* +X56529Y57546D01* +X56516Y57544D01* +X56499Y57541D01* +X56480Y57535D01* +X56456Y57530D01* +X56428Y57527D01* +X56398Y57522D01* +X56366Y57516D01* +X56292Y57508D01* +X56210Y57503D01* +X56117Y57500D01* +X56068D01* +X56043Y57503D01* +X55981D01* +X55945Y57505D01* +X55866Y57511D01* +X55782Y57519D01* +X55697Y57530D01* +X55615Y57546D01* +X55612D01* +X55607Y57549D01* +X55596Y57552D01* +X55579Y57555D01* +X55563Y57557D01* +X55541Y57563D01* +X55495Y57576D01* +X55440Y57590D01* +X55383Y57607D01* +X55328Y57626D01* +X55276Y57647D01* +Y58166D01* +X55339D01* +X55342Y58163D01* +X55350Y58158D01* +X55361Y58153D01* +X55388Y58136D01* +X55429Y58117D01* +X55476Y58092D01* +X55530Y58071D01* +X55593Y58046D01* +X55661Y58021D01* +X55664D01* +X55669Y58019D01* +X55680Y58016D01* +X55694Y58013D01* +X55711Y58008D01* +X55730Y58002D01* +X55776Y57994D01* +X55828Y57983D01* +X55885Y57972D01* +X55945Y57967D01* +X56005Y57964D01* +X56041D01* +X56063Y57967D01* +X56093D01* +X56125Y57970D01* +X56164Y57972D01* +X56202Y57978D01* +X56207D01* +X56221Y57981D01* +X56240Y57986D01* +X56265Y57991D01* +X56295Y58000D01* +X56325Y58011D01* +X56355Y58027D01* +X56385Y58043D01* +X56388Y58046D01* +X56396Y58051D01* +X56404Y58060D01* +X56418Y58071D01* +X56448Y58098D01* +X56478Y58136D01* +X56480Y58139D01* +X56483Y58147D01* +X56489Y58161D01* +X56497Y58177D01* +X56502Y58202D01* +X56508Y58229D01* +X56510Y58262D01* +X56513Y58300D01* +Y58305D01* +Y58316D01* +X56510Y58335D01* +X56508Y58360D01* +X56502Y58385D01* +X56491Y58412D01* +X56480Y58436D01* +X56464Y58458D01* +X56461Y58461D01* +X56456Y58466D01* +X56445Y58477D01* +X56431Y58491D01* +X56415Y58505D01* +X56393Y58518D01* +X56368Y58529D01* +X56341Y58540D01* +X56338D01* +X56327Y58543D01* +X56311Y58548D01* +X56289Y58554D01* +X56259Y58556D01* +X56229Y58562D01* +X56191Y58565D01* +X56153Y58567D01* +X56115D01* +X56087Y58570D01* +X55825D01* +Y58991D01* +X56033D01* +X56065Y58993D01* +X56139D01* +X56175Y58996D01* +X56180D01* +X56191Y58999D01* +X56207Y59001D01* +X56232Y59004D01* +X56257Y59010D01* +X56284Y59015D01* +X56338Y59034D01* +X56341D01* +X56349Y59040D01* +X56363Y59045D01* +X56377Y59053D01* +X56412Y59078D01* +X56428Y59094D01* +X56442Y59111D01* +X56445Y59113D01* +X56448Y59122D01* +X56453Y59132D01* +X56461Y59149D01* +X56467Y59171D01* +X56472Y59195D01* +X56475Y59225D01* +X56478Y59258D01* +Y59261D01* +Y59269D01* +X56475Y59283D01* +X56472Y59299D01* +X56461Y59335D01* +X56453Y59354D01* +X56439Y59370D01* +X56437Y59373D01* +X56434Y59378D01* +X56426Y59386D01* +X56415Y59395D01* +X56388Y59416D01* +X56349Y59438D01* +X56347Y59441D01* +X56338Y59444D01* +X56325Y59449D01* +X56308Y59455D01* +X56287Y59460D01* +X56262Y59468D01* +X56232Y59474D01* +X56202Y59477D01* +X56199D01* +X56188Y59479D01* +X56172D01* +X56153Y59482D01* +X56131Y59485D01* +X56106D01* +X56060Y59487D01* +X56035D01* +X56022Y59485D01* +X56005D01* +X55964Y59482D01* +X55915Y59474D01* +X55861Y59466D01* +X55801Y59452D01* +X55738Y59436D01* +X55735D01* +X55730Y59433D01* +X55721Y59430D01* +X55708Y59427D01* +X55691Y59422D01* +X55675Y59416D01* +X55631Y59400D01* +X55579Y59378D01* +X55522Y59356D01* +X55462Y59326D01* +X55402Y59294D01* +X55345D01* +Y59801D01* +X55347D01* +X55350Y59804D01* +X55358Y59807D01* +X55369Y59810D01* +X55380Y59815D01* +X55396Y59820D01* +X55437Y59834D01* +X55487Y59848D01* +X55547Y59867D01* +X55615Y59883D01* +X55694Y59902D01* +X55697D01* +X55705Y59905D01* +X55716Y59908D01* +X55732Y59911D01* +X55754Y59913D01* +X55776Y59919D01* +X55803Y59921D01* +X55833Y59927D01* +X55902Y59935D01* +X55978Y59943D01* +X56060Y59949D01* +X56145Y59952D01* +X56202D01* +X56224Y59949D01* +D02* +G37* +G36* +X56584Y54107D02* +X56614D01* +X56644Y54105D01* +X56712Y54099D01* +X56792Y54091D01* +X56874Y54080D01* +X56958Y54064D01* +X56961D01* +X56969Y54061D01* +X56980Y54058D01* +X56996Y54055D01* +X57015Y54053D01* +X57040Y54047D01* +X57065Y54039D01* +X57095Y54034D01* +X57155Y54017D01* +X57223Y53998D01* +X57288Y53976D01* +X57354Y53952D01* +Y53411D01* +X57286D01* +X57283Y53417D01* +X57275Y53422D01* +X57264Y53430D01* +X57250Y53438D01* +X57234Y53449D01* +X57193Y53477D01* +X57141Y53507D01* +X57081Y53537D01* +X57013Y53570D01* +X56939Y53600D01* +X56936D01* +X56931Y53602D01* +X56920Y53608D01* +X56903Y53610D01* +X56884Y53619D01* +X56862Y53624D01* +X56838Y53629D01* +X56811Y53638D01* +X56745Y53651D01* +X56674Y53665D01* +X56598Y53673D01* +X56519Y53676D01* +X56472D01* +X56448Y53673D01* +X56423Y53671D01* +X56366Y53665D01* +X56363D01* +X56352Y53662D01* +X56338Y53660D01* +X56319Y53657D01* +X56297Y53651D01* +X56276Y53643D01* +X56224Y53627D01* +X56221D01* +X56213Y53621D01* +X56202Y53616D01* +X56188Y53608D01* +X56153Y53586D01* +X56117Y53553D01* +X56115Y53550D01* +X56112Y53545D01* +X56104Y53534D01* +X56095Y53523D01* +X56087Y53507D01* +X56082Y53488D01* +X56076Y53466D01* +X56074Y53444D01* +Y53441D01* +Y53427D01* +X56076Y53411D01* +X56082Y53392D01* +X56090Y53367D01* +X56104Y53346D01* +X56120Y53321D01* +X56145Y53302D01* +X56147Y53299D01* +X56158Y53294D01* +X56177Y53286D01* +X56205Y53272D01* +X56240Y53258D01* +X56287Y53245D01* +X56314Y53236D01* +X56344Y53228D01* +X56377Y53220D01* +X56412Y53212D01* +X56418D01* +X56434Y53206D01* +X56458Y53201D01* +X56491Y53196D01* +X56529Y53187D01* +X56570Y53176D01* +X56660Y53157D01* +X56666D01* +X56682Y53152D01* +X56707Y53146D01* +X56737Y53141D01* +X56775Y53130D01* +X56819Y53119D01* +X56868Y53105D01* +X56917Y53089D01* +X56920D01* +X56928Y53086D01* +X56942Y53081D01* +X56961Y53073D01* +X56983Y53064D01* +X57010Y53053D01* +X57067Y53026D01* +X57133Y52991D01* +X57198Y52950D01* +X57261Y52903D01* +X57291Y52876D01* +X57316Y52849D01* +X57318Y52846D01* +X57321Y52841D01* +X57327Y52832D01* +X57338Y52821D01* +X57346Y52805D01* +X57357Y52789D01* +X57370Y52767D01* +X57381Y52742D01* +X57395Y52715D01* +X57406Y52685D01* +X57428Y52617D01* +X57441Y52540D01* +X57444Y52497D01* +X57447Y52453D01* +Y52450D01* +Y52437D01* +X57444Y52420D01* +X57441Y52396D01* +X57439Y52365D01* +X57430Y52333D01* +X57422Y52295D01* +X57411Y52254D01* +X57395Y52207D01* +X57376Y52163D01* +X57351Y52114D01* +X57321Y52068D01* +X57288Y52022D01* +X57250Y51975D01* +X57204Y51932D01* +X57152Y51888D01* +X57149Y51885D01* +X57138Y51880D01* +X57122Y51869D01* +X57097Y51855D01* +X57067Y51839D01* +X57032Y51819D01* +X56991Y51800D01* +X56942Y51781D01* +X56887Y51759D01* +X56827Y51740D01* +X56761Y51721D01* +X56688Y51705D01* +X56611Y51691D01* +X56529Y51680D01* +X56442Y51675D01* +X56349Y51672D01* +X56300D01* +X56276Y51675D01* +X56246D01* +X56213Y51678D01* +X56177D01* +X56095Y51683D01* +X56011Y51694D01* +X55923Y51705D01* +X55839Y51721D01* +X55836D01* +X55831Y51724D01* +X55817Y51727D01* +X55803Y51729D01* +X55784Y51735D01* +X55760Y51743D01* +X55735Y51749D01* +X55708Y51757D01* +X55645Y51776D01* +X55577Y51798D01* +X55506Y51825D01* +X55435Y51852D01* +Y52417D01* +X55500D01* +X55503Y52415D01* +X55509Y52412D01* +X55519Y52404D01* +X55533Y52393D01* +X55552Y52379D01* +X55571Y52365D01* +X55596Y52349D01* +X55623Y52333D01* +X55686Y52295D01* +X55757Y52256D01* +X55836Y52218D01* +X55921Y52185D01* +X55923D01* +X55932Y52183D01* +X55942Y52177D01* +X55962Y52174D01* +X55981Y52166D01* +X56005Y52161D01* +X56033Y52153D01* +X56063Y52147D01* +X56131Y52131D01* +X56207Y52120D01* +X56287Y52109D01* +X56368Y52106D01* +X56407D01* +X56428Y52109D01* +X56453D01* +X56480Y52112D01* +X56513Y52114D01* +X56516D01* +X56529Y52117D01* +X56546D01* +X56565Y52123D01* +X56614Y52131D01* +X56639Y52139D01* +X56660Y52147D01* +X56663D01* +X56671Y52153D01* +X56685Y52158D01* +X56701Y52166D01* +X56740Y52188D01* +X56775Y52215D01* +X56778Y52218D01* +X56783Y52224D01* +X56789Y52235D01* +X56800Y52248D01* +X56808Y52267D01* +X56813Y52289D01* +X56819Y52314D01* +X56822Y52344D01* +Y52346D01* +Y52357D01* +X56819Y52371D01* +X56813Y52390D01* +X56805Y52409D01* +X56792Y52434D01* +X56775Y52456D01* +X56753Y52478D01* +X56751Y52480D01* +X56742Y52486D01* +X56726Y52497D01* +X56704Y52510D01* +X56677Y52524D01* +X56644Y52538D01* +X56606Y52551D01* +X56562Y52562D01* +X56559D01* +X56557Y52565D01* +X56549D01* +X56540Y52568D01* +X56513Y52573D01* +X56478Y52581D01* +X56437Y52592D01* +X56388Y52600D01* +X56336Y52611D01* +X56281Y52622D01* +X56276D01* +X56267Y52625D01* +X56257Y52628D01* +X56226Y52633D01* +X56191Y52641D01* +X56150Y52652D01* +X56104Y52663D01* +X56005Y52693D01* +X56003D01* +X55992Y52699D01* +X55978Y52704D01* +X55956Y52710D01* +X55932Y52720D01* +X55904Y52731D01* +X55874Y52745D01* +X55841Y52761D01* +X55770Y52800D01* +X55700Y52843D01* +X55634Y52895D01* +X55604Y52922D01* +X55577Y52952D01* +Y52955D01* +X55571Y52961D01* +X55566Y52969D01* +X55558Y52982D01* +X55547Y52999D01* +X55536Y53018D01* +X55525Y53040D01* +X55514Y53067D01* +X55500Y53094D01* +X55489Y53127D01* +X55467Y53196D01* +X55454Y53277D01* +X55451Y53321D01* +X55448Y53365D01* +Y53367D01* +Y53378D01* +X55451Y53398D01* +X55454Y53419D01* +X55457Y53447D01* +X55465Y53479D01* +X55473Y53515D01* +X55487Y53556D01* +X55500Y53597D01* +X55519Y53640D01* +X55544Y53684D01* +X55574Y53728D01* +X55607Y53774D01* +X55645Y53818D01* +X55691Y53859D01* +X55743Y53900D01* +X55746Y53903D01* +X55757Y53908D01* +X55773Y53919D01* +X55798Y53933D01* +X55825Y53949D01* +X55861Y53965D01* +X55902Y53984D01* +X55948Y54006D01* +X56000Y54025D01* +X56057Y54045D01* +X56120Y54061D01* +X56186Y54077D01* +X56259Y54091D01* +X56336Y54102D01* +X56415Y54107D01* +X56499Y54110D01* +X56559D01* +X56584Y54107D01* +D02* +G37* +G36* +X59017Y54110D02* +X59057Y54107D01* +X59101Y54105D01* +X59194Y54094D01* +X59199D01* +X59213Y54091D01* +X59238Y54088D01* +X59268Y54083D01* +X59300Y54075D01* +X59339Y54069D01* +X59415Y54050D01* +X59421D01* +X59434Y54045D01* +X59453Y54039D01* +X59478Y54031D01* +X59508Y54020D01* +X59541Y54009D01* +X59606Y53982D01* +X59609Y53979D01* +X59620Y53976D01* +X59636Y53968D01* +X59658Y53960D01* +X59683Y53949D01* +X59707Y53938D01* +X59759Y53916D01* +Y53346D01* +X59688D01* +X59685Y53348D01* +X59680Y53351D01* +X59672Y53359D01* +X59658Y53370D01* +X59642Y53384D01* +X59623Y53398D01* +X59601Y53414D01* +X59576Y53433D01* +X59573Y53436D01* +X59565Y53441D01* +X59552Y53452D01* +X59532Y53466D01* +X59511Y53482D01* +X59483Y53499D01* +X59456Y53518D01* +X59423Y53537D01* +X59421Y53539D01* +X59410Y53545D01* +X59390Y53553D01* +X59369Y53567D01* +X59341Y53580D01* +X59309Y53594D01* +X59273Y53608D01* +X59235Y53621D01* +X59229Y53624D01* +X59219Y53627D01* +X59197Y53632D01* +X59169Y53640D01* +X59137Y53646D01* +X59101Y53651D01* +X59060Y53654D01* +X59019Y53657D01* +X58997D01* +X58973Y53654D01* +X58940Y53651D01* +X58905Y53646D01* +X58864Y53640D01* +X58820Y53629D01* +X58776Y53616D01* +X58771Y53613D01* +X58757Y53608D01* +X58735Y53597D01* +X58708Y53583D01* +X58675Y53564D01* +X58637Y53542D01* +X58601Y53515D01* +X58563Y53482D01* +X58561Y53479D01* +X58547Y53466D01* +X58531Y53447D01* +X58509Y53419D01* +X58487Y53384D01* +X58460Y53343D01* +X58435Y53297D01* +X58413Y53242D01* +Y53239D01* +X58411Y53236D01* +X58408Y53228D01* +X58405Y53215D01* +X58399Y53201D01* +X58394Y53184D01* +X58386Y53141D01* +X58375Y53089D01* +X58364Y53029D01* +X58359Y52961D01* +X58356Y52884D01* +Y52881D01* +Y52873D01* +Y52862D01* +Y52849D01* +X58359Y52830D01* +Y52808D01* +X58364Y52756D01* +X58369Y52696D01* +X58380Y52636D01* +X58397Y52573D01* +X58416Y52516D01* +Y52513D01* +X58419Y52510D01* +X58421Y52502D01* +X58427Y52491D01* +X58441Y52464D01* +X58460Y52431D01* +X58481Y52393D01* +X58509Y52355D01* +X58539Y52316D01* +X58574Y52281D01* +X58580Y52278D01* +X58591Y52267D01* +X58610Y52251D01* +X58637Y52235D01* +X58667Y52213D01* +X58705Y52194D01* +X58744Y52174D01* +X58787Y52158D01* +X58790D01* +X58793Y52155D01* +X58809Y52153D01* +X58831Y52147D01* +X58861Y52142D01* +X58896Y52134D01* +X58937Y52128D01* +X58978Y52125D01* +X59022Y52123D01* +X59041D01* +X59063Y52125D01* +X59090Y52128D01* +X59126Y52131D01* +X59161Y52136D01* +X59199Y52144D01* +X59240Y52155D01* +X59246Y52158D01* +X59259Y52161D01* +X59279Y52169D01* +X59306Y52180D01* +X59339Y52191D01* +X59371Y52207D01* +X59442Y52243D01* +X59445Y52245D01* +X59456Y52251D01* +X59470Y52259D01* +X59489Y52273D01* +X59511Y52286D01* +X59535Y52303D01* +X59584Y52341D01* +X59587Y52344D01* +X59595Y52349D01* +X59609Y52360D01* +X59623Y52371D01* +X59658Y52401D01* +X59694Y52431D01* +X59759D01* +Y51869D01* +X59756Y51866D01* +X59743Y51860D01* +X59726Y51855D01* +X59705Y51844D01* +X59677Y51833D01* +X59650Y51819D01* +X59587Y51792D01* +X59584Y51789D01* +X59573Y51787D01* +X59557Y51781D01* +X59538Y51773D01* +X59511Y51762D01* +X59483Y51754D01* +X59421Y51732D01* +X59415D01* +X59401Y51727D01* +X59377Y51721D01* +X59350Y51716D01* +X59317Y51708D01* +X59279Y51699D01* +X59202Y51686D01* +X59197D01* +X59183Y51683D01* +X59161Y51680D01* +X59128Y51678D01* +X59090Y51672D01* +X59041Y51669D01* +X58987Y51667D01* +X58880D01* +X58855Y51669D01* +X58828Y51672D01* +X58798D01* +X58765Y51678D01* +X58692Y51686D01* +X58610Y51699D01* +X58525Y51718D01* +X58441Y51743D01* +X58438D01* +X58430Y51746D01* +X58419Y51751D01* +X58402Y51757D01* +X58383Y51765D01* +X58361Y51776D01* +X58309Y51800D01* +X58249Y51833D01* +X58187Y51871D01* +X58121Y51918D01* +X58058Y51972D01* +X58056Y51975D01* +X58050Y51981D01* +X58042Y51989D01* +X58031Y52000D01* +X58020Y52016D01* +X58004Y52033D01* +X57987Y52054D01* +X57968Y52079D01* +X57930Y52136D01* +X57889Y52202D01* +X57848Y52276D01* +X57813Y52357D01* +Y52360D01* +X57810Y52368D01* +X57804Y52382D01* +X57799Y52398D01* +X57793Y52420D01* +X57785Y52445D01* +X57777Y52475D01* +X57769Y52510D01* +X57761Y52546D01* +X57753Y52587D01* +X57744Y52630D01* +X57739Y52677D01* +X57728Y52778D01* +X57725Y52887D01* +Y52890D01* +Y52901D01* +Y52914D01* +X57728Y52933D01* +Y52958D01* +X57731Y52988D01* +X57733Y53018D01* +X57736Y53053D01* +X57744Y53133D01* +X57761Y53217D01* +X57780Y53305D01* +X57807Y53392D01* +Y53395D01* +X57810Y53403D01* +X57815Y53414D01* +X57823Y53430D01* +X57832Y53449D01* +X57843Y53474D01* +X57854Y53499D01* +X57870Y53528D01* +X57903Y53589D01* +X57946Y53654D01* +X57995Y53722D01* +X58050Y53785D01* +X58053Y53788D01* +X58058Y53793D01* +X58066Y53799D01* +X58077Y53810D01* +X58094Y53823D01* +X58110Y53840D01* +X58132Y53856D01* +X58154Y53873D01* +X58211Y53913D01* +X58274Y53952D01* +X58348Y53990D01* +X58430Y54025D01* +X58432D01* +X58441Y54028D01* +X58451Y54034D01* +X58470Y54039D01* +X58492Y54045D01* +X58517Y54053D01* +X58544Y54061D01* +X58577Y54069D01* +X58613Y54077D01* +X58651Y54085D01* +X58735Y54099D01* +X58828Y54110D01* +X58926Y54113D01* +X58978D01* +X59017Y54110D01* +D02* +G37* +G36* +X60810Y52172D02* +X61899D01* +Y51716D01* +X60204D01* +Y54069D01* +X60810D01* +Y52172D01* +D02* +G37* +G36* +X55762Y48268D02* +X55792D01* +X55822Y48266D01* +X55891Y48260D01* +X55970Y48252D01* +X56052Y48241D01* +X56136Y48225D01* +X56139D01* +X56147Y48222D01* +X56158Y48219D01* +X56175Y48217D01* +X56194Y48214D01* +X56218Y48208D01* +X56243Y48200D01* +X56273Y48195D01* +X56333Y48178D01* +X56401Y48159D01* +X56467Y48138D01* +X56532Y48113D01* +Y47572D01* +X56464D01* +X56461Y47578D01* +X56453Y47583D01* +X56442Y47591D01* +X56428Y47600D01* +X56412Y47611D01* +X56371Y47638D01* +X56319Y47668D01* +X56259Y47698D01* +X56191Y47731D01* +X56117Y47761D01* +X56115D01* +X56109Y47763D01* +X56098Y47769D01* +X56082Y47772D01* +X56063Y47780D01* +X56041Y47785D01* +X56016Y47791D01* +X55989Y47799D01* +X55923Y47813D01* +X55852Y47826D01* +X55776Y47834D01* +X55697Y47837D01* +X55650D01* +X55626Y47834D01* +X55601Y47832D01* +X55544Y47826D01* +X55541D01* +X55530Y47824D01* +X55517Y47821D01* +X55497Y47818D01* +X55476Y47813D01* +X55454Y47804D01* +X55402Y47788D01* +X55399D01* +X55391Y47782D01* +X55380Y47777D01* +X55366Y47769D01* +X55331Y47747D01* +X55295Y47714D01* +X55293Y47712D01* +X55290Y47706D01* +X55282Y47695D01* +X55274Y47684D01* +X55265Y47668D01* +X55260Y47649D01* +X55255Y47627D01* +X55252Y47605D01* +Y47602D01* +Y47589D01* +X55255Y47572D01* +X55260Y47553D01* +X55268Y47529D01* +X55282Y47507D01* +X55298Y47482D01* +X55323Y47463D01* +X55326Y47460D01* +X55336Y47455D01* +X55356Y47447D01* +X55383Y47433D01* +X55418Y47420D01* +X55465Y47406D01* +X55492Y47398D01* +X55522Y47389D01* +X55555Y47381D01* +X55590Y47373D01* +X55596D01* +X55612Y47368D01* +X55637Y47362D01* +X55669Y47357D01* +X55708Y47348D01* +X55749Y47338D01* +X55839Y47319D01* +X55844D01* +X55861Y47313D01* +X55885Y47308D01* +X55915Y47302D01* +X55953Y47291D01* +X55997Y47280D01* +X56046Y47267D01* +X56095Y47250D01* +X56098D01* +X56106Y47247D01* +X56120Y47242D01* +X56139Y47234D01* +X56161Y47226D01* +X56188Y47215D01* +X56246Y47187D01* +X56311Y47152D01* +X56377Y47111D01* +X56439Y47065D01* +X56469Y47037D01* +X56494Y47010D01* +X56497Y47007D01* +X56499Y47002D01* +X56505Y46994D01* +X56516Y46983D01* +X56524Y46966D01* +X56535Y46950D01* +X56549Y46928D01* +X56559Y46903D01* +X56573Y46876D01* +X56584Y46846D01* +X56606Y46778D01* +X56620Y46701D01* +X56622Y46658D01* +X56625Y46614D01* +Y46611D01* +Y46598D01* +X56622Y46581D01* +X56620Y46557D01* +X56617Y46527D01* +X56609Y46494D01* +X56600Y46456D01* +X56590Y46415D01* +X56573Y46368D01* +X56554Y46325D01* +X56529Y46276D01* +X56499Y46229D01* +X56467Y46183D01* +X56428Y46136D01* +X56382Y46093D01* +X56330Y46049D01* +X56327Y46046D01* +X56317Y46041D01* +X56300Y46030D01* +X56276Y46016D01* +X56246Y46000D01* +X56210Y45981D01* +X56169Y45962D01* +X56120Y45943D01* +X56065Y45921D01* +X56005Y45902D01* +X55940Y45882D01* +X55866Y45866D01* +X55790Y45852D01* +X55708Y45842D01* +X55620Y45836D01* +X55528Y45833D01* +X55478D01* +X55454Y45836D01* +X55424D01* +X55391Y45839D01* +X55356D01* +X55274Y45844D01* +X55189Y45855D01* +X55102Y45866D01* +X55017Y45882D01* +X55014D01* +X55009Y45885D01* +X54995Y45888D01* +X54982Y45891D01* +X54962Y45896D01* +X54938Y45904D01* +X54913Y45910D01* +X54886Y45918D01* +X54823Y45937D01* +X54755Y45959D01* +X54684Y45986D01* +X54613Y46014D01* +Y46579D01* +X54678D01* +X54681Y46576D01* +X54687Y46573D01* +X54698Y46565D01* +X54711Y46554D01* +X54730Y46540D01* +X54750Y46527D01* +X54774Y46510D01* +X54801Y46494D01* +X54864Y46456D01* +X54935Y46417D01* +X55014Y46379D01* +X55099Y46347D01* +X55102D01* +X55110Y46344D01* +X55121Y46338D01* +X55140Y46336D01* +X55159Y46327D01* +X55184Y46322D01* +X55211Y46314D01* +X55241Y46308D01* +X55309Y46292D01* +X55386Y46281D01* +X55465Y46270D01* +X55547Y46267D01* +X55585D01* +X55607Y46270D01* +X55631D01* +X55659Y46273D01* +X55691Y46276D01* +X55694D01* +X55708Y46278D01* +X55724D01* +X55743Y46284D01* +X55792Y46292D01* +X55817Y46300D01* +X55839Y46308D01* +X55841D01* +X55850Y46314D01* +X55863Y46319D01* +X55880Y46327D01* +X55918Y46349D01* +X55953Y46377D01* +X55956Y46379D01* +X55962Y46385D01* +X55967Y46396D01* +X55978Y46409D01* +X55986Y46428D01* +X55992Y46450D01* +X55997Y46475D01* +X56000Y46505D01* +Y46508D01* +Y46519D01* +X55997Y46532D01* +X55992Y46551D01* +X55984Y46570D01* +X55970Y46595D01* +X55953Y46617D01* +X55932Y46639D01* +X55929Y46641D01* +X55921Y46647D01* +X55904Y46658D01* +X55883Y46671D01* +X55855Y46685D01* +X55822Y46699D01* +X55784Y46712D01* +X55740Y46723D01* +X55738D01* +X55735Y46726D01* +X55727D01* +X55719Y46729D01* +X55691Y46734D01* +X55656Y46742D01* +X55615Y46753D01* +X55566Y46762D01* +X55514Y46772D01* +X55459Y46783D01* +X55454D01* +X55446Y46786D01* +X55435Y46789D01* +X55405Y46794D01* +X55369Y46802D01* +X55328Y46813D01* +X55282Y46824D01* +X55184Y46854D01* +X55181D01* +X55170Y46860D01* +X55156Y46865D01* +X55134Y46871D01* +X55110Y46882D01* +X55083Y46893D01* +X55053Y46906D01* +X55020Y46923D01* +X54949Y46961D01* +X54878Y47005D01* +X54812Y47056D01* +X54782Y47084D01* +X54755Y47114D01* +Y47116D01* +X54750Y47122D01* +X54744Y47130D01* +X54736Y47144D01* +X54725Y47160D01* +X54714Y47179D01* +X54703Y47201D01* +X54692Y47228D01* +X54678Y47256D01* +X54668Y47288D01* +X54646Y47357D01* +X54632Y47439D01* +X54629Y47482D01* +X54627Y47526D01* +Y47529D01* +Y47540D01* +X54629Y47559D01* +X54632Y47581D01* +X54635Y47608D01* +X54643Y47641D01* +X54651Y47676D01* +X54665Y47717D01* +X54678Y47758D01* +X54698Y47802D01* +X54722Y47845D01* +X54752Y47889D01* +X54785Y47935D01* +X54823Y47979D01* +X54870Y48020D01* +X54922Y48061D01* +X54924Y48064D01* +X54935Y48069D01* +X54952Y48080D01* +X54976Y48094D01* +X55003Y48110D01* +X55039Y48127D01* +X55080Y48146D01* +X55126Y48167D01* +X55178Y48187D01* +X55235Y48206D01* +X55298Y48222D01* +X55364Y48239D01* +X55437Y48252D01* +X55514Y48263D01* +X55593Y48268D01* +X55678Y48271D01* +X55738D01* +X55762Y48268D01* +D02* +G37* +G36* +X61899Y45877D02* +X61272D01* +X61108Y46352D01* +X60239D01* +X60076Y45877D01* +X59464D01* +X60332Y48230D01* +X61028D01* +X61899Y45877D01* +D02* +G37* +G36* +X57965Y48228D02* +X58025D01* +X58061Y48225D01* +X58138Y48219D01* +X58222Y48208D01* +X58304Y48197D01* +X58386Y48181D01* +X58389D01* +X58394Y48178D01* +X58405Y48176D01* +X58421Y48173D01* +X58438Y48167D01* +X58460Y48162D01* +X58509Y48146D01* +X58563Y48127D01* +X58623Y48102D01* +X58684Y48075D01* +X58738Y48045D01* +X58741Y48042D01* +X58749Y48036D01* +X58763Y48028D01* +X58779Y48017D01* +X58798Y48001D01* +X58823Y47985D01* +X58850Y47963D01* +X58877Y47938D01* +X58907Y47911D01* +X58937Y47881D01* +X58970Y47848D01* +X59003Y47813D01* +X59063Y47733D01* +X59120Y47643D01* +X59123Y47641D01* +X59126Y47632D01* +X59134Y47619D01* +X59142Y47600D01* +X59153Y47575D01* +X59164Y47545D01* +X59178Y47512D01* +X59191Y47474D01* +X59205Y47433D01* +X59219Y47389D01* +X59229Y47340D01* +X59240Y47288D01* +X59249Y47231D01* +X59257Y47174D01* +X59259Y47114D01* +X59262Y47051D01* +Y47048D01* +Y47037D01* +Y47018D01* +X59259Y46996D01* +X59257Y46966D01* +X59254Y46933D01* +X59249Y46895D01* +X59243Y46854D01* +X59235Y46808D01* +X59227Y46762D01* +X59199Y46663D01* +X59183Y46611D01* +X59161Y46562D01* +X59139Y46510D01* +X59112Y46461D01* +X59109Y46459D01* +X59107Y46450D01* +X59096Y46437D01* +X59085Y46417D01* +X59071Y46396D01* +X59052Y46371D01* +X59033Y46344D01* +X59008Y46314D01* +X58954Y46251D01* +X58888Y46183D01* +X58815Y46120D01* +X58773Y46090D01* +X58733Y46063D01* +X58730D01* +X58724Y46057D01* +X58716Y46052D01* +X58703Y46046D01* +X58686Y46038D01* +X58667Y46027D01* +X58645Y46016D01* +X58621Y46005D01* +X58563Y45981D01* +X58500Y45959D01* +X58430Y45937D01* +X58353Y45918D01* +X58350D01* +X58345Y45915D01* +X58331D01* +X58318Y45913D01* +X58296Y45910D01* +X58274Y45904D01* +X58247Y45902D01* +X58217Y45899D01* +X58181Y45893D01* +X58146Y45891D01* +X58105Y45888D01* +X58061Y45882D01* +X57968Y45880D01* +X57867Y45877D01* +X57040D01* +Y48230D01* +X57941D01* +X57965Y48228D01* +D02* +G37* +G36* +X55560Y42443D02* +X55588D01* +X55618Y42441D01* +X55686Y42435D01* +X55760Y42427D01* +X55839Y42416D01* +X55918Y42402D01* +X55921D01* +X55929Y42400D01* +X55940Y42397D01* +X55956Y42394D01* +X55975Y42389D01* +X55997Y42383D01* +X56024Y42375D01* +X56055Y42367D01* +X56090Y42356D01* +X56125Y42345D01* +X56205Y42315D01* +X56292Y42280D01* +X56388Y42236D01* +Y41687D01* +X56319D01* +X56317Y41690D01* +X56311Y41693D01* +X56300Y41701D01* +X56287Y41712D01* +X56267Y41725D01* +X56246Y41739D01* +X56218Y41758D01* +X56188Y41780D01* +X56186Y41783D01* +X56175Y41791D01* +X56158Y41802D01* +X56136Y41815D01* +X56112Y41832D01* +X56085Y41848D01* +X56024Y41884D01* +X56019Y41886D01* +X56008Y41892D01* +X55989Y41900D01* +X55962Y41914D01* +X55932Y41927D01* +X55893Y41941D01* +X55852Y41955D01* +X55809Y41968D01* +X55803Y41971D01* +X55787Y41974D01* +X55762Y41979D01* +X55732Y41987D01* +X55694Y41996D01* +X55648Y42001D01* +X55601Y42004D01* +X55549Y42006D01* +X55522D01* +X55492Y42004D01* +X55454Y42001D01* +X55407Y41996D01* +X55358Y41985D01* +X55306Y41974D01* +X55257Y41957D01* +X55255D01* +X55252Y41955D01* +X55235Y41949D01* +X55211Y41938D01* +X55178Y41922D01* +X55143Y41903D01* +X55104Y41878D01* +X55063Y41848D01* +X55023Y41813D01* +X55017Y41807D01* +X55006Y41796D01* +X54990Y41774D01* +X54965Y41747D01* +X54941Y41712D01* +X54916Y41671D01* +X54892Y41622D01* +X54867Y41570D01* +Y41567D01* +X54864Y41564D01* +X54861Y41556D01* +X54859Y41545D01* +X54853Y41532D01* +X54848Y41515D01* +X54840Y41474D01* +X54829Y41425D01* +X54818Y41368D01* +X54812Y41305D01* +X54810Y41237D01* +Y41231D01* +Y41220D01* +X54812Y41199D01* +Y41174D01* +X54815Y41141D01* +X54821Y41103D01* +X54826Y41062D01* +X54834Y41016D01* +X54845Y40969D01* +X54859Y40920D01* +X54875Y40871D01* +X54897Y40819D01* +X54919Y40770D01* +X54946Y40723D01* +X54979Y40680D01* +X55014Y40639D01* +X55017Y40636D01* +X55025Y40631D01* +X55036Y40620D01* +X55053Y40606D01* +X55074Y40592D01* +X55102Y40573D01* +X55132Y40557D01* +X55170Y40538D01* +X55208Y40519D01* +X55255Y40500D01* +X55304Y40481D01* +X55361Y40467D01* +X55418Y40453D01* +X55484Y40442D01* +X55552Y40437D01* +X55626Y40434D01* +X55716D01* +X55727Y40437D01* +X55751D01* +X55779Y40440D01* +Y40898D01* +X55312D01* +Y41343D01* +X56396D01* +Y40183D01* +X56393D01* +X56388Y40180D01* +X56379Y40177D01* +X56366Y40172D01* +X56352Y40167D01* +X56333Y40161D01* +X56308Y40153D01* +X56284Y40145D01* +X56257Y40134D01* +X56224Y40126D01* +X56188Y40115D01* +X56153Y40104D01* +X56112Y40093D01* +X56068Y40082D01* +X55975Y40060D01* +X55973D01* +X55964Y40057D01* +X55951Y40055D01* +X55932Y40052D01* +X55907Y40046D01* +X55880Y40041D01* +X55847Y40036D01* +X55814Y40030D01* +X55776Y40025D01* +X55735Y40019D01* +X55648Y40008D01* +X55552Y40003D01* +X55457Y40000D01* +X55416D01* +X55399Y40003D01* +X55358Y40005D01* +X55306Y40011D01* +X55249Y40016D01* +X55184Y40027D01* +X55115Y40041D01* +X55039Y40057D01* +X54962Y40079D01* +X54886Y40106D01* +X54807Y40137D01* +X54730Y40175D01* +X54654Y40218D01* +X54583Y40268D01* +X54518Y40325D01* +X54515Y40328D01* +X54504Y40341D01* +X54487Y40358D01* +X54466Y40385D01* +X54438Y40418D01* +X54411Y40459D01* +X54381Y40505D01* +X54348Y40560D01* +X54315Y40620D01* +X54285Y40688D01* +X54258Y40762D01* +X54231Y40841D01* +X54209Y40928D01* +X54193Y41021D01* +X54182Y41122D01* +X54179Y41226D01* +Y41229D01* +Y41231D01* +Y41239D01* +Y41250D01* +X54182Y41278D01* +X54184Y41316D01* +X54190Y41362D01* +X54198Y41417D01* +X54206Y41477D01* +X54223Y41543D01* +X54239Y41611D01* +X54264Y41682D01* +X54291Y41755D01* +X54324Y41832D01* +X54362Y41903D01* +X54408Y41976D01* +X54460Y42045D01* +X54520Y42110D01* +X54526Y42113D01* +X54537Y42124D01* +X54556Y42140D01* +X54583Y42162D01* +X54619Y42189D01* +X54662Y42217D01* +X54711Y42247D01* +X54769Y42280D01* +X54834Y42310D01* +X54905Y42340D01* +X54984Y42370D01* +X55069Y42394D01* +X55162Y42416D01* +X55260Y42432D01* +X55364Y42443D01* +X55476Y42446D01* +X55536D01* +X55560Y42443D01* +D02* +G37* +G36* +X59077Y40049D02* +X58490D01* +X57496Y41663D01* +Y40049D01* +X56939D01* +Y42402D01* +X57662D01* +X58520Y41054D01* +Y42402D01* +X59077D01* +Y40049D01* +D02* +G37* +G36* +X60603Y42400D02* +X60663D01* +X60698Y42397D01* +X60775Y42391D01* +X60859Y42381D01* +X60941Y42370D01* +X61023Y42353D01* +X61026D01* +X61031Y42351D01* +X61042Y42348D01* +X61059Y42345D01* +X61075Y42340D01* +X61097Y42334D01* +X61146Y42318D01* +X61200Y42299D01* +X61261Y42274D01* +X61321Y42247D01* +X61375Y42217D01* +X61378Y42214D01* +X61386Y42209D01* +X61400Y42200D01* +X61416Y42189D01* +X61435Y42173D01* +X61460Y42157D01* +X61487Y42135D01* +X61515Y42110D01* +X61545Y42083D01* +X61575Y42053D01* +X61607Y42020D01* +X61640Y41985D01* +X61700Y41906D01* +X61757Y41815D01* +X61760Y41813D01* +X61763Y41805D01* +X61771Y41791D01* +X61779Y41772D01* +X61790Y41747D01* +X61801Y41717D01* +X61815Y41684D01* +X61828Y41646D01* +X61842Y41605D01* +X61856Y41562D01* +X61867Y41512D01* +X61878Y41461D01* +X61886Y41403D01* +X61894Y41346D01* +X61897Y41286D01* +X61899Y41223D01* +Y41220D01* +Y41209D01* +Y41190D01* +X61897Y41168D01* +X61894Y41138D01* +X61891Y41106D01* +X61886Y41067D01* +X61880Y41026D01* +X61872Y40980D01* +X61864Y40934D01* +X61837Y40835D01* +X61820Y40784D01* +X61798Y40734D01* +X61777Y40683D01* +X61749Y40633D01* +X61747Y40631D01* +X61744Y40622D01* +X61733Y40609D01* +X61722Y40590D01* +X61708Y40568D01* +X61689Y40543D01* +X61670Y40516D01* +X61646Y40486D01* +X61591Y40423D01* +X61525Y40355D01* +X61452Y40292D01* +X61411Y40262D01* +X61370Y40235D01* +X61367D01* +X61362Y40229D01* +X61353Y40224D01* +X61340Y40218D01* +X61323Y40210D01* +X61304Y40199D01* +X61282Y40188D01* +X61258Y40177D01* +X61200Y40153D01* +X61138Y40131D01* +X61067Y40109D01* +X60990Y40090D01* +X60988D01* +X60982Y40087D01* +X60969D01* +X60955Y40085D01* +X60933Y40082D01* +X60911Y40076D01* +X60884Y40074D01* +X60854Y40071D01* +X60818Y40066D01* +X60783Y40063D01* +X60742Y40060D01* +X60698Y40055D01* +X60605Y40052D01* +X60504Y40049D01* +X59677D01* +Y42402D01* +X60578D01* +X60603Y42400D01* +D02* +G37* +G36* +X69560Y29443D02* +X69588D01* +X69618Y29441D01* +X69686Y29435D01* +X69760Y29427D01* +X69839Y29416D01* +X69918Y29402D01* +X69921D01* +X69929Y29400D01* +X69940Y29397D01* +X69956Y29394D01* +X69975Y29389D01* +X69997Y29383D01* +X70024Y29375D01* +X70055Y29367D01* +X70090Y29356D01* +X70125Y29345D01* +X70205Y29315D01* +X70292Y29280D01* +X70388Y29236D01* +Y28687D01* +X70319D01* +X70316Y28690D01* +X70311Y28693D01* +X70300Y28701D01* +X70287Y28712D01* +X70267Y28725D01* +X70246Y28739D01* +X70218Y28758D01* +X70188Y28780D01* +X70186Y28783D01* +X70175Y28791D01* +X70158Y28802D01* +X70136Y28815D01* +X70112Y28832D01* +X70085Y28848D01* +X70024Y28884D01* +X70019Y28886D01* +X70008Y28892D01* +X69989Y28900D01* +X69962Y28914D01* +X69932Y28927D01* +X69893Y28941D01* +X69852Y28955D01* +X69809Y28968D01* +X69803Y28971D01* +X69787Y28974D01* +X69762Y28979D01* +X69732Y28987D01* +X69694Y28996D01* +X69648Y29001D01* +X69601Y29004D01* +X69549Y29006D01* +X69522D01* +X69492Y29004D01* +X69454Y29001D01* +X69407Y28996D01* +X69358Y28985D01* +X69306Y28974D01* +X69257Y28957D01* +X69255D01* +X69252Y28955D01* +X69235Y28949D01* +X69211Y28938D01* +X69178Y28922D01* +X69143Y28903D01* +X69104Y28878D01* +X69064Y28848D01* +X69023Y28813D01* +X69017Y28807D01* +X69006Y28796D01* +X68990Y28774D01* +X68965Y28747D01* +X68941Y28712D01* +X68916Y28671D01* +X68892Y28622D01* +X68867Y28570D01* +Y28567D01* +X68864Y28564D01* +X68862Y28556D01* +X68859Y28545D01* +X68853Y28532D01* +X68848Y28515D01* +X68840Y28474D01* +X68829Y28425D01* +X68818Y28368D01* +X68812Y28305D01* +X68810Y28237D01* +Y28231D01* +Y28220D01* +X68812Y28199D01* +Y28174D01* +X68815Y28141D01* +X68821Y28103D01* +X68826Y28062D01* +X68834Y28016D01* +X68845Y27969D01* +X68859Y27920D01* +X68875Y27871D01* +X68897Y27819D01* +X68919Y27770D01* +X68946Y27724D01* +X68979Y27680D01* +X69014Y27639D01* +X69017Y27636D01* +X69025Y27631D01* +X69036Y27620D01* +X69052Y27606D01* +X69074Y27592D01* +X69102Y27573D01* +X69132Y27557D01* +X69170Y27538D01* +X69208Y27519D01* +X69255Y27500D01* +X69304Y27481D01* +X69361Y27467D01* +X69418Y27453D01* +X69484Y27442D01* +X69552Y27437D01* +X69626Y27434D01* +X69716D01* +X69727Y27437D01* +X69751D01* +X69779Y27439D01* +Y27898D01* +X69312D01* +Y28343D01* +X70396D01* +Y27183D01* +X70393D01* +X70388Y27180D01* +X70379Y27177D01* +X70366Y27172D01* +X70352Y27167D01* +X70333Y27161D01* +X70308Y27153D01* +X70284Y27145D01* +X70257Y27134D01* +X70224Y27126D01* +X70188Y27115D01* +X70153Y27104D01* +X70112Y27093D01* +X70068Y27082D01* +X69975Y27060D01* +X69973D01* +X69964Y27057D01* +X69951Y27055D01* +X69932Y27052D01* +X69907Y27046D01* +X69880Y27041D01* +X69847Y27035D01* +X69814Y27030D01* +X69776Y27025D01* +X69735Y27019D01* +X69648Y27008D01* +X69552Y27003D01* +X69457Y27000D01* +X69416D01* +X69399Y27003D01* +X69358Y27005D01* +X69306Y27011D01* +X69249Y27016D01* +X69184Y27027D01* +X69115Y27041D01* +X69039Y27057D01* +X68963Y27079D01* +X68886Y27106D01* +X68807Y27136D01* +X68730Y27175D01* +X68654Y27218D01* +X68583Y27268D01* +X68518Y27325D01* +X68515Y27328D01* +X68504Y27341D01* +X68487Y27358D01* +X68466Y27385D01* +X68438Y27418D01* +X68411Y27459D01* +X68381Y27505D01* +X68348Y27560D01* +X68315Y27620D01* +X68285Y27688D01* +X68258Y27762D01* +X68231Y27841D01* +X68209Y27928D01* +X68193Y28021D01* +X68182Y28122D01* +X68179Y28226D01* +Y28229D01* +Y28231D01* +Y28239D01* +Y28250D01* +X68182Y28278D01* +X68184Y28316D01* +X68190Y28362D01* +X68198Y28417D01* +X68206Y28477D01* +X68223Y28543D01* +X68239Y28611D01* +X68264Y28682D01* +X68291Y28755D01* +X68324Y28832D01* +X68362Y28903D01* +X68408Y28977D01* +X68460Y29045D01* +X68520Y29110D01* +X68526Y29113D01* +X68537Y29124D01* +X68556Y29140D01* +X68583Y29162D01* +X68619Y29190D01* +X68662Y29217D01* +X68711Y29247D01* +X68769Y29280D01* +X68834Y29310D01* +X68905Y29340D01* +X68984Y29370D01* +X69069Y29394D01* +X69162Y29416D01* +X69260Y29432D01* +X69364Y29443D01* +X69476Y29446D01* +X69536D01* +X69560Y29443D01* +D02* +G37* +G36* +X73077Y27049D02* +X72490D01* +X71496Y28663D01* +Y27049D01* +X70939D01* +Y29402D01* +X71662D01* +X72520Y28054D01* +Y29402D01* +X73077D01* +Y27049D01* +D02* +G37* +G36* +X74603Y29400D02* +X74663D01* +X74698Y29397D01* +X74775Y29392D01* +X74859Y29381D01* +X74941Y29370D01* +X75023Y29353D01* +X75026D01* +X75031Y29351D01* +X75042Y29348D01* +X75059Y29345D01* +X75075Y29340D01* +X75097Y29334D01* +X75146Y29318D01* +X75200Y29299D01* +X75261Y29274D01* +X75321Y29247D01* +X75375Y29217D01* +X75378Y29214D01* +X75386Y29209D01* +X75400Y29200D01* +X75416Y29190D01* +X75435Y29173D01* +X75460Y29157D01* +X75487Y29135D01* +X75515Y29110D01* +X75545Y29083D01* +X75574Y29053D01* +X75607Y29020D01* +X75640Y28985D01* +X75700Y28905D01* +X75757Y28815D01* +X75760Y28813D01* +X75763Y28804D01* +X75771Y28791D01* +X75779Y28772D01* +X75790Y28747D01* +X75801Y28717D01* +X75815Y28684D01* +X75828Y28646D01* +X75842Y28605D01* +X75856Y28562D01* +X75867Y28512D01* +X75877Y28461D01* +X75886Y28403D01* +X75894Y28346D01* +X75897Y28286D01* +X75899Y28223D01* +Y28220D01* +Y28209D01* +Y28190D01* +X75897Y28168D01* +X75894Y28138D01* +X75891Y28106D01* +X75886Y28067D01* +X75880Y28027D01* +X75872Y27980D01* +X75864Y27934D01* +X75837Y27835D01* +X75820Y27784D01* +X75798Y27734D01* +X75776Y27683D01* +X75749Y27633D01* +X75747Y27631D01* +X75744Y27622D01* +X75733Y27609D01* +X75722Y27590D01* +X75708Y27568D01* +X75689Y27543D01* +X75670Y27516D01* +X75646Y27486D01* +X75591Y27423D01* +X75525Y27355D01* +X75452Y27292D01* +X75411Y27262D01* +X75370Y27235D01* +X75367D01* +X75362Y27229D01* +X75353Y27224D01* +X75340Y27218D01* +X75323Y27210D01* +X75304Y27199D01* +X75282Y27188D01* +X75258Y27177D01* +X75200Y27153D01* +X75138Y27131D01* +X75067Y27109D01* +X74990Y27090D01* +X74988D01* +X74982Y27087D01* +X74968D01* +X74955Y27085D01* +X74933Y27082D01* +X74911Y27076D01* +X74884Y27074D01* +X74854Y27071D01* +X74818Y27066D01* +X74783Y27063D01* +X74742Y27060D01* +X74698Y27055D01* +X74605Y27052D01* +X74504Y27049D01* +X73677D01* +Y29402D01* +X74578D01* +X74603Y29400D01* +D02* +G37* +G36* +X72926Y7049D02* +X72249D01* +X71392Y9402D01* +X72028D01* +X72596Y7751D01* +X73164Y9402D01* +X73786D01* +X72926Y7049D01* +D02* +G37* +G36* +X74993Y9449D02* +X75018D01* +X75048Y9446D01* +X75108Y9441D01* +X75173Y9435D01* +X75239Y9424D01* +X75304Y9411D01* +X75307D01* +X75312Y9408D01* +X75321D01* +X75332Y9402D01* +X75362Y9394D01* +X75402Y9383D01* +X75444Y9370D01* +X75490Y9351D01* +X75536Y9331D01* +X75580Y9307D01* +X75583D01* +X75585Y9304D01* +X75602Y9293D01* +X75624Y9277D01* +X75651Y9255D01* +X75684Y9228D01* +X75714Y9195D01* +X75744Y9159D01* +X75771Y9119D01* +X75774Y9113D01* +X75782Y9099D01* +X75793Y9077D01* +X75804Y9045D01* +X75815Y9009D01* +X75826Y8966D01* +X75834Y8917D01* +X75837Y8862D01* +Y8859D01* +Y8854D01* +Y8843D01* +X75834Y8829D01* +Y8813D01* +X75831Y8791D01* +X75820Y8744D01* +X75807Y8690D01* +X75785Y8630D01* +X75755Y8570D01* +X75736Y8540D01* +X75714Y8510D01* +Y8507D01* +X75708Y8504D01* +X75700Y8496D01* +X75692Y8485D01* +X75665Y8458D01* +X75629Y8428D01* +X75583Y8395D01* +X75528Y8362D01* +X75465Y8335D01* +X75394Y8313D01* +Y8291D01* +X75397D01* +X75408Y8289D01* +X75424Y8286D01* +X75446Y8283D01* +X75473Y8275D01* +X75501Y8269D01* +X75566Y8248D01* +X75572Y8245D01* +X75583Y8242D01* +X75599Y8234D01* +X75621Y8223D01* +X75646Y8209D01* +X75673Y8193D01* +X75703Y8174D01* +X75730Y8152D01* +X75733Y8149D01* +X75744Y8141D01* +X75757Y8125D01* +X75774Y8106D01* +X75793Y8084D01* +X75815Y8056D01* +X75834Y8027D01* +X75853Y7994D01* +X75856Y7991D01* +X75861Y7977D01* +X75867Y7958D01* +X75877Y7931D01* +X75886Y7898D01* +X75891Y7860D01* +X75897Y7813D01* +X75899Y7762D01* +Y7759D01* +Y7754D01* +Y7745D01* +Y7734D01* +X75897Y7718D01* +Y7702D01* +X75891Y7661D01* +X75883Y7611D01* +X75872Y7560D01* +X75856Y7505D01* +X75834Y7450D01* +Y7448D01* +X75831Y7445D01* +X75826Y7437D01* +X75823Y7426D01* +X75807Y7399D01* +X75785Y7366D01* +X75755Y7328D01* +X75722Y7287D01* +X75681Y7246D01* +X75632Y7205D01* +X75629D01* +X75626Y7199D01* +X75618Y7194D01* +X75607Y7188D01* +X75580Y7169D01* +X75542Y7147D01* +X75495Y7123D01* +X75444Y7098D01* +X75383Y7074D01* +X75318Y7052D01* +X75315D01* +X75310Y7049D01* +X75299Y7046D01* +X75285Y7044D01* +X75269Y7041D01* +X75250Y7035D01* +X75225Y7030D01* +X75198Y7027D01* +X75168Y7022D01* +X75135Y7016D01* +X75061Y7008D01* +X74979Y7003D01* +X74887Y7000D01* +X74837D01* +X74813Y7003D01* +X74750D01* +X74715Y7006D01* +X74635Y7011D01* +X74551Y7019D01* +X74466Y7030D01* +X74384Y7046D01* +X74382D01* +X74376Y7049D01* +X74365Y7052D01* +X74349Y7055D01* +X74332Y7057D01* +X74310Y7063D01* +X74264Y7076D01* +X74209Y7090D01* +X74152Y7107D01* +X74098Y7126D01* +X74046Y7147D01* +Y7666D01* +X74108D01* +X74111Y7663D01* +X74119Y7658D01* +X74130Y7653D01* +X74158Y7636D01* +X74199Y7617D01* +X74245Y7592D01* +X74300Y7571D01* +X74362Y7546D01* +X74431Y7521D01* +X74433D01* +X74439Y7519D01* +X74450Y7516D01* +X74463Y7513D01* +X74480Y7508D01* +X74499Y7502D01* +X74545Y7494D01* +X74597Y7483D01* +X74655Y7472D01* +X74715Y7467D01* +X74775Y7464D01* +X74810D01* +X74832Y7467D01* +X74862D01* +X74895Y7470D01* +X74933Y7472D01* +X74971Y7478D01* +X74977D01* +X74990Y7480D01* +X75009Y7486D01* +X75034Y7491D01* +X75064Y7500D01* +X75094Y7510D01* +X75124Y7527D01* +X75154Y7543D01* +X75157Y7546D01* +X75165Y7552D01* +X75173Y7560D01* +X75187Y7571D01* +X75217Y7598D01* +X75247Y7636D01* +X75250Y7639D01* +X75252Y7647D01* +X75258Y7661D01* +X75266Y7677D01* +X75271Y7702D01* +X75277Y7729D01* +X75280Y7762D01* +X75282Y7800D01* +Y7805D01* +Y7816D01* +X75280Y7835D01* +X75277Y7860D01* +X75271Y7885D01* +X75261Y7912D01* +X75250Y7936D01* +X75233Y7958D01* +X75230Y7961D01* +X75225Y7966D01* +X75214Y7977D01* +X75200Y7991D01* +X75184Y8005D01* +X75162Y8018D01* +X75138Y8029D01* +X75110Y8040D01* +X75108D01* +X75097Y8043D01* +X75080Y8048D01* +X75059Y8054D01* +X75029Y8056D01* +X74998Y8062D01* +X74960Y8065D01* +X74922Y8067D01* +X74884D01* +X74857Y8070D01* +X74594D01* +Y8491D01* +X74802D01* +X74835Y8493D01* +X74908D01* +X74944Y8496D01* +X74949D01* +X74960Y8499D01* +X74977Y8501D01* +X75001Y8504D01* +X75026Y8510D01* +X75053Y8515D01* +X75108Y8534D01* +X75110D01* +X75119Y8540D01* +X75132Y8545D01* +X75146Y8553D01* +X75181Y8578D01* +X75198Y8594D01* +X75211Y8611D01* +X75214Y8613D01* +X75217Y8622D01* +X75222Y8632D01* +X75230Y8649D01* +X75236Y8671D01* +X75242Y8695D01* +X75244Y8725D01* +X75247Y8758D01* +Y8761D01* +Y8769D01* +X75244Y8783D01* +X75242Y8799D01* +X75230Y8835D01* +X75222Y8854D01* +X75209Y8870D01* +X75206Y8873D01* +X75203Y8878D01* +X75195Y8886D01* +X75184Y8895D01* +X75157Y8917D01* +X75119Y8938D01* +X75116Y8941D01* +X75108Y8944D01* +X75094Y8949D01* +X75078Y8955D01* +X75056Y8960D01* +X75031Y8968D01* +X75001Y8974D01* +X74971Y8976D01* +X74968D01* +X74958Y8979D01* +X74941D01* +X74922Y8982D01* +X74900Y8985D01* +X74876D01* +X74829Y8987D01* +X74805D01* +X74791Y8985D01* +X74775D01* +X74734Y8982D01* +X74685Y8974D01* +X74630Y8966D01* +X74570Y8952D01* +X74507Y8936D01* +X74504D01* +X74499Y8933D01* +X74491Y8930D01* +X74477Y8927D01* +X74461Y8922D01* +X74444Y8917D01* +X74401Y8900D01* +X74349Y8878D01* +X74291Y8856D01* +X74231Y8826D01* +X74171Y8794D01* +X74114D01* +Y9301D01* +X74117D01* +X74119Y9304D01* +X74128Y9307D01* +X74138Y9310D01* +X74150Y9315D01* +X74166Y9320D01* +X74207Y9334D01* +X74256Y9348D01* +X74316Y9367D01* +X74384Y9383D01* +X74463Y9402D01* +X74466D01* +X74474Y9405D01* +X74485Y9408D01* +X74502Y9411D01* +X74524Y9413D01* +X74545Y9419D01* +X74573Y9421D01* +X74603Y9427D01* +X74671Y9435D01* +X74747Y9443D01* +X74829Y9449D01* +X74914Y9452D01* +X74971D01* +X74993Y9449D01* +D02* +G37* +G36* +X70224D02* +X70248D01* +X70278Y9446D01* +X70338Y9441D01* +X70404Y9435D01* +X70469Y9424D01* +X70535Y9411D01* +X70538D01* +X70543Y9408D01* +X70551D01* +X70562Y9402D01* +X70592Y9394D01* +X70633Y9383D01* +X70674Y9370D01* +X70721Y9351D01* +X70767Y9331D01* +X70811Y9307D01* +X70813D01* +X70816Y9304D01* +X70833Y9293D01* +X70854Y9277D01* +X70882Y9255D01* +X70914Y9228D01* +X70944Y9195D01* +X70974Y9159D01* +X71002Y9119D01* +X71004Y9113D01* +X71013Y9099D01* +X71024Y9077D01* +X71034Y9045D01* +X71046Y9009D01* +X71056Y8966D01* +X71065Y8917D01* +X71067Y8862D01* +Y8859D01* +Y8854D01* +Y8843D01* +X71065Y8829D01* +Y8813D01* +X71062Y8791D01* +X71051Y8744D01* +X71037Y8690D01* +X71015Y8630D01* +X70985Y8570D01* +X70966Y8540D01* +X70944Y8510D01* +Y8507D01* +X70939Y8504D01* +X70931Y8496D01* +X70923Y8485D01* +X70895Y8458D01* +X70860Y8428D01* +X70813Y8395D01* +X70759Y8362D01* +X70696Y8335D01* +X70625Y8313D01* +Y8291D01* +X70628D01* +X70639Y8289D01* +X70655Y8286D01* +X70677Y8283D01* +X70704Y8275D01* +X70732Y8269D01* +X70797Y8248D01* +X70802Y8245D01* +X70813Y8242D01* +X70830Y8234D01* +X70852Y8223D01* +X70876Y8209D01* +X70903Y8193D01* +X70934Y8174D01* +X70961Y8152D01* +X70964Y8149D01* +X70974Y8141D01* +X70988Y8125D01* +X71004Y8106D01* +X71024Y8084D01* +X71046Y8056D01* +X71065Y8027D01* +X71084Y7994D01* +X71086Y7991D01* +X71092Y7977D01* +X71097Y7958D01* +X71108Y7931D01* +X71116Y7898D01* +X71122Y7860D01* +X71127Y7813D01* +X71130Y7762D01* +Y7759D01* +Y7754D01* +Y7745D01* +Y7734D01* +X71127Y7718D01* +Y7702D01* +X71122Y7661D01* +X71114Y7611D01* +X71103Y7560D01* +X71086Y7505D01* +X71065Y7450D01* +Y7448D01* +X71062Y7445D01* +X71056Y7437D01* +X71054Y7426D01* +X71037Y7399D01* +X71015Y7366D01* +X70985Y7328D01* +X70953Y7287D01* +X70912Y7246D01* +X70863Y7205D01* +X70860D01* +X70857Y7199D01* +X70849Y7194D01* +X70838Y7188D01* +X70811Y7169D01* +X70772Y7147D01* +X70726Y7123D01* +X70674Y7098D01* +X70614Y7074D01* +X70549Y7052D01* +X70546D01* +X70540Y7049D01* +X70530Y7046D01* +X70516Y7044D01* +X70499Y7041D01* +X70480Y7035D01* +X70456Y7030D01* +X70429Y7027D01* +X70398Y7022D01* +X70366Y7016D01* +X70292Y7008D01* +X70210Y7003D01* +X70117Y7000D01* +X70068D01* +X70043Y7003D01* +X69981D01* +X69945Y7006D01* +X69866Y7011D01* +X69782Y7019D01* +X69697Y7030D01* +X69615Y7046D01* +X69612D01* +X69607Y7049D01* +X69596Y7052D01* +X69579Y7055D01* +X69563Y7057D01* +X69541Y7063D01* +X69495Y7076D01* +X69440Y7090D01* +X69383Y7107D01* +X69328Y7126D01* +X69276Y7147D01* +Y7666D01* +X69339D01* +X69342Y7663D01* +X69350Y7658D01* +X69361Y7653D01* +X69388Y7636D01* +X69429Y7617D01* +X69476Y7592D01* +X69530Y7571D01* +X69593Y7546D01* +X69661Y7521D01* +X69664D01* +X69670Y7519D01* +X69680Y7516D01* +X69694Y7513D01* +X69710Y7508D01* +X69730Y7502D01* +X69776Y7494D01* +X69828Y7483D01* +X69885Y7472D01* +X69945Y7467D01* +X70005Y7464D01* +X70041D01* +X70063Y7467D01* +X70093D01* +X70125Y7470D01* +X70164Y7472D01* +X70202Y7478D01* +X70207D01* +X70221Y7480D01* +X70240Y7486D01* +X70265Y7491D01* +X70295Y7500D01* +X70325Y7510D01* +X70355Y7527D01* +X70385Y7543D01* +X70388Y7546D01* +X70396Y7552D01* +X70404Y7560D01* +X70418Y7571D01* +X70448Y7598D01* +X70478Y7636D01* +X70480Y7639D01* +X70483Y7647D01* +X70489Y7661D01* +X70497Y7677D01* +X70502Y7702D01* +X70508Y7729D01* +X70510Y7762D01* +X70513Y7800D01* +Y7805D01* +Y7816D01* +X70510Y7835D01* +X70508Y7860D01* +X70502Y7885D01* +X70491Y7912D01* +X70480Y7936D01* +X70464Y7958D01* +X70461Y7961D01* +X70456Y7966D01* +X70445Y7977D01* +X70431Y7991D01* +X70415Y8005D01* +X70393Y8018D01* +X70368Y8029D01* +X70341Y8040D01* +X70338D01* +X70328Y8043D01* +X70311Y8048D01* +X70289Y8054D01* +X70259Y8056D01* +X70229Y8062D01* +X70191Y8065D01* +X70153Y8067D01* +X70114D01* +X70087Y8070D01* +X69825D01* +Y8491D01* +X70033D01* +X70065Y8493D01* +X70139D01* +X70175Y8496D01* +X70180D01* +X70191Y8499D01* +X70207Y8501D01* +X70232Y8504D01* +X70257Y8510D01* +X70284Y8515D01* +X70338Y8534D01* +X70341D01* +X70349Y8540D01* +X70363Y8545D01* +X70377Y8553D01* +X70412Y8578D01* +X70429Y8594D01* +X70442Y8611D01* +X70445Y8613D01* +X70448Y8622D01* +X70453Y8632D01* +X70461Y8649D01* +X70467Y8671D01* +X70472Y8695D01* +X70475Y8725D01* +X70478Y8758D01* +Y8761D01* +Y8769D01* +X70475Y8783D01* +X70472Y8799D01* +X70461Y8835D01* +X70453Y8854D01* +X70439Y8870D01* +X70437Y8873D01* +X70434Y8878D01* +X70426Y8886D01* +X70415Y8895D01* +X70388Y8917D01* +X70349Y8938D01* +X70347Y8941D01* +X70338Y8944D01* +X70325Y8949D01* +X70308Y8955D01* +X70287Y8960D01* +X70262Y8968D01* +X70232Y8974D01* +X70202Y8976D01* +X70199D01* +X70188Y8979D01* +X70172D01* +X70153Y8982D01* +X70131Y8985D01* +X70106D01* +X70060Y8987D01* +X70035D01* +X70022Y8985D01* +X70005D01* +X69964Y8982D01* +X69915Y8974D01* +X69861Y8966D01* +X69801Y8952D01* +X69738Y8936D01* +X69735D01* +X69730Y8933D01* +X69721Y8930D01* +X69708Y8927D01* +X69691Y8922D01* +X69675Y8917D01* +X69631Y8900D01* +X69579Y8878D01* +X69522Y8856D01* +X69462Y8826D01* +X69402Y8794D01* +X69345D01* +Y9301D01* +X69347D01* +X69350Y9304D01* +X69358Y9307D01* +X69369Y9310D01* +X69380Y9315D01* +X69397Y9320D01* +X69437Y9334D01* +X69487Y9348D01* +X69547Y9367D01* +X69615Y9383D01* +X69694Y9402D01* +X69697D01* +X69705Y9405D01* +X69716Y9408D01* +X69732Y9411D01* +X69754Y9413D01* +X69776Y9419D01* +X69803Y9421D01* +X69833Y9427D01* +X69902Y9435D01* +X69978Y9443D01* +X70060Y9449D01* +X70145Y9452D01* +X70202D01* +X70224Y9449D01* +D02* +G37* +G36* +X49540Y-102951D02* +X48934D01* +Y-101376D01* +X48497Y-102397D01* +X48079D01* +X47645Y-101376D01* +Y-102951D01* +X47074D01* +Y-100598D01* +X47776D01* +X48306Y-101780D01* +X48833Y-100598D01* +X49540D01* +Y-102951D01* +D02* +G37* +G36* +X58000D02* +X57413D01* +X56419Y-101337D01* +Y-102951D01* +X55862D01* +Y-100598D01* +X56586D01* +X57443Y-101946D01* +Y-100598D01* +X58000D01* +Y-102951D01* +D02* +G37* +G36* +X46034D02* +X45366D01* +X44942Y-101419D01* +X44530Y-102951D01* +X43861D01* +X43228Y-100598D01* +X43859D01* +X44222Y-102219D01* +X44656Y-100598D01* +X45259D01* +X45674Y-102219D01* +X46053Y-100598D01* +X46670D01* +X46034Y-102951D01* +D02* +G37* +G36* +X38748D02* +X38071D01* +X37214Y-100598D01* +X37850D01* +X38418Y-102249D01* +X38986Y-100598D01* +X39608D01* +X38748Y-102951D01* +D02* +G37* +G36* +X36894Y-101048D02* +X35794D01* +Y-101433D01* +X35813D01* +X35827Y-101430D01* +X35865D01* +X35887Y-101427D01* +X35942D01* +X35961Y-101425D01* +X36097D01* +X36116Y-101427D01* +X36165Y-101430D01* +X36217Y-101433D01* +X36277Y-101441D01* +X36335Y-101449D01* +X36395Y-101463D01* +X36397D01* +X36403Y-101466D01* +X36408D01* +X36419Y-101471D01* +X36449Y-101479D01* +X36485Y-101490D01* +X36526Y-101504D01* +X36569Y-101523D01* +X36613Y-101542D01* +X36657Y-101567D01* +X36660D01* +X36662Y-101569D01* +X36671Y-101575D01* +X36681Y-101583D01* +X36706Y-101602D01* +X36739Y-101629D01* +X36774Y-101662D01* +X36812Y-101700D01* +X36848Y-101747D01* +X36881Y-101799D01* +Y-101802D01* +X36883Y-101804D01* +X36889Y-101813D01* +X36894Y-101823D01* +X36900Y-101837D01* +X36908Y-101856D01* +X36922Y-101897D01* +X36938Y-101949D01* +X36949Y-102009D01* +X36960Y-102080D01* +X36963Y-102156D01* +Y-102159D01* +Y-102165D01* +Y-102175D01* +Y-102187D01* +X36960Y-102203D01* +Y-102222D01* +X36954Y-102268D01* +X36946Y-102320D01* +X36933Y-102378D01* +X36916Y-102438D01* +X36892Y-102498D01* +Y-102500D01* +X36889Y-102503D01* +X36883Y-102511D01* +X36878Y-102525D01* +X36864Y-102552D01* +X36843Y-102591D01* +X36812Y-102631D01* +X36780Y-102675D01* +X36739Y-102722D01* +X36692Y-102765D01* +X36690D01* +X36687Y-102771D01* +X36679Y-102776D01* +X36668Y-102784D01* +X36654Y-102795D01* +X36638Y-102806D01* +X36597Y-102833D01* +X36548Y-102861D01* +X36490Y-102891D01* +X36428Y-102918D01* +X36359Y-102943D01* +X36357D01* +X36351Y-102945D01* +X36340Y-102948D01* +X36327Y-102951D01* +X36307Y-102956D01* +X36288Y-102962D01* +X36264Y-102967D01* +X36236Y-102970D01* +X36204Y-102975D01* +X36171Y-102981D01* +X36100Y-102992D01* +X36018Y-102997D01* +X35931Y-103000D01* +X35884D01* +X35860Y-102997D01* +X35830D01* +X35800Y-102995D01* +X35764Y-102992D01* +X35690Y-102986D01* +X35609Y-102978D01* +X35529Y-102967D01* +X35453Y-102954D01* +X35450D01* +X35445Y-102951D01* +X35434Y-102948D01* +X35420Y-102945D01* +X35404Y-102943D01* +X35385Y-102937D01* +X35341Y-102926D01* +X35292Y-102913D01* +X35237Y-102896D01* +X35185Y-102880D01* +X35136Y-102861D01* +Y-102339D01* +X35204D01* +X35207Y-102342D01* +X35215Y-102348D01* +X35226Y-102353D01* +X35256Y-102369D01* +X35295Y-102389D01* +X35338Y-102410D01* +X35393Y-102435D01* +X35450Y-102460D01* +X35510Y-102481D01* +X35513D01* +X35519Y-102484D01* +X35527Y-102487D01* +X35540Y-102489D01* +X35554Y-102495D01* +X35570Y-102498D01* +X35614Y-102509D01* +X35663Y-102520D01* +X35721Y-102528D01* +X35781Y-102533D01* +X35841Y-102536D01* +X35879D01* +X35906Y-102533D01* +X35939Y-102530D01* +X35974Y-102528D01* +X36015Y-102522D01* +X36056Y-102514D01* +X36062D01* +X36075Y-102509D01* +X36097Y-102503D01* +X36125Y-102495D01* +X36154Y-102484D01* +X36185Y-102470D01* +X36215Y-102454D01* +X36242Y-102432D01* +X36245Y-102429D01* +X36250Y-102424D01* +X36261Y-102413D01* +X36272Y-102402D01* +X36296Y-102369D01* +X36321Y-102334D01* +X36324Y-102331D01* +X36327Y-102323D01* +X36332Y-102312D01* +X36338Y-102296D01* +X36343Y-102271D01* +X36346Y-102244D01* +X36351Y-102214D01* +Y-102175D01* +Y-102173D01* +Y-102162D01* +X36348Y-102146D01* +X36346Y-102126D01* +X36335Y-102083D01* +X36327Y-102058D01* +X36313Y-102036D01* +X36310Y-102034D01* +X36307Y-102025D01* +X36296Y-102015D01* +X36286Y-102001D01* +X36255Y-101971D01* +X36217Y-101941D01* +X36215Y-101938D01* +X36204Y-101933D01* +X36185Y-101924D01* +X36160Y-101913D01* +X36130Y-101902D01* +X36094Y-101889D01* +X36056Y-101881D01* +X36013Y-101873D01* +X36007D01* +X35993Y-101870D01* +X35969Y-101867D01* +X35942Y-101862D01* +X35906Y-101859D01* +X35871Y-101856D01* +X35794Y-101853D01* +X35742D01* +X35707Y-101856D01* +X35663Y-101859D01* +X35617Y-101864D01* +X35519Y-101881D01* +X35513D01* +X35497Y-101883D01* +X35472Y-101889D01* +X35442Y-101894D01* +X35407Y-101902D01* +X35368Y-101911D01* +X35330Y-101919D01* +X35292Y-101927D01* +X35224D01* +Y-100598D01* +X36894D01* +Y-101048D01* +D02* +G37* +G36* +X55524Y-102951D02* +X54896D01* +X54732Y-102476D01* +X53864D01* +X53700Y-102951D01* +X53089D01* +X53957Y-100598D01* +X54653D01* +X55524Y-102951D01* +D02* +G37* +G36* +X52933Y-101054D02* +X51852D01* +Y-101490D01* +X52854D01* +Y-101946D01* +X51852D01* +Y-102951D01* +X51246D01* +Y-100598D01* +X52933D01* +Y-101054D01* +D02* +G37* +G36* +X42131Y-100600D02* +X42182Y-100603D01* +X42242Y-100609D01* +X42305Y-100614D01* +X42368Y-100625D01* +X42428Y-100638D01* +X42431D01* +X42436Y-100641D01* +X42445D01* +X42455Y-100647D01* +X42483Y-100655D01* +X42521Y-100666D01* +X42562Y-100682D01* +X42608Y-100704D01* +X42655Y-100726D01* +X42701Y-100753D01* +X42704D01* +X42707Y-100759D01* +X42726Y-100770D01* +X42750Y-100791D01* +X42783Y-100819D01* +X42816Y-100852D01* +X42854Y-100892D01* +X42889Y-100942D01* +X42919Y-100993D01* +Y-100996D01* +X42922Y-100999D01* +X42928Y-101007D01* +X42930Y-101018D01* +X42939Y-101034D01* +X42944Y-101051D01* +X42958Y-101092D01* +X42971Y-101141D01* +X42985Y-101201D01* +X42993Y-101266D01* +X42996Y-101340D01* +Y-101343D01* +Y-101348D01* +Y-101356D01* +Y-101367D01* +X42993Y-101381D01* +Y-101398D01* +X42988Y-101438D01* +X42982Y-101485D01* +X42971Y-101539D01* +X42958Y-101594D01* +X42939Y-101651D01* +Y-101654D01* +X42936Y-101657D01* +X42933Y-101665D01* +X42928Y-101676D01* +X42917Y-101703D01* +X42898Y-101739D01* +X42876Y-101780D01* +X42849Y-101821D01* +X42816Y-101862D01* +X42780Y-101902D01* +X42777Y-101905D01* +X42775Y-101908D01* +X42767Y-101916D01* +X42756Y-101924D01* +X42728Y-101949D01* +X42690Y-101982D01* +X42644Y-102015D01* +X42589Y-102050D01* +X42529Y-102083D01* +X42466Y-102113D01* +X42464D01* +X42458Y-102115D01* +X42450Y-102118D01* +X42436Y-102124D01* +X42420Y-102129D01* +X42398Y-102135D01* +X42373Y-102143D01* +X42349Y-102148D01* +X42319Y-102154D01* +X42286Y-102162D01* +X42251Y-102167D01* +X42212Y-102173D01* +X42128Y-102181D01* +X42035Y-102184D01* +X41658D01* +Y-102951D01* +X41052D01* +Y-100598D01* +X42109D01* +X42131Y-100600D01* +D02* +G37* +G36* +X-34947Y-103000D02* +X-35553D01* +Y-101963D01* +X-36448D01* +Y-103000D01* +X-37054D01* +Y-100647D01* +X-36448D01* +Y-101507D01* +X-35553D01* +Y-100647D01* +X-34947D01* +Y-103000D01* +D02* +G37* +G36* +X-24073Y-100649D02* +X-24016Y-100652D01* +X-23956Y-100658D01* +X-23893Y-100663D01* +X-23836Y-100671D01* +X-23830D01* +X-23822Y-100674D01* +X-23811Y-100677D01* +X-23781Y-100682D01* +X-23743Y-100693D01* +X-23702Y-100707D01* +X-23653Y-100726D01* +X-23604Y-100748D01* +X-23554Y-100775D01* +X-23552D01* +X-23549Y-100778D01* +X-23533Y-100789D01* +X-23508Y-100808D01* +X-23478Y-100830D01* +X-23445Y-100860D01* +X-23410Y-100895D01* +X-23377Y-100936D01* +X-23344Y-100980D01* +Y-100982D01* +X-23341Y-100985D01* +X-23336Y-100993D01* +X-23331Y-101002D01* +X-23320Y-101029D01* +X-23303Y-101067D01* +X-23290Y-101111D01* +X-23276Y-101165D01* +X-23268Y-101225D01* +X-23265Y-101294D01* +Y-101296D01* +Y-101305D01* +Y-101318D01* +X-23268Y-101337D01* +Y-101359D01* +X-23271Y-101387D01* +X-23276Y-101414D01* +X-23281Y-101444D01* +X-23295Y-101512D01* +X-23317Y-101583D01* +X-23347Y-101654D01* +X-23366Y-101687D01* +X-23388Y-101720D01* +Y-101722D01* +X-23393Y-101728D01* +X-23402Y-101736D01* +X-23410Y-101747D01* +X-23437Y-101777D01* +X-23475Y-101815D01* +X-23524Y-101859D01* +X-23584Y-101902D01* +X-23653Y-101949D01* +X-23732Y-101993D01* +X-22946Y-103000D01* +X-23688D01* +X-24327Y-102137D01* +X-24606D01* +Y-103000D01* +X-25212D01* +Y-100647D01* +X-24122D01* +X-24073Y-100649D01* +D02* +G37* +G36* +X-25719Y-101103D02* +X-26814D01* +Y-101507D01* +X-25798D01* +Y-101963D01* +X-26814D01* +Y-102544D01* +X-25719D01* +Y-103000D01* +X-27420D01* +Y-100647D01* +X-25719D01* +Y-101103D01* +D02* +G37* +G36* +X-27786D02* +X-28520D01* +Y-103000D01* +X-29126D01* +Y-101103D01* +X-29861D01* +Y-100647D01* +X-27786D01* +Y-101103D01* +D02* +G37* +G36* +X-29965Y-103000D02* +X-30592D01* +X-30756Y-102525D01* +X-31624D01* +X-31788Y-103000D01* +X-32400D01* +X-31532Y-100647D01* +X-30835D01* +X-29965Y-103000D01* +D02* +G37* +G36* +X-32645Y-101103D02* +X-33740D01* +Y-101507D01* +X-32724D01* +Y-101963D01* +X-33740D01* +Y-102544D01* +X-32645D01* +Y-103000D01* +X-34346D01* +Y-100647D01* +X-32645D01* +Y-101103D01* +D02* +G37* +G36* +X-16553Y99532D02* +X-17140D01* +X-18133Y101146D01* +Y99532D01* +X-18690D01* +Y101885D01* +X-17967D01* +X-17110Y100537D01* +Y101885D01* +X-16553D01* +Y99532D01* +D02* +G37* +G36* +X-19291D02* +X-19878D01* +X-20872Y101146D01* +Y99532D01* +X-21429D01* +Y101885D01* +X-20705D01* +X-19848Y100537D01* +Y101885D01* +X-19291D01* +Y99532D01* +D02* +G37* +G36* +X-26443D02* +X-27031D01* +X-28024Y101146D01* +Y99532D01* +X-28581D01* +Y101885D01* +X-27858D01* +X-27000Y100537D01* +Y101885D01* +X-26443D01* +Y99532D01* +D02* +G37* +G36* +X-13779D02* +X-14407D01* +X-14571Y100007D01* +X-15439D01* +X-15603Y99532D01* +X-16214D01* +X-15346Y101885D01* +X-14650D01* +X-13779Y99532D01* +D02* +G37* +G36* +X-21936Y101429D02* +X-23031D01* +Y101025D01* +X-22016D01* +Y100569D01* +X-23031D01* +Y99988D01* +X-21936D01* +Y99532D01* +X-23637D01* +Y101885D01* +X-21936D01* +Y101429D01* +D02* +G37* +G36* +X-24003D02* +X-24737D01* +Y99532D01* +X-25343D01* +Y101429D01* +X-26078D01* +Y101885D01* +X-24003D01* +Y101429D01* +D02* +G37* +G36* +X-28920Y99532D02* +X-29548D01* +X-29711Y100007D01* +X-30580D01* +X-30743Y99532D01* +X-31355D01* +X-30487Y101885D01* +X-29790D01* +X-28920Y99532D01* +D02* +G37* +%LPC*% +G36* +X49928Y-20605D02* +X49228D01* +Y-20780D01* +X48878D01* +Y-20955D01* +X48528D01* +Y-21130D01* +X48353D01* +Y-21305D01* +X48003D01* +Y-21480D01* +X47653D01* +Y-21655D01* +X47304D01* +Y-21829D01* +X47129D01* +Y-22004D01* +X46779D01* +Y-22179D01* +X46429D01* +Y-22354D01* +X46079D01* +Y-22529D01* +X45904D01* +Y-22704D01* +X45554D01* +Y-22879D01* +X45204D01* +Y-23054D01* +X45029D01* +Y-23229D01* +X44854D01* +Y-23404D01* +Y-23579D01* +Y-23754D01* +Y-23929D01* +Y-24104D01* +Y-24279D01* +Y-24454D01* +Y-24629D01* +Y-24804D01* +Y-24979D01* +Y-25153D01* +Y-25328D01* +X45029D01* +Y-25153D01* +X45379D01* +Y-24979D01* +X45729D01* +Y-24804D01* +X45904D01* +Y-24629D01* +X46254D01* +Y-24454D01* +X46604D01* +Y-24279D01* +X46954D01* +Y-24104D01* +X47129D01* +Y-23929D01* +X47479D01* +Y-23754D01* +X47828D01* +Y-23579D01* +X48178D01* +Y-23404D01* +X48353D01* +Y-23229D01* +X48703D01* +Y-23054D01* +X49053D01* +Y-22879D01* +X49228D01* +Y-22704D01* +X49753D01* +Y-22879D01* +X49928D01* +Y-23054D01* +X50278D01* +Y-23229D01* +X50627D01* +Y-23404D01* +X50977D01* +Y-23579D01* +X51152D01* +Y-23754D01* +X51502D01* +Y-23929D01* +X51852D01* +Y-24104D01* +X52027D01* +Y-24279D01* +X52377D01* +Y-24454D01* +X52727D01* +Y-24629D01* +X53077D01* +Y-24804D01* +X53252D01* +Y-24979D01* +X53602D01* +Y-25153D01* +X53951D01* +Y-25328D01* +X54126D01* +Y-25153D01* +Y-24979D01* +Y-24804D01* +Y-24629D01* +Y-24454D01* +Y-24279D01* +Y-24104D01* +Y-23929D01* +Y-23754D01* +Y-23579D01* +Y-23404D01* +Y-23229D01* +Y-23054D01* +X53777D01* +Y-22879D01* +X53427D01* +Y-22704D01* +X53077D01* +Y-22529D01* +X52902D01* +Y-22354D01* +X52552D01* +Y-22179D01* +X52202D01* +Y-22004D01* +X52027D01* +Y-21829D01* +X51677D01* +Y-21655D01* +X51327D01* +Y-21480D01* +X50977D01* +Y-21305D01* +X50802D01* +Y-21130D01* +X50453D01* +Y-20955D01* +X50103D01* +Y-20780D01* +X49928D01* +Y-20605D01* +D02* +G37* +G36* +X49753Y-25328D02* +X49228D01* +Y-25503D01* +X48878D01* +Y-25678D01* +X48528D01* +Y-25853D01* +X48353D01* +Y-26028D01* +X48003D01* +Y-26203D01* +X47653D01* +Y-26378D01* +X47304D01* +Y-26553D01* +X47129D01* +Y-26728D01* +X46779D01* +Y-26903D01* +X46429D01* +Y-27078D01* +X46079D01* +Y-27253D01* +X45904D01* +Y-27428D01* +X45554D01* +Y-27603D01* +X45204D01* +Y-27778D01* +X44854D01* +Y-27953D01* +Y-28128D01* +Y-28302D01* +Y-28477D01* +Y-28652D01* +Y-28827D01* +Y-29002D01* +Y-29177D01* +Y-29352D01* +X45029D01* +Y-29527D01* +X45204D01* +Y-29702D01* +X45554D01* +Y-29877D01* +X45904D01* +Y-30052D01* +X46079D01* +Y-30227D01* +X46429D01* +Y-30402D01* +X46779D01* +Y-30577D01* +X47129D01* +Y-30752D01* +X47304D01* +Y-30927D01* +X47653D01* +Y-31102D01* +X48003D01* +Y-31277D01* +X48353D01* +Y-31451D01* +X48528D01* +Y-31626D01* +X48878D01* +Y-31801D01* +X49228D01* +Y-31976D01* +X49403D01* +Y-32151D01* +X49753D01* +Y-32326D01* +X50103D01* +Y-32501D01* +X50453D01* +Y-32676D01* +X50627D01* +Y-32851D01* +X50453D01* +Y-33026D01* +X50103D01* +Y-33201D01* +X49753D01* +Y-33376D01* +X49053D01* +Y-33201D01* +X48703D01* +Y-33026D01* +X48528D01* +Y-32851D01* +X48178D01* +Y-32676D01* +X47828D01* +Y-32501D01* +X47653D01* +Y-32326D01* +X47304D01* +Y-32151D01* +X46954D01* +Y-31976D01* +X46604D01* +Y-31801D01* +X46429D01* +Y-31626D01* +X46079D01* +Y-31451D01* +X45729D01* +Y-31277D01* +X45554D01* +Y-31102D01* +X45204D01* +Y-30927D01* +X44854D01* +Y-31102D01* +Y-31277D01* +Y-31451D01* +Y-31626D01* +Y-31801D01* +Y-31976D01* +Y-32151D01* +Y-32326D01* +Y-32501D01* +Y-32676D01* +Y-32851D01* +Y-33026D01* +Y-33201D01* +Y-33376D01* +X45029D01* +Y-33551D01* +X45379D01* +Y-33726D01* +X45554D01* +Y-33901D01* +X45904D01* +Y-34076D01* +X46254D01* +Y-34251D01* +X46429D01* +Y-34426D01* +X46779D01* +Y-34600D01* +X47129D01* +Y-34775D01* +X47479D01* +Y-34950D01* +X47653D01* +Y-35125D01* +X48003D01* +Y-35300D01* +X48353D01* +Y-35475D01* +X48528D01* +Y-35650D01* +X48878D01* +Y-35825D01* +X49228D01* +Y-36000D01* +X49578D01* +Y-35825D01* +X49928D01* +Y-35650D01* +X50278D01* +Y-35475D01* +X50627D01* +Y-35300D01* +X50802D01* +Y-35125D01* +X51152D01* +Y-34950D01* +X51502D01* +Y-34775D01* +X51852D01* +Y-34600D01* +X52027D01* +Y-34426D01* +X52377D01* +Y-34251D01* +X52727D01* +Y-34076D01* +X53077D01* +Y-33901D01* +X53252D01* +Y-33726D01* +X53602D01* +Y-33551D01* +X53951D01* +Y-33376D01* +X54126D01* +Y-33201D01* +Y-33026D01* +Y-32851D01* +Y-32676D01* +Y-32501D01* +Y-32326D01* +Y-32151D01* +Y-31976D01* +X53951D01* +Y-31801D01* +X53777D01* +Y-31626D01* +X53427D01* +Y-31451D01* +X53077D01* +Y-31277D01* +X52727D01* +Y-31102D01* +X52552D01* +Y-30927D01* +X52202D01* +Y-30752D01* +X51852D01* +Y-30577D01* +X51677D01* +Y-30402D01* +X51327D01* +Y-30227D01* +X50977D01* +Y-30052D01* +X50627D01* +Y-29877D01* +X50453D01* +Y-29702D01* +X50103D01* +Y-29527D01* +X49753D01* +Y-29352D01* +X49403D01* +Y-29177D01* +X49228D01* +Y-29002D01* +X48878D01* +Y-28827D01* +X48528D01* +Y-28652D01* +X48353D01* +Y-28477D01* +Y-28302D01* +X48703D01* +Y-28128D01* +X49053D01* +Y-27953D01* +X49403D01* +Y-27778D01* +X49578D01* +Y-27953D01* +X49928D01* +Y-28128D01* +X50103D01* +Y-28302D01* +X50453D01* +Y-28477D01* +X50802D01* +Y-28652D01* +X51152D01* +Y-28827D01* +X51327D01* +Y-29002D01* +X51677D01* +Y-29177D01* +X52027D01* +Y-29352D01* +X52202D01* +Y-29527D01* +X52552D01* +Y-29702D01* +X52902D01* +Y-29877D01* +X53252D01* +Y-30052D01* +X53427D01* +Y-30227D01* +X53777D01* +Y-30402D01* +X54126D01* +Y-30227D01* +Y-30052D01* +Y-29877D01* +Y-29702D01* +Y-29527D01* +Y-29352D01* +Y-29177D01* +Y-29002D01* +Y-28827D01* +Y-28652D01* +Y-28477D01* +Y-28302D01* +Y-28128D01* +Y-27953D01* +X53951D01* +Y-27778D01* +X53602D01* +Y-27603D01* +X53427D01* +Y-27428D01* +X53077D01* +Y-27253D01* +X52727D01* +Y-27078D01* +X52377D01* +Y-26903D01* +X52202D01* +Y-26728D01* +X51852D01* +Y-26553D01* +X51502D01* +Y-26378D01* +X51327D01* +Y-26203D01* +X50977D01* +Y-26028D01* +X50627D01* +Y-25853D01* +X50278D01* +Y-25678D01* +X50103D01* +Y-25503D01* +X49753D01* +Y-25328D01* +D02* +G37* +G36* +X56576Y-29352D02* +X56401D01* +Y-29527D01* +Y-29702D01* +Y-29877D01* +Y-30052D01* +Y-30227D01* +Y-30402D01* +Y-30577D01* +Y-30752D01* +Y-30927D01* +Y-31102D01* +Y-31277D01* +Y-31451D01* +Y-31626D01* +Y-31801D01* +Y-31976D01* +Y-32151D01* +Y-32326D01* +Y-32501D01* +Y-32676D01* +Y-32851D01* +Y-33026D01* +Y-33201D01* +Y-33376D01* +Y-33551D01* +Y-33726D01* +Y-33901D01* +Y-34076D01* +Y-34251D01* +Y-34426D01* +Y-34600D01* +Y-34775D01* +X56051D01* +Y-34950D01* +X55876D01* +Y-35125D01* +X55526D01* +Y-35300D01* +X55176D01* +Y-35475D01* +X55001D01* +Y-35650D01* +X54651D01* +Y-35825D01* +X54301D01* +Y-36000D01* +X53951D01* +Y-36175D01* +X53602D01* +Y-36350D01* +X53427D01* +Y-36525D01* +X53077D01* +Y-36700D01* +X52727D01* +Y-36875D01* +X52377D01* +Y-37050D01* +X52202D01* +Y-37225D01* +X51852D01* +Y-37400D01* +X52027D01* +Y-37574D01* +X52377D01* +Y-37749D01* +X52727D01* +Y-37924D01* +X52902D01* +Y-38099D01* +X53252D01* +Y-38274D01* +X53602D01* +Y-38449D01* +X54301D01* +Y-38274D01* +X54476D01* +Y-38099D01* +X54826D01* +Y-37924D01* +X55176D01* +Y-37749D01* +X55526D01* +Y-37574D01* +X55701D01* +Y-37400D01* +X56051D01* +Y-37225D01* +X56401D01* +Y-37050D01* +X56751D01* +Y-36875D01* +X56925D01* +Y-36700D01* +X57275D01* +Y-36525D01* +X57625D01* +Y-36350D01* +X57975D01* +Y-36175D01* +X58150D01* +Y-36000D01* +X58500D01* +Y-35825D01* +Y-35650D01* +Y-35475D01* +Y-35300D01* +Y-35125D01* +Y-34950D01* +Y-34775D01* +Y-34600D01* +Y-34426D01* +Y-34251D01* +Y-34076D01* +Y-33901D01* +Y-33726D01* +Y-33551D01* +Y-33376D01* +Y-33201D01* +Y-33026D01* +Y-32851D01* +Y-32676D01* +Y-32501D01* +Y-32326D01* +Y-32151D01* +Y-31976D01* +Y-31801D01* +Y-31626D01* +Y-31451D01* +Y-31277D01* +Y-31102D01* +Y-30927D01* +Y-30752D01* +Y-30577D01* +X58325D01* +Y-30402D01* +X58150D01* +Y-30227D01* +X57800D01* +Y-30052D01* +X57450D01* +Y-29877D01* +X57100D01* +Y-29702D01* +X56925D01* +Y-29527D01* +X56576D01* +Y-29352D01* +D02* +G37* +G36* +X42580D02* +X42405D01* +Y-29527D01* +X42055D01* +Y-29702D01* +X41705D01* +Y-29877D01* +X41530D01* +Y-30052D01* +X41181D01* +Y-30227D01* +X40831D01* +Y-30402D01* +X40481D01* +Y-30577D01* +Y-30752D01* +Y-30927D01* +Y-31102D01* +Y-31277D01* +Y-31451D01* +Y-31626D01* +Y-31801D01* +Y-31976D01* +Y-32151D01* +Y-32326D01* +Y-32501D01* +Y-32676D01* +Y-32851D01* +Y-33026D01* +Y-33201D01* +Y-33376D01* +Y-33551D01* +Y-33726D01* +Y-33901D01* +Y-34076D01* +Y-34251D01* +Y-34426D01* +Y-34600D01* +Y-34775D01* +Y-34950D01* +Y-35125D01* +Y-35300D01* +Y-35475D01* +Y-35650D01* +Y-35825D01* +Y-36000D01* +X40831D01* +Y-36175D01* +X41181D01* +Y-36350D01* +X41355D01* +Y-36525D01* +X41705D01* +Y-36700D01* +X42055D01* +Y-36875D01* +X42230D01* +Y-37050D01* +X42580D01* +Y-37225D01* +X42930D01* +Y-37400D01* +X43280D01* +Y-37574D01* +X43455D01* +Y-37749D01* +X43805D01* +Y-37924D01* +X44155D01* +Y-38099D01* +X44504D01* +Y-38274D01* +X44679D01* +Y-38449D01* +X45379D01* +Y-38274D01* +X45729D01* +Y-38099D01* +X45904D01* +Y-37924D01* +X46254D01* +Y-37749D01* +X46604D01* +Y-37574D01* +X46954D01* +Y-37400D01* +X47129D01* +Y-37225D01* +X46779D01* +Y-37050D01* +X46604D01* +Y-36875D01* +X46254D01* +Y-36700D01* +X45904D01* +Y-36525D01* +X45554D01* +Y-36350D01* +X45379D01* +Y-36175D01* +X45029D01* +Y-36000D01* +X44679D01* +Y-35825D01* +X44330D01* +Y-35650D01* +X44155D01* +Y-35475D01* +X43805D01* +Y-35300D01* +X43455D01* +Y-35125D01* +X43105D01* +Y-34950D01* +X42930D01* +Y-34775D01* +X42580D01* +Y-34600D01* +Y-34426D01* +Y-34251D01* +Y-34076D01* +Y-33901D01* +Y-33726D01* +Y-33551D01* +Y-33376D01* +Y-33201D01* +Y-33026D01* +Y-32851D01* +Y-32676D01* +Y-32501D01* +Y-32326D01* +Y-32151D01* +Y-31976D01* +Y-31801D01* +Y-31626D01* +Y-31451D01* +Y-31277D01* +Y-31102D01* +Y-30927D01* +Y-30752D01* +Y-30577D01* +Y-30402D01* +Y-30227D01* +Y-30052D01* +Y-29877D01* +Y-29702D01* +Y-29527D01* +Y-29352D01* +D02* +G37* +G36* +X72566Y18919D02* +X72274D01* +Y18289D01* +X72509D01* +X72541Y18291D01* +X72580D01* +X72621Y18294D01* +X72659Y18297D01* +X72697Y18302D01* +X72703D01* +X72714Y18305D01* +X72733Y18310D01* +X72754Y18316D01* +X72782Y18324D01* +X72809Y18335D01* +X72836Y18349D01* +X72861Y18365D01* +X72864Y18368D01* +X72872Y18373D01* +X72883Y18384D01* +X72896Y18398D01* +X72926Y18430D01* +X72940Y18450D01* +X72954Y18472D01* +X72956Y18474D01* +X72959Y18482D01* +X72965Y18496D01* +X72970Y18515D01* +X72976Y18537D01* +X72978Y18564D01* +X72984Y18597D01* +Y18632D01* +Y18635D01* +Y18646D01* +X72981Y18663D01* +X72978Y18684D01* +X72976Y18709D01* +X72967Y18733D01* +X72959Y18758D01* +X72945Y18783D01* +X72943Y18785D01* +X72940Y18794D01* +X72929Y18804D01* +X72918Y18818D01* +X72899Y18835D01* +X72880Y18851D01* +X72853Y18867D01* +X72823Y18881D01* +X72820D01* +X72812Y18884D01* +X72798Y18889D01* +X72782Y18895D01* +X72763Y18900D01* +X72738Y18903D01* +X72711Y18908D01* +X72681Y18911D01* +X72678D01* +X72667Y18914D01* +X72648D01* +X72626Y18916D01* +X72599D01* +X72566Y18919D01* +D02* +G37* +G36* +X-121118Y-87706D02* +X-121405Y-88544D01* +X-120829D01* +X-121118Y-87706D01* +D02* +G37* +G36* +X-125759Y-87532D02* +X-126051D01* +Y-88162D01* +X-125817D01* +X-125784Y-88160D01* +X-125746D01* +X-125705Y-88157D01* +X-125667Y-88154D01* +X-125628Y-88149D01* +X-125623D01* +X-125612Y-88146D01* +X-125593Y-88140D01* +X-125571Y-88135D01* +X-125544Y-88127D01* +X-125516Y-88116D01* +X-125489Y-88102D01* +X-125465Y-88086D01* +X-125462Y-88083D01* +X-125454Y-88078D01* +X-125443Y-88067D01* +X-125429Y-88053D01* +X-125399Y-88020D01* +X-125385Y-88001D01* +X-125372Y-87979D01* +X-125369Y-87977D01* +X-125366Y-87968D01* +X-125361Y-87955D01* +X-125355Y-87936D01* +X-125350Y-87914D01* +X-125347Y-87887D01* +X-125342Y-87854D01* +Y-87818D01* +Y-87816D01* +Y-87805D01* +X-125344Y-87788D01* +X-125347Y-87766D01* +X-125350Y-87742D01* +X-125358Y-87717D01* +X-125366Y-87693D01* +X-125380Y-87668D01* +X-125383Y-87665D01* +X-125385Y-87657D01* +X-125396Y-87646D01* +X-125407Y-87633D01* +X-125426Y-87616D01* +X-125445Y-87600D01* +X-125473Y-87584D01* +X-125503Y-87570D01* +X-125505D01* +X-125514Y-87567D01* +X-125527Y-87562D01* +X-125544Y-87556D01* +X-125563Y-87551D01* +X-125587Y-87548D01* +X-125615Y-87543D01* +X-125645Y-87540D01* +X-125647D01* +X-125658Y-87537D01* +X-125678D01* +X-125699Y-87534D01* +X-125727D01* +X-125759Y-87532D01* +D02* +G37* +G36* +X-136753Y-87537D02* +X-136958D01* +Y-88239D01* +X-136731D01* +X-136696Y-88236D01* +X-136655D01* +X-136614Y-88231D01* +X-136570Y-88228D01* +X-136532Y-88222D01* +X-136527D01* +X-136516Y-88220D01* +X-136496Y-88214D01* +X-136472Y-88206D01* +X-136447Y-88195D01* +X-136417Y-88181D01* +X-136390Y-88165D01* +X-136363Y-88146D01* +X-136360Y-88143D01* +X-136354Y-88138D01* +X-136344Y-88127D01* +X-136330Y-88110D01* +X-136316Y-88094D01* +X-136303Y-88072D01* +X-136289Y-88050D01* +X-136278Y-88026D01* +Y-88023D01* +X-136273Y-88012D01* +X-136270Y-87998D01* +X-136264Y-87977D01* +X-136259Y-87952D01* +X-136256Y-87922D01* +X-136251Y-87889D01* +Y-87854D01* +Y-87848D01* +Y-87837D01* +X-136253Y-87818D01* +X-136256Y-87796D01* +X-136264Y-87769D01* +X-136273Y-87742D01* +X-136286Y-87712D01* +X-136305Y-87685D01* +X-136308Y-87682D01* +X-136314Y-87674D01* +X-136327Y-87660D01* +X-136341Y-87646D01* +X-136360Y-87630D01* +X-136382Y-87611D01* +X-136406Y-87597D01* +X-136431Y-87584D01* +X-136436Y-87581D01* +X-136447Y-87578D01* +X-136467Y-87570D01* +X-136491Y-87564D01* +X-136518Y-87556D01* +X-136548Y-87551D01* +X-136584Y-87545D01* +X-136617Y-87543D01* +X-136633D01* +X-136652Y-87540D01* +X-136712D01* +X-136753Y-87537D01* +D02* +G37* +G36* +X-133013Y-87493D02* +X-133032D01* +X-133054Y-87496D01* +X-133084Y-87499D01* +X-133117Y-87504D01* +X-133152Y-87513D01* +X-133191Y-87524D01* +X-133229Y-87537D01* +X-133234Y-87540D01* +X-133245Y-87545D01* +X-133264Y-87556D01* +X-133289Y-87570D01* +X-133319Y-87589D01* +X-133349Y-87611D01* +X-133381Y-87638D01* +X-133414Y-87671D01* +X-133417Y-87674D01* +X-133428Y-87687D01* +X-133442Y-87706D01* +X-133461Y-87736D01* +X-133480Y-87769D01* +X-133502Y-87813D01* +X-133523Y-87862D01* +X-133543Y-87917D01* +Y-87919D01* +X-133545Y-87925D01* +X-133548Y-87933D01* +X-133551Y-87944D01* +X-133554Y-87958D01* +X-133559Y-87977D01* +X-133567Y-88020D01* +X-133575Y-88072D01* +X-133584Y-88135D01* +X-133589Y-88203D01* +X-133592Y-88277D01* +Y-88280D01* +Y-88285D01* +Y-88296D01* +Y-88313D01* +X-133589Y-88329D01* +Y-88351D01* +X-133586Y-88400D01* +X-133581Y-88457D01* +X-133573Y-88517D01* +X-133562Y-88577D01* +X-133545Y-88635D01* +Y-88637D01* +X-133543Y-88640D01* +X-133540Y-88648D01* +X-133537Y-88659D01* +X-133526Y-88687D01* +X-133510Y-88719D01* +X-133493Y-88757D01* +X-133472Y-88798D01* +X-133444Y-88837D01* +X-133417Y-88875D01* +X-133414Y-88878D01* +X-133403Y-88891D01* +X-133387Y-88908D01* +X-133365Y-88927D01* +X-133338Y-88949D01* +X-133308Y-88970D01* +X-133272Y-88992D01* +X-133234Y-89011D01* +X-133229Y-89014D01* +X-133215Y-89017D01* +X-133193Y-89025D01* +X-133166Y-89033D01* +X-133133Y-89041D01* +X-133095Y-89047D01* +X-133057Y-89052D01* +X-133013Y-89055D01* +X-132994D01* +X-132969Y-89052D01* +X-132942Y-89050D01* +X-132906Y-89044D01* +X-132871Y-89036D01* +X-132830Y-89025D01* +X-132792Y-89011D01* +X-132786Y-89009D01* +X-132773Y-89003D01* +X-132754Y-88992D01* +X-132729Y-88979D01* +X-132699Y-88957D01* +X-132669Y-88935D01* +X-132636Y-88905D01* +X-132606Y-88872D01* +X-132604Y-88867D01* +X-132593Y-88853D01* +X-132576Y-88831D01* +X-132557Y-88798D01* +X-132535Y-88763D01* +X-132513Y-88719D01* +X-132494Y-88670D01* +X-132475Y-88618D01* +Y-88616D01* +X-132473Y-88613D01* +X-132470Y-88605D01* +X-132467Y-88591D01* +X-132464Y-88577D01* +X-132462Y-88561D01* +X-132453Y-88520D01* +X-132445Y-88468D01* +X-132437Y-88411D01* +X-132434Y-88345D01* +X-132431Y-88274D01* +Y-88271D01* +Y-88266D01* +Y-88255D01* +Y-88239D01* +X-132434Y-88220D01* +Y-88200D01* +X-132437Y-88151D01* +X-132442Y-88094D01* +X-132453Y-88034D01* +X-132464Y-87974D01* +X-132481Y-87917D01* +Y-87914D01* +X-132483Y-87911D01* +X-132486Y-87903D01* +X-132489Y-87892D01* +X-132500Y-87865D01* +X-132516Y-87829D01* +X-132533Y-87791D01* +X-132554Y-87750D01* +X-132582Y-87712D01* +X-132609Y-87674D01* +X-132612Y-87668D01* +X-132623Y-87657D01* +X-132639Y-87641D01* +X-132661Y-87622D01* +X-132688Y-87600D01* +X-132721Y-87578D01* +X-132756Y-87556D01* +X-132795Y-87537D01* +X-132800Y-87534D01* +X-132814Y-87529D01* +X-132833Y-87524D01* +X-132860Y-87515D01* +X-132893Y-87507D01* +X-132931Y-87499D01* +X-132969Y-87496D01* +X-133013Y-87493D01* +D02* +G37* +G36* +X-139240D02* +X-139259D01* +X-139281Y-87496D01* +X-139311Y-87499D01* +X-139344Y-87504D01* +X-139379Y-87513D01* +X-139418Y-87524D01* +X-139456Y-87537D01* +X-139461Y-87540D01* +X-139472Y-87545D01* +X-139491Y-87556D01* +X-139516Y-87570D01* +X-139546Y-87589D01* +X-139576Y-87611D01* +X-139609Y-87638D01* +X-139641Y-87671D01* +X-139644Y-87674D01* +X-139655Y-87687D01* +X-139669Y-87706D01* +X-139688Y-87736D01* +X-139707Y-87769D01* +X-139729Y-87813D01* +X-139751Y-87862D01* +X-139770Y-87917D01* +Y-87919D01* +X-139772Y-87925D01* +X-139775Y-87933D01* +X-139778Y-87944D01* +X-139781Y-87958D01* +X-139786Y-87977D01* +X-139794Y-88020D01* +X-139803Y-88072D01* +X-139811Y-88135D01* +X-139816Y-88203D01* +X-139819Y-88277D01* +Y-88280D01* +Y-88285D01* +Y-88296D01* +Y-88313D01* +X-139816Y-88329D01* +Y-88351D01* +X-139813Y-88400D01* +X-139808Y-88457D01* +X-139800Y-88517D01* +X-139789Y-88577D01* +X-139772Y-88635D01* +Y-88637D01* +X-139770Y-88640D01* +X-139767Y-88648D01* +X-139764Y-88659D01* +X-139753Y-88687D01* +X-139737Y-88719D01* +X-139721Y-88757D01* +X-139699Y-88798D01* +X-139672Y-88837D01* +X-139644Y-88875D01* +X-139641Y-88878D01* +X-139630Y-88891D01* +X-139614Y-88908D01* +X-139592Y-88927D01* +X-139565Y-88949D01* +X-139535Y-88970D01* +X-139499Y-88992D01* +X-139461Y-89011D01* +X-139456Y-89014D01* +X-139442Y-89017D01* +X-139420Y-89025D01* +X-139393Y-89033D01* +X-139360Y-89041D01* +X-139322Y-89047D01* +X-139284Y-89052D01* +X-139240Y-89055D01* +X-139221D01* +X-139197Y-89052D01* +X-139169Y-89050D01* +X-139134Y-89044D01* +X-139098Y-89036D01* +X-139057Y-89025D01* +X-139019Y-89011D01* +X-139014Y-89009D01* +X-139000Y-89003D01* +X-138981Y-88992D01* +X-138956Y-88979D01* +X-138926Y-88957D01* +X-138896Y-88935D01* +X-138863Y-88905D01* +X-138833Y-88872D01* +X-138831Y-88867D01* +X-138820Y-88853D01* +X-138803Y-88831D01* +X-138784Y-88798D01* +X-138762Y-88763D01* +X-138741Y-88719D01* +X-138721Y-88670D01* +X-138702Y-88618D01* +Y-88616D01* +X-138700Y-88613D01* +X-138697Y-88605D01* +X-138694Y-88591D01* +X-138691Y-88577D01* +X-138689Y-88561D01* +X-138681Y-88520D01* +X-138672Y-88468D01* +X-138664Y-88411D01* +X-138661Y-88345D01* +X-138659Y-88274D01* +Y-88271D01* +Y-88266D01* +Y-88255D01* +Y-88239D01* +X-138661Y-88220D01* +Y-88200D01* +X-138664Y-88151D01* +X-138670Y-88094D01* +X-138681Y-88034D01* +X-138691Y-87974D01* +X-138708Y-87917D01* +Y-87914D01* +X-138710Y-87911D01* +X-138713Y-87903D01* +X-138716Y-87892D01* +X-138727Y-87865D01* +X-138743Y-87829D01* +X-138760Y-87791D01* +X-138781Y-87750D01* +X-138809Y-87712D01* +X-138836Y-87674D01* +X-138839Y-87668D01* +X-138850Y-87657D01* +X-138866Y-87641D01* +X-138888Y-87622D01* +X-138915Y-87600D01* +X-138948Y-87578D01* +X-138984Y-87556D01* +X-139022Y-87537D01* +X-139027Y-87534D01* +X-139041Y-87529D01* +X-139060Y-87524D01* +X-139087Y-87515D01* +X-139120Y-87507D01* +X-139158Y-87499D01* +X-139197Y-87496D01* +X-139240Y-87493D01* +D02* +G37* +G36* +X54272Y102369D02* +X54269D01* +X54261D01* +X54250D01* +X54233D01* +X54211Y102367D01* +X54190Y102364D01* +X54162Y102361D01* +X54135Y102358D01* +X54072Y102348D01* +X54007Y102334D01* +X53938Y102312D01* +X53876Y102285D01* +X53873D01* +X53868Y102282D01* +X53859Y102277D01* +X53848Y102268D01* +X53818Y102249D01* +X53780Y102219D01* +X53739Y102181D01* +X53695Y102137D01* +X53654Y102080D01* +X53616Y102017D01* +X53614Y102015D01* +X53608Y102001D01* +X53603Y101982D01* +X53592Y101960D01* +X53584Y101930D01* +X53573Y101897D01* +X53556Y101826D01* +Y101821D01* +X53553Y101807D01* +X53551Y101785D01* +X53545Y101755D01* +X53543Y101714D01* +X53540Y101662D01* +X53537Y101602D01* +Y101384D01* +X55006D01* +Y101608D01* +X55003Y101654D01* +X55000Y101706D01* +X54998Y101758D01* +X54992Y101807D01* +X54987Y101851D01* +Y101856D01* +X54984Y101867D01* +X54979Y101889D01* +X54970Y101913D01* +X54962Y101944D01* +X54949Y101976D01* +X54935Y102012D01* +X54916Y102047D01* +Y102050D01* +X54910Y102055D01* +X54905Y102064D01* +X54899Y102075D01* +X54878Y102105D01* +X54848Y102140D01* +X54812Y102181D01* +X54768Y102219D01* +X54719Y102257D01* +X54662Y102290D01* +X54659D01* +X54654Y102293D01* +X54646Y102298D01* +X54635Y102304D01* +X54618Y102309D01* +X54599Y102315D01* +X54577Y102323D01* +X54553Y102331D01* +X54498Y102345D01* +X54430Y102358D01* +X54356Y102367D01* +X54272Y102369D01* +D02* +G37* +G36* +X58232Y101782D02* +X58229D01* +X58221D01* +X58210D01* +X58194D01* +X58172Y101780D01* +X58150Y101777D01* +X58123Y101774D01* +X58095Y101771D01* +X58033Y101761D01* +X57967Y101747D01* +X57899Y101725D01* +X57836Y101698D01* +X57833D01* +X57828Y101695D01* +X57820Y101690D01* +X57809Y101681D01* +X57779Y101662D01* +X57740Y101632D01* +X57700Y101594D01* +X57656Y101550D01* +X57615Y101493D01* +X57577Y101430D01* +X57574Y101427D01* +X57569Y101414D01* +X57563Y101395D01* +X57552Y101373D01* +X57544Y101343D01* +X57533Y101310D01* +X57517Y101239D01* +Y101234D01* +X57514Y101220D01* +X57511Y101198D01* +X57506Y101168D01* +X57503Y101127D01* +X57500Y101075D01* +X57498Y101015D01* +Y100797D01* +X58966D01* +Y101021D01* +X58964Y101067D01* +X58961Y101119D01* +X58958Y101171D01* +X58953Y101220D01* +X58947Y101264D01* +Y101269D01* +X58944Y101280D01* +X58939Y101302D01* +X58931Y101327D01* +X58923Y101356D01* +X58909Y101389D01* +X58895Y101425D01* +X58876Y101460D01* +Y101463D01* +X58871Y101469D01* +X58865Y101477D01* +X58860Y101488D01* +X58838Y101518D01* +X58808Y101553D01* +X58772Y101594D01* +X58729Y101632D01* +X58680Y101671D01* +X58622Y101703D01* +X58620D01* +X58614Y101706D01* +X58606Y101711D01* +X58595Y101717D01* +X58579Y101722D01* +X58560Y101728D01* +X58538Y101736D01* +X58513Y101744D01* +X58459Y101758D01* +X58390Y101771D01* +X58316Y101780D01* +X58232Y101782D01* +D02* +G37* +G36* +X61859Y96595D02* +X61824D01* +X61821D01* +X61810D01* +X61794Y96593D01* +X61772Y96590D01* +X61747Y96587D01* +X61723Y96579D01* +X61698Y96571D01* +X61674Y96557D01* +X61671Y96554D01* +X61663Y96552D01* +X61652Y96541D01* +X61638Y96530D01* +X61622Y96511D01* +X61605Y96492D01* +X61589Y96464D01* +X61575Y96434D01* +Y96432D01* +X61573Y96423D01* +X61567Y96410D01* +X61562Y96393D01* +X61556Y96374D01* +X61554Y96350D01* +X61548Y96322D01* +X61545Y96292D01* +Y96290D01* +X61543Y96279D01* +Y96260D01* +X61540Y96238D01* +Y96210D01* +X61537Y96178D01* +Y95886D01* +X62168D01* +Y96120D01* +X62165Y96153D01* +Y96191D01* +X62162Y96232D01* +X62160Y96271D01* +X62154Y96309D01* +Y96314D01* +X62151Y96325D01* +X62146Y96344D01* +X62140Y96366D01* +X62132Y96393D01* +X62121Y96421D01* +X62108Y96448D01* +X62091Y96473D01* +X62089Y96475D01* +X62083Y96483D01* +X62072Y96494D01* +X62059Y96508D01* +X62026Y96538D01* +X62007Y96552D01* +X61985Y96565D01* +X61982Y96568D01* +X61974Y96571D01* +X61960Y96576D01* +X61941Y96582D01* +X61919Y96587D01* +X61892Y96590D01* +X61859Y96595D01* +D02* +G37* +G36* +X-48398Y-101037D02* +X-48616D01* +Y-102506D01* +X-48392D01* +X-48346Y-102503D01* +X-48294Y-102500D01* +X-48242Y-102498D01* +X-48193Y-102492D01* +X-48149Y-102487D01* +X-48144D01* +X-48133Y-102484D01* +X-48111Y-102479D01* +X-48087Y-102470D01* +X-48057Y-102462D01* +X-48024Y-102448D01* +X-47988Y-102435D01* +X-47953Y-102416D01* +X-47950D01* +X-47945Y-102410D01* +X-47936Y-102405D01* +X-47925Y-102399D01* +X-47895Y-102378D01* +X-47860Y-102348D01* +X-47819Y-102312D01* +X-47781Y-102268D01* +X-47743Y-102219D01* +X-47710Y-102162D01* +Y-102159D01* +X-47707Y-102154D01* +X-47702Y-102146D01* +X-47696Y-102135D01* +X-47691Y-102118D01* +X-47685Y-102099D01* +X-47677Y-102077D01* +X-47669Y-102053D01* +X-47655Y-101998D01* +X-47642Y-101930D01* +X-47633Y-101856D01* +X-47631Y-101771D01* +Y-101769D01* +Y-101761D01* +Y-101750D01* +Y-101733D01* +X-47633Y-101711D01* +X-47636Y-101690D01* +X-47639Y-101662D01* +X-47642Y-101635D01* +X-47653Y-101572D01* +X-47666Y-101507D01* +X-47688Y-101438D01* +X-47715Y-101376D01* +Y-101373D01* +X-47718Y-101367D01* +X-47723Y-101359D01* +X-47732Y-101348D01* +X-47751Y-101318D01* +X-47781Y-101280D01* +X-47819Y-101239D01* +X-47863Y-101196D01* +X-47920Y-101154D01* +X-47983Y-101116D01* +X-47986Y-101114D01* +X-47999Y-101108D01* +X-48018Y-101103D01* +X-48040Y-101092D01* +X-48070Y-101084D01* +X-48103Y-101073D01* +X-48174Y-101056D01* +X-48179D01* +X-48193Y-101054D01* +X-48215Y-101051D01* +X-48245Y-101045D01* +X-48286Y-101043D01* +X-48338Y-101040D01* +X-48398Y-101037D01* +D02* +G37* +G36* +X71355Y-27537D02* +X71063D01* +Y-28168D01* +X71298D01* +X71330Y-28165D01* +X71369D01* +X71409Y-28162D01* +X71448Y-28160D01* +X71486Y-28154D01* +X71491D01* +X71502Y-28151D01* +X71521Y-28146D01* +X71543Y-28141D01* +X71571Y-28132D01* +X71598Y-28121D01* +X71625Y-28108D01* +X71650Y-28091D01* +X71653Y-28089D01* +X71661Y-28083D01* +X71672Y-28072D01* +X71685Y-28059D01* +X71715Y-28026D01* +X71729Y-28007D01* +X71743Y-27985D01* +X71745Y-27982D01* +X71748Y-27974D01* +X71754Y-27960D01* +X71759Y-27941D01* +X71764Y-27919D01* +X71767Y-27892D01* +X71773Y-27859D01* +Y-27824D01* +Y-27821D01* +Y-27810D01* +X71770Y-27794D01* +X71767Y-27772D01* +X71764Y-27747D01* +X71756Y-27723D01* +X71748Y-27698D01* +X71734Y-27674D01* +X71732Y-27671D01* +X71729Y-27663D01* +X71718Y-27652D01* +X71707Y-27638D01* +X71688Y-27622D01* +X71669Y-27605D01* +X71642Y-27589D01* +X71611Y-27575D01* +X71609D01* +X71601Y-27573D01* +X71587Y-27567D01* +X71571Y-27562D01* +X71552Y-27556D01* +X71527Y-27553D01* +X71500Y-27548D01* +X71470Y-27545D01* +X71467D01* +X71456Y-27543D01* +X71437D01* +X71415Y-27540D01* +X71388D01* +X71355Y-27537D01* +D02* +G37* +G36* +X65095Y-46167D02* +X65087D01* +X65066Y-46172D01* +X65030Y-46176D01* +X64985Y-46180D01* +X64927Y-46184D01* +X64866Y-46192D01* +X64796Y-46200D01* +X64722Y-46209D01* +X64714D01* +X64689Y-46213D01* +X64652Y-46217D01* +X64607Y-46225D01* +X64558Y-46233D01* +X64509Y-46241D01* +X64460Y-46254D01* +X64415Y-46266D01* +X64411D01* +X64394Y-46274D01* +X64369Y-46282D01* +X64345Y-46295D01* +X64279Y-46332D01* +X64251Y-46356D01* +X64222Y-46385D01* +X64218Y-46389D01* +X64214Y-46397D01* +X64201Y-46413D01* +X64189Y-46438D01* +X64177Y-46467D01* +X64169Y-46500D01* +X64160Y-46541D01* +X64156Y-46586D01* +Y-46590D01* +Y-46598D01* +Y-46614D01* +Y-46635D01* +X64160Y-46676D01* +X64169Y-46721D01* +Y-46725D01* +X64173Y-46729D01* +X64181Y-46750D01* +X64201Y-46782D01* +X64218Y-46799D01* +X64238Y-46819D01* +X64242D01* +X64246Y-46828D01* +X64259Y-46836D01* +X64275Y-46848D01* +X64316Y-46869D01* +X64365Y-46889D01* +X64369D01* +X64382Y-46893D01* +X64398Y-46897D01* +X64423D01* +X64460Y-46901D01* +X64501Y-46905D01* +X64546Y-46910D01* +X64624D01* +X64652Y-46905D01* +X64685Y-46901D01* +X64722Y-46897D01* +X64767Y-46889D01* +X64812Y-46877D01* +X64862Y-46860D01* +X64866Y-46856D01* +X64882Y-46852D01* +X64907Y-46840D01* +X64939Y-46823D01* +X64976Y-46803D01* +X65017Y-46778D01* +X65095Y-46721D01* +Y-46167D01* +D02* +G37* +G36* +X59433D02* +X59425D01* +X59404Y-46172D01* +X59368Y-46176D01* +X59322Y-46180D01* +X59265Y-46184D01* +X59203Y-46192D01* +X59134Y-46200D01* +X59060Y-46209D01* +X59052D01* +X59027Y-46213D01* +X58990Y-46217D01* +X58945Y-46225D01* +X58896Y-46233D01* +X58847Y-46241D01* +X58798Y-46254D01* +X58753Y-46266D01* +X58748D01* +X58732Y-46274D01* +X58707Y-46282D01* +X58683Y-46295D01* +X58617Y-46332D01* +X58588Y-46356D01* +X58560Y-46385D01* +X58556Y-46389D01* +X58552Y-46397D01* +X58539Y-46413D01* +X58527Y-46438D01* +X58515Y-46467D01* +X58507Y-46500D01* +X58498Y-46541D01* +X58494Y-46586D01* +Y-46590D01* +Y-46598D01* +Y-46614D01* +Y-46635D01* +X58498Y-46676D01* +X58507Y-46721D01* +Y-46725D01* +X58511Y-46729D01* +X58519Y-46750D01* +X58539Y-46782D01* +X58556Y-46799D01* +X58576Y-46819D01* +X58580D01* +X58584Y-46828D01* +X58597Y-46836D01* +X58613Y-46848D01* +X58654Y-46869D01* +X58703Y-46889D01* +X58707D01* +X58720Y-46893D01* +X58736Y-46897D01* +X58761D01* +X58798Y-46901D01* +X58839Y-46905D01* +X58884Y-46910D01* +X58962D01* +X58990Y-46905D01* +X59023Y-46901D01* +X59060Y-46897D01* +X59105Y-46889D01* +X59150Y-46877D01* +X59199Y-46860D01* +X59203Y-46856D01* +X59220Y-46852D01* +X59245Y-46840D01* +X59277Y-46823D01* +X59314Y-46803D01* +X59355Y-46778D01* +X59433Y-46721D01* +Y-46167D01* +D02* +G37* +G36* +X52438D02* +X52430D01* +X52410Y-46172D01* +X52373Y-46176D01* +X52328Y-46180D01* +X52270Y-46184D01* +X52209Y-46192D01* +X52139Y-46200D01* +X52065Y-46209D01* +X52057D01* +X52033Y-46213D01* +X51996Y-46217D01* +X51951Y-46225D01* +X51901Y-46233D01* +X51852Y-46241D01* +X51803Y-46254D01* +X51758Y-46266D01* +X51754D01* +X51737Y-46274D01* +X51713Y-46282D01* +X51688Y-46295D01* +X51623Y-46332D01* +X51594Y-46356D01* +X51565Y-46385D01* +X51561Y-46389D01* +X51557Y-46397D01* +X51545Y-46413D01* +X51532Y-46438D01* +X51520Y-46467D01* +X51512Y-46500D01* +X51504Y-46541D01* +X51500Y-46586D01* +Y-46590D01* +Y-46598D01* +Y-46614D01* +Y-46635D01* +X51504Y-46676D01* +X51512Y-46721D01* +Y-46725D01* +X51516Y-46729D01* +X51524Y-46750D01* +X51545Y-46782D01* +X51561Y-46799D01* +X51582Y-46819D01* +X51586D01* +X51590Y-46828D01* +X51602Y-46836D01* +X51618Y-46848D01* +X51660Y-46869D01* +X51709Y-46889D01* +X51713D01* +X51725Y-46893D01* +X51741Y-46897D01* +X51766D01* +X51803Y-46901D01* +X51844Y-46905D01* +X51889Y-46910D01* +X51967D01* +X51996Y-46905D01* +X52029Y-46901D01* +X52065Y-46897D01* +X52110Y-46889D01* +X52156Y-46877D01* +X52205Y-46860D01* +X52209Y-46856D01* +X52225Y-46852D01* +X52250Y-46840D01* +X52283Y-46823D01* +X52320Y-46803D01* +X52361Y-46778D01* +X52438Y-46721D01* +Y-46167D01* +D02* +G37* +G36* +X46309D02* +X46301D01* +X46280Y-46172D01* +X46243Y-46176D01* +X46198Y-46180D01* +X46141Y-46184D01* +X46079Y-46192D01* +X46010Y-46200D01* +X45936Y-46209D01* +X45928D01* +X45903Y-46213D01* +X45866Y-46217D01* +X45821Y-46225D01* +X45772Y-46233D01* +X45723Y-46241D01* +X45673Y-46254D01* +X45628Y-46266D01* +X45624D01* +X45608Y-46274D01* +X45583Y-46282D01* +X45559Y-46295D01* +X45493Y-46332D01* +X45464Y-46356D01* +X45436Y-46385D01* +X45432Y-46389D01* +X45428Y-46397D01* +X45415Y-46413D01* +X45403Y-46438D01* +X45391Y-46467D01* +X45382Y-46500D01* +X45374Y-46541D01* +X45370Y-46586D01* +Y-46590D01* +Y-46598D01* +Y-46614D01* +Y-46635D01* +X45374Y-46676D01* +X45382Y-46721D01* +Y-46725D01* +X45386Y-46729D01* +X45395Y-46750D01* +X45415Y-46782D01* +X45432Y-46799D01* +X45452Y-46819D01* +X45456D01* +X45460Y-46828D01* +X45473Y-46836D01* +X45489Y-46848D01* +X45530Y-46869D01* +X45579Y-46889D01* +X45583D01* +X45596Y-46893D01* +X45612Y-46897D01* +X45637D01* +X45673Y-46901D01* +X45715Y-46905D01* +X45760Y-46910D01* +X45838D01* +X45866Y-46905D01* +X45899Y-46901D01* +X45936Y-46897D01* +X45981Y-46889D01* +X46026Y-46877D01* +X46075Y-46860D01* +X46079Y-46856D01* +X46096Y-46852D01* +X46120Y-46840D01* +X46153Y-46823D01* +X46190Y-46803D01* +X46231Y-46778D01* +X46309Y-46721D01* +Y-46167D01* +D02* +G37* +G36* +X87079Y-45265D02* +X87034D01* +X87006Y-45270D01* +X86969Y-45274D01* +X86932Y-45282D01* +X86858Y-45302D01* +X86854D01* +X86842Y-45311D01* +X86825Y-45319D01* +X86801Y-45331D01* +X86772Y-45347D01* +X86739Y-45372D01* +X86706Y-45401D01* +X86673Y-45434D01* +X86669Y-45438D01* +X86661Y-45450D01* +X86645Y-45470D01* +X86628Y-45499D01* +X86608Y-45536D01* +X86587Y-45581D01* +X86567Y-45630D01* +X86550Y-45688D01* +Y-45696D01* +X86542Y-45717D01* +X86538Y-45749D01* +X86530Y-45799D01* +X86522Y-45856D01* +X86514Y-45926D01* +X86510Y-46003D01* +X86505Y-46094D01* +Y-46098D01* +Y-46102D01* +Y-46114D01* +Y-46131D01* +X86510Y-46172D01* +Y-46221D01* +X86514Y-46282D01* +X86522Y-46344D01* +X86530Y-46409D01* +X86542Y-46471D01* +Y-46479D01* +X86550Y-46496D01* +X86559Y-46528D01* +X86571Y-46561D01* +X86592Y-46602D01* +X86608Y-46647D01* +X86633Y-46688D01* +X86661Y-46729D01* +X86665Y-46733D01* +X86673Y-46746D01* +X86690Y-46762D01* +X86715Y-46782D01* +X86739Y-46803D01* +X86772Y-46828D01* +X86805Y-46848D01* +X86842Y-46865D01* +X86846D01* +X86862Y-46873D01* +X86883Y-46877D01* +X86911Y-46885D01* +X86948Y-46893D01* +X86989Y-46897D01* +X87034Y-46905D01* +X87104D01* +X87129Y-46901D01* +X87157D01* +X87190Y-46897D01* +X87227Y-46889D01* +X87305Y-46869D01* +X87309Y-46865D01* +X87321Y-46860D01* +X87342Y-46852D01* +X87366Y-46836D01* +X87395Y-46819D01* +X87428Y-46795D01* +X87457Y-46770D01* +X87485Y-46737D01* +X87489Y-46733D01* +X87498Y-46721D01* +X87514Y-46696D01* +X87530Y-46668D01* +X87551Y-46631D01* +X87571Y-46590D01* +X87592Y-46545D01* +X87608Y-46491D01* +X87612Y-46483D01* +X87616Y-46467D01* +X87625Y-46434D01* +X87633Y-46389D01* +X87641Y-46332D01* +X87645Y-46262D01* +X87653Y-46184D01* +Y-46094D01* +Y-46090D01* +Y-46081D01* +Y-46069D01* +Y-46053D01* +X87649Y-46012D01* +Y-45958D01* +X87641Y-45893D01* +X87633Y-45827D01* +X87625Y-45762D01* +X87608Y-45700D01* +Y-45692D01* +X87600Y-45676D01* +X87592Y-45643D01* +X87580Y-45610D01* +X87563Y-45569D01* +X87543Y-45524D01* +X87518Y-45483D01* +X87489Y-45446D01* +X87485Y-45442D01* +X87477Y-45430D01* +X87461Y-45413D01* +X87440Y-45393D01* +X87411Y-45368D01* +X87383Y-45343D01* +X87346Y-45323D01* +X87309Y-45307D01* +X87305D01* +X87293Y-45298D01* +X87268Y-45294D01* +X87239Y-45286D01* +X87207Y-45278D01* +X87165Y-45274D01* +X87079Y-45265D01* +D02* +G37* +G36* +X71454D02* +X71409D01* +X71381Y-45270D01* +X71344Y-45274D01* +X71307Y-45282D01* +X71233Y-45302D01* +X71229D01* +X71216Y-45311D01* +X71200Y-45319D01* +X71175Y-45331D01* +X71147Y-45347D01* +X71114Y-45372D01* +X71081Y-45401D01* +X71048Y-45434D01* +X71044Y-45438D01* +X71036Y-45450D01* +X71020Y-45470D01* +X71003Y-45499D01* +X70983Y-45536D01* +X70962Y-45581D01* +X70942Y-45630D01* +X70925Y-45688D01* +Y-45696D01* +X70917Y-45717D01* +X70913Y-45749D01* +X70905Y-45799D01* +X70897Y-45856D01* +X70889Y-45926D01* +X70884Y-46003D01* +X70880Y-46094D01* +Y-46098D01* +Y-46102D01* +Y-46114D01* +Y-46131D01* +X70884Y-46172D01* +Y-46221D01* +X70889Y-46282D01* +X70897Y-46344D01* +X70905Y-46409D01* +X70917Y-46471D01* +Y-46479D01* +X70925Y-46496D01* +X70934Y-46528D01* +X70946Y-46561D01* +X70966Y-46602D01* +X70983Y-46647D01* +X71007Y-46688D01* +X71036Y-46729D01* +X71040Y-46733D01* +X71048Y-46746D01* +X71065Y-46762D01* +X71089Y-46782D01* +X71114Y-46803D01* +X71147Y-46828D01* +X71180Y-46848D01* +X71216Y-46865D01* +X71221D01* +X71237Y-46873D01* +X71258Y-46877D01* +X71286Y-46885D01* +X71323Y-46893D01* +X71364Y-46897D01* +X71409Y-46905D01* +X71479D01* +X71504Y-46901D01* +X71532D01* +X71565Y-46897D01* +X71602Y-46889D01* +X71680Y-46869D01* +X71684Y-46865D01* +X71696Y-46860D01* +X71717Y-46852D01* +X71741Y-46836D01* +X71770Y-46819D01* +X71803Y-46795D01* +X71832Y-46770D01* +X71860Y-46737D01* +X71864Y-46733D01* +X71873Y-46721D01* +X71889Y-46696D01* +X71905Y-46668D01* +X71926Y-46631D01* +X71946Y-46590D01* +X71967Y-46545D01* +X71983Y-46491D01* +X71987Y-46483D01* +X71991Y-46467D01* +X72000Y-46434D01* +X72008Y-46389D01* +X72016Y-46332D01* +X72020Y-46262D01* +X72028Y-46184D01* +Y-46094D01* +Y-46090D01* +Y-46081D01* +Y-46069D01* +Y-46053D01* +X72024Y-46012D01* +Y-45958D01* +X72016Y-45893D01* +X72008Y-45827D01* +X72000Y-45762D01* +X71983Y-45700D01* +Y-45692D01* +X71975Y-45676D01* +X71967Y-45643D01* +X71955Y-45610D01* +X71938Y-45569D01* +X71918Y-45524D01* +X71893Y-45483D01* +X71864Y-45446D01* +X71860Y-45442D01* +X71852Y-45430D01* +X71836Y-45413D01* +X71815Y-45393D01* +X71786Y-45368D01* +X71758Y-45343D01* +X71721Y-45323D01* +X71684Y-45307D01* +X71680D01* +X71667Y-45298D01* +X71643Y-45294D01* +X71614Y-45286D01* +X71581Y-45278D01* +X71540Y-45274D01* +X71454Y-45265D01* +D02* +G37* +G36* +X81025Y-50638D02* +X80632D01* +Y-51384D01* +X81017D01* +X81083Y-51380D01* +X81148D01* +X81165Y-51376D01* +X81193D01* +X81226Y-51372D01* +X81304Y-51355D01* +X81345Y-51343D01* +X81378Y-51331D01* +X81382Y-51327D01* +X81398Y-51323D01* +X81419Y-51310D01* +X81444Y-51294D01* +X81497Y-51249D01* +X81521Y-51220D01* +X81538Y-51191D01* +Y-51187D01* +X81546Y-51175D01* +X81550Y-51158D01* +X81558Y-51134D01* +X81567Y-51105D01* +X81571Y-51068D01* +X81579Y-50990D01* +Y-50986D01* +Y-50974D01* +X81575Y-50958D01* +Y-50937D01* +X81558Y-50880D01* +X81550Y-50851D01* +X81534Y-50818D01* +Y-50814D01* +X81525Y-50802D01* +X81513Y-50785D01* +X81497Y-50769D01* +X81476Y-50744D01* +X81448Y-50724D01* +X81415Y-50703D01* +X81378Y-50683D01* +X81374D01* +X81362Y-50679D01* +X81341Y-50671D01* +X81312Y-50662D01* +X81275Y-50658D01* +X81234Y-50650D01* +X81185Y-50646D01* +X81132Y-50642D01* +X81070D01* +X81025Y-50638D01* +D02* +G37* +G36* +X81095Y-51995D02* +X80632D01* +Y-52876D01* +X81271D01* +X81300Y-52872D01* +X81341Y-52868D01* +X81390Y-52860D01* +X81439Y-52848D01* +X81493Y-52835D01* +X81546Y-52815D01* +X81554Y-52811D01* +X81571Y-52803D01* +X81595Y-52790D01* +X81624Y-52770D01* +X81657Y-52749D01* +X81690Y-52721D01* +X81718Y-52692D01* +X81743Y-52655D01* +X81747Y-52651D01* +X81751Y-52639D01* +X81759Y-52618D01* +X81771Y-52589D01* +X81780Y-52557D01* +X81788Y-52520D01* +X81792Y-52475D01* +X81796Y-52429D01* +Y-52421D01* +Y-52401D01* +X81792Y-52372D01* +X81788Y-52335D01* +X81780Y-52294D01* +X81767Y-52249D01* +X81751Y-52208D01* +X81731Y-52171D01* +X81726Y-52167D01* +X81718Y-52155D01* +X81702Y-52138D01* +X81677Y-52118D01* +X81648Y-52097D01* +X81612Y-52073D01* +X81562Y-52052D01* +X81509Y-52032D01* +X81505D01* +X81489Y-52028D01* +X81464Y-52024D01* +X81431Y-52015D01* +X81390Y-52011D01* +X81341Y-52007D01* +X81279Y-52003D01* +X81214Y-51999D01* +X81144D01* +X81095Y-51995D01* +D02* +G37* +G36* +X71349Y-50650D02* +X71021D01* +Y-52856D01* +X71358D01* +X71427Y-52852D01* +X71505Y-52848D01* +X71583Y-52844D01* +X71657Y-52835D01* +X71722Y-52827D01* +X71731D01* +X71747Y-52823D01* +X71780Y-52815D01* +X71817Y-52803D01* +X71862Y-52790D01* +X71911Y-52770D01* +X71964Y-52749D01* +X72018Y-52721D01* +X72022D01* +X72030Y-52712D01* +X72042Y-52704D01* +X72059Y-52696D01* +X72104Y-52663D01* +X72157Y-52618D01* +X72219Y-52565D01* +X72276Y-52499D01* +X72333Y-52425D01* +X72382Y-52339D01* +Y-52335D01* +X72387Y-52327D01* +X72395Y-52315D01* +X72403Y-52298D01* +X72411Y-52274D01* +X72419Y-52245D01* +X72432Y-52212D01* +X72444Y-52175D01* +X72465Y-52093D01* +X72485Y-51991D01* +X72497Y-51880D01* +X72501Y-51753D01* +Y-51749D01* +Y-51737D01* +Y-51720D01* +Y-51696D01* +X72497Y-51663D01* +X72493Y-51630D01* +X72489Y-51589D01* +X72485Y-51548D01* +X72469Y-51454D01* +X72448Y-51355D01* +X72415Y-51253D01* +X72374Y-51158D01* +Y-51154D01* +X72370Y-51146D01* +X72362Y-51134D01* +X72350Y-51117D01* +X72321Y-51072D01* +X72276Y-51015D01* +X72219Y-50954D01* +X72153Y-50888D01* +X72067Y-50826D01* +X71973Y-50769D01* +X71968Y-50765D01* +X71948Y-50757D01* +X71919Y-50748D01* +X71886Y-50732D01* +X71841Y-50720D01* +X71792Y-50703D01* +X71685Y-50679D01* +X71677D01* +X71657Y-50675D01* +X71624Y-50671D01* +X71579Y-50662D01* +X71517Y-50658D01* +X71439Y-50654D01* +X71349Y-50650D01* +D02* +G37* +G36* +X52727Y-52274D02* +X52719D01* +X52698Y-52278D01* +X52662Y-52282D01* +X52616Y-52286D01* +X52559Y-52290D01* +X52498Y-52298D01* +X52428Y-52306D01* +X52354Y-52315D01* +X52346D01* +X52321Y-52319D01* +X52284Y-52323D01* +X52239Y-52331D01* +X52190Y-52339D01* +X52141Y-52347D01* +X52092Y-52360D01* +X52047Y-52372D01* +X52042D01* +X52026Y-52380D01* +X52001Y-52389D01* +X51977Y-52401D01* +X51911Y-52438D01* +X51882Y-52462D01* +X51854Y-52491D01* +X51850Y-52495D01* +X51846Y-52503D01* +X51833Y-52520D01* +X51821Y-52544D01* +X51809Y-52573D01* +X51801Y-52606D01* +X51792Y-52647D01* +X51788Y-52692D01* +Y-52696D01* +Y-52704D01* +Y-52721D01* +Y-52741D01* +X51792Y-52782D01* +X51801Y-52827D01* +Y-52831D01* +X51805Y-52835D01* +X51813Y-52856D01* +X51833Y-52889D01* +X51850Y-52905D01* +X51870Y-52926D01* +X51874D01* +X51878Y-52934D01* +X51891Y-52942D01* +X51907Y-52954D01* +X51948Y-52975D01* +X51997Y-52995D01* +X52001D01* +X52014Y-52999D01* +X52030Y-53004D01* +X52055D01* +X52092Y-53008D01* +X52133Y-53012D01* +X52178Y-53016D01* +X52256D01* +X52284Y-53012D01* +X52317Y-53008D01* +X52354Y-53004D01* +X52399Y-52995D01* +X52444Y-52983D01* +X52493Y-52967D01* +X52498Y-52962D01* +X52514Y-52958D01* +X52539Y-52946D01* +X52571Y-52930D01* +X52608Y-52909D01* +X52649Y-52885D01* +X52727Y-52827D01* +Y-52274D01* +D02* +G37* +G36* +X60751Y-51310D02* +X60710D01* +X60665Y-51318D01* +X60607Y-51327D01* +X60542Y-51343D01* +X60476Y-51363D01* +X60406Y-51396D01* +X60345Y-51441D01* +X60337Y-51446D01* +X60320Y-51466D01* +X60296Y-51495D01* +X60263Y-51540D01* +X60234Y-51597D01* +X60206Y-51667D01* +X60181Y-51749D01* +X60169Y-51847D01* +X61276D01* +Y-51843D01* +Y-51835D01* +Y-51823D01* +X61272Y-51802D01* +X61267Y-51757D01* +X61255Y-51696D01* +X61239Y-51630D01* +X61214Y-51564D01* +X61181Y-51503D01* +X61140Y-51446D01* +X61136Y-51441D01* +X61116Y-51425D01* +X61087Y-51405D01* +X61046Y-51376D01* +X60993Y-51351D01* +X60923Y-51331D01* +X60845Y-51314D01* +X60751Y-51310D01* +D02* +G37* +G36* +X84641Y-51372D02* +X84596D01* +X84568Y-51376D01* +X84531Y-51380D01* +X84494Y-51388D01* +X84420Y-51409D01* +X84416D01* +X84404Y-51417D01* +X84387Y-51425D01* +X84363Y-51437D01* +X84334Y-51454D01* +X84301Y-51478D01* +X84268Y-51507D01* +X84236Y-51540D01* +X84232Y-51544D01* +X84223Y-51556D01* +X84207Y-51577D01* +X84190Y-51605D01* +X84170Y-51642D01* +X84149Y-51687D01* +X84129Y-51737D01* +X84113Y-51794D01* +Y-51802D01* +X84104Y-51823D01* +X84100Y-51855D01* +X84092Y-51905D01* +X84084Y-51962D01* +X84076Y-52032D01* +X84072Y-52110D01* +X84067Y-52200D01* +Y-52204D01* +Y-52208D01* +Y-52220D01* +Y-52237D01* +X84072Y-52278D01* +Y-52327D01* +X84076Y-52389D01* +X84084Y-52450D01* +X84092Y-52516D01* +X84104Y-52577D01* +Y-52585D01* +X84113Y-52602D01* +X84121Y-52635D01* +X84133Y-52667D01* +X84154Y-52708D01* +X84170Y-52753D01* +X84195Y-52794D01* +X84223Y-52835D01* +X84227Y-52839D01* +X84236Y-52852D01* +X84252Y-52868D01* +X84277Y-52889D01* +X84301Y-52909D01* +X84334Y-52934D01* +X84367Y-52954D01* +X84404Y-52971D01* +X84408D01* +X84424Y-52979D01* +X84445Y-52983D01* +X84473Y-52991D01* +X84510Y-52999D01* +X84551Y-53004D01* +X84596Y-53012D01* +X84666D01* +X84691Y-53008D01* +X84719D01* +X84752Y-53004D01* +X84789Y-52995D01* +X84867Y-52975D01* +X84871Y-52971D01* +X84883Y-52967D01* +X84904Y-52958D01* +X84929Y-52942D01* +X84957Y-52926D01* +X84990Y-52901D01* +X85019Y-52876D01* +X85047Y-52844D01* +X85052Y-52839D01* +X85060Y-52827D01* +X85076Y-52803D01* +X85093Y-52774D01* +X85113Y-52737D01* +X85133Y-52696D01* +X85154Y-52651D01* +X85170Y-52598D01* +X85175Y-52589D01* +X85179Y-52573D01* +X85187Y-52540D01* +X85195Y-52495D01* +X85203Y-52438D01* +X85207Y-52368D01* +X85216Y-52290D01* +Y-52200D01* +Y-52196D01* +Y-52188D01* +Y-52175D01* +Y-52159D01* +X85211Y-52118D01* +Y-52065D01* +X85203Y-51999D01* +X85195Y-51933D01* +X85187Y-51868D01* +X85170Y-51806D01* +Y-51798D01* +X85162Y-51782D01* +X85154Y-51749D01* +X85142Y-51716D01* +X85125Y-51675D01* +X85105Y-51630D01* +X85080Y-51589D01* +X85052Y-51552D01* +X85047Y-51548D01* +X85039Y-51536D01* +X85023Y-51519D01* +X85002Y-51499D01* +X84974Y-51474D01* +X84945Y-51450D01* +X84908Y-51429D01* +X84871Y-51413D01* +X84867D01* +X84855Y-51405D01* +X84830Y-51400D01* +X84801Y-51392D01* +X84769Y-51384D01* +X84728Y-51380D01* +X84641Y-51372D01* +D02* +G37* +G36* +X54274Y89065D02* +X54272D01* +X54266D01* +X54255D01* +X54239D01* +X54220Y89062D01* +X54201D01* +X54151Y89060D01* +X54094Y89054D01* +X54034Y89043D01* +X53974Y89033D01* +X53917Y89016D01* +X53914D01* +X53911Y89013D01* +X53903Y89011D01* +X53892Y89008D01* +X53865Y88997D01* +X53829Y88981D01* +X53791Y88964D01* +X53750Y88942D01* +X53712Y88915D01* +X53674Y88888D01* +X53668Y88885D01* +X53657Y88874D01* +X53641Y88858D01* +X53622Y88836D01* +X53600Y88809D01* +X53578Y88776D01* +X53556Y88740D01* +X53537Y88702D01* +X53534Y88697D01* +X53529Y88683D01* +X53523Y88664D01* +X53515Y88637D01* +X53507Y88604D01* +X53499Y88566D01* +X53496Y88527D01* +X53493Y88484D01* +Y88465D01* +X53496Y88443D01* +X53499Y88413D01* +X53504Y88380D01* +X53513Y88345D01* +X53523Y88306D01* +X53537Y88268D01* +X53540Y88263D01* +X53545Y88252D01* +X53556Y88233D01* +X53570Y88208D01* +X53589Y88178D01* +X53611Y88148D01* +X53638Y88115D01* +X53671Y88082D01* +X53674Y88080D01* +X53687Y88069D01* +X53706Y88055D01* +X53736Y88036D01* +X53769Y88017D01* +X53813Y87995D01* +X53862Y87973D01* +X53917Y87954D01* +X53919D01* +X53925Y87951D01* +X53933Y87949D01* +X53944Y87946D01* +X53958Y87943D01* +X53977Y87938D01* +X54020Y87930D01* +X54072Y87921D01* +X54135Y87913D01* +X54203Y87908D01* +X54277Y87905D01* +X54280D01* +X54285D01* +X54296D01* +X54312D01* +X54329Y87908D01* +X54351D01* +X54400Y87910D01* +X54457Y87916D01* +X54517Y87924D01* +X54577Y87935D01* +X54635Y87951D01* +X54637D01* +X54640Y87954D01* +X54648Y87957D01* +X54659Y87960D01* +X54686Y87971D01* +X54719Y87987D01* +X54757Y88003D01* +X54798Y88025D01* +X54837Y88052D01* +X54875Y88080D01* +X54878Y88082D01* +X54891Y88093D01* +X54908Y88110D01* +X54927Y88132D01* +X54949Y88159D01* +X54970Y88189D01* +X54992Y88224D01* +X55011Y88263D01* +X55014Y88268D01* +X55017Y88282D01* +X55025Y88304D01* +X55033Y88331D01* +X55041Y88364D01* +X55047Y88402D01* +X55052Y88440D01* +X55055Y88484D01* +Y88503D01* +X55052Y88527D01* +X55050Y88555D01* +X55044Y88590D01* +X55036Y88626D01* +X55025Y88667D01* +X55011Y88705D01* +X55009Y88710D01* +X55003Y88724D01* +X54992Y88743D01* +X54979Y88768D01* +X54957Y88798D01* +X54935Y88828D01* +X54905Y88860D01* +X54872Y88890D01* +X54867Y88893D01* +X54853Y88904D01* +X54831Y88921D01* +X54798Y88940D01* +X54763Y88961D01* +X54719Y88983D01* +X54670Y89003D01* +X54618Y89022D01* +X54615D01* +X54613Y89024D01* +X54605Y89027D01* +X54591Y89030D01* +X54577Y89033D01* +X54561Y89035D01* +X54520Y89043D01* +X54468Y89052D01* +X54411Y89060D01* +X54345Y89062D01* +X54274Y89065D01* +D02* +G37* +G36* +Y86316D02* +X54272D01* +X54266D01* +X54255D01* +X54239D01* +X54220Y86313D01* +X54201D01* +X54151Y86311D01* +X54094Y86305D01* +X54034Y86294D01* +X53974Y86283D01* +X53917Y86267D01* +X53914D01* +X53911Y86264D01* +X53903Y86261D01* +X53892Y86259D01* +X53865Y86248D01* +X53829Y86231D01* +X53791Y86215D01* +X53750Y86193D01* +X53712Y86166D01* +X53674Y86139D01* +X53668Y86136D01* +X53657Y86125D01* +X53641Y86109D01* +X53622Y86087D01* +X53600Y86059D01* +X53578Y86027D01* +X53556Y85991D01* +X53537Y85953D01* +X53534Y85948D01* +X53529Y85934D01* +X53523Y85915D01* +X53515Y85887D01* +X53507Y85855D01* +X53499Y85817D01* +X53496Y85778D01* +X53493Y85735D01* +Y85716D01* +X53496Y85694D01* +X53499Y85664D01* +X53504Y85631D01* +X53513Y85595D01* +X53523Y85557D01* +X53537Y85519D01* +X53540Y85514D01* +X53545Y85503D01* +X53556Y85483D01* +X53570Y85459D01* +X53589Y85429D01* +X53611Y85399D01* +X53638Y85366D01* +X53671Y85333D01* +X53674Y85331D01* +X53687Y85320D01* +X53706Y85306D01* +X53736Y85287D01* +X53769Y85268D01* +X53813Y85246D01* +X53862Y85224D01* +X53917Y85205D01* +X53919D01* +X53925Y85202D01* +X53933Y85200D01* +X53944Y85197D01* +X53958Y85194D01* +X53977Y85189D01* +X54020Y85180D01* +X54072Y85172D01* +X54135Y85164D01* +X54203Y85159D01* +X54277Y85156D01* +X54280D01* +X54285D01* +X54296D01* +X54312D01* +X54329Y85159D01* +X54351D01* +X54400Y85161D01* +X54457Y85167D01* +X54517Y85175D01* +X54577Y85186D01* +X54635Y85202D01* +X54637D01* +X54640Y85205D01* +X54648Y85208D01* +X54659Y85211D01* +X54686Y85221D01* +X54719Y85238D01* +X54757Y85254D01* +X54798Y85276D01* +X54837Y85303D01* +X54875Y85331D01* +X54878Y85333D01* +X54891Y85344D01* +X54908Y85361D01* +X54927Y85382D01* +X54949Y85410D01* +X54970Y85440D01* +X54992Y85475D01* +X55011Y85514D01* +X55014Y85519D01* +X55017Y85533D01* +X55025Y85554D01* +X55033Y85582D01* +X55041Y85615D01* +X55047Y85653D01* +X55052Y85691D01* +X55055Y85735D01* +Y85754D01* +X55052Y85778D01* +X55050Y85806D01* +X55044Y85841D01* +X55036Y85877D01* +X55025Y85918D01* +X55011Y85956D01* +X55009Y85961D01* +X55003Y85975D01* +X54992Y85994D01* +X54979Y86019D01* +X54957Y86049D01* +X54935Y86079D01* +X54905Y86111D01* +X54872Y86141D01* +X54867Y86144D01* +X54853Y86155D01* +X54831Y86172D01* +X54798Y86191D01* +X54763Y86212D01* +X54719Y86234D01* +X54670Y86253D01* +X54618Y86273D01* +X54615D01* +X54613Y86275D01* +X54605Y86278D01* +X54591Y86281D01* +X54577Y86283D01* +X54561Y86286D01* +X54520Y86294D01* +X54468Y86303D01* +X54411Y86311D01* +X54345Y86313D01* +X54274Y86316D01* +D02* +G37* +G36* +X54722Y83578D02* +X54716D01* +X54703D01* +X54684Y83575D01* +X54659Y83573D01* +X54632Y83567D01* +X54602Y83559D01* +X54575Y83548D01* +X54550Y83534D01* +X54547Y83531D01* +X54539Y83526D01* +X54528Y83515D01* +X54514Y83499D01* +X54501Y83480D01* +X54484Y83455D01* +X54471Y83422D01* +X54457Y83387D01* +Y83384D01* +X54454Y83373D01* +X54452Y83357D01* +X54446Y83335D01* +X54444Y83308D01* +X54441Y83275D01* +X54438Y83234D01* +X54435Y83190D01* +Y83144D01* +X54433Y83111D01* +Y82803D01* +X55019D01* +Y83228D01* +X55017Y83248D01* +X55014Y83275D01* +X55009Y83308D01* +X55000Y83340D01* +X54992Y83376D01* +X54979Y83411D01* +X54976Y83417D01* +X54970Y83428D01* +X54962Y83444D01* +X54949Y83463D01* +X54935Y83485D01* +X54916Y83507D01* +X54897Y83526D01* +X54872Y83543D01* +X54869Y83545D01* +X54861Y83548D01* +X54848Y83553D01* +X54828Y83562D01* +X54807Y83567D01* +X54782Y83573D01* +X54752Y83575D01* +X54722Y83578D01* +D02* +G37* +G36* +X53764Y83433D02* +X53761D01* +X53753D01* +X53742Y83430D01* +X53728D01* +X53690Y83420D01* +X53671Y83414D01* +X53649Y83403D01* +X53646D01* +X53638Y83398D01* +X53627Y83390D01* +X53616Y83379D01* +X53600Y83365D01* +X53586Y83346D01* +X53573Y83324D01* +X53559Y83299D01* +Y83297D01* +X53556Y83289D01* +X53551Y83275D01* +X53545Y83256D01* +X53543Y83231D01* +X53537Y83204D01* +X53534Y83171D01* +X53532Y83136D01* +Y83095D01* +X53529Y83065D01* +Y82803D01* +X54026D01* +Y83059D01* +X54023Y83103D01* +Y83147D01* +X54020Y83157D01* +Y83177D01* +X54018Y83198D01* +X54007Y83250D01* +X53999Y83278D01* +X53990Y83299D01* +X53988Y83302D01* +X53985Y83313D01* +X53977Y83327D01* +X53966Y83343D01* +X53936Y83379D01* +X53917Y83395D01* +X53898Y83406D01* +X53895D01* +X53887Y83411D01* +X53876Y83414D01* +X53859Y83420D01* +X53840Y83425D01* +X53816Y83428D01* +X53764Y83433D01* +D02* +G37* +G36* +X58321Y91369D02* +X58318D01* +X58310D01* +X58299D01* +X58282D01* +X58261Y91367D01* +X58239Y91364D01* +X58211Y91361D01* +X58184Y91359D01* +X58121Y91347D01* +X58056Y91334D01* +X57988Y91312D01* +X57925Y91285D01* +X57922D01* +X57917Y91282D01* +X57908Y91277D01* +X57898Y91268D01* +X57867Y91249D01* +X57829Y91219D01* +X57788Y91181D01* +X57745Y91137D01* +X57704Y91080D01* +X57665Y91017D01* +X57663Y91014D01* +X57657Y91001D01* +X57652Y90982D01* +X57641Y90960D01* +X57633Y90930D01* +X57622Y90897D01* +X57605Y90826D01* +Y90821D01* +X57603Y90807D01* +X57600Y90785D01* +X57595Y90755D01* +X57592Y90714D01* +X57589Y90662D01* +X57586Y90602D01* +Y90384D01* +X59055D01* +Y90608D01* +X59052Y90654D01* +X59049Y90706D01* +X59047Y90758D01* +X59041Y90807D01* +X59036Y90851D01* +Y90856D01* +X59033Y90867D01* +X59028Y90889D01* +X59020Y90913D01* +X59011Y90943D01* +X58998Y90976D01* +X58984Y91012D01* +X58965Y91047D01* +Y91050D01* +X58960Y91055D01* +X58954Y91064D01* +X58948Y91075D01* +X58927Y91105D01* +X58897Y91140D01* +X58861Y91181D01* +X58817Y91219D01* +X58768Y91257D01* +X58711Y91290D01* +X58708D01* +X58703Y91293D01* +X58695Y91298D01* +X58684Y91304D01* +X58667Y91309D01* +X58648Y91315D01* +X58626Y91323D01* +X58602Y91331D01* +X58547Y91345D01* +X58479Y91359D01* +X58405Y91367D01* +X58321Y91369D01* +D02* +G37* +G36* +X57903Y86092D02* +X57867D01* +X57865D01* +X57854D01* +X57837Y86089D01* +X57816Y86087D01* +X57791Y86084D01* +X57766Y86076D01* +X57742Y86068D01* +X57717Y86054D01* +X57715Y86051D01* +X57706Y86049D01* +X57696Y86038D01* +X57682Y86027D01* +X57665Y86008D01* +X57649Y85988D01* +X57633Y85961D01* +X57619Y85931D01* +Y85928D01* +X57616Y85920D01* +X57611Y85907D01* +X57605Y85890D01* +X57600Y85871D01* +X57597Y85847D01* +X57592Y85819D01* +X57589Y85789D01* +Y85786D01* +X57586Y85776D01* +Y85756D01* +X57583Y85735D01* +Y85707D01* +X57581Y85675D01* +Y85382D01* +X58211D01* +Y85617D01* +X58209Y85650D01* +Y85688D01* +X58206Y85729D01* +X58203Y85767D01* +X58198Y85806D01* +Y85811D01* +X58195Y85822D01* +X58190Y85841D01* +X58184Y85863D01* +X58176Y85890D01* +X58165Y85918D01* +X58151Y85945D01* +X58135Y85969D01* +X58132Y85972D01* +X58127Y85980D01* +X58116Y85991D01* +X58102Y86005D01* +X58069Y86035D01* +X58050Y86049D01* +X58029Y86062D01* +X58026Y86065D01* +X58018Y86068D01* +X58004Y86073D01* +X57985Y86079D01* +X57963Y86084D01* +X57936Y86087D01* +X57903Y86092D01* +D02* +G37* +G36* +X60674Y47622D02* +X60387Y46783D01* +X60963D01* +X60674Y47622D01* +D02* +G37* +G36* +X57864Y47791D02* +X57646D01* +Y46322D01* +X57870D01* +X57916Y46325D01* +X57968Y46327D01* +X58020Y46330D01* +X58069Y46336D01* +X58113Y46341D01* +X58118D01* +X58129Y46344D01* +X58151Y46349D01* +X58176Y46358D01* +X58206Y46366D01* +X58239Y46379D01* +X58274Y46393D01* +X58309Y46412D01* +X58312D01* +X58318Y46417D01* +X58326Y46423D01* +X58337Y46428D01* +X58367Y46450D01* +X58402Y46480D01* +X58443Y46516D01* +X58481Y46560D01* +X58520Y46609D01* +X58552Y46666D01* +Y46669D01* +X58555Y46674D01* +X58561Y46682D01* +X58566Y46693D01* +X58571Y46710D01* +X58577Y46729D01* +X58585Y46751D01* +X58593Y46775D01* +X58607Y46830D01* +X58621Y46898D01* +X58629Y46972D01* +X58632Y47056D01* +Y47059D01* +Y47067D01* +Y47078D01* +Y47095D01* +X58629Y47116D01* +X58626Y47138D01* +X58623Y47166D01* +X58621Y47193D01* +X58610Y47256D01* +X58596Y47321D01* +X58574Y47389D01* +X58547Y47452D01* +Y47455D01* +X58544Y47460D01* +X58539Y47469D01* +X58531Y47480D01* +X58512Y47510D01* +X58481Y47548D01* +X58443Y47589D01* +X58399Y47632D01* +X58342Y47673D01* +X58279Y47712D01* +X58277Y47714D01* +X58263Y47720D01* +X58244Y47725D01* +X58222Y47736D01* +X58192Y47744D01* +X58159Y47755D01* +X58088Y47772D01* +X58083D01* +X58069Y47774D01* +X58047Y47777D01* +X58017Y47782D01* +X57976Y47785D01* +X57924Y47788D01* +X57864Y47791D01* +D02* +G37* +G36* +X60502Y41963D02* +X60283D01* +Y40494D01* +X60507D01* +X60553Y40497D01* +X60605Y40500D01* +X60657Y40502D01* +X60706Y40508D01* +X60750Y40513D01* +X60755D01* +X60766Y40516D01* +X60788Y40521D01* +X60813Y40530D01* +X60843Y40538D01* +X60876Y40551D01* +X60911Y40565D01* +X60947Y40584D01* +X60949D01* +X60955Y40590D01* +X60963Y40595D01* +X60974Y40601D01* +X61004Y40622D01* +X61039Y40652D01* +X61080Y40688D01* +X61119Y40732D01* +X61157Y40781D01* +X61190Y40838D01* +Y40841D01* +X61192Y40846D01* +X61198Y40854D01* +X61203Y40865D01* +X61209Y40882D01* +X61214Y40901D01* +X61222Y40923D01* +X61230Y40947D01* +X61244Y41002D01* +X61258Y41070D01* +X61266Y41144D01* +X61269Y41229D01* +Y41231D01* +Y41239D01* +Y41250D01* +Y41267D01* +X61266Y41289D01* +X61263Y41310D01* +X61261Y41338D01* +X61258Y41365D01* +X61247Y41428D01* +X61233Y41493D01* +X61211Y41562D01* +X61184Y41624D01* +Y41627D01* +X61181Y41633D01* +X61176Y41641D01* +X61168Y41652D01* +X61149Y41682D01* +X61119Y41720D01* +X61080Y41761D01* +X61037Y41805D01* +X60979Y41846D01* +X60917Y41884D01* +X60914Y41886D01* +X60900Y41892D01* +X60881Y41897D01* +X60859Y41908D01* +X60829Y41916D01* +X60796Y41927D01* +X60725Y41944D01* +X60720D01* +X60706Y41947D01* +X60685Y41949D01* +X60654Y41955D01* +X60614Y41957D01* +X60562Y41960D01* +X60502Y41963D01* +D02* +G37* +G36* +X74502Y28963D02* +X74283D01* +Y27494D01* +X74507D01* +X74554Y27497D01* +X74605Y27500D01* +X74657Y27502D01* +X74706Y27508D01* +X74750Y27513D01* +X74756D01* +X74766Y27516D01* +X74788Y27521D01* +X74813Y27530D01* +X74843Y27538D01* +X74876Y27551D01* +X74911Y27565D01* +X74947Y27584D01* +X74949D01* +X74955Y27590D01* +X74963Y27595D01* +X74974Y27601D01* +X75004Y27622D01* +X75039Y27652D01* +X75080Y27688D01* +X75119Y27732D01* +X75157Y27781D01* +X75190Y27838D01* +Y27841D01* +X75192Y27846D01* +X75198Y27854D01* +X75203Y27865D01* +X75209Y27882D01* +X75214Y27901D01* +X75222Y27923D01* +X75230Y27947D01* +X75244Y28002D01* +X75258Y28070D01* +X75266Y28144D01* +X75269Y28229D01* +Y28231D01* +Y28239D01* +Y28250D01* +Y28267D01* +X75266Y28289D01* +X75263Y28310D01* +X75261Y28338D01* +X75258Y28365D01* +X75247Y28428D01* +X75233Y28493D01* +X75211Y28562D01* +X75184Y28624D01* +Y28627D01* +X75181Y28633D01* +X75176Y28641D01* +X75168Y28652D01* +X75149Y28682D01* +X75119Y28720D01* +X75080Y28761D01* +X75037Y28804D01* +X74979Y28846D01* +X74917Y28884D01* +X74914Y28886D01* +X74900Y28892D01* +X74881Y28897D01* +X74859Y28908D01* +X74829Y28916D01* +X74796Y28927D01* +X74726Y28944D01* +X74720D01* +X74706Y28947D01* +X74685Y28949D01* +X74655Y28955D01* +X74614Y28957D01* +X74562Y28960D01* +X74502Y28963D01* +D02* +G37* +G36* +X54298Y-101206D02* +X54011Y-102044D01* +X54588D01* +X54298Y-101206D01* +D02* +G37* +G36* +X41863Y-101037D02* +X41658D01* +Y-101739D01* +X41885D01* +X41920Y-101736D01* +X41961D01* +X42002Y-101731D01* +X42046Y-101728D01* +X42084Y-101722D01* +X42090D01* +X42101Y-101720D01* +X42120Y-101714D01* +X42144Y-101706D01* +X42169Y-101695D01* +X42199Y-101681D01* +X42226Y-101665D01* +X42253Y-101646D01* +X42256Y-101643D01* +X42261Y-101638D01* +X42272Y-101627D01* +X42286Y-101610D01* +X42300Y-101594D01* +X42313Y-101572D01* +X42327Y-101550D01* +X42338Y-101526D01* +Y-101523D01* +X42344Y-101512D01* +X42346Y-101498D01* +X42352Y-101477D01* +X42357Y-101452D01* +X42360Y-101422D01* +X42365Y-101389D01* +Y-101354D01* +Y-101348D01* +Y-101337D01* +X42363Y-101318D01* +X42360Y-101296D01* +X42352Y-101269D01* +X42344Y-101242D01* +X42330Y-101212D01* +X42311Y-101185D01* +X42308Y-101182D01* +X42303Y-101174D01* +X42289Y-101160D01* +X42275Y-101146D01* +X42256Y-101130D01* +X42234Y-101111D01* +X42210Y-101097D01* +X42185Y-101084D01* +X42180Y-101081D01* +X42169Y-101078D01* +X42150Y-101070D01* +X42125Y-101064D01* +X42098Y-101056D01* +X42068Y-101051D01* +X42032Y-101045D01* +X42000Y-101043D01* +X41983D01* +X41964Y-101040D01* +X41904D01* +X41863Y-101037D01* +D02* +G37* +G36* +X-24313Y-101081D02* +X-24606D01* +Y-101711D01* +X-24371D01* +X-24338Y-101709D01* +X-24300D01* +X-24259Y-101706D01* +X-24221Y-101703D01* +X-24182Y-101698D01* +X-24177D01* +X-24166Y-101695D01* +X-24147Y-101690D01* +X-24125Y-101684D01* +X-24098Y-101676D01* +X-24070Y-101665D01* +X-24043Y-101651D01* +X-24019Y-101635D01* +X-24016Y-101632D01* +X-24008Y-101627D01* +X-23997Y-101616D01* +X-23983Y-101602D01* +X-23953Y-101569D01* +X-23939Y-101550D01* +X-23926Y-101529D01* +X-23923Y-101526D01* +X-23920Y-101518D01* +X-23915Y-101504D01* +X-23909Y-101485D01* +X-23904Y-101463D01* +X-23901Y-101436D01* +X-23896Y-101403D01* +Y-101367D01* +Y-101365D01* +Y-101354D01* +X-23898Y-101337D01* +X-23901Y-101316D01* +X-23904Y-101291D01* +X-23912Y-101266D01* +X-23920Y-101242D01* +X-23934Y-101217D01* +X-23937Y-101215D01* +X-23939Y-101206D01* +X-23950Y-101196D01* +X-23961Y-101182D01* +X-23980Y-101165D01* +X-24000Y-101149D01* +X-24027Y-101133D01* +X-24057Y-101119D01* +X-24059D01* +X-24068Y-101116D01* +X-24081Y-101111D01* +X-24098Y-101105D01* +X-24117Y-101100D01* +X-24141Y-101097D01* +X-24169Y-101092D01* +X-24199Y-101089D01* +X-24202D01* +X-24212Y-101086D01* +X-24231D01* +X-24253Y-101084D01* +X-24281D01* +X-24313Y-101081D01* +D02* +G37* +G36* +X-31190Y-101256D02* +X-31477Y-102094D01* +X-30901D01* +X-31190Y-101256D01* +D02* +G37* +G36* +X-15005Y101277D02* +X-15292Y100438D01* +X-14716D01* +X-15005Y101277D01* +D02* +G37* +G36* +X-30145D02* +X-30432Y100438D01* +X-29856D01* +X-30145Y101277D01* +D02* +G37* +%LPD*% +D10* +X-74803Y102362D02* +G03* +X-74803Y102362I-9843J0D01* +G01* +Y-94488D02* +G03* +X-74803Y-94488I-9843J0D01* +G01* +X94488D02* +G03* +X94488Y-94488I-9843J0D01* +G01* +Y102362D02* +G03* +X94488Y102362I-9843J0D01* +G01* +X28939Y-3130D02* +X32048D01* +X27648D02* +X30809D01* +X27648Y-14350D02* +Y-3130D01* +Y-14350D02* +X32048D01* +Y-3130D01* +X-32500Y-80661D02* +X-28500D01* +X-32500Y-88339D02* +X-28500D01* +X-40343Y-88043D02* +Y-80957D01* +X6161Y-28500D02* +Y-24500D01* +X13839Y-28500D02* +Y-24500D01* +X6457Y-36342D02* +X13543D01* +X48661Y-75000D02* +Y-71000D01* +X56339Y-75000D02* +Y-71000D01* +X48957Y-82842D02* +X56043D01* +X-756Y-79905D02* +X3181D01* +X-756D02* +Y-77150D01* +Y-68094D02* +X3181D01* +X-756Y-70850D02* +Y-68094D01* +X-26800Y-47800D02* +X-6200D01* +Y-77400D02* +Y-47800D01* +X-26800Y-77400D02* +X-6200D01* +X-26800D02* +Y-47800D01* +X2811Y-27150D02* +Y-20850D01* +X-20811Y-27150D02* +Y-20850D01* +X-25650Y-41004D02* +Y1004D01* +X-93366D02* +X-25650D01* +X-93366Y-41004D02* +X-25650D01* +X-93366D02* +Y1004D01* +X77500Y3000D02* +X87500D01* +X77500D02* +Y33000D01* +X87500D01* +Y3000D02* +Y33000D01* +X-40500Y-89500D02* +X-20500D01* +X-40500Y-99500D02* +Y-89500D01* +Y-99500D02* +X-20500D01* +Y-89500D01* +X-66500D02* +X-46500D01* +X-66500Y-99500D02* +Y-89500D01* +Y-99500D02* +X-46500D01* +Y-89500D01* +X26500Y-99500D02* +Y-89500D01* +X66500D01* +X26500Y-99500D02* +X66500D01* +Y-89500D01* +X77500Y36000D02* +X87500D01* +X77500D02* +Y76000D01* +X87500Y36000D02* +Y76000D01* +X77500D02* +X87500D01* +X31307Y-64394D02* +Y-61638D01* +X35244D01* +X31307Y-73449D02* +Y-70693D01* +Y-73449D02* +X35244D01* +X65000Y36000D02* +X75000D01* +X65000D02* +Y76000D01* +X75000Y36000D02* +Y76000D01* +X65000D02* +X75000D01* +D11* +X6429Y-81283D02* +G03* +X6429Y-81283I-492J0D01* +G01* +X38492Y-74827D02* +G03* +X38492Y-74827I-492J0D01* +G01* +D12* +X73314Y-76033D02* +G03* +X82500Y-82342I9186J3533D01* +G01* +Y-62657D02* +G03* +X73314Y-68967I0J-9843D01* +G01* +X82500Y-82342D02* +G03* +X82500Y-62657I0J9843D01* +G01* +X-42000Y-79843D02* +G03* +X-42000Y-60158I0J9843D01* +G01* +D02* +G03* +X-51186Y-66467I0J-9843D01* +G01* +Y-73533D02* +G03* +X-42000Y-79843I9186J3533D01* +G01* +X-68882Y-58197D02* +X-54118D01* +X-68882Y-82803D02* +X-54118D01* +Y-58197D01* +X-68882Y-82803D02* +Y-58197D01* +X82500Y-82300D02* +Y-62700D01* +X73314Y-76033D02* +Y-68967D01* +X-51186Y-73533D02* +Y-66467D01* +X-42000Y-79800D02* +Y-60200D01* +D13* +X65500Y-1500D02* +Y4500D01* +X59500Y-1500D02* +Y4500D01* +X-73500Y30500D02* +Y36500D01* +X-67500Y30500D02* +Y36500D01* +X-79500Y30500D02* +Y36500D01* +X-73500Y30500D02* +Y36500D01* +X-85500Y30500D02* +Y36500D01* +X-79500Y30500D02* +Y36500D01* +X-78500Y59500D02* +X-72500D01* +X-78500Y53500D02* +X-72500D01* +X59500Y12000D02* +Y18000D01* +X53500Y12000D02* +Y18000D01* +X59500Y-1500D02* +Y4500D01* +X53500Y-1500D02* +Y4500D01* +X26500Y14500D02* +X32500D01* +X26500Y20500D02* +X32500D01* +X26500Y6000D02* +X32500D01* +X26500Y12000D02* +X32500D01* +X26500Y0D02* +X32500D01* +X26500Y6000D02* +X32500D01* +X26500Y-24000D02* +X32500D01* +X26500Y-18000D02* +X32500D01* +X26500Y-30000D02* +X32500D01* +X26500Y-24000D02* +X32500D01* +X17500Y-11110D02* +Y-5110D01* +X11500Y-11110D02* +Y-5110D01* +Y-11000D02* +Y-5000D01* +X5500Y-11000D02* +Y-5000D01* +X-6000Y-8000D02* +X0D01* +X-6000Y-2000D02* +X0D01* +X-19500Y-8000D02* +X-13500D01* +X-19500Y-2000D02* +X-13500D01* +X-69500Y-49500D02* +X-63500D01* +X-69500Y-43500D02* +X-63500D01* +X-69500Y-55500D02* +X-63500D01* +X-69500Y-49500D02* +X-63500D01* +X-2500Y-54000D02* +X3500D01* +X-2500Y-48000D02* +X3500D01* +X-2500Y-54000D02* +X3500D01* +X-2500Y-60000D02* +X3500D01* +X-2500Y-60287D02* +X3500D01* +X-2500Y-66287D02* +X3500D01* +X-1000Y-82500D02* +X5000D01* +X-1000Y-88500D02* +X5000D01* +X-1000D02* +X5000D01* +X-1000Y-94500D02* +X5000D01* +X56000Y65000D02* +Y71000D01* +X62000Y65000D02* +Y71000D01* +X56000Y65000D02* +Y71000D01* +X50000Y65000D02* +Y71000D01* +Y65000D02* +Y71000D01* +X44000Y65000D02* +Y71000D01* +X38000Y65000D02* +Y71000D01* +X44000Y65000D02* +Y71000D01* +X-78500Y74500D02* +X-72500D01* +X-78500Y80500D02* +X-72500D01* +X-78500Y68500D02* +X-72500D01* +X-78500Y74500D02* +X-72500D01* +X-78500Y59500D02* +X-72500D01* +X-78500Y65500D02* +X-72500D01* +X30000Y-77000D02* +X36000D01* +X30000Y-83000D02* +X36000D01* +X30000Y-58500D02* +X36000D01* +X30000Y-52500D02* +X36000D01* +X30000D02* +X36000D01* +X30000Y-46500D02* +X36000D01* +X61000Y-70000D02* +X67000D01* +X61000Y-76000D02* +X67000D01* +X61000D02* +X67000D01* +X61000Y-82000D02* +X67000D01* +D14* +X66158Y-25343D02* +X85843D01* +Y-5658D01* +X66158Y-25343D02* +Y-5658D01* +X85843D01* +D15* +X-76181Y44457D02* +X-73819D01* +X-76181Y51543D02* +X-73819D01* +X-58000Y88504D02* +X12866D01* +X-58000Y112126D02* +X12866D01* +X-58000Y11732D02* +Y14587D01* +Y11732D02* +X-48158D01* +X12866D02* +Y14587D01* +X3024Y11732D02* +X12866D01* +X-58000Y86437D02* +Y112126D01* +X12866Y86437D02* +Y112126D01* +D16* +X67950Y975D02* +X67426Y451D01* +Y-599D01* +X67950Y-1124D01* +X70050D01* +X70574Y-599D01* +Y451D01* +X70050Y975D01* +X67426Y4124D02* +X67950Y3074D01* +X69000Y2025D01* +X70050D01* +X70574Y2550D01* +Y3599D01* +X70050Y4124D01* +X69525D01* +X69000Y3599D01* +Y2025D01* +X48574Y53589D02* +X45426D01* +Y55163D01* +X45950Y55688D01* +X47000D01* +X47525Y55163D01* +Y53589D01* +Y54639D02* +X48574Y55688D01* +Y56738D02* +Y57787D01* +Y57262D01* +X45426D01* +X45950Y56738D01* +X48574Y59361D02* +Y60411D01* +Y59886D01* +X45426D01* +X45950Y59361D01* +X39950Y56500D02* +X39426Y55975D01* +Y54926D01* +X39950Y54401D01* +X42050D01* +X42574Y54926D01* +Y55975D01* +X42050Y56500D01* +X42574Y57550D02* +Y58599D01* +Y58074D01* +X39426D01* +X39950Y57550D01* +X33950Y56401D02* +X33426Y55876D01* +Y54827D01* +X33950Y54302D01* +X36050D01* +X36574Y54827D01* +Y55876D01* +X36050Y56401D01* +X36574Y59549D02* +Y57450D01* +X34475Y59549D01* +X33950D01* +X33426Y59025D01* +Y57975D01* +X33950Y57450D01* +X36574Y62698D02* +Y60599D01* +X34475Y62698D01* +X33950D01* +X33426Y62173D01* +Y61124D01* +X33950Y60599D01* +X30574Y54401D02* +X27426D01* +Y55975D01* +X27951Y56500D01* +X29000D01* +X29525Y55975D01* +Y54401D01* +Y55450D02* +X30574Y56500D01* +Y57550D02* +Y58599D01* +Y58074D01* +X27426D01* +X27951Y57550D01* +X74426Y-14450D02* +X73901Y-13926D01* +X72851D01* +X72327Y-14450D01* +Y-14975D01* +X72851Y-15500D01* +X73901D01* +X74426Y-16025D01* +Y-16549D01* +X73901Y-17074D01* +X72851D01* +X72327Y-16549D01* +X75475Y-13926D02* +Y-17074D01* +X76525Y-16025D01* +X77574Y-17074D01* +Y-13926D01* +X78624Y-17074D02* +X79673D01* +X79149D01* +Y-13926D01* +X78624Y-14450D01* +X-68426Y18564D02* +X-71574D01* +Y20139D01* +X-71049Y20663D01* +X-70000D01* +X-69475Y20139D01* +Y18564D01* +Y19614D02* +X-68426Y20663D01* +Y23812D02* +Y21713D01* +X-70525Y23812D01* +X-71049D01* +X-71574Y23287D01* +Y22238D01* +X-71049Y21713D01* +X-74676Y18564D02* +X-77824D01* +Y20139D01* +X-77299Y20663D01* +X-76250D01* +X-75725Y20139D01* +Y18564D01* +Y19614D02* +X-74676Y20663D01* +X-77299Y21713D02* +X-77824Y22238D01* +Y23287D01* +X-77299Y23812D01* +X-76775D01* +X-76250Y23287D01* +Y22762D01* +Y23287D01* +X-75725Y23812D01* +X-75200D01* +X-74676Y23287D01* +Y22238D01* +X-75200Y21713D01* +X-80926Y18564D02* +X-84074D01* +Y20139D01* +X-83549Y20663D01* +X-82500D01* +X-81975Y20139D01* +Y18564D01* +Y19614D02* +X-80926Y20663D01* +Y21713D02* +Y22762D01* +Y22238D01* +X-84074D01* +X-83549Y21713D01* +Y24337D02* +X-84074Y24861D01* +Y25911D01* +X-83549Y26436D01* +X-81450D01* +X-80926Y25911D01* +Y24861D01* +X-81450Y24337D01* +X-83549D01* +X-90099Y49574D02* +Y46426D01* +X-88525D01* +X-88000Y46951D01* +Y49049D01* +X-88525Y49574D01* +X-90099D01* +X-86950Y46426D02* +X-85901D01* +X-86426D01* +Y49574D01* +X-86950Y49049D01* +X-88525Y57550D02* +X-89050Y58074D01* +X-90099D01* +X-90624Y57550D01* +Y55450D01* +X-90099Y54926D01* +X-89050D01* +X-88525Y55450D01* +X-85376Y54926D02* +X-87475D01* +X-85376Y57025D01* +Y57550D01* +X-85901Y58074D01* +X-86950D01* +X-87475Y57550D01* +X51074Y12376D02* +X47926D01* +Y13950D01* +X48450Y14475D01* +X49500D01* +X50025Y13950D01* +Y12376D01* +Y13426D02* +X51074Y14475D01* +X50550Y15525D02* +X51074Y16049D01* +Y17099D01* +X50550Y17624D01* +X48450D01* +X47926Y17099D01* +Y16049D01* +X48450Y15525D01* +X48975D01* +X49500Y16049D01* +Y17624D01* +X51074Y-1124D02* +X47926D01* +Y451D01* +X48450Y975D01* +X49500D01* +X50025Y451D01* +Y-1124D01* +Y-74D02* +X51074Y975D01* +X48450Y2025D02* +X47926Y2550D01* +Y3599D01* +X48450Y4124D01* +X48975D01* +X49500Y3599D01* +X50025Y4124D01* +X50550D01* +X51074Y3599D01* +Y2550D01* +X50550Y2025D01* +X50025D01* +X49500Y2550D01* +X48975Y2025D01* +X48450D01* +X49500Y2550D02* +Y3599D01* +X36876Y15926D02* +Y19074D01* +X38451D01* +X38975Y18550D01* +Y17500D01* +X38451Y16975D01* +X36876D01* +X37926D02* +X38975Y15926D01* +X40025Y19074D02* +X42124D01* +Y18550D01* +X40025Y16451D01* +Y15926D01* +X38975Y10050D02* +X38451Y10574D01* +X37401D01* +X36876Y10050D01* +Y7950D01* +X37401Y7426D01* +X38451D01* +X38975Y7950D01* +X41599Y7426D02* +Y10574D01* +X40025Y9000D01* +X42124D01* +X38975Y4050D02* +X38451Y4574D01* +X37401D01* +X36876Y4050D01* +Y1950D01* +X37401Y1426D01* +X38451D01* +X38975Y1950D01* +X42124Y4574D02* +X40025D01* +Y3000D01* +X41074Y3525D01* +X41599D01* +X42124Y3000D01* +Y1950D01* +X41599Y1426D01* +X40549D01* +X40025Y1950D01* +X38426Y-11124D02* +X41050D01* +X41574Y-10599D01* +Y-9550D01* +X41050Y-9025D01* +X38426D01* +X38950Y-7975D02* +X38426Y-7451D01* +Y-6401D01* +X38950Y-5876D01* +X39475D01* +X40000Y-6401D01* +Y-6926D01* +Y-6401D01* +X40525Y-5876D01* +X41050D01* +X41574Y-6401D01* +Y-7451D01* +X41050Y-7975D01* +X17663Y-19951D02* +X17139Y-19426D01* +X16089D01* +X15564Y-19951D01* +Y-22050D01* +X16089Y-22574D01* +X17139D01* +X17663Y-22050D01* +X18713Y-22574D02* +X19762D01* +X19238D01* +Y-19426D01* +X18713Y-19951D01* +X21337D02* +X21861Y-19426D01* +X22911D01* +X23436Y-19951D01* +Y-20475D01* +X22911Y-21000D01* +X22386D01* +X22911D01* +X23436Y-21525D01* +Y-22050D01* +X22911Y-22574D01* +X21861D01* +X21337Y-22050D01* +X17663Y-25951D02* +X17139Y-25426D01* +X16089D01* +X15564Y-25951D01* +Y-28049D01* +X16089Y-28574D01* +X17139D01* +X17663Y-28049D01* +X18713Y-28574D02* +X19762D01* +X19238D01* +Y-25426D01* +X18713Y-25951D01* +X23436Y-28574D02* +X21337D01* +X23436Y-26475D01* +Y-25951D01* +X22911Y-25426D01* +X21861D01* +X21337Y-25951D01* +X13451Y1475D02* +X12926Y950D01* +Y-99D01* +X13451Y-624D01* +X15550D01* +X16074Y-99D01* +Y950D01* +X15550Y1475D01* +Y2525D02* +X16074Y3049D01* +Y4099D01* +X15550Y4624D01* +X13451D01* +X12926Y4099D01* +Y3049D01* +X13451Y2525D01* +X13975D01* +X14500Y3049D01* +Y4624D01* +X7451Y1188D02* +X6926Y663D01* +Y-386D01* +X7451Y-911D01* +X9550D01* +X10074Y-386D01* +Y663D01* +X9550Y1188D01* +X10074Y2238D02* +Y3287D01* +Y2762D01* +X6926D01* +X7451Y2238D01* +X10074Y4861D02* +Y5911D01* +Y5386D01* +X6926D01* +X7451Y4861D01* +X-7198Y426D02* +Y3574D01* +X-5624D01* +X-5099Y3049D01* +Y2000D01* +X-5624Y1475D01* +X-7198D01* +X-6149D02* +X-5099Y426D01* +X-1950D02* +X-4050D01* +X-1950Y2525D01* +Y3049D01* +X-2475Y3574D01* +X-3525D01* +X-4050Y3049D01* +X-901D02* +X-376Y3574D01* +X673D01* +X1198Y3049D01* +Y950D01* +X673Y426D01* +X-376D01* +X-901Y950D01* +Y3049D01* +X-18624Y426D02* +Y3574D01* +X-17050D01* +X-16525Y3049D01* +Y2000D01* +X-17050Y1475D01* +X-18624D01* +X-17574D02* +X-16525Y426D01* +X-13901D02* +Y3574D01* +X-15475Y2000D01* +X-13376D01* +X-18124Y-82426D02* +Y-85574D01* +X-16549D01* +X-16025Y-85049D01* +Y-82951D01* +X-16549Y-82426D01* +X-18124D01* +X-14975Y-82951D02* +X-14450Y-82426D01* +X-13401D01* +X-12876Y-82951D01* +Y-83475D01* +X-13401Y-84000D01* +X-13926D01* +X-13401D01* +X-12876Y-84525D01* +Y-85049D01* +X-13401Y-85574D01* +X-14450D01* +X-14975Y-85049D01* +X-77025Y-45450D02* +X-77549Y-44926D01* +X-78599D01* +X-79124Y-45450D01* +Y-47550D01* +X-78599Y-48074D01* +X-77549D01* +X-77025Y-47550D01* +X-75975Y-44926D02* +X-73876D01* +Y-45450D01* +X-75975Y-47550D01* +Y-48074D01* +X-77025Y-51451D02* +X-77549Y-50926D01* +X-78599D01* +X-79124Y-51451D01* +Y-53549D01* +X-78599Y-54074D01* +X-77549D01* +X-77025Y-53549D01* +X-75975Y-51451D02* +X-75450Y-50926D01* +X-74401D01* +X-73876Y-51451D01* +Y-51975D01* +X-74401Y-52500D01* +X-73876Y-53025D01* +Y-53549D01* +X-74401Y-54074D01* +X-75450D01* +X-75975Y-53549D01* +Y-53025D01* +X-75450Y-52500D01* +X-75975Y-51975D01* +Y-51451D01* +X-75450Y-52500D02* +X-74401D01* +X-74074Y-70500D02* +Y-72599D01* +X-72500D01* +Y-71549D01* +Y-72599D01* +X-70926D01* +Y-69450D02* +Y-68401D01* +Y-68926D01* +X-74074D01* +X-73549Y-69450D01* +X8426Y-43124D02* +X11574D01* +Y-41550D01* +X11050Y-41025D01* +X8951D01* +X8426Y-41550D01* +Y-43124D01* +X11574Y-38401D02* +X8426D01* +X10000Y-39975D01* +Y-37876D01* +X50926Y-62254D02* +X54074D01* +Y-60679D01* +X53549Y-60155D01* +X51451D01* +X50926Y-60679D01* +Y-62254D01* +X54074Y-57006D02* +Y-59105D01* +X51975Y-57006D01* +X51451D01* +X50926Y-57531D01* +Y-58580D01* +X51451Y-59105D01* +X8564Y-51074D02* +Y-47926D01* +X10139D01* +X10663Y-48450D01* +Y-49500D01* +X10139Y-50025D01* +X8564D01* +X9614D02* +X10663Y-51074D01* +X11713D02* +X12762D01* +X12238D01* +Y-47926D01* +X11713Y-48450D01* +X14337Y-50550D02* +X14861Y-51074D01* +X15911D01* +X16436Y-50550D01* +Y-48450D01* +X15911Y-47926D01* +X14861D01* +X14337Y-48450D01* +Y-48975D01* +X14861Y-49500D01* +X16436D01* +X8564Y-57074D02* +Y-53926D01* +X10139D01* +X10663Y-54451D01* +Y-55500D01* +X10139Y-56025D01* +X8564D01* +X9614D02* +X10663Y-57074D01* +X11713D02* +X12762D01* +X12238D01* +Y-53926D01* +X11713Y-54451D01* +X14337Y-53926D02* +X16436D01* +Y-54451D01* +X14337Y-56550D01* +Y-57074D01* +X8302Y-64574D02* +Y-61426D01* +X9876D01* +X10401Y-61950D01* +Y-63000D01* +X9876Y-63525D01* +X8302D01* +X9351D02* +X10401Y-64574D01* +X13550D02* +X11451D01* +X13550Y-62475D01* +Y-61950D01* +X13025Y-61426D01* +X11975D01* +X11451Y-61950D01* +X14599D02* +X15124Y-61426D01* +X16173D01* +X16698Y-61950D01* +Y-62475D01* +X16173Y-63000D01* +X15649D01* +X16173D01* +X16698Y-63525D01* +Y-64050D01* +X16173Y-64574D01* +X15124D01* +X14599Y-64050D01* +X12550Y-74525D02* +X10451D01* +X9926Y-75050D01* +Y-76099D01* +X10451Y-76624D01* +X12550D01* +X13074Y-76099D01* +Y-75050D01* +X12025Y-75574D02* +X13074Y-74525D01* +Y-75050D02* +X12550Y-74525D01* +X10451Y-73475D02* +X9926Y-72951D01* +Y-71901D01* +X10451Y-71376D01* +X10975D01* +X11500Y-71901D01* +Y-72426D01* +Y-71901D01* +X12025Y-71376D01* +X12550D01* +X13074Y-71901D01* +Y-72951D01* +X12550Y-73475D01* +X9564Y-87074D02* +Y-83926D01* +X11139D01* +X11663Y-84451D01* +Y-85500D01* +X11139Y-86025D01* +X9564D01* +X10614D02* +X11663Y-87074D01* +X12713D02* +X13762D01* +X13238D01* +Y-83926D01* +X12713Y-84451D01* +X15337D02* +X15861Y-83926D01* +X16911D01* +X17436Y-84451D01* +Y-84975D01* +X16911Y-85500D01* +X17436Y-86025D01* +Y-86550D01* +X16911Y-87074D01* +X15861D01* +X15337Y-86550D01* +Y-86025D01* +X15861Y-85500D01* +X15337Y-84975D01* +Y-84451D01* +X15861Y-85500D02* +X16911D01* +X9802Y-93074D02* +Y-89926D01* +X11376D01* +X11901Y-90451D01* +Y-91500D01* +X11376Y-92025D01* +X9802D01* +X10851D02* +X11901Y-93074D01* +X15049D02* +X12950D01* +X15049Y-90975D01* +Y-90451D01* +X14525Y-89926D01* +X13475D01* +X12950Y-90451D01* +X18198Y-93074D02* +X16099D01* +X18198Y-90975D01* +Y-90451D01* +X17673Y-89926D01* +X16624D01* +X16099Y-90451D01* +X72975Y-59951D02* +X72451Y-59426D01* +X71401D01* +X70876Y-59951D01* +Y-62050D01* +X71401Y-62574D01* +X72451D01* +X72975Y-62050D01* +X74025Y-59951D02* +X74550Y-59426D01* +X75599D01* +X76124Y-59951D01* +Y-60475D01* +X75599Y-61000D01* +X75074D01* +X75599D01* +X76124Y-61525D01* +Y-62050D01* +X75599Y-62574D01* +X74550D01* +X74025Y-62050D01* +X76600Y-79526D02* +X78699D01* +X83900Y-79426D02* +X85999D01* +X84949Y-78376D02* +Y-80475D01* +X-40600Y-76926D02* +X-38501D01* +X-39551Y-75876D02* +Y-77975D01* +X-47900Y-77026D02* +X-45801D01* +X62426Y-59951D02* +X61901Y-59426D01* +X60851D01* +X60327Y-59951D01* +Y-62050D01* +X60851Y-62574D01* +X61901D01* +X62426Y-62050D01* +X65574Y-62574D02* +X63475D01* +X65574Y-60475D01* +Y-59951D01* +X65049Y-59426D01* +X64000D01* +X63475Y-59951D01* +X66624Y-62574D02* +X67673D01* +X67149D01* +Y-59426D01* +X66624Y-59951D01* +X62401Y-65951D02* +X61876Y-65426D01* +X60827D01* +X60302Y-65951D01* +Y-68050D01* +X60827Y-68574D01* +X61876D01* +X62401Y-68050D01* +X65549Y-68574D02* +X63450D01* +X65549Y-66475D01* +Y-65951D01* +X65025Y-65426D01* +X63975D01* +X63450Y-65951D01* +X66599D02* +X67124Y-65426D01* +X68173D01* +X68698Y-65951D01* +Y-68050D01* +X68173Y-68574D01* +X67124D01* +X66599Y-68050D01* +Y-65951D01* +X19064Y-51074D02* +Y-47926D01* +X20639D01* +X21163Y-48450D01* +Y-49500D01* +X20639Y-50025D01* +X19064D01* +X20114D02* +X21163Y-51074D01* +X22213D02* +X23262D01* +X22738D01* +Y-47926D01* +X22213Y-48450D01* +X24837D02* +X25361Y-47926D01* +X26411D01* +X26936Y-48450D01* +Y-48975D01* +X26411Y-49500D01* +X25886D01* +X26411D01* +X26936Y-50025D01* +Y-50550D01* +X26411Y-51074D01* +X25361D01* +X24837Y-50550D01* +X19064Y-57074D02* +Y-53926D01* +X20639D01* +X21163Y-54451D01* +Y-55500D01* +X20639Y-56025D01* +X19064D01* +X20114D02* +X21163Y-57074D01* +X24312Y-53926D02* +X22213D01* +Y-55500D01* +X23262Y-54975D01* +X23787D01* +X24312Y-55500D01* +Y-56550D01* +X23787Y-57074D01* +X22738D01* +X22213Y-56550D01* +X18064Y-81574D02* +Y-78426D01* +X19639D01* +X20163Y-78951D01* +Y-80000D01* +X19639Y-80525D01* +X18064D01* +X19114D02* +X20163Y-81574D01* +X21213D02* +X22262D01* +X21738D01* +Y-78426D01* +X21213Y-78951D01* +X25936Y-81574D02* +X23837D01* +X25936Y-79475D01* +Y-78951D01* +X25411Y-78426D01* +X24361D01* +X23837Y-78951D01* +X26550Y-73500D02* +X24451D01* +X23926Y-74025D01* +Y-75074D01* +X24451Y-75599D01* +X26550D01* +X27074Y-75074D01* +Y-74025D01* +X26025Y-74550D02* +X27074Y-73500D01* +Y-74025D02* +X26550Y-73500D01* +X27074Y-72451D02* +Y-71401D01* +Y-71926D01* +X23926D01* +X24451Y-72451D01* +X-88380Y72506D02* +X-88905Y73031D01* +X-89954D01* +X-90479Y72506D01* +Y70407D01* +X-89954Y69882D01* +X-88905D01* +X-88380Y70407D01* +X-87330Y69882D02* +X-86281D01* +X-86806D01* +Y73031D01* +X-87330Y72506D01* +X-82607Y73031D02* +X-84706D01* +Y71456D01* +X-83657Y71981D01* +X-83132D01* +X-82607Y71456D01* +Y70407D01* +X-83132Y69882D01* +X-84182D01* +X-84706Y70407D01* +X-88337Y78549D02* +X-88861Y79074D01* +X-89911D01* +X-90436Y78549D01* +Y76451D01* +X-89911Y75926D01* +X-88861D01* +X-88337Y76451D01* +X-87287Y75926D02* +X-86238D01* +X-86762D01* +Y79074D01* +X-87287Y78549D01* +X-83089Y75926D02* +Y79074D01* +X-84663Y77500D01* +X-82564D01* +X-93124Y5574D02* +Y2950D01* +X-92599Y2426D01* +X-91549D01* +X-91025Y2950D01* +Y5574D01* +X-87876Y2426D02* +X-89975D01* +X-87876Y4525D01* +Y5049D01* +X-88401Y5574D01* +X-89451D01* +X-89975Y5049D01* +X-2099Y-38926D02* +Y-42074D01* +X0D01* +X1049D02* +X2099D01* +X1574D01* +Y-38926D01* +X1049Y-39450D01* +X-49388Y-54400D02* +X-49913Y-53876D01* +X-50962D01* +X-51487Y-54400D01* +Y-56499D01* +X-50962Y-57024D01* +X-49913D01* +X-49388Y-56499D01* +X-48339Y-57024D02* +X-47289D01* +X-47814D01* +Y-53876D01* +X-48339Y-54400D01* +X-45715D02* +X-45190Y-53876D01* +X-44140D01* +X-43616Y-54400D01* +Y-56499D01* +X-44140Y-57024D01* +X-45190D01* +X-45715Y-56499D01* +Y-54400D01* +X-90124Y60926D02* +Y64074D01* +X-88550D01* +X-88025Y63550D01* +Y62500D01* +X-88550Y61975D01* +X-90124D01* +X-89074D02* +X-88025Y60926D01* +X-84876Y64074D02* +X-85926Y63550D01* +X-86975Y62500D01* +Y61450D01* +X-86450Y60926D01* +X-85401D01* +X-84876Y61450D01* +Y61975D01* +X-85401Y62500D01* +X-86975D01* +X-67099Y89574D02* +Y86950D01* +X-66574Y86426D01* +X-65525D01* +X-65000Y86950D01* +Y89574D01* +X-63951Y86426D02* +X-62901D01* +X-63426D01* +Y89574D01* +X-63951Y89050D01* +X-24525Y-45549D02* +Y-43450D01* +X-25049Y-42926D01* +X-26099D01* +X-26624Y-43450D01* +Y-45549D01* +X-26099Y-46074D01* +X-25049D01* +X-25574Y-45025D02* +X-24525Y-46074D01* +X-25049D02* +X-24525Y-45549D01* +X-21376Y-46074D02* +X-23475D01* +X-21376Y-43975D01* +Y-43450D01* +X-21901Y-42926D01* +X-22951D01* +X-23475Y-43450D01* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTP b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTP new file mode 100644 index 0000000..7ae214a --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTP @@ -0,0 +1,353 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=8421504* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Positive* +G04* +G01* +G75* +%ADD17R,0.03543X0.03799*% +%ADD18R,0.06102X0.05118*% +%ADD19R,0.03150X0.02165*% +%ADD20R,0.03799X0.03543*% +%ADD21R,0.02756X0.03543*% +%ADD22R,0.03937X0.01968*% +%ADD23O,0.03937X0.01968*% +%ADD24R,0.03543X0.02756*% +%ADD25R,0.05276X0.07087*% +%ADD26R,0.12598X0.05906*% +%ADD27R,0.07087X0.05276*% +%ADD28R,0.03543X0.03150*% +%ADD29R,0.05906X0.03543*% +%ADD30R,0.03543X0.05906*% +%ADD31R,0.17362X0.16142*% +%ADD32R,0.02362X0.05118*% +%ADD33R,0.23622X0.07874*% +%ADD34R,0.07874X0.03543*% +%ADD35R,0.31496X0.39370*% +D17* +X62500Y4650D02* +D03* +Y-1650D02* +D03* +X-70500Y30350D02* +D03* +Y36650D02* +D03* +X-76500Y30350D02* +D03* +Y36650D02* +D03* +X-82500Y30350D02* +D03* +Y36650D02* +D03* +X56500Y18150D02* +D03* +Y11850D02* +D03* +Y4650D02* +D03* +Y-1650D02* +D03* +X59000Y64850D02* +D03* +Y71150D02* +D03* +X53000D02* +D03* +Y64850D02* +D03* +X47000Y71150D02* +D03* +Y64850D02* +D03* +X41000D02* +D03* +Y71150D02* +D03* +D18* +X62319Y-22390D02* +D03* +X89681Y-8610D02* +D03* +Y-22390D02* +D03* +X62319Y-8610D02* +D03* +D19* +X-71850Y46228D02* +D03* +Y49772D02* +D03* +X-78150D02* +D03* +Y46228D02* +D03* +D20* +X-78650Y56500D02* +D03* +X-72350D02* +D03* +X32650Y17500D02* +D03* +X26350D02* +D03* +X150Y-5000D02* +D03* +X-6150D02* +D03* +X-13350D02* +D03* +X-19650D02* +D03* +X3650Y-51000D02* +D03* +X-2650D02* +D03* +Y-57000D02* +D03* +X3650D02* +D03* +X-2650Y-63287D02* +D03* +X3650D02* +D03* +X-1150Y-85500D02* +D03* +X5150D02* +D03* +X-1150Y-91500D02* +D03* +X5150D02* +D03* +X-72350Y77500D02* +D03* +X-78650D02* +D03* +X-72350Y71500D02* +D03* +X-78650D02* +D03* +X-72350Y62500D02* +D03* +X-78650D02* +D03* +X29850Y-80000D02* +D03* +X36150D02* +D03* +Y-55500D02* +D03* +X29850D02* +D03* +X36150Y-49500D02* +D03* +X29850D02* +D03* +X60850Y-73000D02* +D03* +X67150D02* +D03* +X60850Y-79000D02* +D03* +X67150D02* +D03* +D21* +X32610Y9000D02* +D03* +X26390D02* +D03* +X32610Y3000D02* +D03* +X26390D02* +D03* +X32610Y-21000D02* +D03* +X26390D02* +D03* +X32610Y-27000D02* +D03* +X26390D02* +D03* +X-63390Y-46500D02* +D03* +X-69610D02* +D03* +X-63390Y-52500D02* +D03* +X-69610D02* +D03* +D22* +X25248Y-5000D02* +D03* +D23* +Y-8740D02* +D03* +Y-12480D02* +D03* +X34500Y-5000D02* +D03* +Y-12480D02* +D03* +D24* +X14500Y-5000D02* +D03* +Y-11220D02* +D03* +X8500Y-4890D02* +D03* +Y-11110D02* +D03* +D25* +X-24870Y-84500D02* +D03* +X-36130D02* +D03* +D26* +X-61500Y-62232D02* +D03* +Y-78768D02* +D03* +D27* +X10000Y-20870D02* +D03* +Y-32130D02* +D03* +X52500Y-67370D02* +D03* +Y-78630D02* +D03* +D28* +X5937Y-77543D02* +D03* +Y-70457D02* +D03* +X-1937Y-74000D02* +D03* +X30126Y-67543D02* +D03* +X38000Y-64000D02* +D03* +Y-71087D02* +D03* +D29* +X12827Y82500D02* +D03* +Y77500D02* +D03* +Y72500D02* +D03* +Y67500D02* +D03* +Y62500D02* +D03* +Y57500D02* +D03* +Y52500D02* +D03* +Y47500D02* +D03* +Y42500D02* +D03* +Y37500D02* +D03* +Y32500D02* +D03* +Y27500D02* +D03* +Y22500D02* +D03* +Y17500D02* +D03* +D03* +X-58000D02* +D03* +Y82500D02* +D03* +D03* +Y22500D02* +D03* +Y27500D02* +D03* +Y32500D02* +D03* +Y37500D02* +D03* +Y42500D02* +D03* +Y47500D02* +D03* +Y52500D02* +D03* +Y57500D02* +D03* +Y62500D02* +D03* +Y67500D02* +D03* +Y72500D02* +D03* +Y77500D02* +D03* +D30* +X-87Y11594D02* +D03* +X-5087D02* +D03* +X-10087D02* +D03* +X-15087D02* +D03* +X-20087D02* +D03* +X-25087D02* +D03* +X-30087D02* +D03* +X-35087D02* +D03* +X-40087D02* +D03* +X-45087D02* +D03* +D03* +D31* +X-16300Y-67600D02* +D03* +D32* +X-8800Y-51900D02* +D03* +X-13800D02* +D03* +X-18800D02* +D03* +X-23800D02* +D03* +D33* +X-9000Y-32268D02* +D03* +Y-15732D02* +D03* +D34* +X-31260Y-6713D02* +D03* +Y-13406D02* +D03* +Y-20098D02* +D03* +Y-26791D02* +D03* +X-31457Y-33386D02* +D03* +D35* +X-75748Y-20000D02* +D03* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTS b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTS new file mode 100644 index 0000000..0f27eb4 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.GTS @@ -0,0 +1,441 @@ +G04* +G04 #@! TF.GenerationSoftware,Altium Limited,Altium Designer,21.6.4 (81)* +G04* +G04 Layer_Color=8388736* +%FSLAX25Y25*% +%MOIN*% +G70* +G04* +G04 #@! TF.SameCoordinates,7C905695-A8D0-471C-AD1A-FFB52B7834A9* +G04* +G04* +G04 #@! TF.FilePolarity,Negative* +G04* +G01* +G75* +%ADD36R,0.04343X0.04599*% +%ADD37R,0.06902X0.05918*% +%ADD38R,0.03950X0.02965*% +%ADD39R,0.04599X0.04343*% +%ADD40R,0.03556X0.04343*% +%ADD41R,0.04737X0.02769*% +%ADD42O,0.04737X0.02769*% +%ADD43R,0.04343X0.03556*% +%ADD44R,0.06076X0.07887*% +%ADD45R,0.13398X0.06706*% +%ADD46R,0.07887X0.06076*% +%ADD47R,0.04343X0.03950*% +%ADD48R,0.06706X0.04343*% +%ADD49R,0.04343X0.06706*% +%ADD50R,0.18162X0.16942*% +%ADD51R,0.03162X0.05918*% +%ADD52R,0.24422X0.08674*% +%ADD53R,0.08674X0.04343*% +%ADD54R,0.32296X0.40170*% +%ADD55C,0.14580*% +%ADD56R,0.06706X0.06706*% +%ADD57C,0.06706*% +%ADD58C,0.05524*% +%ADD59R,0.05524X0.05524*% +%ADD60C,0.06800*% +%ADD61R,0.06706X0.06706*% +%ADD62R,0.06706X0.08674*% +%ADD63O,0.06706X0.08674*% +D36* +X62500Y4650D02* +D03* +Y-1650D02* +D03* +X-70500Y30350D02* +D03* +Y36650D02* +D03* +X-76500Y30350D02* +D03* +Y36650D02* +D03* +X-82500Y30350D02* +D03* +Y36650D02* +D03* +X56500Y18150D02* +D03* +Y11850D02* +D03* +Y4650D02* +D03* +Y-1650D02* +D03* +X59000Y64850D02* +D03* +Y71150D02* +D03* +X53000D02* +D03* +Y64850D02* +D03* +X47000Y71150D02* +D03* +Y64850D02* +D03* +X41000D02* +D03* +Y71150D02* +D03* +D37* +X62319Y-22390D02* +D03* +X89681Y-8610D02* +D03* +Y-22390D02* +D03* +X62319Y-8610D02* +D03* +D38* +X-71850Y46228D02* +D03* +Y49772D02* +D03* +X-78150D02* +D03* +Y46228D02* +D03* +D39* +X-78650Y56500D02* +D03* +X-72350D02* +D03* +X32650Y17500D02* +D03* +X26350D02* +D03* +X150Y-5000D02* +D03* +X-6150D02* +D03* +X-13350D02* +D03* +X-19650D02* +D03* +X3650Y-51000D02* +D03* +X-2650D02* +D03* +Y-57000D02* +D03* +X3650D02* +D03* +X-2650Y-63287D02* +D03* +X3650D02* +D03* +X-1150Y-85500D02* +D03* +X5150D02* +D03* +X-1150Y-91500D02* +D03* +X5150D02* +D03* +X-72350Y77500D02* +D03* +X-78650D02* +D03* +X-72350Y71500D02* +D03* +X-78650D02* +D03* +X-72350Y62500D02* +D03* +X-78650D02* +D03* +X29850Y-80000D02* +D03* +X36150D02* +D03* +Y-55500D02* +D03* +X29850D02* +D03* +X36150Y-49500D02* +D03* +X29850D02* +D03* +X60850Y-73000D02* +D03* +X67150D02* +D03* +X60850Y-79000D02* +D03* +X67150D02* +D03* +D40* +X32610Y9000D02* +D03* +X26390D02* +D03* +X32610Y3000D02* +D03* +X26390D02* +D03* +X32610Y-21000D02* +D03* +X26390D02* +D03* +X32610Y-27000D02* +D03* +X26390D02* +D03* +X-63390Y-46500D02* +D03* +X-69610D02* +D03* +X-63390Y-52500D02* +D03* +X-69610D02* +D03* +D41* +X25248Y-5000D02* +D03* +D42* +Y-8740D02* +D03* +Y-12480D02* +D03* +X34500Y-5000D02* +D03* +Y-12480D02* +D03* +D43* +X14500Y-5000D02* +D03* +Y-11220D02* +D03* +X8500Y-4890D02* +D03* +Y-11110D02* +D03* +D44* +X-24870Y-84500D02* +D03* +X-36130D02* +D03* +D45* +X-61500Y-62232D02* +D03* +Y-78768D02* +D03* +D46* +X10000Y-20870D02* +D03* +Y-32130D02* +D03* +X52500Y-67370D02* +D03* +Y-78630D02* +D03* +D47* +X5937Y-77543D02* +D03* +Y-70457D02* +D03* +X-1937Y-74000D02* +D03* +X30126Y-67543D02* +D03* +X38000Y-64000D02* +D03* +Y-71087D02* +D03* +D48* +X12827Y82500D02* +D03* +Y77500D02* +D03* +Y72500D02* +D03* +Y67500D02* +D03* +Y62500D02* +D03* +Y57500D02* +D03* +Y52500D02* +D03* +Y47500D02* +D03* +Y42500D02* +D03* +Y37500D02* +D03* +Y32500D02* +D03* +Y27500D02* +D03* +Y22500D02* +D03* +Y17500D02* +D03* +D03* +X-58000D02* +D03* +Y82500D02* +D03* +D03* +Y22500D02* +D03* +Y27500D02* +D03* +Y32500D02* +D03* +Y37500D02* +D03* +Y42500D02* +D03* +Y47500D02* +D03* +Y52500D02* +D03* +Y57500D02* +D03* +Y62500D02* +D03* +Y67500D02* +D03* +Y72500D02* +D03* +Y77500D02* +D03* +D49* +X-87Y11594D02* +D03* +X-5087D02* +D03* +X-10087D02* +D03* +X-15087D02* +D03* +X-20087D02* +D03* +X-25087D02* +D03* +X-30087D02* +D03* +X-35087D02* +D03* +X-40087D02* +D03* +X-45087D02* +D03* +D03* +D50* +X-16300Y-67600D02* +D03* +D51* +X-8800Y-51900D02* +D03* +X-13800D02* +D03* +X-18800D02* +D03* +X-23800D02* +D03* +D52* +X-9000Y-32268D02* +D03* +Y-15732D02* +D03* +D53* +X-31260Y-6713D02* +D03* +Y-13406D02* +D03* +Y-20098D02* +D03* +Y-26791D02* +D03* +X-31457Y-33386D02* +D03* +D54* +X-75748Y-20000D02* +D03* +D55* +X-84646Y102362D02* +D03* +Y-94488D02* +D03* +X84646D02* +D03* +Y102362D02* +D03* +D56* +X47000Y88500D02* +D03* +X-35500Y-94500D02* +D03* +X-61500D02* +D03* +X61500D02* +D03* +D57* +X47000Y98500D02* +D03* +X37000Y88500D02* +D03* +Y98500D02* +D03* +X27000Y88500D02* +D03* +Y98500D02* +D03* +X82500Y28000D02* +D03* +Y18000D02* +D03* +X-25500Y-94500D02* +D03* +X-51500D02* +D03* +X51500D02* +D03* +X41500D02* +D03* +X31500D02* +D03* +X82500Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +X70000Y61000D02* +D03* +Y51000D02* +D03* +Y41000D02* +D03* +D58* +X87500Y-72500D02* +D03* +D59* +X77500D02* +D03* +D60* +X-9000Y-34000D02* +D03* +Y-14000D02* +D03* +D61* +X82500Y8000D02* +D03* +Y71000D02* +D03* +X70000D02* +D03* +D62* +X-47000Y-70000D02* +D03* +D63* +X-37000D02* +D03* +M02* diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.LDP b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.LDP new file mode 100644 index 0000000..c4a0627 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.LDP @@ -0,0 +1,2 @@ +Layer Pairs Export File for PCB: C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +LayersSetName=Top_Bot_Thru_Holes|DrillFile=drybox.txt|DrillLayers=gtl,gbl diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.RUL b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.RUL new file mode 100644 index 0000000..9551c5e --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.RUL @@ -0,0 +1,6 @@ +DRC Rules Export File for PCB: C:\Users\Sasa\Desktop\git\DIY_DryBox\DryBox.PcbDoc +RuleKind=Clearance|RuleName=Clearance_1|Scope=Board|Minimum=11.81 +RuleKind=SolderMaskExpansion|RuleName=SolderMaskExpansion|Scope=Board|Minimum=4.00 +RuleKind=Width|RuleName=Width|Scope=Board|Minimum=5.91 +RuleKind=Clearance|RuleName=Clearance|Scope=Board|Minimum=6.00 +RuleKind=ShortCircuit|RuleName=ShortCircuit|Scope=Board|Allowed=0 diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.TXT b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.TXT new file mode 100644 index 0000000..a332fb0 --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.TXT @@ -0,0 +1,95 @@ +M48 +;Layer_Color=9474304 +;FILE_FORMAT=2:5 +INCH,LZ +;TYPE=PLATED +T1F00S00C0.01575 +T2F00S00C0.02362 +T3F00S00C0.03000 +T4F00S00C0.03150 +T5F00S00C0.03543 +;TYPE=NON_PLATED +T6F00S00C0.11811 +% +T01 +X006715Y-0076 +X002985Y-006135 +X0009Y-00705 +X-00035Y-00675 +X-00055Y-0024 +X-00095 +X-00135 +X-00175 +X-0001 +X002639 +X00175Y-00425 +X0044 +X0038Y0008 +X002639Y0006 +X00565Y0008 +X005Y0065 +X0036226Y0072774 +X0021Y00725 +X0005Y0077 +X0000841Y0072 +X-00025Y0068 +X-00645Y00825 +X-0084Y00745 +X-0083Y00565 +X-005Y00115 +X-00245Y-0006 +X-00705Y-0015 +Y-002 +Y-0025 +X-0075748 +Y-002 +Y-0015 +X0076Y-00225 +X0069Y00015 +T02 +X-00185Y-0052 +X-0014 +X-00095 +X-00094Y-00461 +X-00139 +X-00184 +T03 +X-0009Y-0034 +Y-0014 +T04 +X00775Y-00725 +X00875 +X-0037Y-007 +X-0047 +T05 +X-00615Y-00945 +X-00515 +X-00355 +X-00255 +X00315 +X00415 +X00515 +X00615 +X0047Y00885 +Y00985 +X0037 +Y00885 +X0027 +Y00985 +X007Y0071 +Y0061 +Y0051 +Y0041 +X00825 +Y0051 +Y0061 +Y0071 +Y0028 +Y0018 +Y0008 +T06 +X0084646Y-0094488 +X-0084646 +Y0102362 +X0084646 +M30 diff --git a/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.apr b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.apr new file mode 100644 index 0000000..5f824cd --- /dev/null +++ b/Hardware/Release/2021-12-07_23-28_DryBox_R1/Gerber/DryBox.apr @@ -0,0 +1,77 @@ +D10 ROUNDED 7.874 7.874 0.000 LINE 0.000 +D11 ROUNDED 9.842 9.842 0.000 LINE 0.000 +D12 ROUNDED 10.000 10.000 0.000 LINE 0.000 +D13 ROUNDED 8.000 8.000 0.000 LINE 0.000 +D14 ROUNDED 6.000 6.000 0.000 LINE 0.000 +D15 ROUNDED 5.020 5.020 0.000 LINE 0.000 +D16 ROUNDED 5.906 5.906 0.000 LINE 0.000 +D17 RECTANGULAR 37.992 35.433 0.000 FLASH 270.000 +D18 RECTANGULAR 61.024 51.181 0.000 FLASH 0.000 +D19 RECTANGULAR 21.654 31.496 0.000 FLASH 270.000 +D20 RECTANGULAR 37.992 35.433 0.000 FLASH 180.000 +D21 RECTANGULAR 27.559 35.433 0.000 FLASH 0.000 +D22 RECTANGULAR 39.370 19.685 0.000 FLASH 0.000 +D23 ROUNDED 39.370 19.685 0.000 FLASH 0.000 +D24 RECTANGULAR 27.559 35.433 0.000 FLASH 90.000 +D25 RECTANGULAR 52.756 70.866 0.000 FLASH 180.000 +D26 RECTANGULAR 59.055 125.984 0.000 FLASH 270.000 +D27 RECTANGULAR 52.756 70.866 0.000 FLASH 270.000 +D28 RECTANGULAR 31.496 35.433 0.000 FLASH 270.000 +D29 RECTANGULAR 59.055 35.433 0.000 FLASH 180.000 +D30 RECTANGULAR 59.055 35.433 0.000 FLASH 90.000 +D31 RECTANGULAR 161.417 173.622 0.000 FLASH 270.000 +D32 RECTANGULAR 51.181 23.622 0.000 FLASH 270.000 +D33 RECTANGULAR 78.740 236.220 0.000 FLASH 90.000 +D34 RECTANGULAR 35.433 78.740 0.000 FLASH 90.000 +D35 RECTANGULAR 393.701 314.961 0.000 FLASH 90.000 +D36 RECTANGULAR 45.992 43.433 0.000 FLASH 270.000 +D37 RECTANGULAR 69.024 59.181 0.000 FLASH 0.000 +D38 RECTANGULAR 29.654 39.496 0.000 FLASH 270.000 +D39 RECTANGULAR 45.992 43.433 0.000 FLASH 180.000 +D40 RECTANGULAR 35.559 43.433 0.000 FLASH 0.000 +D41 RECTANGULAR 47.370 27.685 0.000 FLASH 0.000 +D42 ROUNDED 47.370 27.685 0.000 FLASH 0.000 +D43 RECTANGULAR 35.559 43.433 0.000 FLASH 90.000 +D44 RECTANGULAR 60.756 78.866 0.000 FLASH 180.000 +D45 RECTANGULAR 67.055 133.984 0.000 FLASH 270.000 +D46 RECTANGULAR 60.756 78.866 0.000 FLASH 270.000 +D47 RECTANGULAR 39.496 43.433 0.000 FLASH 270.000 +D48 RECTANGULAR 67.055 43.433 0.000 FLASH 180.000 +D49 RECTANGULAR 67.055 43.433 0.000 FLASH 90.000 +D50 RECTANGULAR 169.417 181.622 0.000 FLASH 270.000 +D51 RECTANGULAR 59.181 31.622 0.000 FLASH 270.000 +D52 RECTANGULAR 86.740 244.220 0.000 FLASH 90.000 +D53 RECTANGULAR 43.433 86.740 0.000 FLASH 90.000 +D54 RECTANGULAR 401.701 322.961 0.000 FLASH 90.000 +D55 ROUNDED 145.795 145.795 0.000 FLASH 0.000 +D56 RECTANGULAR 67.055 67.055 0.000 FLASH 180.000 +D57 ROUNDED 67.055 67.055 0.000 FLASH 0.000 +D58 ROUNDED 55.244 55.244 0.000 FLASH 0.000 +D59 RECTANGULAR 55.244 55.244 0.000 FLASH 180.000 +D60 ROUNDED 68.000 68.000 0.000 FLASH 0.000 +D61 RECTANGULAR 67.055 67.055 0.000 FLASH 90.000 +D62 RECTANGULAR 67.055 86.740 0.000 FLASH 180.000 +D63 ROUNDED 67.055 86.740 0.000 FLASH 180.000 +D64 ROUNDED 19.685 19.685 0.000 LINE 0.000 +D65 ROUNDED 11.811 11.811 0.000 LINE 0.000 +D66 ROUNDED 51.181 51.181 0.000 LINE 0.000 +D67 ROUNDED 27.559 27.559 0.000 LINE 0.000 +D68 ROUNDED 31.496 31.496 0.000 LINE 0.000 +D69 ROUNDED 23.622 23.622 0.000 LINE 0.000 +D70 ROUNDED 39.370 39.370 0.000 LINE 0.000 +D71 ROUNDED 137.795 137.795 0.000 FLASH 0.000 +D72 RECTANGULAR 59.055 59.055 0.000 FLASH 180.000 +D73 ROUNDED 59.055 59.055 0.000 FLASH 0.000 +D74 ROUNDED 47.244 47.244 0.000 FLASH 0.000 +D75 RECTANGULAR 47.244 47.244 0.000 FLASH 180.000 +D76 ROUNDED 60.000 60.000 0.000 FLASH 0.000 +D77 RECTANGULAR 59.055 59.055 0.000 FLASH 90.000 +D78 RECTANGULAR 59.055 78.740 0.000 FLASH 180.000 +D79 ROUNDED 59.055 78.740 0.000 FLASH 180.000 +D80 ROUNDED 31.496 31.496 0.000 FLASH 0.000 +D81 ROUNDED 39.370 39.370 0.000 FLASH 0.000 +D82 ROUNDED 3.937 3.937 0.000 LINE 0.000 +D83 ROUNDED 2.000 2.000 0.000 LINE 0.000 +D84 ROUNDED 15.000 15.000 0.000 LINE 0.000 +D85 ROUNDED 1.000 1.000 0.000 LINE 0.000 +D86 ROUNDED 16.000 16.000 0.000 LINE 0.000 diff --git a/Hardware/Schematic.pdf b/Hardware/Schematic.pdf new file mode 100644 index 0000000..6436bbc Binary files /dev/null and b/Hardware/Schematic.pdf differ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..2b46cbe --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +# DIY WiFi Enabled 3D Printing Filament Dry Box + + +## What is this project about? +[![DIY WiFi Enabled Filament Dry Box](http://img.youtube.com/vi/OI9FtfCVnL0/0.jpg)](http://www.youtube.com/watch?v=OI9FtfCVnL0 "DIY WiFi Enabled Filament Dry Box") + +Above video shows the finished DryBox, how it works and motivation behind some of the design decisions. + +## How can I build my own? +The above video explains the idea and how hardware and firmware works. It's recommended that you watch that first. +Hardware and firmware build instructions and source files are available in their respective folders. + +--- + +Blog page: https://sasakaranovic.com/projects/diy-filament-dry-box + +YouTube video: http://www.youtube.com/watch?v=OI9FtfCVnL0 + + +--- + +#### Sasa Karanovic + + Home Page  ·  + YouTube  ·  + GitHub  ·  + Twitter  ·  + Instagram  ·  + Buy me a coffee + + +[home]: https://raw.githubusercontent.com/SasaKaranovic/common/master/assets/img_home.png "Sasa Karanovic Home Page" +[youtube]: https://raw.githubusercontent.com/SasaKaranovic/common/master/assets/img_youtube.png "Sasa Karanovic YouTube channel" +[github]: https://raw.githubusercontent.com/SasaKaranovic/common/master/assets/img_github.png "Sasa Karanovic on GitHub" +[twitter]: https://raw.githubusercontent.com/SasaKaranovic/common/master/assets/img_twitter.png "Sasa Karanovic on Twitter" +[instagram]: https://raw.githubusercontent.com/SasaKaranovic/common/master/assets/img_instagram.png "Sasa Karanovic on Instagram" +[coffee]: https://raw.githubusercontent.com/SasaKaranovic/common/master/assets/img_coffee.png "Buy me a coffee" \ No newline at end of file