From 5df55d39bee01ab79ffad61426874ff0c8bd2594 Mon Sep 17 00:00:00 2001 From: Anton Ignatov Date: Fri, 31 May 2019 16:02:21 +0200 Subject: [PATCH 1/4] Fix nil issue in module controller --- app/controllers/my_module_tags_controller.rb | 5 +- public/marvin4js-license.cxl | 15 + public/marvinjs/css/doc.css | 276 + public/marvinjs/css/example-edit-images.css | 105 + public/marvinjs/css/index.css | 103 + public/marvinjs/css/substructuresearch.css | 34 + public/marvinjs/demo.html | 47 + public/marvinjs/docs/README.html | 11 + public/marvinjs/docs/compatibility.html | 68 + public/marvinjs/docs/dev/embed.html | 146 + public/marvinjs/docs/dev/webservices.html | 217 + public/marvinjs/docs/images/no.png | Bin 0 -> 699 bytes public/marvinjs/docs/images/yes.png | Bin 0 -> 747 bytes public/marvinjs/docs/index.html | 28 + public/marvinjs/docs/installationguide.html | 81 + public/marvinjs/docs/manual/index.html | 7 + public/marvinjs/docs/troubleshoot.html | 109 + public/marvinjs/editor.html | 43 + public/marvinjs/editorws.html | 44 + .../examples/abbreviations/demoabbrev.json | 9 + .../abbreviations/myabbreviations.mrv | 3 + .../abbreviations/myabbreviations.sdf | 44 + .../examples/checker/example-checker.html | 527 ++ public/marvinjs/examples/checker/molchange.js | 61 + public/marvinjs/examples/demo.html | 427 + .../examples/eflow/alternative-eflow.html | 34 + public/marvinjs/examples/example-abbrevs.html | 124 + .../marvinjs/examples/example-addbutton.html | 71 + .../examples/example-addtemplate.html | 58 + .../marvinjs/examples/example-copyasmrv.html | 95 + .../examples/example-couple-editors.html | 232 + .../examples/example-create-abbreviation.html | 106 + .../examples/example-create-image.html | 307 + .../examples/example-create-template.html | 159 + .../examples/example-customize-service.html | 113 + .../examples/example-defaulttool.html | 100 + .../examples/example-edit-images.html | 249 + .../examples/example-get-selection.html | 155 + .../marvinjs/examples/example-getimage.html | 112 + .../examples/example-getmol-with-ws.html | 106 + public/marvinjs/examples/example-getmol.html | 88 + .../examples/example-highlight-by-index.html | 132 + .../marvinjs/examples/example-highlight.html | 209 + .../marvinjs/examples/example-lazyinit.html | 37 + .../marvinjs/examples/example-lonepair.html | 150 + .../example-more-images-immediately.html | 136 + public/marvinjs/examples/example-qrcode.html | 314 + .../marvinjs/examples/example-reaction.html | 97 + ...ample-removedefaultservicefromtoolbar.html | 97 + .../marvinjs/examples/example-selection.html | 296 + public/marvinjs/examples/example-setmol.html | 192 + .../examples/example-templates-default.html | 28 + .../marvinjs/examples/example-templates.html | 28 + ...xample-templates_with_displaysettings.html | 98 + .../marvinjs/examples/example-toolbars.html | 84 + ...example-toolbars_with_displaysettings.html | 98 + public/marvinjs/examples/form/echo.php | 12 + .../examples/form/example-submit-form.html | 51 + .../marvinjs/examples/images/custom-icon.png | Bin 0 -> 918 bytes public/marvinjs/examples/images/qr.png | Bin 0 -> 630 bytes public/marvinjs/examples/images/search.png | Bin 0 -> 1125 bytes public/marvinjs/examples/index.html | 59 + public/marvinjs/examples/jqueryui/dialog.html | 74 + .../properties/example-set-properties.html | 298 + .../marvinjs/examples/properties/xmlindent.js | 55 + .../examples/query/substructuresearch.html | 138 + public/marvinjs/examples/textbox/textbox.html | 41 + .../5C5DC5E8F823390618266388A9FBC038.cache.js | 7878 +++++++++++++++++ ...FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt | 2 + public/marvinjs/gui/clear.cache.gif | Bin 0 -> 43 bytes public/marvinjs/gui/css/editor.css | 61 + public/marvinjs/gui/css/editor.min.css | 1 + public/marvinjs/gui/gui.nocache.js | 25 + public/marvinjs/gui/lib/promise-1.0.0.min.js | 1 + public/marvinjs/index.html | 55 + public/marvinjs/js/lib/jquery-1.9.1.min.js | 5 + public/marvinjs/js/lib/qrcode/qrcode.min.js | 1 + public/marvinjs/js/lib/rainbow/github.css | 92 + .../js/lib/rainbow/rainbow-custom.min.js | 13 + public/marvinjs/js/lib/rainbow/twilight.css | 82 + public/marvinjs/js/marvinjslauncher.js | 120 + public/marvinjs/js/util.js | 177 + public/marvinjs/js/webservices.js | 22 + public/marvinjs/jsdoc.html | 348 + .../marvinjs/licenses/3rdparty_license.html | 62 + public/marvinjs/licenses/MIT_License.txt | 20 + public/marvinjs/licenses/apache.txt | 176 + public/marvinjs/licenses/bouncycastle.txt | 8 + .../marvinjs/licenses/es6_promise_license.txt | 19 + public/marvinjs/licenses/jquery.txt | 21 + public/marvinjs/licenses/qrcode_license.txt | 14 + public/marvinjs/marvinpack.html | 17 + .../marvinjs/templates/default_templates.json | 28 + .../marvinjs/templates/default_templates.mrv | 5 + .../default_templates_with_naphtalane.json | 33 + public/marvinjs/templates/empty.mrv | 1 + public/marvinjs/templates/mytemplates.mrv | 3 + 97 files changed, 16532 insertions(+), 1 deletion(-) create mode 100644 public/marvin4js-license.cxl create mode 100644 public/marvinjs/css/doc.css create mode 100644 public/marvinjs/css/example-edit-images.css create mode 100644 public/marvinjs/css/index.css create mode 100644 public/marvinjs/css/substructuresearch.css create mode 100644 public/marvinjs/demo.html create mode 100644 public/marvinjs/docs/README.html create mode 100644 public/marvinjs/docs/compatibility.html create mode 100644 public/marvinjs/docs/dev/embed.html create mode 100644 public/marvinjs/docs/dev/webservices.html create mode 100644 public/marvinjs/docs/images/no.png create mode 100644 public/marvinjs/docs/images/yes.png create mode 100644 public/marvinjs/docs/index.html create mode 100644 public/marvinjs/docs/installationguide.html create mode 100644 public/marvinjs/docs/manual/index.html create mode 100644 public/marvinjs/docs/troubleshoot.html create mode 100644 public/marvinjs/editor.html create mode 100644 public/marvinjs/editorws.html create mode 100644 public/marvinjs/examples/abbreviations/demoabbrev.json create mode 100644 public/marvinjs/examples/abbreviations/myabbreviations.mrv create mode 100644 public/marvinjs/examples/abbreviations/myabbreviations.sdf create mode 100644 public/marvinjs/examples/checker/example-checker.html create mode 100644 public/marvinjs/examples/checker/molchange.js create mode 100644 public/marvinjs/examples/demo.html create mode 100644 public/marvinjs/examples/eflow/alternative-eflow.html create mode 100644 public/marvinjs/examples/example-abbrevs.html create mode 100644 public/marvinjs/examples/example-addbutton.html create mode 100644 public/marvinjs/examples/example-addtemplate.html create mode 100644 public/marvinjs/examples/example-copyasmrv.html create mode 100644 public/marvinjs/examples/example-couple-editors.html create mode 100644 public/marvinjs/examples/example-create-abbreviation.html create mode 100644 public/marvinjs/examples/example-create-image.html create mode 100644 public/marvinjs/examples/example-create-template.html create mode 100644 public/marvinjs/examples/example-customize-service.html create mode 100644 public/marvinjs/examples/example-defaulttool.html create mode 100644 public/marvinjs/examples/example-edit-images.html create mode 100644 public/marvinjs/examples/example-get-selection.html create mode 100644 public/marvinjs/examples/example-getimage.html create mode 100644 public/marvinjs/examples/example-getmol-with-ws.html create mode 100644 public/marvinjs/examples/example-getmol.html create mode 100644 public/marvinjs/examples/example-highlight-by-index.html create mode 100644 public/marvinjs/examples/example-highlight.html create mode 100644 public/marvinjs/examples/example-lazyinit.html create mode 100644 public/marvinjs/examples/example-lonepair.html create mode 100644 public/marvinjs/examples/example-more-images-immediately.html create mode 100644 public/marvinjs/examples/example-qrcode.html create mode 100644 public/marvinjs/examples/example-reaction.html create mode 100644 public/marvinjs/examples/example-removedefaultservicefromtoolbar.html create mode 100644 public/marvinjs/examples/example-selection.html create mode 100644 public/marvinjs/examples/example-setmol.html create mode 100644 public/marvinjs/examples/example-templates-default.html create mode 100644 public/marvinjs/examples/example-templates.html create mode 100644 public/marvinjs/examples/example-templates_with_displaysettings.html create mode 100644 public/marvinjs/examples/example-toolbars.html create mode 100644 public/marvinjs/examples/example-toolbars_with_displaysettings.html create mode 100644 public/marvinjs/examples/form/echo.php create mode 100644 public/marvinjs/examples/form/example-submit-form.html create mode 100644 public/marvinjs/examples/images/custom-icon.png create mode 100644 public/marvinjs/examples/images/qr.png create mode 100644 public/marvinjs/examples/images/search.png create mode 100644 public/marvinjs/examples/index.html create mode 100644 public/marvinjs/examples/jqueryui/dialog.html create mode 100644 public/marvinjs/examples/properties/example-set-properties.html create mode 100644 public/marvinjs/examples/properties/xmlindent.js create mode 100644 public/marvinjs/examples/query/substructuresearch.html create mode 100644 public/marvinjs/examples/textbox/textbox.html create mode 100644 public/marvinjs/gui/5C5DC5E8F823390618266388A9FBC038.cache.js create mode 100644 public/marvinjs/gui/FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt create mode 100644 public/marvinjs/gui/clear.cache.gif create mode 100644 public/marvinjs/gui/css/editor.css create mode 100644 public/marvinjs/gui/css/editor.min.css create mode 100644 public/marvinjs/gui/gui.nocache.js create mode 100644 public/marvinjs/gui/lib/promise-1.0.0.min.js create mode 100644 public/marvinjs/index.html create mode 100644 public/marvinjs/js/lib/jquery-1.9.1.min.js create mode 100644 public/marvinjs/js/lib/qrcode/qrcode.min.js create mode 100644 public/marvinjs/js/lib/rainbow/github.css create mode 100644 public/marvinjs/js/lib/rainbow/rainbow-custom.min.js create mode 100644 public/marvinjs/js/lib/rainbow/twilight.css create mode 100644 public/marvinjs/js/marvinjslauncher.js create mode 100644 public/marvinjs/js/util.js create mode 100644 public/marvinjs/js/webservices.js create mode 100644 public/marvinjs/jsdoc.html create mode 100644 public/marvinjs/licenses/3rdparty_license.html create mode 100644 public/marvinjs/licenses/MIT_License.txt create mode 100644 public/marvinjs/licenses/apache.txt create mode 100644 public/marvinjs/licenses/bouncycastle.txt create mode 100644 public/marvinjs/licenses/es6_promise_license.txt create mode 100644 public/marvinjs/licenses/jquery.txt create mode 100644 public/marvinjs/licenses/qrcode_license.txt create mode 100644 public/marvinjs/marvinpack.html create mode 100644 public/marvinjs/templates/default_templates.json create mode 100644 public/marvinjs/templates/default_templates.mrv create mode 100644 public/marvinjs/templates/default_templates_with_naphtalane.json create mode 100644 public/marvinjs/templates/empty.mrv create mode 100644 public/marvinjs/templates/mytemplates.mrv diff --git a/app/controllers/my_module_tags_controller.rb b/app/controllers/my_module_tags_controller.rb index 7dc692a82..2523bc1a9 100644 --- a/app/controllers/my_module_tags_controller.rb +++ b/app/controllers/my_module_tags_controller.rb @@ -55,7 +55,7 @@ class MyModuleTagsController < ApplicationController end def create - return render_403 unless mt_params[:tag_id] + return render_403 unless params[:my_module_tag] && mt_params[:tag_id] @mt = MyModuleTag.new(mt_params.merge(my_module: @my_module)) @mt.created_by = current_user @@ -125,6 +125,9 @@ class MyModuleTagsController < ApplicationController def destroy_by_tag_id tag = @my_module.my_module_tags.find_by_tag_id(params[:id]) + + return render_404 unless tag + tag.destroy render json: { result: tag } end diff --git a/public/marvin4js-license.cxl b/public/marvin4js-license.cxl new file mode 100644 index 000000000..9ebed5b84 --- /dev/null +++ b/public/marvin4js-license.cxl @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/marvinjs/css/doc.css b/public/marvinjs/css/doc.css new file mode 100644 index 000000000..dd11a67eb --- /dev/null +++ b/public/marvinjs/css/doc.css @@ -0,0 +1,276 @@ +html{ + font-family: "Titillium", Cambria, Helvetica, Arial, Geneva, sans-serif !important; + padding: 20px 5% 20px 5% !important; + background: #29999c; +} + +body { + clear: both; + box-shadow: 2px 2px 3px #444; + border-radius: 3px; + padding: 20px !important; + margin: 0px; + background: #f9f9f9; + min-width: 650px; +} + +table { + border-collapse: collapse; +} + +a, a:link, a:active{color:#29999C !important;} +a:visited{color:#55299C !important;} +a:hover{color:#3EB9BD !important;} + + +h1 { + text-align: center; + color: #29999c; + background: white; + border-radius: 3px 3px 0px 0px; + margin: -20px -20px 0px -20px; + border-bottom: 1px solid #888; +} + +h1, h1 a, h2 a{ + font-family: "Titillium", Cambria, Helvetica, Arial, Geneva, sans-serif !important; +} + +.version { + font-family: sans-serif; + font-size: smaller; + float: right; +} + +pre { + padding: 30px; + font-family: courier; + max-width: 70vw; + overflow-x: auto; +} + +input { + border: 1px solid; +} + +iframe{ + border:none; + padding: 0px; + margin: 0px; + + box-shadow: 2px 2px 3px #888; +} + +select { + border: 1px solid; +} + +textarea { + font-family: monospace; +} + + +#molsource-box{ + min-width: 30%; + width: 600px; + height: 350px; +} +.sketcher-frame { + margin: -2px; + resize: none; + min-width: 370px; + min-height: 370px; + height: 100%; + width: 100%; + overflow: hidden; +} + +.resizable{ + border: none; + padding: 0px 8px 8px 0px; + border: 0px; + resize: both; + width: 510px; + height: 510px; + min-width: 370px; + min-height: 370px; + overflow: auto; + background-color: transparent; +} + +ul.horizontalmenu { + margin-top: 0px; + margin-bottom: 0px; + padding-top: 2px; + padding-bottom: 2px; + padding-left: 6px; + background-color: #dddddd; +} + +ul.horizontalmenu li { + display: inline; + list-style-type: none; + padding-right: 6px; +} + +input[type="checkbox"], input[type="button"] { + cursor: pointer; +} + +input[type="number"] { + width: 70px; + text-indent: 2px; +} + +.table-layout { + vertical-align: top; +} + +.table-layout li { + display: table-row; +} +.table-layout li >* { + display: table-cell; + padding: 2px; +} + +label { + cursor: pointer; +} + +.darkbox { + display: inline-block; + margin-left: 10px; + margin-right: 10px; + background-color: transparent; +} + +.scrollablebox { + width: 90%; + height:350px; + white-space: nowrap; + overflow: scroll; + margin-bottom: 20px; + margin-top: 0px; + margin-left: 2px; + margin-right: 2px; +} + +#submitButton { + margin-top: -20px; +} + +td { vertical-align: top; } +li { list-style-type: none; } + +.molecule-div { + background-color: #bababa; + margin-left: 20px; + margin-right: 0px; + font-size: 11px; +} + +div#serviceForm { + margin: 10px; + background-color: #ddd; + padding: 4px; + clear: none; + display: inline-block; + font-family: sans-serif; + font-size: 12px; +} + +div#serviceForm input { + border: none; + margin: 2px; + margin-left: 0px; +} + +.editorheader { + float: left; + margin-left: 10px; + margin-right: 10px; + margin-top: 5px; + margin-bottom: 5px; + background-color: transparent; +} + +.left10 { + margin-left: 10px; +} + +#convertStructureInputHeader { + display: inline-block; + margin-right: 10px; + background-color: #ddd; + font-size: 12px; + font-family: sans-serif; + margin-bottom: 20px; +} + +.bordered { + box-shadow: 2px 2px 3px #444; +} + +/* APIDOC style */ +.rightSide { + float: right; +} + +div.table { + border: 1px solid; + display: table; + width: 100%; + margin-bottom: 14px; +} + +div.api-header div.api-body { + display: table-row; +} + +.api-body, .api-header, div.inner-api-table { + padding-left: 1em; + padding-right: 1em; +} + +div.api-body p:last-of-type { + margin-bottom: 1em; +} + +.api-header { + background-color: #29999C; + color: #FFFFFF; + font-weight: bold; +} + +span.api-method-returntype:before { + content: "Returns: "; +} + +div code { + background-color: inherit; + border: none; +} + +div.inner-api-table { + display: block; + background-color: lightblue; + border: none; + overflow-x: auto; +} + +/* categories.html and items.html */ +table.cell-borrder-vertical tr > td { + padding-top: 0.5em; +} + +table.cell-border-vertical tr > td, table.cell-border-vertical tr > th { + border-left: 1px solid; + padding-left: 15px; + padding-right: 15px; +} + +table.cell-border-vertical tr > td:first-of-type, table.cell-border-vertical tr > th:first-of-type { + border-left: none; + padding-left: initial; +} diff --git a/public/marvinjs/css/example-edit-images.css b/public/marvinjs/css/example-edit-images.css new file mode 100644 index 000000000..5abd297da --- /dev/null +++ b/public/marvinjs/css/example-edit-images.css @@ -0,0 +1,105 @@ + .image-container { + margin-top: 10px; + margin-bottom: 30px; + display: inline-table; + } + .mol-cell { + display: inline; + float: left; + margin-top: 4px; + margin-bottom: 4px; + margin-left: 4px; + margin-right: 24px; + } + .mol-cell span { + font-weight: bold; + padding-top: 2px; + padding-left: 2px; + padding-right: 2px; + background: lightgrey; + } + .mol-cell img, .mol-cell iframe { + display: block; + border: none; + } + + div.table-bottom { + clear: both; + height: 20px; + width: 100%; + } + + .close-button { + float: right; + font-weight: bold; + font-size: 25px; + color: rgb(250, 250, 240); + visibility: inherit; + background: inherit; + border: none; + z-index: inherit; + } + + #popup iframe { + width: 500px; + height: 510px; + margin: 0px; + padding: 0px; + border:none; + box-shadow: 2px 2px 8px #888; + } + + #popup .wrapper { + width: 500px; + height: 550px; + margin: 0px; + padding: 0px; + position: fixed; + top: 50%; + left: 50%; + margin-left: -250px; + margin-top: -300px; + z-index: 102; + } + + #sketchContainer{ + clear:both; + margin: 0px; + padding: 0px; + } + + #popup { + width:100%; + height:100%; + background-color: rgba(0, 0, 0, 0.5); + } + + .image-container img{ + background-color: transparent; + box-shadow: 2px 2px 8px #444; + transform:rotate(0deg); + -ms-transform:rotate(0deg); /* Internet Explorer */ + -moz-transform:rotate(0deg); /* Firefox */ + -webkit-transform:rotate(0deg); /* Safari and Chrome */ + -o-transform:rotate(0deg); /* Opera */ + + -webkit-transition: -webkit-transform 0.2s linear 0s; + -moz-transition: -moz-transform 0.2s linear 0s; + -o-transition: -o-transform 0.2s linear 0s; + transition: transform 0.2s linear 0s; + } + + .image-container img:hover{ + background-color: white; + box-shadow: 2px 2px 8px #444; + transform:scale(1.05) rotate(3deg); + -ms-transform:scale(1.05) rotate(3deg); /* Internet Explorer */ + -moz-transform:scale(1.05) rotate(3deg); /* Firefox */ + -webkit-transform:scale(1.05) rotate(3deg); /* Safari and Chrome */ + -o-transform:scale(1.05) rotate(3deg); /* Opera */ + + -webkit-transition: -webkit-transform 0.2s linear 0s; + -moz-transition: -moz-transform 0.2s linear 0s; + -o-transition: -o-transform 0.2s linear 0s; + transition: transform 0.2s linear 0s; + } \ No newline at end of file diff --git a/public/marvinjs/css/index.css b/public/marvinjs/css/index.css new file mode 100644 index 000000000..90d7cd2ab --- /dev/null +++ b/public/marvinjs/css/index.css @@ -0,0 +1,103 @@ +html{ + font-family: "Titillium", Cambria, Helvetica, Arial, Geneva, sans-serif !important; + padding: auto; + background: #f4f4f4; + text-align: left; + width: 100%; + height: 100%; +} + +body { + margin: 20px; +} + +h1{ + font-size: 35px; +} + +h1, h1 a, h2 a{ + font-family: "Titillium", Cambria, Helvetica, Arial, Geneva, sans-serif !important; + margin: 0px; +} + +input { + border: 1px solid; +} + +iframe{ + border:none; + padding: 0px; + margin: 0px; + box-shadow: 2px 2px 3px #888; +} + +.sketcher-frame { + margin: -2px; + resize: none; + min-width: 370px; + min-height: 370px; + height: 100%; + width: 100%; + + overflow: hidden; + +} + +.resizable{ + border: none; + padding: 0px 8px 8px 0px; + border: 0px; + resize: both; + width: 880px; + height: 460px; + min-width: 370px; + min-height: 370px; + overflow: auto; + background-color: transparent; +} + +.index_box, .index_box:hover{ + float: left; + box-shadow: 2px 2px 3px #444; + vertical-align: text-bottom; + min-width: 280px; + min-height:140px; + margin: 10px; + background-repeat: no-repeat; + position:relative; + cursor: pointer; +} + +.index_box{ + opacity: 0.6; +} + +.index_box:hover{ + opacity: 1; +} + +.doc, .doc:hover{ + margin-left: 0px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAACMCAYAAACnDrZtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABnZSURBVHhe7d0r1+RUtIXh8xMxGBQGhUFhUBgUBoVBIVAYFAaFQWFQGBQGh2iF6jOeOsw+qzc7qdQldfl6vWOsUVXJvqU6c2btndTX//O6aZpmJ9pgmqbZjTaYpml2ow2maZrdaINpmmY32mCaptmNNpimaXajDaZpmt1og2maZjfaYJoXzW+//fb6559/fv3dd99tju+///5QL/Hnn3/+21pzKm0wzYuACfzyyy8Hg/jiiy9ef/zxx6/fe++9XULbn3322SG+/PLLQ5+//vprG9GENpjm6fjnn38OmQVhf/75568/+OCDqRHcKz799NO3jOevv/76d+TvHm0wzVMgO/n6669ff/LJJ1NRP3rIer755pvXv//++79H9G7QBtM8JLIUaydfffXVw2Uol8aHH354OC6m6ThfMm0wzUPBVEwv3n///ak4X1o4TmtGplIvkTaY5u64iv/www+vP/roo6kI35Uw/fvpp5/+/VZeBm0wzd34+++/DwuhL20KdGkw2h9//PFFTJ/aYJqbw1isQbwr06Bzw1oNA35mo2mDaW4GoXiI7ZbG4pax51UYGrEmZAj1YbqlsDZS6wlrJtq81R0td6Ce9e5TG0xzEwh1z4ffBMG7lW2h+NbPnjAj5sl4ZmO7NJiy9p+NNphmV0yHXPFnorkkCM5DdjIK4s404tWrV4fXe2JMszFfI2Rkz/TEcBtMsxsyiWtOh2RApjZ//PHHvz38P+6+WLNwN2oPHIvs5Ji4ZU4WaR03cxWed/GQ3bUyOIviz3K3qQ2muTqyCVOVmThODWLS1toahPUVZb1egj7GBVUGIVPSPoNZQ9ncal8yOgZk3zXMRqb06LTBNFeFyKTxM0GcEtpwlV67g2Jfpl/HzIV5zLIPU6pvv/32TaZVMwN1ZEW2e3VsS2gni76ylS1o/9K7aXtlbNeiDaa5GlWQ54S6spUtawzMJZmF1yWMKVkF06rUfSLTGozTO+s8S1RzWRvLEuozinO/u0eeLrXBNFfBSX7uldg06JQrcTUXwl5a2JWZpA9jqyahP9v8LEEokylHrVe3zxjNZS3jOoa29HXOg4ePajJtMM3FOLlnJ/2WMMVZm3qMVHNxxZ/djq5lBCOpv/UxhbGdkVgw9l52Q+BZz8nUa23dpZrLmtGdSh3HKfGIJtMG01zEuebCHM75gV+yDaZhijPCrCL6lKv9RLjGzYgsthqLaRlTUt4+/di+ZH5bsyhTLVnJbKzHMO5Tpk3G/mi3sNtgmrM511xkDudc7etVfXa1zi3i2heBgyEkK0ndLLAqwyRiRqZPyi2tu1Rz0d+YRfnsGKs5MKwlfBfWnvRvjBX7ajZ2LMZ1pnvTBtOcxTnm4uQ/50qOui4yu0tjqkPsxBhhZ10nhpDsBDER7apn3YO5MBXbl56aXTMX2c7MDJjLkqGOWUoMsVLNcUt4VuhRaINpTiYiPCUImVDWYD5MaEzzYwZitibCXBiEPlI2C7PVXDJV8qqM7TEXbTAL78csIqyZC+NSl1noW391HDOqaarrgbw1tq7L6PuUda09aYNpTsKJe+q6wDHhEG7ENk4lXNHTFlGPmUDMhZBjfIQYRnNRPuIX3jM2YzBNmvWBJXOpWYt+fc4a0Gwah3HaE4M7hjEw4NRbC+0/Am0wzWZOOcETx6ZExJY2GVe98jKMmIHXUYTVXJJ9EJZxImssMRdlmEPGVvel7GyRdMlc9O+zejHRTGUyPRtRty5C1/aOYaz6St1jMZtu3Zo2mGYzub27NZamGiECTfma6RA6w8i+USzVXBgA0YpkH8mIkkWkTNqr+zKtWso4ZuZC7Pq3LcaXPpemRcox0RzXKeZibOqIrT8zUO7etME0myD+2Um8FhHejAg0ZevCrSymGs+4qEuUWesAA1A+2c/MMJSpV/8s4iZLmi0cI+se1Qwsotom80qfMYAlc0n24W6Rtk4xF21q2/dlvMxyq8mcu6h+LdpgmqMQ0SnrLsLVfImIMW0SaqY1Y6YxLuoSJXESKhgD4WVqk7brXaCUUc++jC1GpY/0X5mZi7Zssy91mIdtS+bCkJiLV8e21Vy0n+d+GEqts9XwjfOetME0R4motkY1jBHCV0aWQdiEX4UTQQlCrAuu3tsW0WiDcAkcyRKq0CPuTHMybTM+49ReXfcJM3PJtrq+IkNIZjLDWJJ5ON6t5mJMMdo69auMU75ZGNus7q1og2lWMc1xks5O3lnICJYExKi0JctI2h9zQMxHKFfTeyIhqNxlStaQZz6yJlOFnulPjKEan21jH2HJXJSv60Tpc7zzFdTxfeiDwY1muoTyye7UWzLrrVlMvqN70AbTrHLKA16CqEcIhNgIjDFEGHUaM4qlrp8k28hUJgvAdarDDOqism3KROQ1UyG4sY8Qc1E3a0gxxmqG2tfuzAB8ZjoxKOOq7a1hMVtfxmAsY9sjW7IYZe5FG0yzyNYrZIIQRwiECImRwCL8aga2R1RjO6lvDUIWk2lS6iezqesotilP5IxJf1mjWZvSzMwlmVa9i8WojGE2FdS38RqT9zHWLeaSu1BiacpVMY6t/0Zb+t+DNphmka13KsSS2AgtV3L7tSmqGdi/1E7MKfUZSeqLaj7BNuWIu2YeBKmt2VhjLspn2lTXi0KOKQZSyT59e5/+Z9OwirHUTHFpsTg4nvzbGBsDS92lqMdwS9pgmimnZC9ENF4hGQLjILhMTTJVsA8xjLRD/CkLV/F69c/n1B8/wzb9EpQ2s/6gL8YSs6pUc4kZ5W5UvRuWNmKYFZ8dK3NTjknU9pZIvXwHa0YgC9N+ysa86ral2JIR7UEbTDOlCv9YjLekGQIh50qOpP9VcE76tDFe6QmtCjSfs8Yju6ifwUwYDnOwr0610te4RjQzl5irfYFpEPJoaPCZ6Sgfc1H/2JO0jtf3pKyYrQmFHFPKqudYtFG3LwVjvAdtMM1/YBCzk3QWTnSiCsRJhLmSg9CUrVfnZBiJuo/QbYvg8jnZSAygCpjYCM02Ytd/SDZS+0DMpfaVdmp9WM9xXGOm5rPtMaP0lfaWsD/GkHHPYNAyv2oijDvrL/rO9rVQ7h60wTT/oWYWx2JmGjUdzxW2bothJGqmQLDKZx0id4xSP/tr1iSDUEb/xFfXZNL/eCu5mkv6ilmMazT61kYynJDyyZRiLsfWUJRP37N2QzKcTO2Uz/eQLOmUqNPPW9EG07wFYTrpZyfoGMoRoohg661nbckmiD6CjWGkjbrgW6caSP0InkB8rmahjDYIj3C1nSlMylvjSB+o5hLBqkPEysacECGPJuCz44+ZxDTrtGzEGOpi7pq5ZAqoPcegPAM1tnH66vjrd7oU4/TwFrTBNG+Rq/BaOPGd9E5sV1mvto3TAmJSLlfOCD7tEEVuHxMfcVczqvVtYzRjdmEqo06yp4hIGdur4aCaS6ZBMSl91bJLz8uYmtTjjdnEGGfooy7mKj8zF8dq3Mwu0z1l9em7rt+f7ckg63EtRT22W9EG07wF0c1OzhpOZoLMZ2Jw8lec+ASQ7TEI23K1JZoQM0n2MNbPg2sxK+TqHoFHbMg0pF61qwhjVBlXNTtk3Wic7jAVfWXNxPh8HtdsKtodjWFmLrb5LhmM6Zc6xqUP/amXNrIdMcjsW4p8t7ekDaZ5gxOwnsRLQbQxCeKsokcWSrMoiyxUMgr16lTCe/uIChFtMoRMF7IfETqTIsqaPdinj5nhiGpUGVdtO4ZVxwjHY3vMIWswNesaqd+VqPUrucvG0GQaxii8t08933XGHzP03dT21+IetME0b4gw1yLi9H68usO+UfARN8ETQ7IHZBqSjIDJ6SP1GYj9NduJAalj2lHby77af9ZRhP5jJtZfbKuCt2+sD22om4yI8B3nuGZTSdahnH68H83F95UMyjEm29GuPhigfTFm29VRLvUYXI5vKYzhHrTBNG9wMs9Ozhq5e1OnExVTBSKI4F1h1WNeWVtI9kBstU0Yg3RffX0Q0HjHSBvaVba255U4q+FUcxEReLbXLEvb+nMMqQ/92x5jypQkZjsjx+2YY7Ax0aA949eWY01GpH9j8T3qI/VjZtpJuWRy9q+FPu5BG0zzBif77OSsUdc0RpKhEAeSERFxBFczgIgkKEMsxJZMhokEomceruaZNmQdIvscQ/ofzSVTpmyvxpX+qjlBJqPNmMusn5FkRl6TgVUjg+3G7/j1HXNxbI6fITCUjDWm57N6vitmucVcRO6W3Zo2mOaAK/HsxKxBAEsQiJM9V+mYC0Fkn/cgFAISxAXGo7x69rvy10wIxG5b2q4ZAQHpIwYWYSYisNQl5KAP7dbx2KY/plONhNB9DzGcijr2a5+ZxTRy3CHTwkzDYhTGqE6MThvKxYQyXWKqp5iLSOZ2a9pgmgO50q5FzSYqhEWco2AIK/tqZhChZJrF3GQEqU9o9ldhMwbbvGq7Zh8R7Jih6FfZ9G1cttdFWa8EXDOSbBvNZTSximNgUsZov3r1mIJxG0NMp35X6qmv7xwTI9S2YzCeOpWyf0toP8d7a9pgmgMR5VoQ9wzCI+aI2AmdjCGijFAzVapXVCIiHvUJaxRxFm7tI6xqdMrZFyHnOPSrTSIn0GRRNUuBetpMRmJfsqdaLu2O6yhI1iG8V08/jCLC9qqv+j0mm2KM+d6Uidl773vTlra9P9VcxNKF4Ra0wTQHcvKvRTKOCoHb58Qnvir2ZAyMASmbTAOpw0SqkQRiJS5teq3TpmQJyVBiAl6JKu0qR5QRaVBOmZidvrQ/mks1gpFkHepo2ziMp47TK7OpfaVNr8I+pliNRns5ZuOp5qJssqFjof170QbTHHDVnp2cCSf9COFEABF3rpb2Eb92EZHHfJCpkbp5Pz57kmxC2B+D0H7dVs0laxeEpV1j1DeBhkxBkpFoQ3vMoZpLTHIcF2IMzCN1HL/+8tmrdvXP7JB6MpWMw7irucRM0nY+22/Mtjl2dddCed/BvWiDaQ4Q1uwETRDJSG6fJuqUIHd5CDdmkEwjmBrZTiz21bURxDQISVsRKNS1TQaRcowlWZArfMTtczIHRMimazBGplDHD6JWri4Ih0z19BN8H0wgJug105uYW8zFGDJuJrNkLsaTz8J72479eyXqWtU9aINpDhDB7ARNjCJzotf91RzsqwLOGku9kkZoymY/QwiZTiXq2kcyFK8RqfbU106yEALNvmCaR6jJpPTPwEZzSeYzmh6YSvoPjtXxxAT1oz6DieHMzMW2mAszMJ46voxXW/ZBlqTusXBc49hvTRtMc8AJPDtJE3Vqg3oFTRYS7EvGE+FFHCBeoiEyIrW/ru8QpP1pv16FidE2Is/0IgZCeESlfaZlnz7CaBoR82gu3hu/svW4bNeu8ZreBOanr2xLu/V7MUbb7DOmGE3MxTbmpEyyomRWIiYVc9sS1QDvRRtMc+AUg6m3tEcRRvSElHJVjCBoRjDbT8TVvLKmgxiP/fohzJhLjIpIM3Wr05e0m/FG2KNxQp/6iaihDmOyvU7VZFraiZi3mIv3o7nU95iZi335Xo6FzKma5r1og2kOEMTsRE0QV0jZevLDCc04CJyYqmBCTEVWQmjjftvTJ0OISLwSjfaTFRElsu4ikyB0dZlYJaYhU1JO+Zm56N8+xhFkPsloHFeImSTDSgZyzFy8P9VctJPvZUuMpn4v2mCaAwxkdqImCAMRsM91WoOaRRBHzT7AJGxXd7a/rrvYT9hBWW3LSrzGXDLtYWq2qUvg9eqdBVn7M/6ZuUTEdb0nYq9rKcj2tBOTqNOte5nL+L3ekzaY5gChzE7WGsRNJARBKBWikl1ohxhr9hEibjGm8IxCffsixEB8tmvTvppdMEbbk8UQZjWmmJa+M3WamUumOlmYhjHor2Yk8N62ZEnXNhdlzzUX9etY700bTHPglBN5ln5n7YVJjIIE0ROTMgQ0Zj9ZlFWG8EKmVLZHpCHCZQ5eqzDhvW0MZbboG1JOmZA2q2kEGQKDdIwzc5EBqXuuueQYTzUX7dX1oUegDaY54KSenbRjyARmEJ39NbWv1Lsfo0HlLowgqsCEiMb2KjwkY1Fen6O4iJ3RyW6ENmbmolzKxCAifsY0mkvWjhxj1nKquajLZGMu9tu2Zi7KqmNbsrNTzUXU7+5RaINp3kA4sxM3EbHMIOYlc6nmNYpcZpN+6z7ZgfZsH82FmO2TcehXmdG0Mh1KjP0GJqKtTKvWFoCzjwkkY6vmkqzHWLNfnRiK6VeMo5qLOvW7rQvdW2M23kegDaZ5wyjKWSyZDKHUtY9KFpBni48Eat8okGyfmZay9mXNhpgrmVYllswlt7pjXhH/TKzKKKuO9pSr5hKj0Lfvx37ZXsxF20vmYpt6TPXYYvssmOyYaT0KbTDNG5zwsxN4DIIZM4YlTFvUYRTjukyMYBR0jG5mLsfMg8nFeIS2ZtQpFrIAXZ+dCdo0FuNMdlHNxRj1KUNJu8rJaGJKuZM1Mxdj8FkfPp8Ss/WuR6INpnmLrFdsiYhzjTz5WtdHAnGM5pKpxXhbGIRUzWNmBjUDWLpdm+lXzCcZyWhWYCJpM9Oxai5py3FYM2Ia3sdAtBlTSvvJamxzvMmkfD4ljOORzQVtMM1bjBnCsVha9AUREk699VsZp1q5+i9dlesUbjQmJEsQddF2JLe27V8zF9TFaVHNxauxao+5MBr7816bxlnbzzqObdpWvra/Neo4Hpk2mOY/5I7Q1phlEnAVJ8AtEEsEOjMX05QIcyauesdJO0vrQYQuC7L/mLlk2pQY+/U96Uum5TiTddnGWGIeaT9rMILBZYp0ajyLuaANpvkPRBKxbo0lY9gKES6tlyDZiWxhFJfPmb4QLbOZkTURmVKmYrNMCCmb4xszIuPVFxM1pvRrHOoxG/ViLl7T1iVhvM9iLmiDaaaMV+8tITOY3WHawppokp0Q78zEIl5lGMOMLP46rqXF5cBga3Yx9pv6XmUx6TcP8yVkdo4r06RLQh9b1rwejTaYZpFx/WFrENQl2UxFO6YcS9MeGQTx6df6xgwil2XIspKZLJmLssk+xNhvjIqpZfGW8EdD1r6ypyyaLwWDW8rKHp02mGYRYss6wqkREV5iNOoS19K0x/js19/SQjJMvYyHuWjLMS1Rs5BZv+oyK2amjGMcp5TKMJ2aBZ0byYKelTaYZhUiv+QqTGTnGE3MI9OPGZkaLWUjUFcZhiAb0eaSYMcsZJzuMY1MA43L9Ehb4/dTzebc8L2Zgj07bTDNUYhoXF84NQjG1Xhrqp/MaWndIesypjNLhmE7U5HBMBbvl4wut8gzXmZTybqMxWEmI0yBLv1eZqHN2XTwGWmDaTZzzm9kZuGKzziWjCGLovpbQhsMYc2wGAsDyl0eJjHDdoaR8Y0P6CVLYXqZkvk8Zi6XhvZmDyQ+M20wzUlca21BzLKaTHuYwhK5xbyU3YBQlWFCwmLwDBlNXdQdMyKZRLKpmuFcM5jb0gL1s9MG05xMFd21wtW7PqlL6DIZi7fWUSJ6rwS5tu6iTDINsSRe22vmIvIbIkaXW9B1/zVD2/qphvbSaINpzuaa2cyWYDqMiCmsLRonCxJ1msUYZT97G8ex0DczfSnrLGu0wTQXQejEcmvBMpEZWfxVRpYVGM09TUUwY+N+F4wltME0V8FC6R53VNaCsY3ITuyT7STLqVOve4S7V+5KrWVdL5U2mOaqWEzNXaBbRH1GxvMptskU6sLxvTIXhnvuTydeCm0wzS7IaGQOe6/RWMyFhdLcDaqiZnhjnT1DtmJh+l2aBq3RBtPsimmB6UG9q3PtcDco07PxAbnc0t4zLDq73f7SnmG5Bm0wzc0wbbHY6io/E+qlwWRGPE8zK3tpOAamsvQzhub/aINp7oIplNvcRJqpzSXh9vX4PEmmR0zmUlOTgVlAliEtPbTX/Jc2mOahsHYhKxDEvDUDmd22ZgimL9ocH6g7Fnngbu2nCM1x2mCah2fL+s1oMMle/CKZWYzl1yILx83ltME0D49p1MwIatQndmHKJIORhczKr8VL+DMJj0IbTPPwmCrNjKBG/W0Sg/DsC3M5dWrU2ct1aYNpHh6GMTODGvn1dX4M6Rkc22Qys/JL8a4/GHdt2mCahyd/emEt3IlCfujod0iM5pTnYEypmuvSBtM8PG5pzwyhRu4W1Z8FyEZOWeDt28/Xpw2meXhMe2aGMEb9sWXuKm19grizl31og2meglN+0+SuE065g9TZyz60wTRPwdYncWsm4v2szBidvexHG0zzFGx5otdCb34ukAfttkRnL/vRBtM8BVuykfo0b2cvj0EbTPMUbHmaN/+7Y2cvj0MbTPMU5PmWtUgGszV7mf3Jzea6tME0T4E/7TAziRqeedmavXhepv/q3P60wTRPQf7e7lr4PdLW7KWu1zT70QbTPAVbMpOtD9V56nf841TNPrTBNE/B1qd5t0T/OYbb0QbTPA3X+Fu++dV1cxvaYJqn4dL/D9vCbv8JzNvSBtM8Daf+6csxemH39rTBNE/Dlj88tRT1ZwTN7WiDaZ4Gz63MzONY9NTofrTBNE/F1v/GpIaH9Jr70AbTPBVbnuit0esu96UNpnk6tv4h7zaX+9MG0zwd/kbv2n8366/f+Q/xm/vTBtM8Ja9evTr8eYaazVifsa1/xPg4tME0TbMbbTBN0+xGG0zTNLvRBtM0zW60wTRNsxttME3T7EYbTNM0u9EG0zTNbrTBNE2zG20wTdPsRhtM0zS70QbTNM1utME0TbMbbTBN0+xGG0zTNLvRBtM0zW60wTRNsxttME3T7EYbTNM0u9EG0zTNbrTBNE2zG20wTdPsRhtM0zQ78fr1/wJySusM/WEN0wAAAABJRU5ErkJggg==); +} + +.api, .api:hover{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAACMCAYAAACnDrZtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABRKSURBVHhe7ZsxkuPGskXfErUM7UBL0AK0APnyZcuVLVumXNky58eZH2deTioBFNAEu+fxnogMEkBVVoGse5EAu//zKYQQbiIGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYRwI3///fenP//8czP++OOPT7/++utm/PLLL59+/PHH2+Lnn38ex3V+zP8txGDCN88///zzlWiP4vfffx9F1eOnn34aRVnju++++5+P77///vPndoUYTPhmwVi4Ak+iSDw+MOazxGDCIX/99dfnK1gt5xF2v5pzpasLsh6jGqAfi5R8j4C8dbzE/XH2likGE76Aifz2229fzGNaYI8MxsG0roBJTTkT9wbr4gwxmBfnI9xmUPmcLb9za/R+caYCjcG8MJS7/bbmPePMw8SPNO9XC37ZWiUG86JQufzwww/jAnrv4FnNHhjj1C/xnDhzmxSDeVE++gNSboG24LnN1CfxvFglBvOCfCsPSLdMhgpnav9RAvNeDc7RX+aeETzr4jZ0L1Yq21ViMC8IC21aNB8xmGsHYU5t9wLRdHETVXwGv6RNwiPe+pet3wLT59djlRjMC4JQpkXzUaP/ajG16XHmQWT4L6vV7SoxmBfkqsF41eeP5txX33P15wrfS2z/yO7qQ2XGlNUHvFf/vubVWfn5v34fR8RgXpRp4fTAEKZbAhehf5THT8Zc+SZzwcyEX67qsTNhntUHvIwVzrH6/Ww9G5uIwbwoK9XEdKXSXDAU3pOHhcnDQ/b7HMM20s3Hfztw+yhc1Nz6TMdrME44j9/hUZz5o8gYzIuyIlQqE8EsEK6GorlgHJoOVYa3X7VycR+3SrTFWGR1URNQTWor8vzlGiufLXGmOozBvCirwsZYrDQwBxYX2yxGjAMT0nQI2k0Gwj6P9wW6YnZEfd6zF3n+ch6+5+mz7MF3cIYYzIuy+rCUwEQUrYZh1VKrBYymLkDbWFLTln0djedR0Q0sHLNq8n6Xq8RgXpiV/+fBNMRbHaNWChhHrWR4fkMbn8P4cHZL/JrRW6PON6zj93UUZ807BvPCrIja5zAsLA2JxVh/XbKqwUz6sxqw/J5uXTi2urhXYnowfQTngnluBb+WcYt3FFRvjH82+B56rvrHfs9g+ix7uBbOEIN5YTSGo0CAGkEvkTUPhOB7BKO58IrZsK+DiOo4j4oq3un4txiIG+M5W0GssHq7zOd5lhjMC7O6sDCCCftjOpoVIhDNpd+2sN8HtrR/1O3RK0StDB/F6oVmax3sEYN5cVaew0y/HGgeLDorkV7daBxVEFQ67KMvFQ8Gw3Z9n9iPK5XEHpr9UfAdnSUG8+Ks/nrQ8XmDJtIX37RfA/GXJ6+cGtPqlTTx9d8ZvQXMf8rf48rzF4jBvDj+unMU/Rcj91OJcKtU8bgi4DhmxCJ1H8ZDG9rK6pU08bg/Jlw19Xrre4YYzIuzegXrVQeBIfTnAb0q0cBq28lcvM1auWVLPO42iQvElL9Hv4isEoMJnxfrtKhqWH24PV1Bq7lgJlYymg34YLgKxH7mpG+MZj8eYTB+F0eBCV0lBhNOP1ythiHVXKhQMAgf5ArGwT7Caqb2q8Rg9uMRBrP6vU/f9yoxmPDllmUlpj+WqybRH+TKZC62rSYE9GU/t1UaDa/PeEbDOIh3L5j3FM7bYJuq7yj83IwVc+2f7xVWTdzv6woxmPCZaWFNgSAqmgu3Q5jH1GYyF9qzwLu5VLPSUHit5TwiZwy3CdoD7xmHZzoKeCseCedV58Lr9NyC8+7n3OH8zLUVGNFb4PynvD3qc7IrxGDCZ3xechS1gumVT32QK91cCM2ot63m4ny8Uis6heU2r+bxQXHPuwXt9sTOccY/EhntOB/GJh99+Cw6nt/e/DyHo3irwVz5vq8QgwmfcfEfhQu7m8u0EBVeNRfeV1MQx+fK6uJnH/RtBMx2Fb4VTp0H+2g7ibHOf8K59nEmqrk4j14heX57uVa/A+ItBsO5TTl7UGG+lRhM+MzqotMcFBUC7mYBtQ2iQ3xsTwJTWLTpZuKxvl0F5ljMRWolUPeDOQjadcxnjr3bKefL3IHPZ2+86bYJbEN/zs32W/EWg6nz2Yu3jCExmPAFDeEoEBwi2hILmAvhEbyfxOxir+aiWKlG2KbNtC30Q5jCNuOzj9dqgFVcHOtoLrTreTt9vpwfV/06Xn3WsSVYz4ug790G43dzFHvf7yoxmPCFetXfi70rOig82inoqU891sXaTcntbi4c10Q0B0Jhmw8cD9PgtQuomottjyqOPt96nrzHcIxqPGK/2vdOg6nj7cX0DOkKMZjwhdXFt7e4NQoWKIFgJ5EqUERFG94rVtqzTS5wXvSpVBPRHOjDe/bX5zGOR+U15bI/5+b4W+dZ5w61r9jG1zoXqZ93re7I4/6t2PsO9vD7OYppvleIwYSv4Eo7LbgaiGmiC2NFoOQivLpXo4Atc3E/OWof31fBegvCPs7P3NLHpMLZujWa5qOZSj0/xpuqgWoufawVg+nnsALnOeXqwZwfRQwmfAULd1p0PVisFasJghxHtxaTuUDdt2UuHEME7Od9N4cqvpqDY3283h8Ton1tI9N8qIhqTs+PthgL8+y5rJCI6bhz2IstA9zDuR3F1epoIgYTvqI+cNyLKjJANFYTW9TbE0TZxY7I3bdnLhpCfQ/2l5rDqqAaX+9ve86joynUX4gULP36tuN5TByTY9NxqGa9FVcMpo67F1sXhyvEYMK/mBZdD0W5Cu3ppwgRCGKTKkjCth3yeMvBq/Ogf60GNARyaJrVOBS6udimf721EtvWczanBlHNpd6SVczDMWI6P7jDYPxMj2K6nXsLMZjwL1hk0+LrsUo3lypUqOJEhFMbYB8CpQ3vFUPtDwqZakNhVbF73FxQzapi2yo8c2oQdXyP9Vzm4RhRK6HOisEQZ2A+U44emOMjicGEf6FgjmJlMbqwvT3qwqtiVYST0J0TlQnHNQf7W53UHLynKun5an+g+qnbFYylHtsyF8Z3bKJTTbua1cSjDYZ5Tf178Fk9mhhM+BfeXhzF3lUYEDLtFBdCrtTnGoqzmwEoYsRdzaGLHTiugKeHut1cFDO5Or0tr4jQ83Zejs+49TZNyEM7os+n42dh+73Yy1NxnkfRv59HEIMJIwhhWoQ19q54PlNB5LxWEwDEwRg+i+E9QuxoIlRLVfBEFTvw3uO8p199YKnQNRMNbqrEnL/9+xx9zuJ5OV43qmouBHkmzK/Ia5+tsGo7gs9p6t+jflaPIgYTRhTYUUxXfq+YmsskBK72CIpFzSvR0VzI182F94odHJNjvq9z6/u6oCtbbR3Peflcx/a8VvrPzXU+FfPThvdQ+23FisGs3m4d3bZdJQYTRhTRUfRfShQbgWgmUWleHNNoFJawzZUXUZOzttFspN7mOO8qdudU50KOSVS9reK3rfm72XSjMo/Vw9bzKvPTps6Z7aPon/0E85z69liths4SgwmbrJTWVeiKikCQ3TTANv2Wp6LoON4Fj5BrHwVOPvbxvt42aT5VvAhzGtdctnUetvWWSnNhH59RNyrnzP4+doXxyE2b/rOz1d9eTNVXxc/jKDiHu4jBhE1Wr34K1e2tK6sC5ji5Wdj2rSAuhEc72msu3WzoSzuFxvsq9m4Y4LMTc8jUthqgYxHidj0H8/hMRjPq2M7ozz9WDGYrt1gpHsVKJXSVGEzYRDEehaLkdTIMYD+Ggii2HoiCou7moiBrH0SoyOzn+LzSvlYz5ui3A+6vQqv5iG4mHO/zqXlo26sSsZ3RBa6RHsVWflmpQAnP6Q5iMGGXaUH2UOR7bFUlFUWrwGzjrUmtLjAOBW9OqwANoc7LfV3MU1vnYT63FaLzq89VOKaBeq62r2gutusmsWouxN6tzWqeet53EIMJu/gc4Sj2sFT3dTIXBVFfQQOozxtsgwH4jKVWJYiGPhWE3MU0mUuvrvq249X51Dx71Vk1F6vDemvkeWGCq7c3W3C+U/se0zwfSQwm7GJ1cBRbC1UhIaqtdgpLcWougMFVA1CkCH2qbBBmrx5qtVPplYbz0Kzcds60Y7s/1DWP7WtlI86bc3HetZqyr+eyajDT52n+o2DOdxODCbusLtZ6RRf7+ixgEoMVAWJjwdc83Sx4JRdtec+xaj7dEMB9zKVCv5q7C1xDcBtoz/j2AfNMlY1UcwEMqZpUHxv8zI5CM6wwztS2Rx3vLmIw4ZCVxY7IOuzjGP0nc1F4VhiTWVRjqLc5CLSOaa4qOPf1sa2UzG07zUFjrBUGx3ou8zAm59grGzC38zbPlrHBatVIdEMj79RuimqUdxGDCYcopKOoC9Y+mMC0kBUxwqvGAZMxaELk4n2tJHhlu4p02gcK2tzdAOjXzc7qpOaqeTQ75yP1HMGxNEFz1Lx1PuTk/V7wWVRWzan3u4sYTDhk9edqnz0oSETSRQdVxArJdrx2Y1CICLYKW7ohQDctsK/zdKw6PmZRKxHb1FzVcKbKBuhX52Uehe1ceBX7OB/a0mYvOM8KY0zteli93U0MJiwxLdIeigcBepWeUES0V0yCuKuY61Xf91WUtO0iM29l6ksb9jk+ufp8+j7zYCwaTX+oS1v61PMwD0xzAc4dg3Cs1WpEVi8E/fO6kxhMWILFPy3WGgpoD4WmeBCbINoqZl4RHG15T3tNDHp7sDKoV2hvVWpf3tfx7VdzKVjbcIzxOIdpPlDbSM2zZS59PqCBHYXninFMx3t0Q7yTGExYYvVqWgXa8XZCMdcqRzFVgdXbHERbb13MUdsr3pp3ErxjKfIplwbCeQt5CGBuvRKYxtLcGMP51ePg+M4H6Gf7o+B8HOcoMOxnEoMJS5xZ7BOKyKt5FS7CtFIRruiKGUHWWwfn0g2h5wBNwb680leRT7kAM6uGRnvzaJTmBN53cwH2kaePK34emgvtaMM+xzkK2tnnKGj7TGIwYZlpwfaYFrAiRvyTCDGTqTpBbL7XAMxVr/bQDQEYpxoT0EajqNVFRdHbrxqK1c9RlQT2Y5zpeP1c3Ga+3uqwvXLbQ+5p/xT1s3gGMZiwDOKcFm2NLnIWNKLBRBCL4hYF6z5Fx6vv69Wd/t3E2O5GgmjNI+5D8Obq5sJ+2vicohocxzwXMU+/XfK8yMPxLXNxv+3ZZp7mY5v9j4g+h2cQgwnLKNCjqLCoFRjHELcoWMVcKwqFq5jd7iJRmNVIrEDMC71amXJBraY0AXNb/YhzIngvvKcfuRijj+Nc3K+J8eoxK6TVz3wlzPlMYjBhGQV3FApS8ff9UsXcDYTXKmba9SpBIWsa4BwRZoW+NbfvK86XvOZRlJqABul8u7mARjSN089TA/EcmGetkPpneDXqZ/lMYjDhFNPi7aG4ERHbLO5uLlXMUA3ECkQxk2cScjUN4DgVURc18/EWimOaWsW+jK25KHqrCisi2jKfaU4aBsf6POznfl5p62dj35qT9+x7a1QTfiYxmHAKRD0t4BqTgDv11ogrtmJVUB5DhJOQp+cutOttayWCyKZcoMFxjDZVkNXIPD7l0Ygmk7PflrnUeXbIx7G3xHsRgwmn8JeRo9iDHFYrCJn2Cg2hVxFOQlaM9gEFa9Uj9MfA9szFiol8tKnmUqsfTWIrD/vJ4/zFfuznPefItvP3eL01AsyGub3VYHreZxKDCadYfSYwXYlBc8AIqrDBbY5tmYtirL8kaVJ9TKscTGLKBeyjryKu5mJFwvyc91YejXfLXGp11HPUcyVWTXw1uuk+kxhMOM20iHtsXTURGgJSsN4KASL3dqmLUDhu9QPmqcYAmsOWUQnVhHPuOfpct/J4vJsLOD7mx/mxXXNojuTwGQztnIvncTVWblfvJAYTTlNFuRWIpKOYrIKqoD1GP/LvCdkrMm3YnswMc+DYnrlYMRF1LsA2c3Gue3k0og5mYm5eexvPh/N1vphMxb5XY6uSfBYxmHCa1UVfRasZTMcAkSHoWtF0qpDJh+inqsH57ZlCnU+fC8eYC2GbrdsMBNz7g+bCHHjt5+X8zc/5T2P0eZwJ+r03MZhwmirOvUBAQpXh/kmQR3iLIQgYUU7QbusWTZzPNBdMzLkSVBpn8FaH4DOYjMPxOb5VZZjHKupsXPmcH00MJlwCcU+LugdGUAV3ddGTx768R5hb1cmRISB45r/VrlYMZ82lmsF02wTMm/H3qjXmWD+vK1XM1ufzTGIw4RL1+cWZ4DanBkJDiDUQqSH0xajow3vG720ehXM9ay6AqDGFt4qbz4UQz3s1tszt2cRgwmWuXFWfEVQ31cTOhOfE63ScW5tuiEdRzdCY2pHbcfp51PNbia1nRs8mBhMuw5V6WtyJ9w1uIT8KMZjwJq5cXRP3xpVbu7uIwYQ3wWKeFnnifQLD/0jEYMKbya3Sx4m9X6begxhMeAgxmfcPHkx/NGIw4WHwywUPGKfFn7g//JuZj0QMJjwcjIbF7h/ETWJIPDY+YvUCMZjwFPjDs/p3IBjQ9Lcg/t3HFJOwEv8fH7F6gRhM+J+Byqma2F5M5nY2+EvbyQivxtU/XKRK/KjEYEL4wFj58evQ9HwLY/oI/3O0RQwmhG+IWqV9pD+o2yIGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOE2YjAhhNuIwYQQbiMGE0K4jRhMCOEmPn36P8G77ijAfx50AAAAAElFTkSuQmCC); +} + +.examples, .examples:hover{ + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAACMCAYAAACnDrZtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAABZzSURBVHhe7Zw7jitHFkRniVqGdqAlaAFagHz5suXKli1TrmyZb3QGc4DARZJMdhe7Wc04wEVV5b/4GMGbRfb7z7dSSnkQNZhSysOowZRSHkYNppTyMGowpZSHUYMp5Q7+/vvvb7/99tu3n3766dt33313M3744YdvP/7447dff/312x9//PHtn3/++f9Ir0ENppQN/vzzz21TuRWYzu+///4SZlODKeUKf/311/8ykJVRHBFkNl/ZaGowpVwA8a9M4RFBRvMVqcGUMiCjYBuzMoJHBpnSV8tmajClBGyJVuL/yGANX4UaTCn/5xnMxfgqW6YaTCn/wtbk+++/X4r9s+IrmEwNppR/OeKbIn/zsqp7a/DbmTNTgykvD5nCSty34ueff/6fAfDjuxVsuRibdqv+u3Fp/DNQgykvz71bo19++eXitz2YCl9vExPM6C0ZDn3OSg2mvDT3ZC8Y0aVveMgyNA+2SrS9BL8KvtfUzvo8pgZTXprdjALTuJS18LdJtOFPCTAazjERoR/XhGNwvHfrdGn+Z6YGU14WzWAnVuJOk8BkAMNiCwXUc062YsYyt073mMwZs5gaTHlZdrdHmkeCefhrX7dNmIeZDmWYimbjtmllVLsmwxhnowZTXpbdv46eaC6E3/Cw/aEtxkJwbsahkc3nN4yDuVDPWM53Lc72jVINprwsOw9aMYBEc2ErZDbCkbYYxTQXt2EzC9KQCPrn9bVw3LNQgykvy0rAM/KHbprLNB3MhjLNxG0RUEemlPhQmEjj2cliVl9/PzM1mPKS7D7gdUtyyVx87kI7jmkmGA1lZjpAf43EtmYwjDXnn4FhnYkaTHlJdrckcMlc8rkLZpEPccl8rAPKzXQ4UkeZWypiZ001mFJOwI6YMRXgODMRzmnDMxG3PJrJfA5DWw3KtsxPPecE2UsNppQvwq6YMYXV18tkLIRm4rMazSR/C6O55DMaMxyCeugWqZQvxErAqzAzkdz+cMxvdjAATcB6t1bWWW44PkaT5avIB8hnoAZTXpaVgGfMjMGtEVsdDCG/1UH8ZjvTXMxOprloTjsZFZFmdgZqMOVlYYuzEvEMxC+5jdE8wOcpGMg0F6/JfDJLmdsoy6+F32qdhRpMeVnyIeu1yGcwlmUmoYFQNs2FfvTHmCizv5kR9Zxbfi18VnMmajDlZUHcKyGvAnGTyZD1ZEbjGJjHNBegPQYyzYx+/nYmy69FmtpZqMGUlyaziluBGcwtCuZBuQ9+01wsy2+MCIxi5xujGZjS2ajBlJfGr47vCZ6d0M+shGuOGE2agFsjjtl/Xu8E45yRGkz5UrBNYQuzE2QWKwN4S0xz0XwoP2L8M2YvUIMppwfx7T4ofVRgVonrwWDu2YatgjEwQr4aXxmlgbk+GzWYcnoQ4EqYHxnzB3CU8YB3Pn/5rCCLwvQM1oZpEazxURlSDaacmvntzGdGPgA2m/jszOqeeMRznhpMOTXPkL0Y+X+7gF9bnyl4PY/MZmow5bS85RugR4YGg0AxF/9y+mxB1nUUNZhyWp5NwBgexsLzDh66wrM8g7k3jtou1WDKafH3J88QrMXnQfljOzjTc5iMfKb0Vmow5bQ8i3DTXFbPMMhmZp8zxDTKt1CDKadl56+hMSG/jl0F5oCQsiz7zyyJ7Y/t2P7wKZ+/c7n0qf9M2dY98V5qMOW0TDNYBW0uQabh70PEMoLnKZl9rLKTNBe/mp6Q3bAOjmfbLr2XGkw5LTsGk+aRYBR+xY3wBcNII8FoHCuzE+ozg8oxhDYayjWjS5NivtUP31bmRRv7mk1dg3oM8x6j82H1W6nBlNOy8w3NymD8pmfWYwJpLmlgaSDUa06zTrINRnQJDcJvxLinhHH81W2S418y0VvsbDFrMOVl2X14mkxT8lMfk+Bac/GaSIOY5sKzlUm24eiYE83FubhOMEL6E8lcw1tNYMegazDlZUFoK1HMUOBzS2W2oFG5DeFoGzId+ytsP/mnIcAU/6VtC31pp7nMDCXXMLdm9KM/mcu17Ij7ot2lNaSJXooaTHlpVqKYgZAQo883EKiZh9slzQUBu30iFBj19NOkVsKe5uKYE81FY2N9SZpLCjzNRXNYmQftcvtzyWByrZeiBlNeGoxjJYwZtENoiEpzUMgKfBqEWUW2Yxza0DaZfadpyC1z0TiI/NumNBfOZ72wVgySdh5XzGzuUly6j11qMOXU5Cf1pUBoiFJxc05QniK1nsBIIM2Fes7pm2gW9OM4tztif01kGkSaSxoD87kuzrln15f4TIX5PZ9rhZznVly6l11qMOXU7HwSI0a/pcEwFGyKmC0TZY5HG82FMkVJWeIP6Bif/qutE2gumlHODSn6NI9pLvaf67A/R++B84mvw27UYMpLk8K8FD5TMWPABBCsMAZtFC9HzQUjsNyHwkId/WirQa0yBgXPOCsTynvIMaa5APNN0duf+8OcOF9lOJqc87iua1GDKS+N4r8VCk5R+eDTrQTjIF6MAjFThiA1Gs1JqFP4Cnz1MNU6xmENaRZgPeVzDMpYk+1ZO2VJmotjzHHoTx3za0DU12BKuYFmcCswEkTFOaIEzQNzMatRjBhInidcK/wcY5LmQh/OU/jWe8wxbE9fWM0zzcU+aYb0s26O4fbuWtRgyilB8LzpefPnG5pPWMp5Y69EuyL7XwrGyoejGhNiJDhXjASk6Ui21YA0rIT5aMd9ptHINJc0hWkuwDwYgkxz4b48Fw2Ftq415zGbuRY1mHIqEByf/qs386VAGNcMh/pVv1UgNMWWn+qsKw2F+SjPjIM2lCl82jPGJIWt0XAumgN1rkPMKvJeXQvrghzfNTuPa8s2oHEnO69bDaacBj+Z3xuICuEo/p1PYsSUxqCRUIeoWZtlGkmKfAoW4dF+ku3ckqWwqcdgObJu5wT65BzgeKwpr+eaOWoGcxzaMVfivd+KGkx5ehTA6g383tjNhhSoJseaFLgZAuLVFFJYrl+jMFugPMl2nqew01zMVDRJTSG3QcAYGCKkYRE+B2KtzuM4rpUjY8y12u5W1GDKU6PQVm/ejwzWoagQuKaS5uJaFbRwrYAVeWY3YN8UtgYAjE8/1uA6ZlZC+8S1MUaOrznRz76sy3PXkPebaJA74RrfSg2mPBTe7Ks37keH2x5Ep8AwDutca5oC+FA3RZ4PSoW+1IF9FLb9mFsTMFPxmshswXLWan/HyLFdj+1vmYvmtPvvMo30Xmow5WEotGcJxGUGgjA5IkRYCVIjsgxRKuCEcTUm+ziu5kCbNArr6Ed7gmuxD2he07ioxyQdhzacazauASgnCyM43/23qcGUp0QhP0soao6WaRYKEtEJIswyxKqAkzQm+2gMgAE4D0fqaUfkWnJuMhnnYizqp3F57TganK97ZkOU0SbXlcZ2LWow5SlRTM8SiC/XpOgV6Hzuwie9ZZgHgjRzEI3JLRZ9GEsQtEahESlYxqaOYGzROBjbPnkExnNe70mDYzzvDVyjfcFnOztRgylPxz3ZC+Lizc8bGdFZjlCy3XuCsRUpoehBgXoNGIMZgaJNgYL3aOaRD2TB+bieWQVzOiblipi2zEs7jcatTGYfGBnX9tfgGJOQlblkGcdbUYMpT4ei3Qnf/IjLstwuUJ/Gc28wlqIyNAEf/KaILKMPMHeKG+iPkM0U5jjO5xi0xRRAw7BNZhtmPNbRNucByzSgaVrem2OkuUCOR/2tqMGUp+Le7EV4488yQRCz77VAVIyDOaRxEYredaZ5TFEq5kmKeWYnXjsG45sNUeYaKOdcQ9AwOGoCHDUmcH224f7A7Ml7m/chc07Ob0UNpjwVvol3QgGkgShUcTze6IiNtgiEsA9lKXRCUSNE26Xg5vMS2zIWKFLGTcxAFGkKfY6haTCW45HtWO56vBfW7XiMwbnzcOSe6EPdyrTgkrmYZXEUrm9FDaY8FbzxV2/UVaRANJIUdIpHA1FwtldICIG5FRjXCJFzIo0rtymioIE5OE8xQhoGpJHBHIO2zOXaOQfaZGaCoVBmf8alfb4WtKddvibeq6/BvBbn5zUTX4NbUYMpT4Nv5J1ARAoCISOsFICfuL7B/VQHhZ5CUpgInmMKyH7gnIodbKugaZ99QMNIQ+Oa8WCOwXoxBc3K8aZ5eJ+05Wi944L35ZzM5X1QB16v1s38aWia1E7UYMrToAB2IgXiG95MwDrFrAgRpSamsCDNBDGlgLh2XJhic80KSbPLPkCZ4qWOPpqU66Uv5P1oNGA7+3kvhvfhfUOujzUwHuOu1jPNBSjL+8nXaid8Xd5KDaYchmK4FYgkxULZFJ3ZjPUYyhQWWG+4dTLMFIAxssy5cm63WYkiFQyDtQPz08f1OiavxRQ3/dLcOHedrI1xVveG4VBOva+B48zrRDPxflyPRrcTNZjyNOwaDKHwEOYUS4qMeoVF+RQSQp9j055jimNmD6u5GNt6yWwENAKvNUthDNZsP8Wt2DU3rwnWMMcB12cGx1hcU8783oPXSfahLvt57vzXogZTnoZ7DIY3vqJXdLzpzQzAesZFkFNIiigD8XDMLRQg/DSnFBzQPueGnD+vOcLKNBjTddnPrIZ6cByC9mZWeW+YFHW2pa/tGI+21KfZiX0wOdsRnPtvlGu4Ft7DW6nBlMPwzXsrFBqC1wim4IFryvPTWGg3xzULmEaxMoK8Vmw5N+eI17XO6xRxXju27WCaG2ukDTHNCDL78X5mRqSRei25Ts7pT3BOOCdwfiveSw2mHMaOwfBmBwSAEGBlLgo1P3ETRDfHtSzHmdmD46Wg6avoBENIo2KNmoTCpUycf5Zn1pHXBHPSXpMFjQpDcXvomjWza+bi/J4Tvh6sL43OdVyL91KDKYexYzC8+RUR7RFXigA4p546BKawxE/9DEU326aoUryCiNMQwO2Ja3I+r2d9mgbl4nyam9cEfRxHGI/7pdw5fU01IdbO9TRE4D40Rc3ONWrYXnPk+la8lxpMOYwU0K3gzY9YUgSCwLJNcksYCMvxFCnroozx0kwUb86ffcAMSEHP+rxnzMGxnE/Be007DM+5zWxAU3BOXx/XrLnM1wRoQ1vm4TzHdo3MKba5Fe+lBlMOZfUmvRYKVRQXsRISIsz+q0DofmL7yY/4cnsAlGUmoBBzXvpgeODazEjSNIi8F01Sw/GaYBzXKGZBjokBpGms1iYaT5qLa6GMuXwdKM8134r3UoMph3LPmzcFKQrkmpDuCUWnUAXBpeFQp7CFNpmV0N6MBNI0cr1mOWYMZiuW0S/ntp6ja80tjeai0SWZUWlS+brmmh3nnngvNZhyKBrETiCIFD0ghpXxvEUcrMX15JiO5RYCFLbYRpOYZpOmQZ2Y5VhGe/pZZj/XQ711GmiahutgfRPraG9fxwXG1Fit38kAM95LDaYcSgpvN/LTfwWiRSirvjuRWxHgUz1NQfGl4TCfGYP3pNmkaWRGQzn9skyD07zol5kIayGcQ3NhTc6zMheNiXauP80lTcp6jhqM67oV76UGUw5H8d0bii3jPcZCMEaC2bA+ySxAMAANQZGnIVFPH9pQL2ZBlqXZYl6Mwbn1boNsxzX9GYc2nq+wLs1DVpkNc3hOvWu5Fe+lBlMOJ4X12cFaBNFSpplwPTMK1242wCc+Ypa8N9vANA/Hdr65ddIENBnEr0GZsV0yF9utzEVjYp6sdz7b1mDKqfFT/jMjMxVAmJnRTPPQFDQBxe/WaZqGKOQ0M+aizPm8ZixNwLF4rRQ8414zF+aiXxpTwj3R1zVxdL4cc8dgZvb3Fmow5SH4pl69cT8qUiB+gmsW0zwgt0a2TyPRNDUgUMj2A8cmMB3m4Jz18LpwtB5DcAzHv2QurkmzmubCuliHWZb1GilzSw2mnJ7PNpk0AtahcFfmkVuj1Se+9YqONgrdeMu9air2vWQuzGfGQ0xz0aS4pxxHI0kjhRpM+RKshPhRocEoJtaiUBG2WGZ7MxnKwXrGIBvIDOTomEYgGhExzUXDNHPSXDQbt26MTR33UIMpXwrf7B8ZiEnxaR5uFxINBVwn/STF/RGhIYjZEzHNBfOjnPvDBL0P79v23JcmqZk65qWowZRTgRj4lPWN/pHB3G4jMkvIrZHPSlijpLg/MtJIMEXKpvEAhqJpEtynGZeZjPfNPWouNZjypUEsZg6rN/cqFId9V21WgWFoHjMDYH7GBASFWJPPMEPDLIojpjHBQDSYbM99aA5pLpolY9VgykvBm5/ADPyEJRAI5fPZhMLZCUAsfqIL4yNQzzGTFDJlq/E+MlbGAt4/98VRc9G06ZfmArTlnmDn3qbZvoUaTDklfhrfCoSE0BSdIDrqNTbPxfrPjmmKMJ9naSBpKNNcvPY12DEYzeg91GDKKdk1GI1CoQmf5nzaIzi3XgmGNMf6rFgZo+F9Wc7roplgROA9Ui41mFKusGswxBSKD5oRHtuA+ayB+tU4nxVpDD4TwgA1lzQQjWaaiVtBqcGUcoX5SX4pEF6CGCnHoDSSzBB8GEx24/ONW8E2BkEz5qUgm0CwBO13xyZ8FuJXzVP4jMWYviasXbwf1iCU7cxfgykvzUoUM/KTHBAigs0tRUKd2c2OCGdmcA/MsbsVuwQmwBiONZ/ZcA8aDm1ovxp/FTWY8tKsRDEjDYRzyvgEX2UCPjy1z47BTEHfixnGrZhGCK4Xs8RcWG+SGZptCM4xnRx/FTWY8tKsRDEDcQmmguhWz11oR73bEdgxmCNEiEmtxs6Y82hMZGgaR94r59RjQhor89iG8Rz7UtD3vdRgymlZiWKGICgNhvIUIyg4hCsfZTBmItcijQ8wFO6HI+uc90N7AgOifz6XAfrOOWassqZ7qcGU07ISxQyE56e95jKFY/00i48ymJ1tEoYgbHFYGwayyjK8T4/zOZSmcytqMOWl2TEARJLtVoaAUBHwzAI+ymBgNfaMHXx4bYYyzYV7zDGvRQ2mvDQ7BpAPM2k/QUTUTSHCRxrMEVsWzMNxOGI2k517Mmow5aW5RyyrDAUYY2U88JEGszPXLcH7sJixVveK2fLMZmdLRuTzqLdSgymnZUeUxurT3OzlknB3xl9lPm/hCIPxoe4Kn7vwOvhs5lYcQQ2mnJZdg0FQKxDktd+xHCH6XR45l89l8ivrnTiCGkw5LTs/FkO4KxQdWxxEtwq2E3O8GbQ7gh2DwSjnGm+FX4FzL9zrHPNaHEENppyWXcEg3hmrdm+JI55TwJFrOiJYzxHUYMppufcT+RFxFM9mMEc9vK7BlNPy2QbDM5yjeCaDYTt1FDWYclo+22CO+gYJdv4e6aPiqG0f1GDKafGr18+IIz/lYfe3KY+MSz/Oew81mHJa/CboM+JoIQLf+qzm+ojAMFc/znsvNZhyaj4jizlyazTBZHb+bODIyP/G4WhqMOX0fNQnPw9iH5G5TBA7v3nZ+R3OewIjO+L/fLlGDaZ8CRD+UYJkHMyE4EEyGcuRDz7vxR/NsRbD9Rm3sp68J36gyD09KmtJajCllIdRgymlPIwaTCnlYdRgSikPowZTSnkYNZhSysOowZRSHkYNppTyMGowpZSHUYMppTyMGkwp5WHUYEopD6MGU0p5GDWYUsrDqMGUUh5GDaaU8jBqMKWUh1GDKaU8jBpMKeVh1GBKKQ+jBlNKeRg1mFLKw6jBlFIexLdv/wU00wTAUY3nKQAAAABJRU5ErkJggg==); + margin-right: 0px; +} + +h1 a, h1 a:link, h1 a:active, h1 a:visited, h1 a:hover{ + text-align: left; + text-shadow: 1px -1px rgba(255,255,255,1); + color:#505050; !important; + text-decoration: none; +} + +.index_box h1{ + position: absolute; + bottom: 0px; +} diff --git a/public/marvinjs/css/substructuresearch.css b/public/marvinjs/css/substructuresearch.css new file mode 100644 index 000000000..53d86144e --- /dev/null +++ b/public/marvinjs/css/substructuresearch.css @@ -0,0 +1,34 @@ + #tableNameText{ + visibility: hidden; + } + + .error-container { + color: red; + } + + .image-container { + margin-top: 10px; + margin-bottom: 30px; + display: inline-table; + } + .mol-cell { + display: inline; + float: left; + margin-top: 4px; + margin-bottom: 4px; + margin-left: 4px; + margin-right: 24px; + } + .mol-cell span { + font-weight: bold; + padding-top: 2px; + padding-left: 2px; + padding-right: 2px; + background: lightgrey; + } + .mol-cell img, .mol-cell iframe { + display: block; + box-shadow: 2px 2px 8px #444; + } + + diff --git a/public/marvinjs/demo.html b/public/marvinjs/demo.html new file mode 100644 index 000000000..104feaa69 --- /dev/null +++ b/public/marvinjs/demo.html @@ -0,0 +1,47 @@ + + + + + + Marvin JS + + + + + + + + + +
+ + diff --git a/public/marvinjs/docs/README.html b/public/marvinjs/docs/README.html new file mode 100644 index 000000000..6cc64c102 --- /dev/null +++ b/public/marvinjs/docs/README.html @@ -0,0 +1,11 @@ + + + + + +Marvin JS README + + +The content of this page is moved here. + + \ No newline at end of file diff --git a/public/marvinjs/docs/compatibility.html b/public/marvinjs/docs/compatibility.html new file mode 100644 index 000000000..a759508b8 --- /dev/null +++ b/public/marvinjs/docs/compatibility.html @@ -0,0 +1,68 @@ + + + + + + Marvin JS - Compatibility + + + + + +

Marvin JS - Compatibility

+
Back to index
+

Current browser

+

If every field is green in the table below, it means that Marvin JS editor can run in your browser +(compatibility mode of IE excluded).

+ + + + + + + + + + + + +
JavaScript enabled + + +
HTML5 canvas + + + +
Web support + + + +
+

Note for Internet Explorer users

+

Marvin JS does not support compatibility mode in Internet Explorer.

+ +

In most cases, you can switch on/off compatibility mode in your IE. +For IE 8, 9 and 10 these settings can be reached from the Tools menu (ALT+T). +For other IE version, please, visit the appropriate website.

+

Note that all intranet sites are set to run in compatibility mode by default. +In this case, please, consult with your system administrator.

+
Back to index
+ + + diff --git a/public/marvinjs/docs/dev/embed.html b/public/marvinjs/docs/dev/embed.html new file mode 100644 index 000000000..f438ef296 --- /dev/null +++ b/public/marvinjs/docs/dev/embed.html @@ -0,0 +1,146 @@ + + + + + + Marvin JS - How to embed it + + + + + + + +

Marvin JS - How to embed it

+
Back to index
+ +

Insert an iframe into your page and specify its size. It will determine the dimensions of the editor. Load the editor.html file into +this frame and define an id that helps to refer to it later. The size of the iframe should be set in exact units +(e.g. pixels): the minimum values should be 500px * 450px. It's recommended to set its overflow property to hidden and to set a solid border to the iframe element. +

+
<iframe id="sketch" src="../editor.html" 
+	style="overflow: hidden; min-width: 500px; min-height: 450px; border: 1px solid darkgray;"  />
+ +

If you need default web services but you do not wish setup each one, you can use alternative version of editor.html: editorws.html +

It presets default web services at startup.

+ +
<iframe id="sketch" src="../editorws.html" 
+	style="overflow: hidden; min-width: 500px; min-height: 450px; border: 1px solid darkgray;"  />
+

Please, note that web services have to be available at the default location that webservices.js defines. You can modify the default location in this file +by overwriting these settings. editorws.html refers to this external JavaScript file when it retrieves the default webservice config. +If you link this file into your code, you can also refer to it by the getDefaultServices() function.

+ +

Accessing functions of the sketcher

+ +

There is no guarantee that the editor is already alive when the loading of the parent page (where its iframe is inserted) has been finished.

+

Because of this, getting the reference to the editor is not trivial.

+

We provide a helper API to access it. Below, we demonstrate how to use this helper API or how you can access the sketcher without it. +

+

+ +

Embed with the helper API

+

The marvinjslauncher.js JavaScript library provides an interface to control the event when the editor is loaded and helps to get a reference to the editor to be +able to refer to the editor API.

+ +

First of all, insert the following lines into header of your web page to import it +(promise-1.0.0.min.js is a dependency of marvinjslauncher.js).

+
<script src="gui/lib/promise-1.0.0.min.js"></script>
+<script src="js/marvinjslauncher.js"></script>
+ + +

The marvinjslauncher.js loads the MarvinJSUtil object whose functions are described below. This API operates with +Promise objects. If you are not familiar with the Promise pattern, you can read more about it here: +Promise/A

Not all browsers provide Promise implementation yet. Because of this, we +need the promise-1.0.0.min.js, that provides Promise implementation where it is not implemented yet. + +

+ +
MarvinJSUtil.getEditor(iframeid) Promise
+ +
+

Description + Returns a dynamically generated Promise object to observer when the sketcher in the given iframe has been successfully loaded or failed.

+

Parameters

+

+

iframeid

+

Type: String

+

The ID of the iframe that contains the sketcker

+
+

Returns

+
+

A Promise object to access the reference to the loaded sketcher object or get a notification if loading of the sketcher failed.

+
+

Usage

+

Call the then(onFullfiled, onRejected) function of the Promise returned by MarvinJSUtil.getEditor(iframeid) to be able to store + the reference to the sketcher.

+
var marvinSketcherInstance;
+MarvinJSUtil.getEditor("#sketch").then(function(sketcherInstance) {
+	marvinSketcherInstance = sketcherInstance;
+}, function(error) {
+	alert("Loading of the sketcher failed"+error);
+});
+ +
+
+
+ +
MarvinJSUtil.getPackage(iframeid) Promise
+ +
+

Description + Returns a dynamically generated Promise object to observer when the Marvin JS package is ready to be used in the given iframe.

+

Parameters

+

+

iframeid

+

Type: String

+

The ID of the iframe that contains the sketcker

+
+

Returns

+
+

A Promise object to access the reference to the object that wraps the Marvin JS API in the given iframe or gets a notification if any error occurs during its loading.

+
+

Usage

+

Call the then(onFullfiled, onRejected) function of the Promise returned by MarvinJSUtil.getEditor(iframeid) to be able to store + the reference to the sketcher.

+
var marvin;
+MarvinJSUtil.getPackage("#sketch").then(function(marvinPackage) {
+	marvin = marvinPackage;	
+}, function(error) {
+	alert("Marvin package is not available:" +error);
+});
+
+
+ +

Embed without the helper API

+ +

If you do not use the helper API, accessing of the sketcher is more complicated but not impossible:

+
var marvinSketch;
+
+document.getElementById("sketch").addEventListener("load", function() { // listen when the document in the iframe is loaded
+
+	var eframeWin = document.getElementById("sketch").contentWindow;
+		if(typeof eframeWin != 'undefined') { // if the contentWindow property of iframe is available, you can access inner content
+			try {
+				var marvin = eframeWin.marvin; // reference to marvin library in the iframe
+				if(marvin != null) {
+					marvin.onReady(function() { // onReady is performed when loading of the marvin API is ready (hopefully, sketcher is already instantiated)
+						// an editor instance is created automatically in the iframe
+						if(typeof marvin.sketcherInstance != 'undefined') { // undefined if you have no right to access it or instantiation failed
+							marvinSketch = marvin.sketcherInstance;
+							marvinSketch.importAsMrv(s);
+						}
+					});
+				}
+			} catch(e) {
+				alert(e);
+			}
+		}
+	});
+
Back to index
+ + + + diff --git a/public/marvinjs/docs/dev/webservices.html b/public/marvinjs/docs/dev/webservices.html new file mode 100644 index 000000000..bb976c93c --- /dev/null +++ b/public/marvinjs/docs/dev/webservices.html @@ -0,0 +1,217 @@ + + + + +Marvin JS - Webservices + + + +

Marvin JS - Webservices

+
Back to index
+ +

Extended functionalities

+

Extended functionalities means those features that are only available when web services are setup.

+ +

Refer web services

+

By default, those functionalities in the editor that require live connection to existing web services are disabled. +To activate them, you have to set up address of these web services for the editor.

+

Use the setServices method of the editor to apply its webservice settings. See +the Sketch apidoc for more details. If you want to activate all web services, please, see +the How To Embed section in the documentation that describes how you can insert an editor into a web page where all available web services are preset.

+

The default address of these services is defined in the webservices.js. By default, it points to a copy of +JChem Webservices.

+

If you have your own implementation for these services or your copy of JChem Webservices are located on a different URL, +you may have to overwrite default settings.

+ +

Specification of Webservices

+

Those web services that are referred by Marvin JS have to complete the following specifications.

+

Clean 2D / 3D

+ + +

MolConvert

+ + +

Stereo info

+ + +

reactionExport

+ + +

Hydrogenize

+ + +

AutoMapper

+ + +

Aromatize/dearomatize

+ +
Back to index
+ + + diff --git a/public/marvinjs/docs/images/no.png b/public/marvinjs/docs/images/no.png new file mode 100644 index 0000000000000000000000000000000000000000..c634aa69d5ea72ef58eb00cfcfc5e23711034303 GIT binary patch literal 699 zcmV;s0!00ZP)OEGLYyF@xC?y?vjjy<;ouz=87|&hvTB`M&2B=nq?)np*!f zH|Ndl?oyT2%5%A+BQiBM((Tbv+11;7ue@GRgT0-dr*cnENHiFz$?Ya1E?+7ZL%PF5qLUN4j2wGiTXY6u083vVX+)7e0P-c7q(||%Ah4M?M@GD2 zK2IVFZ}|OG2R}nmT9P=x+TBe?bdgzHq}o7$1VC12XUQ=+DGO1jQ#nR4dr=Q}kB?K! z*cjJkb8wIY?#|5oKDW117FyH|3{Vnd9;VYIJkjfwLN3P(800!$da$xWI+Lm5>zr+G z(>rulz=-ujLnJ`t*VEG^JSMJ9$u5GN@9&e09J|aqs)5+%t}c?$?Oy<94zw63wyhc) z=W{g50aXyR9yKo*pnL>ow;)(>VS&dPv|Wv2wUgD>R{9RT49J=BMb`01Nkr8=pn4!; z3YR6!d=>$4LJol z8`|GmUMAoCyv!Hrxyz+w;&J+ysh^m+iEU&<0|FC0lq8|F$}c-RL+1wv|Apw7fOb3m zI6bBN<*Teh-iE`WH1=G{=P!f^S}olS2B~FYqVi`dH>Sy6B+_;a5wocj&xsZbUGsYB h&hW5o_xUP*=U>E}0X#1vU~d2b002ovPDHLkV1g=5Mu-3a literal 0 HcmV?d00001 diff --git a/public/marvinjs/docs/images/yes.png b/public/marvinjs/docs/images/yes.png new file mode 100644 index 0000000000000000000000000000000000000000..06af59eeb6a073de92f08c88b676112236a6b312 GIT binary patch literal 747 zcmVSMO-R3jBI;jH>+~+yx{O&pb^E?#RSxuW=XdLVW z=jLJ1>dD#npEKAN5sk|k#W<3kORbF;Hv^wOvWFgBVbq};uq!zk27NdnqXH3L0sMp; z-Tec=q7O|4Rh7x{+gTB?l)Tqo!I%?LfQ?dc^CS3$-+&aL6&jfIaWJYQ0iS?Ajzjl{ z0d$nq5(ojrvj+u~PIgs8 z86t;45{BAlhhN0=slv)6tmZuAn=HtGXcH@8EoETLrNm#^+W@w|0p^G#?2kzYd#64a zaKD7biSz?-ynP1i<0{a!7JP*hI)xezt{v8w*NG-ZodMRkT(EcRgIidtz+TLd?O9x1du6dVcTsSst8)N0=3bHAg4G zus{RTe?T?4+FVDQm@JLQ_M zj9dRKVAMx}|K<)Fu`xUfv6KNisS3_Bb(DCO_t`Hp?wLva*JOe66X>m&p8bIiYu)Nq zUV)T9xyf{o4#Dg5{*xhv>AV`#R?#XPeYv$k>tyTXqpL dQ__NR{sJQY_=nW5Q$zp&002ovPDHLkV1kotOhNzv literal 0 HcmV?d00001 diff --git a/public/marvinjs/docs/index.html b/public/marvinjs/docs/index.html new file mode 100644 index 000000000..1621ef386 --- /dev/null +++ b/public/marvinjs/docs/index.html @@ -0,0 +1,28 @@ + + + + +Marvin JS Documentation + + + +

Marvin JS Documentation

+ + + + + + \ No newline at end of file diff --git a/public/marvinjs/docs/installationguide.html b/public/marvinjs/docs/installationguide.html new file mode 100644 index 000000000..b93a5c6b6 --- /dev/null +++ b/public/marvinjs/docs/installationguide.html @@ -0,0 +1,81 @@ + + + + +Marvin JS - Installation Guide + + + +

Marvin JS - Installation Guide

+ + +

Software requirement

+

Marvin JS is a web based editor. Please, upload it to a web server and +refer to its URL in your browser.

+

Server side

+ +OR + +

Please, consider that JChem Webservices (under version 15.10.26) requires Standardizer licence for the auto mapper functionality. From version 15.10.26 this web service is available with Marvin JS license.

+

We only recommend the usage of JChem WebServices if you use additional search, calculation or structure checker functions, which are not included in Marvin JS Web Services.

+

Client side

+ + +

License requirement

+

Marvin JS requires Marvin JS license. Consult with the sales team where you have to place the license file where your copy +of Marvin JS package can access.

+

JChem Webservices also accepts Marvin JS license, it is used by only Marvin JS. Consult with its manual how to setup its license.

+ +

Installation

+ +

Deploy Marvin JS

+ +

Download the Marvin JS zip package from the ChemAxon site.

+ +

Deploy Marvin JS into an Apache Tomcat Container

+

JChem Webservice requires a servlet container like Apache Tomcat. If you would like to install both Marvin JS and JChem Webservices, it worths +to install both of them into the Tomcat Container. In this case, the web root can be an ideal place where you can deploy Marvin JS: +

    +
  • Navigate into the webapps folder of Tomcat and enter its ROOT subdirectory.
  • +
  • Create a new folder in this directory (e.g. marvinjs). +
  • Extract the Marvin JS zip file into this new directory.
  • +
+ +

Deploy Marvin JS under any web server

+

Extract the zip file into a new empty directory (e.g. marvinjs) and deploy it under your web server.
+(Consult with the manual of the server or its administrator how to deploy new content there.)

+ +

Install web services for Marvin JS

+

If you need extended functionalities, ChemAxon JChem Webservices is required.

+

Marvin JS can communicate with other web service implementations that are compatible with the ChemAxon provided version. +See the required web service specifications

+
    +
  • Download ChemAxon JChem Webservices (v14.7.21 or above).
  • +
  • Install the required web services under the same domain as the web server hosts.
    +Please consult with the appropriate installation guide of JChem Webservices. You can find the download link for the recommended webservice version on the Marvin JS download site.
  • +
  • Marvin JS searches web services on the following URL: /webservices2.
    If your web service copy is available on a different URL, +please, modify settings in Marvin JS. +
      +
    • Modify web service location in the webservices.js file, which you can find in the root of the Marvin JS package.
    • +
    +
  • +
+ +

Note: If web services and Marvin JS are located on different domains, the browser can block the access of web services at runtime +since the request may harm the same origin policy of the browser.

+ +

Try the deployed version

+

Open examples of Marvin JS package from your web server in your browser to check whether the deployment was successful:

+

http://<web server url>/<marvinjs directory path>/examples/

+ + + + diff --git a/public/marvinjs/docs/manual/index.html b/public/marvinjs/docs/manual/index.html new file mode 100644 index 000000000..f1a287dba --- /dev/null +++ b/public/marvinjs/docs/manual/index.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/marvinjs/docs/troubleshoot.html b/public/marvinjs/docs/troubleshoot.html new file mode 100644 index 000000000..4bb10af89 --- /dev/null +++ b/public/marvinjs/docs/troubleshoot.html @@ -0,0 +1,109 @@ + + + + + + + Marvin JS - Troubleshoot + + + + + +

Marvin JS - Troubleshoot

+ + +

Sketch does not appear in the iframe on my page

+ +
    +
  • Please, check whether the reference to editor.html or editorws.html in the src attribute of the iframe is correct.

  • +
  • Sketch requires HTML5 canvas. Please, check whether your browser support HTML5 canvas. It is not available in old browsers like IE8.

  • +
+ +

Import / Export button does not work on demo example page

+

The initialization of the example failed, the custom JavaScript code does not find the reference to the sketcher. +Reasons: +

    +
  • When the iframe is empty the editor is not alive, thus it can not be referred.

  • +
  • Error message on the JavaScript console: Error: Permission denied to access property 'marvin' : The browser blocks accessing of the iframe content from external JavaScript code if it + violates the same-origin policy. The browser considers that the hosted page and the iframe content come from the same-origin. If both arrives from the local filesystem (file://...), in most cases they + are identified as different origins. See: Same-origin policy for file: URIs

  • +
+ +

2D clean drops error

+

Please, note that 2D coordinate calculation is performed at server side. Marvin JS posts the structure to the Clean2D web service that generates the new coordinates and sends it back to the editor in an MRV. +The clean 2D operation can fail if +

    +
  • The web service is not available on the expected URL.
  • +
  • The browser may block the communication between Marvin JS and the server since it harms the same orgin policy of the browser.
  • +
  • Internal server error occurs during performing the calculation.
  • +
+

Please, check that web service is available and it is installed properly, see the installation guide of Marvin JS. +If it is necessary, consult with the system administrator of the server that hosts the web services.

+

+ +

Stereo calculation drops error

+

It uses Stereo Info web service to calculate stereo info. It may be the same problem than 2D clean issue. + +

SMILES format does not work in Open and in Save dialog

+

SMILES import/export requires MolConvert web service. If it is configured for the editor but it cannot be accessed, you can get an error message. +Conversion can fail in the similar cases than 2D clean fails.

+ +

Download button in Save dialog does nothing

+

This error may appear in the following situation:

+
    +
  • Desired output format is different than MDL molfile or Marvin Document (output file is generated on the remote server by the MolConvert Webservice).

  • +
  • The web page where Marvin JS is embedded is accessed via HTTP secure protocol (its URL address starts with https://).

  • +
  • A proxy is configured as a frontend for Tomcat servlet container (where MolConvert Webservice is located) and the proxy is configured for https while Tomcat not.

  • +
+

In this case, the URL of the output file generated by the webservice is incorrect: starts with http instead of https. +The browser will block downloading this unsecure content in current secure environment. On the JavaScript console you can find the trace of the blocking.

+

Solution

+

To resolve the issue, modify the proxy settings: +

    +
  • If the proxy is apache: RequestHeader set X-Forwarded-Proto "https"

  • +
  • If the proxy is nginx: more_set_headers "X-Forwarded-Proto: https";

  • +
+then edit Tomcat server.xml: add the following to the <Host> section: +
<Valve className="org.apache.catalina.valves.RemoteIpValve"
+remoteIpHeader="x-forwarded-for"
+remoteIpProxiesHeader="x-forwarded-by"
+protocolHeader="x-forwarded-proto"/>
+ +There are other values that can be set and used: see Tomcat documentation

+ + + +

At the first time after updating the package on the site, the editor is not launched.

+

It may be a browser caching issue. This problem occurs when the content of Marvin JS package is modified (replace to a new version) but the browser still attempts to load the old one. +Since the browser has already cached the old version earlier, it tries to prefer the cached version instead of the new one. +In most cases, the user may not realize that the browser loads out-dated resources by running the editor. He faces with the issue when an out-dated resource requires any resource +that does exist anymore on the server.

+

To resolve the issue, purge out-dated content from this cache. If you apply a Shift+Reload on the current page, browser refreshes only those content in the local cache that belongs to this page. +Clearing of the whole browser cache also resolves the issue. +

+

If you would like to prevent your users to run into this issue, modify the configuration of the server where Marvin JS package is hosted. +When the web server hosts a content, it can indicate that it is cacheable or not. +As the browser receives the content, it considers to cache it by those information that the server wrote in the header of the content. +These info can be the expiration date or various caching directives.

+

The best practice is skipping the caching of each file (from Marvin JS package) whose name contains the .nocache. pattern.

+

Apache2

+If Marvin JS package is hosted by an Apache server, the recommended settings is specifying a Cache-Control directive the HTTP headers of those files where the given pattern match. +When you modify its config file, please, check whether the mod_expires module is switched on. +
<ifmodule mod_expires.c>
+  <Files *.nocache.*>
+    ExpiresActive on
+    ExpiresDefault "access"
+    Header merge Cache-Control "public, max-age=0, must-revalidate"
+  </Files>
+</ifmodule>
+

Tomcat 7

+

If Marvin JS is wrapped into a web application, there is the chance to control what directives appear in the HTTP headers of web application contents. +Under Tomcat 7, you can apply a built in filter or define a new one to modify HTTP headers for your web application. +Please consult with the manual of your servlet container, how to switch off caching for each file whose name contains the .nocache. pattern.

+

If you manage to achieve that the response header contains the following lines at *.nocache.* files, it is enough to prevent their caching. +

Cache-Control	no-cache, no-store
+Pragma	no-cache

+ + + diff --git a/public/marvinjs/editor.html b/public/marvinjs/editor.html new file mode 100644 index 000000000..81d83189f --- /dev/null +++ b/public/marvinjs/editor.html @@ -0,0 +1,43 @@ + + + + + + Marvin JS + + + + + + + + +
+ + diff --git a/public/marvinjs/editorws.html b/public/marvinjs/editorws.html new file mode 100644 index 000000000..fda36c0ed --- /dev/null +++ b/public/marvinjs/editorws.html @@ -0,0 +1,44 @@ + + + + + + Marvin JS + + + + + + + + + +
+ + diff --git a/public/marvinjs/examples/abbreviations/demoabbrev.json b/public/marvinjs/examples/abbreviations/demoabbrev.json new file mode 100644 index 000000000..25c1ada91 --- /dev/null +++ b/public/marvinjs/examples/abbreviations/demoabbrev.json @@ -0,0 +1,9 @@ +{ + "templates": [{ + "structure": "", + "name": "Ac" + }, + {"structure":"\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n","name":"Custom AA" + } + ] +} \ No newline at end of file diff --git a/public/marvinjs/examples/abbreviations/myabbreviations.mrv b/public/marvinjs/examples/abbreviations/myabbreviations.mrv new file mode 100644 index 000000000..3cc3ceca0 --- /dev/null +++ b/public/marvinjs/examples/abbreviations/myabbreviations.mrv @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/marvinjs/examples/abbreviations/myabbreviations.sdf b/public/marvinjs/examples/abbreviations/myabbreviations.sdf new file mode 100644 index 000000000..c3ffc99db --- /dev/null +++ b/public/marvinjs/examples/abbreviations/myabbreviations.sdf @@ -0,0 +1,44 @@ +Ac + Mrv1641104201715272D + + 3 2 0 0 0 0 999 V2000 + 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 3 2 0 0 0 0 +M STY 1 1 SUP +M SAL 1 3 1 2 3 +M SMT 1 Ac +M SAP 1 1 2 0 1 +M SDS EXP 1 1 +M END +$$$$ +Custom AA + Mrv1641104201715272D + + 9 8 0 0 0 0 999 V2000 + 0.3197 2.1289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 0.3197 1.3039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + -0.3948 0.8914 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0342 0.8914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + 1.7486 1.3039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1.0342 2.5414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + -1.8237 0.8914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + -1.1092 1.3039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0 + -1.1092 2.1289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0 + 1 2 1 0 0 0 0 + 2 4 1 0 0 0 0 + 4 5 2 0 0 0 0 + 1 6 1 0 0 0 0 + 3 8 1 0 0 0 0 + 7 8 1 0 0 0 0 + 8 9 2 0 0 0 0 + 2 3 1 0 0 0 0 +M STY 1 1 SUP +M SAL 1 9 1 2 3 4 5 6 7 8 9 +M SMT 1 Custom AA +M SAP 1 1 4 0 1 +M SDS EXP 1 1 +M END +$$$$ diff --git a/public/marvinjs/examples/checker/example-checker.html b/public/marvinjs/examples/checker/example-checker.html new file mode 100644 index 000000000..b658a7548 --- /dev/null +++ b/public/marvinjs/examples/checker/example-checker.html @@ -0,0 +1,527 @@ + + + + +Marvin JS Example - Structure checker + + + + + + + + + + + + + + +

Marvin JS Example - Structure Checker

+ +

Here is an example how to integrate Structure Checker web service into Marvin JS editor (In this case JChem WS requires the Structure Checker license). +If the molecule changes, its source will be sent to the Structure Checker to evaluate the structure with the selected types of checkers. +If any structure error is detected, it is highlighted on the structure and a detailed error message appears below the editor.

+

In this example, only Bond Length, Bond Angle and Atom Map checkers are used. +The full list of checkers are available here: Checker List

+
+ +
+
+

Structure Checker configuration

+
+

Structure Errors

+
+
+
+

Code comments

+

This examples requires molchange.js that defines MolChangeHandler class to aggregate molecule change events.

+

First of all, CheckersWS checks which services are availables. It provides a Promise to notify when the list of the available +services arrived (or notify if services are unreachables). +

After that, the following steps will be executed: +

    +
  • With the add function of the Checkers object, selected structure checkers are initialized.
  • +
  • Retrieves the reference for the sketcher that runs in the iframe and runs the onSketchLoaded function.
  • +
+
$(document).ready(function handleDocumentReady (e) {
+	var config = [ 
+		{id: "BondLengthChecker", color: "#ffe211", title: "Bond length"},
+		{id: "BondAngleChecker", color: "#ef6671", title: "Bond angle"},
+		{id: "AtomMapChecker", color: "#d26ff1", title: "Atom map"}
+	];
+	CheckersWS.then(function(services) {
+		for(var i = 0; i < config.length; i++) {
+			if($.inArray(config[i].id, services)) {
+				Checkers.add(config[i].id, config[i].color, config[i].title);
+			}
+		}
+		MarvinJSUtil.getEditor("#sketch").then(onSketchLoaded, function () {
+			alert("Cannot retrieve sketcher instance from iframe");
+		});
+	}, function(error) {
+		$('#checkers-panel-result').html('structure checker is not available');
+	});
+});
+});
+

The onSketchLoaded function instantiates a MolChangeHandler. Its first parameter is the reference of the editor to listen. +The second one is a callback function that is performed at each mol change event.

+
function onSketchLoaded(sketcherInstance) {
+	marvinSketcherInstance = sketcherInstance;
+	// aggregator for molecule change events
+	new MolChangeHandler(sketcherInstance, onMolChange);
+}
+

If you take a look at the add function of Checkers, you can see that it creates a CheckerWidget object for each checker.

+
	/** Appends a new checker to the document.
+	* @param id - the name of the checker as referred in JChem WS (see JChem WS documentation)
+	* @param color - colorizes the result (atoms/bonds) in the editor with this color
+	* @param title - the short description of the checker that displays in the config panel below.
+	*/
+	function add(id, color, title) {
+		var widget = new CheckerWidget(id, color, title);
+		$("#checkers-panel-config").append(widget.asWidget());
+		widgets.push(widget);
+	}
+

Returning to the onMolChange function, you can see that it resets the current highlight on the sketcher, gets the source of the current structure and performs a +structure check on it.

+
function reset() {
+	// reset current highlight
+	marvinSketcherInstance.setHighlight({});
+	$('#checkers-panel-result').empty();
+}
+
+var last = null;
+
+function onMolChange(e) {
+	last = e;
+	reset();
+	e.target.exportStructure("mrv").then(function(source) {
+		if(!e.isDeprecated) { // unless a newer molchange event deprecate this event
+			e.source = source;
+			Checkers.check(source);
+		}
+	},alert);
+}
+

If you take a closer look at the Checkers.check function, you can see those CheckerWidgets are enabled where the checkboxes were previously checked. It creates the input for the Structure Checker web service. +Finally, it calls the send method with the created object.

+
	/**
+	* Performs the structure checking on the given molecule source.
+	* @param source - the molecule source in MRV format.
+	*/
+	function check(source) {
+		var json = {};
+		json.structure = source;
+		json.parameters = {};
+		json.parameters.checkers = [];
+		for(var i = 0; i < widgets.length; i++) {
+			var widget = widgets[i];
+			if(widget.isEnabled()) {
+				json.parameters.checkers.push({"checkerId": widget.getId() });
+			}
+		}
+		if(json.parameters.checkers.length == 0) {
+			return;
+		}
+		send(json);
+	}
+

The send invokes the web service, then call onSuccess function when the response of web service is received or onFail if any error occured.

+
	/* Sends an async request to Structure checker web service. */
+	function send(json) {
+		var wsBase = getDefaultServicesPrefix();
+		// arrange the input for the Structure Checker web service
+		$.ajax({
+			"url": wsBase + "/rest-v0/util/calculate/structureChecker"
+			,"type": "POST"
+			,"dataType": "json"
+			,"contentType": "application/json"
+			,"data": JSON.stringify(json)
+		}).done(function (data, textStatus, jqXHR) {
+			onSuccess(data);
+		}).fail(onFail);
+	}
+

The onSuccess function gets the response of the web service as a parameter (data). Its header field contains the id of the performed checkers. +Each checker result can be referred with its own id. E.g. data.bondlength describes the result of bondlength checker. +A checker result can contain many fields but only the following one are relevant in this case: +

    +
  • checkerName: the title of the checker
  • +
  • description: the error message
  • +
  • errors: a complex object that also describes which atoms and bonds are affected.
  • +
+The checkerName and the decription is displayed on the current page in the checkers-panel-result div. +Meanwhile the affected atoms and bonds are highlighted in the sketcher. +
/* Callback to process web service result. */
+	function onSuccess(data) {
+		var highlights = [];
+		if(typeof data.headers == 'object') {
+			for(checkerId in data.headers) {
+				if(data.headers.hasOwnProperty(checkerId) && isCheckerResult(data[checkerId])) {
+					var widget = getWidget(checkerId);
+					if(widget) {
+						// display error message
+						var message = "("+data[checkerId].checkerName+"): "+data[checkerId].description;
+						$('#checkers-panel-result').append(widget.createErrorWidget(message));
+						// calculate context to highlight
+						if(typeof data[checkerId].errors == 'object') {
+							var indexes = {};
+							indexes.atoms = getAtoms(data[checkerId].errors.atoms);
+							indexes.bonds = getBonds(data[checkerId].errors.bonds);
+							if(indexes.atoms.length || indexes.bonds.length) { // add highlight unless context is empty
+								highlights.push({
+									'style': {
+										'color': widget.getColor(),
+										'opacity': 0.25
+									},
+									'indexes': indexes
+								});
+							}
+						}
+					}
+				}
+			}	
+		}
+		// highlight atoms and bonds
+		marvinSketcherInstance.setHighlight(highlights);
+	}
+

Changing of the configuration (check/uncheck checkbox or modify checker color) also triggers the checking of the structure +(whose source was already stored in the source property of the last molchange event). +

function onConfigChange(e) {
+	// reevaluate last consumed molchange event when congfiguration is changed
+	if(last && !last.isDeprecated && (typeof last.source == 'string')) {
+		reset();
+		Checkers.check(last.source);
+	}
+}

+
+ + + diff --git a/public/marvinjs/examples/checker/molchange.js b/public/marvinjs/examples/checker/molchange.js new file mode 100644 index 000000000..d7994ea48 --- /dev/null +++ b/public/marvinjs/examples/checker/molchange.js @@ -0,0 +1,61 @@ + +/* Notify about molchange events and provides the mol source of the new structure. */ +var MolChangeHandler = (function() { + + function createEvent(sketcher) { + return { + date: new Date(), + target: sketcher, + isDeprecated: false + } + } + + // purge event queue (deactivate events that found there) + function reset(eventQueue) { + for(var i = 0; i < eventQueue.length; i++) { + eventQueue[i].isDeprecated = true; + } + eventQueue = []; + } + + var DELAY = 1000; + + /* + * Constructor of MolChangeHandler. + * @param bind to this Marvin JS editor instance + * @param triggered function at molchange event. + * */ + function MolChangeHandler(sketcher, onSuccess) { + this.sketcher = sketcher; + this.onSuccess = onSuccess; + this.pending = false; + this.eventQueue = []; + var that = this; + this.sketcher.on('molchange', function() { + onMolChange(that); + }); + } + + // wait to aggregate molchange events + function onMolChange(that) { + if(!that.pending) { + that.pending = true; + setTimeout(function() { + that.pending = false; + fireEvent(that); + }, DELAY); + } + } + + // trigger a new event + function fireEvent(that){ + var e = createEvent(that.sketcher); + reset(that.eventQueue); + that.eventQueue.push(e); + var callback = that.onSuccess; + callback(e); + } + + return MolChangeHandler; +}()); + diff --git a/public/marvinjs/examples/demo.html b/public/marvinjs/examples/demo.html new file mode 100644 index 000000000..7b0cf635e --- /dev/null +++ b/public/marvinjs/examples/demo.html @@ -0,0 +1,427 @@ + + + + + Marvin JS Examples - Demo + + + + + + + + + +

Marvin JS Examples - Demo

+ +
+
+ +
+
+
+
+
    +
  • Display options
  • +
  • +
  • +
  • +
+
+
+
    +
  • + + + text as + +
  • +
  •  
  • +
  • +
  • +
+
+ +
+
+ +
+
+ +

In this example, you can import a molecule from MDL molfile or MRV format into the editor with the help of the Import and Paste buttons. While the Import button overwrites the canvas content, submitting of the Paste button preserves the current structure and appends the new one.

+ +

With the Molfile Export and MRV Export buttons, you can retrieve canvas content in the desired format.

+ +

In this example, you can also control display settings of the editor with the proper checkboxes.

+ +

You can find the commented code below:

+

The InputControllerClass is responsible for the input form that involves the Import, Paste, Reset, Mol Export, MRV Export buttons, the format selector combo box and the text area for molecule source. + It manages the click events of the buttons and provides functions to get/set text from/to the text box.

+ +
+		
+		var InputControllerClass = (function () {
+
+			var delay = 5;
+
+			function InputControllerClass (importButton, pasteButton, formatDropdown, resetButton,	molExportButton, mrvExportButton, srcTextBox) {
+
+				this.importButton		= importButton;
+				this.pasteButton		= pasteButton;
+				this.formatDropdown		= formatDropdown;
+				this.resetButton		= resetButton;
+				this.molExportButton	= molExportButton;
+				this.mrvExportButton 	= mrvExportButton;
+				this.srcTextBox 		= srcTextBox;
+				this.init();
+			}
+
+			InputControllerClass.prototype.init = function init () {
+				this.importButton.on("click", $.proxy(this.handleImportBtnClick, this));
+				this.pasteButton.on("click", $.proxy(this.handlePasteBtnClick, this));
+				this.resetButton.on("click", $.proxy(this.clearTxt, this));
+				this.molExportButton.on("click", $.proxy(this.handleMolExportBtnClick, this));
+				this.mrvExportButton.on("click", $.proxy(this.handleMrvExportBtnClick, this));
+			};
+
+			InputControllerClass.prototype.handleImportBtnClick = function handleImportBtnClick (e) {
+				this.delayCall(importMolAction, [this.getTxt(), this.getFormat()]);
+			};
+
+			InputControllerClass.prototype.handlePasteBtnClick = function handleImportBtnClick (e) {
+				this.delayCall(pasteMolAction, [this.getTxt(), this.getFormat()]);
+			};
+
+			InputControllerClass.prototype.handleMolExportBtnClick = function handleMolExportBtnClick (e) {
+				this.delayCall(exportMolAction, ["mol"]);
+			};
+
+			InputControllerClass.prototype.handleMrvExportBtnClick = function handleMolExportBtnClick (e) {
+				this.delayCall(exportMolAction, ["mrv"]);
+			};
+
+			InputControllerClass.prototype.delayCall = function delayCall (method, args) {
+				setTimeout(function () {
+					method.apply(null, args);
+				}, delay);
+			};
+
+			InputControllerClass.prototype.getTxt = function getTxt () {
+				return this.srcTextBox.val();
+			};
+
+			InputControllerClass.prototype.setTxt = function setTxt (txt) {
+				this.srcTextBox.val(txt);
+			};
+
+			InputControllerClass.prototype.clearTxt = function clearTxt () {
+				this.setTxt("");
+			};
+
+			InputControllerClass.prototype.getFormat = function getFormat (e) {
+				return this.formatDropdown.val();
+			};
+
+			return InputControllerClass;
+
+		}());
+ +

The MarvinControllerClass is responsible for updating display settings if the state of the CPK coloring or Carbon label visibility checkboxes are modified on the current page. +

The MarvinControllerClass also provides a reference to the sketcher instance. It is necessary to be able to call the molecule import / export function of the sketcher.

+

+		var MarvinControllerClass = (function () {
+
+			function MarvinControllerClass ( sketcherInstance, cpkCheckbox, mapCheckbox, carbonCheckbox) {
+				this.sketcherInstance 	= sketcherInstance;
+				this.cpkCheckbox 		= cpkCheckbox;
+				this.mapCheckbox 		= mapCheckbox;
+				this.carbonCheckbox 	= carbonCheckbox;
+				this.init();
+			}
+
+			MarvinControllerClass.prototype.init = function init () {
+				this.carbonCheckbox.on("change", $.proxy(this.handleCarbonCheckBoxChange, this));
+				this.mapCheckbox.on("change", $.proxy(this.handleMapCheckBoxChange, this));
+				this.cpkCheckbox.on("change", $.proxy(this.handleCpkCheckBoxChange, this));
+			};
+
+			MarvinControllerClass.prototype.handleCarbonCheckBoxChange = function handleCarbonCheckBoxChange (e) {
+				this.sketcherInstance.setDisplaySettings({
+					"carbonLabelVisible" : this.carbonCheckbox.is(':checked')
+				});
+			};
+			
+			MarvinControllerClass.prototype.handleMapCheckBoxChange = function handleMapCheckBoxChange (e) {
+				this.sketcherInstance.setDisplaySettings({
+					"atomMapsVisible" : this.mapCheckbox.is(':checked')
+				});
+			};
+
+			MarvinControllerClass.prototype.handleCpkCheckBoxChange = function handleCpkCheckBoxChange (e) {
+				this.sketcherInstance.setDisplaySettings({
+					"cpkColoring" : this.cpkCheckbox.is(':checked')
+				});
+			};
+
+			return MarvinControllerClass;
+
+		}());
+

Both InputControllerClass and MarvinControllerClass are instantiated when the page is loaded and the sketcher is loaded: getMarvinSketchIntstance("#sketch").done(...). + The initial value of the text box is set after page loading is finised.

+

+		$(document).ready(function handleDocumentReady (e) {
+			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
+
+				marvinController = new MarvinControllerClass(
+					sketcherInstance,
+					$("#chbx-coloring"),
+					$("#chbx-map"),
+					$("#chbx-carbonVis")
+				);
+
+				inputController = new InputControllerClass(
+					$("#btn-setMdlmolfile"),
+					$("#btn-paste"),
+					$("#list-inputformat"),
+					$("#btn-clearTxt"),
+					$("#btn-molExport"),
+					$("#btn-mrvExport"),
+					$("#molsource-box")
+				);
+
+			}, function () {
+				alert("Cannot retrieve sketcher instance from iframe");
+			});
+
+			$("#molsource-box").val(caffeineSource);
+		});
+		
+

InputControllerClass calls one of these functions with some delay when Import, Export as Mol or Export As Mrv button is pressed.

+
		
+		function pasteMolAction (txt, format) {
+			var pastePromise = marvinController.sketcherInstance.pasteStructure(format, txt);
+			pastePromise.then(function() {}, function(error) {
+				alert(error);
+			});
+		}
+
+		function importMolAction (txt, format) {
+			var importPromise = marvinController.sketcherInstance.importStructure(format, txt);
+			importPromise.then(function() {}, function(error) {
+				alert(error);
+			});
+		}
+
+		function exportMolAction (format) {
+			var ic = inputController;
+			
+			var exportPromise = marvinController.sketcherInstance.exportStructure(format, null);
+			exportPromise.then(function(source) {
+				ic.setTxt(source);
+			}, function(error) {
+				ic.setTxt(error);
+			});
+		}
+ + + + diff --git a/public/marvinjs/examples/eflow/alternative-eflow.html b/public/marvinjs/examples/eflow/alternative-eflow.html new file mode 100644 index 000000000..275493e07 --- /dev/null +++ b/public/marvinjs/examples/eflow/alternative-eflow.html @@ -0,0 +1,34 @@ + + + + + Marvin JS Example - Alternative electron flow arrow + + + + + + + +
+ +
+ + diff --git a/public/marvinjs/examples/example-abbrevs.html b/public/marvinjs/examples/example-abbrevs.html new file mode 100644 index 000000000..8db841c13 --- /dev/null +++ b/public/marvinjs/examples/example-abbrevs.html @@ -0,0 +1,124 @@ + + + + + Marvin JS Example - Load Custom Abbreviation list + + + + + + + + +

Marvin JS Example - Load Custom Abbreviation list

+ + In this example, custom abbreviation list is loaded, which contains Ac group abbreviation and a custom abbreviated group, named Custom AA. + Just specify the URL of the custom abbreviation list in the data-abbrevsurl attribute of the iframe that contains the editor.

+ Each group in the abbreviation list is described in MDL molfile V2000 or MRV format. + Each group is a titled compound both in molfile and in MRV format the molecule name has to be specified. The molecule name is parsed + as the label of the menu item in the Abbreviation dialog. + Each compound describes an expanded abbreviated (superatom) S-group. + The abbreviation list can be accepted in the following flavors: + + SD file + MRV file + JSON + +
    +
  • SD file

    + Groups in MDL molfile V2000 format are concatenated into an SDfile ($$$$ is the separator among items). + +
    <div class="resizable">
    +	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" 
    +	data-abbrevsurl="examples/abbreviations/myabbreviations.sdf"></iframe>
    +</div>
    +			
    +
  • +
  • MRV file

    + More MRV sources are merged into a multi-compound MRV file (more MDocument tags are enclosed into the root cml tag). +
    <div class="resizable">
    +	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" 
    +	data-abbrevsurl="examples/abbreviations/myabbreviations.mrv"></iframe>
    +</div>
    +			
    +
  • +
  • JSON

    + By using the JavaScript Object Notation (JSON), you can also pass abbreviations to the editor. + You need a JavaScript object with a templates property whose value is an array. Each array item is a JavaScript object that describes an abbreviated group. + The mandatory property of each JavaScript object is the structure property that specifies the molecule source of the abbreviated group. + It can be in MRV of MolV2000 format. + The JavaScript object can contain a name field optionally. This field determines the label of the item in the Abbreviated groups dialog. + If this field is not specified, the name of the molecule (specified in the molecule source) will be displayed in the list in the dialog. +
    
    +		{
    +			"templates": [
    +				{ "structure": <mol source> },
    +				{ "structure": <mol source>, "name": <title> }
    +			]
    +		}
    +		
    + where <mol source> is the JavaScript escaped molecule source in MRV or MolV2000 format. <title> is the label of the menu item in the dialog. +
    <div class="resizable">
    +	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" 
    +	data-abbrevsurl="examples/abbreviations/demoabbrev.json"></iframe>
    +</div>
    +			
    +

    You can generate your own templates file via the following form: Create abbreviation

    +
  • +
+
+
+ +
+

Resource file

+ +
+
+ + + + diff --git a/public/marvinjs/examples/example-addbutton.html b/public/marvinjs/examples/example-addbutton.html new file mode 100644 index 000000000..5b5321791 --- /dev/null +++ b/public/marvinjs/examples/example-addbutton.html @@ -0,0 +1,71 @@ + + + + + + Marvin JS Example - Add custom button to the toolbar + + + + + + + + + +

Marvin JS Example - Add custom button to the toolbar

+ +
+
+ +
+
+
+

Append a custom button to the toolbar at startup (the icon URL is relative to the editor.html document):

+

+	var marvinSketcherInstance;
+	var buttonAttributes;
+		
+	$(document).ready(function handleDocumentReady (e) {
+
+	
+	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
+		marvinSketcherInstance = sketcherInstance;
+		buttonAttributes = {
+			"name" : "custom",
+			"image-url" : "examples/images/custom-icon.png",
+			"toolbar" : "W"
+		};
+		marvinSketcherInstance.addButton(buttonAttributes, function() {
+			alert('The custom button has been pushed.');
+		});
+	}, function () {
+		alert("Cannot retrieve sketcher instance from iframe");
+	});
+});
+		
+
+ + + diff --git a/public/marvinjs/examples/example-addtemplate.html b/public/marvinjs/examples/example-addtemplate.html new file mode 100644 index 000000000..26acb2f32 --- /dev/null +++ b/public/marvinjs/examples/example-addtemplate.html @@ -0,0 +1,58 @@ + + + + + + Marvin JS Example - Add custom template button to the toolbar + + + + + + + + + +

Marvin JS Example - Add custom template button to the toolbar

+ +
+
+ +
+
+
+

Append a custom template button to the toolbar at startup:

+
$(document).ready(function handleDocumentReady (e) {
+	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
+		var templateAttributes = {
+						'structure':"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<cml xmlns=\"http://www.chemaxon.com\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.chemaxon.com/marvin/help/formats/schema/mrvSchema_6_1_0.xsd\" version=\"ChemAxon file format v6.1, generated by v6.1.0\">\n<MDocument>\n  <MChemicalStruct>\n    <molecule molID=\"m1\">\n      <atomArray atomID=\"a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12\" elementType=\"C C N C C C O C C O C O\" x2=\"3.189999994039537 1.6499999940395358 0.8799999940395326 -0.6600000059604675 -1.4300000059604656 -2.970000005960466 -3.7400000059604674 -0.6600000059604636 -1.4300000059604623 -0.6600000059604607 0.8799999940395365 1.6499999940395358\" y2=\"-0.831839567470531 -0.8318395674705295 -2.165518689298567 -2.1655186892985645 -0.8318395674705278 -0.8318395674705257 -2.16551868929856 0.5018395543575072 1.8355186761855429 3.1691977980135775 0.501839554357506 1.8355186761855407\"/>\n      <bondArray>\n        <bond id=\"b1\" atomRefs2=\"a1 a2\" order=\"1\"/>\n        <bond id=\"b2\" atomRefs2=\"a2 a3\" order=\"2\"/>\n        <bond id=\"b3\" atomRefs2=\"a2 a11\" order=\"1\"/>\n        <bond id=\"b4\" atomRefs2=\"a3 a4\" order=\"1\"/>\n        <bond id=\"b5\" atomRefs2=\"a4 a5\" order=\"2\"/>\n        <bond id=\"b6\" atomRefs2=\"a5 a6\" order=\"1\"/>\n        <bond id=\"b7\" atomRefs2=\"a5 a8\" order=\"1\"/>\n        <bond id=\"b8\" atomRefs2=\"a6 a7\" order=\"1\"/>\n        <bond id=\"b9\" atomRefs2=\"a8 a9\" order=\"1\"/>\n        <bond id=\"b10\" atomRefs2=\"a8 a11\" order=\"2\"/>\n        <bond id=\"b11\" atomRefs2=\"a9 a10\" order=\"1\"/>\n        <bond id=\"b12\" atomRefs2=\"a11 a12\" order=\"1\"/>\n      </bondArray>\n    </molecule>\n  </MChemicalStruct>\n</MDocument>\n</cml>",
+						'name':"Vitamin B6",
+						'icon':"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAB/ElEQVRIS82Uv0scQRTHZ7eQK4KxUYxy7AbBRhDOYBnuQhqLEJImpFOwUBslnZVckSpVOpsUh3+ACBo0YHFJETHkjktjYaKsYKGIqElzBPY2n2dm5Vh33d3kDhz43Oy9mff9vjf7w1BtHkab9dXtMfCUGqDbC7gsip+TJN0n7gCDMQRF9B4ckfi1ZQaIF3XVl3OaEdtBl1LWmVIfEc2z+SCNuC4qNuUDO7YgtPq4exPbAcK/4CW8DysFgxniX6LuTRKDCZLH4VHQAHGL2DewEJIn7NpIYiBJZShprkQeKLXCo1RDJPT4kt4D2VeAdXgLde2QYx6F/rDK/VjSDnwDh8Renbyvr1ti4B/RBqIZbXDKvKqP77+OaAIRQboIDptADWQ+b1oc5NqFn8EjyhN8Df45S85DWIRXIQZ3iX2CPm0kW37AMnTDbtDAIfhGFprEFrgehmdQbjbJZHqL9frRLLElWNNr8t5s62t5fP8Onuk5pucECoFKbf7Lh+0Yhvy1XO6dZZrujud51Wp1WroMHQbC0oqIbEqlEd+bImvTMA8lX2lkZHGv0VCTtdpM+SaDJyzeh8+IVyI28s1T3+FONvtC9fQ8Vq7rPTUMs9M0vcNKZco/kmvpSd8DSTShQ07QtseV4xz85gVuRFXux9MYxGmF34N/ykqR1PYO/gD34W6BfraGuwAAAABJRU5ErkJggg=="
+				};
+		sketcherInstance.addTemplate(templateAttributes);
+	}, function () {
+		alert("Cannot retrieve sketcher instance from iframe");
+	});
+});
+		
+
+ + + diff --git a/public/marvinjs/examples/example-copyasmrv.html b/public/marvinjs/examples/example-copyasmrv.html new file mode 100644 index 000000000..55b31d8ed --- /dev/null +++ b/public/marvinjs/examples/example-copyasmrv.html @@ -0,0 +1,95 @@ + + + + + Marvin JS Example - Copy As MRV + + + + + + + + + +

Marvin JS Example - Copy As MRV

+ +
+ +
+
    +
  • + MRV as copy format + +
  • +
  • +
+
+

This example demonstrates how to control what is placed to the clipboard at copy. + When MRV as copy format checkbox is checked, the structure is placed as MRV to the clipboard at copy. + When the checkbox is unchecked, the default copy format is MDL molfile. + To see the difference, draw something into the editor, select it and press CTR+C shortcut to copy the structure to the clipboard. + After that, click into the textbox and press CTRL+V to paste the clipboard content into the editor. + The format of the pasted content (MRV or MDL molfile) depend on the state of the above checkbox.

+

If you would like to clear the textbox content, press apply the Reset textbox button. + +

At startup, the copyasmrv parameter of Marvin JS editor is setup.

+
<iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-toolbars="reporting" data-copyasmrv=true></iframe>
+

First of all, you need a reference for the editor. MarvinJSUtil.getEditor(String) provides a Promise object for you to get it + when the editor is ready.

+

After the editor is loaded, run the initcontrol() function to bind actions to the MRV as copy format checkbox and to + the Reset textbox button.

+
		var marvinSketcherInstance;
+
+		$(document).ready(function handleDocumentReady (e) {
+			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
+				marvinSketcherInstance = sketcherInstance;
+				initControl();
+			},function (error) {
+				alert("Cannot retrieve sketcher instance from iframe:"+error);
+			});
+		});
+

Changing of the checkbox value, trigger update settings of the editor. + In the change event handler, the target of the change event is the checkbox. If the checkbox is checked, setup copyasmrv property to true else false. + You can update settings of the editor with its setDisplaySettings(settings) function. At update, specify also the toolbars property + to preserve current toolbar layout.

+
		function initControl () {
+			$("#chbx-copyasmrv").on("change", function (e) {
+				var settings = {}
+				settings.copyasmrv = e.target.checked;
+				settings.toolbars = "reporting";
+				marvinSketcherInstance.setDisplaySettings(settings);
+			});
+			$("#btn-reset").on("click", function (e) {
+				$("#txt").val("");
+			});
+		}
+
+ + + diff --git a/public/marvinjs/examples/example-couple-editors.html b/public/marvinjs/examples/example-couple-editors.html new file mode 100644 index 000000000..df1d88cb6 --- /dev/null +++ b/public/marvinjs/examples/example-couple-editors.html @@ -0,0 +1,232 @@ + + + + + Marvin JS Example - Couple of Editors + + + + + + + + + +

Marvin JS Example - Couple of Editors

+ +

This example demonstrates that you can embed several editors into the same page without any conflict.

+ + +
+
    +
  • +
  • +
  • +
+
+ +
+
+ +
+
    +
  • +
  • +
  • +
+
+ +
+
+
+ Identify each IFRAME to be able to distinguish the sketcher instances. +
+		<iframe src="../editor.html" id="box1_sketch" class="sketcher-frame"></iframe>
+	
+
+		<iframe src="../editor.html" id="box2_sketch" class="sketcher-frame"></iframe>
+	
+ Create SketchControlClass for each sketcher object. Bind controller to the sketcher when it is ready. The controller also manages checkboxes for display settings. +
+		
+		var sk1Controller,
+			sk2Controller;
+
+		$(document).ready(function handleDocumentReady (e) {
+
+			MarvinJSUtil.getEditor("#box1_sketch").then(function (sketcherInstance) {
+				sk1Controller = new SketcherControllerClass(
+					sketcherInstance,
+					$("#box1_chbx-carbonVis"),
+					$("#box1_chbx-coloring"),
+					$("#box1_btn-setmol")
+				);
+			}, function () {
+				alert("Failed to retrieve sketcher in box 1");
+			});;
+
+			MarvinJSUtil.getEditor("#box2_sketch").then(function (sketcherInstance) {
+				sk2Controller = new SketcherControllerClass(
+					sketcherInstance,
+					$("#box2_chbx-carbonVis"),
+					$("#box2_chbx-coloring"),
+					$("#box2_btn-setmol")
+				);
+			}, function () {
+				alert("Failed to retrieve sketcher in box 2");
+			});
+
+		});
+
+		var SketcherControllerClass = (function () {
+
+			function SketcherControllerClass (sketcherInstance, carbonCheckbox, cpkCheckbox, importButton) {
+				this.sketcherInstance 	= sketcherInstance;
+				this.carbonCheckbox 	= carbonCheckbox;
+				this.cpkCheckbox 		= cpkCheckbox;
+				this.importButton 		= importButton;
+
+				this.init();
+			}
+
+			SketcherControllerClass.prototype.init = function init () {
+				this.carbonCheckbox.on("change", $.proxy(this.handleCarbonCheckBoxChange, this));
+				this.cpkCheckbox.on("change", $.proxy(this.handleCpkCheckBoxChange, this));
+				this.importButton.on("click", $.proxy(this.handleImportButtonClick, this));
+			};
+
+			SketcherControllerClass.prototype.handleCarbonCheckBoxChange = function handleCarbonCheckBoxChange (e) {
+				this.updateDisplaySettings("carbonLabelVisible", this.carbonCheckbox.is(':checked'));
+			};
+
+			SketcherControllerClass.prototype.handleCpkCheckBoxChange = function handleCpkCheckBoxChange (e) {
+				this.updateDisplaySettings("cpkColoring", this.cpkCheckbox.is(':checked'));
+			};
+
+			SketcherControllerClass.prototype.handleImportButtonClick = function handleImportButtonClick (e) {
+				this.sketcherInstance.importStructure("mol", caffeineStr);
+			};
+
+			SketcherControllerClass.prototype.updateDisplaySettings = function updateDisplaySettings (key, value) {
+				var settings = this.sketcherInstance.getDisplaySettings();
+				settings[key] = value;
+				this.sketcherInstance.setDisplaySettings(settings);
+			};
+
+			return SketcherControllerClass;
+
+		}());		
+		
+	
+
+ + + diff --git a/public/marvinjs/examples/example-create-abbreviation.html b/public/marvinjs/examples/example-create-abbreviation.html new file mode 100644 index 000000000..a904c0d35 --- /dev/null +++ b/public/marvinjs/examples/example-create-abbreviation.html @@ -0,0 +1,106 @@ + + + + + Create Abbreviation list for Marvin JS + + + + + + + + +

Create Abbreviation list for Marvin JS

+ +

You can generate abbreviation group list for Marvin JS with the help of the following form. Just fill the form and push the Add button. +

By repeating these steps, you can append further and further abbreviation group to the templates object.

+

Finally, you can copy the textual result (from the textbox) in a file that you can refer later in Marvin JS.

+ + +

Input

+

In the Structure field, an MRV source is expected that contains only one compound, an abbreviated S-group.

+

The Name field specifies the label of the menu item in the Abbreviated group dialog. If you do not specify it, its value will be the name of the abbreviation (specified in the MRV file).

+
+
  • +
  • +
  • +
  • +
  • + + + +
  • +
    +

    Result

    +
    +
  • +
    + + + + + \ No newline at end of file diff --git a/public/marvinjs/examples/example-create-image.html b/public/marvinjs/examples/example-create-image.html new file mode 100644 index 000000000..977983528 --- /dev/null +++ b/public/marvinjs/examples/example-create-image.html @@ -0,0 +1,307 @@ + + + + + Marvin JS Examples - Convert Structure To Image + + + + + + + + + + + +

    Marvin JS Examples - Convert Structure To Image

    + +

    In this example, you can create PNG, JPEG or SVG picture from the given molecule source.

    + +
    +
  • Carbon labels
  • +
  • CPK coloring
  • +
  • Show Stereo Info
  • +
  • Show chiral flag
  • +
  • Show atom maps
  • +
  • Show Lone Pairs + +
  • +
  • Atom Indeces
  • +
  • Implicit Hydrogens + +
  • +
  • Display Mode + +
  • +
  • Zoom Mode + +
  • +
  • Width:
  • +
  • Height:
  • +
  • Background Color:
  • +
    + + + +
    +
    +
    +
    + AUTO + mol + mrv + smiles + smarts +
    + +
    + +
    +

    Create a DIV element where the generated images will be embedded. It is hidden till the image is inserted. +

    <div id="imageContainer" class="left10" style="display: none;">
    +  <img id="image" class="bordered" />
    +</div>

    +

    The following dependencies are used in this example: +

      +
    • jquery-1.9.1.min.js - The example is written in JQuery but the ImageExporter API does not require it.
    • +
    • promise-1.0.0.min.js - Promise overlay (required if the current browser does not provide a Promise implementation).
    • +
    • marvinjslauncher.js - The MarvinJSUtil is a helper API to get the marvin object from the iframe.
    • +
    • webservices.js - Defines the getDefaultServices function that provides the settings of the expected services.
    • +

    +
    	<script src="../js/lib/jquery-1.9.1.min.js"></script>
    +	<script src="../gui/lib/promise-1.0.0.min.js"></script>
    +	<script src="../js/marvinjslauncher.js"></script>	
    +	<script src="../js/webservices.js"></script>
    +

    You need the marvin.ImageExporter class to convert structure to image. Loads this API into a separate iframe to avoid potential css conflicts.

    + Use the marvinpack.html that loads the marvin namespace. + +
    		$(document).ready(function handleDocumentReady (e) {
    +			// load marvin namespace in a separate frame to avoid css conflict
    +			// the display attribute of this iframe cannot be "none", but you can hide it somewhere
    +			$('body').append($('<iframe>', { id: "marvinjs-iframe", src: "../marvinpack.html"}));
    +			// wait for the reference of marvin namespace from the iframe
    +			MarvinJSUtil.getPackage("#marvinjs-iframe").then(function(marvinNameSpace) {
    +				// the reference to the namespace is arrived but there is no guaranty that its initalization has been finished
    +				// because of it, wait till the ready state to be sure the whole API is available
    +				marvinNameSpace.onReady(function() {
    +					marvin = marvinNameSpace;
    +					initControl();
    +				});	
    +			}, function(error) {
    +				alert("Cannot retrieve marvin instance from iframe:"+error);
    +			});
    +		});
    +

    +

    To hide the iframe, the following CSS settings are used:

    +
    	iframe#marvinjs-iframe {
    +		width: 0;
    +		height: 0;
    +		display: initial;
    +		position: absolute;
    +		left: -1000;
    +		top: -1000;
    +		margin: 0;
    +		padding: 0;
    +	}
    +

    The initcontrol function bind click handler for the buttons.

    +
    		function initControl() {
    +			$("#molsource-box").val(source);
    +			$("#createPNG").on("click", function() {
    +				createImage("image/png", applyDataUri);
    +			});
    +			$("#createJPEG").on("click", function() {
    +				createImage("image/jpeg", applyDataUri);
    +			});
    +			$("#createSVG").on("click", function() {
    +				createImage("image/svg", applySvg);
    +			});
    +		}
    +

    The createImage function creates a new instance of ImageExporter class and call its render function to convert the given string to image. + It is an asynchrone exporter, the render function returns with a Promise instance. The given callback function processes the result of the image export. It is automatically evaluated when the export process is completed.

    +
    		function createImage(imageType, callback) {
    +			var exporter = createExporter(imageType);
    +			exporter.render($("#molsource-box").val()).then(callback, alert);
    +		}
    +

    The createExporter function retrieves the current settings to create a new ImageExporter object with these settings.

    +
    		function createExporter(imageType) {
    +			var settings = {
    +				'carbonLabelVisible' : $("#chbx-carbonVis").is(':checked'),
    +				'cpkColoring' : $("#chbx-coloring").is(':checked'),
    +				'chiralFlagVisible': $("#chbx-chiral").is(':checked'),
    +				'atomMapsVisible': $("#chbx-atommaps").is(':checked'),
    +				'lonePairsVisible' : $("#lonepairs").val() != '0',
    +				'lonepaircalculationenabled' : $("#lonepairs").val() == '2',
    +				'atomIndicesVisible': $("#chbx-atomIndeces").is(':checked'),
    +				'implicitHydrogen' : $("#implicittype").val(),
    +				'displayMode' : $("#displayMode").val(),
    +				'background-color': $('#bg').val(),
    +				'zoomMode' : $("#zoommode").val(),
    +				'width' : parseInt($("#w").val(), 10),
    +				'height' : parseInt($("#h").val(), 10)
    +			};
    +
    +			var inputFormat = $("input[type='radio'][name='inputFormat']:checked").val();
    +			if(inputFormat == "") {
    +				inputFormat = null;
    +			}
    +			var defaultServices = getDefaultServices();
    +			var services = {};
    +			services['molconvertws'] = defaultServices['molconvertws'];
    +			if($('#chbx-calcStereo').is(":checked")) {
    +				services['stereoinfows'] = defaultServices['stereoinfows']; // enable stereo calculation
    +			}
    +			var params = {
    +					'imageType': imageType, // type of output image
    +					'settings': settings, // display settings
    +					'inputFormat': inputFormat, // renderer will expect molecule source in this format
    +					'services': services // to resolve any molecule format and be able to calculate stereo info
    +			}
    +			return new marvin.ImageExporter(params);
    +		}
    +

    At PNG and JPEG image generation, ImageExporter generates a base64 based data URI. To display it, create a new img tag and set the result string to its src attribute.

    +
    		function applyDataUri(dataUri) {
    +			$('#imageContainer').empty();
    +			var img = $('', { src: dataUri}).appendTo($("#imageContainer"));
    +			$("#imageContainer").css("display", "inline-block");
    +		}
    +

    At SVG export, ImageExporter generates a serialized SVG tag that includes a scalable vector graphics. To display it, insert the result as raw data into an empty DOM element.

    +
    		function applySvg(svg) {
    +			$("#imageContainer").html(svg);
    +			$("#imageContainer").css("display", "inline-block");
    +		}
    +
    + + + diff --git a/public/marvinjs/examples/example-create-template.html b/public/marvinjs/examples/example-create-template.html new file mode 100644 index 000000000..145e6a067 --- /dev/null +++ b/public/marvinjs/examples/example-create-template.html @@ -0,0 +1,159 @@ + + + + + Create Templates for Marvin JS + + + + + + + + +

    Create Templates for Marvin JS

    + +

    You can generate templates for Marvin JS with the help of the following form. Just fill the form and push the Add button. + The template source appears in the Result text box, and the generated (24x24 )icon displays above it.

    +

    By repeating these steps, you can append further and further template to the templates object.

    +

    Finally, you can copy the textual result (from the textbox) in a file that you can refer later in Marvin JS.

    + + +

    Input

    +
    +
  • +
  • +
  • +
  • +
  • +
  • +
  • +
  • +
  • + + + +
  • +
    +

    Result

    +
    +
  • +
  • +
    + + + + + \ No newline at end of file diff --git a/public/marvinjs/examples/example-customize-service.html b/public/marvinjs/examples/example-customize-service.html new file mode 100644 index 000000000..c6f568a56 --- /dev/null +++ b/public/marvinjs/examples/example-customize-service.html @@ -0,0 +1,113 @@ + + + + + Marvin JS Example to customize service + + + + + + + + + + +

    Marvin JS Example to customize service

    + +

    The Clean2D webservice is not available at startup (its icon is missing from the toolbar). You have an input form where you can specify the location of the Clean2D + webservice. As you apply the form, it disappears and the Clean2D service is registered to the sketcher with the given URL. After that, the Clean icon appears + on the toolbar and you can perform clean operation on the drawn structure.

    + +

    Clean operation can fail in the following cases: +

      +
    • Wrong URL
    • +
    • The server where the URL points is not available.
    • +
    • The webservice is located on different domain than the editor (browser can block the request via the webservice if it harms its same origin policy).
    • +
    • The webservice is not compatible with the current JChem Webservice version that Marvin JS expects (e.g.: unexpected input or output data).
    • +
    +

    +
    + Clean2D Webservice location:
    + + + +
    +
    + +
    + +
    +

    Initialize the input form at startup. When the Apply Service button is submitted, the setServices function of the sketcher + is called to apply the given service to the editor. The function expects a JavaScript object that describes one or more webservices. + Finally, hide the input form to prevent applying further services.

    +
    +			$(document).ready(function handleDocumentReady (e) {
    +			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +				marvinSketcherInstance = sketcherInstance;
    +				resetForm();
    +				initControls();
    +			}, function () {
    +				alert("Cannot retrieve sketcher instance from iframe");
    +			});
    +		});
    +
    +		function initControls () {
    +			$("#restoreButton").on("click", resetForm);
    +			$("#applyButton").on("click", function (e) {
    +				submitService($("#clean2dws-location").val());
    +
    +			});
    +		}
    +
    +		function resetForm() {
    +			$("#clean2dws-location").val(getDefaultServices()["clean2dws"]);
    +		}
    +
    +		function submitService(url) {
    +			var services = {
    +				"clean2dws" : (url == "") ? null : url
    +			};
    +			marvinSketcherInstance.setServices(services);
    +			$("#serviceForm").hide();
    +		}
    +			
    +		
    +
    + + + diff --git a/public/marvinjs/examples/example-defaulttool.html b/public/marvinjs/examples/example-defaulttool.html new file mode 100644 index 000000000..b8672677d --- /dev/null +++ b/public/marvinjs/examples/example-defaulttool.html @@ -0,0 +1,100 @@ + + + + + Marvin JS Example - Change the default tool + + + + + + + + + +

    Marvin JS Example - Change default tool

    + +
    +
    + Rectangle + Lasso +
    +
    + +
    +
    +
    +

    In this example, you can change the default tool of the editor. + Select the default tool. Default tool is not the same as the actual tool of the editor. By contrast the actual tool, default tool has relevance in such situations when it is not clear which tool should be activated. In these cases you can denote a tool which should be selected as the default one. For example after pushing the Esc keyboard button.

    +

    
    +	<div style="padding-bottom: 0.8em;">
    +		<input type="radio" name="defaulttool-group" value="rectangleSelection" checked>Rectangle</input>
    +		<input type="radio" name="defaulttool-group" value="lassoSelection">Lasso</input>
    +	</div>
    +	

    + +

    When you take a look at the source code, you can see that a listener function is bound to the change events of radio buttons. + When a change event is invoked, the updateDefaultTool(value) function is performed. + This function assembles a JavaScript object that describes display settings and call the setDisplaySettings(settings) function of the sketcher. + Only give settings that you would like to overwrite. In this case, this is the defaultTool property.

    + +

    
    +		var marvinSketcherInstance;
    +
    +		$(document).ready(function handleDocumentReady (e) {
    +			// after editor in the sketch iframe is ready store its reference 
    +			// and activate controls
    +			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +				marvinSketcherInstance = sketcherInstance;
    +				initControls();
    +			},function (error) {
    +				alert("Cannot retrieve sketcher instance from iframe:"+error);
    +			});
    +		});
    +
    +		function initControls () {
    +			// change layout
    +			$("input[name='defaulttool-group']").change(function(e) {
    +				var s = $(this).val();
    +				updateDefaultTool(s);
    +			});
    +		}
    +
    +		function updateDefaultTool(tool) {
    +			marvinSketcherInstance.setDisplaySettings({
    +				"defaultTool": tool
    +			});
    +		}

    +
    + + + diff --git a/public/marvinjs/examples/example-edit-images.html b/public/marvinjs/examples/example-edit-images.html new file mode 100644 index 000000000..1f82fa77e --- /dev/null +++ b/public/marvinjs/examples/example-edit-images.html @@ -0,0 +1,249 @@ + + + + + + Marvin JS Examples - Edit images + + + + + + + + + + + + + + +

    Marvin JS Examples - Edit images

    + +

    A molecule table should be displayed as the loading of the page is finished. See below the commented code

    + + +
    +

    Preparation of the page is in progress ...

    +
    + + +
    + +

    There is a DIV where generated images will appear. +

    <div id="imageContainer" class="image-container">
    +<p>Preparation of the page is in progress ...</p>
    +</div>

    + +

    We need a hidden DIV with the highest z-index. It is the popup window with a close button and with the editor iframe. This popup window appears when a picture is edited. +

    <div id="popup" class="popup-window" style="position: fixed; left:0px; top:0px; z-index:100; visibility: hidden; opacity: 0;">
    +	<div class="wrapper">
    +		<div id="title-bar"><input id="close" type="button" class="close-button" value="Done ×"></div>
    +		<div id="sketchContainer">
    +			<iframe id="sketchImg" src="../editor.html" ></iframe>
    +		</div>
    +	</div>
    +</div>

    +

    You will need the following JS libraries for this example. They are bundled to the header of the example page. +The first one is a promise implementation, the second loads MarvinJSUtil. +

      <script src="../gui/lib/promise-1.0.0.min.js"></script>
    +  <script src="../js/marvinjslauncher.js"></script>

    +

    These global variables are also defined in this example: +

      +
    • marvin - reference to the Marvin JS API
    • +
    • marvinSketcherInstance - reference to the editor in the iframe
    • +
    • editorControl - controller to open / close the editor and modify images
    • +
    • molecules - molecule sources
    • +

    +

    Below you can see the code that is embedded into the $(document).ready(function handleDocumentReady (e) { ... }); block.

    +

    To hide the editor when the close button is submit, bind an event handler to the close button. +

    		$("#close").bind("click", function() {
    +			editorControl.close();
    +		});
    +

    +

    For the image export, marvin object is required that encapsulates the whole Marvin JS API into a common namespace.
    +Since you have an editor in an iframe where marvin is already available, you can use this instance.
    +The MarvinJSUtil.getPackage(String) helps to receive its reference. +When marvin is ready, the exportImages() function creates initial molecule images. +

    		MarvinJSUtil.getPackage("sketchImg").then(function (marvinNameSpace) {
    +			marvinNameSpace.onReady(function () {
    +				marvin = marvinNameSpace;
    +				exportImages();
    +			});
    +		}, function () {
    +			alert("Cannot retrieve marvin instance from iframe");
    +		});
    +

    +

    Meanwhile, you can get the reference to the editor with the help of MarvinJSUtil.getEditor(String). +When you received it, save it for later usage and attempt to open the editor with the selected image. +

    		MarvinJSUtil.getEditor("sketchImg").then(function (sketcherInstance) {
    +			marvinSketcherInstance = sketcherInstance;
    +			// open editor if any image is selected
    +			editorControl.open();
    +	  	}, function () {
    +			alert("Cannot retrieve sketcher instance from iframe");
    +		});

    + +

    Thus, that has happened in the document.ready block. +

    As above mentioned, exportImages() function creates inital molecule images and insert them into the proper DIV element on the page. +This function creates a new image tag for each molecule. +The marvin.ImageExporter.mrvToDataUrl(String) function creates a image data URI from an MRV source. +The MRV source is also inserted into the new image tag as the alt attribute. +

    	function exportImages() {
    +		var docFrag = document.createDocumentFragment();
    +		for(i=0; i<molecules.length;i++) {
    +		  var imgData = marvin.ImageExporter.mrvToDataUrl(molecules[i]);
    +		  if(imgData != null) {
    +			var dv = $('<div>', { class: "mol-cell" });
    +			$('<span>', { text: ("Compound #" + (i+1))}).appendTo(dv);
    +			$('<img>', { name: "pict", src: imgData, alt: escape(molecules[i]), onclick:"clickOnImage(this)"}).appendTo(dv);
    +			dv.appendTo(docFrag);
    +		  }
    +	  	}
    +		$('<div>', { class: "table-bottom" }).appendTo(docFrag);
    +	  	$("#imageContainer").append(docFrag);
    +	}

    + +

    The editorControl is responsible to show the editor with the proper structure or hide it and refresh its image. +The currentPict is a reference to the <img> from the DOM that you would like to edit.
    +If it is null, it means that no image has been selected yet to edit. +The molecule source for an image is stored in its alt attribute.

    +
    	var editorControl = (function() {
    +		
    +		var currentPict = null;
    +		
    +		var controlObject = {
    +			"picture" : function picture(pict) {
    +				currentPict = pict;
    +			}
    +			,"open" : function openEditor() {
    +				if(currentPict != null) {
    +					marvinSketcherInstance.importStructure("mrv", unescape(currentPict.alt));
    +					$("#popup").css("visibility", "visible");
    +					$("#popup").css("opacity", 1);
    +				}
    +			}
    +			,"close" : function closeEditor() {
    +				if(marvinSketcherInstance != null) {
    +					var cp = currentPict;
    +					marvinSketcherInstance.exportStructure("mrv").then(function(s) {
    +						cp.alt = escape(s);
    +						cp.src = marvin.ImageExporter.mrvToDataUrl(s);	
    +					}, function(error) {
    +						alert(error);
    +					});
    +				}
    +				$("#popup").css("visibility", "hidden");
    +				$("#popup").css("opacity", 0);
    +			}
    +		};
    +		return controlObject;
    +	}());
    +	
    +

    When a click event is invoked on an <img> tag, the clickOnImage function is performed. +It passes the reference of the current image to the editorControl +and ask it to open the editor.

    +
    +
    	function clickOnImage(pict) {
    +		editorControl.picture(pict);
    +		editorControl.open();
    +	}
    + + + + diff --git a/public/marvinjs/examples/example-get-selection.html b/public/marvinjs/examples/example-get-selection.html new file mode 100644 index 000000000..4d1278ca9 --- /dev/null +++ b/public/marvinjs/examples/example-get-selection.html @@ -0,0 +1,155 @@ + + + + + Marvin JS Examples - Get Selection + + + + + + + + + +

    Marvin JS Examples - Get Selection

    + +
    +
    + +
    +

    +

    +
    +

    This example demonstrates how to inject selection information into the generated MRV source.

    +

    When Get Selection button is pushed, the getSelection function is called that retrieves the canvas content in MRV format. Since exportStructure is an asynchronous request, we get index of selected atoms when the MRV source received.

    +

    After that, inject selection information into the MRV source with the help of mrvWithSelection function. + Its result displays in the below text box

    +
    	$(document).ready(function handleDocumentReady (e) {
    +		MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +			// initalize sketcher
    +			sketcherInstance.importStructure("mol",caffeineSource);
    +			sketcherInstance.setDisplaySettings({
    +				'carbonLabelVisible' : true,
    +				'atomIndicesVisible' : true
    +			});
    +
    +			getSelection = function () {
    +				sketcherInstance.exportStructure("mrv").then(function(source) {
    +					var selection = sketcherInstance.getSelection();
    +					$("#molsource").val(mrvWithSelection(source, selection));
    +				}, function(error) {
    +					alert("Cannot retrieve the molecule source");
    +				});	
    +			};
    +			
    +			$("#getSelectionButton").on("click", getSelection);
    +
    +
    +		}, function () {
    +			alert("Cannot retrieve sketcher instance from iframe");
    +		});
    +	});
    + +

    The mrvWithSelection function checks whether selection is empty. + If yes, it does nothing just returns with the original MRV source. + + If the selection contains one or more atom indeces, it builds up a DOM object from the MRV source and iterates over the list of indeces to find the appropriate atom tags. Append the "isSelect" attribute to each atom tag that matched. + Finally, it serializes the above DOM object and returns with the generated string

    +
    	function mrvWithSelection(mrv, selection) {
    +		var parser = new DOMParser();
    +		if(selection && selection.atoms) {
    +			var xml = parser.parseFromString(mrv, "text/xml");
    +			var atoms = xml.getElementsByTagName('atom');
    +			var selectedAtoms = selection.atoms.split(",");
    +			for(var i = 0; i < selectedAtoms.length; i++) {
    +				var index = selectedAtoms[i]-1;
    +				if(atoms[index]) {
    +					atoms[index].setAttribute("isSelected", true);
    +				}
    +			}
    +			return new XMLSerializer().serializeToString(xml);
    +		}
    +		return mrv;
    +	}
    + + + diff --git a/public/marvinjs/examples/example-getimage.html b/public/marvinjs/examples/example-getimage.html new file mode 100644 index 000000000..2577ca6b4 --- /dev/null +++ b/public/marvinjs/examples/example-getimage.html @@ -0,0 +1,112 @@ + + + + + Marvin JS Example - Get The Image + + + + + + + + + +

    Marvin JS Example - Get The Image

    + + +
    + +
    +
      +
    • +
    • + +
    • +
    +
    +

    This example demonstrates how to retrieve the molecule image from the sketcher. When you push the Export + button, the current molecule is exported as a JPEG image. The result is shown next to the editor.

    +

    First of all, you need a reference for the current editor. + MarvinJSUtil.getEditor(String) provides a Promise object for you to get it when the editor is ready.

    +

    After the editor is loaded, run the initcontrol() function to bind action the the Export button.

    +

    When the button is clicked, the exportImage(String) function of the editor is called. It provides a Promise object to access the result + of the export process. Call its then(...) function with the callback function that describes what you would like to do with the export result. + In this case, the src attribute of the <img> tag is updated with the image source.

    +
    		var marvinSketcherInstance;
    +		
    +		$(document).ready(function handleDocumentReady (e) {
    +			// get the reference to the Marvin JS editor
    +			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +				marvinSketcherInstance = sketcherInstance;
    +				initControl();
    +			},function (error) {
    +				alert("Cannot retrieve sketcher instance from iframe:"+error);
    +			});
    +		});
    +
    +		function initControl () {
    +
    +			// the export button
    +			$("#btn-export").on("click", function (e) {
    +				var settings = marvinSketcherInstance.getDisplaySettings(); 
    +				settings.width = 420;
    +				settings.height = 420;
    +				settings.backgroundColor = "#ffffff";
    +				marvinSketcherInstance.exportStructure("jpeg", settings).then(function(source) {
    +					exportImage(source);
    +				}, function(error) {
    +					alert("Image export failed:"+error);	
    +				});
    +			});
    +		}
    +
    +		function exportImage(dataUrl) {
    +			// set image source for the existing hidden image tag and display it.
    +			$("#image").attr("src", dataUrl);
    +			$("#imageContainer").css("display", "inline-block");
    +		}
    +
    +	
    +
    + + + diff --git a/public/marvinjs/examples/example-getmol-with-ws.html b/public/marvinjs/examples/example-getmol-with-ws.html new file mode 100644 index 000000000..0a47f8a3c --- /dev/null +++ b/public/marvinjs/examples/example-getmol-with-ws.html @@ -0,0 +1,106 @@ + + + + + Marvin JS Example - Get The Molecule via webservices + + + + + + + + + + +

    Marvin JS Example - Get The Molecule

    + + +
    + +
    +
      +
    • +
    • Enable molconvertws
    • +
    • +
    +
    +

    This example demonstrates how to retrieve a structure from Marvin JS editor, using extra export options.

    + +

    JChem Webservices (the web service implementation provided by ChemAxon) can accept special + export options . The exportStructure() API function of Marvin JS gives the chance to specify export parameters for the molExport service.

    +

    In this example, +H export option (adding explicit Hydrogens to the structure) is passed to the molExport service. If the extra option has been specified, the exportStructure passes the request directly to the remote service instead of evaluating it on client side. + If the location of the service has not been specified, an error message is thrown.

    +

    Please, take care that Marvin JS does not check whether the extra export options passed to WS are valid or not.

    + +

    When the Get mol button is pressed, the current molecule is retrieved from the editor in mol format and the result is displayed in the textbox.

    +

    By unchecking the webservice checkbox, you can switch off the molExport web service. After this, pressing the Get mol button results in an error message, saying: "Unsupported format mol:+H".

    +
    var marvinSketcherInstance;
    +
    +$(document).ready(function handleDocumentReady (e) {
    +	var p = MarvinJSUtil.getEditor("#sketch");
    +	p.then(function (sketcherInstance) {
    +		marvinSketcherInstance = sketcherInstance;
    +		initControl();
    +	}, function (error) {
    +		alert("Cannot retrieve sketcher instance from iframe:"+error);
    +	});
    +});
    +
    +function initControl () {
    +
    +	// get mol button
    +	$("#btn-getmol").on("click", function (e) {
    +		marvinSketcherInstance.exportStructure("mol", {"extra": "+H"}).then(function(source) {
    +			$("#molsource").text(source);
    +		}, function(error) {
    +			alert("Molecule export failed:"+error);	
    +		});
    +	});
    +	var molconvertws_value = getDefaultServices()["molconvertws"]
    +	$("#btn-service").change(function(e) {
    +		var services = {
    +			"molconvertws" : (e.target['checked']) ? molconvertws_value : null
    +		};
    +		marvinSketcherInstance.setServices(services);
    +	});
    +}
    +
    +
    +	
    +
    + + + diff --git a/public/marvinjs/examples/example-getmol.html b/public/marvinjs/examples/example-getmol.html new file mode 100644 index 000000000..4295cca99 --- /dev/null +++ b/public/marvinjs/examples/example-getmol.html @@ -0,0 +1,88 @@ + + + + + Marvin JS Example - Get The Molecule + + + + + + + + + +

    Marvin JS Example - Get The Molecule

    + + +
    + +
    +
      +
    • +
    • +
    +
    +

    This example demonstrates how to retrieve the molecule from the sketcher. When you push the Get mol + button, the current molecule is retrieved from the editor in MRV format and the result is displayed in the textbox.

    +

    First of all, you need a reference for the editor. MarvinJSUtil.getEditor(String) provides a Promise object for you to get it + when the editor is ready.

    +

    After the editor is loaded, run the initcontrol() function to bind action the the Get mol button.

    +

    When the button is clicked, the exportStructure(String) function of the editor is called. Its provides a Promise object to access the result + of the export process. Call its then(...) function with the callback function that describes what you would like to do with the export result. + In this case, it is displayed in the molsource textbox.

    +
    var marvinSketcherInstance;
    +
    +$(document).ready(function handleDocumentReady (e) {
    +	var p = MarvinJSUtil.getEditor("#sketch");
    +	p.then(function (sketcherInstance) {
    +		marvinSketcherInstance = sketcherInstance;
    +		initControl();
    +	}, function (error) {
    +		alert("Cannot retrieve sketcher instance from iframe:"+error);
    +	});
    +});
    +
    +function initControl () {
    +
    +	// get mol button
    +	$("#btn-getmol").on("click", function (e) {
    +		marvinSketcherInstance.exportStructure("mrv").then(function(source) {
    +			$("#molsource").text(source);
    +		}, function(error) {
    +			alert("Molecule export failed:"+error);	
    +		});
    +	});
    +}
    +
    +
    +	
    +
    + + + diff --git a/public/marvinjs/examples/example-highlight-by-index.html b/public/marvinjs/examples/example-highlight-by-index.html new file mode 100644 index 000000000..44a3d4f8a --- /dev/null +++ b/public/marvinjs/examples/example-highlight-by-index.html @@ -0,0 +1,132 @@ + + + + + Marvin JS Examples - Highlight By Index + + + + + + + + + +

    Marvin JS Examples - Highlight By Index

    + +
    + +
    +
    + Color: + Opacity (0-100%): + Size (40-200%): + + +
    +

    This example demonstrates how to paint a custom patch for atom and bonds.

    +

    How to try it:

    +

    Draw a structure and select those atoms and bonds that you would like to highlight with colored patch.

    +

    After that, specify the style: select color, setup opacity value between 0.0 and 1.0 + (0 is full transparent, 1 is total opaque). + Then, set the relative size of the patch (relative to the selection feedback). + Finally, apply settings. If you push the Overwrite highlight button, the previously set patches will be deleted. + If you choose Append highlight, the current patches are preserved and new settings are appended to them. +

    Notes: +

      +
    • If several styles are applied to the editor, the patches may overlaps each other.
    • +
    • Reaction converter is switched off to avoid atom index collision (among reaction compounds).
    • +
    +

    + +

    You can see the code comment below.

    +

    First of all, we request a reference to the loaded editor. + Then, we bind click handler for the submit buttons. + We will need an array (highlights)where we cache applied styles. +

    	var marvinSketcherInstance;
    +	var highlights = [];
    +
    +	$(document).ready(function handleDocumentReady (e) {
    +		MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +			// initalize sketcher
    +			marvinSketcherInstance = sketcherInstance;
    +			$('#overwriteButton').click(onButtonClick);
    +			$('#appendButton').click(onButtonClick);
    +		});
    +	});
    + +

    The onButtonClick function, determines the current behaviour: append or overwrite the current style with the new one. + After that, we retrieve the selection from the editor to apply the new style to the desired atoms/bonds. + In the selection, the atoms and bonds are referred by atom indexes.

    +

    If we choose overwrite option, we reset the previously stored highlight history (highlights).

    +

    The createHighlight function is responsible to create the new highlight style from the given data. + The new highlight object is added to the highlights array. + This array is applied to the setHighlight function of the editor.

    +
    	function onButtonClick(e) {
    +		var b = (e.target.id =='overwriteButton');
    +		var selection = marvinSketcherInstance.getSelection();
    +		if(b) {
    +			highlights = [];
    +		}
    +		highlights.push(createHighlight(selection));
    +		marvinSketcherInstance.setHighlight(highlights);
    +	}
    +

    The createHighlight function expects the selection object. + The highlight object has an indexes property. It is an object with an atom and a bond list. + The atom index list of selection object is a string that represents a comma separated list of indexes. Convert it to string array before assign it to the highlight.indexes. + Do the same with the bond index list. +

    After that, you can create highlight.style object. Retrieve the value of the color input field. + Convert value of the opacity field into the 0 - 1 range. Do the same with the size value.

    +

    The created highlight objects defines atoms and bonds by UID and specify style with color, opacity and size properties.

    +
    	function createHighlight(selection) {
    +		var highlight = {};
    +		highlight.indexes = {}
    +		highlight.indexes.atoms = (selection.atoms.length == 0)? [] : selection.atoms.split(',');
    +		highlight.indexes.bonds = (selection.bonds.length == 0)? [] : selection.bonds.split(','); 
    +		highlight.style = {}
    +		highlight.style.color = $('#colorValue').val();
    +		var opacity = $('#opacityValue').val()/100;
    +		highlight.style.opacity = opacity;
    +		var size = $('#sizeValue').val()/100;
    +		highlight.style.size = size;
    +		return highlight;
    +	}
    + + + diff --git a/public/marvinjs/examples/example-highlight.html b/public/marvinjs/examples/example-highlight.html new file mode 100644 index 000000000..82189b6f6 --- /dev/null +++ b/public/marvinjs/examples/example-highlight.html @@ -0,0 +1,209 @@ + + + + + Marvin JS Examples - Highlight By Unique ID + + + + + + + + + +

    Marvin JS Examples - Highlight By Unique ID

    + +
    + +
    +
    + Color: + Opacity (0-100%): + Size (40-200%): + + +
    +

    This example demonstrates how to paint a custom patch for atoms and bonds.

    +

    How to try it:

    +

    Draw a structure and select those atoms and bonds that you would like to highlight with colored patch.

    +

    After that, specify the style: select color, setup opacity value between 0.0 and 1.0 (0 is full transparent, 1 is total opaque). + Then, set the relative size of the patch (relative to the selection feedback). Finally, apply settings.

    +

    If you push Overwrite highlight button, the previously set patches will be deleted. + If you choose Append highlight, the current patches will be preserved and new settings will be appended to them.

    +

    Notes: +

      +
    • If several styles are applied to the editor, the patches may overlaps each other.
    • +
    • Reaction converter is switched off to avoid atom index collision (among reaction compounds).
    • +
    +

    + +

    You can see the code comment below.

    +

    First of all, we request a reference to the loaded editor. Then, we bind click handler for the submit buttons. + We will need an array (highlights)were we cache the applied styles and a DOM parser (parser) that helps us to seek data in MRV sources.

    +
    	var marvinSketcherInstance;
    +	var highlights = [];
    +	var parser = new DOMParser();
    +	
    +	$(document).ready(function handleDocumentReady (e) {
    +		MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +			// initalize sketcher
    +			marvinSketcherInstance = sketcherInstance;
    +			$('#overwriteButton').click(onButtonClick);
    +			$('#appendButton').click(onButtonClick);
    +		});
    +	});
    + +

    The onButtonClick function, determines the current behavior: append or overwrite the current style with the new one. + After that, we retrieve the selection from the editor to apply the new style to the desired atoms/bonds. + In the selection, the atoms and bonds are referred by atom indexes.

    +

    To retrieve the unique ID (UID) of these atoms, we have to get the molecule source of the structure. + To do that, specify hasUID export option in exportStructure function.

    +

    When the molecule source arrived, we are ready to create the new highlight settings.

    +

    If we choose the overwrite option, we reset the previously stored highlight history (highlights).

    +

    The createHighlight function is responsible to create the new highlight style from the given data. + The new highlight object is added to the highlights array. + This array is applied to the setHighlight function of the editor.

    +
    	function onButtonClick(e) {
    +		var b = (e.target.id =='overwriteButton');
    +		var selection = marvinSketcherInstance.getSelection();
    +		marvinSketcherInstance.exportStructure('mrv', { hasUID: true}).then(function(source) {
    +			if(b) {
    +				highlights = [];
    +			}
    +			highlights.push(createHighlight(source, selection));
    +			marvinSketcherInstance.setHighlight(highlights);
    +		}, alert);
    +	}
    +

    The createHighlight function expects two parameters: the molecule source and the selection object. + First of all, an xml object is created from the MRV source to be able to seek the UID properties. + Atom UID is stored in a child (scalar) tag of the atom tag. + The atoms field of the selection object gives index of selected atoms. + The ID of the scalar tag that describes the UID property of the n-th atom can describe in the following format: + a<index>.prop1 where <index> is the index of the atom. + Get it with the help of the getElementById function, and appends its value to the highlight.uids.atoms array.

    +

    You can get bond UID in a similar way. In this case, the ID of the scalar tag is in the following format: + a<index of begin atom>;a<index of end atom>.prop1. + The bond UIDs are collected into highlight.uids.bond array.

    +

    After that, you can create the highlight.style object. Retrieve the value of the color input field. + Convert value of the opacity field into the 0 - 1 range. Do the same with the size value.

    +

    The created highlight objects define atoms and bonds by UID and specify style with color, opacity and size properties.

    +
    	function createHighlight(source, selection) {
    +		var xml = parser.parseFromString(source, "text/xml");
    +		var highlight = {};
    +		highlight.uids = {};
    +		highlight.uids.atoms = [];
    +		highlight.uids.bonds = [];
    +		var atoms = (selection.atoms.length == 0)? [] : selection.atoms.split(',');
    +		var bonds = (selection.bonds.length == 0)? [] : selection.bonds.split(',');
    +		for(i = 0; i < atoms.length; i++) {
    +			var atom = selectById(xml, 'a'+atoms[i]+'.prop1'); 
    +			if(atom) {
    +				var uid = atom.textContent;
    +				highlight.uids.atoms.push(uid);
    +			} else {
    +				console.log('Cannot find property#a'+atoms[i]+'.prop1');
    +			}
    +		}
    +		for(i = 0; i < bonds.length; i++) {
    +			var edges = bonds[i].split('-');
    +			var bond = selectById(xml, 'a'+edges[0]+'a'+edges[1]+'.prop1');
    +			if(bond) {
    +				var buid = bond.textContent;
    +				highlight.uids.bonds.push(buid);
    +			} else {
    +				console.log('Cannot find property#a'+edges[0]+'a'+edges[1]+'.prop1');
    +			}
    +		}
    +		highlight.style = {}
    +		highlight.style.color = $('#colorValue').val();
    +		var opacity = $('#opacityValue').val()/100;
    +		highlight.style.opacity = opacity;
    +		var size = $('#sizeValue').val()/100;
    +		highlight.style.size = size;
    +		return highlight;
    +	}
    + + + diff --git a/public/marvinjs/examples/example-lazyinit.html b/public/marvinjs/examples/example-lazyinit.html new file mode 100644 index 000000000..77079b499 --- /dev/null +++ b/public/marvinjs/examples/example-lazyinit.html @@ -0,0 +1,37 @@ + + + + + Marvin JS Example - Lazy init + + + + + + + +

    Marvin JS Example - Lazy init

    + +
    + +
    + + + diff --git a/public/marvinjs/examples/example-lonepair.html b/public/marvinjs/examples/example-lonepair.html new file mode 100644 index 000000000..06be60158 --- /dev/null +++ b/public/marvinjs/examples/example-lonepair.html @@ -0,0 +1,150 @@ + + + + + + Marvin JS Example - Set lone pairs manually + + + + + + + + + +

    Marvin JS Example - How to change the editor settings for adding lone pairs manually feature

    + +
    + EDUCATION MODE +
    +
    + +
    +
    +

    This example demonstrates all of the preparations which should be made before applying the manual lone pair usage. + When EDUCATION MODE is activated via its checkbox, the following settings will be applied: +

      +
    • automatic lone pair calculation is disabled, every atom gets 0 lone pairs immediately
    • +
    • 'Increase lone pairs' button is enabled on the toolbar, and becomes ready to use
    • +
    • on copy, any structure is placed in MRV format to the clipboard
    • +
    • implicit hydrogens are hidden
    • +
    • valence errors are hidden.
    • +
    • circled plus / minus sign at charge.
    • +
    + When the checkbox is inactivated, the DEFAULT settings will be applied: +
      +
    • automatic lone pair calculation is enabled, the lone pairs are recalculatedon every atom
    • +
    • 'Increase lone pairs' button is disabled on the toolbar
    • +
    • on copy, any structure is placed as MDL MOL file to the clipboard
    • +
    • implicit hydrogens are visible on terminal and hetero atoms
    • +
    • valence errors are visible.
    • +
    • normal plus / minus sign at charge.
    • +
    + To see the differences between the two settings, some structures are set to the editor. (This example will return to this initial state on page refresh.) + + + In this example, the reporting preset has been set, and the display of lone pairs has been turned on. Please, note that lone pairs are not visible by default in Marvin JS and 'Increase lone pairs' button is only available in the education and the reporting preset. + + +

    At startup, EDUCATION MODE is not set in Marvin JS.

    +
    <iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-toolbars="reporting" ></iframe>
    +

    First of all, a reference is needed for the editor. MarvinJSUtil.getEditor(String) provides a Promise object to get it + when the editor is ready.

    +

    After the editor is loaded and an initial molecule is set, initcontrol() function binds actions to the EDUCATION MODE checkbox. Invoking initcontrol() function ensures that the initial state of the checkbox is consistent with the initial settings of the editor in this example.

    +
    		
    +		var marvinSketcherInstance;
    +
    +		var molecule = "\n\n\n"+
    +		"  6  3  0  0  0  0  0  0  0  0999 V2000\n"+
    +		"    0.0000   -0.0418    0.0000 Cl  0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    2.4274    0.0000    0.0000 Ne  0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    3.1419    0.4125    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    1.7129    0.4125    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    2.4274   -0.8250    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"   -1.7299   -0.0558    0.0000 Kr  0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"  2  3  1  0  0  0  0\n"+
    +		"  2  4  1  0  0  0  0\n"+
    +		"  2  5  1  0  0  0  0\n"+
    +		"M  END\n";
    +		
    +		$(document).ready(function handleDocumentReady (e) {
    +			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +				marvinSketcherInstance = sketcherInstance;
    +				marvinSketcherInstance.importStructure("mol",molecule);
    +				initControl();
    +				update($("#chbx-educationmode"));
    +			},function (error) {
    +				alert("Cannot retrieve sketcher instance from iframe:"+error);
    +			});
    +		});
    +

    Changing the checkbox value triggers the update of the editor settings. + In the change event handler, the target of the change event is the checkbox. If the checkbox is checked, the new settings are applied to the editor. + Settings of the editor can be updated with its setDisplaySettings(settings) function.

    +
    		
    +		function initControl () {
    +			$("#chbx-educationmode").on("change", function (e) {
    +				update(e.target);
    +			});
    +		}
    +		
    +		function update(checkBox){
    +			var settings = {};
    +			settings.lonePairsVisible= true;
    +			settings.lonepaircalculationenabled = !(checkBox.checked);
    +			settings.copyasmrv = checkBox.checked;
    +			settings.implicitHydrogen = (checkBox.checked) ? "OFF" : "TERMINAL_AND_HETERO";
    +			settings.valenceErrorVisible = !(checkBox.checked);
    +			settings.circledsign = checkBox.checked;
    +			marvinSketcherInstance.setDisplaySettings(settings);
    +		}
    +		
    +
    + + + diff --git a/public/marvinjs/examples/example-more-images-immediately.html b/public/marvinjs/examples/example-more-images-immediately.html new file mode 100644 index 000000000..bcec5280c --- /dev/null +++ b/public/marvinjs/examples/example-more-images-immediately.html @@ -0,0 +1,136 @@ + + + + + + Marvin JS Examples - Display More Images Immediately + + + + + + + + + + + + +

    Marvin JS Examples - Display More Images Immediately

    + +

    A molecule table should be displayed as the loading of the page is finished. See below the commented code

    + + + +
    +

    Preparation of the page is in progress ...

    +
    + +
    + +

    First of all, you need the marvin object that encapsulates the whole Marvin JS API into a common namespace. The MarvinJSUtil loads it asynchronously with the help of an invisible iframe. +After marvin is available, the exportImages function is called automatically.

    +
    	var marvin;
    +	$(document).ready(function handleDocumentReady (e) {
    +		// load marvin namespace in a separate frame to avoid css conflict
    +		// the display attribute of this iframe cannot be "none", but you can hide it somewhere	
    +		$('body').append($('<iframe>', { id: "marvinjs-iframe", src: "../marvinpack.html"}));
    +		// wait for the reference of marvin namespace from the iframe
    +		MarvinJSUtil.getPackage("#marvinjs-iframe").then(function (marvinNameSpace) {
    +			// the reference to the namespace is arrived but there is no guaranty that its initalization has been finished
    +			// because of it, wait till the ready state to be sure the whole API is available
    +			marvinNameSpace.onReady(function() {
    +				marvin = marvinNameSpace;
    +				exportImages();
    +			});
    +		},function (error) {
    +			alert("Cannot retrieve marvin instance from iframe:"+error);
    +		});
    +	});
    +

    The exportImages function converts predefined molecules into images and renders them into a table.

    +
    	function exportImages() {
    +		// initalize table
    +		$("#imageContainer").empty();
    +		// iterate the array of molecule sources to create images
    +		$.each(molecules, function(index, value) {
    +			var imgData = marvin.ImageExporter.molToDataUrl(value);
    +			// create a new cell with the new image and append to the table
    +			if(imgData != null) {
    +				var molCell = $('<div>', { class: "mol-cell"});
    +				$("#imageContainer").append(molCell);
    +				molCell.append($('<span>', { text: (index+1) }));
    +				var img = $('<img>');
    +				img.attr('src', imgData);
    +				img.attr('data-mol', escape(value));
    +				molCell.append(img);
    +			}
    +		});
    +		// close table
    +		$("#imageContainer").append($('<div>', { class: "table-bottom"}));
    +	}
    +
    + + + diff --git a/public/marvinjs/examples/example-qrcode.html b/public/marvinjs/examples/example-qrcode.html new file mode 100644 index 000000000..341dc1051 --- /dev/null +++ b/public/marvinjs/examples/example-qrcode.html @@ -0,0 +1,314 @@ + + + + + Marvin JS Example - Create QR Code + + + + + + + + + + + +

    Marvin JS Example - Create QR Code

    + +

    You can create QR Code from the drawn structure. If the MolConvert web service is not available, error message appears on the page when you attempt to convert the structure.

    +

    In the text field above the sketcher, you can specify the target URL encoded into the QR Code.

    +

    Please, press the QR Code button on the left toolbar to generate QR Code image from the current structure. The generated code can be scanned by your mobile phone + (eg. with these apps: iOS , + Android).

    +
    + + + +
    +
    + +
    +
    +
    +

    +
    +
    +

    When the page is loaded, setup a molecule for the sketcher, define a custom button to submit QR Code generation process and provide an option to change + the URL prefix of the generated code by the creating a textbox.

    +
    
    +var marvinSketcherInstance;
    +
    +$(document).ready(function handleDocumentReady (e) {
    +	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +		marvinSketcherInstance = sketcherInstance;
    +			$("#resetButton").on("click", function handlegetQRCodeButton () {
    +			qrCodeControl.reset();
    +		});
    +		var buttonAttributes = {
    +				"name" : "Generate QR Code",
    +				"image-url" : "examples/images/qr.png",
    +				"toolbar" : "W"
    +		};
    +		sketcherInstance.addButton(buttonAttributes, function() {
    +			qrCodeControl.getQRCode();
    +		});
    +		
    +		var s = "\n\n\n"+
    +		" 14 15  0  0  0  0  0  0  0  0999 V2000\n"+
    +		"    0.5089    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    1.2234    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    1.2234    7.4191    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"   -0.2055    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"   -0.9200    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    0.5089    5.3566    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"   -0.2055    7.4191    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    0.5089    6.1816    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"   -0.9200    6.1816    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    0.5089    8.6566    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    2.4929    7.0066    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    2.0080    7.6740    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    2.0080    6.3391    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"    2.2630    8.4586    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +		"  1  7  1  0  0  0  0\n"+
    +		"  8  2  1  0  0  0  0\n"+
    +		"  1  3  1  0  0  0  0\n"+
    +		"  2  3  2  0  0  0  0\n"+
    +		"  7  4  1  0  0  0  0\n"+
    +		"  4  8  1  0  0  0  0\n"+
    +		"  4  9  2  0  0  0  0\n"+
    +		"  7  5  1  0  0  0  0\n"+
    +		"  8  6  1  0  0  0  0\n"+
    +		"  1 10  2  0  0  0  0\n"+
    +		"  3 12  1  0  0  0  0\n"+
    +		"  2 13  1  0  0  0  0\n"+
    +		" 13 11  2  0  0  0  0\n"+
    +		" 12 11  1  0  0  0  0\n"+
    +		" 12 14  1  0  0  0  0\n"+
    +		"M  END\n";
    +		
    +		sketcherInstance.importStructure("mol", s).catch(function(error) {
    +			alert("Import structure failed:"+error);
    +		});
    +	}, function () {
    +		alert("Cannot retrieve sketcher instance from iframe");
    +	});
    +});
    +	
    +

    The qrCodeControl object is responsible to retrieve the structure from the editor. It communicates with the MolConvert webservice via AJAX request + to convert the molecule to SMILES format. It provides the input for the QR Code generator. The QR Code generator expects a DOM object to insert into and a text data to encode.

    +
    
    +var qrCodeControl = (function () {
    +
    +	function getMolConvertURL() {
    +		var ws = getDefaultServices();
    +		return ws['molconvertws'];
    +	};
    +	
    +	function handleRequestError (qXHR, textStatus, errorThrown) {
    +		if (qXHR.status == 0) { // UNSENT request
    +			var errMsg = "ERROR: MolConvert failed.\nThe request has not been sent.\nThe request may violate the cross domain policy.";
    +			errorConsole.print(errMsg);
    +		} else {
    +			errorConsole.print("ERROR: MolConvert failed (status code "+ qXHR.status + ")\n" + qXHR.responseText);
    +		}
    +	};
    +	var controlObject = {
    +		"getQRCode": function getQRCode () {
    +			errorConsole.reset();
    +			var s = marvinSketcherInstance.exportAsMrv();
    +			var data = JSON.stringify({
    +				"structure" : s,
    +				"inputFormat" : "mrv",
    +				"parameters" : "smiles"
    +			});
    +			$.ajax({
    +				"url": getMolConvertURL()
    +				,"type": "POST"
    +				,"dataType": "json"
    +				,"contentType": "application/json"
    +				,"data": data
    +			}).done(function (data, textStatus, jqXHR) {
    +				qrCodeControl.convertsmilesToQRCode(data['structure']);
    +			}).fail(handleRequestError);
    +		}
    +
    +		, "reset": function reset () {
    +			$("#targetField").val("http://www.chemicalize.org/structure/#!mol=");
    +			$("#result").empty();
    +			errorConsole.reset();
    +		}
    +		
    +		, "convertsmilesToQRCode": function convertsmilesToQRCode(smiles) {
    +			$("#result").empty();
    +			var qrCode = new QRCode(document.getElementById("result"), { "width" : 450, "height" : 450 , "correctLevel" : QRCode.CorrectLevel.M });
    +			var s = $("#targetField").val() + escape(smiles);
    +			qrCode.makeCode(s);
    +		}
    +	}
    +	return controlObject;
    +}());
    +	
    +

    The errorConsole object is responsible to display error messages.

    +
    
    +var errorConsole = (function () {
    +	var controlObject = {
    +		"reset" : function() {
    +			$("#error").children("p").html("");
    +		}
    +		, "print" : function(txt) {
    +			$("#error").children("p").html(txt);
    +		}
    +		, "isEmpty" : function() {
    +			return ($("#error").children("p").html() === "");
    +		}
    +	};
    +	return controlObject;
    +}());
    +
    +

    The following additional JavaScript libraries are required:

    +
    
    +	<script src="e;../js/lib/jquery-1.9.1.min.js"e;></script>
    +	<script src="e;../js/webservices.js"e;></script>
    +	<script src="e;../js/util.js"e;></script>
    +	<script src="e;../js/lib/qrcode/qrcode.min.js"e;></script>
    +	
    +	
    +

    The QR Code generation uses a contributed JavaScript library, it is under MIT license.

    + + + diff --git a/public/marvinjs/examples/example-reaction.html b/public/marvinjs/examples/example-reaction.html new file mode 100644 index 000000000..0471f66da --- /dev/null +++ b/public/marvinjs/examples/example-reaction.html @@ -0,0 +1,97 @@ + + + + + + Marvin JS Example - No reaction + + + + + + + + + +

    Marvin JS Example - Reaction handling

    + + +
    + Create editor where reaction is: + + and ReactionConverter WS is + enabled. + +
    +
    + +
    +
    +
    + + + +
    To control how to handle reactions, specify the data-reaction attribute + in the iframe of the sketcher. + It accepts the following values: +
      +
      OFF
      +
      Canvas content is never applied as reaction. +

      Example:

      <iframe src="../editor.html" data-reaction="OFF" id="sketch" class="sketcher-frame"></iframe>

      + +
      BASIC
      +
      Built-in (native) mechanism to resolve single-step reactions at molecule export. +

      Example:

      <iframe src="../editor.html" data-reaction="BASIC" id="sketch" class="sketcher-frame"></iframe>

      + +
      EXTERNAL
      +
      Legacy behavior. The reactionconvertws webservice is responsible for + resolving reactions. If the webservice is not available, the behavior of the editor is similar than in OFF mode. + If the service is available, the service attempts to convert canvas content to a single step reaction at molecule export. +

      Example:

      <iframe src="../editor.html" data-reaction="EXTERNAL" id="sketch" class="sketcher-frame"></iframe>

      +
    +
    + + + diff --git a/public/marvinjs/examples/example-removedefaultservicefromtoolbar.html b/public/marvinjs/examples/example-removedefaultservicefromtoolbar.html new file mode 100644 index 000000000..f4f38a3a1 --- /dev/null +++ b/public/marvinjs/examples/example-removedefaultservicefromtoolbar.html @@ -0,0 +1,97 @@ + + + + + Marvin JS Example - Configure toolbars and services + + + + + + + + + + + +

    Marvin JS Example - Configure toolbars and services

    + +

    + This example demonstrates how to switch off certain server-side features in an editor that has a specific toolbar setting. New buttons can not be added through this usecase, and only those buttons can be removed which would be available with the toolbar preset. +

    +
    +
    + +
    +
    +
    +

    Embed the Marvin JS editor without the default webservices (editor.html) and specify the search layout: +

    <div class="resizable">
    +    <iframe src="../editor.html" id="sketch" class="sketcher-frame" data-toolbars="search"></iframe>
    +</div>
    + +

    Include webservices.js in order to reach default webservice locations.

    +
    <script src="../js/webservices.js"></script>
    + +

    Bind a listener to the loading of the sketcher. When the sketcher is loaded, the setServices method setups the services.

    +
    
    +$(document).ready(function handleDocumentReady (e) {
    +	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +		setServices(sketcherInstance);
    +	},function (error) {
    +		//what should happen if marvinjs initiation fails.
    +	});
    +});
    +

    The setServices method receives the reference to the sketcher object as parameter. + The excluded object declares services to switch off. + With the predefined getDefaultServices(), you can get factory settings of services.

    +

    When you merge the above objects, the new one specifies all services (those ones that are not specified in + excluded inherits the default value, the others are overwritten).

    +

    Finally, call setServices function of the sketcher with the above settings. + After then, enabled services are activated (if current layout includes their button) and buttons of disabled + services are removed.

    +
    
    +function setServices(marvinSketcherInstance) {
    +	// set null value for those services that you would like to switch off
    +	var excluded = {
    +		"stereoinfows": null, 
    +		"hydrogenizews": null,
    +	}
    +	// all services
    +	var defaultServices = getDefaultServices();
    +	// merge defaultServices and excluded into an empty object
    +	// the new object contains the result
    +	var services = $.extend({}, defaultServices, excluded);
    +	marvinSketcherInstance.setServices(services);
    +}
    +
    + + + + + + + diff --git a/public/marvinjs/examples/example-selection.html b/public/marvinjs/examples/example-selection.html new file mode 100644 index 000000000..150c27222 --- /dev/null +++ b/public/marvinjs/examples/example-selection.html @@ -0,0 +1,296 @@ + + + + + Marvin JS Examples - Demo + + + + + + + + + +

    Marvin JS Examples - Manage selection

    + + + + + + +
    +
    + +
    +
    +
    +
    +

    Atoms:

    +

    Bonds:

    +
    +
    +

    Get selection automatically: + + +

    +

    Retrieve mol source at mol change: + Mol change counter: 0 + +

    +

    +
    +

    This example demonstrates how to control selection via JavaScript API and how to monitor the changing of the structure.

    +

    When selection information is retrieved from the sketcher, lists of selected atoms and bonds appear in the following textboxes: Atoms and Bonds.

    +

    If the checkbox titled as Get selection automatically is checked in, lists of selected atoms and bonds are retrieved automatically as the selected context is changed on the canvas. + When this functionality is disabled, you can retrieve the selection by submitting the Get selection button.

    + +

    You can edit both the atom list and bond list in the form. + Atoms can be referred to by their atom index. A bond can be described with the atom index of its nodes.

    +

    With the Set selection button, you can update selection in the editor. Those atoms and bonds will be selected that are enumerated on the selection form.

    + +

    To get the molecule source each time when the drawn structure is changed in the sketcher, check in the Retrieve mol source at mol change checkbox. The retrieved data appears in the + textbox beside the sketcher. You can find a counter next to the checkbox, that indicates how many times the mol change event is invoked. You can reset this counter by submitting the Reset counter button.

    + +

    You can see the code comment below.

    + +
    		var marvinSketcherInstance;
    +		var molChangeCounter;
    +
    +		$(document).ready(function handleDocumentReady (e) {
    +			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +				// initalize sketcher
    +				marvinSketcherInstance = sketcherInstance;
    +				marvinSketcherInstance.importStructure("mol",caffeineSource).catch(function(error) {
    +					alert("Import failed:"+error);
    +				});
    +				marvinSketcherInstance.setDisplaySettings({
    +					'carbonLabelVisible' : true,
    +					'atomIndicesVisible' : true
    +				});
    +
    +				 
    +				getSelection = function () {
    +					$("#atoms").val("");
    +					$("#bonds").val("");
    +					var selection = marvinSketcherInstance.getSelection();
    +					$("#atoms").val(selection['atoms']);
    +					$("#bonds").val(selection['bonds']);
    +				};
    +				
    +				setSelection = function () {
    +					marvinSketcherInstance.setSelection({
    +						'atoms' : $('#atoms').val(),
    +						'bonds' : $('#bonds').val()
    +					});
    +				};
    +				
    +				$("#getSelectionButton").on("click", getSelection);
    +				
    +				$("#setSelectionButton").on("click", setSelection);
    +				
    +				// true to switch on auto retrieve of selection, false to switch it off
    +				setSelectionChangeListener = function(b) {
    +					if(b) {
    +						// add selection change event listener
    +						marvinSketcherInstance.on("selectionchange", getSelection);
    +						// disable manual retrieve when selection change event listener is active
    +						$("#getSelectionButton").attr("disabled", "disabled");
    +					} else {
    +						// remove selection change event listener					
    +						marvinSketcherInstance.off("selectionchange", getSelection);
    +						// enable Get Selection button when selection change event listener is inactive
    +						$("#getSelectionButton").removeAttr("disabled");
    +					}
    +				};
    +
    +				// when the checkbox is checked in/out by the user
    +				$("#selectionChangeCheckbox").change(function () {
    +					setSelectionChangeListener(this.checked);
    +				});				
    +				// activate the listener at startup if its checkbox is selected
    +				if($("#selectionChangeCheckbox").prop('checked')) {
    +					setSelectionChangeListener(true);
    +				}
    +				
    +				molChangeCounter = 0;
    +				
    +				// update counter and display retrieved molecule source
    +				handleMolChangeEvent = function () {
    +					molChangeCounter = molChangeCounter+1;
    +					$("#molChangeCounterDisplay").text(molChangeCounter);
    +					marvinSketcherInstance.exportStructure("mrv").then(function(molsource) {
    +						$("#molsource").val(molsource);	
    +					}, function () {});
    +				};
    +				
    +				// true to switch on auto retrieve of the molecule, false to switch it off
    +				setMolChangeListener = function(b) {
    +					if(b) {
    +						// add mol change event listener					
    +						marvinSketcherInstance.on("molchange", handleMolChangeEvent);
    +					} else {
    +						// remove mol change event listener					
    +						marvinSketcherInstance.off("molchange", handleMolChangeEvent);
    +					}
    +				};
    +
    +				// when the checkbox is checked in/out by the user
    +				$("#molChangeCheckbox").change(function () {
    +					setMolChangeListener(this.checked);
    +				});
    +				// activate the listener at startup if its checkbox is selected
    +				if($("#molChangeCheckbox").prop('checked')) {
    +					setMolChangeListener(true);
    +				}
    +				
    +				// when reset button is submitted by the user
    +				$("#resetMolChangeCounterButton").on("click", function() {
    +					molChangeCounter = 0;
    +					$("#molChangeCounterDisplay").text(molChangeCounter);
    +				});
    +
    +			}, function () {
    +				alert("Cannot retrieve sketcher instance from iframe");
    +			});
    +		});
    +
    +		
    + + + diff --git a/public/marvinjs/examples/example-setmol.html b/public/marvinjs/examples/example-setmol.html new file mode 100644 index 000000000..d1de05fe0 --- /dev/null +++ b/public/marvinjs/examples/example-setmol.html @@ -0,0 +1,192 @@ + + + + + Marvin JS Example - Set a Molecule + + + + + + + + + +

    Marvin JS Example - Set a Molecule

    + +
    +
      +
    • +
    +
    + +
    +
    +
    +

    To be able to embed the Marvin JS editor into a web page, you need one of the following HTML files: +

      +
    • editor.html - the pure editor
    • +
    • editorws.html - the editor extended with default webservices
    • +
    + +

    These HTML files are responsible for loading all resources that the editor component requires.

    + +

    First of all, create an iframe that loads the proper HTML file. + (In this example, the editorws.html file is preferred to be able to use extra functionalities that webservices provide.) + The editor component fills the iframe. As you resize the iframe, the editor follows the changing of the + iframe width and height. In this example, the iframe size is determined by its CSS class, + which is defined in docs.css: sketcher-frame

    + +
    +			<div class="resizable">
    +	<iframe src="../editorws.html" id="sketch" class="sketcher-frame"></iframe>
    +</div>
    +		
    + +

    The host page is where the iframe is inserted.

    + +

    The loading of the editor is not synchronized with the loading of the hosted page. The sketcher object is instantiated inside the iframe. Thus, there is no guaranty that the sketcher is already available + when the loading of the hosted page is finished.

    +

    If you would like to access the sketcher object, use the MarvinJSUtil.getEditor(iframeID) helper function from the js/marvinjslauncher.js. +

    To use it, please include the following script in the header of the HTML document where you would like to use. +

    <script src="../gui/lib/promise-1.0.0.min.js"></script>
    +	<script src="../js/marvinjslauncher.js"></script>
    +

    +

    Below, you can see its usage. + Call MarvinJSUtil.getEditor with the ID of the iframe that contains the editor. It returns with a promise. + After then, call the then method of the promise object. Here, you can specify which code should be evaluated when loading of the sketcher is successful and which one when it fails.

    +
    
    +		MarvinJSUtil.getEditor("#sketch").then(function(sketcherInstance) {
    +			// code performed when the sketcher loaded successful (sketcherInstance is a reference to the editor object)
    +		}, function() {
    +			// code performed when the sketcher loading failed
    +		});
    +

    The fail branch can be evaluated in the following cases:

    +
      +
    • Unable to get iframe with the given ID.
    • +
    • Unable to find sketcherInstance in iframe with the given ID.
    • +
    • Unable to find marvin package
    • +
    • Unable to retrieve sketcher instance.
    • +
    +

    Please, take care that in certain case the browser can reject accessing of the sketcher despite it is loaded into the iframe. It happens when the JavaScript request violates the security concept of the browser + (same origin policy).

    See the Troubleshoot section of the documentation for more details. + +

    In this example, when sketcher is loaded, the initial molecule is setup by calling the importStructure function, and the initControls() function is performed. It binds even handlers + for the checkboxes above the editor (CPK coloring and Carbon label visibility).

    + +
    var marvinSketcherInstance;
    +
    +$(document).ready(function handleDocumentReady (e) {
    +	var p = MarvinJSUtil.getEditor("#sketch");
    +	p.then(function (sketcherInstance) {
    +		marvinSketcherInstance = sketcherInstance;
    +		marvinSketcherInstance.importStructure("mol", s).catch(function(error) {
    +			alert(error);
    +		});
    +		initControls();
    +	}, function (error) {
    +		alert("Cannot retrieve sketcher instance from iframe:"+error);
    +	});
    +});
    +
    +function initControls () {
    +
    +	// Reset mol button
    +	$("#btn-setmol").on("click", function (e) {
    +		marvinSketcherInstance.importStructure("mol", s);
    +	});
    +}
    +
    +var s = "\n\n\n"+
    +	" 14 15  0  0  0  0  0  0  0  0999 V2000\n"+
    +	"    0.5089    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    1.2234    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    1.2234    7.4191    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"   -0.2055    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"   -0.9200    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    0.5089    5.3566    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"   -0.2055    7.4191    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    0.5089    6.1816    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"   -0.9200    6.1816    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    0.5089    8.6566    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    2.4929    7.0066    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    2.0080    7.6740    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    2.0080    6.3391    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"    2.2630    8.4586    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    +	"  1  7  1  0  0  0  0\n"+
    +	"  8  2  1  0  0  0  0\n"+
    +	"  1  3  1  0  0  0  0\n"+
    +	"  2  3  2  0  0  0  0\n"+
    +	"  7  4  1  0  0  0  0\n"+
    +	"  4  8  1  0  0  0  0\n"+
    +	"  4  9  2  0  0  0  0\n"+
    +	"  7  5  1  0  0  0  0\n"+
    +	"  8  6  1  0  0  0  0\n"+
    +	"  1 10  2  0  0  0  0\n"+
    +	"  3 12  1  0  0  0  0\n"+
    +	"  2 13  1  0  0  0  0\n"+
    +	" 13 11  2  0  0  0  0\n"+
    +	" 12 11  1  0  0  0  0\n"+
    +	" 12 14  1  0  0  0  0\n"+
    +	"M  END\n";
    +	
    +
    + + + diff --git a/public/marvinjs/examples/example-templates-default.html b/public/marvinjs/examples/example-templates-default.html new file mode 100644 index 000000000..000f156e2 --- /dev/null +++ b/public/marvinjs/examples/example-templates-default.html @@ -0,0 +1,28 @@ + + + + + Marvin JS Example - Load Custom Templates (in JSON format) + + + + + + +

    Marvin JS Example - Load Custom Templates (in JSON format)

    + +
    + +
    +
    +

    In this example, custom templates are loaded. These templates are stored in templates/default_templates_with_naphtalane.json (URL is relative to the directory of Marvin JS package). + To display them on custom template toolbar, define the location of their source file in the data-templateurl attribute of the iframe tag of the editor.

    +
    <div class="resizable">
    +	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-templateurl="templates/default_templates_with_naphtalane.json"></iframe>
    +</div>
    +		
    +

    You can generate your own templates file via the following form: Create template

    +
    + + + diff --git a/public/marvinjs/examples/example-templates.html b/public/marvinjs/examples/example-templates.html new file mode 100644 index 000000000..979cd756b --- /dev/null +++ b/public/marvinjs/examples/example-templates.html @@ -0,0 +1,28 @@ + + + + + Marvin JS Example - Load Custom Templates + + + + + + +

    Marvin JS Example - Load Custom Templates

    + +
    + +
    +
    +

    In this example, custom templates are loaded. These templates are stored in templates/mytemplates.mrv (URL is relative to the directory of Marvin JS package). + It is an MRV file that contains several molecule structures. + They will appear on custom templates toolbar if location of their source file is defined in the data-templateurl attribute of the iframe tag of the editor.

    +
    <div class="resizable">
    +	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-templateurl="templates/mytemplates.mrv"></iframe>
    +</div>
    +		
    +
    + + + diff --git a/public/marvinjs/examples/example-templates_with_displaysettings.html b/public/marvinjs/examples/example-templates_with_displaysettings.html new file mode 100644 index 000000000..910afe642 --- /dev/null +++ b/public/marvinjs/examples/example-templates_with_displaysettings.html @@ -0,0 +1,98 @@ + + + + + Marvin JS Example - Overwrite custom templates toolbar + + + + + + + + + +

    Marvin JS Example - Overwrite custom templates toolbar

    + +
    +
    + + +
    +
    + +
    +
    +
    +

    In this example, you can change the content of the custom template toolbar without reloading of the editor. + To do this, type the URL of a template source file into the given input field and submit the Update Templates button.

    +

    When you take a look at the source code, you can see that a listener function is bind to the submit button. + (URLs are relative to the root directory of Marvin JS package.) + When the click event is invoked, the updateToolbars(value) function is performed unless the input field is empty. + This function creates a JavaScript object that contains a templateurl property . To update toolbar pass this object to the setDisplaySettings(settings) function of the sketcher.

    +

    
    +		var marvinSketcherInstance;
    +
    +		$(document).ready(function handleDocumentReady (e) {
    +			// after editor in the sketch iframe is ready store its reference 
    +			// and activate controls
    +			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +				marvinSketcherInstance = sketcherInstance;
    +				initControls();
    +			},function (error) {
    +				alert("Cannot retrieve sketcher instance from iframe:"+error);
    +			});
    +		});
    +
    +		function initControls () {
    +			// overwrite custom templates toolbar
    +			$("#updateCustomTemplates").on("click", function(e) {
    +				var s = $("#templateurl").val();
    +				if(typeof s != "undefined" && s.length > 0) {
    +					updateCustomToolbar(s);	
    +				}
    +			});
    +		}
    +
    +		function updateCustomToolbar(url) {
    +			var settings = {
    +					"templateurl": url
    +			};
    +			marvinSketcherInstance.setDisplaySettings(settings);
    +		}

    +
    + + + diff --git a/public/marvinjs/examples/example-toolbars.html b/public/marvinjs/examples/example-toolbars.html new file mode 100644 index 000000000..b0b0b7d0a --- /dev/null +++ b/public/marvinjs/examples/example-toolbars.html @@ -0,0 +1,84 @@ + + + + + Marvin JS Example - Toolbars + + + + + + + + + +

    Marvin JS Example - Toolbars

    + +
    +
    + Standard + Education + Reaction + Markush + Search + Basic Search + Reporting + View 3D +
    +
    + +
    +
    + +
    +

    In this example, the sketcher is initalized with the standard toolbars.

    +

    This layout setting is defined in the data-toolbars attribute of the iframe, which loads the editor.

    +
    <div class="resizable">
    +<iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-toolbars="standard"></iframe>
    +</div>
    +

    Further presets are enumerated above the sketcher. To switch another layout, select its radio button. + It triggers the reload of the iframe with the new setting. + If you select the Markush layout, the editor will be reloaded with the Markush layout.

    +

    When you take a look at the source code, you can see that a listener function is bind to the change events of radio buttons. + When a change event is invoked, the value of data-toolbars attribute of the iframe tag is overwritten + with the selected value and the reload of the iframe is triggered.

    +

    
    +		$(document).ready(function handleDocumentReady (e) {
    +			initControls();
    +		});
    +
    +		function initControls () {
    +			// bind event listener to all radio buttons from layout-group
    +			$("input[name='layout-group']").change(function(e) {
    +				var s = $(this).val();
    +				reload(s);
    +			});
    +		}
    +		
    +		function reload(layout) {
    +			$("#sketch").attr("data-toolbars", layout);
    +			$("#sketch")[0].contentWindow.location.reload(true);
    +		}
    +

    +
    + + + diff --git a/public/marvinjs/examples/example-toolbars_with_displaysettings.html b/public/marvinjs/examples/example-toolbars_with_displaysettings.html new file mode 100644 index 000000000..eaba42781 --- /dev/null +++ b/public/marvinjs/examples/example-toolbars_with_displaysettings.html @@ -0,0 +1,98 @@ + + + + + Marvin JS Example - Toolbars with display settings + + + + + + + + + +

    Marvin JS Example - Toolbars with display settings

    + +
    +
    + Standard + Education + Reaction + Markush + Search + Basic Search + Reporting + View 3D +
    +
    + +
    +
    +
    +

    In this example, you can change layout without reloading of the editor. + Select the desired layout to rerender editor toolbars.

    +

    When you take a look at the source code, you can see that a listener function is bind to the change events of radio buttons. + When a change event is invoked, the updateToolbars(value) function is performed. + This function assembles a JavaScript object that describes display settings and call the setDisplaySettings(settings) function of the sketcher. + Only give settings that you would like to overwrite. In this case, this is the toolbars property.

    +

    
    +		var marvinSketcherInstance;
    +
    +		$(document).ready(function handleDocumentReady (e) {
    +			// after editor in the sketch iframe is ready store its reference 
    +			// and activate controls
    +			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    +				marvinSketcherInstance = sketcherInstance;
    +				initControls();
    +			},function (error) {
    +				alert("Cannot retrieve sketcher instance from iframe:"+error);
    +			});
    +		});
    +
    +		function initControls () {
    +			// change layout
    +			$("input[name='layout-group']").change(function(e) {
    +				var s = $(this).val();
    +				updateToolbars(s);
    +			});
    +		}
    +
    +		function updateToolbars(layout) {
    +			marvinSketcherInstance.setDisplaySettings({
    +				"toolbars": layout
    +			});
    +		}

    +
    + + + diff --git a/public/marvinjs/examples/form/echo.php b/public/marvinjs/examples/form/echo.php new file mode 100644 index 000000000..45a21d5a1 --- /dev/null +++ b/public/marvinjs/examples/form/echo.php @@ -0,0 +1,12 @@ + + + + + +

    mrv field of the posted form

    + + +

    No posted form with mrv field

    + + + \ No newline at end of file diff --git a/public/marvinjs/examples/form/example-submit-form.html b/public/marvinjs/examples/form/example-submit-form.html new file mode 100644 index 000000000..5689f2a59 --- /dev/null +++ b/public/marvinjs/examples/form/example-submit-form.html @@ -0,0 +1,51 @@ + + + + + Marvin JS Example - Get SVG + + + + + + + + + +

    Marvin JS Example - Submit a form

    + +
    + +
    +
    + + +
    + + + \ No newline at end of file diff --git a/public/marvinjs/examples/images/custom-icon.png b/public/marvinjs/examples/images/custom-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..399237e95a00fe2ef8ac33ba04b396b938af3acf GIT binary patch literal 918 zcmV;H18Mw;P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D11m{HK~zXf?Nn(< z6;T*Hg)Nx2Xtt^)8HD7L6xpg)R`$%-Q_G6>Xv#K2!m`y~WmsV=K~WKHP|!j~CKa~t z5%nV~BFiXj!3-2C@67GodDH$B?MFYN1BZ`u=KJn9_kME+|MA!0`MRHMRNh-!vX(e3 zy>P;qi2}V4=S3;5h|jpg_&_hPGQL713bKWPTv3JP#Tj&3kPXOsR`ekiv`(i+$&Tle zrT-;1xs@PW-HVsL4+qO;Pub*Uw3`N@nf}NSZ?K4Oo>i7^xz$1YkpUM+$aXh|t3|(h zzo9--ix*=i7oVpWSssw1ufYaUfo=LKQ}3rfqE{f_(k^I0XHsOqg%LH*zz<_S6=5nH zq{)%Wu-Ro z#`{fJB0gZX?lg5C^$zO2y3?$3q1t2l5n-@#ut{tXEj^Txn3&j3EvlkBT~|aRhLmmL90xVjzSorvp*GseMg1Rz0rB9(EnF#(#miF7{CWL{Q9rmMVmXiY{U;PMQFidX2)Mf#Eh z$zh~}979ebHGXvyi$}Z4>ISuwPQBmo@63qej8W% spF#aSTaul~u4K3sl~%r***_293oD$BxPH&95dZ)H07*qoM6N<$g4t`Z%K!iX literal 0 HcmV?d00001 diff --git a/public/marvinjs/examples/images/qr.png b/public/marvinjs/examples/images/qr.png new file mode 100644 index 0000000000000000000000000000000000000000..78b193f975112e17ce791d247aa1975853bc4076 GIT binary patch literal 630 zcmV-+0*U>JP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0t-n*K~zXf-H<_R z6Hyd}XK*r6614?gC@6(4gc8IqtduUYXg6K7#A=CR1O;oVm`b&vPC-GW?ZP)xH6)D- ztxH{n{sMnNaG9UrZ^)v@oXNdKLfSX$9yq-F?mgdqnK;K&HK&%Vy7iWEqs~V+MC5)# z-EH8TyBnJ|dz>-DEE&P=iqiGgv(yU|y%KJEi~F~|yLjY1`TH{U>Nm}ry#=orXP6}; zxLqGI+nuG8D_A|Xj`x`m8=22A*{`T(f5c|Z9%sxjOGa?J-VTMRoLNV^-Tsoq%#sn@ zuGi-bXu^d;0czfx&F0Vkp5_I&YwdyotqGTSE_4aeDq9va^dgd#8-yPGw!ibe*W-+tZkCMT$4ZX#50QRvCs07*qoM6N<$g4sAK8UO$Q literal 0 HcmV?d00001 diff --git a/public/marvinjs/examples/images/search.png b/public/marvinjs/examples/images/search.png new file mode 100644 index 0000000000000000000000000000000000000000..02441484df2990247761d8612f5eea915257ed8f GIT binary patch literal 1125 zcmV-r1e*JaP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1NuosK~zXfy;N;X zn^hD(>wu-xWp2wv=eIL%OD1m4ZHYg0%*6QZ_^?@E1klzWO4u^!8W!xEEzktczJderP&AT-cm(HT)11K};Npv_RMp+h7Ylo^yBG&;m9{qQ)0;tz1n=XRW ziFdM8`|+E~VR%!zC68Snf@vwjrEI0`WT4@3xL3L+hh(B(Xs2@ES?QV_%v#vL!d@3z ziY(F8=8SI?0F`u24hXQqatNMFGwr#$6e$}geTNZhTGQb!>6ScpR)Sf76yD}}<6d~Q ztPBoP)fk>X4oaQ@KH%#57+_V?23WIE*?8Xh5^NQY$>JfS`csZlUGwy1odL9GUW4sS z#-!)AL;Ba>HI{!rHvIG0%*^~eB8EbL2j}MIu0$e{_vv%Bq*)$kUxX*qY)AZw&$6bu z8Nc{#gg6kVrlzpFyBpnZH+FP%;K<1B^>8@+3kmI%RLjG$74F}xtZYcNS57hcs-`Bq z>Kj9f6kA$aFgG_Bv$C?{%xE;?`1m-B+$50ua7DvggH4mg23f+k#htyoiCg} z_aLk%ZWZO`8Yen>i{9Q|k#I>DkE~;GWT^U_xE$feJd&Barz+aRXOT{(HuPEc1M_SVIn;qj}VDsbaWJpii*Tu zadELIXS&rT+DehM@vy%IJMK1Z^MKPa&m!Cd+*}0(1u>C|iVAF|=CfEVsL^O*>zu3h z_I4pmB45$4R?;p8{~9U}!vXyTO4t6#gdW|%*)FY&1JP(acF1=eLf$SmX^jus;jHTO~`LZ(%cy&vW>4z z4k9lLL2JK~{lPuL#QaoVub0 + + + + Marvin JS - Examples + + + +

    Marvin JS Examples

    + +

    Sketch

    +

    The pure editor

    +

    The editor extended with default webservices + +

    Import / export structures

    + + +

    Customization

    + + +

    Further examples

    + + +

    ImageExport

    + + + diff --git a/public/marvinjs/examples/jqueryui/dialog.html b/public/marvinjs/examples/jqueryui/dialog.html new file mode 100644 index 000000000..2ab1eb4c4 --- /dev/null +++ b/public/marvinjs/examples/jqueryui/dialog.html @@ -0,0 +1,74 @@ + + + + + Marvin JS Editor in jQuery UI Dialog + + + + + + + + + + + + + +
    + +
    + + + + + diff --git a/public/marvinjs/examples/properties/example-set-properties.html b/public/marvinjs/examples/properties/example-set-properties.html new file mode 100644 index 000000000..bc63ebe05 --- /dev/null +++ b/public/marvinjs/examples/properties/example-set-properties.html @@ -0,0 +1,298 @@ + + + + + Marvin JS Example - Molecule property + + + + + + + + + +

    Marvin JS Example - Molecule property

    + + +
    + +
    + +
      + +
    • Properties (key=value)

    • +
    • + + +
    • +
    • Feadback:

    • +
    +
    +

    This example demonstrates how to insert molecule properties into MRV source.

    +

    Marvin JS can parse molecule properties if they has been bound to the scaffold: +

    		<cml>
    +		  <MDocument>
    +		  	<MChemicalStruct>
    +		  	  <molecule molID="m1">
    +		  	  	<propertyList>
    +		  	  		<property dictRef="my property" title="my property" >
    +		  	  			<scalar>value of my property</scalar>
    +		  	  		</property>
    +		  	  	<propertyList>
    +		  	  	<atomArray> ... </atomArray>
    +		  	  	<bondArray> ... </bondArray>
    +		  	    ...
    +		  	  </molecule>
    +		  	</MChemicalStruct>
    +		  </MDocument>
    +		</cml>  
    +		
    + At single step reaction the canvas content is separated to identical reaction compounds. In this case, molecule properties + does not supported.

    +

    About the example: Draw something and submit the Get properties button. It retrieves the canvas content. The MRV source appears + in the Feadback box. If the scaffold contained molecule properties, they also appears in the Properties box.

    +

    Setup properties: Type key-value pairs (separated by "=" sign) into the Properties box. Each line represents a property (key-value pair). + Pressing the Set properties button trigger a request to retrieve the canvas content (as MRV). + When the mrv export is finished, the content of the Properties box is evaluated. Insert defined molecule properties into + the given MRV source then update the editor with the modified MRV. In the Feadback box, the modified MRV also appears.

    +
    + + + diff --git a/public/marvinjs/examples/properties/xmlindent.js b/public/marvinjs/examples/properties/xmlindent.js new file mode 100644 index 000000000..d3d635fb6 --- /dev/null +++ b/public/marvinjs/examples/properties/xmlindent.js @@ -0,0 +1,55 @@ +/** +* @author Tamas Vertse +* @Copyright 1998-2017 ChemAxon Ltd. +*/ +(function() { + + var open = /^\s*<\w+/; + var close = /(\/|<\/\w+)\s*>\s*$/; + + function xmlindent(xml) { + var lines = tokenize(xml); + var n = lines.length; + var indent = 0; + var result = ""; + for(var i = 0; i < n; i++) { + var line = lines[i]; + var diff = 0; + if(open.test(line)) { + diff += 1; + } + if(close.test(line)) { + diff -= 1; + } + if(diff == -1) { + result += leftIndent(--indent, line); + } else { + result += leftIndent(indent, line); + indent += diff; + } + } + return result; + } + + function tokenize(xml) { + var reg = /[^\]]><[^\!]/; + var end = xml.search(reg)+2; + var s = xml; + var tokens = new Array(); + while(end > 1) { + var next = s.slice(0, end); + tokens.push(next); + s = s.substring(end); + end = s.search(reg)+2; + } + tokens.push(s); + return tokens; + } + + function leftIndent(n, s) { + var result = s + '\n'; + return (n > 0)? ' '.repeat(n*2)+result : result; + } + + window.xmlindent = xmlindent; +})(); \ No newline at end of file diff --git a/public/marvinjs/examples/query/substructuresearch.html b/public/marvinjs/examples/query/substructuresearch.html new file mode 100644 index 000000000..0b332616c --- /dev/null +++ b/public/marvinjs/examples/query/substructuresearch.html @@ -0,0 +1,138 @@ + + + + +Marvin JS Substructure Search + + + + + + + + + + + +

    Marvin JS Substructure Search

    +

    Draw a query and perform a substructure search with JChem Webservices on an example data base, the target hints will be displayed on the bottom of the page. +Please, take care that Complex Query Search Webservice with valid license is required for this example.

    +

    + +
    + +
    + + +
    +
    + + diff --git a/public/marvinjs/examples/textbox/textbox.html b/public/marvinjs/examples/textbox/textbox.html new file mode 100644 index 000000000..64d63a463 --- /dev/null +++ b/public/marvinjs/examples/textbox/textbox.html @@ -0,0 +1,41 @@ + + + + + Marvin JS + + + + + +
    +

    +

    + + +

    +
    + + \ No newline at end of file diff --git a/public/marvinjs/gui/5C5DC5E8F823390618266388A9FBC038.cache.js b/public/marvinjs/gui/5C5DC5E8F823390618266388A9FBC038.cache.js new file mode 100644 index 000000000..67cf688b4 --- /dev/null +++ b/public/marvinjs/gui/5C5DC5E8F823390618266388A9FBC038.cache.js @@ -0,0 +1,7878 @@ +var $wnd = $wnd || window.parent;var __gwtModuleFunction = $wnd.gui;var $sendStats = __gwtModuleFunction.__sendStats;$sendStats('moduleStartup', 'moduleEvalStart');var $gwt_version = "2.8.2";var $strongName = '5C5DC5E8F823390618266388A9FBC038';var $gwt = {};var $doc = $wnd.document;var $moduleName, $moduleBase;function __gwtStartLoadingFragment(frag) {var fragFile = 'deferredjs/' + $strongName + '/' + frag + '.cache.js';return __gwtModuleFunction.__startLoadingFragment(fragFile);}function __gwtInstallCode(code) {return __gwtModuleFunction.__installRunAsyncCode(code);}function __gwt_isKnownPropertyValue(propName, propValue) {return __gwtModuleFunction.__gwt_isKnownPropertyValue(propName, propValue);}function __gwt_getMetaProperty(name) {return __gwtModuleFunction.__gwt_getMetaProperty(name);}var $stats = $wnd.__gwtStatsEvent ? function(a) {return $wnd.__gwtStatsEvent && $wnd.__gwtStatsEvent(a);} : null;var $sessionId = $wnd.__gwtStatsSessionId ? $wnd.__gwtStatsSessionId : null;function S(){} +function cc(){} +function Ic(){} +function _e(){} +function af(){} +function ff(){} +function gf(){} +function jf(){} +function Df(){} +function Ki(){} +function Ui(){} +function Yi(){} +function Ys(){} +function os(){} +function Uj(){} +function Wj(){} +function qp(){} +function wp(){} +function Rp(){} +function bq(){} +function zt(){} +function Kt(){} +function Vt(){} +function lu(){} +function $u(){} +function _u(){} +function Ev(){} +function Fv(){} +function yz(){} +function Uz(){} +function bA(){} +function lB(){} +function NB(){} +function OB(){} +function pD(){} +function fG(){} +function fM(){} +function aJ(){} +function RJ(){} +function SJ(){} +function FO(){} +function CR(){} +function ER(){} +function rT(){} +function CT(){} +function eU(){} +function ZV(){} +function mX(){} +function yX(){} +function XX(){} +function qZ(){} +function rZ(){} +function b_(){} +function R_(){} +function R3(){} +function P3(){} +function $3(){} +function $4(){} +function l4(){} +function V0(){} +function g2(){} +function h2(){} +function $5(){} +function a6(){} +function c6(){} +function g6(){} +function _6(){} +function o7(){} +function s7(){} +function I7(){} +function J7(){} +function M7(){} +function N7(){} +function q8(){} +function s8(){} +function u8(){} +function z8(){} +function A8(){} +function H8(){} +function L8(){} +function M8(){} +function O8(){} +function t9c(){} +function p9c(){} +function lod(){} +function Hbb(){} +function Ibb(){} +function hcb(){} +function $cb(){} +function $kb(){} +function Bgb(){} +function Dgb(){} +function Egb(){} +function Tgb(){} +function fjb(){} +function gjb(){} +function njb(){} +function gmb(){} +function hmb(){} +function imb(){} +function kmb(){} +function rmb(){} +function _qb(){} +function tub(){} +function txb(){} +function cxb(){} +function lwb(){} +function fzb(){} +function OAb(){} +function aBb(){} +function QBb(){} +function SBb(){} +function ECb(){} +function FCb(){} +function XCb(){} +function YCb(){} +function ZCb(){} +function $Cb(){} +function _Eb(){} +function iFb(){} +function kFb(){} +function DFb(){} +function wGb(){} +function RGb(){} +function jJb(){} +function uKb(){} +function wLb(){} +function wMb(){} +function vMb(){} +function xMb(){} +function yMb(){} +function zMb(){} +function AMb(){} +function BMb(){} +function CMb(){} +function RMb(){} +function SMb(){} +function TMb(){} +function UMb(){} +function VMb(){} +function WMb(){} +function iNb(){} +function jNb(){} +function oNb(){} +function pNb(){} +function uNb(){} +function vNb(){} +function BNb(){} +function CNb(){} +function DNb(){} +function oPb(){} +function pPb(){} +function qPb(){} +function uPb(){} +function ZPb(){} +function rQb(){} +function GQb(){} +function SQb(){} +function UQb(){} +function qSb(){} +function RUb(){} +function $0b(){} +function $9b(){} +function y9b(){} +function P9b(){} +function I7b(){} +function Bdc(){} +function Agc(){} +function yic(){} +function Kic(){} +function _nc(){} +function goc(){} +function ooc(){} +function roc(){} +function woc(){} +function zoc(){} +function Coc(){} +function Foc(){} +function Moc(){} +function Soc(){} +function Voc(){} +function Yoc(){} +function apc(){} +function dpc(){} +function gpc(){} +function jpc(){} +function mpc(){} +function ppc(){} +function spc(){} +function vpc(){} +function ypc(){} +function Hpc(){} +function Kpc(){} +function Opc(){} +function Rpc(){} +function Upc(){} +function Zpc(){} +function aqc(){} +function dqc(){} +function Osc(){} +function mtc(){} +function stc(){} +function utc(){} +function vtc(){} +function Ytc(){} +function aad(){} +function dad(){} +function fad(){} +function had(){} +function hdd(){} +function ndd(){} +function pdd(){} +function Fdd(){} +function Gdd(){} +function Ndd(){} +function Odd(){} +function Vdd(){} +function Abd(){} +function Ebd(){} +function Sbd(){} +function ucd(){} +function uid(){} +function tid(){} +function kfd(){} +function mfd(){} +function Xjd(){} +function dkd(){} +function cmd(){} +function Trd(){} +function esd(){} +function hsd(){} +function isd(){} +function jsd(){} +function Gsd(){} +function vud(){} +function Bud(){} +function Cud(){} +function Dud(){} +function zvd(){} +function Qvd(){} +function Vvd(){} +function Wvd(){} +function Xvd(){} +function vwd(){} +function Fwd(){} +function txd(){} +function tMd(){} +function wMd(a){} +function lOd(a,b){} +function bF(){aF()} +function eF(){dF()} +function hF(){gF()} +function nF(){mF()} +function ae(){_d()} +function Ci(){Bi()} +function Qw(){Pw()} +function J3(){I3()} +function m6(){k6()} +function teb(){reb()} +function HGb(){FGb()} +function u7b(){t7b()} +function ckc(){ujc()} +function okc(){ujc()} +function akd(){Vjd()} +function $jd(){Vjd()} +function Xcd(){Vcd()} +function hcd(){gcd()} +function xcd(){wcd()} +function Ycd(){Icd()} +function gkd(){fkd()} +function iPd(){Ttd()} +function OPd(){Ttd()} +function Hic(a){Gic()} +function DNd(a,b,c){} +function _f(a,b){a.U=b} +function xg(a,b){a.S=b} +function El(a,b){a.i=b} +function Fl(a,b){a.f=b} +function Gl(a,b){a.j=b} +function Jl(a,b){a.p=b} +function Kl(a,b){a.o=b} +function Ll(a,b){a.q=b} +function En(a,b){a.a=b} +function Uo(a,b){a.b=b} +function Vo(a,b){a.d=b} +function Vz(a,b){a.c=b} +function Pu(a,b){a.n=b} +function vH(a,b){a.k=b} +function s5(a,b){a.e=b} +function ENd(a,b,c,d){} +function Lcd(a){jbd(a)} +function Ed(a){this.a=a} +function Fd(a){this.a=a} +function Hd(a){this.a=a} +function Td(a){this.a=a} +function ze(a){this.a=a} +function Me(a){this.a=a} +function Ne(a){this.a=a} +function Ve(a){this.a=a} +function Af(a){this.a=a} +function gh(a){this.a=a} +function Mh(a){this.a=a} +function Oh(a){this.a=a} +function Uh(a){this.a=a} +function Xh(a){this.a=a} +function Yh(a){this.a=a} +function _h(a){this.a=a} +function ei(a){this.a=a} +function si(a){this.a=a} +function Si(a){this.a=a} +function Ti(a){this.a=a} +function Vi(a){this.a=a} +function Xi(a){this.a=a} +function ej(a){this.a=a} +function fj(a){this.a=a} +function qj(a){this.a=a} +function rj(a){this.a=a} +function Mj(a){this.a=a} +function tj(a){this.b=a} +function el(a){this.b=a} +function em(a){this.a=a} +function fm(a){this.a=a} +function lm(a){this.a=a} +function Nm(a){this.a=a} +function Om(a){this.a=a} +function Ok(a){this.a=a} +function hk(a){this.a=a} +function Uk(a){this.a=a} +function Pm(a){this.a=a} +function On(a){this.a=a} +function Qn(a){this.a=a} +function Bo(a){this.a=a} +function Co(a){this.a=a} +function Do(a){this.a=a} +function Eo(a){this.a=a} +function Fo(a){this.a=a} +function Go(a){this.a=a} +function Ho(a){this.a=a} +function Io(a){this.a=a} +function Jo(a){this.a=a} +function Ko(a){this.a=a} +function ap(a){this.a=a} +function bp(a){this.a=a} +function cp(a){this.a=a} +function dp(a){this.a=a} +function ep(a){this.a=a} +function Lp(a){this.a=a} +function kq(a){this.a=a} +function nq(a){this.a=a} +function ks(a){this.a=a} +function $s(a){this.a=a} +function ss(a){this.b=a} +function Uu(a){this.b=a} +function Xu(a){this.a=a} +function Yu(a){this.a=a} +function Yt(a){this.a=a} +function jt(a){this.a=a} +function vt(a){this.a=a} +function Dt(a){this.a=a} +function vv(a){this.a=a} +function ww(a){this.a=a} +function xw(a){this.a=a} +function $w(a){this.a=a} +function Yz(a){this.a=a} +function _B(a){this.a=a} +function QB(a){this.b=a} +function pA(a){this.o=a} +function vC(a){this.a=a} +function VC(a){this.a=a} +function WC(a){this.a=a} +function XC(a){this.a=a} +function yD(a){this.a=a} +function jD(a){this.j=a} +function ID(a){this.c=a} +function IE(a){this.a=a} +function SE(a){this.a=a} +function iF(a){this.a=a} +function JF(a){this.a=a} +function lG(a){this.a=a} +function xG(a){this.a=a} +function iI(a){this.a=a} +function gJ(a){this.a=a} +function GK(a){this.a=a} +function bM(a){this.a=a} +function qN(a){this.a=a} +function rN(a){this.a=a} +function sN(a){this.a=a} +function tN(a){this.a=a} +function wN(a){this.a=a} +function ON(a){this.b=a} +function aO(a){this.a=a} +function qP(a){this.a=a} +function vP(a){this.a=a} +function yP(a){this.a=a} +function cP(a){this.c=a} +function wS(a){this.a=a} +function qT(a){this.a=a} +function TT(a){this.a=a} +function hW(a){this.a=a} +function uW(a){this.a=a} +function lX(a){this.a=a} +function YX(a){this.a=a} +function rX(a){this.b=a} +function pZ(a){this.a=a} +function yZ(a){this.a=a} +function R$(a){this.a=a} +function W$(a){this.a=a} +function c_(a){this.a=a} +function d0(a){this.a=a} +function i2(a){this.a=a} +function r3(a){this.a=a} +function N3(a){this.a=a} +function b6(a){this.a=a} +function w9(a){this.a=a} +function b5(){this.a=''} +function es(){Ur(this)} +function fs(){Ur(this)} +function Nw(){yw(this)} +function By(){kx(this)} +function uMd(){ug(this)} +function XMd(){sB(this)} +function $Md(){aC(this)} +function kNd(){AJ(this)} +function tNd(){PO(this)} +function uNd(){TO(this)} +function vNd(){XO(this)} +function NOd(){return 1} +function ROd(){return 0} +function pab(a){this.a=a} +function Gbb(a){this.a=a} +function xbb(a){this.c=a} +function Ffb(a){this.c=a} +function pfb(a){this.a=a} +function Bcb(a){this.a=a} +function gcb(a){this.b=a} +function edb(a){this.a=a} +function kdb(a){this.a=a} +function ldb(a){this.a=a} +function Peb(a){this.a=a} +function bgb(a){this.a=a} +function fgb(a){this.a=a} +function Agb(a){this.a=a} +function Lhb(a){this.a=a} +function aib(a){this.a=a} +function Mkb(a){this.a=a} +function Nkb(a){this.a=a} +function _kb(a){this.a=a} +function _lb(a){this.a=a} +function Xlb(a){this.a=a} +function Ylb(a){this.a=a} +function Zlb(a){this.a=a} +function $lb(a){this.a=a} +function amb(a){this.a=a} +function bmb(a){this.a=a} +function dmb(a){this.a=a} +function fmb(a){this.a=a} +function omb(a){this.a=a} +function zmb(a){this.a=a} +function Amb(a){this.a=a} +function nnb(a){this.a=a} +function Mnb(a){this.a=a} +function Nnb(a){this.a=a} +function Mob(a){this.a=a} +function Sob(a){this.a=a} +function Yob(a){this.a=a} +function upb(a){this.a=a} +function Jpb(a){this.a=a} +function Kpb(a){this.a=a} +function Lpb(a){this.a=a} +function Mpb(a){this.a=a} +function cqb(a){this.a=a} +function dqb(a){this.a=a} +function lqb(a){this.a=a} +function sqb(a){this.a=a} +function uqb(a){this.a=a} +function Tqb(a){this.a=a} +function Wqb(a){this.a=a} +function Zqb(a){this.a=a} +function arb(a){this.a=a} +function trb(a){this.a=a} +function yub(a){this.a=a} +function Oub(a){this.a=a} +function Vub(a){this.a=a} +function Mvb(a){this.a=a} +function Tvb(a){this.a=a} +function Yvb(a){this.a=a} +function _vb(a){this.a=a} +function cwb(a){this.a=a} +function owb(a){this.a=a} +function sxb(a){this.a=a} +function uxb(a){this.a=a} +function Cxb(a){this.a=a} +function Dxb(a){this.a=a} +function Oxb(a){this.a=a} +function tyb(a){this.a=a} +function Hyb(a){this.a=a} +function szb(a){this.a=a} +function tzb(a){this.a=a} +function Azb(a){this.a=a} +function Dzb(a){this.a=a} +function Izb(a){this.a=a} +function Wzb(a){this.a=a} +function bAb(a){this.a=a} +function cAb(a){this.a=a} +function KAb(a){this.a=a} +function SAb(a){this.a=a} +function uBb(a){this.a=a} +function MBb(a){this.a=a} +function eCb(a){this.a=a} +function lCb(a){this.a=a} +function DCb(a){this.a=a} +function RCb(a){this.a=a} +function cDb(a){this.a=a} +function dDb(a){this.a=a} +function rDb(a){this.a=a} +function uDb(a){this.a=a} +function yDb(a){this.a=a} +function zDb(a){this.a=a} +function ADb(a){this.a=a} +function DDb(a){this.a=a} +function jEb(a){this.a=a} +function qEb(a){this.a=a} +function rEb(a){this.a=a} +function SEb(a){this.a=a} +function XEb(a){this.a=a} +function YEb(a){this.a=a} +function cFb(a){this.a=a} +function nFb(a){this.a=a} +function PFb(a){this.a=a} +function RFb(a){this.a=a} +function dGb(a){this.a=a} +function gGb(a){this.a=a} +function iGb(a){this.a=a} +function jGb(a){this.a=a} +function qGb(a){this.a=a} +function uGb(a){this.a=a} +function yGb(a){this.a=a} +function CGb(a){this.a=a} +function VGb(a){this.a=a} +function WGb(a){this.a=a} +function XGb(a){this.a=a} +function NGb(a){this.b=a} +function fHb(a){this.a=a} +function gHb(a){this.a=a} +function hHb(a){this.a=a} +function iHb(a){this.a=a} +function jHb(a){this.a=a} +function mHb(a){this.a=a} +function pHb(a){this.a=a} +function qHb(a){this.a=a} +function tHb(a){this.a=a} +function CHb(a){this.a=a} +function DHb(a){this.a=a} +function EHb(a){this.a=a} +function CIb(a){this.a=a} +function DIb(a){this.a=a} +function JIb(a){this.a=a} +function tJb(a){this.a=a} +function tKb(a){this.c=a} +function AKb(a){this.a=a} +function BKb(a){this.a=a} +function FKb(a){this.c=a} +function SKb(a){this.c=a} +function WKb(a){this.a=a} +function mLb(a){this.a=a} +function qLb(a){this.a=a} +function rLb(a){this.a=a} +function uLb(a){this.a=a} +function ELb(a){this.a=a} +function RLb(a){this.a=a} +function gLb(a){this.b=a} +function ZNb(a){this.a=a} +function tOb(a){this.a=a} +function OPb(a){this.a=a} +function QPb(a){this.a=a} +function iQb(a){this.a=a} +function kQb(a){this.a=a} +function lQb(a){this.a=a} +function tQb(a){this.a=a} +function vQb(a){this.a=a} +function wQb(a){this.a=a} +function xQb(a){this.a=a} +function yQb(a){this.a=a} +function zQb(a){this.a=a} +function AQb(a){this.a=a} +function BQb(a){this.a=a} +function CQb(a){this.a=a} +function DQb(a){this.a=a} +function EQb(a){this.a=a} +function FQb(a){this.a=a} +function HQb(a){this.a=a} +function IQb(a){this.a=a} +function MQb(a){this.a=a} +function NQb(a){this.a=a} +function OQb(a){this.a=a} +function pRb(a){this.a=a} +function TRb(a){this.a=a} +function _Rb(a){this.a=a} +function dSb(a){this.a=a} +function eSb(a){this.a=a} +function lSb(a){this.a=a} +function mSb(a){this.a=a} +function tSb(a){this.a=a} +function ASb(a){this.a=a} +function GSb(a){this.a=a} +function PSb(a){this.a=a} +function TSb(a){this.a=a} +function ZSb(a){this.a=a} +function hUb(a){this.a=a} +function iUb(a){this.a=a} +function yUb(a){this.a=a} +function zUb(a){this.a=a} +function DUb(a){this.a=a} +function QUb(a){this.a=a} +function UWb(a){this.a=a} +function CXb(a){this.a=a} +function wRb(){this.a=20} +function w$b(a){this.c=a} +function g$b(){d$b(this)} +function jlb(){hlb(this)} +function olb(){mlb(this)} +function Lmb(){Jmb(this)} +function Rmb(){Pmb(this)} +function Zmb(){Wmb(this)} +function _nb(){$nb(this)} +function H1b(a){a.b=null} +function M4b(a){this.a=a} +function b6b(a){this.a=a} +function C6b(a){this.a=a} +function N7b(a){this.a=a} +function Q7b(a){this.a=a} +function Y8b(a){this.a=a} +function rdc(a){this.a=a} +function zdc(a){this.a=a} +function Edc(a){this.a=a} +function Ldc(a){this.a=a} +function Sdc(a){this.a=a} +function Dic(a){this.a=a} +function Eic(a){this.a=a} +function zpc(a){this.a=a} +function Wpc(a){this.a=a} +function gqc(a){this.a=a} +function jqc(a){this.a=a} +function Fqc(a){this.a=a} +function _qc(a){this.a=a} +function _hc(a){this.b=a} +function drc(a){this.a=a} +function duc(a){this.a=a} +function Ptc(a){this.a=a} +function Ttc(a){this.a=a} +function Ztc(a){this.a=a} +function tad(a){this.a=a} +function Cbd(a){this.a=a} +function Pdd(a){this.a=a} +function led(a){this.a=a} +function xed(a){this.a=a} +function Nfd(a){this.a=a} +function rgd(a){this.a=a} +function wgd(a){this.a=a} +function Ygd(a){this.a=a} +function $gd(a){this.a=a} +function _gd(a){this.a=a} +function jgd(a){this.b=a} +function xhd(a){this.a=a} +function Ahd(a){this.a=a} +function Bhd(a){this.a=a} +function Fid(a){this.a=a} +function Gid(a){this.a=a} +function Iid(a){this.a=a} +function Pid(a){this.a=a} +function mjd(a){this.a=a} +function Ljd(a){this.c=a} +function ikd(a){this.a=a} +function Kkd(a){this.a=a} +function Yld(a){this.a=a} +function imd(a){this.a=a} +function umd(a){this.a=a} +function gnd(a){this.a=a} +function Sqd(a){this.a=a} +function Zqd(a){this.d=a} +function ard(a){this.a=a} +function brd(a){this.a=a} +function drd(a){this.a=a} +function erd(a){this.a=a} +function jrd(a){this.a=a} +function krd(a){this.a=a} +function lrd(a){this.a=a} +function Srd(a){this.a=a} +function Frd(a){this.c=a} +function xsd(a){this.c=a} +function ksd(a){this.a=a} +function Bsd(a){this.a=a} +function Csd(a){this.a=a} +function Hsd(a){this.a=a} +function Wsd(a){this.a=a} +function osd(a){this.b=a} +function qsd(a){this.b=a} +function vtd(a){this.a=a} +function gud(a){this.a=a} +function Kwd(a){this.a=a} +function Dpc(){this.a={}} +function hm(a){gm(this,a)} +function GMd(a){fp(this)} +function APd(){Yqd(this)} +function QPd(){return ''} +function HNd(a){return 0} +function zOd(a){return a} +function GOd(a,b,c,d,e){} +function Ag(a,b){yg(b,a)} +function Ww(a){Yw(a,a.d)} +function YMd(){YD(this.a)} +function ZMd(){WD(this.a)} +function _Md(){rC(this.a)} +function DOd(){Lg(this.a)} +function Wp(){this.a=Vp()} +function oW(){this.b=null} +function TW(a){a.b=new is} +function DS(a){a.a=new es} +function iV(a){a.e=new es} +function He(a,b){a.a.nb(b)} +function te(a,b){Hl(a.a,b)} +function we(a,b){fg(a.a,b)} +function Sd(a,b){Jd(a.a,b)} +function zf(a,b){vf(a.a,b)} +function Cf(a,b){wf(a.a,b)} +function Bf(a,b){zf(a.b,b)} +function Ck(a,b){Hk(a.b,b)} +function wk(a,b){Lr(a.a,b)} +function FA(a,b){JA(a.a,b)} +function IL(a,b){ML(a.a,b)} +function mN(a,b){yN(a.e,b)} +function yN(a,b){vN(a.b,b)} +function BN(a,b){kN(a.b,b)} +function iS(a,b){Ji(a.b,b)} +function W_(a,b){lt(a.b,b)} +function V_(a,b){lt(a.a,b)} +function u2(a,b){Gl(a.a,b)} +function Mk(a,b){a.a.Mc(b)} +function Mub(a){a.d=Eub(a)} +function ijc(b,a){b.id=a} +function alc(b,a){b.alt=a} +function clc(b,a){b.src=a} +function pjc(b,a){b.href=a} +function Pgc(b,a){b.font=a} +function hoc(b,a){b.rows=a} +function I8c(a){return a.e} +function EOd(){return RAd} +function JOd(){return mJd} +function KOd(){return pJd} +function BOd(a){return a.o} +function INd(a){return 7.5} +function FNd(){return true} +function WMd(){return this} +function UMd(){return null} +function kuc(){return null} +function Zd(){Yd(this,null)} +function mNd(a){QK(this,a)} +function nNd(a){RK(this,a)} +function xMd(a){Hi(this.a)} +function EPd(){this.a.Tc()} +function nf(){this.a=new xf} +function al(){this.a=new es} +function Ik(){this.b=new Yi} +function is(){es.call(this)} +function mt(){es.call(this)} +function ti(){Tc.call(this)} +function $y(){By.call(this)} +function LA(){KA.call(this)} +function MA(){KA.call(this)} +function NA(){KA.call(this)} +function q2(){M1.call(this)} +function v2(){M1.call(this)} +function LV(){this.a=new is} +function wB(){this.a=new es} +function OJ(){this.a=new es} +function Y6(){this.a=new es} +function E7(){this.a=new es} +function O7(){this.j=new es} +function B4(a){this.a=f2(a)} +function j6(a){this.a=f2(a)} +function ns(a){return ms(a)} +function Ws(a){return Xs(a)} +function zm(a,b){oed(a.d,b)} +function Hr(a,b){Kqd(a.b,b)} +function K1(a,b){wVb(a.a,b)} +function s2(a,b){CWb(a.a,b)} +function Ccb(a,b){Wr(a.a,b)} +function sdb(a,b){Wr(a.r,b)} +function udb(a,b){Wr(a.v,b)} +function Sdb(a,b){_r(a.w,b)} +function K4b(a,b){_r(a.b,b)} +function ERb(a,b){Wr(a.b,b)} +function xwb(a,b){Ht(a.b,b)} +function fDb(a,b){rl(a.a,b)} +function nIb(a,b){zw(a.o,b)} +function Ldd(a,b){Cg(a.p,b)} +function Ged(a,b){Eg(a.b,b)} +function zKb(a,b){a.a.ob(b)} +function jid(a,b){a.a.Mo(b)} +function rjc(b,a){b.width=a} +function aXb(a){_Wb(this,a)} +function K8(){y8.call(this)} +function N8(){y8.call(this)} +function P8(){y8.call(this)} +function LPd(a){wud(this,a)} +function Ihc(a){Hhc=a;eic()} +function Ghc(){this.a=Ohc()} +function Qtd(){this.a=Ltd()} +function Hoc(){this.c=++Goc} +function Sb(){this.a=new ntd} +function ak(){this.a=new ltd} +function It(){this.a=new ltd} +function KA(){this.a=new ltd} +function yu(){this.a=new wtd} +function FQ(a){EQ();this.a=a} +function cf(a){bf();return a} +function aNd(a){return null} +function GNd(a){return true} +function xNd(){return false} +function y8(){this.a=new ltd} +function FR(){this.a=new yod} +function ocb(){this.a=new es} +function Dcb(){this.a=new es} +function $fb(){this.a=new es} +function Wfb(a,b){Zfb(b,a.a)} +function Xfb(a,b){Zfb(b,a.b)} +function Qdb(a,b){Leb(a.a,b)} +function emb(a,b){zub(a.a,b)} +function Kjb(a,b){yqd(a.a,b)} +function _gb(a,b){ptd(a.d,b)} +function xkb(a,b){Bkb(a.c,b)} +function bvb(a,b){ivb(a.b,b)} +function Bxb(a,b){wxb(a.a,b)} +function oH(a,b){yQ(a.o.f,b)} +function lO(a,b){yQ(a.c.f,b)} +function Rn(a,b){a.a.O.Nb(b)} +function gDb(a,b){Ugd(a.a,b)} +function qDb(a,b){nDb(a.a,b)} +function REb(a,b){elc(a.a,b)} +function QHb(a,b){ptd(a.a,b)} +function pLb(a,b){zKb(a.a,b)} +function wSb(a,b){HSb(a.a,b)} +function xSb(a,b){JSb(a.b,b)} +function ySb(a,b){JSb(a.a,b)} +function gD(a){yE(bD(a),a.b)} +function OL(a){a.a&&(a.b=-1)} +function bXb(a,b){odb(a.a,b)} +function M3b(a,b){a.b=mnd(b)} +function Ivb(){this.a=new es} +function m9b(){this.a=new es} +function bDb(){this.a=new tp} +function pDb(){this.c=new is} +function F$b(){this.a=new By} +function bdd(){this.b=new es} +function Bad(){Bad=p9c;Had()} +function Phd(){Phd=p9c;Thd()} +function $yb(){Mn.call(this)} +function CBb(){Mn.call(this)} +function ICb(){Tc.call(this)} +function mQb(){Tc.call(this)} +function LSb(){Tc.call(this)} +function Sjd(){Sjd=p9c;Rjd()} +function vMd(){Ch(this,null)} +function _ud(){this.a=new es} +function Cwd(a,b){a.length=b} +function qjc(b,a){b.height=a} +function Cpc(a,b,c){a.a[b]=c} +function Qdc(a,b){ejc(b,a.a)} +function phd(a,b){Eid(b,a.e)} +function Aid(a,b){HEb(a.a,b)} +function Bid(a,b){IEb(a.a,b)} +function EMd(a){Hi(this.a.f)} +function FMd(a){Hi(this.a.k)} +function gNd(a){Jl(this,a.c)} +function wNd(a){AP(this,a.c)} +function fNd(a){return false} +function CNd(){return this.e} +function LNd(){return this.f} +function NNd(){return this.r} +function AMd(){return this.a} +function BMd(){return this.d} +function IMd(){return this.n} +function JMd(){return this.i} +function KMd(){return this.b} +function VMd(){return this.c} +function aOd(){return this.k} +function FOd(){return this.q} +function OOd(){return this.o} +function POd(){return this.p} +function QOd(){return this.s} +function SOd(){return this.u} +function UOd(){return this.C} +function VOd(){return this.t} +function cPd(){return this.j} +function $hd(a){return ':'+a} +function nOd(a){return a.$()} +function As(a,b){return a?a:b} +function XNd(a){Wr(this.a,a)} +function LOd(a){Bf(this.a,a)} +function oOd(a){Ii(this.a,1)} +function HOd(a){this.a.ob(a)} +function IOd(a){this.a.tb(a)} +function vd(a){this.gb(Cyd,a)} +function AC(a){uVb(a.c.C,a.a)} +function Lt(a,b){mqc(a.b,b,a)} +function KE(a,b){b.vm(a._l())} +function elb(){blb.call(this)} +function xgb(){$fb.call(this)} +function EKb(){qKb.call(this)} +function A1b(){uTb.call(this)} +function dbb(){this.a=new yod} +function ccb(){this.a=new ltd} +function xcb(){this.a=new ltd} +function Tib(){this.a=new ltd} +function Hkb(){this.a=new ltd} +function mub(){this.a=new ltd} +function JKb(){this.a=new ltd} +function eJb(){this.a=new _td} +function I9c(){this.a=new yod} +function Iqc(){this.a=new Cqc} +function Pbd(){this.b=new Rbd} +function Sgc(b,a){b.lineCap=a} +function elc(b,a){b.checked=a} +function hlc(b,a){b.htmlFor=a} +function Mgc(b,a){b.rotate(a)} +function zic(a){return a.Gc()} +function mec(a){En(this,a.id)} +function Ioc(){Hoc.call(this)} +function ged(){wdc.call(this)} +function Ned(){wdc.call(this)} +function rhd(){shd.call(this)} +function wkd(){qkd.call(this)} +function ykd(){qkd.call(this)} +function mmd(){kmd.call(this)} +function mtd(){Oqd.call(this)} +function ntd(){Oqd.call(this)} +function ltd(){Nqd.call(this)} +function kmd(){mQb.call(this)} +function and(){mQb.call(this)} +function dnd(){mQb.call(this)} +function tnd(){mQb.call(this)} +function Fod(){mQb.call(this)} +function Isd(){mQb.call(this)} +function Msd(){mQb.call(this)} +function Eud(){mQb.call(this)} +function wtd(){Nqd.call(this)} +function std(){this.a=new ltd} +function ttd(){this.a=new mtd} +function _vd(){this.a=new ltd} +function Nvd(){this.a=new rvd} +function eNd(a){Oe(a.a.p,a.b)} +function sMd(a){return a.ab()} +function yPd(a){return Nld(a)} +function IPd(a){return this.a} +function PNd(a,b){return null} +function Hnd(a,b){return a===b} +function dg(a,b){hjc(a.xb(),b)} +function _g(a,b){Eg(a,b);Tg(a)} +function Jg(){Jg=p9c;Ig=E8c()} +function Xj(){Xj=p9c;Tj=new Wj} +function rp(){rp=p9c;op=new qp} +function xp(){xp=p9c;up=new wp} +function Up(){Up=p9c;Pp=new Rp} +function dq(){dq=p9c;_p=new bq} +function ct(){this.b=(gt(),ft)} +function ul(a){tl.call(this,a)} +function Uc(a){Rc.call(this,a)} +function Wc(a){Uc.call(this,a)} +function Yc(a){Wc.call(this,a)} +function Ce(a){ze.call(this,a)} +function Ge(a){ze.call(this,a)} +function js(a){gs.call(this,a)} +function $t(a){Yt.call(this,a)} +function mu(a){Mt.call(this,a)} +function Cu(a){Mt.call(this,a)} +function Cy(a){by.call(this,a)} +function mOd(a){xSb(this.a,a)} +function eG(a){a.b=true;a.ic()} +function oA(a){a.Wf();a.n.Uf()} +function oG(a,b){a.a.a.a.kg(b)} +function mG(a,b){a.a.a.a.fg(b)} +function nG(a,b){a.a.a.a.gg(b)} +function pG(a,b){a.a.a.a.hg(b)} +function qG(a,b){a.a.a.a.lg(b)} +function rG(a,b){a.a.a.a.mg(b)} +function uG(a,b){a.a.a.a.ng(b)} +function wG(a,b){a.a.a.a.og(b)} +function Yr(a,b){return a.a[b]} +function YO(a){$G.call(this,a)} +function QO(a){$G.call(this,a)} +function dH(a){$G.call(this,a)} +function dP(a){$G.call(this,a)} +function cJ(a){$G.call(this,a)} +function MK(a){$G.call(this,a)} +function DM(a){$G.call(this,a)} +function KN(a){$G.call(this,a)} +function NW(a){return JW(CW,a)} +function OW(a){return JW(DW,a)} +function PW(a){return JW(EW,a)} +function o6(a,b){!!b&&N2b(a,b)} +function p6(a,b){!!b&&K2b(a,b)} +function $W(a,b){ZW(a,b.a,b.b)} +function F$(a,b){b.uf(a.a,a.b)} +function Xub(a,b){mqc(a.a,b,a)} +function jQ(a,b,c){qQ(a.a,b,c)} +function aGb(a,b){HEb(a.a.a,b)} +function fGb(a,b,c){eGb(a,b,c)} +function yHb(a,b){Ugd(a.e,b.k)} +function RKb(a,b){a.a=b;QKb(a)} +function SVb(a,b){vqc(a.b,b,a)} +function Q2b(a,b){!!b&&(a.k=b)} +function Owb(a){!!a.b&&Lg(a.b)} +function O3b(a,b){a.c=b;vTb(a)} +function Q8(a){S7.call(this,a)} +function i7b(a){h7b();this.a=a} +function l7b(a){k7b();this.a=a} +function o7b(a){n7b();this.a=a} +function r7b(a){q7b();this.a=a} +function x7b(a){w7b();this.a=a} +function A7b(a){z7b();this.a=a} +function D7b(a){C7b();this.a=a} +function dib(a){cib();this.a=a} +function zbc(a){wbc();this.a=a} +function Tgc(b,a){b.lineJoin=a} +function glc(b,a){b.disabled=a} +function ljc(b,a){b.tabIndex=a} +function Fjc(a,b,c){a.add(b,c)} +function Cjd(a,b){Fjd(a,b,a.c)} +function Pud(a){Lud();this.a=a} +function yMd(a){Ii(this.a,500)} +function CMd(a){this.a.c=false} +function dvd(a){a.b=null;a.c=0} +function DMd(){return this.b.a} +function KNd(){return this.c.a} +function MNd(){return this.c.c} +function UNd(){return this.a.a} +function rNd(){return YM(this)} +function BNd(){return pS(this)} +function ZNd(){return 'M RBC'} +function $Nd(){return 'M SUB'} +function _Nd(){return 'M UNS'} +function vOd(){return this.b.b} +function MOd(){return this.a.c} +function _Od(){return !!this.b} +function Ot(){Ot=p9c;Nt=new Vt} +function yt(){yt=p9c;xt=new zt} +function NS(){NS=p9c;MS=new rT} +function lW(){lW=p9c;kW=new oW} +function xX(){xX=p9c;wX=new yX} +function a_(){a_=p9c;_$=new b_} +function _d(){_d=p9c;$d=new Hoc} +function ce(){ce=p9c;be=new Hoc} +function Bi(){Bi=p9c;Ai=new Hoc} +function Pw(){Pw=p9c;Ow=new Ioc} +function aF(){aF=p9c;_E=new Hoc} +function dF(){dF=p9c;cF=new Hoc} +function gF(){gF=p9c;fF=new Ioc} +function mF(){mF=p9c;lF=new Hoc} +function xgd(){xgd=p9c;new ltd} +function EQ(){EQ=p9c;DQ=new Hoc} +function bC(a){this.a=new gs(a)} +function gx(a){Ry(a.b);a.a=null} +function U$(a,b){return a.a=b,a} +function Rf(a){return abd(),a.U} +function LZ(a){return GX(a,a.i)} +function yn(a){return a.b?a.c:0} +function vN(a,b){a.b=true;a.c=b} +function Q1(a,b){a.n=_0b(b,a.n)} +function V1(a,b){a.n=c1b(b,a.n)} +function VNd(a,b){s3(this,a,b)} +function l9(a,b){f9(b)&&m9(a,b)} +function o9(a,b){g9(b)&&p9(a,b)} +function o5(a,b){Wr(a.a,mnd(b))} +function Rb(a,b,c){Hqd(a.a,b,c)} +function Vr(a,b,c){zwd(a.a,b,c)} +function Pt(a,b,c){Ytd(a.c,b,c)} +function aU(a,b,c){Qsd(a.b,b,c)} +function _Fb(a,b){YFb(this,a,b)} +function $Jb(a){Yt.call(this,a)} +function fab(a){S7.call(this,a)} +function nQb(a){Uc.call(this,a)} +function MSb(a){Uc.call(this,a)} +function k0b(a){P1.call(this,a)} +function YPb(a){TPb();Wr(SPb,a)} +function v5b(a){O5b(a.a,r5b(a))} +function pxb(a){Lg(a.a);xm(a.a)} +function BWb(a,b){a.d=b;Rt(b.a)} +function d$b(a){a.b=(p$b(),n$b)} +function o9b(a){!!a&&(this.a=a)} +function Roc(a){!!a.a&&slc(a.a)} +function arc(a){Uc.call(this,a)} +function r7(a){this.c=new ss(a)} +function _5(a){this.a=new H7(a)} +function UEb(){this.a=Nkc($doc)} +function Xhd(){Zhd.call(this,2)} +function bmd(a){Uc.call(this,a)} +function _md(a){Rc.call(this,a)} +function vqd(a){Uc.call(this,a)} +function Ogc(b,a){b.fillStyle=a} +function Ugc(b,a){b.lineWidth=a} +function DPb(b,a){b[b.length]=a} +function qMd(a){return this===a} +function rrd(a){return a.b==a.c} +function jvd(a){return !!a&&a.b} +function WNd(){return kcc(),Wbc} +function YNd(){return kcc(),Tbc} +function uOd(){return kcc(),hcc} +function HPd(){return Xrd(),Wrd} +function rMd(){return Zwd(this)} +function MPd(){return V(this.a)} +function Jnd(a,b){return b.Ep(a)} +function Oe(a,b){Se(a.a,b);Qe(a)} +function $f(a,b){_f(a,(abd(),b))} +function Jad(a,b){qjc(a.Un(),b)} +function Kad(a,b){rjc(a.Un(),b)} +function Lgd(a,b){Tgd(a,b,b,-1)} +function $Qb(a,b,c){Xz(a.b,b,c)} +function mm(a,b){Eg(a.q,b);Tg(a)} +function Bwd(a,b){a.splice(b,1)} +function No(a,b){Oo((abd(),a),b)} +function sOd(a){pxb(new qxb(a))} +function sk(a){this.a=new Srd(a)} +function gi(a){this.a=a;this.b=0} +function kt(a){this.a=a;this.b=0} +function Rm(a){this.b=a;this.a=0} +function Whc(){Whc=p9c;Vhc=$wnd} +function YJ(a){this.b=a;this.a=0} +function Pj(a){a.a.yc()||jj(a.a)} +function GG(a,b){a.c=b;s5(a.c,a)} +function Su(a,b){a.w=b;a.w.If(a)} +function WG(a,b){a.rg(b);a.sg(b)} +function VZ(a,b){a.si(b,a.c,a.a)} +function zQ(a,b){vqc(a.a,b,null)} +function M4(a,b){Jqd(a.a,mnd(b))} +function bcb(a,b,c){Iqd(a.a,b,c)} +function whb(a,b,c){Hqd(a.e,b,c)} +function Tt(a,b,c){St(a,b).Sd(c)} +function vu(a,b,c){xu(a,b).od(c)} +function OU(a,b,c){a.f+=b;a.i+=c} +function Jjb(a,b,c){Psd(a.a,b,c)} +function Hjb(a){a.a=new Tsd(qLc)} +function Vib(a){Ffb.call(this,a)} +function Xib(a){Ffb.call(this,a)} +function flb(a){clb.call(this,a)} +function Lm(){ol();Vl.call(this)} +function Am(){Jg();Bm.call(this)} +function Hj(){hj();Cj.call(this)} +function lzb(a){wyb.call(this,a)} +function zzb(a){wyb.call(this,a)} +function Ymb(a){a.apply(null,[])} +function wmb(a){Slb(a.b,a.a,cHd)} +function rqb(a){tqb(a.a.a,a.a.c)} +function hIb(a,b){cJb(a.i,a.b,b)} +function dwb(a,b){qkc(a.a,tFd,b)} +function XJb(a,b){QJb(b,a.c,a.d)} +function Kdc(a,b){gjc(b,_zd,a.a)} +function DWb(a,b,c){Iqd(a.f,b,c)} +function z0b(a,b,c){Hqd(a.b,b,c)} +function A0b(a,b,c){Hqd(a.c,b,c)} +function Ngc(c,a,b){c.scale(a,b)} +function Nec(a){Sdc.call(this,a)} +function Tdc(a){Sdc.call(this,a)} +function $hc(a,b){a.c=b;return a} +function Ojc(a){ujc();return a|0} +function Xhc(a,b){Whc();a.text=b} +function o8b(a,b){return a*a+b*b} +function ebc(a){return a.b.b+a.a} +function B6(a){return a!=0?4-a:0} +function Eqc(a){Dqc.call(this,a)} +function Lqc(a){Jqc.call(this,a)} +function Prc(a){Lrc.call(this,a)} +function Utc(a){nQb.call(this,a)} +function Vtc(a){pQb.call(this,a)} +function Ddd(a){Lqc.call(this,a)} +function Ccd(a,b){a.__listener=b} +function Qfd(a){Nfd.call(this,a)} +function Xfd(a,b){Cfd(a,b);--a.b} +function ied(a){return abd(),a.a} +function Yhd(a){Zhd.call(this,a)} +function Hkd(a){nQb.call(this,a)} +function Okd(a){Kkd.call(this,a)} +function Qkd(a){Okd.call(this,a)} +function Rkd(a){Okd.call(this,a)} +function Skd(a){Rkd.call(this,a)} +function Tkd(a){Skd.call(this,a)} +function Ukd(a){Rkd.call(this,a)} +function Zkd(a){Okd.call(this,a)} +function bld(a){Okd.call(this,a)} +function gld(a){Okd.call(this,a)} +function jld(a){Kkd.call(this,a)} +function lld(a){jld.call(this,a)} +function mld(a){Okd.call(this,a)} +function fkd(){fkd=p9c;ekd=hkd()} +function abd(){abd=p9c;$ad=A8c()} +function Zbd(){Zbd=p9c;Vbd=B8c()} +function Kdd(){Kdd=p9c;Jdd=C8c()} +function old(){old=p9c;nld=G8c()} +function ujc(){ujc=p9c;tjc=z8c()} +function Khc(){Khc=p9c;Jhc=new S} +function FGb(){FGb=p9c;EGb=IGb()} +function F4(){E4();this.a=new l4} +function z3(){y3();this.a=new $3} +function jmd(a){nQb.call(this,a)} +function lmd(a){nQb.call(this,a)} +function bnd(a){nQb.call(this,a)} +function end(a){nQb.call(this,a)} +function und(a){nQb.call(this,a)} +function cnd(a){pQb.call(this,a)} +function God(a){nQb.call(this,a)} +function Aod(a){imd.call(this,a)} +function Bod(a){lmd.call(this,a)} +function nmd(a){lmd.call(this,a)} +function And(a){bnd.call(this,a)} +function Asd(a){ysd.call(this,a)} +function ysd(a){osd.call(this,a)} +function Dsd(a){vsd.call(this,a)} +function xvd(a){jrd.call(this,a)} +function Lwd(a){Kwd.call(this,a)} +function Fud(a){nQb.call(this,a)} +function ood(){imd.call(this,'')} +function pod(){imd.call(this,'')} +function yod(){imd.call(this,'')} +function zod(){imd.call(this,'')} +function ONd(){return EZ(this.c)} +function lPd(){return ot(this.a)} +function Imd(a){return a.e&&a.e()} +function xc(a){return a<=0||a>111} +function Oj(a,b){return ij(a.a,b)} +function Qj(a,b){return a.a.Bc(b)} +function Rj(a,b){return a.a.Cc(b)} +function Xk(a,b){return Yr(a.a,b)} +function Wg(a,b){!!a.u&&_r(a.u,b)} +function eg(a,b,c){kg(a.xb(),b,c)} +function Gg(a){_f(this,(abd(),a))} +function tl(a){_f(this,(abd(),a))} +function sl(a){nl.Fo((abd(),a.U))} +function pj(a){wic((pic(),oic),a)} +function pNd(a){az(this.o.i.A,a)} +function Jmd(a){Hmd(a);return a.p} +function Htd(){Htd=p9c;Gtd=Jtd()} +function Ttd(){throw I8c(new Fod)} +function _x(a,b){return Or(a.w,b)} +function Yx(a,b){return Or(a.q,b)} +function $x(a,b){return Or(a.u,b)} +function ay(a,b){return Or(a.B,b)} +function ty(a,b){return Or(a.A,b)} +function sy(a,b){return _r(a.A,b)} +function qy(a,b){return _r(a.s,b)} +function ry(a,b){return _r(a.u,b)} +function yy(a,b){return Or(a.C,b)} +function V$(a,b){return U$(a.a,b)} +function _V(a,b){return a.a.Uh(b)} +function GX(a,b){return a.u.ce(b)} +function Veb(a){return a?a.c:null} +function J8(a){return Xtd(I8(),a)} +function Hp(a,b){Ip(a,b,fxb(a.a))} +function DJ(a,b){!!a.c&&(a.b=b.c)} +function Oo(a,b){a.style[JAd]=b.a} +function Vxd(a,b){Sxd();a[lMd]=b} +function dCb(a,b){a.c=b;a.b=false} +function WHb(a,b){vqc(a.e,b,null)} +function HIb(a,b){Pgc(a.a.el(),b)} +function yLb(a,b){this.a=nLb(a,b)} +function ymb(a){this.a=new Ekb(a)} +function tnb(a){this.a=new unb(a)} +function bB(){this.a=new Tsd(RXc)} +function kS(){this.b=new lS(this)} +function ebb(a){this.b=a;this.a=0} +function QRb(a){Lg(a.b);sl(a.f.a)} +function Qyb(a){Pyb(a);return a.j} +function NWb(a,b){PWb(a,OWb(a,b))} +function bPb(b,a){b.cpkColoring=a} +function dPb(b,a){b.circledsign=a} +function ePb(b,a){b.displayMode=a} +function TPb(){TPb=p9c;SPb=new es} +function oub(){oub=p9c;nub=new es} +function co(){eo.call(this,false)} +function cec(){Ldc.call(this,TJd)} +function aec(){Ldc.call(this,RJd)} +function bec(){Ldc.call(this,SJd)} +function Aec(){Ldc.call(this,UJd)} +function Bec(){Ldc.call(this,VJd)} +function Cec(){Ldc.call(this,WJd)} +function Eec(){Ldc.call(this,XJd)} +function Fec(){Ldc.call(this,YJd)} +function Oec(){Ldc.call(this,ZJd)} +function Odc(){Ldc.call(this,NJd)} +function Ndc(){Ldc.call(this,MJd)} +function Ydc(){Ldc.call(this,OJd)} +function Zdc(){Ldc.call(this,PJd)} +function $dc(){Ldc.call(this,QJd)} +function Sec(){Ldc.call(this,$Jd)} +function dec(){Ldc.call(this,rAd)} +function pgc(){Ldc.call(this,aAd)} +function fgc(){Ldc.call(this,nJd)} +function igc(){Ldc.call(this,_Jd)} +function Igc(c,a,b){c.lineTo(a,b)} +function Kgc(c,a,b){c.moveTo(a,b)} +function quc(a,b){return Qmd(a,b)} +function huc(a){return new Ztc(a)} +function juc(a){return new puc(a)} +function ttc(a){return a[4]||a[1]} +function $md(a){return Cnd(),''+a} +function scd(a){!!ocd&&lqc(ocd,a)} +function slc(a){(ujc(),tjc).Bn(a)} +function ojc(a){a=bod(a);return a} +function mod(a,b){a.a+=b;return a} +function sod(a,b){return a.a+=b,a} +function rsd(a,b){return T(a.a,b)} +function Dwd(a,b){return wuc(a,b)} +function Oxd(a,b,c){return b(a,c)} +function HMd(a){return ds(this,a)} +function LMd(a){return mx(this,a)} +function MMd(a){return nx(this,a)} +function NMd(a){return px(this,a)} +function OMd(a){return rx(this,a)} +function PMd(a){return tx(this,a)} +function RMd(a){return zx(this,a)} +function pad(){qad.call(this,0,0)} +function dOd(){return dsd(this.q)} +function eOd(){return dsd(this.r)} +function fOd(){return dsd(this.s)} +function gOd(){return dsd(this.t)} +function hOd(){return dsd(this.u)} +function iOd(){return dsd(this.w)} +function jOd(){return dsd(this.A)} +function TOd(){return dsd(this.n)} +function bPd(){return dsd(this.a)} +function mPd(){return dxd(this.a)} +function xPd(){return zld(this.a)} +function CPd(){return this.a.vd()} +function DPd(){return this.a.Rc()} +function bNd(){f0b(this.b,this.a)} +function cNd(){a0b(this.b,this.a)} +function PPd(){return s9c(this.a)} +function KPd(){return s9c(this.b)} +function GPd(){throw I8c(new Eud)} +function zMd(){throw I8c(new Fod)} +function Pvd(a){this.a=new svd(a)} +function Gd(a,b){this.a=a;this.b=b} +function fe(a,b){this.a=a;this.b=b} +function ge(a,b){this.b=a;this.a=b} +function qe(a,b){this.b=a;this.a=b} +function se(a,b){this.b=a;this.a=b} +function gc(a,b){this.j=a;this.k=b} +function Ke(a,b){this.b=a;this.a=b} +function Le(a,b){this.b=a;this.a=b} +function oc(a,b){gc.call(this,a,b)} +function gg(a,b){mg((abd(),a.U),b)} +function Of(a,b){kg(a.xb(),b,true)} +function iid(a){a.P&&a.a.Lo(true)} +function fdd(a){kdd(a.a);a.a=null} +function Ie(a,b,c){a.a=b;a.a.nb(c)} +function qg(a,b){!!a.R&&oqc(a.R,b)} +function Nh(a,b){this.a=a;this.b=b} +function Ph(a,b){this.a=a;this.b=b} +function Qh(a,b){this.a=a;this.b=b} +function hi(a,b){this.a=a;this.b=b} +function ni(a,b){this.a=a;this.b=b} +function uk(a,b){this.a=a;this.b=b} +function vk(a,b){this.a=a;this.b=b} +function Pk(a,b){this.b=a;this.a=b} +function Sh(a,b){this.b=a;this.a=b} +function ui(a,b){this.b=b;this.a=a} +function bl(a,b){this.a=a;this.b=b} +function yj(a,b){gc.call(this,a,b)} +function Ym(a,b){gc.call(this,a,b)} +function on(a,b){gc.call(this,a,b)} +function Gn(a,b){this.b=a;this.a=b} +function _j(a,b){return Cqd(a.a,b)} +function to(a,b){return Djd(a.i,b)} +function un(a){return a.b?a.f:null} +function Mm(a){Fm(a.a);a.a.c=false} +function Mp(a,b){this.a=a;this.b=b} +function pq(a,b){this.a=a;this.b=b} +function wt(a,b){this.b=a;this.a=b} +function Du(a,b){this.b=a;this.a=b} +function du(a,b){gc.call(this,a,b)} +function ht(a,b){gc.call(this,a,b)} +function ev(a,b){gc.call(this,a,b)} +function jz(a,b){gc.call(this,a,b)} +function tz(a,b){gc.call(this,a,b)} +function Mz(a,b){gc.call(this,a,b)} +function lA(a,b){gc.call(this,a,b)} +function _A(a,b){return Nsd(a.a,b)} +function aB(a,b){return Osd(a.a,b)} +function hw(a,b){return tIb(a.a,b)} +function TB(a,b){this.b=a;this.a=b} +function UC(a,b){this.b=a;this.a=b} +function GE(a,b){this.b=a;this.a=b} +function eE(a,b){this.c=a;this.b=b} +function SB(a,b){this.a=a;this.b=b} +function oF(a,b){this.a=a;this.b=b} +function qF(a,b){oF.call(this,a,b)} +function rF(a,b){oF.call(this,a,b)} +function sF(a,b){oF.call(this,a,b)} +function xF(a,b){oF.call(this,a,b)} +function ZE(a,b){gc.call(this,a,b)} +function BF(a,b){this.a=a;this.b=b} +function IF(a,b){this.a=a;this.b=b} +function hJ(a,b){this.a=a;this.b=b} +function QJ(a,b){this.b=a;this.a=b} +function EF(a,b){this.b=a;this.a=b} +function KL(a,b){this.b=a;this.a=b} +function _I(a,b){this.a=b;this.c=a} +function wM(a,b){this.a=a;this.c=b} +function TN(a,b){this.a=a;this.b=b} +function UK(a,b){TK.call(this,a,b)} +function vM(a,b){TK.call(this,a,b)} +function pO(a,b){this.a=a;this.b=b} +function qO(a,b){this.a=a;this.b=b} +function yO(a,b){this.a=a;this.b=b} +function zO(a,b){this.a=a;this.b=b} +function GL(a,b){Dx(a.a);qx(a.a,b)} +function BO(a,b){return Eqd(a.b,b)} +function hO(a,b){return dtd(a.d,b)} +function ZS(a,b){return Xtd(a.d,b)} +function bT(a,b){return Eqd(a.i,b)} +function iT(a,b){return Eqd(a.u,b)} +function bO(a){return a==43||a==45} +function bW(a,b){this.b=a;this.a=b} +function BW(a,b){this.b=a;this.a=b} +function RW(a,b){this.b=a;this.a=b} +function tQ(a,b){this.a=a;this.b=b} +function $X(a,b){this.a=a;this.b=b} +function jX(a,b){this.c=a;this.b=b} +function wY(a,b){this.e=b;this.c=a} +function AZ(a,b){this.a=a;this.b=b} +function UZ(a,b){this.a=a;this.b=b} +function p$(a,b){this.b=b;this.a=a} +function G$(a,b){this.a=b;this.b=a} +function X$(a,b){this.a=a;this.b=b} +function fQ(a,b){gc.call(this,a,b)} +function B_(a,b){gc.call(this,a,b)} +function R0(a,b){gc.call(this,a,b)} +function xZ(a,b){wY.call(this,a,b)} +function Y_(a,b){this.b=a;this.a=b} +function O1(a,b){this.b=a;this.a=b} +function m3(a,b){this.b=a;this.a=b} +function o3(a,b){this.b=a;this.a=b} +function E3(a,b){this.a=a;this.b=b} +function C4(a,b){this.a=a;this.b=b} +function _4(a,b){this.b=a;this.a=b} +function Y9(a,b){gc.call(this,a,b)} +function T1(a,b){return Eqd(a.p,b)} +function Ddb(a,b){return _r(a.p,b)} +function Fdb(a,b){return _r(a.t,b)} +function ZX(a){return kbc(a.a,a.b)} +function S5(a,b){return Vnd(b,a.a)} +function Kdb(a){Jdb.call(this,a,a)} +function Ghb(a,b){Iib(a.n.c,a.f,b)} +function _hb(a,b,c){eld(a.a.f,b,c)} +function Qgc(b,a){b.globalAlpha=a} +function Vgc(b,a){b.strokeStyle=a} +function Ojb(a){Hjb(this);this.a=a} +function Wgb(){Sgb();this.a=new es} +function Sgb(){Sgb=p9c;Rgb=new Tgb} +function Ucb(){Ucb=p9c;Tcb=new $cb} +function cib(){cib=p9c;bib=new fjb} +function Cnd(){Cnd=p9c;Bnd=new lod} +function axb(){axb=p9c;_wb=new cxb} +function fjd(){fjd=p9c;ol();rjd()} +function i9c(){g9c==null&&(g9c=[])} +function Fib(a){Gib.call(this,a,0)} +function blb(){clb.call(this,null)} +function $mb(a){Wmb(this);this.a=a} +function Pub(a){a.b.qe();Ww(a.a.b)} +function nrb(a){!!a.b.i&&$v(a.b.i)} +function Wvb(a,b){return q3(a.c,b)} +function mDb(a,b){nDb(a,hs(a.c,b))} +function IEb(a,b){HEb(a,a.b.Id(b))} +function AAb(a,b,c){BAb(a,a.b,b,c)} +function eHb(a){this.f=a;aHb(this)} +function wo(){this.i=new Ijd(this)} +function bxb(a){return !a?'':zS(a)} +function aFb(){aFb=p9c;ZEb=new _Eb} +function DMb(){DMb=p9c;nMb=new vMb} +function EMb(){EMb=p9c;oMb=new wMb} +function FMb(){FMb=p9c;pMb=new xMb} +function GMb(){GMb=p9c;qMb=new yMb} +function HMb(){HMb=p9c;rMb=new zMb} +function IMb(){IMb=p9c;sMb=new AMb} +function JMb(){JMb=p9c;tMb=new BMb} +function KMb(){KMb=p9c;uMb=new CMb} +function XMb(){XMb=p9c;LMb=new RMb} +function YMb(){YMb=p9c;MMb=new SMb} +function ZMb(){ZMb=p9c;NMb=new TMb} +function $Mb(){$Mb=p9c;OMb=new UMb} +function _Mb(){_Mb=p9c;PMb=new VMb} +function aNb(){aNb=p9c;QMb=new WMb} +function kNb(){kNb=p9c;gNb=new iNb} +function lNb(){lNb=p9c;hNb=new jNb} +function qNb(){qNb=p9c;mNb=new oNb} +function rNb(){rNb=p9c;nNb=new pNb} +function wNb(){wNb=p9c;sNb=new uNb} +function xNb(){xNb=p9c;tNb=new vNb} +function ENb(){ENb=p9c;yNb=new BNb} +function FNb(){FNb=p9c;zNb=new CNb} +function GNb(){GNb=p9c;ANb=new DNb} +function VQb(){VQb=p9c;PQb=new SQb} +function WQb(){WQb=p9c;QQb=new UQb} +function FUb(){FUb=p9c;EUb=new RUb} +function Z0b(){Z0b=p9c;Y0b=new $0b} +function h7b(){h7b=p9c;g7b=new Hoc} +function k7b(){k7b=p9c;j7b=new Hoc} +function n7b(){n7b=p9c;m7b=new Hoc} +function q7b(){q7b=p9c;p7b=new Hoc} +function t7b(){t7b=p9c;s7b=new Hoc} +function w7b(){w7b=p9c;v7b=new Hoc} +function z7b(){z7b=p9c;y7b=new Hoc} +function C7b(){C7b=p9c;B7b=new Hoc} +function V9b(){U9b(this,0,0,-1,-1)} +function LQb(a,b){kHb(new lHb,a,b)} +function HSb(a,b){a.b.tl(ISb(a,b))} +function JSb(a,b){a.b.ul(ISb(a,b))} +function hWb(a,b){return hs(a.o,b)} +function fXb(a,b){return qy(a.a,b)} +function Y7b(a,b){return Yr(a.b,b)} +function I2b(a,b){Jud(b,yJd);a.c=b} +function L2b(a,b){Jud(b,yJd);a.d=b} +function fPb(b,a){b.eflowmidline=a} +function Wgc(b,a){b.textBaseline=a} +function qkc(c,a,b){c.setData(a,b)} +function xgc(a){_f(this,(abd(),a))} +function Wdc(a){Qdc((kgc(),jgc),a)} +function v9c(b,a){return b.exec(a)} +function x9c(b,a){return b.test(a)} +function Xuc(a){return a.l|a.m<<22} +function Zhc(a){a.a=false;return a} +function krc(){krc=p9c;jrc=new ltd} +function wbc(){wbc=p9c;vbc=new Wud} +function pic(){pic=p9c;oic=new yic} +function boc(){boc=p9c;aoc=new goc} +function Lsc(){Lsc=p9c;Ksc=new Osc} +function Xtc(){Xtc=p9c;Wtc=new Ytc} +function gcd(){gcd=p9c;fcd=new Ioc} +function wcd(){wcd=p9c;vcd=new Ioc} +function rcd(){rcd=p9c;pcd=new hdd} +function Dod(){Dod=p9c;Cod=new cmd} +function ncd(){qqc.call(this,null)} +function ted(a){ued.call(this,a.a)} +function gdd(a){a.a=jdd();idd(a.a)} +function ofd(a){_f(this,(abd(),a))} +function oed(a,b){zed(a.a,b,false)} +function lsd(a,b){return a.b.qd(b)} +function msd(a,b){return a.b.rd(b)} +function nsd(a,b){return a.b.xd(b)} +function ssd(a,b){return a.a.zd(b)} +function tsd(a,b){return a.a.Ad(b)} +function crd(a,b){return a.a.rp(b)} +function qtd(a,b){return a.a.lp(b)} +function _hd(a){return a.substr(1)} +function Mqd(a){return a.d.c+a.e.b} +function Aqd(a){return !a?null:a.d} +function vPd(a){return Uhd(this,a)} +function zPd(){return this.vd()==0} +function rvd(){svd.call(this,null)} +function ktd(a){this.c=a;htd(this)} +function tOd(a){Yyb(this.a,this.b)} +function xOd(a){ABb(this.a,this.b)} +function Vgd(a){(abd(),a.U).size=1} +function ig(a,b){nbd((abd(),a.U),b)} +function Yf(a,b){kg(a.xb(),b,false)} +function $n(a,b){Rn(a.b,b);return a} +function Cp(a){Bp(a);return Kp(a.c)} +function qu(a,b,c){return pu(a,b,c)} +function su(a,b,c){return ru(a,b,c)} +function bh(a,b){a.Yb(new zhd(a,b))} +function JA(a,b){Hqd(a.a,b,a.Yf(b))} +function BB(a,b){this.a=new _D(a,b)} +function UB(a,b){this.a=new _D(a,b)} +function Vn(a){this.a=new Hg(Tn(a))} +function Fu(){this.a=new vc(new Hc)} +function JPd(a){throw I8c(new Fod)} +function gsd(){gsd=p9c;fsd=new hsd} +function Fsd(){Fsd=p9c;Esd=new Gsd} +function Sxd(){Sxd=p9c;Rxd=new Ixd} +function mj(a){a.Dc();a.d=(xj(),uj)} +function gu(a){Ot();Ut.call(this,a)} +function TI(a){wI();$G.call(this,a)} +function Mi(a){$wnd.clearTimeout(a)} +function NJ(a,b){Wr(a.a,b);return a} +function JV(a,b){Xr(a.a,b);return b} +function Jeb(a,b){this.a=a;this.b=b} +function Acb(a,b){this.a=a;this.b=b} +function vbb(a,b){this.b=a;this.a=b} +function jdb(a,b){this.b=a;this.a=b} +function geb(a,b){this.b=a;this.a=b} +function gfb(a,b){this.b=a;this.a=b} +function kgb(a,b){this.b=a;this.a=b} +function QL(){this.b=-1;this.a=true} +function ghb(a,b){this.b=a;this.a=b} +function vgb(a,b){return ald(a.a,b)} +function tgb(a,b){return $kd(a.a,b)} +function Xeb(a,b){return Fqd(a.a,b)} +function Khb(a,b){return Ehb(a.a,b)} +function Cfb(a,b){return Nib(a.c,b)} +function Dfb(a,b){return Pib(a.c,b)} +function Zgb(a,b){return ugb(a.c,b)} +function $gb(a,b){return vgb(a.c,b)} +function Pib(a,b){return ugb(a.b,b)} +function n8(a,b){return Q7(a.a,b)+1} +function SS(a,b,c){return a.s.k?c:b} +function Qib(a,b){this.b=a;this.c=b} +function smb(a,b){this.b=a;this.a=b} +function tmb(a,b){this.b=a;this.a=b} +function umb(a,b){this.b=a;this.a=b} +function vmb(a,b){this.b=a;this.a=b} +function xmb(a,b){this.b=a;this.a=b} +function jmb(a,b){this.a=a;this.b=b} +function lmb(a,b){this.a=a;this.b=b} +function mmb(a,b){this.a=a;this.b=b} +function nmb(a,b){this.a=a;this.b=b} +function Bmb(a,b){this.a=a;this.b=b} +function skb(a,b){this.a=a;this.b=b} +function Jkb(a,b){this.a=a;this.b=b} +function Ckb(a,b){this.c=a;this.b=b} +function knb(a,b){this.a=a;this.b=b} +function Knb(a,b){this.a=a;this.b=b} +function Pnb(a,b){this.a=a;this.b=b} +function pob(a,b){this.a=a;this.b=b} +function tob(a,b){this.a=a;this.b=b} +function bpb(a,b){this.a=a;this.b=b} +function xpb(a,b){this.a=a;this.b=b} +function Upb(a,b){this.a=a;this.b=b} +function Ypb(a,b){this.a=a;this.b=b} +function fqb(a,b){this.a=a;this.b=b} +function Vqb(a,b){this.a=a;this.b=b} +function grb(a,b){this.a=a;this.b=b} +function qrb(a,b){this.a=a;this.b=b} +function jub(a,b){this.a=a;this.b=b} +function uub(a,b){this.a=a;this.b=b} +function Sub(a,b){this.a=a;this.b=b} +function mvb(a,b){this.a=a;this.b=b} +function Rwb(a,b){this.a=a;this.b=b} +function Exb(a,b){this.a=a;this.b=b} +function Nxb(a,b){this.a=a;this.b=b} +function Pxb(a,b){this.a=a;this.b=b} +function Jyb(a,b){this.a=a;this.b=b} +function _yb(a,b){this.a=a;this.b=b} +function azb(a,b){this.a=a;this.b=b} +function bzb(a,b){this.a=a;this.b=b} +function czb(a,b){this.a=a;this.b=b} +function dzb(a,b){this.a=a;this.b=b} +function ezb(a,b){this.a=a;this.b=b} +function qAb(a,b){this.a=a;this.b=b} +function DBb(a,b){this.a=a;this.b=b} +function EBb(a,b){this.a=a;this.b=b} +function FBb(a,b){this.a=a;this.b=b} +function GBb(a,b){this.a=a;this.b=b} +function HBb(a,b){this.a=a;this.b=b} +function IBb(a,b){this.a=a;this.b=b} +function hrb(a,b){this.b=a;this.c=b} +function Qwb(a,b){this.b=a;this.a=b} +function QCb(a,b){this.a=a;this.b=b} +function CDb(a,b){this.a=a;this.b=b} +function fEb(a,b){this.a=a;this.b=b} +function gEb(a,b){this.a=a;this.b=b} +function eFb(a,b){this.a=a;this.b=b} +function Djb(a,b){gc.call(this,a,b)} +function Evb(a,b){gc.call(this,a,b)} +function Fwb(a,b){gc.call(this,a,b)} +function XAb(a,b){gc.call(this,a,b)} +function rFb(a,b){this.a=a;this.b=b} +function oGb(a,b){this.a=a;this.b=b} +function pGb(a,b){this.a=a;this.b=b} +function DGb(a,b){this.a=a;this.b=b} +function mGb(a,b){this.b=a;this.a=b} +function pFb(a,b){a.b=b;gg(a.c,!!b)} +function dBb(a,b){return VBb(a.a,b)} +function gIb(a,b){return bJb(a.i,b)} +function rIb(a,b){return DJb(a.j,b)} +function sIb(a,b){return EJb(a.j,b)} +function uIb(a,b){return FJb(a.j,b)} +function vIb(a,b){return GJb(a.j,b)} +function fIb(a){return aJb(a.i,a.b)} +function nCb(a){return a.c?null:a.f} +function fFb(a){return a==60||a==62} +function Uwb(a){Xwb(a);return !!a.c} +function cIb(a){kJb(a.k);return a.k} +function IIb(a,b){Wgc(a.a.el(),b.a)} +function JHb(a,b,c){Ngc(a.el(),b,c)} +function NIb(a,b){gc.call(this,a,b)} +function NKb(a,b){gc.call(this,a,b)} +function hJb(){iJb.call(this,false)} +function Fmb(){rlb();Tlb.call(this)} +function kEb(a){a.f||a.b.ob(lEb(a))} +function lJb(a,b){mJb(a,_Hb(a.b),b)} +function oOb(a,b){gc.call(this,a,b)} +function xKb(a,b){this.b=a;this.a=b} +function ZKb(a,b){this.b=a;this.a=b} +function _Kb(a,b){this.b=a;this.a=b} +function FLb(a,b){this.b=a;this.a=b} +function MPb(a,b){this.b=a;this.a=b} +function RPb(a,b){this.b=a;this.a=b} +function gQb(a,b){this.b=a;this.a=b} +function KQb(a,b){this.b=a;this.a=b} +function eQb(a,b){this.a=a;this.b=b} +function fQb(a,b){this.a=a;this.b=b} +function fSb(a,b){this.a=a;this.b=b} +function hSb(a,b){this.a=a;this.b=b} +function yKb(a,b){this.a=a;this.b=b} +function HLb(a,b){this.a=a;this.b=b} +function PNb(a,b){this.a=a;this.b=b} +function SNb(a,b){this.a=a;this.b=b} +function $Pb(a,b){this.a=a;this.b=b} +function NRb(a,b){this.a=a;this.b=b} +function CSb(a,b){this.a=a;this.b=b} +function WSb(a,b){this.a=a;this.b=b} +function iSb(a,b){this.b=a;this.a=b} +function rSb(a,b){this.b=a;this.a=b} +function KSb(a,b){this.b=a;this.a=b} +function bTb(a,b){this.b=a;this.a=b} +function _Ub(a,b){this.b=a;this.c=b} +function vSb(a,b){this.b=b;this.a=a} +function oQb(a,b){Vc.call(this,a,b)} +function KTb(a,b){gc.call(this,a,b)} +function wXb(a,b){gc.call(this,a,b)} +function P$b(a,b){gc.call(this,a,b)} +function P1b(a,b){gc.call(this,a,b)} +function V_b(a,b){gc.call(this,a,b)} +function h4b(a,b){gc.call(this,a,b)} +function W4b(a,b){gc.call(this,a,b)} +function j5b(a,b){this.c=a;this.a=b} +function A6b(a,b){this.b=a;this.a=b} +function d6b(a,b){this.b=a;this.c=b} +function O4b(a,b){this.b=a;this.c=b} +function G0b(a,b){this.a=a;this.b=b} +function _3b(a,b){this.b=b;this.a=a} +function Jdc(a,b){this.b=a;this.a=b} +function Pcc(a,b){gc.call(this,a,b)} +function e7b(a,b){gc.call(this,a,b)} +function W8b(a,b){gc.call(this,a,b)} +function Lec(a,b){gc.call(this,a,b)} +function Rac(){Sac.call(this,0,0,0)} +function nec(){Ldc.call(this,'img')} +function sec(){Ldc.call(this,'log')} +function bgc(){Ldc.call(this,'row')} +function mgc(){Ldc.call(this,'tab')} +function Slc(a,b){gc.call(this,a,b)} +function Ulc(){Slc.call(this,wAd,0)} +function pmc(a,b){gc.call(this,a,b)} +function rmc(){pmc.call(this,$Ed,0)} +function smc(){pmc.call(this,BCd,1)} +function zmc(a,b){gc.call(this,a,b)} +function Bmc(){zmc.call(this,$Ed,0)} +function Cmc(){zmc.call(this,ACd,1)} +function Kmc(a,b){gc.call(this,a,b)} +function Vmc(a,b){gc.call(this,a,b)} +function enc(a,b){gc.call(this,a,b)} +function gnc(){enc.call(this,uAd,0)} +function inc(){enc.call(this,iBd,2)} +function jnc(){enc.call(this,hBd,3)} +function unc(a,b){gc.call(this,a,b)} +function Lnc(a,b){gc.call(this,a,b)} +function Nnc(){Lnc.call(this,$Ed,0)} +function Apc(a,b){this.a=a;this.b=b} +function nXb(a,b){a.c.Cm()&&(a.b=b)} +function USb(a,b){return SSb(a.b,b)} +function cXb(a,b){return rdb(a.a,b)} +function eXb(a,b){return Ddb(a.a,b)} +function pqc(a,b){return Bqc(a.a,b)} +function Bqc(a,b){return Cqd(a.d,b)} +function tic(a){return !!a.a||!!a.f} +function Q8c(a,b){return L8c(a,b)>0} +function S8c(a,b){return L8c(a,b)<0} +function Csc(a,b){gc.call(this,a,b)} +function Isc(a,b){gc.call(this,a,b)} +function B9c(a,b){Vc.call(this,a,b)} +function Cqc(){Dqc.call(this,false)} +function $qc(a,b){this.b=a;this.a=b} +function D9c(a,b){this.b=a;this.a=b} +function E9c(a,b){this.a=a;this.b=b} +function qad(a,b){this.a=a;this.b=b} +function ddd(a,b){this.a=a;this.b=b} +function Red(a,b){this.a=a;this.b=b} +function nbd(a,b){abd();$ad.ho(a,b)} +function obd(a,b){abd();$ad.io(a,b)} +function oTb(a,b){a.t=b.b;a.mm(b.a)} +function thd(a,b){this.b=a;this.a=b} +function Fgd(a,b){this.a=a;this.b=b} +function zhd(a,b){this.a=a;this.b=b} +function ggd(a,b){this.a=b;this.b=a} +function Jid(a,b){this.a=a;this.b=b} +function Oid(a,b){this.b=a;this.a=b} +function Ghd(a,b){gc.call(this,a,b)} +function _id(a,b){return cjd(a.a,b)} +function sjd(a,b){gc.call(this,a,b)} +function ujd(){sjd.call(this,uAd,0)} +function wjd(){sjd.call(this,iBd,2)} +function xjd(){sjd.call(this,hBd,3)} +function xad(a){Qic(a.parentNode,a)} +function wld(a){old();return a.data} +function dld(a,b){return tld(a.a,b)} +function Zld(a){a.a.Pn(a.d,a.c,a.b)} +function Tfd(a){Rfd.Fo((abd(),a.U))} +function hjd(a){(abd(),a.U).cols=60} +function Tld(){Sld();Old.call(this)} +function Mbd(){this.a=new qqc(null)} +function Htc(){this.r=new $wnd.Date} +function Ysd(a,b){this.b=a;this.a=b} +function grd(a,b){this.d=a;this.e=b} +function Nsd(a,b){return ctd(a.a,b)} +function emd(a,b){return Dnd(a.a,b)} +function Wtd(a,b){return Cqd(a.c,b)} +function ird(a,b){return !!evd(a,b)} +function Ntd(a,b){return a.a.get(b)} +function Wqd(a){return a.b-1&&b==a.a} +function yTb(a,b){a.o=b;wTb(a);vTb(a)} +function L3b(a,b){a.d=lad(b,a.a.Lh())} +function gvb(a,b,c){Gvb(Eqd(a.a,b),c)} +function Fhb(a,b){b&&eld(a.f,dFd,jzd)} +function Rdc(a,b,c){gjc(b,a.a,Pdc(c))} +function qmb(a){ts(a);pxb(new qxb(a))} +function H3b(){eTb();I3b.call(this,0)} +function xLb(a){yLb.call(this,a,null)} +function M0b(a){N0b.call(this,null,a)} +function Mdc(){Ldc.call(this,'alert')} +function qgc(){Ldc.call(this,'timer')} +function jec(){Ldc.call(this,'group')} +function Rec(){Ldc.call(this,'radio')} +function nic(){aic!=0&&(aic=0);dic=-1} +function TIb(a){a.d=(MIb(),LIb);a.b=1} +function _Ob(b,a){b.atomMapsVisible=a} +function aPb(b,a){b.backgroundColor=a} +function w9b(a,b){return pbc(a)?b-1:b} +function xlc(a,b){return (ujc(),a)[b]} +function Mic(a){return Ajc((ujc(),a))} +function Xic(a){return yjc((ujc(),a))} +function ubd(a){return zcd((abd(),a))} +function Njd(a,b){return new Qjd(b,a)} +function kjc(a,b){(ujc(),tjc).Ln(a,b)} +function Uic(a,b){(ujc(),tjc).vn(a,b)} +function Ftc(a,b){a.r.setTime(c9c(b))} +function nuc(a){throw I8c(new Utc(a))} +function Wld(a){throw I8c(new Wkd(a))} +function Bqd(a){return !a?null:a.Ok()} +function hmd(a,b){return Xnd(a.a,0,b)} +function Qsd(a,b,c){return Psd(a,b,c)} +function zld(a){old();return a.length} +function Mld(a,b){old();a.nodeValue=b} +function vhd(a,b){this.b=a;this.a=a+b} +function Ctd(a){this.a=Ltd();this.b=a} +function mbd(a){abd();_ad=a;$ad.go(a)} +function Hud(a){return a!=null?V(a):0} +function kOd(a,b){return new Hcb(a,b)} +function QMd(a,b){return wx(this,a,b)} +function TMd(a,b){return Xx(this,a,b)} +function fPd(){return dsd(this.a.a.a)} +function ePd(){return Xrd(),Xrd(),Vrd} +function JNd(){return Xrd(),Xrd(),Urd} +function cOd(){return Xrd(),Xrd(),Wrd} +function FPd(){return Xrd(),gsd(),fsd} +function wPd(){return _ic(this.f,OHd)} +function Pf(a){return Vic((abd(),a.U))} +function Qf(a){return Wic((abd(),a.U))} +function pPd(a){ljc((abd(),this.U),a)} +function yOd(a){fjc(Rf(this.a.c),CId)} +function jud(){vtd.call(this,new _td)} +function dmd(){bmd.call(this,'UTF-8')} +function Nwd(){Kwd.call(this,'UTF-8')} +function xnc(){unc.call(this,'PCT',1)} +function Pnc(){Lnc.call(this,'PRE',2)} +function Ek(a){Dk.call(this,new ek(a))} +function Rk(a,b){a.b.a=new Ok(b);Qk(a)} +function Sk(a,b){a.b.a=new Uk(b);Qk(a)} +function tu(a,b){return xu(a.c,b).vd()} +function an(a,b){return un(Osd(a.a,b))} +function AF(a,b){return Bac(b,a.a,a.b)} +function Jt(a){return Jkd(),pld(Ikd,a)} +function RPd(){return this.a.a.length} +function bs(a,b){Prd(a.a,a.a.length,b)} +function vG(a){!!a.a.a.a&&a.a.a.a.Rd()} +function EG(a){FG(a);a.b=false;vG(a.d)} +function EA(a){IA(a.a);IA(a.b);IA(a.c)} +function N$(a,b){b.vf(a.a,a.b,a.d,a.c)} +function E0(a,b){return H0(b,a.b.Yd())} +function qm(a,b){vm((soc(b),toc(b),a))} +function O4(a,b,c){Wr(a.e,new _4(b,c))} +function YC(a,b,c){BA.call(this,a,b,c)} +function BP(a,b,c){nP.call(this,a,b,c)} +function r0(a,b,c){n0.call(this,a,b,c)} +function I0(a,b,c){n0.call(this,a,b,c)} +function Fjb(){Djb.call(this,'FLAG',0)} +function unb(a){Ki.call(this);this.a=a} +function Mt(a){this.b=new Iqc;this.d=a} +function pU(a,b){this.b=qU(a);this.a=b} +function CB(a){this.b=a;this.a=uD(a.C)} +function Akb(a){this.b=a;this.a=new es} +function nxb(){this.a=new Bm;mxb(this)} +function YIb(){Nw.call(this);TIb(this)} +function Hmb(a){rlb();Vlb.call(this,a)} +function TGb(a){QGb(a.d,bod(CEb(a.e)))} +function Uvb(a){return Wvb(a,Pvb(a.a))} +function wjb(a,b){return a.b.Uj(a.a,b)} +function fUb(a,b){return gUb(a.Bm(),b)} +function xdb(a,b){return hs(a.n,b)!=-1} +function mTb(a,b){a.v=b?new js(b):null} +function ZJb(){this.c=null;this.d=null} +function a6b(a){this.c=a;this.b=new is} +function VSb(a){this.b=a;this.a=new es} +function Idc(a){this.a=a;Ki.call(this)} +function xN(a){a.b.b=false;a.a.b=false} +function hPb(b,a){b.lonePairsVisible=a} +function gPb(b,a){b.implicitHydrogen=a} +function ejc(b,a){b.removeAttribute(a)} +function T6b(a,b){S6b.call(this,a,b,b)} +function U6b(a,b){S6b.call(this,a,b,b)} +function qqc(a){rqc.call(this,a,false)} +function lgc(){Ldc.call(this,'status')} +function hgc(){Ldc.call(this,'slider')} +function Vdc(){Ldc.call(this,'banner')} +function Tec(){Ldc.call(this,'region')} +function Pmc(){Kmc.call(this,'AUTO',3)} +function rad(a){qad.call(this,a.a,a.b)} +function Hid(a,b){sl(a.a.a);zid(a.a,b)} +function rdd(a,b){yo(a,!b?null:b.Cb())} +function agd(a,b,c){bgd(a,b,(abd(),c))} +function Yid(a,b,c){Zid(a,b,c,a.a.i.c)} +function G2b(a,b,c,d){B5b(b.a,a,c.a,d)} +function Znc(a){Xnc();DPb(Unc,a);$nc()} +function Gld(a){old();return a.tagName} +function qwd(a,b){if(ewd){return}a.b=b} +function Ohd(a){this.a=a;Ki.call(this)} +function Qqc(a){this.a=a;Ki.call(this)} +function lNd(a){!!this.k&&WG(this.k,a)} +function bvd(a){cvd.call(this,a,'','')} +function Jvd(){Fvd.call(this,'Tail',3)} +function Hvd(){Fvd.call(this,'Head',1)} +function Hg(a){Fg.call(this);this.Ub(a)} +function hh(a){kh(a);ph(a.b);a.d.a.Pb()} +function Wd(a,b,c){!!a.a&&a.a.c.gb(b,c)} +function Zh(a,b,c){a.b=b;a.c=c;return a} +function Mo(a,b){(abd(),a)['align']=b.a} +function pl(a){return !(abd(),a.U)[mAd]} +function ZOd(a){return Xrd(),Xrd(),Wrd} +function $Od(a){return Xrd(),Xrd(),Urd} +function guc(a){return Stc(),a?Rtc:Qtc} +function Jxd(a){return a&&a.g?a.g:null} +function Qt(a,b,c){return St(a,b).Qd(c)} +function wu(a,b,c){return xu(a,b).zd(c)} +function df(a){bf();return new Error(a)} +function VJ(a,b){return UJ(a,b+a.c,a.b)} +function zK(a,b){return iK(b,a.o.i,a.b)} +function MH(a,b){NH.call(this,a,b,true)} +function yJ(a){fJ.call(this,a,'\u2022')} +function GJ(a){$G.call(this,a);EJ(this)} +function VM(a){DM.call(this,a);TM(this)} +function Pv(a){Ov(a,(Lz(),Hz));a.w.Hf()} +function $v(a){Ov(a,(Lz(),Iz));a.w.Hf()} +function WP(a){if(!a.c){return}a.c=null} +function CS(a){return a!=null?bod(a):''} +function Fc(){Fc=p9c;Ec=new Gc(new Ic)} +function VT(){VT=p9c;UT=new YT(new Gdb)} +function PZ(){PZ=p9c;OZ=new UZ(uBd,uBd)} +function Wpb(){Wpb=p9c;Vpb=(s6b(),g6b)} +function ho(){ho=p9c;go=(Os(),Fs);fo=go} +function i_(a){e_();g_.call(this,MBd,a)} +function j_(a){e_();h_.call(this,MBd,a)} +function Y8(a,b){U7();Z7.call(this,a,b)} +function IW(a,b){FW();this.a=a;this.b=b} +function jO(a,b){this.c=a;this.d=$sd(b)} +function Scb(a){this.b=a;this.a=new ltd} +function Udb(a){Gdb.call(this);this.a=a} +function ljb(a){this.c=a;this.a=new njb} +function Gjb(){Djb.call(this,'VALUE',1)} +function Gqb(a){this.f=a;this.a=new jud} +function Lab(a){Kab();return Osd(Iab,a)} +function ugb(a,b){return _kd(a.a,a.b,b)} +function J4(a,b){return Eqd(a.a,mnd(b))} +function K4(a,b){return Eqd(a.b,mnd(b))} +function K3(a,b){return a.substr(7,b-7)} +function S$(a,b){b.wf(a.a,a.c,true,a.b)} +function O$(a,b,c){a.a=b;a.b=c;return a} +function Jwb(a,b,c){Iwb(a,new red(b),c)} +function bhb(a,b,c){c!=null&&eld(a,b,c)} +function tLb(a,b,c){return Cib(a.a,b,c)} +function hwb(a){return new myb(a.a,a.c)} +function Swb(a){return U(a)==PXc?null:a} +function a1b(a){return a?new js(a):null} +function IOb(){this.a=false;this.b=null} +function nwb(a){this.a=a;this.b=new Awb} +function IWb(){Gdb.call(this);rVb(this)} +function $Fb(a){sl(a.a);ZFb()&&FEb(a.a)} +function oEb(a){a.f=true;a.b.pb(lEb(a))} +function bSb(a){Bd(a,a.b.a.a.length!=0)} +function Y1b(a,b){return -a.c<=b&&b<=-1} +function l1b(a){i1b();return h1b[a-1].a} +function ZOb(b,a){b.chiralFlagVisible=a} +function Udc(){Ldc.call(this,'article')} +function uec(){Ldc.call(this,'marquee')} +function yec(){Ldc.call(this,'menubar')} +function rgc(){Ldc.call(this,'toolbar')} +function sgc(){Ldc.call(this,'tooltip')} +function ngc(){Ldc.call(this,'tablist')} +function kec(){Ldc.call(this,'heading')} +function qec(){Ldc.call(this,'listbox')} +function bmc(){Slc.call(this,'FLEX',17)} +function dmc(){Slc.call(this,'BLOCK',1)} +function jmc(){Slc.call(this,'TABLE',7)} +function $mc(){Vmc.call(this,'FIXED',3)} +function W9b(a,b,c,d){U9b(this,a,b,c,d)} +function Lgc(e,a,b,c,d){e.rect(a,b,c,d)} +function Bgc(c,a,b){c.addColorStop(a,b)} +function gjc(c,a,b){c.setAttribute(a,b)} +function sjc(b,a){return b.toDataURL(a)} +function zuc(a){return Auc(a.l,a.m,a.h)} +function Ibd(a){Hbd();return Lbd(Fbd,a)} +function rmd(a){qmd();return Cnd(),''+a} +function Bld(a){old();return a.nodeName} +function itd(a){return a.ab?1:0} +function Wxd(a,b){Sxd();return Gxd(a,b)} +function Xxd(a){Sxd();return Hxd(Rxd,a)} +function Ivd(){Fvd.call(this,'Range',2)} +function Nhd(a){wdc.call(this);this.a=a} +function Dqc(a){this.d=new ltd;this.c=a} +function iud(a){this.c=a;this.b=a.a.b.a} +function qPd(a){this.Ob(!a?null:a.Cb())} +function Ur(a){a.a=suc(_5c,lyd,1,0,5,1)} +function eTb(){eTb=p9c;dTb=new qad(0,0)} +function eo(a){this.a=a;this.b=new Vn(a)} +function lf(a,b){sf(a.a,b,null);return a} +function mf(a,b){sf(a.a,null,b);return a} +function uB(a,b){!!b&&Wr(a.a,b);return a} +function o5b(a,b,c){Wr(a.b,b);Wr(a.c,c)} +function AG(a,b){return !!a.i&&RF(a.i,b)} +function YK(a,b){return Nr(a,b)&&Nr(b,a)} +function Dnd(a,b){return a.charCodeAt(b)} +function RC(a,b){return new QC(b,a,null)} +function Dw(a,b){a.e=b;!!a.f&&eIb(a.f.a)} +function ML(a,b){b.a?(a.c=a.a):(a.c=a.b)} +function QM(a,b){TM(a);Jl(a,b.c);a.b=b.c} +function fp(a){Hi(a.e);a.b=null;a.c=null} +function HB(){HB=p9c;FB=new NB;GB=new OB} +function VL(){VL=p9c;UL=new qad(ZBd,ZBd)} +function WM(a){UK.call(this,a,(QQ(),OQ))} +function oN(a){pN.call(this,a,(Os(),Ns))} +function EN(a){FN.call(this,a,new XM(a))} +function o0(a,b){p0.call(this,a,b,false)} +function rn(){on.call(this,'VERTICAL',1)} +function Gf(){Ff=Yxd(function(a){Kf(a)})} +function ccd(){if(!Ybd){mdd();Ybd=true}} +function bcd(){if(!Tbd){ldd();Tbd=true}} +function IV(a,b){!!b&&Wr(a.a,b);return b} +function N1(a,b){wVb(a.b.a,b);a0b(a.a,b)} +function iO(a,b){return a.Ug(b)&&a.Tg(b)} +function DX(a){return Aac(a.Yh(),a.Zh())} +function Twb(a){return a.c?a.c.Ji():null} +function LGb(a){return Hnd(iyd,a)?null:a} +function yfb(a){zfb.call(this,a,new teb)} +function ibb(){jbb.call(this,new dbb,'')} +function Tlb(){rlb();Vlb.call(this,null)} +function lab(a,b){U7();Z7.call(this,a,b)} +function IY(a,b,c){bU(a.f).Ah(b,a.d,c,c)} +function eZ(a,b,c,d,e,f){a.fl(f,b,c,d,e)} +function cNb(a,b){Iqd(a.b,b.Ic(),b.ld())} +function THb(a){UHb(a,_Ib(a.i,a.b).Vn())} +function _Hb(a){return _Ib(a.i,a.b).Vn()} +function dNb(a){return tPb(Fqd(a.b,a.a))} +function VVb(a,b){return ssd(dsd(a.n),b)} +function YVb(a,b){return ssd(dsd(a.p),b)} +function gWb(a,b){return tsd(dsd(a.p),b)} +function fWb(a,b){return tsd(dsd(a.n),b)} +function fVb(a,b){return Zr(a.a,b,0)!=-1} +function J5b(a,b){return Zr(a.f,b,0)!=-1} +function w6b(a){return ic((z6b(),y6b),a)} +function ucc(a){return a.b==null?'=':a.b} +function Gcc(a){return ic((Jcc(),Icc),a)} +function $cc(a){return ic((bdc(),adc),a)} +function KOb(a){Iud(a);return new JOb(a)} +function u6b(a){s6b();return !!a&&f6b==a} +function KEb(a){(abd(),a.U).maxLength=15} +function pVb(a){qVb.call(this,a,new pad)} +function zec(){Ldc.call(this,'menuitem')} +function rec(){Ldc.call(this,'listitem')} +function fec(){Ldc.call(this,'document')} +function iec(){Ldc.call(this,'gridcell')} +function ogc(){Ldc.call(this,'tabpanel')} +function vgc(){Ldc.call(this,'treeitem')} +function ugc(){Ldc.call(this,'treegrid')} +function cgc(){Ldc.call(this,'rowgroup')} +function _dc(){Ldc.call(this,'combobox')} +function Z3b(a,b){this.d=a;this.c=Y3b(b)} +function jbb(a,b){this.b=a;this.a='\\'+b} +function $Ob(b,a){b.atomIndicesVisible=a} +function cPb(b,a){b.carbonLabelVisible=a} +function xic(a,b){a.c=Aic(a.c,[b,false])} +function Vic(a){return (ujc(),tjc).Cn(a)} +function Wic(a){return (ujc(),tjc).Dn(a)} +function Zic(a){return (ujc(),tjc).Hn(a)} +function ajc(a){return (ujc(),tjc).In(a)} +function bjc(a){return (ujc(),tjc).Mn(a)} +function cjc(a){return (ujc(),tjc).Jn(a)} +function Skc(a){return (ujc(),tjc).En(a)} +function Tkc(a){return (ujc(),tjc).Fn(a)} +function ilc(a){return (ujc(),tjc).wn(a)} +function jlc(a){return (ujc(),tjc).xn(a)} +function rlc(a){return (ujc(),a).touches} +function vlc(a){return (ujc(),a).options} +function Orc(){Orc=p9c;krc();Nrc=new ltd} +function e2(){e2=p9c;c2=new g2;d2=new h2} +function emc(){Slc.call(this,'INLINE',2)} +function imc(){Slc.call(this,'RUN_IN',6)} +function Nmc(){Kmc.call(this,'HIDDEN',1)} +function Dmc(){zmc.call(this,'BOLDER',2)} +function Omc(){Kmc.call(this,'SCROLL',2)} +function Xmc(){Vmc.call(this,'STATIC',0)} +function Onc(){Lnc.call(this,'NOWRAP',1)} +function did(a){this.a=[];aid(this,a,'')} +function dbd(a){abd();return $ad._n(a,0)} +function Dld(a){old();return a.nodeValue} +function ild(a,b){return Pkd(Kld(a.a,b))} +function kld(a,b){return Pkd(Ald(a.a,b))} +function z9c(a,b){return new RegExp(a,b)} +function lgd(a,b){return abd(),a.rows[b]} +function zgd(a){return (abd(),a.U).width} +function kad(a){return qvc(a.a)^qvc(a.b)} +function Lvd(a,b){return Aqd(fvd(a.a,b))} +function Oud(a,b){return a.a!=null?a.a:b} +function rtd(a,b){return a.a.qp(b)!=null} +function Ond(a,b){return a.lastIndexOf(b)} +function Nnd(a,b,c){return a.indexOf(b,c)} +function Auc(a,b,c){return {l:a,m:b,h:c}} +function Ggc(d,a,b,c){d.drawImage(a,b,c)} +function Txd(a,b,c){Sxd();zxd(Rxd,a,b,c)} +function Ztd(a,b){if(a.a){cud(b);bud(b)}} +function Ncd(a){(ujc(),tjc).Bn(a);Ocd(a)} +function Wh(a){xic((pic(),oic),new Yh(a))} +function wl(a){!a.d&&Cl(a,a.o);return a.d} +function ag(a,b){(abd(),a.U).style[czd]=b} +function hg(a,b){(abd(),a.U).style[ezd]=b} +function Dn(a){(abd(),a.U).style[yAd]=ozd} +function am(a){if(a.a){a.a.tc();a.a=null}} +function cs(a){return wwd(a.a,a.a.length)} +function Jn(a){a.d.M&&Lid(a.c,Kid(a.c)+1)} +function vm(a){a.n=false;kbd((abd(),a.U))} +function nA(a){a.n=a.Xf();a.n.eb();a.Vf()} +function dD(a,b){a.a!=b&&(a.i=null);a.a=b} +function Hu(a,b){Mt.call(this,a);this.a=b} +function fJ(a,b){$G.call(this,a);this.e=b} +function zJ(a,b){dH.call(this,a);this.a=b} +function BJ(a,b){$G.call(this,a);this.a=b} +function Nn(a){Mn.call(this);En(this.d,a)} +function lL(a,b){$G.call(this,a);this.b=b} +function HM(a,b){$G.call(this,a);this.b=b} +function Tc(){Jc(this);Lc(this);this.bb()} +function xf(){this.c=new es;this.b=new es} +function nk(){nk=p9c;mk=new ok;lk=new ltd} +function Lud(){Lud=p9c;Kud=new Pud(null)} +function ol(){ol=p9c;nl=(Vjd(),Vjd(),Ujd)} +function HF(a,b,c){return AF(b,kH(c,a.a))} +function tK(a,b,c){return a.o.i.a.o.k?c:b} +function $M(a,b){return b?a.b:a.b-a.b%ZBd} +function pT(a,b){return hV(a,b.s,b.u,b.n)} +function mV(a,b,c){return new oV(a,b,b,c)} +function FX(a,b,c,d){return a.v.Jf(b,c,d)} +function Vu(a,b){this.a=a;Uu.call(this,b)} +function hQ(a,b){iQ.call(this,a,b,new kS)} +function lQ(a,b){$G.call(this,a);this.a=b} +function UO(a,b){$G.call(this,a);this.c=b} +function lV(a,b){PU.call(this,a);this.c=b} +function nbb(a){mbb.call(this,new cbb(a))} +function obb(a){nbb.call(this,new ebb(a))} +function veb(a,b){!!b&&Wr(a.a,new o9b(b))} +function ydb(a,b){return !!b&&Nr(a.n,b.a)} +function Vnb(a,b){return b>=0?a.a[b]:null} +function ucb(a){return a.length==0?null:a} +function $eb(a){return Xrd(),new ysd(a.b)} +function jwb(a){return new sHb(a.c.i,a.b)} +function oBb(a,b){return new HCb(b,a,dyd)} +function qCb(a,b){return !a.c&&vCb(a.f,b)} +function Slb(a,b,c){O8c(b,a.t)&&ew(a.G,c)} +function $Ib(a,b,c){Ytd(a.a,b,new fJb(c))} +function nkb(a,b,c){bcb(a.a,b,c);return c} +function Okb(a,b,c){cn(a.b,b,c,(Os(),Fs))} +function aLb(a,b,c){this.a=new BLb(a,b,c)} +function LVb(a,b,c){return tqc(a.b,b,a,c)} +function TVb(a){return Xrd(),new ysd(a.i)} +function pjb(a){Xrd();a.Fd(null);return a} +function x$b(a,b){wx(a.a,b,null);return a} +function y$b(a,b){wx(a.a,null,b);return a} +function bGb(a,b){gg(a.a.a,b);gg(a.a.c,b)} +function Qub(a,b){a.b.qe();Hub(a.a,a.c,b)} +function myb(a,b){nyb.call(this,oyb(a),b)} +function XZb(a,b){YZb.call(this,a,b,true)} +function eec(){Ldc.call(this,'directory')} +function egc(){Ldc.call(this,'scrollbar')} +function dgc(){Ldc.call(this,'rowheader')} +function ggc(){Ldc.call(this,'separator')} +function vcc(a,b){tcc();this.b=a;this.a=b} +function oRb(a,b){lRb();this.b=a;this.a=b} +function YT(a){VT();this.a=a;this.b=ZT(a)} +function rQ(){this.a=new CR;this.b=new ER} +function iPb(b,a){b.valenceErrorVisible=a} +function Qic(b,a){return b.removeChild(a)} +function Lic(b,a){return b.appendChild(a)} +function Jgc(b,a){return b.measureText(a)} +function $ic(b,a){return parseInt(b[a])|0} +function xkc(a,b){return vjc((ujc(),a),b)} +function Qkc(a){return wjc((ujc(),a),tFd)} +function w9c(c,a,b){return a.replace(c,b)} +function Lfd(a,b,c){return Jfd(a.a.c,b,c)} +function kgd(a,b){return lgd((abd(),a),b)} +function Mxd(a,b){for(p in b){a[p]=b[p]}} +function uld(a){old();return a.attributes} +function vld(a){old();return a.childNodes} +function Fld(a){old();return a.parentNode} +function Old(){old();this.a=new DOMParser} +function qmd(){qmd=p9c;omd=false;pmd=true} +function Vcd(){Vcd=p9c;Icd();Fcd[dLd]=Mcd} +function Acd(a){if(!ycd){a.co();ycd=true}} +function pid(a){vdd.call(this,a);sg(this)} +function vsd(a){osd.call(this,a);this.a=a} +function wsd(a){qsd.call(this,a);this.a=a} +function vjd(){sjd.call(this,'JUSTIFY',1)} +function hnc(){enc.call(this,'JUSTIFY',1)} +function Mmc(){Kmc.call(this,'VISIBLE',0)} +function tmc(){pmc.call(this,'OBLIQUE',2)} +function Emc(){zmc.call(this,'LIGHTER',3)} +function Ovd(a){Nvd.call(this);Lr(this,a)} +function hNd(a){Jl(this,a.c);oI(this,a.c)} +function zNd(a){Jl(this,a.c);VG(this,a.c)} +function kpd(a){Nod();lpd.call(this,a,10)} +function SNd(){return new ibc(this.a,0,0)} +function Zwd(a){return a.$H||(a.$H=++Ywd)} +function ymd(a){return a>=56320&&a<=57343} +function kvc(a,b){return a!=null&&gvc(a,b)} +function fc(a){return a.j!=null?a.j:''+a.k} +function Nud(a){Swd(a.a!=null);return a.a} +function dtd(a,b){return !!b&&a.b[b.k]==b} +function Xnd(a,b,c){return a.substr(b,c-b)} +function Xgc(d,a,b,c){d.strokeText(a,b,c)} +function Xwd(b,c,d){try{b[c]=d}catch(a){}} +function Vf(a){return _ic((abd(),a.U),azd)} +function Sf(a){return $ic((abd(),a.U),$yd)} +function Tf(a){return $ic((abd(),a.U),_yd)} +function sh(a){(Sfd(),Rfd).Fo((abd(),a.U))} +function $(){$=p9c;Z=twd((Hmd(Cvc),Cvc.p))} +function Jc(a){a.k=suc(b6c,lyd,2352,0,0,1)} +function Pl(a){Ol.call(this);Ydd(this.o,a)} +function Ql(a){Ol.call(this);Zdd(this.o,a)} +function qn(){on.call(this,'HORIZONTAL',0)} +function Fn(){Jg();nm.call(this,false,zAd)} +function dz(){$y.call(this);this.a=new Cqc} +function Ue(){this.b=new es;this.a=new std} +function Zj(){this.a=new ltd;this.b=new ak} +function Yk(a,b){this.a=a;this.b=new Nk(b)} +function Hc(){Fc();this.a=true;this.b=true} +function HD(a){this.b=a;this.a=new Yu(a.A)} +function KC(a){return a.a.sd()?a:new js(a)} +function uz(a){sz();return ic((xz(),wz),a)} +function kz(a){iz();return ic((nz(),mz),a)} +function xh(a){if(Bh(a)){return}a.j&&Dh(a)} +function sn(a){if(a.f){throw I8c(new dnd)}} +function iL(a){aL.call(this,a,(s6b(),g6b))} +function ED(a,b,c){FD.call(this,a,a.C,b,c)} +function dS(a,b,c,d){eS.call(this,a,b,c,d)} +function bV(a,b,c){a.k&&a.i.Fh().Ch(b,a,c)} +function kP(a,b,c){WT(a.i,b,a.o.i.j,KBd,c)} +function JY(a,b,c,d){bU(a.f).Ah(b,a.d,c,d)} +function RZ(a,b,c,d){cU(a.d).Dh(b,a.c,c,d)} +function XZ(a,b,c,d){WZ.call(this,b,a,c,d)} +function $Z(a,b,c,d){WZ.call(this,b,a,c,d)} +function eX(a,b,c,d){return b-c.Nh()*a.a-d} +function VQ(a,b){return WQ(a)?0.22*b*0.5:0} +function x$(a){return a!=null&&a.length!=0} +function FG(a){a.k=null;a.j=null;a.a=false} +function YI(a){a.b=null;mIb(a.a,(Ez(),Az))} +function yw(a){a.n=(sz(),rz);a.j=(iz(),hz)} +function nN(a){a.b.b=false;xN(a.e);xN(a.f)} +function wn(a,b,c){sn(a);a.f=b;a.c=c;xn(a)} +function I9(a,b,c,d){p8.call(this,a,b,c,d)} +function Vcb(a,b,c,d){return a.b.Ij(b,c,d)} +function ndb(a,b){hs(a.n,b)!=-1||Wr(a.n,b)} +function odb(a,b){hs(a.p,b)!=-1||Wr(a.p,b)} +function pdb(a,b){hs(a.q,b)!=-1||Wr(a.q,b)} +function vdb(a,b){hs(a.o,b)!=-1||Wr(a.o,b)} +function Vvb(a,b){bt(a.b.nd(b),new Yvb(a))} +function awb(a,b){return Zvb(new _vb(b),a)} +function Nwb(a,b){rm(a.b,false);Wwb(a.a,b)} +function YN(a,b){this.a=new aO(a);this.b=b} +function Yfb(){this.a=new es;this.b=new es} +function kcb(){this.a=new es;this.b=new es} +function Neb(){this.b=new is;this.a=new is} +function JOb(a){DOb();this.a=true;this.b=a} +function zob(a){vd.call(this,oHd);this.a=a} +function xRb(a,b){Uu.call(this,b);this.a=a} +function dOb(a){_Nb();fOb.call(this,a,$Nb)} +function _bb(){_bb=p9c;$bb=new Rs(16,3,28)} +function dyb(a,b,c,d){qd(b,new uyb(a,d,c))} +function ZBb(a,b){return !!a.c&&Cqd(a.c,b)} +function EVb(a,b){sVb(a,dsd(a.o).b.vd(),b)} +function TWb(a,b){PWb(a,Qqd(a.a.i,b.Me()))} +function a5(a,b){a.a=a.a+(''+b.substr(11))} +function f2b(a){this.a=new pad;e2b(this,a)} +function IRb(){this.a=new es;this.b=new es} +function kVb(){this.b=new es;this.a=new es} +function F0b(a){E0b();this.a=a;this.b=null} +function y2b(a){h2b();v2b.call(this,a.k+1)} +function H4b(a,b,c){G4b.call(this,a,b,c,0)} +function Tac(a,b){Sac.call(this,a.a,a.b,b)} +function JWb(a){Hdb.call(this,a);rVb(this)} +function Rxb(a){xg(a,(Vxb(),Txb));return a} +function Sxb(a){xg(a,(Vxb(),Uxb));return a} +function uQb(a){if(a<=0){return 0}return a} +function ulc(a){(ujc(),a).options.length=0} +function nlc(a){return (ujc(),a).keyCode|0} +function olc(a){return !!(ujc(),a).metaKey} +function mlc(a){return !!(ujc(),a).ctrlKey} +function Yic(a){return (ujc(),a).innerHTML} +function Juc(a){return a.l+a.m*vzd+a.h*$Kd} +function Nu(a){!!a.p&&!!a.p.a&&Yv(a,a.p.a)} +function t5b(a){!!a.b&&c5b(new j5b(a,a.b))} +function ebd(a,b){abd();return $ad.bo(a,b)} +function Cad(a,b){return new $wnd.C2S(a,b)} +function Btc(a,b){a.r.setHours(b);ztc(a,b)} +function yld(a,b){old();return nld._o(a,b)} +function $id(a,b){ded(a.a,b);kqc(a,mnd(b))} +function H9c(a,b){nod(a.a,R9c(b));return a} +function Lqd(a){a.d=new Ctd(a);a.e=new Qtd} +function Utd(a){a.b=new dud(a);a.c=new ltd} +function Yqd(a){a.d.Dd(a.c);a.b=a.c;a.c=-1} +function Cid(a){if(_i(a)){a.c=null;yid(a)}} +function Ard(a){if(!a){throw I8c(new Isd)}} +function Swd(a){if(!a){throw I8c(new Eud)}} +function jwd(a,b){if(ewd){return}Wr(a.a,b)} +function Kxd(a,b){return a!=null?a[b]:null} +function dud(a){eud.call(this,a,null,null)} +function amc(){Slc.call(this,'INITIAL',16)} +function Ymc(){Vmc.call(this,'RELATIVE',1)} +function Zmc(){Vmc.call(this,'ABSOLUTE',2)} +function Qnc(){Lnc.call(this,'PRE_LINE',3)} +function Rnc(){Lnc.call(this,'PRE_WRAP',4)} +function xid(a){this.c=a;this.a=!!this.c.O} +function ek(a){this.b=a;this.d=hAd;this.a=0} +function QNd(){return cbc(this.a,this.a.c)} +function oPd(){return 'safe: "'+this.a+'"'} +function xi(a,b){return a.a?b.dataset:yi(b)} +function rt(a,b){return jvc(a)?a.zd(b):a[b]} +function of(a,b){this.a=a;b.ub(a,new Af(a))} +function fx(a){this.a=new jx(this);this.c=a} +function jx(a){this.c=a;this.b=new _y(this)} +function hPd(a){!!L5b(this.a,a)&&hTb(this)} +function PA(a,b,c){QA.call(this,a,b,c,null)} +function nw(a,b,c){ow.call(this,a,b,true,c)} +function DD(a,b){FD.call(this,a,a.C,b,null)} +function aN(a,b){a.c=b;a.d=uN(b.b);a.f=null} +function PL(a,b,c){a.b=b;(b>=0||c)&&(a.a=c)} +function kO(a,b){bt(PGb(a.a,0),new pO(a,b))} +function tO(a,b){bt(Xob(a.b,b),new yO(a,b))} +function AO(a,b,c){Cqd(a.b,b)&&Hqd(a.b,b,c)} +function qQ(a,b,c){LQb(DR(b),new tQ(c,a.a))} +function oC(a,b){return !Zrd(a.Ml(),b.Ml())} +function zh(a){if(Bh(a)){return}!a.j&&Dh(a)} +function pb(a){if(a<=1){return a}return 2-a} +function Hmd(a){if(a.p!=null){return}Smd(a)} +function tn(a){if(!a.f){throw I8c(new dnd)}} +function KR(a){LR.call(this,a,false,new es)} +function wT(a,b){uT.call(this,a,a?0:2,!a,b)} +function xT(a,b){vT.call(this,a,a?0:2,!a,b)} +function L$(a,b){J$();return new K$(H$,a,b)} +function gV(a,b,c){return QW(new RW(b,c),a)} +function bU(a){return Osd(a.b,a.a.a.j).Gh()} +function cU(a){return Osd(a.b,a.a.a.j).Hh()} +function lw(a){zIb(a.a);a.j.c=true;a.w.Hf()} +function mw(a){AIb(a.a);a.j.c=true;a.w.Hf()} +function Z4(a){this.a=a;X4.call(this,a,CDd)} +function Eab(a,b,c,d){p8.call(this,a,b,c,d)} +function zbb(a,b){xbb.call(this,a);this.a=b} +function zfb(a,b){xbb.call(this,a);this.a=b} +function Jfb(a,b){Ffb.call(this,a);this.a=b} +function ggb(a){$fb.call(this);Xr(this.a,a)} +function dU(a){this.b=new Tsd(kAc);this.a=a} +function UR(){this.c=new yod;this.d=new _ud} +function W4(){this.a=new ltd;this.b=new _ud} +function Qgb(){this.a=new es;this.b=new ltd} +function bxd(){bxd=p9c;$wd=new S;axd=new S} +function fib(){fib=p9c;eib=(i1b(),h1b[5].c)} +function Qeb(a,b){return new W0b(b,a.a,a.c)} +function seb(a){return yeb(new Ceb(s9c(a)))} +function eBb(a,b,c){return UBb(a.a,b,a.c,c)} +function zAb(a,b,c){BAb(a,a.a,b,c);a.d=true} +function Mab(a,b){Psd(Iab,a,b);Iqd(Jab,b,a)} +function Mzb(a,b){wyb.call(this,a);this.a=b} +function rzb(a,b){wyb.call(this,a);this.c=b} +function xyb(a,b){wyb.call(this,a);this.b=b} +function Njb(a){Ojb.call(this,new Usd(a.a))} +function nHb(a){rm(a,false);eq(a.a);eq(a.a)} +function oHb(a){Jg();this.a=a;Bm.call(this)} +function syb(a){Jg();this.a=a;Bm.call(this)} +function tEb(a){Jg();this.a=a;Bm.call(this)} +function CEb(a){return _ic((abd(),a.U),OHd)} +function PPb(a,b,c,d){return KPb(a.a,b,c,d)} +function RHb(a,b){tqc(a.e,(aF(),_E),null,b)} +function SHb(a,b){tqc(a.e,(mF(),lF),null,b)} +function MUb(a,b){GUb(a,b);return a.a.Rm(b)} +function pP(a){!a.b&&(a.b=oP(a));return a.b} +function qQb(a,b){nQb.call(this,a);this.a=b} +function iLb(a,b){gLb.call(this,b);this.a=a} +function oLb(a,b){gLb.call(this,b);this.a=a} +function o0b(a,b){l0b.call(this,b);this.a=a} +function n0b(a,b){k0b.call(this,b);this.a=a} +function n9b(a){m9b.call(this);Xr(this.a,a)} +function v2b(a){h2b();w2b.call(this,a,null)} +function I3b(a){eTb();J3b.call(this,a,null)} +function URb(a){Jg();this.a=a;Bm.call(this)} +function _Sb(a,b){this.a=a;this.b=new vt(b)} +function vjc(a,b){return a.createElement(b)} +function Q0b(a){return !a.c.fn()&&!a.a.fn()} +function Y9b(a){return new W9b(a.a,a.b,0,0)} +function tGb(){return typeof $wnd.Blob!=$Id} +function plc(a){return !!(ujc(),a).shiftKey} +function fbd(a){abd();return yjc((ujc(),a))} +function gbd(a){abd();return Ajc((ujc(),a))} +function Rbd(){ol();tl.call(this,skc($doc))} +function Ufd(){Sfd();Gg.call(this,Rfd.Eo())} +function hmc(){Slc.call(this,'LIST_ITEM',5)} +function aPd(a){(!a||a!=this.b)&&(this.b=a)} +function Tkb(a){if(a.a){throw I8c(new dnd)}} +function tlc(a){(ujc(),a).stopPropagation()} +function xe(a,b){Zdd(xl(a.a),b);Zdd(a.a.o,b)} +function Qed(a,b,c){b?Agd(c,a.b):Agd(c,a.a)} +function Gkd(c,a,b){c.setRequestHeader(a,b)} +function Pc(a,b){a.e=b;b!=null&&Xwd(b,ryd,a)} +function Pi(a,b){return $wnd.setTimeout(a,b)} +function mh(a,b){return uh(a,b,a.b.a.length)} +function oh(a,b){return vh(a,b,a.b.a.length)} +function yrd(a){return a.c-a.b&a.a.length-1} +function Vd(a,b){return a.a?a.a.c.fb(b):null} +function ls(a){return a!=null?new ks(a):null} +function st(a){return jvc(a)?a.vd():a.length} +function nj(a){a.d==(xj(),wj)&&a.Fc();a.d=vj} +function Erd(a){a.b=a.a++;return a.c.a[a.b]} +function Yv(a,b){Uo(a.a,(Lz(),Kz));WG(b,a.a)} +function bw(a,b){a.d=b;Ov(a,(Lz(),Iz));Uv(a)} +function Rw(a,b){og(b,a.e,(Loc(),Loc(),Koc))} +function Hk(a,b){og(b,a.b,(lpc(),lpc(),kpc))} +function Nf(a,b){eg(a,jg(a.xb())+'-'+b,true)} +function ih(a,b,c){jh(a,Zh(new _h(a.c),b,c))} +function AT(a,b,c){BT.call(this,a,b,c,false)} +function hI(a){QH();$G.call(this,a);ZH(this)} +function Vl(){ol();Ol.call(this);dg(this,Rl)} +function gs(a){Ur(this);Awd(this.a,0,a.wd())} +function zE(a){return new Tac(a.Lh(),a.Ki())} +function M$(a){J$();return new K$(I$,a,null)} +function Cnb(a,b){return Ikb(new Jkb(a.d,b))} +function U8(a){return a.length>0&&a.length<4} +function Xob(a,b){return JQb(new KQb(b,a.a))} +function spb(a,b){return new qqb(b,a.a,true)} +function Bwb(a,b){return a?mrc(b,a,null):'-'} +function VBb(a,b){return a.c?Eqd(a.c,b):null} +function JH(a,b){a.a=GH(a);a.c=3;yQ(a.o.f,b)} +function ZH(a){a.a=new sud;a.b=new sud;a.j=0} +function bfb(){this.b=new std;this.a=new ltd} +function ecb(a){this.a=a;this.b=new gcb('m')} +function LRb(a,b){this.b=b;this.a=new _Rb(a)} +function kob(a,b,c,d){gob.call(this,a,b,c,d)} +function E9(a,b,c,d){J9(b,a.b,(W9(),N9),c,d)} +function hVb(a,b){return Yr(a.b,Zr(a.a,b,0))} +function gVb(a,b){return Yr(a.a,Zr(a.b,b,0))} +function zOb(a){if(a){return us(a)}return {}} +function c1b(a,b){!!a&&!!b&&b.td(a);return b} +function IJb(a,b){if(!b){zJb(a);return}a.a=b} +function Thc(){!Phc&&(Phc=Uhc());return Phc} +function Kkb(){Lkb.call(this,($e(),$e(),Xe))} +function HNb(){INb.call(this,null,null,null)} +function WFb(){UFb();vFb.call(this,SFb,null)} +function ncc(a,b){mcc.call(this,a,b,'',true)} +function itc(a){Qsc();htc.call(this,a,false)} +function zkc(a){return wjc((ujc(),a),'file')} +function Hkc(a){return (ujc(),tjc).sn(a,OJd)} +function Oic(a,b){return (ujc(),tjc).Kn(a,b)} +function Wkc(b,a){return b.getElementById(a)} +function Eld(a){old();return a.ownerDocument} +function frd(a,b){var c;c=a.e;a.e=b;return c} +function hbd(a,b,c){abd();$ad.eo(a,lbd(b),c)} +function Dgc(e,a,b,c,d){e.clearRect(a,b,c,d)} +function abc(){abc=p9c;_ac=new hbc(0,0,0,0)} +function Sfd(){Sfd=p9c;Rfd=(Vjd(),Vjd(),Tjd)} +function Jkd(){Jkd=p9c;Ikd=(old(),old(),nld)} +function vvd(a){wvd.call(this,a,(Evd(),Avd))} +function _lc(){Slc.call(this,'TABLE_ROW',15)} +function gPd(){return T1(this.a,(O$b(),M$b))} +function ctd(a,b){return kvc(b,10)&&dtd(a,b)} +function etd(a,b){return kvc(b,10)&&ftd(a,b)} +function ywd(a,b){return Dwd(new Array(b),a)} +function ivc(a){return String.fromCharCode(a)} +function Jtc(a){this.r=new $wnd.Date(c9c(a))} +function rqc(a,b){this.a=new Eqc(b);this.b=a} +function Lpc(){this.a='ontouchstart' in $wnd} +function iNd(a){VG(this,a.c);this.o.i.w.Hf()} +function Vtd(a){Lqd(a.c);a.b.b=a.b;a.b.a=a.b} +function Etd(a,b){var c;c=a[QAd];c.call(a,b)} +function Mc(a,b){Pwd(true,qyd);a.f=b;return a} +function vc(a){rc();this.a=(Fc(),Ec);this.a=a} +function kf(a,b,c){this.b=a;this.c=b;this.a=c} +function md(a,b,c){gc.call(this,a,b);this.a=c} +function Fg(){Gg.call(this,(abd(),wkc($doc)))} +function eb(){eb=p9c;db=twd((Hmd(wvc),wvc.p))} +function ib(){ib=p9c;hb=twd((Hmd(xvc),xvc.p))} +function ob(){ob=p9c;nb=twd((Hmd(yvc),yvc.p))} +function wb(){wb=p9c;vb=twd((Hmd(zvc),zvc.p))} +function Cb(){Cb=p9c;Bb=twd((Hmd(Avc),Avc.p))} +function Pb(){Pb=p9c;Ob=twd((Hmd(Dvc),Dvc.p))} +function Ub(){Ub=p9c;Tb=twd((Hmd(Fvc),Fvc.p))} +function rc(){rc=p9c;qc=twd((Hmd(Ivc),Ivc.p))} +function _l(a){bm(a,!!a.b.Uc()&&Ad(a.b.Uc()))} +function lq(a,b){mq(Rf(a.a.i),b)||a.a.b.to(b)} +function Il(a,b){Xdd((!a.d&&Cl(a,a.o),a.d),b)} +function Kg(a,b){!a.u&&(a.u=new es);Wr(a.u,b)} +function Oi(a,b){return $wnd.setInterval(a,b)} +function ao(a,b){bo(b,a.a);return $n(a,b.b.a)} +function nB(a,b){this.a=a;this.c=a.f;this.b=b} +function JD(a,b){this.b=a;this.c=a.e;this.a=b} +function oD(a,b,c){this.a=c;this.b=a;this.c=b} +function Th(a,b,c){this.a=a;this.b=b;this.c=c} +function _k(a,b,c){this.a=a;this.b=b;this.c=c} +function Rs(a,b,c){this.a=a;this.b=b;this.c=c} +function OF(a,b,c){this.a=a;this.b=b;this.c=c} +function WB(a,b,c){this.b=a;this.a=b;this.c=c} +function WJ(a,b,c){this.b=a;this.a=b;this.c=c} +function EB(a,b,c){this.c=a;this.a=b;this.b=c} +function TJ(a,b,c){this.c=a;this.b=b;this.a=c} +function IK(a,b,c){this.b=a;this.c=c;this.a=b} +function nQ(a,b,c){this.c=a;this.a=b;this.b=c} +function vQ(a,b,c){this.c=a;this.a=b;this.b=c} +function vJ(a,b,c){fJ.call(this,a,b);this.a=c} +function Fz(a,b,c){gc.call(this,a,b);this.a=c} +function pL(a,b,c){gc.call(this,a,b);this.a=c} +function eR(a,b,c){gc.call(this,a,b);this.a=c} +function yR(a,b,c){gc.call(this,a,b);this.a=c} +function jU(a,b,c){gc.call(this,a,b);this.a=c} +function sU(a,b,c){this.c=b;this.a=a;this.b=c} +function pV(a,b,c){this.c=a;this.b=b;this.a=c} +function fX(a,b,c){gc.call(this,a,b);this.a=c} +function mD(a,b,c){nD.call(this,a,dsd(b.r),c)} +function xJ(a){fJ.call(this,a,'\u2022\u2022')} +function aZ(a,b,c){gc.call(this,a,b);this.a=c} +function LY(a,b,c){this.b=a;this.c=b;this.a=c} +function HX(a,b,c){this.w=a;this.u=b;this.v=c} +function n$(a,b,c){this.o=a;this.a=b;this.b=c} +function T$(a,b,c){this.a=a;this.c=b;this.b=c} +function a0(a,b,c){this.c=a;this.a=b;this.b=c} +function u0(a,b,c){this.c=a;this.b=b;this.a=c} +function K$(a,b,c){this.c=a;this.b=c;this.a=b} +function A0(a,b,c){gc.call(this,a,b);this.a=c} +function A5(a,b,c){gc.call(this,a,b);this.a=c} +function T5(a,b,c){gc.call(this,a,b);this.a=c} +function h3(a,b,c){gc.call(this,a,b);this.a=c} +function W6(a,b,c){this.a=a;this.c=b;this.b=c} +function Mcb(a,b){this.a=Icb(a);this.b=Icb(b)} +function Lkb(a){this.a=a;this.b=new Mkb(this)} +function HS(a){DS(this);Xr(this.a,new Srd(a))} +function zpb(a,b,c){Apb.call(this,a,b,null,c)} +function US(a,b,c,d){return TS(a,YS(a,b),c,d)} +function cn(a,b,c,d){wn(Osd(a.a,b),c,d);hn(a)} +function GR(a,b){a.b||IR(a.c,b,false);HR(a,b)} +function uN(a){a.b||vN(a,a.a.md());return a.c} +function cM(a){!a.b&&(a.b=new _td);return a.b} +function Gcb(a,b){b.Aj(a.i,a.c.a);return null} +function rfb(a,b){qfb(a,b,null,null);return a} +function HUb(a,b){GUb(a,b.p);return a.a.Mm(b)} +function IUb(a,b){GUb(a,b.p);return a.a.Nm(b)} +function JUb(a,b){GUb(a,b.p);return a.a.Om(b)} +function KUb(a,b){GUb(a,b.p);return a.a.Pm(b)} +function LUb(a,b){GUb(a,b.p);return a.a.Qm(b)} +function NUb(a,b){GUb(a,b.p);return a.a.Sm(b)} +function $ub(a,b){return !a.a.sd()||!b.a.sd()} +function GOb(a,b){return a.a&&a.b!=null?a.b:b} +function NAb(a){return (p$b(),m$b)==a||o$b==a} +function E6b(a){return Aac(a.c.gn(),a.a.gn())} +function kvb(a){this.c=new lh(a);this.a=hvb()} +function $Gb(a){this.b=a;this.c=new eHb(this)} +function tCb(a,b){this.d=a;this.a=b?b:new FCb} +function F8b(a,b){G8b.call(this,a,aJd,null,b)} +function pcc(a,b,c){qcc.call(this,a,b,c,null)} +function lcc(a,b){mcc.call(this,a,b,'',false)} +function Zlc(){Slc.call(this,'TABLE_CELL',13)} +function ZIb(a){yw(this);zw(this,a);TIb(this)} +function E1b(a){eTb();A1b.call(this);this.a=a} +function G1b(a){eTb();A1b.call(this);this.a=a} +function xdc(a){this.k=new zdc(this);this.t=a} +function kjd(){fjd();ljd.call(this,Qkc($doc))} +function Qsc(){Qsc=p9c;Nsc((Lsc(),Lsc(),Ksc))} +function wI(){wI=p9c;vI=UI(true);uI=UI(false)} +function rwd(a,b){if(ewd){return}!!b&&(a.d=b)} +function Ead(a,b){Bad();Fad();return Cad(a,b)} +function Lld(a,b,c){old();a.setAttribute(b,c)} +function hld(a,b,c,d){a.setAttributeNS(b,c,d)} +function KRb(a,b,c){X5b(c.jh(),!b);$Rb(a.a,c)} +function fic(a,b,c){return a.apply(b,c);var d} +function Jfd(a,b,c){return a.rows[b].cells[c]} +function fnd(a,b){return kvc(b,215)&&b.a==a.a} +function Kd(a,b){return tqc(a.b,(Bi(),Ai),a,b)} +function tt(a,b){return jvc(a)?a.xd(b):pt(a,b)} +function lt(a,b){return a.a[a.a.length]=b,true} +function Wr(a,b){a.a[a.a.length]=b;return true} +function rOd(){this.b.a.md().Zb();return true} +function pI(a){var b;b=MWb();FVb(b,a);return b} +function tf(a){var b;b=new es;Xr(b,a);return b} +function dt(a){var b;b=new ct;at(b,a);return b} +function l2b(a){if(a.e){return a.e.a}return 0} +function jod(a){Cnd();return kod(a,0,a.length)} +function tbd(a){return abd(),a.__eventBits||0} +function bz(a,b){return tqc(a.a,(dF(),cF),a,b)} +function q3(a,b){return p3(a.a.a.o).Id(LWb(b))} +function ru(a,b,c){return Gu(wu(a.c,b,c).xm())} +function eJ(a,b,c){yQ(a.o.f,new rB(a.o.i,b,c))} +function Reb(a,b,c){this.b=a;this.a=b;this.c=c} +function cjb(a,b,c){gc.call(this,a,b);this.a=c} +function fnb(a,b,c){gnb.call(this,a,b,c,false)} +function aY(a,b,c,d,e){PX.call(this,a,b,c,d,e)} +function FN(a,b){GN.call(this,a,b,new oN(a.i))} +function Oz(a,b){a.c.b=OOb(b);return Pz(b,a.c)} +function Snb(a,b){if(b.b.a.T){return}ao(a.a,b)} +function tlb(a,b){b.a&&FOb(b)&&mKb(a.B,EOb(b))} +function fkb(a,b){return oob(a.f,jUb(b.b),b.a)} +function hl(a,b){return a.length>b&&a[b]||null} +function Xnb(a,b,c){this.c=a;this.a=b;this.b=c} +function Inb(a,b,c){this.a=a;this.b=b;this.c=c} +function Pqb(a,b,c){this.a=a;this.b=b;this.c=c} +function frb(a,b,c){this.a=a;this.b=b;this.c=c} +function Rub(a,b,c){this.a=a;this.b=b;this.c=c} +function uyb(a,b,c){this.a=a;this.b=b;this.c=c} +function rAb(a,b,c){this.a=a;this.b=b;this.c=c} +function Iyb(a,b,c){this.a=a;this.c=b;this.b=c} +function CCb(a,b,c){this.a=a;this.c=b;this.b=c} +function HCb(a,b,c){this.a=a;this.c=b;this.b=c} +function xFb(a,b,c){this.a=a;this.c=b;this.b=c} +function lxb(a,b,c){this.d=a;this.c=b;this.a=c} +function Xvb(a,b,c){this.b=b;this.c=c;this.a=a} +function oJb(a,b,c){this.a=a;this.b=b;this.c=c} +function PKb(a,b,c){this.c=a;this.b=b;this.a=c} +function CLb(a,b,c){this.a=a;this.c=b;this.b=c} +function DLb(a,b,c){this.a=a;this.c=b;this.b=c} +function NLb(a,b,c){this.b=a;this.a=b;this.c=c} +function INb(a,b,c){this.b=a;this.a=c;this.c=b} +function Aob(a,b,c){wd.call(this,b,c);this.a=a} +function Zob(a,b,c){xd.call(this,a,b);this.a=c} +function iAb(a,b,c){gc.call(this,a,b);this.a=c} +function cQb(a,b,c){gc.call(this,a,b);this.a=c} +function _Qb(a,b,c){this.c=a;this.a=b;this.b=c} +function cTb(a,b,c){this.c=a;this.b=b;this.a=c} +function LEb(a,b,c){JEb.call(this,a,b,c);Lsc()} +function cUb(a,b,c){gc.call(this,a,b);this.a=c} +function ARb(a,b,c,d,e){a.fillEllipse(b,c,d,e)} +function iTb(a,b){if(_r(a.o,b)){hTb(a);a.bm()}} +function PWb(a,b){b&&SVb(a.a,new u7b);return b} +function POb(a){if(a){return us(a)}return null} +function PIb(a){MIb();return ic((SIb(),RIb),a)} +function _Zb(a){WZb();return ic((c$b(),b$b),a)} +function OOb(a){return jvc(a)?a.vi():a.size||1} +function bIb(a){return _Ib(a.i,a.b).Un().width} +function m_b(a,b,c){gc.call(this,a,b);this.a=c} +function C3b(a,b,c){gc.call(this,a,b);this.a=c} +function t6b(a,b,c){gc.call(this,a,b);this.a=c} +function Jac(a,b,c){gc.call(this,a,b);this.a=c} +function Dcc(a,b,c){gc.call(this,a,b);this.a=c} +function Ycc(a,b,c){gc.call(this,a,b);this.a=c} +function Y4b(a,b,c){this.c=b;this.a=a;this.b=c} +function P5b(a,b,c){Q5b.call(this,a,b,cy(a),c)} +function jhc(a,b,c){gc.call(this,a,b);this.a=c} +function phc(a,b,c){gc.call(this,a,b);this.a=c} +function vhc(a,b,c){gc.call(this,a,b);this.a=c} +function Ehc(a,b,c){gc.call(this,a,b);this.a=c} +function E8b(a){G8b.call(this,a.e,a.c,a.a,a.b)} +function P2b(a,b){a.o!=b&&(a.i=false);yTb(a,b)} +function Z5b(a){!a.a&&(a.a=new ltd);return a.a} +function ndc(a){var b;b=kdc(a);return qdc(a,b)} +function nac(a){lac();return ic((qac(),pac),a)} +function Ykc(a){return ajc(xjc((ujc(),tjc),a))} +function qlc(a){return (ujc(),a).targetTouches} +function Nic(c,a,b){return c.insertBefore(a,b)} +function Ric(c,a,b){return c.replaceChild(a,b)} +function sqc(a,b){!a.a&&(a.a=new es);Wr(a.a,b)} +function Msc(a){!a.a&&(a.a=new utc);return a.a} +function Nsc(a){!a.b&&(a.b=new stc);return a.b} +function Cjb(){Cjb=p9c;Ajb=new Fjb;Bjb=new Gjb} +function Cdd(){Cdd=p9c;Add=new Fdd;Bdd=new Gdd} +function h5(){h5=p9c;g5=new RegExp('^-?\\d+$')} +function U_(a){this.b=new _td;this.a=new d0(a)} +function yad(a,b,c){this.b=a;this.c=b;this.a=c} +function gtd(a,b,c){this.a=a;this.b=b;this.c=c} +function Std(a,b,c){this.a=a;this.b=b;this.c=c} +function uud(a,b,c){this.d=a;this.b=c;this.a=b} +function Pad(a,b,c){gc.call(this,a,b);this.a=c} +function oxd(a,b,c){this.a=c;this.b=a;this.c=b} +function Qhd(b,a){Phd();b.__gwt_resolve=Rhd(a)} +function Ild(a){old();return a.hasChildNodes()} +function xld(a){old();return a.documentElement} +function iod(a){Cnd();return a==null?iyd:s9c(a)} +function Ktc(a){return a<10?'0'+a:(Cnd(),''+a)} +function cmc(){Slc.call(this,'INLINE_FLEX',18)} +function fmc(){Slc.call(this,'INLINE_BLOCK',3)} +function gmc(){Slc.call(this,'INLINE_TABLE',4)} +function wd(a,b){vd.call(this,a);this.gb(Dyd,b)} +function xd(a,b){vd.call(this,a);this.gb(Eyd,b)} +function Kj(){hj();Cj.call(this);this.a=new ltd} +function Xl(a){ol();Ql.call(this,a);dg(this,Rl)} +function uvd(a){Yqd(a.a);mvd(a.c,a.b);a.b=null} +function Lv(a,b){YHb(a.a,b);a.j.c=true;a.w.Hf()} +function aw(a,b){kIb(a.a,b);a.j.c=true;a.w.Hf()} +function ew(a,b){a.D=b;Ov(a,(Lz(),Iz));a.w.Hf()} +function Bd(a,b){a.gb(Byd,(qmd(),b?true:false))} +function Bs(a,b){return a?a:Jud(b,'defaultObj')} +function jH(a){return $wnd.Math.atan2(-a.b,a.a)} +function QH(){QH=p9c;OH=$wnd.Math.sqrt(3)*LBd/2} +function g$(){g$=p9c;f$=new vT(true,3,true,hCd)} +function Mu(a){!a.s&&(a.s=new fx(a));return a.s} +function SF(a){!a.e&&(a.e=new lG(a));return a.e} +function _w(a){!a.b&&(a.b=(e_(),d_));return a.b} +function Omd(){var a;a=Lmd(null);a.i=2;return a} +function g_(a,b){this.a=Zsd(b);this.b=new O_(a)} +function Z$(a,b){this.a=a;this.c=b;this.b=nr(a)} +function E$(a,b){this.c=a;this.b=b;this.a=false} +function ejb(a,b){this.b=a;this.c='m1';this.a=b} +function Gib(a,b){this.a=a?a:(g3(),f3);this.b=b} +function irb(a,b,c){hrb.call(this,a,b);this.a=c} +function lrb(a,b,c){hrb.call(this,a,b);this.a=c} +function prb(a,b,c){hrb.call(this,a,b);this.a=c} +function fdb(a){xbb.call(this,a);this.a=new ltd} +function Tz(a){this.c=a;this.b=(iU(),fU)==a?0:1} +function $wb(a,b){Jp.call(this,a,(axb(),_wb),b)} +function Wub(a,b){return Hqc(a.a,(Pw(),Ow),a,b)} +function Ogb(a,b){Nkd(kld(Yr(a.a,b),pFd),'1 1')} +function ywb(a,b){Ft(a.b);zwb(a,b.b);xwb(a,b.a)} +function DA(a){Lqd(a.a.a);Lqd(a.b.a);Lqd(a.c.a)} +function cH(a){a.n=false;a.Rd();!!a.k&&a.k.tg()} +function P7(a){return a.j.a.length+a.a.a.length} +function W7(a){return a.j.a.length+a.c.a.length} +function aIb(a){return _Ib(a.i,a.b).Un().height} +function sLb(a,b){return Cib(a.a,b,(Sgb(),Rgb))} +function vCb(a,b){return a==null?b==null:T(a,b)} +function HEb(a,b){(abd(),a.U)[OHd]=b!=null?b:''} +function ATb(a,b){a.a=b;!!a.A&&SVb(a.A,new u7b)} +function oVb(a,b){a.c=b;!!a.b&&SVb(a.b,new u7b)} +function wlb(a,b){b.a&&FOb(b)&&xkb(a.n,!EOb(b))} +function G3b(a,b){a.b=b;!!a.A&&SVb(a.A,new u7b)} +function pIb(a,b,c){c!=bJb(a.i,b)&&dJb(a.i,b,c)} +function BAb(a,b,c,d){CAb(b,c.Cb(),d);Wr(a.c,c)} +function U9b(a,b,c,d,e){a.c=b;a.a=d;a.d=c;a.b=e} +function NHb(a,b){this.a=b;this.c=a;this.b=true} +function p0b(a,b,c){_Ub.call(this,a,b);this.a=c} +function l8b(a,b,c){g8b.call(this,a,b);this.a=c} +function ETb(a,b){eTb();FTb.call(this,a,b,null)} +function Yyb(a,b){Cic((pic(),new ezb(a,b)),200)} +function wic(a,b){a.a=Aic(a.a,[b,false]);uic(a)} +function GWb(a){!!a.d&&St(a.d.a,(cu(),au)).Nd()} +function Dyb(a){!!a.f&&a.b.a.length!=0&&Lg(a.f)} +function Cdc(a){$wnd.cancelAnimationFrame(a.id)} +function Rgc(b,a){b.globalCompositeOperation=a} +function noc(){noc=p9c;moc=new Joc(Zyd,new ooc)} +function Eoc(){Eoc=p9c;Doc=new Joc(Zzd,new Foc)} +function Boc(){Boc=p9c;Aoc=new Joc($zd,new Coc)} +function voc(){voc=p9c;uoc=new Joc(TId,new woc)} +function yoc(){yoc=p9c;xoc=new Joc(eKd,new zoc)} +function Xoc(){Xoc=p9c;Woc=new Joc(Yyd,new Yoc)} +function _oc(){_oc=p9c;$oc=new Joc(cAd,new apc)} +function cpc(){cpc=p9c;bpc=new Joc(eAd,new dpc)} +function fpc(){fpc=p9c;epc=new Joc(dAd,new gpc)} +function ipc(){ipc=p9c;hpc=new Joc(pKd,new jpc)} +function lpc(){lpc=p9c;kpc=new Joc(qKd,new mpc)} +function opc(){opc=p9c;npc=new Joc(rKd,new ppc)} +function rpc(){rpc=p9c;qpc=new Joc(sKd,new spc)} +function upc(){upc=p9c;tpc=new Joc(tKd,new vpc)} +function Gpc(){Gpc=p9c;Fpc=new Joc(uKd,new Hpc)} +function Qpc(){Qpc=p9c;Ppc=new Joc(vKd,new Rpc)} +function xpc(){xpc=p9c;wpc=new Joc(Yzd,new ypc)} +function usd(a,b,c){return new vsd(a.a.Gd(b,c))} +function oad(a){return 'Point('+a.a+','+a.b+')'} +function irc(){return ['USD','US$',2,'US$','$']} +function RNd(){return dbc(cbc(this.a,this.a.c))} +function qOd(){return !dsd(this.c.i.A.r).a.sd()} +function vid(){pid.call(this,(oid(),$doc.body))} +function $lc(){Slc.call(this,'TABLE_COLUMN',14)} +function kmc(){Slc.call(this,'TABLE_CAPTION',8)} +function Vqc(a,b){frc(rJd,b);return Uqc(a,'',b)} +function qld(a,b){old();return a.appendChild(b)} +function Awd(a,b,c){xwd(c,0,a,b,c.length,false)} +function eud(a,b,c){this.c=a;grd.call(this,b,c)} +function At(a,b){Iud(a);Iud(b);this.a=a;this.b=b} +function ZD(a,b){Ry(a.d.A);Ou(a.d,a.a);Ou(a.d,b)} +function bj(a){if(a.d.a.yc()){return}Oe(a.b,a.c)} +function Xd(a){if(!a.b){return}Xld(a.b);a.b=null} +function dI(a){if(!a.k){return}Zld(a.k);a.k=null} +function eK(a){if(a.b){return fK(a)}return gK(a)} +function Mmd(a){var b;b=Lmd(a);Umd(a,b);return b} +function rf(a){var b;b=new nf;wf(b.a,a);return b} +function PJ(a){var b;b=new OJ;Wr(b.a,a);return b} +function kH(a,b){return new qad(a.a+b.a,a.b+b.b)} +function Ni(a,b){return Yxd(function(){a.hc(b)})} +function h_(a,b){e_();g_.call(this,a,new Srd(b))} +function PC(a,b){QC.call(this,new Idb(b),a,null)} +function p0(a,b,c){q0.call(this,a,b,c,(z0(),y0))} +function eS(a,b,c,d){fS.call(this,a,b,c,d,false)} +function IU(a,b,c,d){JU.call(this,a,b,c,d,false)} +function C9(a,b,c,d){J9(b,a.a,(W9(),L9),c,l8(d))} +function xQ(a){nrd(a.d);nrd(a.c);zQ(a,new FQ(3))} +function xm(a){!a.o&&(a.o=acd(new led(a)));ah(a)} +function TM(a){a.b=null;a.c=null;a.a=false;BM(a)} +function X4(a,b){this.b=new es;Iqd(a.a,b,this.b)} +function uM(a,b){this.a=a;this.b=new es;this.d=b} +function ukb(a,b){this.a=b.a;this.b=b.b;this.c=a} +function u5(a,b){this.i=a;this.p=b;this.a=new es} +function _ab(a,b){return a.b[(a.c+b)%a.b.length]} +function pmb(a){return a!=null?a:'unknown error'} +function Hwb(a,b,c){Iwb(a,new ted(b),new red(c))} +function nJb(a,b,c){Kad(a.a,b);Jad(a.a,c);kJb(a)} +function Mbb(a,b){a.lm(Qbb(b));Wbb(a,b);Vbb(a,b)} +function wKb(a,b,c){b.pb(oKb(a.b,a.b.b,c,a.b.a))} +function yCb(a,b){var c;c=Zr(a.a,b,0);Ugd(a.b,c)} +function Sac(a,b,c){this.a=new qad(a,b);this.b=c} +function Cgc(f,a,b,c,d,e){f.arc(a,b,c,d,e,false)} +function BRb(a,b,c,d,e){a.strokeEllipse(b,c,d,e)} +function uqc(a,b,c,d){var e;e=xqc(a,b,c);e.od(d)} +function bqc(a){var b;if(_pc){b=new aqc;a.Fb(b)}} +function h2b(){h2b=p9c;eTb();g2b=new Du(false,0)} +function Kr(){Kr=p9c;Jr=$wnd.devicePixelRatio||1} +function klc(a){return Ojc((ujc(),a).clientX||0)} +function llc(a){return Ojc((ujc(),a).clientY||0)} +function rbd(a){return abd(),zcd((ujc(),a).type)} +function Qgd(a){return (abd(),a.U).selectedIndex} +function Gad(){Bad();return typeof $wnd.C2S!=$Id} +function Ald(a,b){old();return a.getNamedItem(b)} +function tld(a,b){old();return a.getAttribute(b)} +function _9(a){if(lUb(a)){return 0}return a.Tl()} +function vTb(a){if(!a.p){return}SVb(a.p,new u7b)} +function jtd(a){a.b=a.a;htd(a);return a.c.b[a.b]} +function cdd(a){var b=a[lLd];return b==null?-1:b} +function cud(a){a.a.b=a.b;a.b.a=a.a;a.a=a.b=null} +function lud(a,b){mud(a,b,a.c.b,a.c);return true} +function Prd(a,b,c){Rwd(b,a.length);Nrd(a,0,b,c)} +function ef(a,b,c,d,e){bf();a.nb(new hf(d,b,e,c))} +function Vkb(a,b){bn(a.b,(Xm(),ic((_m(),$m),b)))} +function Xkb(a,b){fn(a.b,(Xm(),ic((_m(),$m),b)))} +function Ov(a,b){if(a.a){Uo(a.a,b);hIb(a.a,true)}} +function Jw(a,b){if(a.f){throw I8c(new dnd)}a.f=b} +function bt(a,b){a.b==(gt(),et)?b.tb(a.c):(a.a=b)} +function qH(a,b){Jl(a,b.c);vH(a,b.d);a.o.i.w.Hf()} +function Jv(a){XHb(a.a,false);a.j.c=true;a.w.Hf()} +function vdd(a){wo.call(this);_f(this,(abd(),a))} +function XM(a){vM.call(this,a,(QQ(),OQ));SK(this)} +function cB(a,b,c){BA.call(this,a,a.C,b);this.a=c} +function wtc(a,b){this.c=a;this.b=b;this.a=false} +function HQ(a,b){a>0&&(this.b=a);b<=0&&(this.a=b)} +function Pdb(a,b){!!b&&(hs(a.w,b)!=-1||Wr(a.w,b))} +function qhb(a,b,c){!!b&&Xr(a.i,b);!!c&&Xr(a.k,c)} +function Skb(a,b,c,d){return Ukb(a,new mo(b,c),d)} +function eV(a,b,c){return cbc(new ibc(a,0,0),b*c)} +function HV(a,b,c){return a.Jf(c,b.b,(z0(),y0)).c} +function Zcb(a,b,c){return (RTb(),MTb)==a?b:b*2+c} +function ZK(a,b){return dL(cWb(a.o.i.C),dsd(b.r))} +function zG(a,b){return !!a.j&&a.a&&sac(b,a.j)<=5} +function Lu(a){return !a.s&&(a.s=new fx(a)),a.s.a} +function xJb(a){return FJb(a,a.a?a.a:(abc(),_ac))} +function snd(a){return a==0||isNaN(a)?a:a<0?-1:1} +function fJb(a){this.a=a;this.b=false;this.c=true} +function nBb(a){this.b=new es;this.a=a;this.c=a.b} +function xDb(a){this.a=new ltd;this.c=a;wDb(this)} +function oeb(a){this.a=a;!!a&&(this.b=ieb(a,ZEd))} +function W0b(a,b,c){V0b.call(this,new nUb(a),b,c)} +function job(a,b,c){vd.call(this,a);fob(this,b,c)} +function z2b(a,b){h2b();y2b.call(this,a);this.e=b} +function K2b(a,b){if(a.j!=b){a.j=b;wTb(a);vTb(a)}} +function N2b(a,b){if(a.e!=b){a.e=b;wTb(a);vTb(a)}} +function RWb(a,b){return !b?a.a.e:QWb(a,dsd(b.r))} +function F9b(a,b){return H9b(a.Lh(),b,K9b(a),LBd)} +function sac(a,b){return rac(a.a,a.b,0,b.a,b.b,0)} +function b1b(a){return !!a&&a.vd()>0?a.zd(0):null} +function iad(a,b){return new qad(a.a/b.a,a.b/b.b)} +function lad(a,b){return new qad(a.a-b.a,a.b-b.b)} +function mad(a,b){return new qad(a.a*b.a,a.b*b.b)} +function mKb(a,b){var c;c=kKb(a,b);!!c&&Xw(a.b,c)} +function C1b(a,b){Y_b();Gqd(X_b,b)&&ATb(a,$_b(b))} +function Ul(a,b){b==null&&(b=(qmd(),omd));Tl(a,b)} +function ehd(a,b){fhd.call(this,a,false);this.b=b} +function ued(a){sed.call(this);zed(this.a,a,true)} +function JCb(){Uc.call(this,'cannot accept null')} +function Q5b(a,b,c,d){R5b.call(this,a,b,c,d,null)} +function EIb(a,b,c,d,e){sJb(a.d,_Hb(a.a),b,c,d,e)} +function cld(a,b,c){return a.createElementNS(b,c)} +function ypd(a,b){return (a.a[b>>5]&1<<(b&31))!=0} +function Osd(a,b){return ctd(a.a,b)?a.b[b.k]:null} +function Qe(a){if(a.c){return}a.c=true;a.b.qb(a.d)} +function Rh(a){a.b.c!=null?Qub(a.a,a.b.c):Pub(a.a)} +function p8b(a){var b;b=n8b(a);_r(a.b,b);return b} +function UVb(a){!a.a&&(a.a=new UWb(a));return a.a} +function kud(a){vtd.call(this,new _td);Lr(this,a)} +function Xsd(a){this.c=a;this.a=new ktd(this.c.a)} +function Hdc(){this.a=new es;this.b=new Idc(this)} +function zk(){this.a=new Pvd((Cnd(),Bnd));this.b=2} +function ee(a,b,c){ce();this.a=a;this.b=c;this.c=b} +function bo(a,b){if(a.a==b){return}a.a=b;Un(a.b,b)} +function Em(a,b){Yd(a.a,b);Gm(a);Cm(a);a.e=jm(a.f)} +function rm(a,b){if(a.o){Zld(a.o.a);a.o=null}Sg(a)} +function IG(a,b){b.length==1?(a.k=b[0]):(a.k=null)} +function VK(a,b){return b.b.vd()<2||aVb(a.o.i.C,b)} +function RL(a,b){yQ(a.o.f,b);Ry(Lu(a.o.i).b);SL(a)} +function Xf(a,b){eg(a,jg((abd(),a.U))+'-'+b,false)} +function ql(a){var b;sg(a);b=a.$c();-1==b&&a._c(0)} +function Zt(a,b){var c;if(Xt){c=new Yt(b);a.Fb(c)}} +function Pz(a,b){var c;c=or(MOb(a));b.a=c;return b} +function Rbb(a,b){var c;c=jUb(a);Mbb(c,b);return c} +function _1(a){var b;b=new Z1(a);b.k=true;return b} +function Dkd(a){a.onreadystatechange=function(){}} +function cN(a,b){DM.call(this,a);this.a=b;_M(this)} +function Kgb(a,b){this.c=a;this.b=b;this.a=new Qgb} +function qKb(){this.e=new tKb(this);this.f=new JKb} +function GD(a,b){this.a=Ndb(new Idb(b),a);this.b=a} +function ewb(a){if(!a){throw I8c(new tnd)}this.a=a} +function qVb(a,b){this.a=new pad;this.c=a;this.a=b} +function jkb(a,b,c){return new Aob(new yub(a),b,c)} +function dN(a,b,c){return uN(b.a)&&jN(a,c,uN(b.b))} +function JNb(a,b){return tqc(a.a,(Bi(),Ai),null,b)} +function hub(a,b){return a.b.gc(b)?Xeb(a.a,b):null} +function MOb(a){return jvc(a)?a.ti():a.color||null} +function E7b(a,b){F7b.call(this,a.d,a.a,a.c,a.b,b)} +function x2b(a,b,c){w2b.call(this,a,b);lTb(this,c)} +function $1b(a,b,c,d,e){_1b.call(this,a,b,c,d,e,e)} +function red(a){ped.call(this);zed(this.a,a,false)} +function zo(){wo.call(this);$f(this,xkc($doc,Nzd))} +function Gv(){Uc.call(this,'Cannot resolve pivot')} +function Ylc(){Slc.call(this,'TABLE_ROW_GROUP',12)} +function Uoc(){Uoc=p9c;Toc=new Joc('drop',new Voc)} +function Nqd(){this.d=new Ctd(this);this.e=new Qtd} +function Oqd(){this.d=new Ctd(this);this.e=new Qtd} +function utd(a){this.a=(a.vd(),new mtd);Lr(this,a)} +function Psd(a,b,c){atd(a.a,b);return Ssd(a,b.k,c)} +function sld(a,b){old();return a.createTextNode(b)} +function Mtd(a,b){return !(a.a.get(b)===undefined)} +function yh(a){if(Bh(a)){return}a.j?Eh(a):undefined} +function Ah(a){if(Bh(a)){return}a.j?undefined:Eh(a)} +function _i(a){if(a.p){return a.p.Gb()}return false} +function ec(){var a;a=new cc;a.b=(nc(),mc);return a} +function _sd(a,b){var c;c=$sd(a);Yrd(c,b);return c} +function Pmd(a){var b;b=Lmd(a);b.o=a;b.i=1;return b} +function Ak(a,b){og(b,a,(_oc(),_oc(),$oc));return a} +function pk(a,b){this.a=aod(a,(Aud(),yud));this.b=b} +function Rc(a){Jc(this);this.i=a;Lc(this);this.bb()} +function ax(a){return (!a.b&&(a.b=(e_(),d_)),a.b).b} +function Iu(a,b){!!a.A&&!!a.B&&Hqd(a.B,b,bz(a.A,b))} +function v8(a,b,c){c!=null&&Hqd(a.a,mnd(b),s9c(c))} +function K6(a,b,c){var d;for(d=0;d0&&(a.a+=',',a);a.a+=b} +function Efd(a,b){!!a.e&&(b.a=a.e.a);a.e=b;hgd(a.e)} +function Aic(a,b){!a&&(a=[]);a[a.length]=b;return a} +function d9c(a){if(mvc(a)){return a|0}return Xuc(a)} +function Qbd(){if(Gad()){return new Pbd}return null} +function Qud(a){Lud();return !a?Kud:new Pud(Iud(a))} +function Hld(a){old();return a.attributes.length!=0} +function Jqd(a,b){return ovc(b)?Kqd(a,b):Btd(a.d,b)} +function rPd(a){return og(this,a,(Gpc(),Gpc(),Fpc))} +function sPd(a){return og(this,a,(Jpc(),Jpc(),Ipc))} +function tPd(a){return og(this,a,(Npc(),Npc(),Mpc))} +function uPd(a){return og(this,a,(Qpc(),Qpc(),Ppc))} +function svd(a){this.b=null;this.a=(Fsd(),!a?Esd:a)} +function A9c(){Uc.call(this,'eval() returned null')} +function jp(a){this.d=a;this.a=5;this.e=new np(this)} +function Vnd(a,b){return Hnd(a.substr(0,b.length),b)} +function Wf(a){return (abd(),a.U).style.display!=bzd} +function dhd(a){eg(a,jg((abd(),a.U))+'-'+Dzd,false)} +function Vx(a,b){if(b){return _r(a.t,b)}return false} +function Zx(a,b){if(b){return Or(a.t,b)}return false} +function $r(a,b){var c;c=a.zd(b);Bwd(a.a,b);return c} +function as(a,b,c){var d;d=a.zd(b);a.a[b]=c;return d} +function dJb(a,b,c){var d;if(b){d=Xtd(a.a,b);d.c=c}} +function dB(a,b,c){return eB(a,b,(Xrd(),new ksd(c)))} +function fB(a,b,c){return gB(a,b,(Xrd(),new ksd(c)))} +function jB(a,b,c){return kB(a,b,(Xrd(),new ksd(c)))} +function jvc(a){return !Array.isArray(a)&&a.Hp===t9c} +function Xw(a,b){var c;c=a.d;a.d=b;c==a.a&&Yw(a,a.d)} +function JE(a,b){LE(a.Me(),b.Me());LE(a.Ne(),b.Ne())} +function qR(a,b){return new qad(dR(a.a,b),xR(a.b,b))} +function BS(a){return a!=null&&!Hnd(a,'=')?bod(a):''} +function RT(a,b,c,d){return new QT(a,c,new qad(b,d))} +function GV(a,b,c){return cbc(new ibc(a,0,0),10/b*c)} +function b$(a,b){this.a=cbc(new ibc(a,0,0),10*b/2.5)} +function b4(a){if(a!=null){return Xmd(a,10)}return 0} +function YM(a){var b;b=new By;qx(b,a.o.i.A);return b} +function d9(a){var b;b=0;lUb(a)||(b=a.Tl());return b} +function TE(a){UE.call(this,a,(YE(),VE),false,false)} +function TA(a,b,c){pA.call(this,a);this.b=b;this.a=c} +function wH(a,b,c){$G.call(this,a);this.e=b;this.n=c} +function yK(a,b,c){$G.call(this,a);this.a=b;this.c=c} +function xjb(a,b,c){yjb.call(this,a,b,c,(Cjb(),Bjb))} +function fOb(a,b){eOb.call(this,a,new YNb,new iOb,b)} +function Xud(a,b){if(a<0||a>=b){throw I8c(new mmd)}} +function AJb(a,b){var c;if(b){c=a.a;zJb(a);IJb(a,c)}} +function Pkb(a,b,c){Zn(Ynb(a.e,As(c,(enb(),bnb))),b)} +function Hgc(d,a,b,c){d.fillText&&d.fillText(a,b,c)} +function Fmd(){Fmd=p9c;Emd=suc(N5c,lyd,392,128,0,1)} +function ond(){ond=p9c;nnd=suc(W5c,lyd,215,256,0,1)} +function DOb(){DOb=p9c;COb=new IOb;BOb=new JOb(null)} +function OUb(){FUb();this.a=EUb;this.c=new QUb(this)} +function jKb(){cKb();this.b=(Os(),Ls);this.a=new Iqc} +function N0b(a,b){this.c=a;this.b=b;this.a=a?a.a+1:0} +function ibc(a,b,c){abc();this.b=a;this.a=c;this.c=b} +function p5b(a){this.b=new es;this.c=new es;this.a=a} +function iXb(a){if(a.a){return a.a.c}return a.d.Bm()} +function Hqc(a,b,c,d){return new Fqc(tqc(a.a,b,c,d))} +function Z8c(a,b){return M8c(Suc(mvc(a)?b9c(a):a,b))} +function $8c(a,b){return M8c(Tuc(mvc(a)?b9c(a):a,b))} +function _8c(a,b){return M8c(Uuc(mvc(a)?b9c(a):a,b))} +function uFb(a){return Yr(a.c,Rf(a.a).selectedIndex)} +function wCb(a){return Yr(a.a,Rf(a.b).selectedIndex)} +function AOb(a){return jvc(a)?a.Pi():a.hasUID||false} +function Mkc(a){return (ujc(),a).createElement('td')} +function Nkc(a){return (ujc(),a).createElement('tr')} +function Fdc(a,b){_r(a.a,b);a.a.a.length==0&&Hi(a.b)} +function Yqc(a,b){Tqc();Zqc.call(this,!a?null:a.a,b)} +function tqd(a){bnd.call(this,(Cnd(),a==null?iyd:a))} +function uqd(a){bnd.call(this,(Cnd(),a==null?iyd:a))} +function Vlc(){Slc.call(this,'TABLE_COLUMN_GROUP',9)} +function fgd(a){this.c=a;this.d=this.c.i.b;dgd(this)} +function gpd(a,b,c){Nod();this.e=a;this.d=b;this.a=c} +function Jld(a,b,c){old();return a.insertBefore(b,c)} +function qid(a){oid();try{a.Jb()}finally{rtd(nid,a)}} +function tud(a){a.c=a.b;a.b=a.b.a;++a.a;return a.c.c} +function ptd(a,b){var c;c=a.a.pp(b,a);return c==null} +function Ssd(a,b,c){var d;d=a.b[b];a.b[b]=c;return d} +function Ap(a,b){var c;Fp(a,b);c=Yr(a.c,b);ixb(a.a,c)} +function fw(a,b){if(!b){return null}return rIb(a.a,b)} +function gw(a,b){if(!b){return null}return sIb(a.a,b)} +function iw(a,b){if(!b){return null}return uIb(a.a,b)} +function jw(a,b){if(!b){return null}return vIb(a.a,b)} +function Gi(a){if(!a){return null}return a.Yc(new Ui)} +function hp(a){if(a.length>0){return a[0]}return null} +function Y(a){X();if(a>=W.length)return 0;return W[a]} +function Yy(a,b){var c;c=_r(a.w,b);c&&a.rf();return c} +function Sy(a,b){var c;c=_r(a.q,b);c&&a.rf();return c} +function Ty(a,b){var c;c=_r(a.r,b);c&&a.rf();return c} +function Wy(a,b){var c;c=_r(a.C,b);c&&a.rf();return c} +function Zy(a,b){var c;c=_r(a.B,b);c&&a.rf();return c} +function ro(a,b){if(b<0||b>a.i.c){throw I8c(new kmd)}} +function BC(a,b){this.a=b;this.c=a;this.b=new Yu(a.A)} +function LR(a,b,c){this.b=b;this.c=a;this.a=new gs(c)} +function JG(a,b,c){this.i=a;this.d=new xG(c);this.f=b} +function _W(a){TW(this);this.a=a?a:(dX(),bX);this.c=0} +function b2(a,b){Z1.call(this,a);this.n=_0b(b,this.n)} +function gob(a,b,c,d){wd.call(this,a,b);fob(this,c,d)} +function hob(a,b,c,d){xd.call(this,a,b);fob(this,c,d)} +function TS(a,b,c,d){return new KY(b,c,d,a.n,a.f,a.f)} +function jN(a,b,c){return !!c&&sac(jw(a.i,c),b)0?1:0} +function dm(a){return a.Uc().fb(Gyd)!=null?new cm(a):a} +function Vs(a){return a==null||a.length==0?0:Xmd(a,10)} +function hx(a){return tF(_w(a.c),a.c.a.b,a.c.c.C).bg()} +function Gx(a,b,c){return hs(a.r,b)!=-1&&hs(a.r,c)!=-1} +function iK(a,b,c){return !!a&&!eK(new hK(a,b,c)).sd()} +function de(a,b,c,d){ce();ee.call(this,b,c,d);this.f=a} +function $G(a){if(!a){throw I8c(new bnd(JBd))}this.o=a} +function qo(a,b){if(b<0||b>=a.i.c){throw I8c(new kmd)}} +function XP(a){if(a.c){return a.c.c}return a.a.a[0][0]} +function OX(a,b,c){return KF(a,b)||sac(dbc(MF(a)),b)=0&&a.Bb(b+dzd);c>=0&&a.zb(c+dzd)} +function Kib(a,b,c){b!=null&&!Hnd(b,'0')&&Otd(c.e,a,b)} +function dM(a){a.a=null;Vtd((!a.b&&(a.b=new _td),a.b))} +function HZ(a){return (O1b(),M1b)==a.n?a.k.e:GX(a,a.i)} +function IZ(a){return (O1b(),M1b)==a.n?GX(a,a.i):a.k.e} +function Znb(a,b){return Fqd(a.a,b.j!=null?b.j:''+b.k)} +function dpb(a,b){yQ(a.b.f,new DD(a.b.i,b));a.b.a.Rd()} +function DRb(a,b){if(b.sd()){return}Xr(a.a,b);GRb(a,b)} +function kTb(a,b){a.p=b;a.bm();!!a.A&&SVb(a.A,new u7b)} +function pTb(a,b){a.s=b;hTb(a);!!a.A&&SVb(a.A,new u7b)} +function Oac(a,b){return new Tac(lad(a.a,b.a),a.b-b.b)} +function Pac(a,b){return new Tac(mad(a.a,b.a),a.b*b.b)} +function s8b(a,b){var c;c=new utd(b);Qqd(c,a);return c} +function xGb(a){var b=URL.createObjectURL(a);return b} +function Jkc(a){return (ujc(),a).createElement('span')} +function Jpc(){Jpc=p9c;Ipc=new Joc('touchend',new Kpc)} +function Loc(){Loc=p9c;Koc=new Joc('dblclick',new Moc)} +function Qoc(){Qoc=p9c;Poc=new Joc('dragover',new Soc)} +function eQ(){eQ=p9c;cQ=new fQ(iBd,0);dQ=new fQ(hBd,1)} +function ffd(a,b){var c;c=a.S;c.b=b.a;!!c.d&&Mo(c.d,b)} +function gfd(a,b){var c;c=a.S;c.e=b.a;!!c.d&&No(c.d,b)} +function hqc(a,b){var c;if(fqc){c=new gqc(b);oqc(a,c)}} +function qod(a,b){a.a+=String.fromCharCode(b);return a} +function rld(a,b){old();return a.createCDATASection(b)} +function kwd(a,b){if(!cwd){return}pwd(a,(Uvd(),Rvd),b)} +function lwd(a,b){if(!cwd){return}pwd(a,(Uvd(),Svd),b)} +function Ewd(a,b){var c;c=console[a];c.call(console,b)} +function wwd(a,b){var c;c=a.slice(0,b);return wuc(c,a)} +function Czb(a,b,c){wyb.call(this,b);this.c=c;this.b=a} +function T2b(a,b,c,d){S2b.call(this,a,b,c);xTb(this,d)} +function sgb(a,b,c){this.b=a;Ffb.call(this,b);this.a=c} +function sNd(a){!!this.k&&this.k.og(a);bH(this,this.a)} +function sud(){this.a=new vud;this.c=new vud;rud(this)} +function kic(a){$wnd.setTimeout(function(){throw a},0)} +function Wlc(){Slc.call(this,'TABLE_HEADER_GROUP',10)} +function Xlc(){Slc.call(this,'TABLE_FOOTER_GROUP',11)} +function iu(a,b){Ot();Ut.call(this,b);this.a=a;Rt(this)} +function vA(a,b){this.b=a;this.a=new Cy(b);Wx(this.a,a)} +function HA(){this.a=new LA;this.b=new NA;this.c=new MA} +function Lk(a){Kk();return Jk.hasOwnProperty(a)?Jk[a]:a} +function jK(a,b,c,d){return !a?null:bK(new hK(a,b,c),d)} +function qt(a,b){return jvc(a)?a.od(b):(a.push(b),true)} +function AV(a,b){return BV(a,new jX((HU(),AU),false),b)} +function Ad(a){return pvc((qmd(),pmd))===pvc(a.fb(Gyd))} +function yd(a){return pvc((qmd(),pmd))===pvc(a.fb(Byd))} +function zd(a){return pvc((qmd(),pmd))===pvc(a.fb(Fyd))} +function l0(a){return new q0(a.c,a.o,false,B0(a.d,a.j))} +function e0(a){return new G$(new vT(true,5,true,gCd),a)} +function UX(a,b){return kH(Bac(b,new qad(0,0),a.e),a.f)} +function Id(a,b){a.c==b?Od(a,Md(a,a.c)):Od(a,Rd(a.c,b))} +function De(a,b){b!=null&&(1&wl(a.a).a)>0!=b&&a.a.dd(b)} +function P4(a,b,c){var d;d=Eqd(a.a,mnd(b));!!d&&d.km(c)} +function ckb(a,b,c,d,e,f){nkb(a,b,new sob(c,d,e,a.f,f))} +function D1(a,b,c,d,e,f){E1.call(this,a,b,c,d,e,true,f)} +function cpb(a,b,c,d,e){kob.call(this,a,b,c,d);this.a=e} +function UV(a,b,c,d,e){this.b=a;this.a=TV(this,b,c,d,e)} +function aQ(a){this.d=a;this.a=UP(this);this.b=VP(this)} +function NL(){this.a=new QL;this.b=new QL;this.c=this.a} +function Pwb(a){if(a){this.a=a;this.b=new Am;Mwb(this)}} +function JPb(a,b,c,d){this.b=a;this.a=b;this.c=nLb(c,d)} +function Zyb(a,b){wyb.call(this,b);this.a=null;this.b=a} +function S3b(a,b,c){R3b.call(this,null,a,b);xTb(this,c)} +function urb(a){trb.call(this,new Agb(O7b(new Q7b(a))))} +function Qkb(a,b){Tkb(a);a.a=new jub(b,Zkb(a.d));Rkb(a)} +function nDb(a,b){if(b!=a.e){a.e=b;!!a.b&&PCb(a.b,a.e)}} +function BTb(a,b){a.b=new gs(b);!!a.A&&SVb(a.A,new u7b)} +function A8b(a,b,c){B8b(a,b,c)&&!!a.d&&SVb(a.d,new u7b)} +function tqb(a,b){yQ(a.a.f.f,oqb(a.a,b));a.a.f.i.w.Hf()} +function T9b(a){return new hbc(a.c,a.d,a.a-a.c,a.b-a.d)} +function dbc(a){return new qad(a.b.a+a.c/2,a.b.b+a.a/2)} +function Ckc(a){return (ujc(),a).createElement('label')} +function Okc(a){return (ujc(),a).createElement('table')} +function Lkc(a){return (ujc(),a).createElement('tbody')} +function RH(a){if(a==(s6b(),m6b)){return h6b}return m6b} +function lcb(a){if(a!=null){return Xmd(a,10)}return dyd} +function Iud(a){if(a==null){throw I8c(new tnd)}return a} +function puc(a){if(a==null){throw I8c(new tnd)}this.a=a} +function Pwd(a,b){if(!a){throw I8c(new bnd((Cnd(),b)))}} +function lvd(a,b){var c;c=new zvd;nvd(a,b,c);return c.d} +function eoc(a,b){var c;c=coc(b);Lic(doc(a),c);return c} +function hq(a){!a.o&&(a.o=jm(oq(new nq(a))));return a.o} +function qNd(a){this.c&&!a.d&&Ry(this.o.i.A);RK(this,a)} +function Xac(a){a?(this.a=a):(this.a=(Xrd(),Xrd(),Wrd))} +function Dgd(a){xgd();Cgd.call(this,(Z9c(),new U9c(a)))} +function Ih(a,b){pg(a.b,new gh(b),_pc?_pc:(_pc=new Ioc))} +function Pn(a){pg(a,new On(a),(!Vpc&&(Vpc=new Ioc),Vpc))} +function Npc(){Npc=p9c;Mpc=new Joc('touchmove',new Opc)} +function Xnc(){Xnc=p9c;Unc=[];Vnc=[];Wnc=[];Snc=new _nc} +function End(a,b){var c,d;c=a;d=b;return c==d?0:c0)&&Ml(a)} +function Dy(a,b){return lsd(dsd(a.r),b)||lsd(dsd(a.s),b)} +function COd(a){return Snd(fc(a),'_',' ').toLowerCase()} +function cod(a){return String.fromCharCode.apply(null,a)} +function ws(a,b,c){return typeof a[b]!==undefined?a[b]:c} +function UE(a,b,c,d){this.c=a;this.a=b;this.d=c;this.b=d} +function zF(a,b,c,d){this.c=a;this.d=b;this.a=c;this.b=d} +function hf(a,b,c,d){this.c=a;this.d=b;this.b=c;this.a=d} +function BT(a,b,c,d){this.d=a;this.c=b;this.b=c;this.a=d} +function LS(a,b,c,d){this.b=a;this.c=d;this.d=b;this.a=c} +function IX(a,b,c,d){this.c=c;this.d=d;this.b=a;this.a=b} +function RX(a,b,c,d){this.b=a;this.d=b;this.a=c;this.c=d} +function WZ(a,b,c,d){this.d=b;this.b=a;this.c=c;this.a=d} +function P$(a,b,c,d){this.a=a;this.b=b;this.c=d;this.d=c} +function $$(a,b,c,d){this.a=a;this.b=d;this.c=b;this.d=c} +function nV(a,b,c,d){this.a=c;this.b=d;lV.call(this,a,b)} +function oV(a,b,c,d){this.b=c;this.a=d;lV.call(this,a,b)} +function lr(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function OT(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function rR(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} +function Y5(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} +function Xcb(a){Ucb();Ycb.call(this,a,(Xrd(),Xrd(),Urd))} +function Vlb(a){rlb();Ulb.call(this,new Dmb(a,null),qlb)} +function CWb(a,b){if(a.e==b){return}a.e=b;SVb(a,new u7b)} +function uVb(a,b){if(!b){return}HVb(a,dsd(a.n).b.vd(),b)} +function XBb(a,b){return new utd(b!=(Kbc(),Jbc)?b.b:a.d)} +function Hqb(a,b){a.a=b;ud(a,Gyd,(qmd(),a.a?true:false))} +function oXb(a,b){a.f=b>0.95?0.95:b<-0.95?-0.95:b;vTb(a)} +function kQ(a,b){jQ(a,new Y8b(''),new nQ(a.o.i,a.o.f,b))} +function L5b(a,b){return kvc(b,63)?jVb(a.a,b):jVb(a.b,b)} +function Q3b(a){R3b.call(this,a,(O1b(),M1b),(s6b(),m6b))} +function Y_b(){Y_b=p9c;X_b=new ltd;Z_b(W_b());Z_b(n_b())} +function MWb(){var a;a=new IWb;BWb(a,new hu(a));return a} +function S0b(a){var b;b=new gs(a.a.a);Wr(b,a.b);return b} +function Z7b(a){this.b=new gs(a);this.a=new es;W7b(this)} +function tfb(){this.b=new es;this.c=new es;this.a=new es} +function Sz(){this.b=new Tz((iU(),fU));this.c=new Tz(hU)} +function Lrc(a){krc();this.b=new es;this.a=a;yrc(this,a)} +function Med(a,b){tdc(a);gg(b.a,b.c);b.c&&b.a.O.Ab(true)} +function zid(a,b){a.c=b.b;Aid(a,a.c);a.d.d.Vb();kqc(a,b)} +function Jed(a){Ied.call(this,(Ved(),Ted),(Ued(),Sed),a)} +function qkd(){this.f=this.vc();this.b=(abd(),wkc($doc))} +function Ekc(a){return (ujc(),tjc).tn(a,dKd,false,false)} +function Akc(a){return (ujc(),a).createElement('iframe')} +function Dkc(a){return (ujc(),a).createElement('legend')} +function Ikc(a){return (ujc(),a).createElement('select')} +function Eqd(a,b){return ovc(b)?Fqd(a,b):Bqd(ztd(a.d,b))} +function Rsd(a,b){return etd(a.a,b)?Ssd(a,b.k,null):null} +function k1b(a){i1b();return a>0&&a<=126?h1b[a-1].c:null} +function n1b(a){i1b();return a>0&&a<=126&&h1b[a-1].a==0} +function sj(a){if(a.a){return}a.a=true;wic((pic(),oic),a)} +function hid(a){if(kvc(a.a,1010)){return a.a}return null} +function AUb(a){if(a!=(s6b(),h6b)){return h6b}return q6b} +function Wod(a){var b;b=a.a[0];return a.e>0||b==EId?b:-b} +function dqd(a,b){hqd(a.a,a.a,a.d,b.a,b.d);Qod(a);a.b=-2} +function fmd(a,b,c,d){a.a=Xnd(a.a,0,b)+(''+d)+Ynd(a.a,c)} +function Aw(a,b){a.o=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Bw(a,b){a.p=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Cw(a,b){a.q=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Ew(a,b){a.r=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Fw(a,b){a.s=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Hw(a,b){a.j=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Iw(a,b){a.k=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Kw(a,b){a.n=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Lw(a,b){a.t=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function Mw(a,b){a.u=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} +function cz(a,b){if(a.b!=b){a.b=b;a.b||vqc(a.a,new eF,a)}} +function DB(a){if(a.b){!a.d&&(a.d=vE(a.c.C,a.a));yB(a.d)}} +function Drd(a){this.d=a;this.a=this.d.b;this.b=this.d.c} +function Re(a){this.b=a;this.d=new Ve(this);this.a=new Ue} +function WF(a){a.a=null;QF(a);a.c=null;bG(a);return false} +function LL(a){if(a.c==a.a){return oL(),mL}return oL(),nL} +function p7(a){if(a==2){return X1b(),T1b}return X1b(),U1b} +function KB(a,b){HB();return new JB(new o0b(null,a),b,FB)} +function wJ(a,b,c){return new vJ(a,c,Bs(tJ(b),new gJ(b)))} +function Ju(a,b){return nqc(a.o,(!Xt&&(Xt=new Ioc),Xt),b)} +function pr(a,b){return !Zrd(a,b)&&!a.b.rd(b)&&!b.b.rd(a)} +function $N(a){return a.a!=null&&ZN((Swd(a.a!=null),a.a))} +function m$(a,b){g$();n$.call(this,a,b,(Xrd(),Xrd(),Urd))} +function dY(a,b,c,d,e,f){PX.call(this,a,b,d,e,f);this.a=c} +function Heb(a,b,c,d){gc.call(this,a,b);this.b=d;this.a=c} +function vab(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function yjb(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} +function gnb(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} +function Gnb(a,b,c,d){this.b=a;this.a=b;this.c=c;this.d=d} +function v4(a,b,c){gc.call(this,a,b);this.a=new RegExp(c)} +function hpb(a,b,c){job.call(this,jAd,a,b);ud(this,Dyd,c)} +function mcb(a,b,c){c!=null&&!Hnd(c,'0')&&Wr(a.a,b+'='+c)} +function Vmb(a,b){return b!=null&&kvc(b,395)&&nt(a.a,b.a)} +function gzb(a,b){return !!a&&!!b&&a.a.c==b.vd()&&Nr(a,b)} +function EFb(a){return gJb(a.a,uFb(a.b.d).d,a.d,KFb(a.b))} +function mjb(a){var b;return b=new Xjb,a.Tm(b),s9c(b.c.b)} +function Ovb(a){var b;b=new DD(a.a.i,a.a.i.A);yQ(a.a.f,b)} +function Kwb(a,b){Iwb(a,new red('Build Date'),new red(b))} +function QNb(a){PNb.call(this,new dOb(new Kt),new iQb(a))} +function Tob(a,b,c,d){return new cpb(a,b,c,new sO(c,d),d)} +function Wxb(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function uUb(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function q$b(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function STb(a,b,c,d){gc.call(this,a,b);this.b=d;this.a=c} +function v0b(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} +function w1b(a,b,c,d){gc.call(this,a,b);this.a=d;this.b=c} +function G4b(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} +function R8b(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} +function h9b(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function OGb(a,b,c,d){this.a=a;this.d=b;this.b=c;this.c=d} +function XKb(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} +function hGb(a,b,c,d){this.d=a;this.b=d;this.c=c;this.a=b} +function F9c(a,b,c,d){this.b=a;this.a=d;this.d=c;this.c=b} +function mcc(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} +function Idd(a){ol();Hdd.call(this);jjc((abd(),this.U),a)} +function $dd(a,b,c,d){this.b=c;this.a=d;this.e=a;this.c=b} +function wgb(a){this.a=a;this.b='http://www.chemaxon.com'} +function iOb(){this.a=(krc(),Mrc(Msc((Lsc(),Lsc(),Ksc))))} +function ned(a){_f(this,(abd(),a));this.a=new Aed(this.U)} +function $ld(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} +function _ld(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} +function amd(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} +function vfd(a,b){var c;c=a.rows[b];return c.cells.length} +function wcc(a,b){var c;c=new vcc(a,b);Wr(scc,c);return c} +function Aac(a,b){return new qad((a.a+b.a)/2,(a.b+b.b)/2)} +function Hqd(a,b,c){return ovc(b)?Iqd(a,b,c):Atd(a.d,b,c)} +function Kqd(a,b){return b==null?Btd(a.d,null):Ptd(a.e,b)} +function Gud(a,b){return pvc(a)===pvc(b)||a!=null&&T(a,b)} +function kbd(a){abd();!!_ad&&a==_ad&&(_ad=null);$ad.fo(a)} +function Lc(a){if(a.o){a.e!==pyd&&a.bb();a.k=null}return a} +function Jbb(a){if(a.b.a.length!=0){return a.b}return a.a} +function Alb(a){if(!Q0((P0(),O0))){return null}return a.i} +function Exd(a,b){var c;c=Eqd(a.b,b);return c?c.Xj():null} +function Te(a){var b;b=a.b;a.b=new es;a.a=new std;return b} +function dc(a){var b;b=new cc;b.b=(nc(),kc);b.a=a;return b} +function Bg(a){var b;b=a.Qb();while(b.Rc()){b.Sc();b.Tc()}} +function bwd(a,b){this.a=a;this.b=b;Dod();P8c(Date.now())} +function UN(a,b,c){this.d=a;this.b=b;this.c=c;this.a=WN(b)} +function ND(a,b){this.a=new ltd;this.c=b;this.b=a;LD(this)} +function Od(a,b){if(a.c==b){return}a.c=b;vqc(a.b,new Ci,a)} +function Vjb(a,b){if(b.length==0){return}Wjb(a);gbb(a.d,b)} +function Lgb(a,b,c){Hqd(a.b,b,mnd(a.a.a.length));Xr(a.a,c)} +function xk(a,b){return Mvd(a.a,b)||b.length>=a.b&&yk(a,b)} +function Lf(a,b){return ((a.__capturedEventBits||0)&b)!==0} +function Blb(a,b){return {importFormats:a,exportFormats:b}} +function JBb(a,b){return !!a&&!!b&&a.vd()==b.vd()&&a.rd(b)} +function lkb(a,b,c,d,e){return new Bob(new yub(a),b,d,e,c)} +function j1b(a,b,c,d,e,f,g){h1b[a-1]=new s1b(b,c,d,e,f,g)} +function KS(a,b,c){uX(new vX(a.b,a.d,c,a.c,$S(a.b),a.a),b)} +function sFb(a,b){return nqc(a.b,(!Xt&&(Xt=new Ioc),Xt),b)} +function yJb(a,b){return aa.a.i.c-2){throw I8c(new kmd)}} +function jh(a,b){if(a.d.a.vd()==0){return}$g(a.c,b);sh(a.b)} +function Se(a,b){if(qtd(a.a,b)){return}Wr(a.b,b);ptd(a.a,b)} +function Nb(a,b,c){if(b==0&&c==0){return dc(-a)}return ec()} +function Nxd(a,b,c,d){var e=b.apply(a,d);return [c?c(e):e]} +function Cld(a){old();var b=a.nodeType;return b==null?-1:b} +function oid(){oid=p9c;lid=new tid;mid=new ltd;nid=new std} +function Xrd(){Xrd=p9c;Urd=new esd;Vrd=new isd;Wrd=new jsd} +function Aud(){Aud=p9c;xud=new Bud;yud=new Cud;zud=new Dud} +function Uvd(){Uvd=p9c;Rvd=new Vvd;Svd=new Wvd;Tvd=new Xvd} +function exd(){if(_wd==256){$wd=axd;axd=new S;_wd=0}++_wd} +function ko(a){wic((pic(),oic),(!a.p&&(a.p=new Ko(a)),a.p))} +function PP(a,b,c){nP.call(this,a,b,c);this.a=new vv(a.i.r)} +function sI(a,b){fD(a.a,dsd(a.b.o.i.C.n));hD(a.a,new JF(b))} +function PB(a){return dsd(a.a.f).b.vd()-dsd(a.a.a.a).b.vd()} +function NF(a){return vuc(quc(T1c,1),tBd,5,0,[a.a,a.b,a.c])} +function gX(){dX();return vuc(quc(RFc,1),nyd,549,0,[cX,bX])} +function gQ(){eQ();return vuc(quc(EEc,1),nyd,569,0,[cQ,dQ])} +function qL(){oL();return vuc(quc(tDc,1),nyd,541,0,[nL,mL])} +function it(){gt();return vuc(quc(mzc,1),nyd,484,0,[ft,et])} +function i3(){g3();return vuc(quc(CHc,1),nyd,477,0,[e3,f3])} +function Z5(){X5();return vuc(quc(fIc,1),nyd,459,0,[W5,V5])} +function o2(){l2();return vuc(quc(yHc,1),pDd,349,0,[k2,j2])} +function hZ(a,b,c,d){HHb(a,d,vuc(quc(T1c,1),tBd,5,0,[b,c]))} +function H6(a,b,c,d){var e;for(e=0;e=0&&Hnd(a.substr(c,b.length),b)} +function Ykd(a){return Xnd(a,0,$wnd.Math.min(a.length,128))} +function Obd(a){return $wnd.decodeURI(a.replace('%23','#'))} +function hu(a){this.a=new iu(a,vuc(quc(Czc,1),lyd,462,0,[]))} +function Jf(){this.a=new std;ptd(this.a,Yyd);ptd(this.a,Zyd)} +function eL(a){return !a.a.sd()&&msd(dsd(Ey(a.a.zd(0)).r),a)} +function VG(a,b){Ry(Lu(a.o.i).b);!!b&&dx(Mu(a.o.i),b);a.pg()} +function Pfd(a,b){(a.a.oo(0,b),abd(),Jfd(a.a.c,0,b))[sLd]=2} +function wod(a,b,c){a.a=Xnd(a.a,0,b)+''+Ynd(a.a,c);return a} +function St(a,b){var c;c=Xtd(a.c,b);if(c){return c}return Nt} +function lgb(a,b){var c;c=Pib(a.c,PEd);eld(c,NEd,b);return c} +function Qc(a,b){var c;c=Jmd(a.Fp);return b==null?c:c+': '+b} +function Uxd(a,b,c,d,e,f){Sxd();return Axd(Rxd,a,b,c,d,e,f)} +function Jvb(a,b){if(Sx(a.a.a.a.i.A)){return}dwb(b,Uvb(a.a))} +function ZF(a,b){if(!b||b.a.length!=2){a.d=null;return}a.d=b} +function yS(a,b){if(a){return b?', '+AS(a):AS(a)}return null} +function F8(a){if(Cqd(a,(kcc(),gcc))){return '*'}return null} +function KBb(a,b){if(a.a.c){return !b}return JBb(b,nCb(a.a))} +function ABb(a,b){zBb(a,false);Cic((pic(),new IBb(a,b)),200)} +function dKb(a,b){return Hqc(a.a,(!Xt&&(Xt=new Ioc),Xt),a,b)} +function Ynb(a,b){return Fqd(a.a,(b.j!=null?b.j:''+b.k)+hHd)} +function tpb(a,b){return a.a?new qqb(b,a.a,false):new Gqb(b)} +function k0(a,b){D0(a.i,new q0(a.c,a.o,false,B0(a.d,a.j)),b)} +function HRb(a,b){a.a.a=suc(_5c,lyd,1,0,5,1);FRb(a);DRb(a,b)} +function kUb(){var a;a=jUb((WZb(),GXb).a);a.gm('*');return a} +function cg(a){(abd(),a.U).style[ezd]=fzd;a.U.style[czd]=fzd} +function xCb(a){return Rf(a.b).selectedIndex==a.a.a.length-1} +function GPb(a,b,c,d){return {north:a,south:b,west:c,east:d}} +function LOb(a){DOb();return a!=null?(Iud(a),new JOb(a)):BOb} +function E0b(){E0b=p9c;C0b=new G0b(2,'D');D0b=new G0b(3,'T')} +function Uqd(a){var b;a.c=a.a;b=a.a.Sc();a.b=Tqd(a);return b} +function uhd(a,b){var c;c=a.b-b.b;c==0&&(c=b.a-a.a);return c} +function zsd(a,b){var c;for(c=0;c=a.a.i.c-2){throw I8c(new kmd)}} +function Jud(a,b){if(a==null){throw I8c(new und(b))}return a} +function J9c(a){if(a==null){throw I8c(new und(bLd))}this.a=a} +function G9c(a){if(a==null){throw I8c(new und(bLd))}this.a=a} +function Jd(a,b){pvc((qmd(),pmd))===pvc(b.a.fb(Byd))&&Od(a,b)} +function Kfd(a,b,c){qfd(a.a,b,c);return abd(),Jfd(a.a.c,b,c)} +function vn(a){tn(a);if(!a.b){return}efd(a.d.c,a.f);a.b=false} +function _s(a){var b;if(!a.a){return}b=a.a;a.a=null;b.tb(a.c)} +function at(a,b){if(a.b==(gt(),et)){return}a.c=b;a.b=et;_s(a)} +function BL(a,b){Ry(Lu(a.o.i).b);cx(Mu(a.o.i),b);a.o.i.w.Hf()} +function pOd(){dx(Mu(this.a.c.i),jw(this.a.c.i,this.b.Lh()))} +function cE(a,b,c){this.d=a;this.b=b;this.a=c;this.c=aE(this)} +function QT(a,b,c){this.b=a;this.c=b;this.d=c;this.a=new ltd} +function _O(a,b){dH.call(this,a);this.f=b;this.e=new cP(this)} +function zN(a,b,c){this.b=new wN(b);this.a=new wN(c);this.c=a} +function jm(a){var b,c;b=new hm(a);c=km(b.a);im(c,a);return c} +function s0(a){var b;b=new r0(a.b,a.d,a.c);m0(b,a.c);return b} +function HN(a){var b;b=LN(a);if(b){return Ey(b)}return new By} +function o8(a,b){var c;c=b.o;if(c){return c}return Eqd(a.i,b)} +function TP(a){var b;b=MWb();wVb(b,a.d);return new aQ(PVb(b))} +function ztd(a,b){return xtd(a,b,ytd(a,b==null?0:a.b.tp(b)))} +function fvb(a,b){return og(b,new mvb(a,b),(yoc(),yoc(),xoc))} +function CX(a,b,c,d,e){return e?new BX(a,b,Tu(c),d):(xX(),wX)} +function Fnd(a,b){return End(a.toLowerCase(),b.toLowerCase())} +function xxb(a,b){return b<0||b>a.b.a.length-1?null:Yr(a.b,b)} +function Lcb(a){return !!a.a&&Mqd(a.a)!=0||!!a.b&&Mqd(a.b)!=0} +function cHb(a,b,c){IEb(a.e,b);!!a.a&&Ugd(a.a,_Gb(c));Lg(a.b)} +function zwb(a,b){oed(a.d,b.b);oed(a.c,b.c);oed(a.a,vwb(b.a))} +function dFb(a,b){rm(a.b,false);yQ(a.a.a.f,new ND(a.a.a.i,b))} +function oSb(a,b,c){bcb(b,'abbreviations',new cSb(a.a,a.b,c))} +function yXb(a,b,c){return new pXb(new hUb(b),new iUb(c),a.a)} +function zXb(a,b,c){return new pXb(new hUb(b),new zUb(c),a.a)} +function BXb(a,b,c){return new pXb(new yUb(b),new zUb(c),a.a)} +function AXb(a,b,c){return new pXb(new yUb(b),new iUb(c),a.a)} +function Oqc(a){if(!a.d){return}Mqc(a);a.a.ql(a,new crc(a.b))} +function PAb(a,b){if(a.b.c&&b==null){return false}return true} +function MZ(a,b){a.j=null;b>0&&(a.j=(Cnd(),''+b));return null} +function ZZ(a,b,c){b.yf(dbc(a.d),a.d.c*0.5,a.d.a*0.5,false,c)} +function Ldb(a,b,c){msd(b,dsd(a.r))&&(c.a[c.a.length]=a,true)} +function a7b(a,b,c){this.a=Z6b(b,c);this.b=$wnd.Math.max(a,0)} +function R3b(a,b,c){this.a=a;this.c=b;this.d=null;yTb(this,c)} +function cGb(a,b){HEb(a.a.a,Fxb(vuc(quc(g6c,1),eyd,2,6,[b])))} +function Ofd(a,b,c){(a.a.oo(b,0),abd(),Jfd(a.a.c,b,0))[Czd]=c} +function ljd(a){gjd.call(this,a);(abd(),this.U).className=rId} +function AOd(a){return qmd(),a.i&&(s6b(),h6b)==a.o?true:false} +function qvc(a){return Math.max(Math.min(a,dyd),-2147483648)|0} +function Bk(a){return a.key||String.fromCharCode(a.keyCode|0)} +function dsd(a){Xrd();return kvc(a,291)?new Dsd(a):new vsd(a)} +function tcd(){rcd();if(!qcd){gdd(pcd);$bd(new ucd);qcd=true}} +function $nc(){Xnc();if(!Tnc){Tnc=true;xic((pic(),oic),Snc)}} +function bc(a){if(a.b!=(nc(),kc)){throw I8c(new Zc)}return a.a} +function r9c(a){function b(){} +;b.prototype=a||{};return new b} +function Rmd(a){if(a.jp()){return null}var b=a.o;return l9c[b]} +function $l(a){if(!a.b.Uc()){return}a.a=a.b.Uc().cb(new fm(a))} +function bud(a){var b;b=a.c.b.b;a.b=b;a.a=a.c.b;b.a=a.c.b.b=a} +function Vk(a,b){var c;if(a.c){return}c=new al;kl(b,c);a.c=c.a} +function Qo(a,b){var c;c=Ro(a);abd();Lic(a.c,lbd(c));oo(a,b,c)} +function Yd(a,b){a.a=b;Xd(a);Ud(a);!!a.a&&sd(a,null,null,null)} +function Vc(a,b){Jc(this);this.f=b;this.i=a;Lc(this);this.bb()} +function Xc(a){Vc.call(this,'Error in valence calculation.',a)} +function tw(a){!!a.a.d&&!a.a.d.sd()&&sw(a);uw(a,a.a.C);Wv(a.a)} +function pkd(b,a){b.f.contentWindow.document.body.innerHTML=a} +function Ckd(b,c,d){try{b.setSelectionRange(c,c+d)}catch(a){}} +function RB(a,b,c){this.a=a;this.c=b;this.b=c;this.d=c?a.c:a.a} +function Ir(){this.a=vuc(quc(_5c,1),lyd,1,5,[]);this.b=new ltd} +function pn(){nn();return vuc(quc(hyc,1),nyd,316,0,[kn,mn,ln])} +function eu(){cu();return vuc(quc(Dzc,1),nyd,351,0,[bu,_t,au])} +function $E(){YE();return vuc(quc(_Bc,1),nyd,451,0,[VE,WE,XE])} +function zj(){xj();return vuc(quc(lxc,1),nyd,429,0,[vj,uj,wj])} +function zR(){wR();return vuc(quc(UEc,1),nyd,416,0,[vR,uR,tR])} +function fR(){cR();return vuc(quc(SEc,1),nyd,415,0,[aR,_Q,bR])} +function fv(){dv();return vuc(quc(Vzc,1),nyd,437,0,[cv,av,bv])} +function kU(){iU();return vuc(quc(tFc,1),nyd,414,0,[fU,gU,hU])} +function x4(){u4();return vuc(quc(PHc,1),nyd,380,0,[r4,s4,t4])} +function Oab(){Oab=p9c;Nab=vuc(quc(g6c,1),eyd,2,6,['cml',UDd])} +function Vjd(){Vjd=p9c;Tjd=D8c();Ujd=kvc(Tjd,500)?new Xjd:Tjd} +function dX(){dX=p9c;cX=new fX('TOP',0,0);bX=new fX(FBd,1,0.5)} +function eB(a,b,c){var d;return iB(a,b,(d=new By,vx(d,c),d),c)} +function kB(a,b,c){var d;return iB(a,b,(d=new By,zx(d,c),d),c)} +function FV(a,b,c,d,e){return new kV(a,sV(a,lbc(b,c),d),b,d,e)} +function heb(a,b){var c;return c=kld(a.So(),b),c?Dld(c.a):null} +function Qnb(a,b){var c;c=hub(a.c.a,b);if(!c){return}Zn(a.a,c)} +function Fob(a,b){return !!b&&Gob(a,dsd(b.r))||Gob(a,dsd(b.s))} +function Hpb(a){return new zpb(a,'Flip vertically',new Mpb(a))} +function hlb(a){if(!glb){glb=true;Sxd();z0b(Rxd,OLc,a);ilb(a)}} +function mlb(a){if(!llb){llb=true;Sxd();z0b(Rxd,QLc,a);nlb(a)}} +function Pmb(a){if(!Omb){Omb=true;Sxd();z0b(Rxd,xMc,a);Qmb(a)}} +function Wmb(a){if(!Umb){Umb=true;Sxd();z0b(Rxd,mMc,a);Xmb(a)}} +function gP(a){if(!a.k){a.k=TP(a.j);a.i=new YT(a.k)}return a.k} +function yOb(a){!a.settings&&(a.settings={});return a.settings} +function Sfb(a,b){this.c=b;this.a=a;this.b=Ix(a);this.d=this.b} +function PU(a){this.f=a.b.a;this.i=a.b.b;this.e=a.c;this.d=a.a} +function Pic(a){while(a.lastChild){a.removeChild(a.lastChild)}} +function Keb(a,b){if(hs(a.a,b)==-1){Wr(a.a,b);T0b(b);b.p=null}} +function B6b(a,b){if(!!a&&!!b){return new A6b(a,b)}return null} +function gBb(a,b,c){return b!=null?new uCb(a,b,c):new tCb(a,c)} +function Egc(e,a,b,c,d){return e.createLinearGradient(a,b,c,d)} +function JVb(a,b,c,d){var e;e=new S2b(b,c,d);vVb(a,e);return e} +function Eub(a){var b;b=new is;Aub(b);Cub(a,b);Bub(b);return b} +function Kid(a){var b;b=a.i;if(b){return Zr(a.f,b,0)}return -1} +function xjc(a,b){var c;c=a.Gn(b);return c?c:b.documentElement} +function tdd(a,b){var c;c=vo(a,b);c&&wdd((abd(),b.U));return c} +function nhd(a,b){b=ohd(a,b);b=Snd(b,'\\s+',' ');return bod(b)} +function urd(a,b){if(ord(a,b)){Crd(a);return true}return false} +function Qmd(a,b){var c=a.a=a.a||[];return c[b]||(c[b]=a.fp(b))} +function Pcd(a){var b;b=(ujc(),tjc).yn(a);b[kLd]=a.type;Ocd(a)} +function jdd(){return Yxd(function(){rcd();qcd&&scd(new xcd)})} +function Fqd(a,b){return b==null?Bqd(ztd(a.d,null)):Ntd(a.e,b)} +function An(a){return $ic((abd(),a.U),$yd)-(a.U.clientHeight|0)} +function hud(a){Swd(a.b!=a.c.a.b);a.a=a.b;a.b=a.b.a;return a.a} +function pt(c,a){for(var b=0;b0){return true}return false} +function Vh(a){Wf(a.a)&&(a.a.d.d.M?Yf(a.a.a,Jzd):Of(a.a.a,Jzd))} +function SK(a){a.c=false;a.e=null;Ry(Lu(a.o.i).b);a.d.Kg(null)} +function lI(a){a.c=null;a.b=null;ex(Mu(a.o.i),a.a);a.o.i.w.Hf()} +function vLb(a,b,c,d){this.a=new JPb(c,(C1(),m1),a,d);this.b=b} +function sS(a,b,c,d){this.a=a;this.c=b;this.d=d1b(c.n);this.e=d} +function mB(a,b){this.a=a;this.b=b;this.c=a.a?a.a.a:(vXb(),uXb)} +function tkb(a){this.c=a.b.a;this.d=a.b.b;this.b=a.c;this.a=a.a} +function Mn(){this.c=new Mid;this.d=this.hd();mm(this.d,this.c)} +function eid(){ol();Ol.call(this);(abd(),this.U).className=yLd} +function WPb(a){TPb();XPb.call(this,a,(Tqc(),Sqc),(bQb(),_Pb))} +function rob(a,b,c,d){kob.call(this,a,b,c,new MH(c,d));this.a=d} +function Tpb(a,b,c,d){kob.call(this,a,b,c,new PK(c,d));this.a=d} +function Fpb(a,b,c){return $B(new _B(a.i),b,new zF(c.a,0,-1,1))} +function Gpb(a,b,c){return $B(new _B(a.i),b,new zF(0,c.b,1,-1))} +function jBb(a,b){return !b?new tCb(a,null):new uCb(a,b.a,null)} +function vB(a,b){return new AB(b,ds(a.a,suc(PEc,ABd,38,0,0,1)))} +function Ejb(){Cjb();return vuc(quc(pLc,1),nyd,366,0,[Ajb,Bjb])} +function OKb(){MKb();return vuc(quc(pTc,1),nyd,486,0,[LKb,KKb])} +function QIb(){MIb();return vuc(quc(TSc,1),nyd,304,0,[LIb,KIb])} +function dQb(){bQb();return vuc(quc(MUc,1),nyd,474,0,[_Pb,aQb])} +function Xxb(){Vxb();return vuc(quc(qPc,1),nyd,547,0,[Uxb,Txb])} +function Gwb(){Ewb();return vuc(quc(VOc,1),nyd,546,0,[Cwb,Dwb])} +function BPb(a,b,c){return {items:a,defaultItem:b,isFloating:c}} +function igb(a,b,c){var d;d=new es;d.a[d.a.length]=b;jgb(a,d,c)} +function TEb(a,b){var c;c=Mkc($doc);c.appendChild(b);Lic(a.a,c)} +function iVb(a,b){var c;c=Zr(a.b,b,0);return c>=0?c:Zr(a.a,b,0)} +function H$b(a){var b;b=new is;I$b(a,b);return Xrd(),new Dsd(b)} +function gkb(a){var b;b=new Zj;pkb(a,b,new ard(a.a.a));return b} +function mPb(a){qJd in a&&!(eJd in a)&&(a[eJd]=a[qJd]);return a} +function X9b(a){return new W9b(a.b.a,a.b.b,a.b.a+a.c,a.b.b+a.a)} +function rVb(a){a.b=new Cqc;a.c=new XUb;a.i=new std;a.f=new ltd} +function Xpc(a,b){var c;if(Vpc){c=new Wpc(b);!!a.R&&oqc(a.R,c)}} +function ix(a,b){var c;c=!a.a?!!b:a.a!=b;if(c){a.a=b;Pv(a.c.c)}} +function Qhc(a,b){var c=Phc[a.charCodeAt(0)];return c==null?a:c} +function Gab(a,b){if(b==null){return ''}return ' '+a+'='+Hab(b)} +function $bd(a){Zbd();bcd();return _bd(_pc?_pc:(_pc=new Ioc),a)} +function f7b(){d7b();return vuc(quc(_Xc,1),nyd,570,0,[c7b,b7b])} +function x0b(){t0b();return vuc(quc(_Wc,1),nyd,508,0,[r0b,s0b])} +function x1b(){v1b();return vuc(quc(iXc,1),nyd,503,0,[t1b,u1b])} +function Q1b(){O1b();return vuc(quc(nXc,1),nyd,501,0,[M1b,N1b])} +function X8b(){V8b();return vuc(quc(AYc,1),nyd,502,0,[U8b,T8b])} +function Iqd(a,b,c){return b==null?Atd(a.d,null,c):Otd(a.e,b,c)} +function Mfd(a,b,c,d){a.a.oo(b,c);Jfd(a.a.c,b,c).style[JAd]=d.a} +function X0b(a,b,c,d){V0b.call(this,new nUb(a),b,c);xTb(this,d)} +function otd(a){this.d=new Ctd(this);this.e=new Qtd;yqd(this,a)} +function tp(){vp((xp(),up));this.a=new zo;Of(this.a,'mjs-obf-B')} +function Cn(a,b){(abd(),a.U).style['maxHeight']=(Cnd(),''+b+dzd)} +function ytd(a,b){var c;c=a.a.get(b);return c==null?new Array:c} +function rx(a,b){if(hs(a.u,b)==-1){return Wr(a.u,b)}return false} +function lx(a,b){if(hs(a.q,b)==-1){return Wr(a.q,b)}return false} +function mx(a,b){if(hs(a.r,b)==-1){return Wr(a.r,b)}return false} +function nx(a,b){if(hs(a.s,b)==-1){return Wr(a.s,b)}return false} +function px(a,b){if(hs(a.C,b)==-1){return Wr(a.C,b)}return false} +function sx(a,b){if(hs(a.w,b)==-1){return Wr(a.w,b)}return false} +function tx(a,b){if(hs(a.A,b)==-1){return Wr(a.A,b)}return false} +function ux(a,b){if(hs(a.B,b)==-1){return Wr(a.B,b)}return false} +function Rqd(a,b){if(kvc(b,185)){return wqd(a.a,b)}return false} +function xod(a,b,c){a.a=Xnd(a.a,0,b)+(''+c)+Ynd(a.a,b);return a} +function VH(a,b){dI(a);yQ(a.o.f,b);dI(a);a.k=wQ(a.o.f,new iI(a))} +function IH(a,b){hy(Lu(a.o.i).b)?LH(a):!Sx(Lu(a.o.i).b)||DH(a,b)} +function aH(a){!!a.k&&a.k.Rd();ex(Mu(a.o.i),a.eg());a.o.i.w.Hf()} +function tm(a,b,c){abd();if(!_ad){a.n=true;mbd(a.U);a.j=b;a.k=c}} +function hK(a,b,c){this.a=a;this.c=this.a.Rl();this.d=b;this.b=c} +function JB(a,b,c){pA.call(this,null);this.b=c;this.d=b;this.c=a} +function Pcb(a,b){xbb.call(this,a);this.a=b;this.b=new Scb(this)} +function JEb(a,b,c){ol();tl.call(this,a);Lsc();this.b=b;this.a=c} +function HL(a){$G.call(this,a);this.d=new JL(this);this.a=new By} +function SGb(a,b){HEb(a.e,b);Lg(a.a);wic((pic(),oic),new XGb(a))} +function Bpb(a){return new zpb(a,'Flip horizontally',new Lpb(a))} +function FIb(a,b,c){this.a=a;this.b=c;this.c=b;this.d=new tJb(c)} +function hjb(a,b,c){c.indexOf(oyd)!=-1?Mib(a.c,b,c):Oib(a.c,b,c)} +function Hab(a){if(a.indexOf(' ')!=-1){return '"'+a+'"'}return a} +function oCb(a){if(a.a.Zk()){return qCb(a,a.a.Yk())}return false} +function tBb(a,b){if(!sBb(a,b)){throw I8c(new ICb)}return rBb(b)} +function BJb(a,b){if(!a.a||a.a.c<=0){return}a.c=kH(a.c,CJb(a,b))} +function f4b(a){if(d4b==a){return ''}return a.j!=null?a.j:''+a.k} +function xcc(a){tcc();var b;b=ycc(a);return b?b:new vcc(a,false)} +function MHb(a,b,c){cj(a.c,b,c);if(a.b){XHb(a.a,true);a.b=false}} +function I6b(a,b,c){this.c=new C6b(a);this.a=new C6b(b);this.d=c} +function NNb(){this.a=new Cqc;MNb(this,'/marvin4js-license.cxl')} +function wed(){sed.call(this);(abd(),this.U).className='Caption'} +function Xgd(){ol();Wgd.call(this);(abd(),this.U).multiple=false} +function qed(a){ned.call(this,(Ind('span',(ujc(),a).tagName),a))} +function gmd(a,b,c){fmd(a,b,b+1,(Cnd(),String.fromCharCode(c)))} +function _qd(a,b,c){Uwd(b,c,a.vd());this.c=a;this.a=b;this.b=c-b} +function pdc(a,b,c){return kH(mad(new qad(a.a-c.a,a.b-c.b),b),c)} +function pc(){nc();return vuc(quc(Gvc,1),nyd,370,0,[kc,jc,mc,lc])} +function E4(){E4=p9c;D4=vuc(quc(g6c,1),eyd,2,6,[uDd,'extindex'])} +function lz(){iz();return vuc(quc(kAc,1),nyd,249,0,[hz,ez,gz,fz])} +function vz(){sz();return vuc(quc(lAc,1),nyd,120,0,[qz,pz,rz,oz])} +function Nz(){Lz();return vuc(quc(oAc,1),nyd,217,0,[Iz,Jz,Hz,Kz])} +function WOd(){return new Srd(vuc(quc(tWc,1),zBd,49,0,[this.a]))} +function bx(a,b){return dtd(btd((!a.b&&(a.b=(e_(),d_)),a.b).a),b)} +function CA(a){return Mqd(a.a.a)==0&&Mqd(a.b.a)==0&&Mqd(a.c.a)==0} +function lH(a,b){return !!Ku(a.o.i,jw(a.o.i,gH(a.f,gw(a.o.i,b))))} +function lbd(a){abd();return a.__gwt_resolve?a.__gwt_resolve():a} +function ah(a){if(a.M){return}else a.P&&vg(a);Mhd(a.L,true,false)} +function HK(a,b){return lad(iad(lad(b,a.b),new qad(a.a,a.a)),a.c)} +function uJ(){rJ();return vuc(quc(VCc,1),nyd,313,0,[nJ,qJ,oJ,pJ])} +function auc(a,b){if(b==null){throw I8c(new tnd)}return buc(a,b)} +function SN(a,b){var c;c=QN(a);if(!c){return b}return new TN(b,c)} +function Dbd(){var a;a=ygc();if(a){return new Cbd(a)}return null} +function Atc(a,b){var c;c=a.r.getHours();a.r.setDate(b);ztc(a,c)} +function LE(a,b){var c;for(c=0;c0&&GEb(a,b)} +function Dtc(a,b){var c;c=a.r.getHours();a.r.setMonth(b);ztc(a,c)} +function yed(a){var b;b=a.c?Xic(a.a):a.a;return (ujc(),tjc).Hn(b)} +function mbc(a,b){if(obc(a,b)){Wr(a.a,b);return true}return false} +function sWb(a,b){if(_r(a.v,b)){xWb(a,b);return true}return false} +function uWb(a,b){if(_r(a.w,b)){xWb(a,b);return true}return false} +function njc(a){if(Sic(a)){return !!a&&a.nodeType==1}return false} +function edd(a,b){for(var c in a){a.hasOwnProperty(c)&&b(c,a[c])}} +function Snd(a,b,c){c=hod(c);return a.replace(new RegExp(b,'g'),c)} +function mrd(a,b){Iud(b);a.b=a.b-1&a.a.length-1;a.a[a.b]=b;qrd(a)} +function pd(a,b){return !a.e&&(a.e=new Cqc),tqc(a.e,(_d(),$d),a,b)} +function Sl(a){return qmd(),!a.d&&Cl(a,a.o),(1&a.d.a)>0?true:false} +function djd(a){wo.call(this);_f(this,(abd(),wkc($doc)));this.a=a} +function Ozb(a,b,c,d){wyb.call(this,b);this.a=a;this.c=d;this.d=c} +function Aed(a){this.a=a;this.c=false;this.b=grc(a);this.d=this.b} +function tI(a,b){this.b=a;this.a=new jD(a.o.i);eD(this.a,dsd(b.r))} +function kI(a,b){Ry(Lu(a.o.i).b);!!b&&cx(Mu(a.o.i),b);a.o.i.w.Hf()} +function _S(a,b){if(pT(b.c,a.s)&&pT(b.d,a.s)){return MS}return a.a} +function Sc(b){if(!('stack' in b)){try{throw b}catch(a){}}return b} +function Fab(a,b){if(b==0){return ''}return ' '+a+'='+(Cnd(),''+b)} +function $qb(a,b){if(a.a=a.c){throw I8c(new kmd)}return a.a[b]} +function lfd(a){this.b=(qgd(),ngd).a;this.e=(vgd(),ugd).a;this.a=a} +function oS(){oS=p9c;mS=(HU(),vU);nS=new p0((pR(),kR),mS.b,mS.b.a)} +function ppb(){ppb=p9c;npb();kpb=new opb((Z9c(),new U9c(mpb)),lpb)} +function O1b(){O1b=p9c;M1b=new P1b('BEGIN',0);N1b=new P1b('END',1)} +function Z9c(){Z9c=p9c;new RegExp('%5B','g');new RegExp('%5D','g')} +function k6(){k6=p9c;new RegExp('^( | \\d| \\d\\d|\\d\\d\\d)+')} +function hj(){hj=p9c;gj=(Q9c(),new J9c(' <\/span>
    '))} +function rid(){oid();try{Edd(nid,lid)}finally{nid.a.Pb();Lqd(mid)}} +function az(a,b){cz(a,true);try{return Ny(a,b)}finally{cz(a,false)}} +function pv(a,b){if(qv(a,b)){return LUb(a.a,b).vd()==1}return false} +function Lo(a,b){if(b.T!=a){return null}return abd(),abd(),Mic(b.U)} +function nt(a,b){return !!a&&!!a.equals?a.equals(b):pvc(a)===pvc(b)} +function le(a,b){b!=null&&(!a.d&&Cl(a,a.o),(1&a.d.a)>0!=b)&&Km(a,b)} +function Qod(a){while(a.d>0&&a.a[--a.d]==0);a.a[a.d++]==0&&(a.e=0)} +function RM(a,b){Jl(a,b.c);a.a=b.b;a.c=lad(a.p,a.b);CM(a,LM(a),a.a)} +function EE(a,b,c){var d;d=_Vb(a.a,b);!d&&(d=YVb(a.a,c));return d.o} +function DE(a,b){var c;c=VVb(a.a,b);if(c){return c.Lh()}return null} +function $D(a,b){var c;c=new Cy(a);Wx(c,UD(b));Wx(c,VD(b));return c} +function xP(a,b,c,d){var e;e=wP(a,c);!!e&&uB(b,new vA(e,new Cy(d)))} +function rd(a){a.f&&a.db()&&(!a.e&&(a.e=new Cqc),vqc(a.e,new ae,a))} +function U4(a,b){if(Hnd(CDd,b)){return new Z4(a)}return new X4(a,b)} +function Beb(a,b){if(a.b==b){return}veb(a,a.b.b);a.b=b;veb(a,a.b.a)} +function hhb(a,b){if(!b.sd()){Nhb(a.a,b);Thb(a.c,b);Xr(a.i,b.Pe())}} +function Mmb(a,b){Mlb(a,(Sxd(),Dxd(b,suc(E$c,lyd,0,b.length,2,1))))} +function Smb(a,b){Mlb(a,(Sxd(),Dxd(b,suc(E$c,lyd,0,b.length,2,1))))} +function Qlb(a,b){b.a&&(a.o=GOb(b,(qmd(),pmd))?(C1(),m1):(C1(),k1))} +function ai(a,b,c,d){return $wnd.Math.max(c,$wnd.Math.min(a,d-b-1))} +function JU(a,b,c,d,e){gc.call(this,a,b);this.b=c;this.a=d;this.c=e} +function Zpb(a,b,c){vd.call(this,a);this.b=b;Wr(c.a,this);this.Gk()} +function zn(a,b,c){this.d=a;this.e=b;this.a=c;this.b=false;this.c=0} +function Dqb(a,b,c,d){gob.call(this,'Smart R-group',a,b,c);this.a=d} +function NEb(a,b){ol();LEb.call(this,a,(!jFb&&(jFb=new kFb),jFb),b)} +function sRb(a,b){return iad(b,new qad(a.a*(lRb(),kRb),-(a.a*kRb)))} +function vRb(a,b){return mad(b,new qad(a.a*(lRb(),kRb),-(a.a*kRb)))} +function iwb(a){return new AFb(a.c.i.a.o,Vw(a.c),a.i,a.e,!!a.c.i.q)} +function _G(a){a.n=true;ex(Mu(a.o.i),a.eg());!!a.k&&a.k.qg();a.Rd()} +function HWb(a){if(a.d){St(a.d.a,(cu(),bu)).Nd();St(a.d.a,_t).Nd()}} +function AIb(a){JJb(a.j,true);cJb(a.i,(Lz(),Iz),true);WHb(a,new nF)} +function kXb(a){var b;b=new es;Wr(b,a.c.Bm());Wr(b,iXb(a));return b} +function j2b(a){var b;if(a.A){b=a.A;HWb(b)}else{Gl(a,g2b);r2b(a,0)}} +function Iob(a){if(!Sx(a.a.i.A)){return Fob(a,a.a.i.A)}return false} +function qXb(a,b){if(T(a,b)){return false}return Zrd(a.Ml(),b.Ml())} +function C8b(a,b){!!b&&!jad(b,a.e.b)&&D8b(a,new ibc(b,a.e.c,a.e.a))} +function Mf(a,b){a.__capturedEventBits=(a.__capturedEventBits||0)|b} +function wab(){tab();return vuc(quc(lJc,1),nyd,306,0,[qab,sab,rab])} +function Ieb(){Geb();return vuc(quc(kKc,1),nyd,445,0,[Deb,Feb,Eeb])} +function Ujb(){Sjb();return vuc(quc(sLc,1),nyd,435,0,[Pjb,Qjb,Rjb])} +function LTb(){JTb();return vuc(quc(mWc,1),nyd,425,0,[GTb,HTb,ITb])} +function YAb(){WAb();return vuc(quc(kQc,1),nyd,289,0,[VAb,TAb,UAb])} +function j4b(){e4b();return vuc(quc(zXc,1),nyd,281,0,[d4b,c4b,b4b])} +function Hcc(){Ccc();return vuc(quc(XYc,1),nyd,236,0,[zcc,Bcc,Acc])} +function qmc(){omc();return vuc(quc(n_c,1),nyd,277,0,[mmc,lmc,nmc])} +function qhc(){ohc();return vuc(quc(z$c,1),nyd,412,0,[lhc,mhc,nhc])} +function whc(){uhc();return vuc(quc(A$c,1),nyd,413,0,[rhc,shc,thc])} +function Hhd(){Fhd();return vuc(quc(X3c,1),nyd,410,0,[Chd,Dhd,Ehd])} +function Rad(){Oad();return vuc(quc(X1c,1),nyd,352,0,[Lad,Mad,Nad])} +function Jsc(){Hsc();return vuc(quc(l1c,1),nyd,405,0,[Gsc,Fsc,Esc])} +function xtc(a,b){return Q8c(P8c(a.r.getTime()),P8c(b.r.getTime()))} +function ytc(a,b){return S8c(P8c(a.r.getTime()),P8c(b.r.getTime()))} +function Sic(b){try{return !!b&&!!b.nodeType}catch(a){return false}} +function Ded(a,b){if(b==a.a.O){Eed(a,null);return true}return false} +function Hf(a,b){if(!a.a.a.lp(Yyd)){return}!Ff&&Gf();If((abd(),b.U))} +function Bcd(a){var b=a.__listener;return !nvc(b)&&kvc(b,35)?b:null} +function km(a){var b;b=new fh;Of(b,(Os(),Hs));Eg(b,a);Tg(b);return b} +function Ml(a){var b,c;c=(!a.d&&Cl(a,a.o),a.d.a^1);b=yl(a,c);Cl(a,b)} +function Ct(a,b){var c;c=yed(a.a.a);Of(a.a,cBd);oed(a.a,b);fg(a.a,c)} +function Bu(a,b){var c;c=$wnd.Math.max(0,$wnd.Math.min(b,4));a.nm(c)} +function ou(a,b,c){var d;d=wu(a.c,b,c);return kvc(d,63)?E2b(d,b):a.a} +function bsd(a){Xrd();var b;b=new ttd;b.a.pp(a,b);return new ysd(b)} +function Kbd(){Hbd();var a;a=Jbd();if(!Hnd(a,Gbd)){Gbd=a;Zt(Fbd,a)}} +function Zm(){Xm();return vuc(quc(eyc,1),nyd,273,0,[Um,Tm,Vm,Wm,Sm])} +function Gz(){Ez();return vuc(quc(nAc,1),nyd,302,0,[Bz,zz,Az,Cz,Dz])} +function yF(a,b){return new qad((b.a-a.c)*a.a+a.c,(b.b-a.d)*a.b+a.d)} +function iW(a,b){if(!Hnd(UBd,b)&&!!a&&a.a!=null){return a.a}return b} +function S1(a){if(a.k){return null}!a.j&&(a.j=new DUb(a));return a.j} +function _8(a){switch(a.k){case 1:return 1;case 2:return 2;}return 0} +function Dtd(a){this.e=a;this.b=this.e.a.entries();this.a=new Array} +function tT(a,b,c,d){this.c=a;this.e=b;this.d=c;this.a=d;this.b=null} +function sT(a,b,c,d){this.c=a;this.e=b;this.d=c;this.a=null;this.b=d} +function Zab(a,b,c,d,e){gc.call(this,a,b);this.a=c;this.b=d;this.c=e} +function yr(a,b,c,d){gc.call(this,a,b);this.b=new RegExp(c);this.a=d} +function TK(a,b){$G.call(this,a);this.d=this.Gg(a);this.b=b;SK(this)} +function Sqb(a,b,c,d,e){this.a=a;this.d=b;this.b=c;this.c=d;this.e=e} +function AD(a){var b;this.a=a;b=new F$b;B$b(b,dsd(a.C.t));this.b=b.a} +function Lib(a,b){var c;if(kvc(a,93)){c=a.b;Iqd(b,pEd,(Cnd(),''+c))}} +function Ipb(a,b){return new Apb(a,'Mirror vertically',b,new Kpb(a))} +function gwb(a){return new zxb(new Mxb,new BLb(a.c,a.i,a.d),new lwb)} +function qub(a){oub();nub?Wr(nub,a):(Rlb(a.a),JNb(a.a.u,new Zlb(a)))} +function lob(a,b){if(Hnd(lHd,b)){return $Zb(a.a.Hl())}return td(a,b)} +function vwb(a){if(!!a&&xtc(a,rwb)){return 'Never'}return Bwb(a,pwb)} +function _cb(a,b,c,d){if(c==0){return -(d+1)}return Zcb(b,c-a.b.d,d)} +function Ezb(a){if(!a.a){return}og(a.a,new Izb(a),(voc(),voc(),uoc))} +function dXb(a){if(a.b){return new Cy(a.a)}return x$b(new F$b,a.c).a} +function xTb(a,b){if(b==null&&a.n==null||a.n==b){return}a.n=b;vTb(a)} +function iDb(a){if(a.a==-1){a.a=a.c.a.length;Wr(a.c,null)}return a.a} +function c9c(a){var b;if(mvc(a)){b=a;return b==-0.?0:b}return Wuc(a)} +function Kld(a,b){old();if(b>=a.length){return null}return a.item(b)} +function Lid(a,b){var c;c=a.f;b>-1&&b=0&&a=_Jb){return 1}if(a.b<=aKb){return -1}return 0} +function cyb(a){var b;b=Yxb(a,THd);if(kvc(b,78)){return b}return null} +function Zcd(a,b){var c;c=cdd(b);if(c<0){return null}return Yr(a.b,c)} +function mcd(a){var b;lcd();b=jcd.np(a);return !b?null:b.zd(b.vd()-1)} +function btd(a){var b;b=wwd(a.b,a.b.length);return new gtd(a.a,b,a.c)} +function Knd(a,b,c){Vwd(0,b,a.length);Vwd(0,b,c.length);Lnd(a,0,b,c,0)} +function gxd(a){var b;a.j=0;a.n=0;for(b=0;b0){++a.e;return true}return false} +function In(a){var b;if(!a.d.M){return null}b=a.c.i;return !b?null:b.a} +function FE(a,b,c){var d;d=WVb(a.a,b);!d&&(d=VVb(a.a,c));return d.Ol()} +function CE(a,b,c){var d;d=WVb(a.a,b);!d&&(d=VVb(a.a,c));return d.Lh()} +function ZI(a,b){if(b.a==(YE(),XE)){return}mIb(a.a,(Ez(),Az));a.b=null} +function tk(a,b){if(gk(b)){return false}return xk(a.a,fod('',kk(b.a)))} +function qK(a,b){mK(a.Kf(),a.Pf());a.Lf(true);nK(a.Kf(),b);a.Lf(false)} +function Yl(a,b){!!a.b&&Xld(a.b);a.b=null;a.a=b;!!a.a&&(a.b=Dd(a,a.a))} +function iH(a,b){this.a=a;this.b=b;this.c=new qad(-this.a.a,-this.a.b)} +function Hdb(a){Jdb.call(this,a,a);Xr(this.v,a.ih());Xr(this.r,a.hh())} +function xib(a,b){var c;kjb(new ljb(a),b);c=new Xib(a);return Wib(c,b)} +function Cpb(a,b){return new Apb(a,'Mirror horizontally',b,new Jpb(a))} +function oqb(a,b){return a.d?new UB(a.c,a.f.i):new rE(Vw(a.f),b,a.f.i)} +function xR(a,b){return (new qad(b.b.a+b.c/2,b.b.b+b.a/2)).b+b.a/2*a.a} +function dR(a,b){return (new qad(b.b.a+b.c/2,b.b.b+b.a/2)).a+b.c/2*a.a} +function _kc(a){return Hnd(a.compatMode,bKd)?a.documentElement:a.body} +function jPd(a){return Hnd(a.compatMode,bKd)?a.documentElement:a.body} +function yxb(a,b,c){rm(Ixb(a.d),false);ALb(a.c,b,a.a,new FLb(c,false))} +function rdb(a,b){if(hs(a.s,b)==-1){Wr(a.s,b);return true}return false} +function vJb(a,b){if(!!a.a&&a.a.c>=0&&a.a.a>=0){AJb(a,b);wJb(a,a.a,b)}} +function jRb(a,b){this.c=a;this.b=b;Gad()&&(this.a=new zRb(new Sbd,a))} +function gXb(a){this.b=a.kh();this.c=new utd(a.eh());this.a=new Hdb(a)} +function Jqb(a,b,c){wd.call(this,'Zoom in',c);this.a=a;dKb(b.j.e,this)} +function odc(a,b,c){return Qac(Pac(new Tac(lad(a.a,c.a),a.b-c.b),b),c)} +function Fgc(g,a,b,c,d,e,f){return g.createRadialGradient(a,b,c,d,e,f)} +function Jm(a,b,c,d){return a>=c&&a<=c+(Os(),Gs)&&b>=d&&b<=c+(Os(),Gs)} +function Bjc(a,b){var c;return ajc((c=Qjc(a,b),c?c:b.documentElement))} +function djc(a,b){var c;b=ojc(b);c=mjc(a.className||'',b);return c!=-1} +function O2b(a,b){var c;c=b&&(s6b(),h6b)==a.o;if(a.i!=c){a.i=c;vTb(a)}} +function foc(a,b){var c;c=coc(b);Nic(doc(a),c,a.a.firstChild);return c} +function frc(a,b){if(null==b){throw I8c(new und(a+' cannot be null'))}} +function T9c(a,b){if(!kvc(b,2236)){return false}return Hnd(a.a,b.Qc())} +function U9c(a){if(a==null){throw I8c(new und('uri is null'))}this.a=a} +function Umc(){Umc=p9c;Tmc=new Xmc;Smc=new Ymc;Qmc=new Zmc;Rmc=new $mc} +function ymc(){ymc=p9c;xmc=new Bmc;umc=new Cmc;vmc=new Dmc;wmc=new Emc} +function Jmc(){Jmc=p9c;Imc=new Mmc;Gmc=new Nmc;Hmc=new Omc;Fmc=new Pmc} +function dnc(){dnc=p9c;_mc=new gnc;anc=new hnc;bnc=new inc;cnc=new jnc} +function WCb(){WCb=p9c;VCb=new $Cb;UCb=new ZCb;SCb=new YCb;TCb=new XCb} +function rjd(){rjd=p9c;njd=new ujd;ojd=new vjd;pjd=new wjd;qjd=new xjd} +function Ewb(){Ewb=p9c;Cwb=new Fwb('DATE',0);Dwb=new Fwb('LICENSEE',1)} +function oL(){oL=p9c;nL=new pL('GROUP',0,false);mL=new pL(YBd,1,true)} +function s$(){s$=p9c;q$=new xT(false,KCd);r$=new vT(true,1.5,true,uBd)} +function I3(){I3=p9c;H3=vuc(quc(g6c,1),eyd,2,6,[uDd,'atom1','atom2'])} +function jNd(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)]))} +function ANd(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),z_)]))} +function zqd(a,b){return b===a?'(this Map)':(Cnd(),b==null?iyd:s9c(b))} +function Jgd(a,b,c,d){Igd.call(this,a,b);rjc((abd(),a.U),c);qjc(a.U,d)} +function sfd(a,b,c,d){var e;e=Lfd(a.d,b,c);Afd(a,(abd(),e),d);return e} +function csd(a,b){Xrd();var c;c=new mtd;Atd(c.d,a,b);return new xsd(c)} +function twd(a){hwd();if(ewd){return new swd(null)}return $vd(awd(),a)} +function G8c(){switch(x8c){case 2:case 5:return new Tld;}return new Old} +function F8c(){switch(x8c){case 2:case 5:return new ykd;}return new wkd} +function E8c(){switch(x8c){case 2:case 5:return new dkd;}return new gkd} +function D8c(){switch(x8c){case 2:case 5:return new akd;}return new $jd} +function C8c(){switch(x8c){case 2:case 5:return new Odd;}return new Ndd} +function B8c(){switch(x8c){case 2:case 5:return new ndd;}return new pdd} +function A8c(){switch(x8c){case 2:case 5:return new Ycd;}return new Xcd} +function z8c(){switch(x8c){case 2:case 5:return new okc;}return new ckc} +function Wad(){var a;if(!Tad||Yad()){a=new ltd;Xad(a);Tad=a}return Tad} +function Ojd(a){++a.a;while(a.a$wnd.Math.abs(hw(a.o.i,0.77))} +function zT(a,b){AT.call(this,a.d,a.c,new ibc(kH(a.b.b,b),a.b.c,a.b.a))} +function tB(a,b){BA.call(this,a,a.C,C$b(new F$b,new Srd(b)).a);this.a=b} +function cgd(a){wo.call(this);$f(this,wkc($doc));jjc((abd(),this.U),a)} +function okd(b,a){a?b.f.contentWindow.focus():b.f.contentWindow.blur()} +function nO(a,b,c){if(c.a!=0){XN(b,c.a);yQ(a.c.f,new EB(a.c.i,b,true))}} +function adb(a,b,c,d){if(c=0&&a.a[c]===b[c];c--);return c<0} +function bJb(a,b){var c;if(b){c=Xtd(a.a,b);return !!c&&c.c}return false} +function KWb(a){var b;if(kvc(a,275)){return a}b=MWb();wVb(b,a);return b} +function Kvb(a,b){if(Sx(a.a.a.a.i.A)){return}dwb(b,Uvb(a.a));Ovb(a.a.a)} +function ydc(a,b){vdc(a.a,b)?(a.a.r=a.a.t.nn(a.a.k,a.a.o)):(a.a.r=null)} +function Fkd(c,a){var b=c;c.onreadystatechange=Yxd(function(){a.Qn(b)})} +function nPd(a){if(!kvc(a,1009)){return false}return Hnd(this.a,a.Qc())} +function swd(a){hwd();if(ewd){return}this.c=a;this.e=true;this.a=new es} +function Cj(){hj();this.b=this.vc();this.d=(xj(),vj);this.c=new tj(this)} +function hwd(){hwd=p9c;ewd=true;cwd=false;dwd=false;gwd=false;fwd=false} +function vl(a){if(a.k||a.n){kbd((abd(),a.U));a.k=false;a.n=false;a.bd()}} +function ll(a,b){a.a=b;!!a.b&&Xld(a.b);a.b=null;!!a.a&&(a.b=Cd(a.p,a.a))} +function Gp(a,b){b>-1&&b0&&a<=VZb.length){return VZb[a-1]}return null} +function Anb(a){if(Cnb(a,(kA(),eA))!=null){return new Mnb(a)}return null} +function Sbb(a){if(a.Fj(xEd)){return Und(a.Cj(xEd),':',0)[0]}return null} +function Aib(a){var b;b=new Yfb;Wfb(b,dsd(a.n));Xfb(b,dsd(a.p));return b} +function t7(a,b){var c,d;d=(c=O6(a,b),r2(N6(b,c)));u7(b)&&q7(b);return d} +function u8b(a,b){var c,d;d=lad(b,a.b);c=t8b(a,d);return c*a.a<0?a.c:a.d} +function VFb(a,b){if(b){gg(a.a,true)}else{tFb(a,SFb.a[1]);gg(a.a,false)}} +function Bp(a){var b;if(a.e!=-1){Hp(a,a.e)}else{b=fxb(a.a);!!b&&yp(a,b)}} +function Gtc(a,b){var c;c=a.r.getHours();a.r.setFullYear(b+KKd);ztc(a,c)} +function Hjd(a,b){var c;c=Ejd(a,b);if(c==-1){throw I8c(new Eud)}Gjd(a,c)} +function Kjd(a){if(!a.a){throw I8c(new dnd)}a.c.b.Rb(a.a);--a.b;a.a=null} +function U3b(a,b){if(!b){throw I8c(new tnd)}return a.c.length-b.c.length} +function $td(a,b){var c;c=Jqd(a.c,b);if(c){cud(c);return c.e}return null} +function yxd(a,b){var c=a[b];var d=0;for(k in c)d=Math.max(d,k);return d} +function Gxd(a,b){var c=[a];for(i=0;i0&&Whd(a,b,'',d,c);return d} +function Nmd(a,b,c){var d;d=Lmd(a);Umd(a,d);d.i=c?8:0;d.f=b;d.e=c;return d} +function Grd(a,b){var c,d;c=(d=a.slice(0,b),wuc(d,a));c.length=b;return c} +function hrd(a,b){var c,d;c=b.yp();d=evd(a,c);return !!d&&Gud(d.e,b.Ok())} +function Lh(a,b){var c,d;c=new Uh(b);d=pg(a,c,_pc?_pc:(_pc=new Ioc));c.b=d} +function acd(a){Zbd();bcd();ccd();return _bd((!fqc&&(fqc=new Ioc),fqc),a)} +function _n(a,b,c){if(b.a.length==0){return a}return $n(a,Im(new Qd(b,c)))} +function cpd(a,b){if(b==0||a.e==0){return a}return b>0?tpd(a,b):wpd(a,-b)} +function dpd(a,b){if(b==0||a.e==0){return a}return b>0?wpd(a,b):tpd(a,-b)} +function Ku(a,b){if(dsd(a.C.n).b.vd()==0||!b){return null}return hT(a.j,b)} +function Mgd(a,b){if(b<0||b>=vlc((abd(),a.U)).length){throw I8c(new kmd)}} +function Yo(a){if(pl(a.a.e)){lo(a.a,a.a.o+(ho(),fo));Ji(a,200)}else{Hi(a)}} +function $o(a){if(pl(a.a.j)){lo(a.a,a.a.o-(ho(),fo));Ji(a,200)}else{Hi(a)}} +function dL(a,b){if(a.a.length==0||b.a.sd()){return false}return !Zrd(a,b)} +function XJ(a,b){var c;c=b!=null&&kvc(b,215)?b.a:a.a;return mnd(VJ(a.b,c))} +function Ip(a,b,c){var d;if(b!=-1){as(a.c,b,c);d=xfd(a.b,b);oed(d,bxb(c))}} +function po(a,b,c){var d;ro(a,c);if(b.T==a){d=Ejd(a.i,b);d=0&&b!=a.d){a.d=b;a.j=null;!!a.A&&SVb(a.A,new u7b)}} +function WU(a){i1b();if(a>0&&a<=126){return YU(),Eqd(XU,mnd(a))}return uBd} +function Ydd(a,b){a.d=(abd(),b.U);!!a.e.d&&Wdd(a.e.d)==Wdd(a)&&Dl(a.e,a.d)} +function efd(a,b){var c;c=vo(a,b);if(c){b==a.a&&(a.a=null);dfd(a)}return c} +function Xtd(a,b){var c;c=Eqd(a.c,b);if(c){Ztd(a,c);return c.e}return null} +function avd(a,b){!a.a?(a.a=new Aod(a.d)):nod(a.a,a.b);nod(a.a,b);return a} +function H6b(a,b,c){I6b.call(this,a.gn(),b.gn(),c);F6b(this,a);G6b(this,b)} +function kPd(a,b,c){this.b>0?sqc(this,new amd(this,a,b,c)):wqc(this,a,b,c)} +function idd(a){$wnd.addEventListener&&$wnd.addEventListener(mLd,a,false)} +function ZZb(a){return ivc(Cmd(a.charCodeAt(0)))+a.substr(1).toLowerCase()} +function n7(){l7();return vuc(quc(xIc,1),nyd,241,0,[k7,g7,e7,h7,i7,f7,j7])} +function PHb(){PHb=p9c;OHb=vuc(quc(oAc,1),nyd,217,0,[(Lz(),Iz),Jz,Hz,Kz])} +function nz(){nz=p9c;mz=hc((iz(),vuc(quc(kAc,1),nyd,249,0,[hz,ez,gz,fz])))} +function xz(){xz=p9c;wz=hc((sz(),vuc(quc(lAc,1),nyd,120,0,[qz,pz,rz,oz])))} +function SIb(){SIb=p9c;RIb=hc((MIb(),vuc(quc(TSc,1),nyd,304,0,[LIb,KIb])))} +function V8b(){V8b=p9c;U8b=new W8b('RECTANGLE',0);T8b=new W8b('ELLIPSE',1)} +function Ts(){Ts=p9c;Ss=new RegExp('^(\\d+)(?:\\.(\\d+))?(?:\\.(\\d+))?.*')} +function pu(a,b,c){var d;return (d=wu(a.c,b,c),kvc(d,63)?E2b(d,b):a.a).Hl()} +function gB(a,b,c){var d;Jud(b,BBd);return hB(a,c,(d=new lB,new fE(d,b,c)))} +function hdb(a,b,c,d){if(Wtd(a.c,c)){return gdb(a,b,c,d)!=null}return false} +function DR(a){var b;if(a){b=new FR;a.Tm(b);return X9c(b.a.a).a}return null} +function _r(a,b){var c;c=a.Ad(b);if(c==-1){return false}$r(a,c);return true} +function Fk(a,b){var c,d;c=a.a-b.a;d=a.b-b.b;return $wnd.Math.sqrt(c*c+d*d)} +function Lvb(a,b){var c;c=b.a.getData(tFd);c!=null&&c.length!=0&&Vvb(a.a,c)} +function Tg(a){var b;b=a.O;if(b){a.v!=null&&b.zb(a.v);a.w!=null&&b.Bb(a.w)}} +function dx(a,b){if(!!b&&!!a.c.j&&!!a.c.C){PS(a.c.j,a.a,b);zy(a.a.b,a.c.C)}} +function PCb(a,b){fDb(a.b,pvc((s6b(),h6b))===pvc(jDb(a.a.j))||kDb(a.a.j,b))} +function Mqb(a,b,c,d){this.b=new es;this.c=c;this.d=a;this.a=b;Xr(this.b,d)} +function cbb(a){this.a=a;this.b=suc(uvc,jyd,23,6,15,1);this.c=0;bbb(this,6)} +function lnb(a){this.b=a;this.a='Cannot drop file: unsupported file format'} +function XVb(a){var b;for(b=0;b0){return a.files[0]}return null} +function X7b(a,b){var c;c=Zr(a.b,b,0);if(c>-1){return Yr(a.a,c)}return null} +function d2b(a){var b;b=new is;if(a){Xr(b,a.d);Xr(b,a.a);Xr(b,a.c)}return b} +function v8b(a,b){var c;c=new qad(b.a-a.a,b.b-a.b);return new qad(-c.b,c.a)} +function bbc(a,b){return b.a>a.b.a&&b.b>a.b.b&&b.a3||a.Nl()<-3){return 0}return a.Nl()!=0?4-a.Nl():0} +function od(a){if(a==9||a==17||a==35||a==53||a==85)return true;return false} +function Im(a){if(a.a.a.length==0||!a.c){throw I8c(new and)}return new Hm(a)} +function uu(a){this.a=new y2b((WZb(),DXb));this.c=new yu;nu(this,new w$b(a))} +function To(a,b){var c,d;d=gbd((abd(),b.U));c=vo(a,b);c&&Qic(a.c,d);return c} +function TOb(a,b){var c,d;d=(c=us({}),c);d['atoms']=a;d['bonds']=b;return d} +function Tid(a,b){var c;Rid(a,b);c=to(a.a,b+1);c==a.b&&(a.b=null);To(a.a,c)} +function Bl(a,b){var c;c=(b.a&1)==1;agc();Xdc((abd(),a.U),(Kec(),c?Iec:Gec))} +function yuc(a){var b,c,d;b=a&XKd;c=a>>22&XKd;d=a<0?YKd:0;return Auc(b,c,d)} +function QR(a,b){a.b=true;a.a=true;a.c=new yod;return Q9c(),new J9c(RR(a,b))} +function uH(a){a.d=null;a.j=null;a.k=false;ex(Mu(a.o.i),a.eg());a.o.i.w.Hf()} +function _M(a){a.a.a=null;a.a.c=false;a.b=0;a.d=null;a.c=null;a.e=null;BM(a)} +function GQ(a,b){return kvc(b,657)&&a.a!=null&&a.b!=null&&a.a==b.a&&a.b==b.b} +function gn(a,b,c,d){return $wnd.Math.max(b-yn(Osd(a.a,c))-yn(Osd(a.a,d)),0)} +function uV(a,b,c,d,e){var f;f=new UV(a,b,c,d,e);return new QV(c,d,a.Yd(),f)} +function fT(a,b){var c;c=Xtd(a.d,b);return c?c:new dV(b,a.n,a.f,a.f,a.f,a.s)} +function Nbd(){var a;a=Yxd(Kbd);$wnd.addEventListener('hashchange',a,false)} +function g3(){g3=p9c;e3=new h3('HAS_UID',0,true);f3=new h3('NO_UID',1,false)} +function J$(){J$=p9c;H$=new vT(true,1.5,true,ECd);I$=new vT(true,3,true,ECd)} +function FAb(a){var b;b=new Kgd;kg((abd(),b.U),rId,true);return new RAb(b,a)} +function hab(a){var b,c;c=Tr(T7,a);c<0?(b=a.a/2|0):(b=4+c);return Cnd(),''+b} +function Tw(a,b){RE(b,a.e);QE(b,a.e);NE(b,a.e);ME(b,a.e);OE(b,a.e);PE(b,a.e)} +function Lnb(a,b,c){return Enb(a.a,(kA(),eA),vPb(b,false,xPb(znb(c))),a.a.c)} +function RRb(a){if(PRb(a)==-1){return}rm(a.b,false);JRb(a.a,PRb(a),Qdd(a.c))} +function QKb(a){if(!(!!a.b&&!!a.a)){return}rrb(new urb(a.b),a.a);a.c.tb(a.b)} +function KZ(a){if(!JZ(a)){return Xrd(),Xrd(),Urd}return Xrd(),new ksd(JZ(a))} +function v6b(a){s6b();if(a!=null){if(U(a)==RXc){return a}}return w6b(s9c(a))} +function Fcc(a){Ccc();if(a!=null){if(U(a)==XYc){return a}}return Gcc(s9c(a))} +function Zcc(a){Xcc();if(a!=null){if(U(a)==ZYc){return a}}return $cc(s9c(a))} +function $pc(a,b){var c;if(Ypc){c=new Zpc;c.b=b;a.Fb(c);return c}return null} +function nVb(a,b){var c;if(b){c=a.a;a.a=b;jad(b,c)||!!a.b&&SVb(a.b,new u7b)}} +function Iwb(a,b,c){Vfd(a.a,a.a.b);Ffd(a.a,a.a.b-1,0,b);Ffd(a.a,a.a.b-1,1,c)} +function Bab(a,b,c,d,e){b.a+=c;b.a+=' 0';nod(b,zab(a,l8(d)));nod(b,Aab(a,e))} +function VKb(a,b){var c;WKb.call(this,(c=new MPb(new Jkb(a,(kA(),hA)),b),c))} +function KJ(a,b,c,d){IJ();$G.call(this,a);this.c=new i_(c);this.b=d;this.a=b} +function Ifd(){Gfd.call(this);Vo(this,new Qfd(this));Efd(this,new jgd(this))} +function sed(){qed.call(this,wkc($doc));(abd(),this.U).className='gwt-HTML'} +function ped(){ned.call(this,wkc($doc));(abd(),this.U).className='gwt-Label'} +function Crd(a){if(vrd(a.d,a.c)<0){a.a=a.a-1&a.d.a.length-1;a.b=a.d.c}a.c=-1} +function q7(a){if(ps(a.c)){++a.b;a.a=qs(a.c);return a.a}a.a=null;return null} +function Src(a){switch(a.k){case 0:case 1:return true;default:return false;}} +function Zi(a){if(!a.p){throw I8c(new end('initWidget() is not called yet'))}} +function Vwd(a,b,c){if(a<0||b>c||b0&&a.jm(d)}} +function cx(a,b){if(!!b&&!!a.c.j&&!!a.c.C){RS(a.c.j,a.a.b,b);zy(a.a.b,a.c.C)}} +function aA(a,b){if(!!a.a&&a.a!=b||!b){a.a=null;throw I8c(new Gv)}else{a.a=b}} +function C6(a){switch(a){case 3:return s6b(),i6b;default:throw I8c(new and);}} +function WL(a){if(a.c){$L(a)}else{a.c=true;a.b=new pad;ZL(a,a.d);iS(a.j,100)}} +function Rfb(a,b){this.c=b;this.a=a.a;this.b=dsd(a.a.a.b);this.d=dsd(a.a.a.a)} +function Ekb(a){this.a=a;this.b=true;this.b?Of(this.a.T,PGd):Yf(this.a.T,PGd)} +function fh(){Jg();eh.call(this,true);kg(Ig.Ho(fbd((abd(),this.U))),Azd,true)} +function feb(){geb.call(this,Q0((P0(),M0))?new kdb(new Kt):new Kt,f2(Q0(K0)))} +function bqb(a,b){this.a=new is;Wub(a,new cqb(this));!!b&&Iu(b,new dqb(this))} +function Yqb(a,b){var c,d;c=new _qb;d=Xqb(a,b);Prd(d.a,d.a.length,c);return d} +function ffb(a,b){var c;c=efb(a,b);b.a.length==0&&Xr(b,cfb(a,a.a.k));return c} +function Cob(a){var b;return b=Dob(a),qmd(),(b?Eob(a,b):Vw(a.a).e)?true:false} +function jjb(a,b,c){var d;hjb(a,(d=Pib(a.c,oFd),eld(d,tDd,tFd),Lkd(b,d),d),c)} +function fhb(a,b,c){bhb(c,'topology',b.j.a);bhb(c,HEd,Vfb(b.e));a.a.Nj(b.n,c)} +function UHb(a,b){Dgc(b,0,0,_Ib(a.i,a.b).Un().width,_Ib(a.i,a.b).Un().height)} +function uCb(a,b,c){tCb.call(this,a,c);this.f=b;this.c=false;this.e=new $s(b)} +function Hzb(a,b,c,d){wyb.call(this,b);this.a=null;this.e=d;this.b=a;this.c=c} +function crc(a){arc.call(this,'A request timeout has expired after '+a+' ms')} +function EOb(a){if(!FOb(a)){throw I8c(new Fud('No value present'))}return a.b} +function E2b(a,b){if(b!=a.c&&b!=a.d){throw I8c(new and)}return b==a.d?a.c:a.d} +function Uod(a){var b;if(a.e==0){return -1}b=Tod(a);return (b<<5)+knd(a.a[b])} +function Mqc(a){var b;if(!a.d){return}Hi(a.c);b=a.d;a.d=null;Dkd(b);b.abort()} +function qS(a){if(!a.b){a.b=new vS(a);!!a.d&&!a.d.sd()&&xS(a.d,a.b)}return a.b} +function yV(a,b,c){if(b!=null){return xV(a,new jX((HU(),GU),!c),b)}return null} +function WOb(b){var a=b.backgroundColor||null;if(a==WId){return null}return a} +function F3(a,b){var c;c=a.exec(b);if(c){return Und(c[0],'=',0)[1]}return null} +function y6(a){if(a==1){return Ccc(),Bcc}if(a==2){return Ccc(),Acc}return null} +function cab(a){switch(a.k){case 3:return 1;case 1:return 2;default:return 0;}} +function Leb(a,b){var c;if(b){c=Meb(a,b.b);if(c){Keb(a,Qeb(c,b.a));_r(a.b,c)}}} +function Bt(a){if(djc(Rf(a.a),cBd)){Yf(a.a,cBd);oed(a.a,Vf(a.a));fg(a.a,null)}} +function _m(){_m=p9c;$m=hc((Xm(),vuc(quc(eyc,1),nyd,273,0,[Um,Tm,Vm,Wm,Sm])))} +function mA(){kA();return vuc(quc(yAc,1),nyd,218,0,[eA,fA,hA,jA,iA,gA,dA,cA])} +function gH(a,b){return hH(a,$wnd.Math.ceil(jH(kH(b,a.c))*30/jBd-0.5)/30*jBd)} +function nob(a,b){return oob(a,new v2b(b),(i1b(),b>0&&b<=126?h1b[b-1].d:null))} +function ihb(a,b,c){var d;d=lhb(a,b,(bjb(),Yib));Yhb(d,b1b(d1b(b.n)),b.Lh(),c)} +function b3(a,b,c,d,e,f){gc.call(this,a,b);this.d=c;this.a=f;this.b=d;this.c=e} +function kJ(a,b,c,d,e,f){fJ.call(this,a,f);this.a=b;this.d=c;this.c=d;this.b=e} +function ZAb(a,b,c){this.a=a;this.b=new zCb(b,c);a.c||yCb(this.b,a.c?null:a.f)} +function Ixb(a){if(!a.b){a.b=new Bm;zm(a.b,'Import');mm(a.b,Gxb(a))}return a.b} +function onb(a){if(!a){throw I8c(new und('Indicator cannot be null'))}this.a=a} +function Jmb(a){if(!Imb){Imb=true;Sxd();z0b(Rxd,uMc,a);new Zmb;new Rmb;Kmb(a)}} +function UKb(a,b){var c;c=new JPb(a.a,null,(C1(),m1),null);return new ZKb(c,b)} +function Yxb(a,b){if(Hnd(THd,b)){return !a.a&&(a.a=new Nvd),a.a}return td(a,b)} +function __b(a,b){if(mx(a,b)){!!a.v&&SVb(a.v,new u7b);return true}return false} +function K0b(a,b){var c;c=a;while(c){if(c.b==b){return true}c=c.c}return false} +function lUb(a){var b;if(kvc(a,68)){b=a.e;if(b){return b.b!=null}}return false} +function L7b(a,b,c){if(b.a.length>1){return new l8b(a,b,c)}return new r8b(a,b)} +function qRb(a){this.a=a;this.c=new JIb(new pRb(Rf(Dbd().a).getContext('2d')))} +function vAb(a,b){var c;AAb(a,(c=new SBb,new RAb(MEb(Rf(new kjd),c,c),b)),iId)} +function _cd(a,b){var c;c=cdd(b);b[lLd]=null;as(a.b,c,null);a.a=new ddd(c,a.a)} +function Etc(a,b){var c;c=a.r.getHours()+(b/3600|0);a.r.setSeconds(b);ztc(a,c)} +function Z_b(a){var b,c,d;for(c=0,d=a.length;c=c||b<0){throw I8c(new lmd(vLd+b+wLd+c))}} +function Ocd(a){var b;b=Tcd(a);if(!b){return}cbd(a,b.nodeType!=1?null:b,Bcd(b))} +function c2b(){X1b();return vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b])} +function _cc(){Xcc();return vuc(quc(ZYc,1),nyd,206,0,[Wcc,Rcc,Ucc,Scc,Tcc,Vcc])} +function Fhc(){Dhc();return vuc(quc(B$c,1),nyd,278,0,[xhc,yhc,zhc,Ahc,Bhc,Chc])} +function yNd(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_]))} +function Pnd(a){return (new RegExp('^([a-z]+|#[0-9]+|#x[0-9a-fA-F]+)$')).test(a)} +function kdd(a){$wnd.removeEventListener&&$wnd.removeEventListener(mLd,a,false)} +function Qm(a,b){a.a=$wnd.Math.max(0,a.a+(b?1:-1));Wf(a.b)!=a.a>0&&gg(a.b,a.a>0)} +function gp(a){!!a.b&&!!a.c&&mp(a.d,qvc(a.c.a),qvc(a.c.b),qvc(a.b.a),qvc(a.b.b))} +function je(a,b){if(b){Ydd(a.o,b);Ydd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f),b)}} +function wad(){if(!uad){uad=wkc($doc);mg(uad,false);Lic((oid(),$doc.body),uad)}} +function Evd(){Evd=p9c;Avd=new Fvd('All',0);Bvd=new Hvd;Cvd=new Ivd;Dvd=new Jvd} +function _1b(a,b,c,d,e,f){gc.call(this,a,b);this.a=c;this.b=d;this.c=e;this.d=f} +function mac(a,b,c,d,e,f){gc.call(this,a,b);this.d=c;this.c=d;this.a=e;this.b=f} +function yc(a,b,c){var d,e;e=0;for(d=0;d4} +function sY(a,b){if(b){return 1.5}if(1.5*a.c.Yd()<1){return 1/a.c.Yd()}return 1.5} +function zkb(a,b){var c,d,e;for(d=0,e=b.length;d0&&dsd(a.k).a.sd()&&!b.c.fn()&&!b.a.fn()} +function lGb(a,b){var c;c=b?b.ab():'';pFb(a.b.a,null);cGb(a.b.d,a.a.Ic()+':\n'+c)} +function wuc(a,b){ruc(b)!=10&&vuc(U(b),b.Gp,b.__elementTypeId$,ruc(b),a);return a} +function bbd(a,b){abd();var c;c=Bcd(b);if(!c){return false}cbd(a,b,c);return true} +function dob(a){Yw(a.c,a.d);ud(a,Fyd,(qmd(),T(a.d,a.c.a)?true:false));return true} +function Vfd(a,b){var c,d;d=zfd(a,b);++a.b;for(c=0;c=a.c.c){throw I8c(new Eud)}a.a=a.c.a[a.b];++a.b;return a.a} +function atd(a,b){var c;c=b.k;if(!a.b[c]){a.b[c]=b;++a.c;return true}return false} +function Lwb(){this.a=new $fd(0,2);this.a.f[MAd]=3;Of(this.a,'mjs-padded-header')} +function _D(a,b){this.d=b;this.b=new gs(a);this.c=XD(this,a);this.a=$D(this.d.A,a)} +function VX(a,b,c,d,e){$wnd.Math.abs(d)$wnd.Math.max(a.o.i.a.j.e.b*10,1)} +function Br(a,b,c){if(!c){return}Iqd(a.b,b,Cr(a,Gqd(a.b,b)?hvc(Fqd(a.b,b)):a.a,c))} +function VI(a,b){if(b.a==(YE(),XE)){return}if(a.b){aw(a.c,lad(b.c,a.b));Uo(a,b.c)}} +function Tv(a){Uo(a.a,(Lz(),Hz));if(fIb(a.a)&&gIb(a.a,Hz)){hIb(a.a,false);qw(a.e)}} +function Xv(a){Uo(a.a,(Lz(),Jz));if(fIb(a.a)&&gIb(a.a,Jz)){hIb(a.a,false);vw(a.e)}} +function Kn(a){a.d.M&&(Kid(a.c)==-1?Lid(a.c,a.c.f.a.length-1):Lid(a.c,Kid(a.c)-1))} +function W0(a){var b;this.a=(b=Imd(pHc),new gtd(b,ywd(b,b.length),0));Lr(this.a,a)} +function YP(a){var b;if(a.c){b=new gs(a.d.Ne());Wr(b,a.c);return b}return a.d.Ne()} +function XW(a){if(a.b.a.length==0||a.a==(dX(),cX)){return a.c}return a.b.a[0].Qh()} +function Gub(a){if(a.f.a.a.length!=0){Qm(a.e,true);bt(a.f.a.a[0].xl(),new Vub(a))}} +function Gvb(a,b){if(b.a.length==0){return}a.a.a.length==0||Wr(a.a,null);Xr(a.a,b)} +function qfb(a,b,c,d){if(b){Wr(a.b,b);Wr(a.c,c);Wr(a.a,d);return true}return false} +function B$(a,b,c,d,e){s$();var f;f=new z$(a,b,c,d,false);f.c=tS(c,d,e,f);return f} +function bbb(a,b){var c;for(c=0;c0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))} +function d1b(a){return a?(Xrd(),kvc(a,291)?new Dsd(a):new vsd(a)):(Xrd(),Xrd(),Urd)} +function APb(a){return ys(BPb(CPb(zPb(a)),a.defaultItem||null,a.isFloating||false))} +function f$b(a){if(a.b.a==null){return null}return a.b.a+(''+(a.a==-1?'':mnd(a.a)))} +function $od(a,b){if(b.e==0){return Mod}if(a.e==0){return Mod}return lqd(),mqd(a,b)} +function ftd(a,b){if(!!b&&a.b[b.k]==b){a.b[b.k]=null;--a.c;return true}return false} +function zgc(a){ol();!wgc&&(wgc=new Agc);if(!a.getContext){return false}return true} +function kw(a,b,c,d){if(yIb(a.a,b,c,d)){a.j.c=true;a.w.Hf();return true}return false} +function Bj(c,a){var b=c.b.contentWindow.document;return b.queryCommandSupported(a)} +function zjc(a){var b=a.nextSibling;while(b&&b.nodeType!=1)b=b.nextSibling;return b} +function hvc(a){var b;a==null||Array.isArray(a)&&(b=ruc(a),!(b>=14&&b<=16));return a} +function htd(a){var b;++a.a;for(b=a.c.a.length;a.aa.b+a.j&&emd(b,a.b+a.j)>=53){c=a.b+a.j-1;ftc(a,b,c)}} +function RK(a,b){var c;if(a.c){Jl(a,b.c);c=hx(Lu(a.o.i));a.Fg(c);SK(a);a.o.i.w.Hf()}} +function bK(a,b){var c;c=eK(a);if(c.sd()){return null}return a.b?cK(a,b,c):dK(a,b,c)} +function i5(a,b){h5();var c;return c=bod(a.substr(b,b+3-b)),c.length==0?0:Xmd(c,10)} +function t2(a,b){var c,d;for(d=b.mp().Qb();d.Rc();){c=d.Sc();DWb(a.a,c.yp(),c.Ok())}} +function CH(a,b){return a.Gl()==null&&b.Gl()==null||a.Gl()!=null&&Hnd(a.Gl(),b.Gl())} +function pQ(a,b){dH.call(this,a);this.a=new lQ(a,b);this.c=new VM(a);bH(this,this.a)} +function CQ(){this.a=new Cqc;this.d=new zrd(this.b);this.c=new zrd(this.b);this.b=40} +function uC(a,b,c){this.o=a;this.j=new _td;this.b=new _td;this.e=b;this.a=lC(this,c)} +function Cgd(a){xgd();En(this,new Igd(this,a));(abd(),this.U).className='gwt-Image'} +function gjd(a){JEb.call(this,a,(!gad&&(gad=new had),gad),(!ead&&(ead=new fad),ead))} +function aud(a){ltd.call(this);Utd(this);this.b.b=this.b;this.b.a=this.b;yqd(this,a)} +function hxd(a,b){a.k[a.n++]=b;if(a.n==a.k.length){lxd(a,a.k,0);a.n=0}a.j=J8c(a.j,1)} +function vyb(a,b){if(b!=a.j){if(b){Yf(a.i,YHd);a.j=true}else{Of(a.i,YHd);a.j=false}}} +function xn(a){tn(a);if(a.b){return}cfd(a.d.c,a.f,a.e);a.a.gd(a.d.c,a.f,a.c);a.b=true} +function A2b(a){var b;b=new T2b(a.o,a.c,a.d,a.n);b.b=a1b(a.b);M2b(b,F2b(a));return b} +function QF(a){var b;b=false;b=b|dG(a.f);b=b|dG(a.k);b=b|dG(a.i);b=b|dG(a.j);return b} +function Z9b(a){var b,c,d;b=new V9b;for(d=a.Qb();d.Rc();){c=d.Sc();Q9b(b,c)}return b} +function zB(a){var b;b=new $qd(a.a,a.a.a.length);while(b.b>0){b.a.zd(b.c=--b.b).Uf()}} +function bG(a){if(a.b.c){a.b.c.c=false;a.n.w.Hf()}if(a.b.d){a.b.d.c=false;a.n.w.Hf()}} +function LK(a,b){a.b=false;VG(a,b.c);jy(Lu(a.o.i).b)?(a.a=new NK(a,NG(a))):(a.a=null)} +function sQ(b,c){try{b.a.lh(AR(b.b,c))}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}} +function pW(a,b,c){lW();this.a=b;Mqd(b.c)==0?(this.b=null):(this.b=xW(new yW(a,b,c)))} +function z$(a,b,c,d,e){this.o=a;this.e=new es;this.b=c;this.k=d;this.d=e;Xr(this.e,b)} +function dkb(a,b,c,d,e,f){nkb(a,b,new Aob(c,d+Es((Cnd(),String.fromCharCode(f))),e))} +function WN(a){if(P4b(a)!=(V4b(),S4b)){throw I8c(new and)}return Xmd(Nud(VN(a).d),10)} +function Q6(a){if(q7(a)==null){throw I8c(new vqd('Space of meta data is missing.'))}} +function IS(a){if(a.a.length==0){return a_(),_$}return a.a.length==1?a.a[0]:new GS(a)} +function tib(a){switch(a.k){case 4:return 'W';case 5:return 'H';default:return null;}} +function $xb(a,b){if(Hnd(Fyd,b)&&(zd(a.b)||zd(a.c))){return td(a,b)}return lob(a.a,b)} +function Hlb(a,b){a.F=vlb(a,!(b.a&&FOb(b)));b.a&&FOb(b)&&bt(jQb(EOb(b)),new bmb(a.F))} +function g8(a,b){var c,d;for(d=a.e.nj(b).Qb();d.Rc();){c=d.Sc();Wr(a.j,c);ptd(a.d,c)}} +function qxb(a){var b;b=a.indexOf(oyd);b>0&&(this.c=a.substr(0,b));this.b=a;oxb(this)} +function PRb(a){var b;b=CEb(a.f.a);if(b==null||b.length==0){return -1}return ORb(a,b)} +function RBb(a){var b;if(a!=null){b=bod(s9c(a));if(b.length!=0){return b}}return null} +function ROb(b,c){try{var d=JSON.parse(b);if(d[c]){return d[c]}}catch(a){}return null} +function yVb(a,b){if(tx(a,b)){a!=b.b&&(b.b=a);SVb(a,new u7b);return true}return false} +function GVb(a,b){if(rx(a,b)){a!=b.d&&(b.d=a);SVb(a,new u7b);return true}return false} +function m1b(a,b){i1b();if(b){return Ind((E0b(),C0b).b,a)}return Hnd((E0b(),C0b).b,a)} +function o1b(a,b){i1b();if(b){return Ind((E0b(),D0b).b,a)}return Hnd((E0b(),D0b).b,a)} +function sdc(a){if(a){if(dsd(a.p).a.sd()){return a}return ndc(new rdc(a))}return null} +function MNb(a,b){if(b==null||b.length==0){return}a.b=new Je(new QNb(b));zQ(a,new Ci)} +function lTb(a,b){if(b==null&&a.q==null||a.q==b){return}a.q=b;!!a.A&&SVb(a.A,new u7b)} +function F9(a,b,c){if(c!=null){X9((W9(),U9),a);a.a+=''+b;a.a+=' ';a.a+=''+c;a.a+=oyd}} +function ric(a){var b,c;if(a.c){c=null;do{b=a.c;a.c=null;c=Bic(b,c)}while(a.c);a.c=c}} +function qic(a){var b,c;if(a.b){c=null;do{b=a.b;a.b=null;c=Bic(b,c)}while(a.b);a.b=c}} +function $Ub(a){var b,c;b=a.b.Lh();c=a.c.Lh();return new qad((b.a+c.a)/2,(b.b+c.b)/2)} +function Tcd(a){var b;b=(ujc(),tjc).yn(a);while(!!b&&!Bcd(b)){b=b.parentNode}return b} +function Lmd(a){var b;b=new Kmd;b.p='Class$'+(a?'S'+a:''+b.k);b.b=b.p;b.n=b.p;return b} +function zfd(a,b){var c;b!=a.no()&&rfd(a,b);c=(abd(),Nkc($doc));hbd(a.c,c,b);return b} +function Zf(a,b){var c=a.parentNode;if(!c){return}c.insertBefore(b,a);c.removeChild(a)} +function Jj(c){var a=c.b;var b=c;a.onload=Yxd(function(){a.onload=null;b.Hc();b.Ac()})} +function Aj(a){return $doc.activeElement===a.b&&a.b.contentWindow.document.hasFocus()} +function Vkc(a){return (Hnd(a.compatMode,bKd)?a.documentElement:a.body).clientWidth|0} +function Dl(a,b){if(a.e!=b){!!a.e&&Qic((abd(),a.U),a.e);a.e=b;abd();Lic(a.U,lbd(a.e))}} +function Lr(a,b){var c,d,e;c=false;for(e=b.Qb();e.Rc();){d=e.Sc();c=c|a.od(d)}return c} +function zx(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.He(c)}return e} +function Cx(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.Ge(c)}return e} +function Ax(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.df(c)}return e} +function Bx(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.ef(c)}return e} +function Jp(a,b,c){this.c=new is;Qp((Up(),Pp));this.d=b;Xr(this.c,c);this.a=a;Dp(this)} +function QC(a,b,c){this.o=b;this.b=new std;this.c=new gXb(a);IC(this);this.d=c?c:zD(b)} +function eH(a,b){dH.call(this,a);this.a=new BH(a,b);this.b=new qI(a,b);bH(this,this.a)} +function OC(a,b){PC.call(this,a,y$b(new F$b,new Srd(vuc(quc(xWc,1),lyd,715,0,[b]))).a)} +function e_(){e_=p9c;d_=new h_(MBd,(A_(),vuc(quc(UGc,1),nyd,34,0,[l_,n_,r_,x_,t_])))} +function SQ(){SQ=p9c;RQ=new RegExp('rgb *\\( *([0-9]+), *([0-9]+), *([0-9]+) *\\)')} +function wR(){wR=p9c;vR=new yR('TOP',0,-1);uR=new yR(FBd,1,0);tR=new yR('BOTTOM',2,1)} +function Hsc(){Hsc=p9c;Gsc=new Isc('RTL',0);Fsc=new Isc('LTR',1);Esc=new Isc(sBd,2)} +function AR(a,b){var c,d;return c=Rf(new ted(QR(new UR,s9c(b)))),d=new m9b,BR(a,c,d),d} +function lhb(a,b,c){var d,e;d=new Jhb(a.n,a,false);e=shb(d,c);return Ahb(a,e,b,c,null)} +function Xgb(a,b,c){var d,e;d=new Jhb(a,c,false);e=b.a;hhb(d,e);thb(d);uhb(d);return d} +function zlb(a,b){var c,d,e,f;f=Dr(a.v,b);for(d=0,e=f.length;d'+zl(a.a)+Uyd):Rnd(zl(a.a),c,b))} +function BX(a,b,c,d){this.c=b;this.a=d.Jf(YCd,(NT(),ET),(z0(),y0));this.b=zX(this,a,c)} +function Iqb(a,b){wd.call(this,a,b);this.a=null;ud(this,Gyd,(qmd(),this.a?true:false))} +function MJb(a){this.b=new ZJb;this.d=a;this.e=new jKb;this.c=new qad(0,0);this.a=null} +function wOb(a){var b;b=a.p;this.a=fWb(b,a.c);this.c=fWb(b,a.d);this.b=tsd(dsd(b.p),a)} +function ZGb(a){var b;a.a=new ct;b=a.b;cHb(a.c,BO(b,(O$b(),N$b)),BO(b,K$b));return a.a} +function sSb(a){var b,c,d;b=new es;for(d=a.Qb();d.Rc();){c=d.Sc();Wr(b,c.$())}return b} +function iWb(a){var b,c;for(c=new qsd(dsd(a.o).b.Qb());c.b.Rc();){b=c.b.Sc();b.d=null}} +function jWb(a){var b,c;for(c=new qsd(dsd(a.o).b.Qb());c.b.Rc();){b=c.b.Sc();b.b=null}} +function WAb(){WAb=p9c;VAb=new XAb('OFF',0);TAb=new XAb(syd,1);UAb=new XAb('NUMBER',2)} +function d7b(){d7b=p9c;c7b=new e7b('SINGLE_ELECTRON',0);b7b=new e7b('ELECTRON_PAIR',1)} +function jjd(){fjd();gjd.call(this,Pkc($doc));(abd(),this.U).className='gwt-TextArea'} +function dcd(){Zbd();var a;if(Tbd){a=new hcd;!!Ubd&&oqc(Ubd,a);return null}return null} +function tVb(a,b){if(mdb(a,b)){a!=b.b&&(b.b=a);SVb(a,new u7b);return true}return false} +function CVb(a,b){if(tdb(a,b)){a!=b.b&&(b.b=a);SVb(a,new u7b);return true}return false} +function cjd(a,b){var c;c=Ejd(a.i,b);if(c!=-1){Tid(a.a,c);return ced(a,b)}return false} +function qud(a,b){var c;c=b.c;b.a.b=b.b;b.b.a=b.a;b.a=b.b=null;b.c=null;--a.b;return c} +function q9c(a,b,c){var d=function(){return a.apply(d,arguments)};b.apply(d,c);return d} +function Er(a,b){var c;for(c=a.length-1;c>=0;c=c-1){if(Vmb(b,a[c])){return c}}return -1} +function doc(a){var b;if(!a.a){b=$doc.getElementsByTagName('head')[0];a.a=b}return a.a} +function aP(a){if(a.c.o.i.q){return qmd(),O0b(Vw(a.c.o))?true:false}return qmd(),false} +function mbb(a){if(a.b.length<6){throw I8c(new bnd('LA must be at least 6!'))}this.a=a} +function Zl(a){ol();Vl.call(this);Yl(this,a);kg((abd(),this.U),'mjs-toggleButton',true)} +function nfd(){ol();ofd.call(this,zkc($doc));(abd(),this.U).className='gwt-FileUpload'} +function nM(a){ex(Mu(a.o.i),(e_(),d_));a.o.i.w.Hf();a.a=null;a.p=null;a.e=null;a.f=null} +function EJ(a){a.p=null;a.b=null;a.c=null;a.a=null;ex(Mu(a.o.i),(e_(),d_));a.o.i.w.Hf()} +function xI(a,b){a.e=true;a.a=a.i;a.i=b.Lh();OI(a,b.Lh(),H9b(b.Lh(),false,K9b(b),LBd))} +function k$(a,b,c){var d,e;for(e=a.b.Qb();e.Rc();){d=e.Sc();d.zh(b,c,(pR(),nR),d.yh())}} +function p5(a,b){var c,d;c=(!a.b&&(a.b=new ltd),a.b);d=c.d.c+c.e.b;Hqd(c,mnd(d),mnd(b))} +function Tub(a,b){var c,d;d=new Frd(b);c=Uub(a,d);return c!=null&&Uub(a,d)==null?c:null} +function Hhb(a,b){var c;if(b){c=b.a.Ad(a);return c>-1?(Cnd(),''+(c+1)):null}return null} +function Wkb(a,b,c){if(nt(a.c,b)&&Ird(a.d,c)){return}a.c=b;Uo(a.a,Zkb(c));!!a.a&&Rkb(a)} +function ynb(a,b,c,d){var e;e=c?(kA(),fA):(kA(),eA);return Dnb(a,e,vPb(b,c,xPb(d)),a.c)} +function iB(a,b,c,d){var e,f;Jud(b,BBd);f=(e=new lB,new fE(e,b,d));return new cB(a,c,f)} +function zGb(a,b){var c;c=RId in document.createElement('a')?b:null;this.a=new lFb(a,c)} +function JM(a,b){if(kvc(b,49)){mx(a,b)}else if(kvc(b,63)){nx(a,b);mx(a,b.c);mx(a,b.d)}} +function XRb(a){var b;if(a.fh()==1){b=a.Me().zd(0);if(kvc(b,167)){return b}}return null} +function NVb(a,b,c){if(!c||c==b||hs(a.n,b)==-1||hs(a.n,c)!=-1){return false}return true} +function Jxb(a){if(!a.c){a.c=new red('Unsupported file format.');Of(a.c,cBd)}return a.c} +function xbc(a,b){if(a===b){return true}if(kvc(b,307)){return Hrd(a.a,b.a)}return false} +function Ntc(d,a){var b=d.a[a];var c=(fuc(),euc)[typeof b];return c?c(b):ouc(typeof b)} +function t8b(a,b){var c,d;c=-a.e.b;d=a.e.a;return (c*b.a+d*b.b)/$wnd.Math.sqrt(c*c+d*d)} +function udc(a,b){tdc(a);a.p=true;a.q=false;a.n=200;a.u=b;a.o=null;++a.s;ydc(a.k,Ohc())} +function Nqc(a,b){var c,d;if(!a.d){return}Hi(a.c);d=a.d;a.d=null;c=new drc(d);b.rl(a,c)} +function coc(a){var b;b=Kkc($doc);b['language']='text/css';(ujc(),tjc).Ln(b,a);return b} +function Had(){var a;if(!Gad()){a=(rp(),op,pp());Yhc($hc(Zhc((Whc(),new _hc(a))),Vhc))}} +function oac(){lac();return vuc(quc(MYc,1),nyd,183,0,[hac,eac,kac,dac,jac,iac,gac,fac])} +function Mbc(){Kbc();return vuc(quc(TYc,1),nyd,191,0,[Cbc,Gbc,Hbc,Ebc,Fbc,Dbc,Ibc,Jbc])} +function S8b(){P8b();return vuc(quc(zYc,1),nyd,155,0,[N8b,O8b,J8b,I8b,M8b,L8b,H8b,K8b])} +function eUb(){aUb();return vuc(quc(pWc,1),nyd,201,0,[ZTb,_Tb,XTb,YTb,WTb,UTb,$Tb,VTb])} +function _Nb(){_Nb=p9c;$Nb=vuc(quc(g6c,1),eyd,2,6,['Marvin for JavaScript','BioEddie'])} +function MKb(){MKb=p9c;LKb=new NKb('KILL_PLUS_SIGNS',0);KKb=new NKb('ADD_LONE_PAIRS',1)} +function Jwd(){Jwd=p9c;Iwd=new Nwd;Hwd=new Lwd('ISO-LATIN-1');Gwd=new Lwd('ISO-8859-1')} +function l0b(a){P1.call(this,A$b(y$b(x$b(new F$b,a),cy(a)),m0b(a)).a);vx(this,Hx(this))} +function JO(a,b){if(!a){throw I8c(new bnd('cannot accept null value'))}this.a=a;this.b=b} +function QK(a,b){if(!!a.e&&sac(a.e,b.c)>10){a.c=true;Jl(a,b.c);a.d.Lg(b.c);a.o.i.w.Hf()}} +function Wuc(a){if(Nuc(a,(cvc(),bvc))<0){return -Juc(Quc(a))}return a.l+a.m*vzd+a.h*$Kd} +function Ukc(a){return (Hnd(a.compatMode,bKd)?a.documentElement:a.body).clientHeight|0} +function TNd(){return dbc(cbc(this.a,$wnd.Math.max(2,$wnd.Math.min(10,5*this.b.Yd()))))} +function $j(a,b){var c;c=(Cqd(a.a,b)?Eqd(a.a,b).a:0)+1;c<=0?Jqd(a.a,b):Hqd(a.a,b,mnd(c))} +function OR(a,b,c){var d;d=b.substr(c+1);nod(a.c,d);if(d.length!=0){a.a=false;a.b=false}} +function D_(a,b,c){var d,e;if(!a){return a_(),_$}e=dT(b.j,c);d=L$(e.oh(),zS(a));return d} +function Umd(a,b){var c;if(!a){return}b.o=a;var d=Rmd(b);if(!d){l9c[a]=[b];return}d.Fp=b} +function RSb(a,b){var c;if(!QSb(a,b)){throw I8c(new LSb)}c=new VSb(a);kl(b,c);return c.a} +function jSb(a){var b,c;c=new es;for(b=0;b0?d:0.77;this.b=e;this.e=f} +function i$b(a,b){h$b.call(this,a);(a==(p$b(),o$b)||a==m$b)&&(b>0?(this.a=b):(this.a=1))} +function o9c(a,b){for(var c in b){b[c]['configurable']=true}Object.defineProperties(a,b)} +function lkd(b){var a=b.f;return a.contentWindow.document.designMode.toUpperCase()=='ON'} +function pfd(a,b,c){var d,e,f;e=a.rows[b];for(d=0;dc&&c>=0){return a.a.e}return null} +function IHb(a,b,c){if(!b){return}Ygc(a.el(),b.a,b.b);Mgc(a.el(),-c);Ygc(a.el(),-b.a,-b.b)} +function Llb(a,b){if(b.a&&FOb(b)){ySb(a.b,(Xrd(),Xrd(),Urd));bt(jQb(EOb(b)),new Xlb(a.b))}} +function pyb(a){var b;b=Yxb(a,THd);return pvc((qmd(),pmd))===pvc(Yxb(a,Fyd))&&!!b&&!b.sd()} +function hTb(a){var b,c,d;d=a.Re();for(c=new qsd(d.b.Qb());c.b.Rc();){b=c.b.Sc();b.d=null}} +function BVb(a,b){if(!b){return}if(hs(a.r,b)==-1){Wr(a.r,b);KVb(a,b);b.v=a;SVb(a,new u7b)}} +function BUb(a,b){switch(b.k){case 0:return CUb(a);case 1:return AUb(a);default:return a;}} +function zjd(a,b){var c,d;d=gbd((abd(),b.U));c=vo(a,b);c&&Qic(a.e,Ajc((ujc(),d)));return c} +function k5(a,b,c,d,e){var f;f=(Cnd(),''+c);f=b&&c==0?'-'+f:f;n5(a,d-f.length,e);a.a+=''+f} +function zxd(a,b,c,d){var e,f;f=d?a.c:a.a;e=Bqd(ztd(f.d,b));!e?(e=c):Mxd(e,c);Atd(f.d,b,e)} +function kwb(a,b,c,d,e,f,g){this.c=a;this.f=b;this.b=c;this.a=d;this.i=e;this.d=f;this.e=g} +function TL(a){dH.call(this,a);this.d=new VM(this.o);this.a=new HL(this.o);bH(this,this.a)} +function mg(a,b){a.style.display=b?'':bzd;b?a.removeAttribute(izd):a.setAttribute(izd,jzd)} +function k9c(a,b){typeof window===Zxd&&typeof window['$gwt']===Zxd&&(window['$gwt'][a]=b)} +function Arc(a,b){while(b[0]=0){++b[0]}} +function Zvd(a,b){((hwd(),ewd)?null:b.c).length==0&&jwd(b,new vwd);Iqd(a.a,ewd?null:b.c,b)} +function h6(a,b){var c;return c=new r7(s9c(b)),a.a.Oi(sdc(l6((!a.b&&(a.b=new m6),null),c)))} +function HP(a,b){var c,d;for(d=gP(a).d.Me().Qb();d.Rc();){c=d.Sc();c.lm(new Tac(c.Lh(),b))}} +function Sn(a){var b,c;for(c=a.a.O.Qb();c.Rc();){b=c.Sc();kvc(b,714)&&b.Vc(null)}a.a.O.Pb()} +function iq(a){if(a.b){Tl(a.a,a.b.uo());Tl(a.d,a.b.vo());Tl(a.j,a.b.wo());Tl(a.k,a.b.xo())}} +function Ri(a,b){return new Xi(vuc(quc(W0c,1),Iyd,340,0,[b.Zc(a),b.Yc(a),b.Xc(a),b.Wc(a)]))} +function Qzb(){Qzb=p9c;Pzb=new Srd(vuc(quc(UYc,1),nyd,69,0,[(kcc(),Xbc),Qbc,Rbc,Sbc,Vbc]))} +function bdc(){bdc=p9c;adc=hc((Xcc(),vuc(quc(ZYc,1),nyd,206,0,[Wcc,Rcc,Ucc,Scc,Tcc,Vcc])))} +function $ab(){Yab();return vuc(quc(oJc,1),nyd,184,0,[Wab,Qab,Tab,Rab,Uab,Sab,Vab,Xab,Pab])} +function $kc(a){return ((Hnd(a.compatMode,bKd)?a.documentElement:a.body).scrollWidth||0)|0} +function Wjb(a){if(a.b!=a.a){gbb(a.c,ojb(pjb(Ljb(Ijb(a.b,a.a)))));a.b=a.a;a.a=new Njb(a.b)}} +function zxb(a,b,c){this.d=a;this.c=b;this.b=G1(false,jLb(b.b));this.a=c;Kxb(a,Axb(this.b))} +function SZ(a,b,c,d,e,f){PZ();this.d=b;this.b=c;this.c=new NZ(a,b,c,d,e,f);this.a=TZ(a,f.r)} +function Lub(a,b,c){var d;d=Dub(a,c);if(d){bt(d.xl(),new Sub(a,b));return true}return false} +function Nib(a,b){var c;if(b){c='o'+$md(++a.a);eld(b,WDd,c);Lkd(a.c,b);return c}return null} +function pib(a){fib();var b;b=Eqd(a.Vl(),(kcc(),Qbc));if(b!=null){return s9c(b)}return null} +function Efb(a,b){var c;c=Pib(a.c,eEd);eld(c,'x',(Cnd(),''+b.a));eld(c,'y',''+b.b);return c} +function y8b(a,b){var c;if(Cqd(b.c,a)){return Eqd(b.c,a)}c=new E8b(a);Hqd(b.c,a,c);return c} +function cRb(a,b){var c;c=new qad(20,-20);return iad(lad(b,kH(new qad(a.b/2,a.a/2),a.d)),c)} +function Ptd(a,b){var c;c=a.a.get(b);if(c===undefined){++a.c}else{Etd(a.a,b);--a.b}return c} +function Ng(a,b){var c;c=(ujc(),tjc).An(b);if(njc(c)){return Oic((abd(),a.U),c)}return false} +function _H(a){a.d=false;(!hy(Lu(a.o.i).b)||a.i!=LG(a))&&ZH(a);iy(Lu(a.o.i).b)||(a.f=false)} +function bH(a,b){if(b!=a&&b!=a.k){Jl(b,a.p);!!a.k&&a.n&&a.k.tg();a.k=b;!!a.k&&a.n&&a.k.qg()}} +function O6(a,b){k6();var c;c=a!=null?a.length==0?null:a:R6(b);Q6(b);M6(b);return new b6(c)} +function OM(a,b){if(Ex(b,a.c)){if(!Ex(b,a.d)){return 0}}else if(Ex(b,a.d)){return 1}return 2} +function OFb(){var a;a=new Kgd;kg((abd(),a.U),GHd,true);a.U.size=4;a.U.maxLength=4;return a} +function rPb(a){var b,c,d;d=new es;b=a[aGd]||[];for(c=0;c2.31){SP(gP(a));a.a=true}else a.a&&WP(gP(a))} +function rM(a,b){dH.call(this,a);this.c=b;bH(this,(!this.b&&(this.b=new qM(this.o)),this.b))} +function kV(a,b,c,d,e){iV(this);Xr(this.e,a);this.b=b;this.a=lbc(this.b,e);this.d=c;this.c=d} +function wcb(a,b,c){var d;Lqd(a.a);Bfb(b,a.a);if(Gqd(a.a,tEd)){d=Fqd(a.a,tEd);Q2b(c,Abc(d))}} +function Zhb(a,b,c){var d,e;while(b.Rc()){d=b.Sc();e=xhb(a.a,(bjb(),Yib),'');Yhb(e,d,c,iFd)}} +function Ihb(a,b){var c,d;for(d=new Vqd((new Sqd(b)).a);d.b;){c=Uqd(d);_hb(a,c.yp(),c.Ok())}} +function Ofb(a,b){var c,d;for(d=new Vqd((new Sqd(a)).a);d.b;){c=Uqd(d);eld(b,c.yp(),c.Ok())}} +function Bhb(a,b){var c,d;return d=(c=Eqd(a.e,b),!c&&!!a.j?Dhb(a.j,b):c),d?tld(d.a,WDd):null} +function Ehb(a,b){var c,d;d=(c=Eqd(a.e,b),!c&&!!a.j?Dhb(a.j,b):c);return d?tld(d.a,WDd):null} +function Rqb(a,b,c){var d;d=ynb(a.e,b,a.c,c);if(d){bt(d,new Wqb(a));return true}return false} +function ORb(a,b){var c;for(c=0;c0;--d){IR(Yr(a.a,d-1),b,true)}c||IR(a.c,b,true)} +function UU(a,b,c){var d,e;return VU((d=uBd,e=p1b(a),e!=-1&&(d=(YU(),Eqd(XU,mnd(e)))),d),b,c)} +function t8(a,b,c){var d,e;d=a.wg();e=Bqd(ztd(b.d,d));if(e!=null){nod(c,a.oj(s9c(e)));return}} +function T_(a){var b;b=a[RAd]||{};if(!!b&&(b.color||null)!=null){return new Y$(b)}return null} +function Mgb(a,b,c){var d,e;d=Eqd(a.b,b);if(d){e=b.Xl().d+c;Ogb(a,d.a+e);return e*2}return -1} +function znb(a){var b,c,d,e;b=new is;for(d=0,e=a.length;d=0&&a.a.b.c.vd()>b){return dbc(a.a.b.c.zd(b))}return tW(a,b)} +function pJb(a,b){var c;c=new jRb(a.b,false);return 'data:image/svg+xml;base64,'+Ws(iRb(c,b))} +function Fnb(a,b){var c;return Dnb(a,(kA(),jA),(c={'structure':b},JSON.stringify(c)),new uPb)} +function aTb(a,b){var c,d,e;c=new es;for(e=b.Qb();e.Rc();){d=e.Sc();Wr(c,new mSb(d))}return c} +function AEb(a,b){this.c=new es;this.e=VEb(new WEb(this));this.b=new iFb;this.d=b;xEb(this,a)} +function pqb(a,b,c,d){this.f=a;this.c=new jud;this.d=d;this.e=b;this.b=c;this.a=new uqb(this)} +function Wz(a,b,c,d,e){this.e=a;this.a=c;this.f=b;this.d=d;this.i=e;this.b=lbc(this.e,this.f)} +function Bgd(a){xgd();En(this,new Jgd(this,a.c,a.d,a.a));(abd(),this.U).className='gwt-Image'} +function Pod(a){var b;b=suc(uvc,jyd,23,a.d,15,1);Eod(a.a,0,b,0,a.d);return new gpd(a.e,a.d,b)} +function Xod(a,b){var c;if(b.e<=0){throw I8c(new jmd(PLd))}c=bpd(a,b);return c.e<0?Xpd(c,b):c} +function O9b(a,b){var c,d;return c=a,d=b,Zmd(a,0)<0&&(c=kBd+a),Zmd(b,0)<0&&(d=kBd+b),Zmd(c,d)} +function mJb(a,b,c){var d;d=b.globalAlpha;b.globalAlpha=c;Ggc(b,a.a.Un(),0,0);b.globalAlpha=d} +function vpd(a,b,c){var d,e,f;d=0;for(e=0;e>>31}d!=0&&(a[c]=d)} +function Nr(a,b){var c,d;for(d=b.Qb();d.Rc();){c=d.Sc();if(!a.qd(c)){return false}}return true} +function FWb(a,b){if(_r(a.w,b)||_r(a.v,b)||_r(a.r,b)){SVb(a,new u7b);return true}return false} +function td(a,b){if(b==Byd){return qmd(),a.f?true:false}if(!a.i){return null}return Fqd(a.i,b)} +function cad(a){if(!a){return ''}return Vsc((Qsc(),!Psc&&(Psc=new itc(irc())),Qsc(),Psc),a.a)} +function l$(a,b,c,d){g$();var e;n$.call(this,b,c,(e=e$(b),Xrd(),new ksd(o$(new p$(c,d),a,e))))} +function P1(a){by.call(this,A$b(C$b(y$b(x$b(new F$b,dsd(a.r)),dsd(a.s)),dsd(a.A)),dsd(a.u)).a)} +function FPb(a){return ys(GPb(EPb(a['north']),EPb(a['south']),EPb(a['west']),EPb(a['east'])))} +function Xkc(a){return ((Hnd(a.compatMode,bKd)?a.documentElement:a.body).scrollHeight||0)|0} +function CP(a){return (kBd+$wnd.Math.ceil($wnd.Math.atan2(a.b,a.a)*30/jBd-0.5)/30*jBd%kBd)%kBd} +function mdd(){var b=$wnd.onresize;$wnd.onresize=Yxd(function(a){try{ecd()}finally{b&&b(a)}})} +function aqb(a){var b,c;for(c=new Frd(a.a);c.a=a.c.length){throw I8c(new Eud)}a.b=a.a;b=a.c[a.a];Ojd(a);return b} +function Tod(a){var b;if(a.b==-2){if(a.e==0){b=-1}else{for(b=0;a.a[b]==0;b++);}a.b=b}return a.b} +function ptc(a){var b;if(a==0){return 'UTC'}if(a<0){a=-a;b='UTC+'}else{b='UTC-'}return b+rtc(a)} +function rtc(a){var b,c;b=a/60|0;c=a%60;if(c==0){return Cnd(),''+b}return Cnd(),''+b+':'+(''+c)} +function jg(a){var b,c;b=a.className||'';c=Mnd(b,dod(32));if(c>=0){return b.substr(0,c)}return b} +function SD(a){var b,c;if(a.d){for(c=new iud(new gud(a.d));c.b!=c.c.a.b;){b=hud(c);b.d.lm(b.e)}}} +function Ifb(a,b){var c,d;for(d=new qsd(dsd(b.k).b.Qb());d.b.Rc();){c=d.b.Sc();Cfb(a,Hfb(a,c))}} +function Ht(a,b){var c,d;for(d=b.Jd().Qb();d.Rc();){c=d.Sc();Cqd(a.a,c)&&Ct(Eqd(a.a,c),b.Kd(c))}} +function eyb(a,b){var c,d;for(d=new Frd(b);d.a0){for(b=0;b0&&b<=126?h1b[b-1].c:null),nob(a.f,b))}} +function DEb(b){try{return EEb(b)}catch(a){a=H8c(a);if(kvc(a,46)){return null}else throw I8c(a)}} +function xfb(b,c,d){try{yVb(b.c,new qVb(seb(d),c))}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}} +function YRb(a){var b,c;for(c=a.jh().Qb();c.Rc();){b=c.Sc();if(kvc(b,189)){return b}}return null} +function m0b(a){var b,c,d;d=new std;for(c=a.Qb();c.Rc();){b=c.Sc();Lr(d,b.Ul())}return new gs(d)} +function cbc(a,b){var c,d,e;d=new qad(a.b.a-b,a.b.b-b);e=a.c+2*b;c=a.a+2*b;return new ibc(d,e,c)} +function uP(a,b){this.c=new es;this.d=new xT(true,eCd);this.f=a;this.e=b;En(this.e,new vP(this))} +function PEb(a,b,c,d,e){this.a=b;this.b=new NEb(d,a.b);KEb(this.b);this.c=new SEb(e);OEb(this,c)} +function aob(a,b){vd.call(this,'+ R-group attachment');this.a=b;Hqc(a.a,(Pw(),Ow),a,this)} +function mqb(a,b){vd.call(this,'- R-group attachment');this.a=b;Hqc(a.a,(Pw(),Ow),a,this)} +function Kgd(){ol();LEb.call(this,Qkc($doc),(!bad&&(bad=new dad),bad),(!$9c&&($9c=new aad),$9c))} +function SL(a){!!a.k&&a.k.Rd();ex(Mu(a.o.i),(e_(),d_));a.o.i.w.Hf();a.b=null;a.c=false;bH(a,a.a)} +function Rgd(a){var b;b=(abd(),a.U).selectedIndex;return b==-1?null:(Mgd(a,b),vlc(a.U)[b].value)} +function xmd(a){smd==null&&(smd=new RegExp(sCd));return smd.test((Cnd(),String.fromCharCode(a)))} +function ihd(a,b){var c,d;for(d=new Frd(b);d.a0&&a.a-1&&b0&&a<=126&&h1b[a-1].a==0){return eib}return a>0&&a<=126?h1b[a-1].c:null} +function KU(){HU();return vuc(quc(wFc,1),nyd,141,0,[tU,BU,zU,AU,xU,yU,CU,uU,GU,vU,DU,EU,wU,FU])} +function U5(){R5();return vuc(quc(eIc,1),nyd,151,0,[Q5,P5,O5,F5,G5,H5,L5,M5,N5,I5,E5,K5,J5,D5])} +function cZ(){_Y();return vuc(quc(oGc,1),nyd,140,0,[VY,PY,ZY,NY,$Y,TY,YY,QY,RY,XY,WY,SY,MY,OY,UY])} +function qac(){qac=p9c;pac=hc((lac(),vuc(quc(MYc,1),nyd,183,0,[hac,eac,kac,dac,jac,iac,gac,fac])))} +function Egd(a,b){var c;c=_ic((abd(),b.U),kLd);Hnd(dKd,c)&&(a.a=new Fgd(a,b),wic((pic(),oic),a.a))} +function he(a,b){var c;pe(a,b);c=new qe(a,b);return !b.e&&(b.e=new Cqc),tqc(b.e,(ce(),ce(),be),b,c)} +function wvd(a,b){var c;this.c=a;c=new es;gvd(a,c,b,a.b,null,false,null,false);this.a=new $qd(c,0)} +function Mud(a,b){var c;if(b===a){return true}if(!kvc(b,309)){return false}c=b;return Gud(a.a,c.a)} +function h4(a,b){var c,d;d=1;c=K4(a,d++);while(c){if(Nr(C2b(c),b)){return c}c=K4(a,d++)}return null} +function W3(a){var b;b=Xmd(a,10);switch(b){case -1:return '0';case 0:return null;default:return a;}} +function Y3(a){switch(a){case 1:return X1b(),S1b;case 2:return X1b(),T1b;default:return X1b(),U1b;}} +function AGb(){var a;if(tGb()){a=(FGb(),new HGb);if(EGb){return new CGb(a)}}return new uGb(new wGb)} +function lEb(a){var b,c;c=DEb(a.e);!c&&(c=mnd(0));b=Wf(a.a)?Qdd(a.a):null;return new KL(mnd(c.a),b)} +function QWb(a,b){var c,d;for(d=b.Qb();d.Rc();){c=d.Sc();if(qtd(a.a.i,c)){return true}}return false} +function Cgb(a,b){var c,d;c=new ltd;d=b.Lh();Iqd(c,a.Pj(),$md(d.a));Iqd(c,a.Qj(),$md(d.b));return c} +function xEb(a,b){var c,d;for(d=new Vqd((new Sqd(wEb(b))).a);d.b;){c=Uqd(d);uEb(a,c.yp().a,c.Ok())}} +function DSb(a){var b;b=auc(a,'templates');if(!b||!b.Rn()){throw I8c(new vqd(cuc(a)))}return b.Rn()} +function jbd(a){abd();var b;b=Bbd(qbd,a);if(!b&&!!a){(ujc(),a).stopPropagation();tjc.Bn(a)}return b} +function ded(a,b){var c;qo(a,b);c=a.b;a.b=Djd(a.i,b);if(a.b!=c){!_dd&&(_dd=new ged);fed(_dd,c,a.b)}} +function D8b(a,b){if(!!b&&(!jad(b.b,a.e.b)||b.c!=a.e.c||b.a!=a.e.a)){a.e=b;!!a.d&&SVb(a.d,new u7b)}} +function T(a,b){return ovc(a)?Hnd(a,b):mvc(a)?a===b:lvc(a)?a===b:jvc(a)?a.V(b):uuc(a)?a===b:nt(a,b)} +function V(a){return ovc(a)?dxd(a):mvc(a)?qvc(a):lvc(a)?a?1231:1237:jvc(a)?a.X():uuc(a)?Zwd(a):ot(a)} +function ij(b,c){try{return b.wc(c)}catch(a){a=H8c(a);if(kvc(a,109)){return false}else throw I8c(a)}} +function Xr(a,b){var c,d;c=b.wd();d=c.length;if(d==0){return false}Awd(a.a,a.a.length,c);return true} +function Yrd(a,b){Xrd();var c,d,e,f;f=false;for(d=0,e=b.length;d=0||a.b-a.d>=0)){U9b(a,b.a,b.b,b.a,b.b);return}S9b(a,b.a,b.b,b.a,b.b)} +function mCb(a,b){b.Pd()&&(b._k()||(b.md(),false)?(a.c=true):sCb(a,b.md()));Uo(a,b.Pd());return true} +function gTb(a){var b;b=new ltd;yqd(b,a.Wl());Hqd(b,(kcc(),_bc),a.Ji());Hqd(b,Obc,mnd(a.u));return b} +function y1b(a){var b;b=gTb(a);Hqd(b,(kcc(),$bc),mnd(a.p));Hqd(b,acc,a.r);Hqd(b,gcc,a.bn());return b} +function egd(a){var b;if(a.b>=a.d.a.length){throw I8c(new Eud)}b=Yr(a.d,a.b);a.a=a.b;dgd(a);return b} +function N9b(a,b,c){var d,e,f,g;g=(c-b)/(a+1);d=new es;e=b;for(f=0;f>>24<<24>>24;b[++c]=a>>>16<<24>>24;b[++c]=a>>>8<<24>>24;b[++c]=a<<24>>24} +function dVb(a,b,c){if(Zr(a.b,b,0)==-1&&Zr(a.a,c,0)==-1){Wr(a.b,b);Wr(a.a,c);return true}return false} +function $3b(a,b){if(b){if(a.b==b.b){if(a.a!=null){return Hnd(a.a,b.a)}return b.a==null}}return false} +function Tqd(a){if(a.a.Rc()){return true}if(a.a!=a.d){return false}a.a=new Dtd(a.e.d);return a.a.Rc()} +function GI(a){switch(a.k){case 0:return s6b(),h6b;case 1:return s6b(),q6b;default:return s6b(),m6b;}} +function kab(a){switch(a.k){case 4:return 1;case 5:return 3;case 6:case 7:return 2;default:return 0;}} +function sm(a,b){var c;c=(ujc(),tjc).An(b);if(njc(c)){return Oic(Mic((abd(),hed(a.q))),c)}return false} +function Pr(a,b){var c,d,e;c=false;for(d=a.Qb();d.Rc();){e=d.Sc();if(!b.qd(e)){d.Tc();c=true}}return c} +function yH(a,b){var c,d;for(d=b.Ml().Qb();d.Rc();){c=d.Sc();if(E2b(c,b)==a){return true}}return false} +function rk(a){nk();var b;for(b=0;b0){return r2(a.a.Oi(ceb(Pkd(Kld(c.a,0)))))}return MWb()} +function nZ(a,b,c){var d;d=(b?b.k+1:0)*lZ+(c?c.k+1:0);!a.a[d]&&(a.a[d]=new p0(b,c,true));return a.a[d]} +function V4(a,b,c,d){var e,f,g;g=Fqd(a.a,b);if(g){for(f=g.Qb();f.Rc();){e=f.Sc();d.Ui(e,c)}}Kqd(a.a,b)} +function LD(a){var b,c;for(c=new qsd(dsd(a.b.C.v).b.Qb());c.b.Rc();){b=c.b.Sc();Hqd(a.a,mnd(b.a),b.b)}} +function Ugb(a,b){var c,d;for(d=new Frd(b);d.ab){return 1}if(a==b){return 0}return isNaN(a)?isNaN(b)?0:1:-1} +function lib(a){if(a==119){return (WZb(),DXb).a+':'}else if(a==120){return (WZb(),gZb).a+':'}return '0'} +function nwd(a){if(ewd){return suc(_7c,dMd,536,0,0,1)}return ds(a.a,suc(_7c,dMd,536,a.a.a.length,0,1))} +function Fkc(a,b,c,d,e){return (ujc(),tjc).un(a,eKd,true,true,0,b,c,d,e,false,false,false,false,2,null)} +function Hgd(a,b,c,d){!!a.a&&((abd(),a.U)[kLd]='',undefined);clc((abd(),a.U),b.a);rjc(a.U,c);qjc(a.U,d)} +function cbd(a,b,c){abd();var d;d=Zad;Zad=a;b==_ad&&zcd((ujc(),a).type)==8192&&(_ad=null);c.Ib(a);Zad=d} +function rpd(a,b){var c;c=b>>5;a.d+=c+(jnd(a.a[a.d-1])-(b&31)>=0?0:1);upd(a.a,a.a,c,b&31);Qod(a);a.b=-2} +function t9b(a,b){var c;c=b!=(Iac(),Fac)?nac(b.j!=null?b.j:''+b.k):null;!!c&&Wr(a,(c.d+c.c)/2);return a} +function Vid(a,b){var c,d;d=a.a.i.c-1;for(c=1;c>22);e=a.h+b.h+(d>>22);return Auc(c&XKd,d&XKd,e&YKd)} +function Vuc(a,b){var c,d,e;c=a.l-b.l;d=a.m-b.m+(c>>22);e=a.h-b.h+(d>>22);return Auc(c&XKd,d&XKd,e&YKd)} +function kl(a,b){var c,d,e;d=new el(a);while(d.a<=d.b.length){e=cl(d);c=new Aod(e);jl(d,c)&&b.Pc(e,c.a)}} +function lg(a,b){if(!a){throw I8c(new nQb(gzd))}b=bod(b);if(b.length==0){throw I8c(new bnd(hzd))}ng(a,b)} +function Cg(a,b){if(a.Tb()){throw I8c(new end('SimplePanel can only contain one child widget'))}a.Ub(b)} +function $fd(a,b){Gfd.call(this);Vo(this,new Nfd(this));Efd(this,new jgd(this));Yfd(this,b);Zfd(this,a)} +function zdd(){ol();ydd.call(this);zed(this.a,nLd,false);(abd(),this.U).href=nLd;this.U.target='_blank'} +function BI(a,b){var c,d;c=Ku(a.o.i,b);d=OBd;if(!c){d=DI(a,b);c=CI(a,d)}!!c&&c.Lh()!=a.i?KI(a,c):LI(a,d)} +function h8(a,b){var c,d;if(b1b(d1b(b.b))){for(d=a.e.mj(b).Qb();d.Rc();){c=d.Sc();Wr(a.j,c);ptd(a.d,c)}}} +function QP(a,b,c){if(!b){return}_P(a,b.Lh(),lad(b.Lh(),XP(a).Lh()),c);if(a.c){I2b(a.c,b);a.c.d.zl(a.c)}} +function LU(a,b,c){return $wnd.Math.max(c?d9c(P8c($wnd.Math.round(b))):d9c(P8c($wnd.Math.round(a*b))),1)} +function vxb(a,b){ALb(a.c,xxb(a,Rf(b.a.d).selectedIndex),a.a,new FLb(CEb(b.a.f),b.b));rm(Ixb(a.d),false)} +function Fbb(a,b){var c;if(Lcb(a.a.f)){if(b.Fj(qEd)){c=b.Cj(qEd);return J4(a.a.f,Xmd(c,10))}}return null} +function krb(a){var b,c;b=new std;c=a.b.i;if(!Sx(c.A)){Lr(b,dsd(c.A.r));Qqd(b,cWb(c.C))}return new gs(b)} +function bZ(a){_Y();var b,c,d,e;for(c=cZ(),d=0,e=c.length;d1&&(b=Xnd(b,1,b.length-1));return b} +function ind(a){var b;if(a<0){return EId}else if(a==0){return 0}else{for(b=OLd;(b&a)==0;b>>=1);return b}} +function cl(a){var b;b=dl(a);a.aa.b&&(d=trd(a.d),d);zQ(a,new FQ(0))} +function S_(a,b){var c,d;if(b){d=T_(b);if(d){c=b0(a.a,b);c.a.a.length==0&&c.b.a.length==0||Ytd(a.b,d,c)}}} +function nbc(a){var b,c,d;d=new es;b=a.e;if(b>0){c=a.a.a.length;Xr(d,c>b?z9b(b,a.a,a.d,a.f):a.a)}return d} +function Zsc(a,b){var c,d,e;e=a.a.length;for(d=0;d=48&&c<=57&&gmd(a,d,c-48+b&hyd)}} +function fg(a,b){b==null||b.length==0?((abd(),a.U).removeAttribute(azd),undefined):gjc((abd(),a.U),azd,b)} +function kGb(a,b){aGb(a.b.d,a.a.Di()?'':b.b);En(a.b.a,'marvinjs_untitled_file.'+a.a.Ai()[0]);pFb(a.b.a,b)} +function Xld(a){var b,c,d,e;if(a.a==null){return}for(c=a.a,d=0,e=c.length;d-1&&d==b.a)){e=jDb(b);return new fE(c,e,a.a)}return null} +function Chb(a,b){var c,d;d=Eqd(a.e,b);if(d){c=tld(d.a,GEd);if(c!=null){return Und(c,' ',0)[0]}}return null} +function BG(a,b){var c;if(a.k){for(c=0;c3||b.Nl()<-3){return true}}return false} +function jrb(a){var b,c;for(c=a.Qb();c.Rc();){b=c.Sc();if(b.Hl()==1&&b.Zl()=='H'){return false}}return true} +function w0b(a,b){var c,d;if(!b.sd()){d=b.Ad(a)+1;c=d0)&&Ml(a);b?kg((abd(),a.U),tAd,true):kg((abd(),a.U),tAd,false)} +function qIb(a,b,c){c!=null&&c.length!=0?ZHb(a,c):Vnd(b.toLowerCase(),rDd)||ZHb(a,XCd);return a.p.Xn(Qad(b))} +function Cdb(a){return a.n.a.length==0&&a.k.a.length==0&&a.t.a.length==0&&a.u.a.length==0&&a.A.a.length==0} +function Zjd(){return function(a){var b=this.parentNode;b.onfocus&&$wnd.setTimeout(function(){b.focus()},0)}} +function Mcd(a){Icd();var b;b=!jbd(a);if(b||!Ecd){return}bbd(a,Ecd)&&((ujc(),a).stopPropagation(),undefined)} +function yv(a,b){var c,d;c=a.c;d=a.d;if(b.c==c||b.d==c){return c}else if(b.c==d||b.d==d){return d}return null} +function M3(a){var b;if(ps(a.a.c)){b=q7(a.a);if(Hnd(b.substr(0,7),vDd)){return L3(b,a.a)}return b}return null} +function DAb(a){var b;b=new ajd;Yid(b,a.b,'Basic');a.d&&Yid(b,a.a,'Advanced');Uid(b.b,0);Nf(b.b,eId);return b} +function kk(a){var b,c,d,e;b=new es;for(d=0,e=a.length;d0&&b<=126?h1b[b-1].c:null)))}return c} +function wEb(a){var b,c,d;d=new ltd;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();Hqd(d,mnd(b.a),b.b)}return d} +function Ffd(a,b,c,d){var e;a.oo(b,c);e=sfd(a,b,c,true);if(d){vg(d);$cd(a.i,d);abd();Lic(e,lbd(d.U));yg(d,a)}} +function Qfb(a,b,c,d){var e;e=ugb(a.c,oEd);eld(e,uEd,b);eld(e,IEd,(Cnd(),''+c));d!=null&&eld(e,FEd,d);return e} +function sCb(a,b){var c;c=b;!!a.a&&(c=a.a.$k(b));if(!a.c&&vCb(a.f,c)){return false}a.f=c;a.c=false;return true} +function Kpd(a,b){var c,d;c=b>>5;if(a.d>>d:0;Qod(a)} +function $pd(a,b,c){var d;for(d=c-1;d>=0&&a[d]===b[d];d--);return d<0?0:S8c(K8c(a[d],SLd),K8c(b[d],SLd))?-1:1} +function sd(a,b,c,d){if(b!=null&&c!=null&&d!=null&&T(c,d)){return}!a.e&&(a.e=new Cqc);vqc(a.e,new ee(b,c,d),a)} +function zC(a,b){if(!!a&&!!a.C&&!dsd(a.C.q).a.sd()){return vB(uB(uB(new wB,new HD(a)),new yC(a,b)),a)}return b} +function vGb(a){if(window.URL&&window.URL.createObjectURL&&(!a||tGb())){return new uGb(new yGb(a))}return null} +function $Ab(a,b){if((WAb(),UAb)==a){if(!b){throw I8c(new vqd(AId))}return Cnd(),''+b.a}return TAb==a?'*':null} +function $_b(a){Y_b();if(Gqd(X_b,a)){return Fqd(X_b,a)}throw I8c(new bnd('No enum constant HomologyGroup.'+a))} +function Yud(a){var b;b=a.a.a.length;if(b>0){return Xud(b-1,a.a.a.length),Yr(a.a,b-1)}else{throw I8c(new Msd)}} +function Zud(a){var b;b=a.a.a.length;if(b>0){return Xud(b-1,a.a.a.length),$r(a.a,b-1)}else{throw I8c(new Msd)}} +function b8b(a){var b,c,d;d=0;c=a.a.a[0];for(b=1;bc){c=Yr(a.a,b);d=b}}return d} +function tfd(a){var b,c,d;for(c=0;cc&&b.a.length!=0&&(b.a.length==1?Pr(a,z9b(c,a,b.a[0],kBd)):u9b(a,c,b))} +function qgb(a,b){var c,d,e;for(d=new Frd(b);d.a-1){Ugd(a.a,c);Zt(a,b)}else{throw I8c(new bnd('No item to select'))}} +function BH(a,b){wH.call(this,a,(s6b(),m6b),true);if(!b){throw I8c(new und('Prototype cannot be null'))}this.a=b} +function Ooc(){var a;this.a=(a=document.createElement(Nzd),'draggable' in a||'ondragstart' in a&&'ondrop' in a)} +function e9(a){var b,c,d;d=0;for(c=new Frd(a);c.a=0&&Wr(e,mnd(zgb(a.a,c)))}return e} +function WNb(a){var b,c,d;Xrd();a.Fd(null);b=new yod;for(d=a.Qb();d.Rc();){c=d.Sc();b.a+=''+c;b.a+=oyd}return b.a} +function zEb(a){var b,c;gg(a.a,false);for(c=new Frd(a.c);c.a=a.c){throw I8c(new kmd)}--a.c;for(c=b;c1&&OX(a.c.c[1],b,c)){return true}return JX(a,b,c)&&sac(a.f,b)=0&&b<=127?Mnd(a.a,dod(b))!=-1?a.b.qj('\\'+String.fromCharCode(b)):a.b.pj(b):a.b.qj(hbb(b))} +function XSb(b,c){try{return YSb(n3(b.a,c))}catch(a){a=H8c(a);if(kvc(a,46)){throw I8c(new LSb)}else throw I8c(a)}} +function Hnb(b,c){var d;try{at(b.b,b.c.Hd(c))}catch(a){a=H8c(a);if(kvc(a,46)){d=a;b.a.a.uk(d.i)}else throw I8c(a)}} +function ozb(b){var c;try{c=Xmd(CEb(b.b),10);return c}catch(a){a=H8c(a);if(kvc(a,65)){return -1}else throw I8c(a)}} +function LAb(a,b){if((p$b(),m$b)==a||o$b==a){if(!b)throw I8c(new vqd(AId));return new i$b(a,b.a)}return new h$b(a)} +function cG(a,b){this.b=b;this.n=a;this.k=new gG(this);this.f=new hG(this);this.i=new iG(this);this.j=new jG(this)} +function RAb(a,b){this.a=a;this.b=b;this.c=QAb(this.a,b);this.c.Bb(nId);og(this.a,new SAb(this),(cpc(),cpc(),bpc))} +function $ob(a){vd.call(this,'R\u2423');ud(this,Lyd,'R\u2423');ud(this,zGd,new hk(jk(Und('R, ',',',0))));this.a=a} +function Fxb(a){var b,c;c='Cannot load renderer module for %s';for(b=0;b1||b>=0&&a.b<3} +function dl(a){var b;b=a.a;while(a.a1&&Wr(a.d,new W0b(d,Cqd(a.a,c)?Eqd(a.a,c):c,b.o))}} +function AM(a,b){var c,d;d=b.Kf();d.Pb();a.Mg(b,a.Ng());d.gl();a.Sg(d);c=a.Qg();i0(a.o.i,b.Kf(),c);a.Rg(c,b);d.qe()} +function AL(a,b){var c,d;c=gH(new iH(a.f.Lh(),LBd),gw(a.o.i,b));d=E9b(a.f);return rac(c.a,c.b,0,d.a,d.b,0)<0.77?d:c} +function xS(a,b){var c,d,e;if(a){for(d=a.Qb();d.Rc();){c=d.Sc();e=Hnd(BS(c.b.b),'')?'= ':'';uS(b,c.a+' '+e,AS(c))}}} +function Lpd(a,b){var c,d;d=b>>5==a.d-1&&a.a[a.d-1]==1<<(b&31);if(d){for(c=0;d&&cc.b.a&&b.b>c.b.b&&b.aa.a.length){throw I8c(new bnd('too much delimiters'))}this.b=new Z7b(a);this.c=b} +function Ii(a,b){if(b<0){throw I8c(new bnd('must be non-negative'))}!!a.e&&Hi(a);a.d=false;a.e=mnd(Pi(Ni(a,a.c),b))} +function jY(a,b,c,d){var e,f;e=new p0((pR(),jR),(NT(),KT),true);f=tY(a,d,c);f!=null&&b.tf(new qad(d*0.5,0),f,a.i,e)} +function C$(a,b,c,d,e){s$();var f;f=new z$(a,new es,c,d,false);f.f=T1(e,(O$b(),M$b));f.c=tS(c,d,e,f);f.a=b;return f} +function Xbb(a){var b,c,d,e;e=new es;for(c=0,d=a.length;c0){c=b.Ml().Qb();while(c.Rc()&&d>0){hs(a.s,c.Sc())!=-1||--d}}return d>0} +function Brd(a){var b;Swd(a.a!=a.b);b=a.d.a[a.a];Ard(a.b==a.d.c&&b!=null);a.c=a.a;a.a=a.a+1&a.d.a.length-1;return b} +function Vod(a){var b;if(a.c!=0){return a.c}for(b=0;b0&&a<=126&&h1b[a-1].a==0&&a!=119&&a!=120){return a>0&&a<=126?h1b[a-1].c:null}return '0'} +function ZFb(){if(typeof $wnd.MSInputMethodContext!=$Id||typeof $wnd.msIsStaticHTML!=$Id){return false}return true} +function eod(){Cnd();try{return sqd('UTF-8')}catch(a){a=H8c(a);if(kvc(a,580)){throw I8c(new dmd)}else throw I8c(a)}} +function uhc(){uhc=p9c;rhc=new vhc('BEVEL',0,'bevel');shc=new vhc('MITER',1,'miter');thc=new vhc('ROUND',2,'round')} +function ohc(){ohc=p9c;lhc=new phc('BUTT',0,'butt');mhc=new phc('ROUND',1,'round');nhc=new phc('SQUARE',2,'square')} +function n4(){n4=p9c;m4=new RegExp('\\w+=((\\w+|-?\\d+.?\\d*|[<>=]+)|\\(\\d+( (\\w+|-?\\d+\\.?\\d*))+\\)|\\".*\\")')} +function Hv(a,b,c){var d,e,f;for(f=new qsd(c.b.Qb());f.b.Rc();){e=f.b.Sc();d=dT(a.j,e);!!d&&!!d.gh()&&Q9b(b,d.gh())}} +function rhb(a,b){var c,d;c=new ltd;Iqd(c,azd,T1(b,(O$b(),M$b)));d=T1(b,L$b);d!=null&&Otd(c.e,'leftName',d);Ihb(a,c)} +function bm(a,b){var c;mg((abd(),a.U),b);c=Mic(a.U);!!c&&(Ind((ujc(),c).tagName,'td')||Ind(c.tagName,'th'))&&mg(c,b)} +function yib(a,b){var c;eld(b,'rgroupID',$md(a.a));if(a.b){c=a.b;c.b&&eld(b,'restH','on');c.a!=null&&eld(b,REd,c.a)}} +function Ysc(a,b,c,d){var e;if(d>0){for(e=d;e=d||b>24}return b} +function $J(a){var b,c,d,e;b=-a.a.Xl().c;e=a.d.a.o.t&&a.c>0?a.c*2:0;d=new std;for(c=b;c$wnd.Math.abs(hw(a.o.i,LBd))} +function TO(a){a.p=null;a.b=null;a.a=true;ex(Mu(a.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));a.o.i.w.Hf()} +function VP(a){var b,c,d;d=new es;if(Tx(new Cy(a.d))){for(c=a.d.Ne().Qb();c.Rc();){b=c.Sc();Wr(d,new qP(b))}}return d} +function Z_(a,b){var c,d,e;e=new es;for(d=0;d=0&&HEb(a.e,''+c);Sdd(a.a,(qmd(),pmd==b.a?true:false));gg(a.a,b.a!=null)} +function Axb(a){var b,c,d;d=new es;for(c=new Frd(a);c.a=((kcc(),Vbc)==a.b?3:-1)){return ''+b}}return null} +function SOb(b,a){if(b[a]){if(typeof b[a]==cyd){return b[a].split(',')}if(Array.isArray(b[a])){return b[a]}}return []} +function trd(a){var b;b=a.a[a.c-1&a.a.length-1];if(b==null){return null}a.c=a.c-1&a.a.length-1;a.a[a.c]=null;return b} +function Dxd(a,b){var c,d,e,f;f=a;d=f.length;for(c=0;c=a.p||eb&&d.Wg(a[f-1],a[f])>0;--f){g=a[f];a[f]=a[f-1];a[f-1]=g}}} +function lxd(a,b,c){var d;d=b[c]<<24;d|=(b[++c]&255)<<16;d|=(b[++c]&255)<<8;d|=b[++c]&255;a.f[a.i]=d;++a.i==16&&kxd(a)} +function kh(a){var b,c;for(c=new Frd(a.a);c.a180&&(d=-180+(d-180));if(a.a.a!=null){e=ZM(c,d);a.e=e+UAd}else{a.e=null}} +function HO(a,b){var c,d;c=cbc(a.a.e,a.b);d=cbc(a.a.e,-a.b);if(GO(b,a.a.b,c)&&!GO(b,a.a.b,d)){return IO(a,b)}return null} +function SWb(a,b){var c,d,e;for(d=new Frd(b);d.ae){f=c;d=a.a[c];e=d.f}}return f} +function Bbc(a){var b,c,d,e;b=(d=a>>>0,d.toString(16));e=new yod;for(c=0;c<8-b.length;c++){e.a+='0'}e.a+=''+b;return e.a} +function Oc(a){var b,c,d,e;for(b=(a.k==null&&(a.k=(Gic(),e=suc(b6c,lyd,2352,0,0,1),Iic(e))),a.k),c=0,d=b.length;c-129&&a<128){b=a+128;c=(ond(),nnd)[b];!c&&(c=nnd[b]=new gnd(a));return c}return new gnd(a)} +function nh(a,b,c){var d;if(a.j){d=(abd(),Nkc($doc));hbd(a.d,d,b);Lic(d,lbd(c))}else{d=dbd(a.d);abd();$ad.eo(d,lbd(c),b)}} +function DG(a,b){if(a.d.a.a.a){nG(a.d,new UE(new qad(soc(b),toc(b)),yG(ilc(b.a)),plc(b.a),mlc(b.a)||olc(b.a)));a.o=true}} +function DY(a){if(a.k==null){if(!a.j.b.d){a.k=Lac(a.j.e,a.c.Lh(),fV(a.j));a.k=a.k+(a.k>0?EX(a):0)}else{a.k=0}}return a.k} +function MJ(a,b){var c,d;for(d=new Frd(a.a);d.a=0&&a.a.b.c.vd()>b+1){return Aac(dbc(a.a.b.c.zd(b)),dbc(a.a.b.c.zd(b+1)))}return tW(a,b)} +function AY(a){if(a.d==null){if(!a.c.th()){a.d=Lac(a.c.Lh(),a.j.e,fV(a.c));a.d=a.d+(a.d>0?EX(a):0)}else{a.d=0}}return a.d} +function EY(a){if(!a.e){AY(a);a.e=tac(a.c.Lh(),a.j.e,AY(a)*(a.w.a==(s6b(),r6b)||a.w.a==l6b||a.w.a==p6b?0.8:1))}return a.e} +function Hn(){var a;a=new nm(false,zAd);(Jg(),Ig).Ho(fbd((abd(),a.U))).className=AAd;a.K=true;Xg(a,(Fhd(),Ehd));return a} +function vF(a){var b;b=new Cy(a.a);Xx(b,null,Lx(a.a));Xx(b,null,Ix(b));$x(b,Nx(b));Zx(b,Mx(a.a));wF(b);zy(b,a.b);return b} +function wV(a,b,c){var d,e;d=xV(a,new jX((HU(),tU),false),b);e=lad(c,new qad(d.f+d.e/2,d.i+d.d/2));OU(d,e.a,e.b);return d} +function hRb(a,b,c){this.a=a;this.c=new xRb(b,c);this.d=new oT(a,a.e,new vv(new OUb));this.b=new LS(this.d,a.e,a,this.c)} +function mob(a,b,c,d){job.call(this,c,a,new BH(a,b));ud(this,Lyd,b.Zl());ud(this,Nyd,WU(b.Hl()));ud(this,zGd,d);this.a=b} +function Mfb(a,b,c){eld(c,lEd,'*');Ofb(a.b.Oj(b),c);eld(c,iEd,(Cnd(),!b.b&&(b.p?GWb(b.p):(b.b=mnd(0))),''+(b.b?b.b.a:0)))} +function PV(a,b){var c;if(b){c=a.a.b.a-b.e-a.f;OU(b,c,a.a.b.b-b.d/2);RV(a.b,b);Wr(a.d,new ibc(new qad(b.f,b.i),b.e,b.d))}} +function X5b(a,b){var c,d;for(d=U5b(a).Qb();d.Rc();){c=d.Sc();b?!!c.e&&lsd(dsd(c.e.w),c)&&Z4b(new j5b(c.i,c.e)):t5b(c.i)}} +function T6(a,b){var c,d,e;for(d=new Frd(b);d.a=17){if(c<7&&c%2==0){if(Hb(a)==c){return -a.f-a.b.Xl().c}}}return -b-a.b.Xl().c} +function jC(a,b){var c,d;for(d=new Vqd((new Sqd(a.a)).a);d.b;){c=Uqd(d);if(pvc(c.Ok())===pvc(b)){return c.yp()}}return null} +function jl(a,b){var c;while(a.a<=a.b.length){c=cl(a);b.a+=oyd;b.a+=c;if(Hnd(c.substr(0,6),kAd)){return il(a)}}return false} +function zD(a){var b;if(a){b=a.C;if(!!a.q||b.e||(!b.a&&(b.a=new UWb(b)),b.a).a.i.a.vd()!=0){return new yD(a)}}return new pD} +function BV(a,b,c){var d,e;if(c!=null){e=a.Jf(c,b.c.b,(z0(),y0));d=VQ(c,e.a)+e.a/2;b.a=d;return new nV(e,b,b,c)}return null} +function D$(a){var b,c;if(P4b(a)==(V4b(),S4b)&&!!VN(a)){return eO(WN(a))}b=i4b(T1(a,(O$b(),K$b)));c=!b?null:f4b(b);return c} +function Kf(a){var b,c,d;b=(ujc(),tjc).yn(a);if(!njc(b)){return}d=b;if(Lf(d,(abd(),zcd(a.type)))){c=Bcd(d);!!c&&cbd(a,d,c)}} +function s9c(a){var b;if(Array.isArray(a)&&a.Hp===t9c){return Jmd(U(a))+'@'+(b=V(a)>>>0,b.toString(16))}return a.toString()} +function hL(a,b){return !a.d.Ig().sd()&&b.b.vd()==2&&Zrd(b.a.zd(0).Ml(),b.a.zd(1).Ml())&&Zrd(b.a.zd(0).Ul(),b.a.zd(1).Ul())} +function owd(a,b){return cwd?b.Dp()>=(mwd(a),800):dwd?b.Dp()>=(Uvd(),800):gwd?b.Dp()>=(Uvd(),900):fwd&&b.Dp()>=(Uvd(),hAd)} +function nqd(a,b,c,d,e){lqd();if(b==0||d==0){return}b==1?(e[d]=pqd(e,c,d,a[0])):d==1?(e[b]=pqd(e,a,b,c[0])):oqd(a,c,e,b,d)} +function I4(a){var b,c,d;for(c=new Frd(a.e);c.a0){return true}}return false} +function H4(a,b,c){var d,e;d=new Srd(vuc(quc(tWc,1),zBd,49,0,[b]));e=new Z1(d);Y1(e,(O$b(),N$b),c);Y1(e,K$b,'ht');Wr(a.i,e)} +function J4b(){F4b();return vuc(quc(AXc,1),nyd,94,0,[o4b,p4b,q4b,r4b,s4b,t4b,u4b,v4b,w4b,x4b,y4b,z4b,A4b,B4b,C4b,D4b,E4b])} +function wdc(){xdc.call(this,(!Adc&&(Adc=!!$wnd.requestAnimationFrame&&!!$wnd.cancelAnimationFrame?new Bdc:new Hdc),Adc))} +function SA(a,b){BA.call(this,b,b.C,y$b(new F$b,new Srd(vuc(quc(xWc,1),lyd,715,0,[a]))).a);this.a=a;this.b=new Yu(this.o.A)} +function V0b(a,b,c){if(!b||!a){throw I8c(new bnd('End atom or Begin atomset cannot be null'))}this.a=a;this.b=b;yTb(this,c)} +function S9b(a,b,c,d,e){a.c=$wnd.Math.min(a.c,b);a.d=$wnd.Math.min(a.d,c);a.a=$wnd.Math.max(a.a,d);a.b=$wnd.Math.max(a.b,e)} +function eIb(a){a.o.e!=null?!!Rf(a.p.Tn())&&!!Mic(Rf(a.p.Tn()))&&(Mic(Rf(a.p.Tn())).style[eJd]=a.o.e,undefined):Dw(a.o,qBd)} +function cdc(a){var b,c;c=new std;if(a.a.length!=0){Lr(c,a.a[0].op());for(b=1;b0?(Hsc(),Fsc):(Hsc(),Gsc)}return Hsc(),Gsc} +function xB(a){var b,c;for(c=new Frd(a.a);c.a0&&(d.a+=',',d);nod(d,Ntc(a,c))}d.a+=']';return d.a} +function d$(a,b){var c,d;for(d=new Frd(a.o);d.a1?b.c.a[1]:null;!!c&&(a.e=c.xh())}} +function v9(a,b){var c,d;this.a=a;O7.call(this);for(d=new qsd(dsd(b.n).b.Qb());d.b.Rc();){c=d.b.Sc();U(c)==lWc&&Wr(this.j,c)}} +function Meb(a,b){var c,d;for(d=new Frd(a.b);d.a=0;f--){g=Ppd(g,g,d,e);(c.a[f>>5]&1<<(f&31))!=0&&(g=Ppd(g,b,d,e))}return g} +function I4b(){F4b();var a,b,c,d,e;a=new es;for(c=J4b(),d=0,e=c.length;de){d=b.yp();e=b.Ok().a}}return d} +function Ecb(a){var b,c,d,e,f;d=a.c;for(c=(f=(new drd(d.a)).a.mp().Qb(),new erd(f));c.a.Rc();){b=(e=c.a.Sc(),e.Ok());ndb(a.k,b)}} +function Dmb(a,b){var c,d,e,f;this.b=sid(a);d=(e={},Cmb(e,Emb()),Cmb(e,Rf(this.b)),e);c=(f=zOb(b),vs(yOb(f),d,false),f);this.a=c} +function Joc(a,b){var c;Ioc.call(this);this.a=b;!ioc&&(ioc=new Dpc);c=Yr(ioc,a);if(!c){c=new es;Cpc(ioc,a,c)}c.od(this);this.b=a} +function Tjb(a,b,c){gc.call(this,a,b);this.a=new Tsd(qLc);Psd(this.a,(vjb(),ujb),c[0]);Psd(this.a,tjb,c[1]);Psd(this.a,rjb,c[2])} +function pld(b,c){var d;try{return Pkd(b.ap(c))}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new Xkd(c,d))}else throw I8c(a)}} +function ms(b){var c;try{return fuc(),muc(s9c(b))}catch(a){a=H8c(a);if(kvc(a,452)){c=a;throw I8c(new vqd(c.i))}else throw I8c(a)}} +function mwd(a){var b,c;if(a.b){return a.b}c=ewd?null:a.d;while(c){b=ewd?null:c.b;if(b){return b}c=ewd?null:c.d}return Uvd(),Tvd} +function iab(a){switch(a.k){case 5:return -1;case 1:return 1;case 2:return 4;case 3:return 8;case 4:return 12;default:return 0;}} +function nUb(a){this.a=new jud;if(!a||a.vd()<2){throw I8c(new bnd('Atoms must contain at least 2 different atoms'))}Lr(this.a,a)} +function aW(a,b,c,d){var e,f;if(!c||c.sd()){return}for(f=c.Qb();f.Rc();){e=f.Sc();$V(a,b,new qad(e.b.a+e.c/2,e.b.b+e.a/2),1.2,d)}} +function d6(a,b,c){var d;d=new Z1((Xrd(),new ksd(ssd(dsd(a.n),b-1))));Y1(d,(O$b(),K$b),fc((e4b(),d4b)));Y1(d,N$b,'1-'+c);FVb(a,d)} +function Uw(a,b){og(b,a.e,(Qpc(),Qpc(),Ppc));og(b,a.e,(Npc(),Npc(),Mpc));og(b,a.e,(Jpc(),Jpc(),Ipc));og(b,a.e,(Gpc(),Gpc(),Fpc))} +function Vv(a){var b,c;Uo(a.a,(Lz(),Iz));if(fIb(a.a)&&gIb(a.a,Iz)){hIb(a.a,false);c=a.C;nT(a.j,c);b=JS(a.b,c);xIb(a.a,b);tw(a.e)}} +function Ac(a){var b,c;a.i=true;for(c=0;c=0;d--){g=J8c(Z8c(f,32),K8c(a[d],SLd));e=Gpd(g,c);f=d9c($8c(e,32))}return d9c(f)} +function Dub(a,b){var c,d;for(d=new Frd(a.f.a);d.a0){d[--b]=Dnd(a,--c)}return Cnd(),kod(d,0,d.length)} +function DJb(a,b){var c,d;if(!b){return null}c=EJb(a,b.b);d=EJb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} +function FJb(a,b){var c,d;if(!b){return null}c=GJb(a,b.b);d=GJb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} +function bRb(a,b){var c,d;if(!b){return null}c=cRb(a,b.b);d=cRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} +function eRb(a,b){var c,d;if(!b){return null}c=fRb(a,b.b);d=fRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} +function rRb(a,b){var c,d;if(!b){return null}c=sRb(a,b.b);d=sRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} +function uRb(a,b){var c,d;if(!b){return null}c=vRb(a,b.b);d=vRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} +function $sc(a,b){var c,d;c=vuc(quc(uvc,1),jyd,23,15,[0]);d=_sc(a,b,c);if(c[0]==0||c[0]!=b.length){throw I8c(new And(b))}return d} +function qpd(a){var b,c,d;if(a.e==0){return 0}b=a.d<<5;c=a.a[a.d-1];if(a.e<0){d=Tod(a);if(d==a.d-1){--c;c=c|0}}b-=jnd(c);return b} +function fvd(a,b){var c,d,e;d=null;e=a.b;while(e){c=a.a.Wg(b,e.d);if(c==0){return e}if(c>=0){e=e.a[1]}else{d=e;e=e.a[0]}}return d} +function bWb(a,b,c){var d,e;for(e=new qsd(dsd(a.q).b.Qb());e.b.Rc();){d=e.b.Sc();if(d.c.Bm()==b&&iXb(d)==c){return d}}return null} +function IVb(a,b,c,d){var e;e=new Q3b(b);if(!lsd(dsd(a.n),b)){return null}yTb(e,c);e.c=d;vTb(e);sVb(a,dsd(a.o).b.vd(),e);return e} +function hbb(a){var b,c,d,e;b=new zod;b.a+='\\u';e=(d=a>>>0,d.toString(16));for(c=e.length;c<4;c++){b.a+='0'}b.a+=''+e;return b.a} +function CK(a,b,c,d){dH.call(this,a);this.b=c;this.f=d?(t0b(),s0b):(t0b(),r0b);this.a=new yK(a,c,this.f);bH(this,this.a);this.i=b} +function cob(a,b){vd.call(this,'Add to this group');ud(this,Lyd,'R[+]');this.a=b;this.b=a;Wub(this.a,this);Iu(a.i,this);bob(this)} +function ipd(a){Nod();if(a.length==0){this.e=0;this.d=1;this.a=vuc(quc(uvc,1),jyd,23,15,[0])}else{this.e=1;apd(this,a);Qod(this)}} +function rP(a){if(a.c.a.length!=0){if(a.a>=0.5){a.b=-0.1}else if(a.a<=0){Hi(a.e.b);a.c.a=suc(_5c,lyd,1,0,5,1)}a.a+=a.b;a.f.w.Hf()}} +function rib(a){switch(a.k){case 9:return 'SD';case 10:return 'SA';case 11:return 'DA';case 12:return 'Any';default:return null;}} +function Uwd(a,b,c){if(a<0||b>c){throw I8c(new lmd(fMd+a+gMd+b+', size: '+c))}if(a>b){throw I8c(new bnd(fMd+a+' > toIndex: '+b))}} +function Us(a){var b;b=v9c(Ss,a);if(!b){throw I8c(new vqd('Invalid version string: '+a))}return new Rs(Vs(b[1]),Vs(b[2]),Vs(b[3]))} +function dK(a,b,c){var d;d=ZJ(a,b);if(d<0){return null}d+=-a.a.Xl().c;if(d<0&&!b2b(d)){return null}return c.qd(mnd(d))?mnd(d):null} +function KCb(a,b,c){var d;if(b!=null){for(d=1;d=0&&((abd(),a.U).style[ezd]=b+dzd,undefined),c>=0&&((abd(),a.U).style[czd]=c+dzd,undefined))} +function en(a,b,c){b>=0&&((abd(),a.U).style[ezd]=b+dzd,undefined);c>=0&&((abd(),a.U).style[czd]=c+dzd,undefined);a.d=b;a.b=c;hn(a)} +function Hgb(a,b,c,d){var e;e=Pib(a.c,VEd);eld(e,pFd,c?'0 0':'0');eld(e,DEd,d?'1':'0');Lkd(e,Ggb(a,b));c&&Lkd(e,Ggb(a,b));return e} +function Erc(a,b,c,d){var e,f;f=c-b;if(f<3){while(f<3){a*=10;++f}}else{e=1;while(f>3){e*=10;--f}a=(a+(e>>1))/e|0}d.j=a;return true} +function nud(a,b){var c,d;if(b>=a.b>>1){d=a.c;for(c=a.b;c>b;--c){d=d.b}}else{d=a.a.a;for(c=0;c0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))&&Xz(new Yz(a),b,Tu(a.v))}} +function qh(a,b,c){var d;if(!b.c){return}Ch(a,b);if(c&&!!b.b){a._b();(Sfd(),Rfd).Do((abd(),a.U));d=b.b;xic((pic(),oic),new $gd(d))}} +function $kd(b,c){var d;try{return Pkd(rld(b.a,c))}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new Vkd(d,b))}else throw I8c(a)}} +function ald(b,c){var d;try{return Pkd(sld(b.a,c))}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new Vkd(d,b))}else throw I8c(a)}} +function Tlc(){Rlc();return vuc(quc(j_c,1),nyd,67,0,[Glc,ylc,Blc,Clc,Elc,Flc,Hlc,Ilc,Jlc,Mlc,Olc,Nlc,Qlc,Klc,Llc,Plc,Alc,zlc,Dlc])} +function mpd(a){Nod();if(a.length==0){throw I8c(new And(RLd))}if(a[0]<0){this.e=-1;_od(this,a)}else{this.e=1;apd(this,a)}Qod(this)} +function cV(a,b){this.i=a.i;this.a=a.a;this.e=kH(a.e,b);this.b=new jV(a.b,b);this.j=a.j;this.n=a.n;this.c=a.c;this.d=a.d;this.f=a.f} +function Wud(){Uud();var a,b,c;c=Tud+++Date.now();a=qvc($wnd.Math.floor(c*bMd))&16777215;b=qvc(c-a*gLd);this.a=a^1502;this.b=b^aMd} +function Ind(a,b){if(b==null){return false}if(Hnd(a,b)){return true}return a.length==b.length&&Hnd(a.toLowerCase(),b.toLowerCase())} +function cK(a,b,c){var d,e;d=ZJ(a,b);if(d<0){return null}d+=-a.a.Xl().c;if(d<0){return null}e=d/2|0;return c.qd(mnd(e))?mnd(e):null} +function bab(a,b,c){var d,e;if(ztd(a.d,b)){d=s9c(Bqd(ztd(a.d,b)));e=Hnd('*',d)?-2:Hnd('0',d)?-1:Xmd(d,10);return Fab(c,e)}return ''} +function jeb(a,b){var c,d,e;e=new es;c=a.To();for(d=0;d1){return e}}}return null} +function M6b(a,b){var c,d,e;e=dsd(a.r);for(d=new qsd(dsd(b.r).b.Qb());d.b.Rc();){c=d.b.Sc();if(e.b.qd(c)){return true}}return false} +function cqd(a,b,c){var d,e;d=K8c(c,SLd);for(e=0;L8c(d,0)!=0&&ed.a){return 1}if(c.bd.b){return 1}return 0} +function tbc(a){var b,c,d,e;c=a.a.length;if(c<2){return a}d=0;while(d<=c-1){b=ubc(a,d++);e=a.a[b];$r(a,b);a.a[a.a.length]=e}return a} +function Zsd(a){var b,c,d,e;if(kvc(a,272)){return btd(a)}!a.sd();d=a.Qb();c=d.Sc();e=$sd(c);while(d.Rc()){b=d.Sc();atd(e,b)}return e} +function soc(a){var b,c;c=a.b;if(c){return b=a.a,Ojc((ujc(),b).clientX||0)-tjc.Cn(c)+tjc.In(c)+Ykc(c.ownerDocument)}return klc(a.a)} +function Bn(a){var b,c,d,e;return $wnd.Math.max((b=Qf(a.a),c=(Zbd(),Zkc($doc)),b-c),(d=Qf(a.a),e=Zkc($doc)+Ukc($doc),e-(d+Sf(a.a))))} +function $h(a,b){if(b=Zkc($doc)+Ukc($doc)-a.c){return a.c-b}return ai(a.c,b,Zkc($doc),Zkc($doc)+Ukc($doc))} +function mMb(){jMb();return vuc(quc(TTc,1),nyd,114,0,[aMb,_Lb,VLb,iMb,hMb,fMb,TLb,YLb,dMb,ZLb,ULb,eMb,SLb,WLb,XLb,gMb,$Lb,cMb,bMb])} +function l5(a,b){var c,d;if(b.length>3){nod(a,b.substr(0,3))}else{d=$wnd.Math.max(0,3-b.length);for(c=0;c36){throw I8c(new And('Radix out of range'))}if(a.length==0){throw I8c(new And(RLd))}opd(this,a,b)} +function Yg(a){a.G=true;if(!a.A){a.A=wkc($doc);hjc(a.A,a.C);a.A.style[xzd]=(Umc(),yzd);a.A.style[pzd]=(tnc(),qzd);a.A.style[rzd]=qzd}} +function Xs(c){return $wnd.btoa(encodeURIComponent(c).replace(/%([0-9A-F]{2})/g,function d(a,b){return String.fromCharCode('0x'+b)}))} +function TZ(a,b){var c,d;if(!b){return OZ}d=a.a.Cf()!=null?uBd:WU(a.a.Hl());c=new UZ(d,uBd);return (O1b(),M1b)==a.c?c:new UZ(c.b,c.a)} +function J1(){C1();return vuc(quc(qHc,1),pDd,87,0,[m1,k1,t1,r1,q1,z1,d1,y1,c1,g1,h1,e1,f1,n1,_0,l1,u1,s1,v1,w1,a1,b1,Z0,$0,x1,p1,o1])} +function m5(a,b){k5(a,b<0,(h5(),qvc(b)),5,32);a.a+='.';k5(a,false,qvc($wnd.Math.abs(b*$wnd.Math.pow(10,4)%$wnd.Math.pow(10,4))),4,48)} +function E8(a){var b;if(!a.a){b=new es;Wr(b,new z8);Wr(b,new A8);Wr(b,new L8);Wr(b,new M8);Wr(b,new O8);Wr(b,new u8);a.a=b}return a.a} +function WUb(a,b){var c,d,e;c=new es;if(b!=null){for(e=new Vqd((new Sqd(a.a)).a);e.b;){d=Uqd(e);Hnd(b,d.Ok())&&Wr(c,d.yp())}}return c} +function idc(a){var b,c,d,e,f;f=new otd(a.Vl());for(c=occ(),d=0,e=c.length;d',-1);if(c.length==1){return c}for(b=0;b'+c[b+1]}return c} +function _fb(b,c){var d;d=agb(b,c);if(d!=null){try{return new ggb(cgb(d))}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}}return new xgb} +function yEb(b){var c;gg(b.a,false);c=null;try{c=vEb(b)}catch(a){a=H8c(a);if(kvc(a,20)){gg(b.a,true)}else throw I8c(a)}!!c&&dFb(b.d,c)} +function Yw(a,b){var c;if(a.a==b){return}c=null;if(a.a){c=a.a.p;a.a.tg()}a.a=b;if(a.a){Jl(a.a,c);a.a.qg()}mqc(a.b,new hF,a);a.i.w.Hf()} +function K5b(a,b){var c;a.f.a.length==0&&a.r.a.length!=0&&Wr(a.f,a.r.a[0]);c=$5b((!a.d&&(a.d=new a6b(a)),a.d),b);return c?c:F5b(a,a.i)} +function Cuc(a,b){if(a.h==ZKd&&a.m==0&&a.l==0){b&&(xuc=Auc(0,0,0));return zuc((cvc(),avc))}b&&(xuc=Auc(a.l,a.m,a.h));return Auc(0,0,0)} +function OWb(a,b){var c;c=dsd(b.r);if(msd(dsd(a.a.n),c)){if(!Tx(b)){return Lr(a.a.i,dsd(Bdb(a.a,b).n))}return Lr(a.a.i,c)}return false} +function ced(a,b){var c,d;c=(abd(),abd(),Mic(b.U));d=vo(a,b);if(d){b.Bb('');b.zb('');b.Ab(true);Qic(a.U,c);a.b==b&&(a.b=null)}return d} +function k5b(a){var b,c,d,e;e=new std;for(d=new qsd(dsd(a.a.a.a).b.Qb());d.b.Rc();){c=d.b.Sc();b=E2b(c,a);U(b)==PXc&&ptd(e,b)}return e} +function L4b(a){var b,c,d;this.b=new is;this.a=new is;for(d=a.Qb();d.Rc();){c=d.Sc();b=c.o;!b?Wr(this.a,new O4b(this,c)):Wr(this.b,c)}} +function iqb(a,b){vd.call(this,'Remove from this group');ud(this,Lyd,'R[-]');this.a=b;this.b=a;Wub(this.a,this);Iu(a.i,this);hqb(this)} +function qpb(a,b){var c;wd.call(this,'Zoom all (\u21B2)',b);ud(this,HFd,(nk(),c=Und('ENTER',iAd,0),qk(c[c.length-1],rk(c))));this.a=a} +function P4b(a){if(a.k){return V4b(),R4b}if(a.Fp==OXc){return V4b(),U4b}if(T1(a,(O$b(),N$b))!=null){return V4b(),T4b}return V4b(),S4b} +function z0(){z0=p9c;v0=new A0(ACd,0,'bold ');x0=new A0(BCd,1,'italic ');w0=new A0('BOLD_ITALIC',2,'bold italic ');y0=new A0(wAd,3,'')} +function xnb(a,b){var c;return Dnb(a,(kA(),dA),(c={'structure':b,'parameters':{'autoMappingStyle':'COMPLETE'}},JSON.stringify(c)),a.c)} +function Jic(){if(Error.stackTraceLimit>0){$wnd.Error.stackTraceLimit=Error.stackTraceLimit=64;return true}return 'stack' in new Error} +function aed(){var a;a=(abd(),wkc($doc));a.style[ezd]=fzd;a.style[czd]='0px';a.style['padding']='0px';a.style['margin']='0px';return a} +function _kd(b,c,d){var e;try{return Pkd(cld(b.a,c,d))}catch(a){a=H8c(a);if(kvc(a,109)){e=a;throw I8c(new Vkd(e,b))}else throw I8c(a)}} +function Jpd(a,b){var c;c=b-1;if(a.e>0){while(!epd(a,c)){--c}return b-1-c}else{while(epd(a,c)){--c}return b-1-$wnd.Math.max(c,Uod(a))}} +function kib(a){fib();if(Hnd((WZb(),GXb).a,a.Il())&&Hnd('*',a.Gl())){return jib(6)}else if(kvc(a,261)){return a.bn()}return jib(a.Hl())} +function GH(a){if(iy(Lu(a.o.i).b)){return MG(a)}else if(my(Lu(a.o.i).b)){return SG(a)}else if(ky(Lu(a.o.i).b)){return PG(a)}return null} +function vo(a,b){var c;if(b.T!=a){return false}try{yg(b,null)}finally{c=(abd(),b.U);Qic((null,Ajc((ujc(),c))),c);Hjd(a.i,b)}return true} +function nib(a){fib();var b,c;if(kvc(a,177)){return mib(a)}b=lib(a.Hl());c=oib(a.Vl());if(c.length!=0){return Hnd(b,'0')?c:b+c}return b} +function u2b(a){var b,c,d;if(n2b(a)||o2b(a)){b=Y6b(new a7b(a.f,dsd(a.a),a));if(!!a.A&&!!a.A&&!b.sd()){d=a.A;c=new By;yx(c,b);xWb(d,c)}}} +function PR(a,b){var c,d;if(SR(a,b)){d=false;while(!d&&a.d.a.a.length!=0){c=Zud(a.d);d=c.c==b;JR(c,a.c,d&&((cS(),XR)==b||$R==b)&&a.a)}}} +function y5b(a,b){var c,d;c=G5b(a,b);d=E2b(b,a.i);c.c!=d&&c.d!=d&&(Ex(a,c.c)?(Jud(d,yJd),c.d=d):(Jud(d,yJd),c.c=d));return dVb(a.a,c,b)} +function d0b(a,b){var c,d;for(d=new Frd(S0b(b));d.ad&&(b[d]=null);return b} +function aeb(a,b){var c,d,e,f;f=new es;c=eeb(a,b);for(d=0;db.e){return 1}if(a.eb.d){return a.e}if(a.d0?mnd(c):''))}catch(a){a=H8c(a);if(kvc(a,65)){HEb(b.b,'1')}else throw I8c(a)}} +function KLb(a,b){var c,d,e,f,g;c=JLb(a);if(c!=null){for(e=b.Ai(),f=0,g=e.length;f>5;b&=31;e=a.d+c+(b==0?0:1);d=suc(uvc,jyd,23,e,15,1);upd(d,a.a,c,b);f=new gpd(a.e,e,d);Qod(f);return f} +function wPb(a,b,c){var d={'structure':a,'parameters':{method:b?vBd:'DEHYDROGENIZE'}};c&&(d.parameters.atoms=c);return JSON.stringify(d)} +function Mrc(a){krc();var b,c;b=Msc((Lsc(),Lsc(),Ksc));c=null;a==b&&(c=Fqd(jrc,CHd));if(!c){c=new Lrc(CHd);a==b&&Iqd(jrc,CHd,c)}return c} +function vmd(a,b,c){var d,e;d=Dnd(a,b++);if(d>=55296&&d<=56319&&ba.length||c>b.length){return false}d=a.substr(0,c);e=b.substr(0,c);return Ind(d,e)} +function Bfd(a,b){var c;if(b.T!=a){return false}try{yg(b,null)}finally{c=(abd(),b.U);Qic((null,Ajc((ujc(),c))),c);_cd(a.i,c)}return true} +function nLb(a,b){var c,d;d=new yod;c=a?a.Ic():'';d.a+=''+c;if(b!=null){c.indexOf(':')!=-1?(d.a+=',',d):(d.a+=':',d);d.a+=''+b}return d.a} +function uOb(a){var b,c,d;d=new es;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();Wr(d,new wOb(b))}Xrd();Prd(d.a,d.a.length,null);return d} +function $Vb(a,b,c){var d,e;for(e=new qsd(dsd(a.p).b.Qb());e.b.Rc();){d=e.b.Sc();if(d.c==b&&d.d==c||d.c==c&&d.d==b){return d}}return null} +function Q8b(a,b,c){var d,e,f,g;d=a.a==-1?c.a:b.b.a;e=a.a==1?c.a:b.b.a+b.c;f=a.b==-1?c.b:b.b.b;g=a.b==1?c.b:b.b.b+b.a;return jbc(d,f,e,g)} +function vrd(a,b){var c,d,e,f;d=a.a.length-1;c=b-a.b&d;f=a.c-b&d;e=a.c-a.b&d;Ard(c=f){wrd(a,b);return -1}else{xrd(a,b);return 1}} +function xA(a,b,c){if(!b){throw I8c(new bnd(yBd))}this.e=a;this.c=a.C;new Yu(a.A);this.b=new GE(this.c,b);this.d=c?c:this.c;this.a=new HA} +function Rwd(a,b){if(0>a){throw I8c(new bnd('fromIndex: 0 > toIndex: '+a))}if(a>b){throw I8c(new nmd('fromIndex: 0, toIndex: '+a+eMd+b))}} +function kL(a,b){var c;c=new f2b(a.b.a);e2b(c,gw(a.o.i,b));yQ(a.o.f,new PC(a.o.i,B$b(new F$b,new Srd(vuc(quc(jXc,1),lyd,1005,0,[c]))).a))} +function XN(a,b){if(P4b(a)!=(V4b(),S4b)){throw I8c(new and)}P4b(a)==S4b&&!!VN(a)&&V1(a,VN(a));Q1(a,new pcc(cCd,(Cnd(),''+b),(tcc(),rcc)))} +function vh(a,b,c){if(c<0||c>a.b.a.length){throw I8c(new kmd)}a.j&&((abd(),b.U)[Czd]=2,undefined);nh(a,c,(abd(),b.U));Vr(a.b,c,b);return b} +function $U(a){if(a.a.Cf()!=null){return a.a.Cf()}else if(U(a.a)!=sXc||!a.d){return VU(uBd,a.a.Ki(),a.c)}return UU(a.a.Il(),a.a.Ki(),a.c)} +function D8(a){var b;if(U(a)==lWc){return C8(a)}b=J8(mnd(a.Hl()));if(b!=null){return b}b=F8(a.Vl());if(b!=null){return b}return '#'+a.Hl()} +function RG(a){var b,c;if(YG(a)){for(c=new qsd(dsd(a.o.i.C.v).b.Qb());c.b.Rc();){b=c.b.Sc();if(fy(Mu(a.o.i).a.b,b)){return b}}}return null} +function yL(a){var b,c,d;d=new es;for(c=new qsd(dsd(a.o.i.C.v).b.Qb());c.b.Rc();){b=c.b.Sc();Zr(d,mnd(b.a),0)!=-1||Wr(d,mnd(b.a))}return d} +function e8b(a){var b,c,d,e;b=dyd;c=null;for(e=new Frd(a);e.ad.vd()){b=d.vd();c=d}}return c} +function jpb(a,b){var c,d,e,f;c=new es;f=cWb(a.C);for(e=new Frd(f);e.a>5;b=a&31;d=suc(uvc,jyd,23,c+1,15,1);d[c]=1<14&&kxd(a);a.f[14]=d9c(_8c(b,32));a.f[15]=d9c(K8c(b,-1));kxd(a)} +function b9(a,b){this.b=new Q8(a);this.c=new Y8(this.b,a);this.a=new v9(this,a);this.d=new I9(this.b,this.c,a,b);Fl(this,a.j);s5(this,a.e)} +function qI(a,b){var c,d;$G.call(this,a);this.d=s5b(b,new B0b);d=this.d.a;this.a=new tI(this,d);c=pI(d);this.c=new YT(c);this.b=dbc(Adb(c))} +function enb(){enb=p9c;bnb=new fnb('NORTH',0,'N');anb=new gnb('EAST',1,'E',true);cnb=new fnb('SOUTH',2,'S');dnb=new gnb('WEST',3,'W',true)} +function Occ(){Occ=p9c;Kcc=new Pcc('EDGETYPE',0);Ncc=new Pcc('TOPOLOGY',1);Lcc=new Pcc('REACTING_CENTER',2);Mcc=new Pcc('STEREO_SEARCH',3)} +function RNb(b,c){try{b.b.pb(cOb(b.a.a,c))}catch(a){a=H8c(a);if(kvc(a,46)){b.b.ob(null)}else if(kvc(a,42)){b.b.ob(null)}else throw I8c(a)}} +function mH(a,b){a.j=a.ug();a.j.mm(b);if(!a.i){a.i=new S2b(a.e,a.d,a.j)}else{I2b(a.i,a.d);L2b(a.i,a.j)}lsd(dsd(a.o.i.C.n),a.d)&&a.d.dm(a.i)} +function s6(a,b){var c;if(!a||!b){return}c=b.Lh();b.lm(new Sac(c.a,c.b,b.Ki()));b.hm(a.Nl());b.rm((kcc(),Qbc),Eqd(a.Vl(),Qbc));b.om(a.Sl())} +function s$b(a){var b,c;if(!a.a){a.a=new is;for(c=new qsd(dsd(a.c.n).b.Qb());c.b.Rc();){b=c.b.Sc();U(b)==PXc?Xr(a.a,dsd(b.a.r)):Wr(a.a,b)}}} +function PUb(a){FUb();var b,c;for(c=new qsd(dsd(a.p).b.Qb());c.b.Rc();){b=c.b.Sc();if(b.o==(s6b(),h6b)||b.o==f6b){return true}}return false} +function YUb(a,b){var c,d,e;e=a.Me();for(d=new Frd(b);d.a0?(Cnd(),''+a):''));c.a+=' ';if(b){nod(c,b.a!=null?b.a:'*');b.b&&(c.a+=', Rest H',c)}else{c.a+='*'}c.a+=oyd} +function DZ(a){if(a.b==null){if((O1b(),M1b)==a.n&&!a.k.b.d){a.b=Lac(a.k.e,GX(a,a.i),fV(a.k));a.b=a.b+(a.b>0?EX(a):0)}else{a.b=0}}return a.b} +function FZ(a){if(a.f==null){if((O1b(),M1b)!=a.n&&!a.k.b.d){a.f=Lac(a.k.e,GX(a,a.i),fV(a.k));a.f=a.f+(a.f>0?EX(a):0)}else{a.f=0}}return a.f} +function Pbb(a,b){var c,d,e;e=a.charCodeAt(0);c=Und(a.substr(1),(Cnd(),String.fromCharCode(e)),0);d=new ETb(e!=33,Xbb(c));Mbb(d,b);return d} +function dy(a,b){var c,d,e;e=new es;for(d=new qsd(dsd(a.s).b.Qb());d.b.Rc();){c=d.b.Sc();(c.c==b||c.d==b)&&(e.a[e.a.length]=c,true)}return e} +function zA(a,b,c){var d,e,f;f=Bdb(b,y$b(new F$b,c).a);for(e=new qsd(dsd(f.w).b.Qb());e.b.Rc();){d=e.b.Sc();!!d&&Zr(a.e,d,0)==-1&&Wr(a.e,d)}} +function AA(a,b,c){var d,e,f;f=Bdb(b,C$b(new F$b,c).a);for(e=new qsd(dsd(f.w).b.Qb());e.b.Rc();){d=e.b.Sc();!!d&&Zr(a.e,d,0)==-1&&Wr(a.e,d)}} +function Ngb(a,b,c){var d,e;e=Und(Dld(kld(Yr(a.a,b),pFd).a),' ',0);d='1';if(e.length==2){e[c]='1';d=e[0]+' '+e[1]}Nkd(kld(Yr(a.a,b),pFd),d)} +function $B(a,b,c){var d,e;d=new nD(a.a,dsd(b.r),c);e=ZB(dsd(b.s));return e.a.length==0?d:new AB(a.a,vuc(quc(PEc,1),ABd,38,0,[d,new bC(e)]))} +function RD(a,b,c){var d,e,f;if(0==c){d=new qad(a.a.b,a.a.a.b);e=a.b}else{d=new qad(a.a.a.a,a.a.b);e=a.c}f=Cac(OD(b,c),d,e);return QD(f,b,c)} +function iE(a){var b,c,d,e;e=Cac(gE(new drd(a.o)),a.b,a.j);d=0;for(c=new iud(new gud(a.o));c.b!=c.c.a.b;){b=hud(c);b.d.mm(kH(e[d],a.n));++d}} +function fbc(a,b){if(a.c<=0||a.a<0||b.c<=0||b.a<0){return false}return b.b.a<=a.b.a+a.c&&a.b.a=a.b){throw I8c(new lmd(vLd+b+wLd+a.b))}} +function R1(a,b){var c;c=a.o;if(c){if(b.qd(c)){throw I8c(new bnd('Cannot append twice an s-group to the chain of parents'))}b.od(c);R1(c,b)}} +function Jhd(a){if(!a.j){Ihd(a);a.c||tdd((oid(),sid(null)),a.a)}(Jg(),Ig).Io(Rf(a.a),'rect(auto, auto, auto, auto)');Rf(a.a).style[yAd]=tzd} +function Cc(a,b,c){var d;a.b=c;a.k=b;a.a=a.b.Hl();a.j=tu(a.k,a.b);a.i=false;for(d=0;d0.0154){return false}}return !d.sd()} +function yqb(a){var b,c;for(c=new qsd(dsd(a.r).b.Qb());c.b.Rc();){b=c.b.Sc();if(edc(vuc(quc(tWc,1),zBd,49,0,[b]))){return true}}return false} +function dWb(a,b){var c,d,e;e=new es;for(d=new Frd(b);d.a=0&&a.b>=0)){return}b=an(a,(Xm(),Sm));kvc(b,990)&&(c=gn(a,a.d,Wm,Tm),d=gn(a,a.b,Um,Vm),b.uc(c,d),undefined)} +function FL(a,b){var c,d,e;e=new I3b(uL(a,0));c=new S2b((s6b(),m6b),a.f,e);pTb(e,AL(a,b));d=new By;mx(d,e);nx(d,c);yQ(a.o.f,new PC(a.o.i,d))} +function ZQ(a){return Hnd(iCd,a)||Hnd(jCd,a)||Hnd(kCd,a)||Hnd(lCd,a)||Hnd(mCd,a)||Hnd(nCd,a)||Hnd(oCd,a)||Hnd(pCd,a)||Hnd(qCd,a)||Hnd(rCd,a)} +function hxb(){var a,b,c;b=(tcc(),ds(scc,suc(VYc,IHd,282,0,0,1)));c=suc(g6c,eyd,2,b.length,6,1);for(a=0;a=0;--e,c=c.c){f[e]=c.b}return new Z3b(b,f)} +function QLb(e,f){if(e){var g=new FileReader;g.onload=function(c,d){return function(a){var b=a.target.result;d.nl(b)}}(e,f);g.readAsText(e)}} +function ppd(a){Nod();if(L8c(a,0)<0){if(L8c(a,-1)!=0){return new hpd(-1,W8c(a))}return Hod}else return L8c(a,10)<=0?Jod[d9c(a)]:new hpd(1,a)} +function kod(a,b,c){Cnd();var d,e,f,g;f=b+c;Vwd(b,f,a.length);g='';for(e=b;e0-gv){if(gv>b.b&&b.a<0){return false}return true}return false} +function ey(a,b){var c,d,e;e=new es;for(d=new qsd(dsd(a.u).b.Qb());d.b.Rc();){c=d.b.Sc();Zr(S0b(c),b,0)!=-1&&(e.a[e.a.length]=c,true)}return e} +function v$b(a){var b,c;if(!a.e){a.e=new is;for(c=new qsd(dsd(a.c.n).b.Qb());c.b.Rc();){b=c.b.Sc();U(b)==PXc&&Wr(a.e,b.a)}Xr(a.e,dsd(a.c.w))}} +function vS(a){var b;this.d=a;this.c=new is;this.b=new is;this.a=(oS(),mS).b.b*a.a.Yd();b=e$(a.e.o);this.e=b.b.a+b.c/2;this.f=b.b.b+b.a+this.a} +function cac(a,b,c){var d;this.a=a;d=a.Rl();this.b=b;if(a.Xl()==(X1b(),S1b)){this.c=(c?d:0)+S1b.d;this.d=0}else{this.c=c?d:0;this.d=a.Xl().c}} +function tUb(){tUb=p9c;pUb=new uUb('E',0,'E','(E)');sUb=new uUb('Z',1,'Z','(Z)');qUb=new uUb('EZ',2,'E/Z','(?)');rUb=new uUb(wAd,3,null,null)} +function xUb(a,b,c){if(Zr(C2b(a.a),c,0)!=-1){return true}if((vXb(),sXb)==b){return !qXb(a.a.c,c)}if(tXb==b){return !qXb(a.a.d,c)}return false} +function Qr(a,b){var c,d,e;e=a.vd();b.lengthe&&(b[e]=null);return b} +function Uy(a,b){var c;c=false;kvc(b,63)?(c=_r(a.s,b)):kvc(b,210)?(c=_r(a.A,b)):kvc(b,118)&&(c=_r(a.u,b));c&&(a.b||vqc(a.a,new eF,a));return c} +function BM(a){ex(Mu(a.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_])));a.o.i.w.Hf();a.f=null;Ry(Lu(a.o.i).b)} +function w4(a){u4();var b,c,d,e;for(c=vuc(quc(PHc,1),nyd,380,0,[r4,s4,t4]),d=0,e=c.length;d=f&&d<=e} +function toc(a){var b,c;c=a.b;if(c){return b=a.a,Ojc((ujc(),b).clientY||0)-tjc.Dn(c)+((c.scrollTop||0)|0)+Zkc(c.ownerDocument)}return llc(a.a)} +function jpd(a){Nod();if(a.length==0){this.e=0;this.d=1;this.a=vuc(quc(uvc,1),jyd,23,15,[0])}else{this.e=1;this.d=a.length;this.a=a;Qod(this)}} +function Kc(a,b){Pwd(b!=a,'Exception can not suppress itself.');if(a.j){return}a.n==null?(a.n=vuc(quc(h6c,1),lyd,42,0,[b])):(a.n[a.n.length]=b)} +function bi(a,b){var c,d,e;e=new es;c=new ei(new hi(a.a,b));while((d=ci(c))!=null){e.a[e.a.length]=d}return ds(e,suc(_5c,lyd,1,e.a.length,5,1))} +function Qob(a){var b,c,d,e;e=new es;c=new gs(dsd(a.r));while(c.a.length!=0){b=c.a[0];d=Ey(b);_r(c,b);Or(c,dsd(d.r));e.a[e.a.length]=d}return e} +function ZB(a){var b,c,d;d=new es;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();(b.o==(s6b(),r6b)||b.o==l6b)&&(d.a[d.a.length]=b,true)}return d} +function ik(a){var b,c;c=suc(zxc,gAd,187,a.length,0,1);for(b=0;b0');dAb=new iAb('AS_DRAWN',2,vId);eAb=new iAb('EXACTLY',3,wId)} +function n_b(){l_b();return vuc(quc(WWc,1),zJd,101,0,[W$b,V$b,X$b,U$b,c_b,$$b,a_b,b_b,Y$b,_$b,Z$b,f_b,h_b,S$b,d_b,R$b,e_b,g_b,T$b,j_b,k_b,i_b])} +function Iic(a){var b,c;c=$wnd.Math.min(a.length,5);for(b=c-1;b>=0;b--){if(null.Ip()||null.Ip()){a.length>=b+1&&a.splice(0,b+1);break}}return a} +function Krd(a){var b,c,d,e;if(a==null){return 0}e=1;for(c=0,d=a.length;c2000){cic=a;dic=$wnd.setTimeout(nic,10)}}if(aic++==0){qic((pic(),oic));return true}return false} +function sD(a,b,c){if(!b){throw I8c(new bnd(yBd))}this.i=a;this.e=b;this.d=a.C;this.c=new Yu(a.A);this.b=new GE(this.d,b);this.f=c;this.a=new HA} +function Apb(a,b,c,d){vd.call(this,b);this.gb(Myd,c);this.a=a;this.b=d;Iu(a.i,this);this.c=$z(this.a.i.A);ud(this,Byd,(qmd(),this.c?true:false))} +function OS(a,b){var c,d,e,f;for(e=(f=(new ard((new kud(new drd(a))).a)).a.mp().Qb(),new brd(f));e.a.Rc();){d=(c=e.a.Sc(),c.yp());Q9b(b,d.gh())}} +function Yj(a,b,c){var d,e;if(!c||!b){throw I8c(new tnd)}Hqd(a.a,b,c);for(e=new Frd(fk(b));e.a=b.length*8){return new ipd(b)}else{c=suc(rvc,Kzd,23,qpd(a)/8|0,15,1);Eod(b,0,c,0,c.length);return new ipd(c)}} +function xb(a,b,c){var d;if(a>4){d=6-a-c}else if(a>2){c+a>4?(d=6-a-c):(d=4-a-c)}else{c-=b;c+a>4?(d=6-a-c):c+a>2?(d=4-a-c):(d=2-a-c);d-=b}return d} +function gl(a){var b=!/[^,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]/.test(a.replace(/"(\\.|[^"\\])*"/g,''));if(!b){return null}return eval('('+a+')')||null} +function ex(a,b){if(!b){throw I8c(new bnd('HighlightRenderer cannot be null in Highlight'))}if(!f_((!a.b&&(a.b=(e_(),d_)),a.b),b)){a.b=b;Pv(a.c)}} +function dE(a,b,c){var d,e;BA.call(this,a,a.C,x$b(new F$b,c).a);this.b=b;this.a=new ltd;for(e=c.Qb();e.Rc();){d=e.Sc();Hqd(this.a,d,mnd(d.Nl()))}} +function pS(a){var b,c,d;b=new V9b;for(d=new qsd(dsd(qS(a).c).b.Qb());d.b.Rc();){c=d.b.Sc();Q9b(b,c.xh())}return new hbc(b.c,b.d,b.a-b.c,b.b-b.d)} +function G3(a){D3();var b,c,d;if(x9c(C3,a)){c=F3(B3,a);if(c!=null){b=F3(A3,a);if(b!=null){d=v3(c);return new E3(Xmd(u3(b)[0],10),d)}}}return null} +function B5(a){z5();var b,c,d,e;for(c=vuc(quc(dIc,1),nyd,329,0,[y5,w5,v5,x5]),d=0,e=c.length;d-1){return Ynd(a.name||null,b+1).toLowerCase()}}return null} +function rOb(a,b){var c,d;d=suc(uvc,jyd,23,b.vd(),15,1);for(c=0;c0){Wr(a.b,new wtc(b.a,c));d=b.a.length;0d&&(b.a+=jod(suc(svc,fyd,23,-d,15,1)))}} +function Eod(a,b,c,d,e){Dod();var f,g;U(a);U(c);g=a.length;f=c.length;if(b<0||d<0||e<0||b+e>g||d+e>f){throw I8c(new kmd)}e>0&&xwd(a,b,c,d,e,true)} +function Sj(){var a,b;this.a=y8c();a=this.a.b;_f(this,(abd(),a));this.U.tabIndex=0;b=(!Nj&&(Nj=new Uj),Xj(),Tj);Vj(b);this.U.className='mjs-obf-A'} +function XB(a){var b,c,d;d=new F$b;for(c=new Vqd((new Sqd(a.a)).a);c.b;){b=Uqd(c);nXb(b.yp(),b.Ok().a)}z$b(d,new ard(a.a));Sx(d.a)||zVb(a.b.C,d.a)} +function SI(a,b,c){var d,e;for(e=new qsd(dsd(a.o.i.C.p).b.Qb());e.b.Rc();){d=e.b.Sc();if(d.c==b&&d.d==c||d.c==c&&d.d==b){return false}}return true} +function ojb(a){var b,c,d;if(a.sd()){return ''}b=new Aod('{');for(d=a.Qb();d.Rc();){c=d.Sc();b.a+=''+c;b.a+=','}gmd(b,b.a.length-1,125);return b.a} +function W3b(a){var b;if(!a.b){a.b=new es;for(b=0;b=0&&d>5]|=1<<(c&31))}return d} +function Ep(a,b,c){var d;d=new red(bxb(c));Of(d,(Up(),'mjs-obf-E'));Ffd(a.b,b,0,d);Ffd(a.b,b,1,new Cgd((Tp(),Op).c));Ffd(a.b,b,2,new Cgd((Sp(),Np).c))} +function Fr(a,b,c){var d,e;if(!c){return}e=Gqd(a.b,b)?hvc(Fqd(a.b,b)):a.a;d=Er(e,c);if(d==-1){return}Iqd(a.b,b,Gr(a,Gqd(a.b,b)?hvc(Fqd(a.b,b)):a.a,d))} +function dw(a,b){!!b&&dsd(b.p).a.sd()&&HWb(b);nT(a.j,b);xIb(a.a,JS(a.b,b));XHb(a.a,a.f);Ov(a,(Lz(),Iz));a.v.d=false;Ru(a,b);Ry(a.A);a.w.Hf();Zt(a,a.C)} +function EM(a,b){var c,d;d=jw(a.o.i,FM(a));if(rac(d.a,d.b,0,b.a,b.b,0)<(a.b.d+4)*1.5){return gw(a.o.i,d)}c=Ku(a.o.i,b);if(c){return c.Lh()}return null} +function wE(a,b){var c,d,e;for(d=new Frd(a.$m());d.a11){Wr(b,c.substr(0,11));c=c.substr(11)}b.a[b.a.length]=c;return ds(b,suc(g6c,eyd,2,b.a.length,6,1))} +function H7(a){if(a==null||a.length==0){throw I8c(new bnd('empty line'))}if(a.length<3){throw I8c(new bnd('too short line'))}this.b=a;this.a=7;this.c=3} +function yeb(a){while(_ab(a.c,0)!=-1){_ab(a.c,0)==123?xeb(a):_ab(a.c,0)==10?(bbb(a.c,1),ueb(a,(g9b(),b9b))):Wr(a.a,new Y8b(Aeb(a)))}return new n9b(a.a)} +function wqb(a){var b,c;b=0;c=0;Hnd('ARROWDOWN',a)&&(c=-50);Hnd('ARROWUP',a)&&(c=50);Hnd('ARROWLEFT',a)&&(b=50);Hnd(WFd,a)&&(b=-50);return new qad(b,c)} +function Zvb(a,b){return new Yld(vuc(quc(w5c,1),Iyd,293,0,[og(b,a,(Boc(),Aoc)),og(b,a,(Eoc(),Doc)),og(b,(xpc(),$wnd.clipboardData?new zpc(a):a),wpc)]))} +function Jzb(a){var b,c;c=(X1b(),vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b]));for(b=0;bd&&a.charCodeAt(b-1)<=32){--b}return d>0||b=(mwd(a),800):dwd?b.Dp()>=(Uvd(),800):gwd?b.Dp()>=(Uvd(),900):fwd&&b.Dp()>=(Uvd(),hAd))&&(d=new bwd(b,c),iwd(a,d))} +function lp(a){var b;if((Os(),Ns)&&kvc(a,95)){b=$wnd.navigator.platform;(b.indexOf('iPad')!=-1||b.indexOf(Ozd)!=-1)&&kg(a.xb(),Pzd,true);Ri(new jp(a),a)}} +function gq(a,b,c){var d;d=new Xl(b);og(d,a.c,(voc(),voc(),uoc));c.length==0?((abd(),d.U).removeAttribute(azd),undefined):gjc((abd(),d.U),azd,c);return d} +function PK(a,b){dH.call(this,a);this.d=b;this.c=(s6b(),g6b)==b?new iL(a):new aL(this.o,b);this.a=new NH(a,b,false);this.b=new VM(this.o);bH(this,this.a)} +function ZO(a){if(aP(a.e)){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),k_,v_]))}return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),k_,v_,u_]))} +function fP(a,b){var c,d,e;if(!!a&&!!b&&a!=b&&a.Kl()*b.Kl()>0){e=new utd(a.Ml());for(d=b.Ml().Qb();d.Rc();){c=d.Sc();if(e.a.lp(c)){return c}}}return null} +function j8b(a,b){var c,d,e;if(b.vd()>a.c.a.length+1){return true}e=new std;for(d=b.Qb();d.Rc();){c=d.Sc();if(!Zrd(e,c)){return true}Lr(e,c)}return false} +function L4(a,b){var c,d,e,f;for(d=(f=(new ard(a.f.a)).a.mp().Qb(),new brd(f));d.a.Rc();){c=(e=d.a.Sc(),e.yp());if(rsd(dsd(c.r),b)){return c}}return null} +function Vfb(a){Ufb();if(a==(Xcc(),Vcc)){return '-1'}if(a==Rcc){return '1'}if(a==Ucc){return '4'}if(a==Scc){return '8'}if(a==Tcc){return '12'}return null} +function HAb(){var a,b,c,d,e;e=new es;for(b=(X1b(),vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b])),c=0,d=b.length;c1&&c.Ni(new Srd(vuc(quc(WYc,1),lyd,176,0,[b.zd(0)])))}}} +function Nac(a){var b,c,d,e;e=OBd;d=LJd;for(c=new qsd(dsd(a.n).b.Qb());c.b.Rc();){b=c.b.Sc();e>b.Ki()&&(e=b.Ki());d=2&&a.d.Ml().vd()<2){return a.c.Ml().vd()>2}else if(a.d.Ml().vd()>=2&&a.c.Ml().vd()<2){return a.d.Ml().vd()>2}return false} +function VN(a){var b,c;for(c=d1b(a.n).Qb();c.Rc();){b=c.Sc();if(Hnd(cCd,b.a)&&(tcc(),rcc)==b.b&&(b.c==null||b.c.length==0)&&$N(b.d)){return b}}return null} +function $P(a){var b,c,d;d=false;if(a.a.a.length>1){d=true;b=$r(a.a,0);Wr(a.a,b)}if(a.b.a.length>1){d=true;c=$r(a.b,0);Wr(a.b,c)}if(d&&!!a.c){WP(a);SP(a)}} +function Ohb(a,b,c){var d;if(U(b)==PXc){d=b;Kfb(a.c.n.a,b,'R',c);a.c.n.f.Tj(b,tld(c.a,WDd),'atomprop',c);_gb(a.c.n,d);Wr(a.c.k,d);return true}return false} +function ayb(a,b){var c;if(!b){return false}c=lob(a.a,lHd);if(c){if(pvc((qmd(),pmd))===pvc($xb(a,Fyd))){b.od(c)}else{b.td(c);_xb(a,Fyd,false)}}return true} +function izb(a){var b,c,d,e,f;f=0;b='';for(d=a.Qb();d.Rc();){c=d.Sc();e=jzb(c);b+=(i1b(),(e>0&&e<=126?h1b[e-1].c:null)+(f==a.vd()-1?'':' ,'));++f}return b} +function occ(){kcc();return vuc(quc(UYc,1),nyd,69,0,[jcc,gcc,bcc,icc,dcc,ccc,Nbc,fcc,$bc,acc,_bc,hcc,ecc,Obc,Zbc,Xbc,Sbc,Qbc,Rbc,Ubc,Vbc,Tbc,Wbc,Ybc,Pbc])} +function Fuc(a,b){var c,d,e;if(b<=22){c=a.l&(1<c+3&&(d=d.substr(0,c+2))}else{d=d+d9c(P8c($wnd.Math.round((b-b%6)%360)))}return d} +function MP(a){var b;if(!gP(a).c){b=new By;!eP(a.b,gP(a).b.a[0].a)&&nx(b,gP(a).b.a[0].a);mx(b,gP(a).b.a[0].a.c);mx(b,gP(a).b.a[0].a.d);return b}return null} +function beb(b,c){var d,e;try{return b.b.Ld(s9c(c))}catch(a){a=H8c(a);if(kvc(a,310)){d=a;e=new vqd(d.i);Pwd(d!=e,qyd);e.f=d;throw I8c(e)}else throw I8c(a)}} +function kyb(a){if(Yxb(a.d,Fyd)){jyb(a,a.d)}else if(Yxb(a.e,Fyd)){jyb(a,a.e)}else{ud(a.d,Fyd,(qmd(),false));ud(a.e,Fyd,false);gg(a.c,false);ryb(a.a,false)}} +function oKb(a,b,c,d){HKb(a.f,c);return (b==RGd?d.c==-1&&d.a==-1?new oRb(d,_j(a.f,(MKb(),LKb))):new jRb(d,_j(a.f,(MKb(),LKb))):new PKb(b,d,sKb(a.e))).Id(c)} +function aOb(a,b){var c,d,e;e=new jld(yld(b.a,'License'));for(d=0;d$wnd.Math.max(a.o.i.a.j.e.b*10,1)} +function OK(a){var b,c,d;if(hy(Lu(a.o.i).b)){d=LG(a);for(c=d.Ul().Qb();c.Rc();){b=c.Sc();if(b.b==d&&(s6b(),g6b)==b.o==(g6b==a.d)){return true}}}return false} +function bL(a,b){var c,d,e,f;if(a.b.vd()>1){f=new nUb(a);c=new y2b((WZb(),UXb));oTb(c,D9b(f));d=new By;mx(d,c);e=new V0b(f,c,b);rx(d,e);return d}return null} +function CM(a,b,c){var d,e;if(!a.f){a.f=new jD(a.o.i);e=new gs(dsd(Vw(a.o).n));d=dsd(a.o.i.A.r);Or(e,d);fD(a.f,e);eD(a.f,d)}dD(a.f,c);!!b&&hD(a.f,b);iD(a.f)} +function mU(a,b){var c,d,e,f;c=new es;f=0;for(d=0;d=0||a.b-a.d>=0)){U9b(a,b.b.a,b.b.b,b.b.a+b.c,b.b.b+b.a);return}if(b.c<0||b.a<0){return}S9b(a,b.b.a,b.b.b,b.b.a+b.c,b.b.b+b.a)} +function zac(a,b,c,d,e,f,g){var h,j,l,m,n,o,q,r;j=c-a;l=d-b;o=g-e;q=0-f;h=j*q-l*o;if(h==0){return null}m=e-a;n=f-b;r=(m*q-n*o)/h;return new qad(a+r*j,b+r*l)} +function rrc(a){var b,c,d;b=false;d=a.b.a.length;for(c=0;cbKb[b]*(Os(),Ls)&&a.b<=bKb[b+1]*Ls){a.b=bKb[b]*Ls;Xub(a,new $Jb(mnd(fKb(a))));return}}}} +function f0b(a,b){var c;c=ty(a,b.Re());c=c|$x(a,b.Pe());c=c|Zx(a,b.Oe());c=c|Yx(a,b.Le());c=c|_x(a,b.Qe());c=c|ay(a,b.Se());c=c|i0b(a,b.Me(),b.Ne());return c} +function Y6b(a){var b,c,d;if(!a.a||a.a.a.length==0){return Xrd(),Xrd(),Wrd}d=new std;for(c=a.b;c<4;++c){b=Yr(a.a,c);b.sd()||$6b(a,b)||Lr(d,b)}_6b(a);return d} +function iqd(a,b,c,d){var e;if(c>d){return 1}else if(c=0&&a[e]===b[e];e--);return e<0?0:S8c(K8c(a[e],SLd),K8c(b[e],SLd))?-1:1}} +function hvd(a,b,c,d,e,f,g){var h,j;if(b.Bp()&&(j=a.a.Wg(c,d),j<0||!e&&j==0)){return false}if(b.Cp()&&(h=a.a.Wg(c,f),h>0||!g&&h==0)){return false}return true} +function Dm(a,b,c){if(a.c){if(!(Os(),Ns)&&Jm(b,c,Tf(a.b)-Gs,Sf(a.b)-Gs)){Fm(a)}else{Vd(a.a,Fyd)!=null&&Wd(a.a,Fyd,(qmd(),pmd));Km(a.b,true);rd(a.a)}a.c=false}} +function jJ(a,b){var c,d;d=iJ(a,Eqd(b.Vl(),a.a));c=d+a.d;if(a.a.a&&(ca.b)){if(a.a.a&&(da.b)){return ''+(a.d>0?a.c:a.b)}return null}return ''+c} +function ifb(a){var b,c,d,e;b=heb(a.j,'connect');c=heb(a.j,azd);if(b==null||c==null){return null}return d=mfb(a),e=new Z1(d),Y1(e,(O$b(),K$b),b),Y1(e,N$b,c),e} +function bjb(){bjb=p9c;Zib=new cjb(HDd,0,mFd);Yib=new cjb('DATA',1,gFd);$ib=new cjb('MULTICENTER',2,lFd);_ib=new cjb(zDd,3,'SruSgroup');ajb=new cjb(GDd,4,kFd)} +function Jlb(a){var b,c,d,e;e=new es;for(c=0,d=a.length;c0&&b<=126){return b>0&&b<=126?h1b[b-1].c:null}return null} +function gKb(a){var b;if(fKb(a)!=1){for(b=0;b=bKb[b]*(Os(),Ls)&&a.b>22);e+=d>>22;if(e<0){return false}a.l=c&XKd;a.m=d&XKd;a.h=e&YKd;return true} +function QD(a,b,c){var d,e,f,g,h;h=new es;d=0;for(f=b.Qb();f.Rc();){e=f.Sc();g=a[d];0==c?Wr(h,new Sac(e.a.a,g.b,g.a)):Wr(h,new Sac(g.a,e.a.b,g.b));++d}return h} +function k8b(a,b){var c,d,e,f,g,h;h=new is;for(f=b.Qb();f.Rc();){e=f.Sc();g=new is;for(d=e.Qb();d.Rc();){c=d.Sc();Wr(g,Y7b(a.b,c.a))}h.a[h.a.length]=g}return h} +function wL(a,b){var c,d,e,f,g;g=-1;c=Ndb(a.o.i.C,b);if(!dsd(c.v).a.sd()){f=dyd;for(e=new qsd(dsd(c.v).b.Qb());e.b.Rc();){d=e.b.Sc();d.ac.Wh()+c.Xh())){return}a.d=c;fY(a,d,e,!!a.c.pe());iY(a,b);for(g=c.ph().Qb();g.Rc();){f=g.Sc();vY(b,f,d)}} +function uAb(a,b){var c,d;c=new Srd(vuc(quc(L5c,1),lyd,583,8,[(qmd(),pmd),omd]));d=new Srd(vuc(quc(g6c,1),eyd,2,6,[UHd,VHd]));AAb(a,new ZAb(b,c,d),'List type')} +function ve(a,b){var c;c=null;b.fb(Myd)!=null?(c=new Bgd(b.fb(Myd))):b.fb(Eyd)!=null?(c=new Dgd(s9c(b.fb(Eyd)))):b.fb(Dyd)!=null&&(c=new Cgd(b.fb(Dyd)));ue(a,c)} +function u4(){u4=p9c;r4=new v4('LIST',0,'^\\(\\d+( (\\w+|-?\\d+\\.?\\d*))*\\)');s4=new v4('QUATED',1,'^\\".*\\"');t4=new v4(tyd,2,'^(\\w+|-?\\d+.?\\d*|[<>=]+)')} +function Ubb(a,b){var c,d;if(b.Gj(yEd,'-')){d=b.Dj(yEd,'-');if(!Hnd(d,'-')){c=new ltd;Hqd(c,(kcc(),Qbc),d);a.qm(c)}}if(b.Fj(xEd)){c=Zbb(b.Cj(xEd));!!c&&a.qm(c)}} +function gib(a,b){var c;c=a.a;if((kcc(),Pbc)==c){return Hnd('a',b)?'a1':'a0'}if(Ybc==c){return 'u1'}if(Ubc==c){if(Hnd('',b)){return a.b+'256'}}return a.b+(''+b)} +function _Gb(a){var b,c,d,e,f,g;c=0;b=i4b(a);for(e=(e4b(),vuc(quc(zXc,1),nyd,281,0,[d4b,c4b,b4b])),f=0,g=e.length;f1){return ec()}d=a==0&&b==0&&c==0?0:1-a-c-b;return dc(d)} +function Bc(a){var b,c;a.e=false;a.f=a.b.Ol();for(c=0;c1){return new Xac(d)}return new Xac(null)} +function xE(a,b,c){var d,e;for(e=new Frd(a.$m());e.a1){return Kbc(),Jbc}else if(d.a.vd()==1){return c=(new ard(d.a)).a.mp().Qb(),b=(new brd(c)).a.Sc(),b.yp()}return null} +function Pqc(a,b,c){this.c=new Qqc(this);if(!a){throw I8c(new tnd)}if(!c){throw I8c(new tnd)}if(b<0){throw I8c(new and)}this.a=c;this.b=b;this.d=a;b>0&&Ii(this.c,b)} +function wrc(a,b){var c,d,e;d=new Htc;e=new Itc(d.r.getFullYear()-KKd,d.r.getMonth(),d.r.getDate());c=vrc(a,b,e);if(c==0||c>19;l=b.h>>19;if(j!=l){return l-j}e=a.h;h=b.h;if(e!=h){return e-h}d=a.m;g=b.m;if(d!=g){return d-g}c=a.l;f=b.l;return c-f} +function NC(a){var b;if(a.e){CWb(a,false);b=new WWb((!a.a&&(a.a=new UWb(a)),a.a));NWb((!a.a&&(a.a=new UWb(a)),a.a),new Cy(new Q7b(a)));return new UC(b,a)}return null} +function GF(a,b,c,d,e,f){var g,h,j;c-=a;d-=b;e-=a;f-=b;g=e*c+f*d;if(g<=0){j=0}else{e=c-e;f=d-f;g=e*c+f*d;g<=0?(j=0):(j=g*g/(c*c+d*d))}h=e*e+f*f-j;h<0&&(h=0);return h} +function fO(a,b){var c,d;for(d=new qsd(dsd(Vw(a.c).w).b.Qb());d.b.Rc();){c=d.b.Sc();if(msd(dsd(b.r),dsd(c.r))&&msd(dsd(c.r),dsd(b.r))&&a.Ug(c)){return c}}return null} +function RR(a,b){var c,d,e,f;e=Und(b,'<',-1);nod(a.c,e[0]);a.b=a.c.a.length==0;for(c=1;c',zCd);return TR(f)} +function MW(a,b){var c,d,e,f;if(LW(a)==2){d=b.ce(a.Lh());c=KW(a);e=b.ce(c.a[0]);f=b.ce(c.a[1]);return $wnd.Math.abs(d.b-e.b)<1&&$wnd.Math.abs(d.b-f.b)<1}return false} +function j$(a){var b,c,d;b=new V9b;for(d=a.b.Qb();d.Rc();){c=d.Sc();Q9b(b,cbc(c.xh(),4*a.a.Yd()))}return b.a-b.c>=0||b.b-b.d>=0?new hbc(b.c,b.d,b.a-b.c,b.b-b.d):null} +function d8(a){var b;if(a!=null){b=Und(a,'\\.',0);return b.length==3&&b[0].length==2&&(b[1].length==1||b[1].length==2)&&(b[2].length==1||b[2].length==2)}return false} +function k9(a,b){var c,d,e;for(d=0;d0?Pkd(Kld(c.a,0)):null);if(!b){return 'ChemAxon file format v0.0.0, generated by v0.0.0.0'}return leb(b)} +function Gfb(a,b,c){var d,e,f;if(b){e=Eqd(a.a,b.b);d=Lab(b.a);if(e!=null&&d!=null){f=Pib(a.c,fEd);eld(f,'rectRef',e);eld(f,'pos',d);Lkd(c,f);return true}}return false} +function KFb(a){var b,c,d;c=new YIb;zHb(a.b,c);WIb(c,(d=DEb(a.i),!d?IFb:d.a));UIb(c,(b=DEb(a.e),!b?HFb:b.a));Dw(c,uFb(a.a));XIb(c,fc(uFb(a.j)).toLowerCase());return c} +function lPb(){return {toolbars:oJd,templateurl:null,lonepaircalculationenabled:true,copyasmrv:false,autoreaction:false,allowreaction:true,prefernativereaction:false}} +function qs(a){var b;if(a.a>a.b.length){throw I8c(new Eud)}b=dl(a);a.a=a.a+(a.a')){while(ps(a.c)&&q7(a).length>0);}else{break}}return b} +function z7(a,b){var c,d,e,f,g;g=Ynd(b,(R5(),J5).a.length);c=(h5(),f=bod(g.substr(0,3)),f.length==0?0:Xmd(f,10));e=g.substr(3);for(d=0;d0&&(d=e)}return d} +function xxd(a){var b,c,d,e,f;f=Und(a,'\\.',0);e=$wnd;b=0;for(c=f.length-1;bd&&(b.a+=jod(suc(svc,fyd,23,-d,15,1)))} +function x6(a){switch(a){case 1:return Xcc(),Rcc;case -1:return Xcc(),Vcc;case 4:return Xcc(),Ucc;case 8:return Xcc(),Scc;case 12:return Xcc(),Tcc;default:return null;}} +function G9(a,b,c,d){var e,f;F9(b,d,T1(c,(O$b(),M$b)));e=qtd(a.c,c);f=e?k8(c.i):Ix(c);J9(b,a.b,(W9(),N9),d,f);D9(a,b,d,c);if(!e){X9(R9,b);b.a+=' 1 ';b.a+=''+d;b.a+=oyd}} +function mfb(a){var b,c,d,e,f,g;c=a.c;g=heb(a.j,NEd);f=new es;if(g!=null){d=Und(g,' ',0);for(e=0;ea.d&&(d=a.d);while(d>c&&Dnd(b.a,d-1)==48){--d}if(d5){e=d9c(W8c(P8c($wnd.Math.round((b.a-a.f.a)/c))));d=d9c(W8c(P8c($wnd.Math.round((b.b-a.f.b)/c))));a.i=mad(UL,new qad(d,e))}} +function P0(){P0=p9c;L0=new R0('CUSTOMIZE',0);M0=new R0('ENCODING',1);O0=new R0('VIEWPORT',2);N0=new R0(kDd,3);K0=new R0('ATTACHEDDATA',4);J0=new R0('ATOM_PROPERTIES',5)} +function l2(){l2=p9c;k2=new m2('PNG',0,'png','PNG',rDd,true,vuc(quc(g6c,1),eyd,2,6,['png']));j2=new m2('JPEG',1,'jpeg','JPEG',sDd,false,vuc(quc(g6c,1),eyd,2,6,['jpeg']))} +function dcb(a){var b,c,d,e,f,g;g=new ltd;d=new gcb('a');for(c=(f=(new drd(a)).a.mp().Qb(),new erd(f));c.a.Rc();){b=(e=c.a.Sc(),e.Ok());Iqd(g,(++d.a,d.b+d.a),b)}return g} +function L9b(a,b){var c,d,e,f,g;c=new es;for(g=(e=(new ard(b.a)).a.mp().Qb(),new brd(e));g.a.Rc();){f=(d=g.a.Sc(),d.yp());Wr(c,$wnd.Math.atan2(f.b-a.b,f.a-a.a))}return c} +function vjb(){vjb=p9c;qjb=new yjb(ACd,0,SAd,(Cjb(),Ajb));rjb=new xjb('DY',1,'dy');sjb=new yjb(BCd,2,TAd,Ajb);tjb=new xjb('SCALE',3,'scale');ujb=new xjb('SUBL',4,'subL')} +function mkb(a,b){var c;return lkb(a,'Import'+(Ds().length==0||'O'.length==0?'':' ('+Ds()+'+'+'O'+')'),'Open',b,(nk(),c=Und('SHORTCUT+O',iAd,0),qk(c[c.length-1],rk(c))))} +function ylb(a,b,c,d){var e,f,g,h;e=a.G.C;h=eLb(a.r,b,c,d);f=h.Qi(e);g=new $lb(f);return bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[new umb(a,g),new Qvd,new ff])))} +function Kxb(a,b){var c,d;ulc(Rf(a.d));for(d=new Frd(b);d.a');Ugd(a.d,vlc(Rf(a.d)).length-1)} +function Qx(a){var b,c,d,e;for(c=new Frd(a.r);c.ae){e=f;g=h;d=false}else f==e&&(d=true)}if(d){return null}return g} +function o2b(a){var b,c;if(dsd(a.a).a.sd()){return false}for(c=new qsd(dsd(a.a).b.Qb());c.b.Rc();){b=c.b.Sc();if(b.c.Bm()==a&&b.b<0&&!b2b(b.b)){return true}}return false} +function N8c(a,b){var c;if(mvc(a)&&mvc(b)){c=a/b;if(aLdf;e--){Bwd(d.a,e)}j=jhd(a,g,d);h=new Pid(j);Eid(c,h)} +function Mkd(b,c,d){var e,f,g,h;try{g=c.a;d?(h=d.a):(h=null);f=Jld(b.a,g,h);return Pkd(f)}catch(a){a=H8c(a);if(kvc(a,109)){e=a;throw I8c(new Vkd(e,b))}else throw I8c(a)}} +function Eh(a){var b,c,d;if(!a.i){return}c=Zr(a.f,a.i,0);b=c;while(true){c=c-1;c<0&&(c=a.f.a.length-1);if(c==b){d=Yr(a.f,b);break}else{d=Yr(a.f,c);if(d.c){break}}}Ch(a,d)} +function di(a){var b;b=a.a.fc();if(b<0){throw I8c(new bmd('EOF'))}if(b==128){throw I8c(new bmd('Indefinite form'))}if((b&128)!=0){throw I8c(new bmd('Long form'))}return b} +function Ru(a,b){!!a.t&&Xld(a.t);!!a.q&&dsd(b.n).b.vd()>0&&dsd(b.k).b.vd()==1&&Q0b(dsd(b.k).a.zd(0))&&!dsd(b.t).a.sd()&&xWb(b,B$b(new F$b,dsd(b.t)).a);a.C=b;a.t=Wu(a.u,b)} +function NO(a,b){var c,d,e;PO(a);VG(a,b.c);if(gy(Lu(a.o.i).b)){c=KG(a);d=dT(a.o.i.j,c);e=d.di(b.c);if(0==e){a.c=true;a.a=c;a.b=b.c}else if(1==e){a.c=false;a.a=c;a.b=b.c}}} +function AX(a,b){var c,d,e,f;e=new V9b;for(d=new Frd(b);d.a=52){d=(h5(),c=bod(b.substr(49,3)),c.length==0?0:Xmd(c,10));if(d>0){a.rm((kcc(),Qbc),(Cnd(),''+(d==15?0:d)));return true}}return false} +function S7(a){var b,c;O7.call(this);this.b=new es;this.a=new es;Xr(this.b,cWb(a));Xr(this.j,this.cj(a));for(c=new qsd(dsd(a.s).b.Qb());c.b.Rc();){b=c.b.Sc();this.bj(b.a)}} +function ncb(a){var b,c,d;for(c=new Frd(a.a);c.a36){return -1}if(a>=48&&a<48+$wnd.Math.min(b,10)){return a-48}if(a>=97&&a=65&&a=15){c=a.b.Nl();f=a.b.Xl().c;if(c==-1&&f==0){d=zc(a.k,a.b,17,(ld(),gd));e=zc(a.k,a.b,9,gd);if(d==6||e==6){return true}}}return false} +function xv(a,b){var c,d,e,f,g,h;e=yv(a,b);c=E2b(a,e);d=E2b(b,e);f=lad(c.Lh(),e.Lh());g=lad(d.Lh(),e.Lh());h=zv(g,-$wnd.Math.atan2(f.b,f.a));return $wnd.Math.atan2(h.b,h.a)} +function qx(a,b){var c;c=a.Je(b.Me(),b.Ne());c=c|a.ff(b.Re());c=c|a.hf(b.Oe());c=c|a.gf(b.Le());c=c|a.jf(b.Qe());c=c|a.lf(b.Te());c=c|a.kf(b.Se());c=c|zx(a,b.Pe());return c} +function PF(a,b){var c;c=new _td;if(sac(a.a[0],b.a[0])jBd?1:-1)} +function e8(a){var b,c,d;c=p9b;if(d8(c)){a.a+=' MJ';b=Und(c,'\\.',0);d=b[0]+(b[1].length==1?'0':'')+b[1]+(b[2].length==1?'0':'')+b[2];a.a+=d;a.a+=' '}} +function Szb(a){if(!a.a||!a.c){a.c=new Kgd;hg(a.c,nId);a.a=new Wl(new Cgd((dub(),Osb)),new Cgd((Ctb(),lsb)));Of(a.a,qId);og(a.a,new Wzb(a),(voc(),voc(),uoc));Uzb(a);Tzb(a)}} +function wAb(a,b){var c;zAb(a,(c=new zCb(new Srd((WAb(),vuc(quc(kQc,1),nyd,289,0,[VAb,TAb,UAb]))),new Srd(vuc(quc(g6c,1),eyd,2,6,[sId,vId,wId]))),new BCb(b,c,new aBb)),xId)} +function yAb(a,b){var c;zAb(a,(c=new zCb(new Srd((WAb(),vuc(quc(kQc,1),nyd,289,0,[VAb,TAb,UAb]))),new Srd(vuc(quc(g6c,1),eyd,2,6,[sId,vId,wId]))),new BCb(b,c,new aBb)),zId)} +function NSb(a,b){var c,d,e;e=new es;for(d=b.Qb();d.Rc();){c=d.Sc();Wr(e,$Sb(c[tDd]||c.name||c.tooltip,ls(nSb(c,(Kr(),Jr>=2))),OSb(a,c['structure']||c.structure)))}return e} +function lXb(a){var b,c,d;d=new es;Xr(d,a.c.Me());for(c=new Zqd(a.d.Me());c.b1){return ec()}e=1-a-c-d;if(e==1){return ec()}return dc(e)} +function _v(a){var b,c,d,e;for(c=new qsd(dsd(a.C.n).b.Qb());c.b.Rc();){b=c.b.Sc();b.um((aUb(),VTb))}for(e=new qsd(dsd(a.C.p).b.Qb());e.b.Rc();){d=e.b.Sc();Fl(d,(tUb(),rUb))}} +function UI(a){var b,c,d,e;d=a?6:5;e=suc(T1c,tBd,5,d,0,1);b=kBd/d;for(c=0;c0',wId]))),new BCb(b,c,new aBb)),yId)} +function OIb(a){MIb();var b,c,d,e;if(a!=null){for(c=vuc(quc(TSc,1),nyd,304,0,[LIb,KIb]),d=0,e=c.length;db){Xfd(a,a.b-1)}}} +function Jtd(){function b(){try{return (new Map).entries().next().done}catch(a){return false}} +if(typeof Map===byd&&Map.prototype.entries&&b()){return Map}else{return Ktd()}} +function GY(a,b,c,d,e){HX.call(this,a.c,d,e);this.i=b1b(a.b.Ji());this.n=a.b.Lh();this.p=a.b.Wm();this.c=b;this.j=c;this.a=a.a;this.t=a.b.Xm();this.o=a.b.Ym();this.r=a.b.Zm()} +function sZ(a,b){var c,d,e;c=sac(a.e.pi(a.d),a.e.qi(a.d));d=new qad(0,0);e=new qad(c,0);HHb(b,new tT((iU(),hU),1.5,true,'rgba(0,255,255, 0.5)'),vuc(quc(T1c,1),tBd,5,0,[d,e]))} +function F_(a,b,c){var d,e,f,g;if(!b||b.sd()){return a_(),_$}e=new es;for(g=b.Qb();g.Rc();){f=g.Sc();d=G_(a,f,c);e.a[e.a.length]=d}return new HS(ds(e,suc(nFc,nBd,106,0,0,1)))} +function G7(a,b){var c,d,e;if(0<=b&&b=d){e=Xnd(a.b,c,d);return Hnd(e,' ')?0:Xmd(bod(e),10)}return 0}throw I8c(new lmd((Cnd(),''+b)))} +function zab(a,b){var c,d,e;e=new yod;e.a+=' ';e.a+=xDd;e.a+='=(';nod(e,(Cnd(),''+b.vd()));for(d=b.Qb();d.Rc();){c=d.Sc();e.a+=' ';nod(e,''+(Q7(a.a,c)+1))}e.a+=')';return e.a} +function mzb(a){var b,c;c=Sgd(a.a,Rf(a.a).selectedIndex);b=Hnd((p$b(),o$b).b,c)||Hnd(m$b.b,c);rl(a.b,b);CEb(a.b).length==0&&b?HEb(a.b,'1'):CEb(a.b).length!=0&&!b&&HEb(a.b,'')} +function oDb(a,b){var c,d,e,f;f=new is;for(d=new Frd(a.c);d.a=0){e=Dnd(b.a,c);if(e==57){gmd(b,c--,48)}else{gmd(b,c,e+1&hyd);d=false}}if(d){b.a=b.a.substr(0,0)+'1'+b.a.substr(0);++a.b;++a.d}} +function Hl(a,b){var c,d;if(!(abd(),a.U)[mAd]!=b){c=(!a.d&&Cl(a,a.o),a.d.a^4);c&=-3;d=yl(a,c);Cl(a,d);a.U[mAd]=!b;if(b){Bl(a,(!a.d&&Cl(a,a.o),a.d))}else{vl(a);agc();Wdc(a.U)}}} +function eI(a){a.n=0;a.i=null;a.f=false;rud(a.a);rud(a.b);a.j=0;a.e=false;a.d=false;a.c=false;ex(Mu(a.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_])));a.o.i.w.Hf()} +function fN(a,b){var c,d,e,f;if(!uN(a.f.b)){return}e=new xT(true,'#00ee00');f=new vT(false,2,false,uBd);c=b.ce(uN(a.f.b));d=a.d;GHb(b.Kf(),c,d,false,e);GHb(b.Kf(),c,d,false,f)} +function zS(a){var b;if(a){b=new yod;nod(b,a.a);b.a+=' ';nod(b,ucc(a.b));if(a.d.a!=null){b.a+=' ';nod(b,bod(Snd(Oud(a.d,''),'\\s+',' ')));nod(b,CS(a.c))}return b.a}return null} +function iX(a,b,c){var d,e;if(!a){return b}if(!b){return a}d=a.f+a.e+c-b.f;e=(new qad(a.f+a.e/2,a.i+a.d/2)).b-(new qad(b.f+b.e/2,b.i+b.d/2)).b;b.f+=d;b.i+=e;return new hX(a,b)} +function wbb(a,b){this.b=a;if(b.a.length!=2){throw I8c(new bnd('only 2 atoms are expected'))}this.a=tbb(b.a[0],b.a[1]);if(!this.a){throw I8c(new bnd('source cannot be null'))}} +function Kyb(a,b,c,d){var e,f,g;e=new ped;jjc((abd(),e.U),b);f=d.c.rows.length;Ffd(d,f,0,e);Ffd(d,f,1,Ryb((g=new gs(c.Mk()),Wr(g,c.i),ds(g,suc(D3c,_Hd,21,0,0,1)))));ptd(a.d,c)} +function _Bb(a){this.a=a;this.b=edc(ds(a,suc(tWc,zBd,49,0,0,1)));this.d=fdc(hdc(ds(a,suc(tWc,zBd,49,0,0,1))));this.c=a.a.length==1?idc(a.a[0]):ddc(ds(a,suc(tWc,zBd,49,0,0,1)))} +function cJb(a,b,c){var d,e,f;f=false;if(c){for(e=new iud(new gud(a.a));e.b!=e.c.a.b;){d=hud(e);pvc(d.d)===pvc(b)&&(f=true);f&&(d.e.b=true,undefined)}}else{Xtd(a.a,b).b=false}} +function kPb(a){var b;b={};ZOb(b,a.o);$Ob(b,a.p);cPb(b,a.s);bPb(b,a.r);gPb(b,fc(a.n));iPb(b,a.u);hPb(b,a.t);aPb(b,a.e);ePb(b,fc(a.j));_Ob(b,a.q);fPb(b,a.k);dPb(b,a.i);return b} +function Tic(a,b){var c,d;b=ojc(b);d=a.className||'';c=mjc(d,b);if(c==-1){d.length>0?(a.className=d+' '+b||'',undefined):(a.className=b||'',undefined);return true}return false} +function ixd(a,b,c,d){while(a.n!=0&&d>0){hxd(a,b[c]);++c;--d}while(d>a.k.length){lxd(a,b,c);c+=a.k.length;d-=a.k.length;a.j=J8c(a.j,a.k.length)}while(d>0){hxd(a,b[c]);++c;--d}} +function H_(a,b,c){var d,e,f;if(kvc(b,100)){d=eT(c.j,b);return v$(d,a.a)}else if(kvc(b,168)){e=b;d=eT(c.j,e);return f=new es,h$(d,f),Wr(f,L$(e$(d.o),null)),IS(f)}return a_(),_$} +function rnb(a,b,c,d){bcb(a,NGd,qnb('Expand and Clean',(qtb(),_rb),d,new qqb(b,c.a,true)));bcb(a,OGd,qnb('Ungroup and Clean',(cub(),Nsb),d,c.a?new qqb(b,c.a,false):new Gqb(b)))} +function oxb(a){var b,c;a.a=new Bm;zm(a.a,'Error');if(a.c!=null){b=new Jed(a.c);kg((abd(),b.U),'mjs-errorpanel',true);Ced(b,rxb(a.b));Cg(a.a,b)}else{Cg(a.a,(c=new red(a.b),c))}} +function pzb(b){var c,d,e;d=null;e=Sgd(b.a,Rf(b.a).selectedIndex);try{c=k$b(e);!!c&&(d=new i$b(c,ozb(b)))}catch(a){a=H8c(a);if(kvc(a,20)){return null}else throw I8c(a)}return d} +function CTb(a,b){rTb(a,b);b.lp((kcc(),Nbc))&&jTb(a,b.np(Nbc));b.lp($bc)&&kTb(a,b.np($bc).a);b.lp(acc)&&nTb(a,b.np(acc));b.lp(dcc)&&ATb(a,b.np(dcc));b.lp(ccc)&&BTb(a,b.np(ccc))} +function igd(a,b,c){var d,e;b=$wnd.Math.max(b,1);e=a.a.childNodes.length;if(eb){for(d=e;d>b;d--){Qic(a.a,a.a.lastChild)}}} +function Uid(a,b){var c;Rid(a,b);c=$pc(a,mnd(b));if(!!c&&c.a){return false}Wid(a.b,false);if(b==-1){a.b=null;return true}a.b=to(a.a,b+1);Wid(a.b,true);kqc(a,mnd(b));return true} +function $g(a,b){(abd(),a.U).style[nzd]=ozd;!!a.A&&(a.A.style[nzd]=ozd,undefined);a.Zb();b.ec($ic(a.U,_yd),$ic(a.U,$yd));a.U.style[nzd]=tzd;!!a.A&&(a.A.style[nzd]=tzd,undefined)} +function VO(a,b){if(!a.a){return 0}if(a.a.Sl()==0&&b.Sl()==0){return WO(a)}if(a.a.Sl()>0&&b.Sl()!=a.a.Sl()){return a.a.Sl()}if(b.Sl()>0&&b.Sl()!=a.a.Sl()){return b.Sl()}return 0} +function l3(c,d){var e;try{return c.b.Hd(d)}catch(b){b=H8c(b);if(kvc(b,46)){e=b;try{return c.a.Hd(d)}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}throw I8c(e)}else throw I8c(b)}} +function n3(c,d){var e;try{return aeb(c.b,d)}catch(b){b=H8c(b);if(kvc(b,46)){e=b;try{return i6(c.a,d)}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}throw I8c(e)}else throw I8c(b)}} +function cgb(a){var b,c,d,e,f;e=new es;if(a!=null){f=Und(a,',',0);b=a.charCodeAt(0)==48?1:0;for(d=b;d=900?'warn':d>=800?'info':'log');Ewd(c,a.b)} +function m9c(){l9c={};!Array.isArray&&(Array.isArray=function(a){return Object.prototype.toString.call(a)===$xd});function b(){return (new Date).getTime()} +!Date.now&&(Date.now=b)} +function Nv(a){var b,c,d,e,f;b=false;for(d=(Lz(),vuc(quc(oAc,1),nyd,217,0,[Iz,Jz,Hz,Kz])),e=0,f=d.length;e0){return lgb(a,g.a.substr(1))}return null} +function NFb(a,b){this.d=new wFb;this.a=new WFb;this.j=new QFb(new Srd((MIb(),vuc(quc(TSc,1),nyd,304,0,[LIb,KIb]))));this.b=new BHb(b);sFb(this.d,new PFb(this));this.c=a;LFb(this)} +function kKb(a,b){if(Hnd(jJd,b)){return a.d}else if(Hnd(kJd,b)){return a.c}else if(Hnd(yHd,b)){return a.f}else if(Hnd(xHd,b)){return a.a}else if(Hnd(zHd,b)){return a.e}return null} +function RVb(a,b){var c,d,e,f,g,h,j;j=new std;for(d=(h=(new ard(a.i.a)).a.mp().Qb(),new brd(h));d.a.Rc();){c=(f=d.a.Sc(),f.yp());e=Eqd(b.b,c);!!e&&(g=j.a.pp(e,j),g==null)}return j} +function b5b(a,b){var c,d,e;e=a.c.a;for(d=new qsd(b.b.Qb());d.b.Rc();){c=d.b.Sc();if(Ex(c,E5b(e))&&c!=e){c.Ze(dsd(e.r),dsd(e.s));c.Ye((Xrd(),Xrd(),Urd));c.$e(dsd(e.u));c.Ee(a.c)}}} +function hpd(a,b){this.e=a;if(O8c(K8c(b,-4294967296),0)){this.d=1;this.a=vuc(quc(uvc,1),jyd,23,15,[d9c(b)])}else{this.d=2;this.a=vuc(quc(uvc,1),jyd,23,15,[d9c(b),d9c($8c(b,32))])}} +function Cpd(a){var b,c,d;if(L8c(a,0)>=0){c=N8c(a,_Kd);d=U8c(a,_Kd)}else{b=_8c(a,1);c=N8c(b,500000000);d=U8c(b,500000000);d=J8c(Z8c(d,1),K8c(a,1))}return Y8c(Z8c(d,32),K8c(c,SLd))} +function F1(){C1();var a,b,c,d,e;if(A1==null){e=new es;for(b=J1(),c=0,d=b.length;c\'"]');K9c=new RegExp('&','g');L9c=new RegExp('>','g');N9c=new RegExp('<','g');P9c=new RegExp("'",'g');O9c=new RegExp('"','g')} +function god(a,b){Cnd();var c,d,e,f;f=new bvd(a);for(d=0,e=b.length;d0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))){c=J7b(new N7b(false),a);B$b(b,tD(Uac(Zac(c.d))));B$b(b,tD(Uac(Zac(c.c))))}return b.a} +function CV(a,b,c,d,e,f){var g,h,j;h=new _W((dX(),bX));if(d){g=vV(a,b,c,e,f);VW(h,g)}UW(h,IV(e,xV(a,new jX((HU(),CU),true),(j=qV(c),j.a.length==0?null:'('+fod(',',j)+')'))));return h} +function Gdb(){this.n=new is;this.p=new is;this.w=new is;this.v=new is;this.r=new is;this.o=new is;this.q=new is;this.k=new is;this.t=new is;this.u=new is;this.s=new is;this.A=new is} +function orb(a){var b,c,d,e,f;f=Vw(a.b);for(c=new qsd(dsd(f.n).b.Qb());c.b.Rc();){b=c.b.Sc();b.um((aUb(),VTb))}for(e=new qsd(dsd(f.p).b.Qb());e.b.Rc();){d=e.b.Sc();Fl(d,(tUb(),rUb))}} +function kdc(a){var b,c,d,e;d=new ltd;for(c=new qsd(dsd(a.a.p).b.Qb());c.b.Rc();){b=c.b.Sc();jdc(d,new Tac(b.c.Lh(),b.c.Ki()),new Tac(b.d.Lh(),b.d.Ki()))}e=mdc(d);return e!=0?LBd/e:1} +function zCb(a,b){var c,d,e;this.b=new Wgd;this.a=new es;Xr(this.a,a);Wr(this.a,null);c=0;for(e=b.Qb();e.Rc();){d=e.Sc();Lgd(this.b,d);++c}Lgd(this.b,'');hg(this.b,$Hd);Ugd(this.b,c)} +function iIb(a){var b,c,d,e;for(d=(e=(new ard(a.a.a)).a.mp().Qb(),new brd(e));d.a.Rc();){c=(b=d.a.Sc(),b.yp());(!c.C||dsd(c.C.n).b.vd()==0)&&IJb(c.a.j,null);Ov(c,(Lz(),Iz));c.w.Hf()}} +function a2b(a){X1b();var b,c,d,e;if(a==null){return U1b}for(c=vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b]),d=0,e=c.length;d>5;a.d-=d;if(!xpd(a.a,a.d,a.a,d,b&31)&&e<0){for(c=0;cc;f--){a[f]|=b[f-c-1]>>>g;a[f-1]=b[f-c-1]<4||c==50?(d=4-e):(d=e%2);return dc(d)} +function ub(a,b,c,d){var e,f;owd(nb,(Uvd(),Svd))&&lwd(nb,'SetValenceOfNWithDoubleBondO method called.');f=d.b?5:3;if(a==2){e=b+c==4||b+c==f?0:f-b-c;return dc(e)}else{return dc(f-b-c)}} +function HE(a){var b,c,d;b=MWb();wVb(b,PVb(a.a));JE(a.a,b);d=new Frd(cWb(a.a));c=new Frd(cWb(b));while(d.af&&Vnd(l,_nd(c[h],xud))){e=h;f=j}}e>=0&&(d[0]=b+f);return e} +function Uud(){Uud=p9c;var a,b,c,d;Rud=suc(tvc,fyd,23,25,15,1);Sud=suc(tvc,fyd,23,33,15,1);d=1.52587890625E-5;for(b=32;b>=0;b--){Sud[b]=d;d*=0.5}c=1;for(a=24;a>=0;a--){Rud[a]=c;c*=0.5}} +function Px(a){var b,c,d,e;for(c=new Frd(a.r);c.a1&&!dsd(a.u).a.sd()){d=new utd(dsd(a.r));for(c=new qsd(dsd(a.u).b.Qb());c.b.Rc();){b=c.b.Sc();rtd(d,b.b)}if(d.a.vd()>1){return d}}return null} +function by(a){kx(this);Xr(this.r,a.Me());Xr(this.s,a.Ne());Xr(this.A,a.Re());Xr(this.t,a.Oe());Xr(this.q,a.Le());Xr(this.w,a.Qe());Xr(this.C,a.Te());Xr(this.B,a.Se());Xr(this.u,a.Pe())} +function ZL(a,b){var c,d;for(d=new qsd(dsd(a.o.i.C.n).b.Qb());d.b.Rc();){c=d.b.Sc();Ytd((!b.b&&(b.b=new _td),b.b),c,new Tac(c.Lh(),c.Ki()))}En(b,uac((!b.b&&(b.b=new _td),new drd(b.b))))} +function nW(a,b){var c,d,e;if(!a.b||!Wtd(a.a,b)){return Xrd(),Xrd(),Urd}e=new es;for(d=new Frd(a.b);d.a0&&Hld(a.a)){d=kld(new lld(uld(a.a)),b);if(d){e=Dld(d.a);if(e!=null&&bod(e).length>0){Nkd(d,e+' '+c);chb(Pkd(Fld(a.a)),b,c)}}}} +function rub(a){if(!('console' in window)){var b=function(){};window.console={log:b,info:b,warn:b,error:b,assert:b,trace:b,time:b,timeEnd:b}}console.log('[marvin UncaughtException]:'+a)} +function PBb(a){var b,c,d,e;if(!a){return null}b=new yod;for(d=a.Qb();d.Rc();){c=d.Sc();e=jzb(c);b.a+=',';nod(b,(i1b(),e>0&&e<=126?h1b[e-1].c:null))}return b.a.length>0?b.a.substr(1):''} +function gFb(a){var b,c,d,e,f;if(a!=null){f=Und(bod((Cnd(),a==null?iyd:s9c(a))),',',0);b=new yod;for(d=0,e=f.length;d=0&&Hnd(a.substr(b,'GMT'.length),'GMT')){c[0]=b+3;return zrc(a,c,d)}if(b>=0&&Hnd(a.substr(b,'UTC'.length),'UTC')){c[0]=b+3;return zrc(a,c,d)}return zrc(a,c,d)} +function Cd(a,b){var c,d,e,f;f=new Ce(a);e=new Ed(b);(Sfd(),abd(),a.U).tabIndex=-1;Be(f,b);d=(c=new Fd(f),c);return new Yld(vuc(quc(w5c,1),Iyd,293,0,[b.cb(d),og(a,e,(voc(),voc(),uoc))]))} +function Pe(b){var c,d,e;for(d=new Frd(b);d.a=rac(e.a,e.b,0,f.a,f.b,0)?d:e} +function lbc(a,b){abc();var c,d,e,f;c=$wnd.Math.min(a.b.a,b.b.a);e=$wnd.Math.min(a.b.b,b.b.b);d=$wnd.Math.max(a.b.a+a.c,b.b.a+b.c);f=$wnd.Math.max(a.b.b+a.a,b.b.b+b.a);return jbc(c,e,d,f)} +function ovd(a,b,c,d){var e,f;f=b;e=f.d==null||a.a.Wg(c.d,f.d)>0?1:0;while(f.a[e]!=c){f=f.a[e];e=a.a.Wg(c.d,f.d)>0?1:0}f.a[e]=d;d.b=c.b;d.a[0]=c.a[0];d.a[1]=c.a[1];c.a[0]=null;c.a[1]=null} +function Dp(a){var b,c;c=a.c.a.length;a.b=new $fd(c,3);Of(a.b,(Up(),'mjs-obf-F'));for(b=0;b'+Yic(Wdd(a.a.o))+Uyd);Xdd(xl(a.a),Tyd+b+';">'+Yic(Wdd(xl(a.a)))+Uyd)}else{Rnd(Yic(Wdd(a.a.o)),c,b);Rnd(Yic(Wdd(xl(a.a))),c,b)}}} +function tE(a,b){var c,d,e,f,g;this.c=new ltd;this.a=a;this.b=b;for(d=(O$b(),vuc(quc(VWc,1),nyd,311,0,[M$b,L$b,N$b,K$b])),e=0,f=d.length;ea.c.a?(c=a.c.a):(c=b.c.a);b.c.b>a.c.b?(d=a.c.b):(d=b.c.b);a.b=new ibc(new qad(c,d),$wnd.Math.abs(b.c.a-a.c.a),$wnd.Math.abs(b.c.b-a.c.b));kI(a,a.b);a.o.i.w.Hf()} +function Aab(a,b){var c,d,e;e=new yod;if(!b.sd()){e.a+=' ';e.a+='XBONDS';e.a+='=(';nod(e,(Cnd(),''+b.vd()));for(d=b.Qb();d.Rc();){c=d.Sc();e.a+=' ';nod(e,''+(Y7(a.b,c)+1))}e.a+=')'}return e.a} +function Uzb(b){var c,d;if(!b.d&&!!b.f){Ul(b.a,(qmd(),false));d=Eqd(b.f,b.b);c=null;if(d!=null){try{c=mnd(Xmd(d,10))}catch(a){a=H8c(a);if(kvc(a,65)){c=null}else throw I8c(a)}}!!c&&IEb(b.c,c)}} +function uEb(a,b,c){var d,e,f,g,h;g=new UEb;f=b!=0?(Cnd(),'R'+(''+b)):'R';TEb(g,Rf(new red(f)));h=Rf(new kjd);d=(abd(),tkc($doc));TEb(g,h);TEb(g,d);Lic(a.f,g.a);e=new PEb(a,b,c,h,d);Wr(a.c,e)} +function ZVb(a,b,c){var d,e,f,g;if(hs(a.n,b)!=-1&&hs(a.n,c)!=-1){for(e=new qsd(dsd(a.p).b.Qb());e.b.Rc();){d=e.b.Sc();f=d.c;g=d.d;if((T(b,f)||T(c,f))&&(T(b,g)||T(c,g))){return d}}}return null} +function w2b(a,b){uTb.call(this);this.i=(aUb(),VTb);this.a=new es;i1b();if(!(a>0&&a<=126)){throw I8c(new bnd('There is no element in the periodic table with this index:'+a))}this.b=a;this.e=b} +function _5b(a){var b,c,d,e,f;c=Y5b(a);if(!c.sd()){f=a.b.a.length;for(d=0;d=gyd){b=55296+(a-gyd>>10&1023)&hyd;c=56320+(a-gyd&1023)&hyd;return String.fromCharCode(b)+(''+String.fromCharCode(c))}else{return String.fromCharCode(a&hyd)}} +function Ei(a,b){var c,d;if(!a){return null}d=null;(Os(),Ns)&&!!a&&(d=Fi(a,b));!!a&&(c=$wnd.navigator.platform,!(c.indexOf('iPad')!=-1||c.indexOf(Ozd)!=-1))&&(d=Wi(d,Di(a,new Qi(b))));return d} +function gC(a,b,c){var d,e,f,g,h,j;f=new By;for(e=c.Qb();e.Rc();){d=e.Sc();g=Ey(d);for(j=new Frd(cVb(Bdb(a.e,g)));j.a1&&bO(Dnd(a,a.length-1))?ivc(Dnd(a,a.length-1))+Xnd(a,0,a.length-1):a;switch(b){case '+':return 1;case '-':return -1;case '':return 0;default:return Xmd(b,10);}} +function nU(a,b,c){var d,e,f,g,h;if(a.b.length!=0){g=Und(a.b,oyd,0);d=mU(a,g);h=lU(d).c;f=new o0((pR(),nR),(NT(),ET));for(e=0;e0){return '0:N'+e.a}return null} +function UBb(a,b,c,d){var e,f;e=WBb(a,d);if(e.d.c+e.e.b!=0){if((Kbc(),Jbc)==c||Ibc==c||a.b==c&&!Cqd(e,(kcc(),jcc))){return new rB(b,a.a,e)}else{f=bCb(c,e);return new QA(b,f,a.a,e)}}return null} +function KPb(a,b,c,d){var e,f;e=new Df;if(Ikb(a.b)!=null){a.a.pl(Ikb(a.b)).ol((f={'structure':b,'parameters':c},d&&(f.inputFormat=d),JSON.stringify(f)),new OPb(e));return new pf(e)}return null} +function xrc(a,b){var c,d,e;e=0;d=b[0];if(d>=a.length){return -1}c=a.charCodeAt(d);while(c>=48&&c<=57){e=e*10+(c-48);++d;if(d>=a.length){break}c=a.charCodeAt(d)}d>b[0]?(b[0]=d):(e=-1);return e} +function Bbd(a,b){var c,d,e,f,g;if(!!wbd&&!!a&&pqc(a,wbd)){c=xbd.a;d=xbd.b;e=xbd.c;f=xbd.d;ybd(xbd);Vo(xbd,b);oqc(a,xbd);g=!(xbd.a&&!xbd.b);xbd.a=c;xbd.b=d;xbd.c=e;xbd.d=f;return g}return true} +function dV(a,b,c,d,e,f){this.i=b;this.a=a;this.e=c.ce(a.Lh());this.b=tV(c,d,f,a,eV(this.e,Osd(b.b,b.a.a.j).Fh().Bh(a.Hl()),c.Yd()));this.j=f.u;this.d=f.r;this.f=f.t;this.n=c.Yd();this.c=e.pe()} +function $7(a,b,c){var d;d=Eqd(a.a,b);if(d==null){d=suc(g6c,eyd,2,2,6,1);d[0]=V7(a.b,c.c);d[1]=V7(a.b,c.d);Hqd(a.a,b,d)}else{Hnd('0',d[0])&&(d[0]=V7(a.b,c.c));Hnd('0',d[1])&&(d[1]=V7(a.b,c.d))}} +function Bub(a){var b,c,d,e,f,g,h,j;for(c=E3b(),d=0,e=c.length;d0&&nX(this,d,false)} +function uZ(a,b,c,d,e){var f,g;g=2.8*((s6b(),q6b)==a.d.w.a||o6b==a.d.w.a?0.6:m6b==a.d.w.a?1.5:1);f=wZ(e,g);HHb(b,f,vuc(quc(T1c,1),tBd,5,0,[c,d]));HHb(b,vZ(a,f,c,d),vuc(quc(T1c,1),tBd,5,0,[c,d]))} +function o4(a){var b,c,d;if(a.a.a.length>0&&x9c(m4,a.a.a)){d=a.a.a.indexOf('=');if(d!=-1){b=hmd(a.a,d);c=d+1}else{b=a.a.a;c=a.a.a.length}wod(a.a,0,c);return new C4(bod(b),bod(p4(a)))}return null} +function J9(a,b,c,d,e){var f,g,h,j,l;l=0;j=e.vd();while(j>0){g=$wnd.Math.min(j,15);j=j-g;X9(c,a);a.a+=''+d;nod(a,W8(g));for(h=0;h0&&dsd(e.k).b.vd()==1&&Q0b(dsd(e.k).a.zd(0))){if(!dsd(d.n).a.sd()&&!dsd(d.k).a.sd()){c=uD(d);zVb(d,c)}}return d} +function E3b(){B3b();return vuc(quc(uXc,1),MId,57,0,[c3b,d3b,f3b,e3b,A3b,U2b,V2b,i3b,j3b,a3b,b3b,$2b,_2b,W2b,X2b,s3b,t3b,Y2b,Z2b,m3b,n3b,k3b,l3b,g3b,h3b,q3b,r3b,o3b,p3b,w3b,x3b,u3b,v3b,y3b,z3b])} +function n5b(a){var b,c,d,e,f,g;f=new gs(a.c);e=new gs(a.c);Xrd();bs(e,a.a);d=new es;for(c=new Frd(e);c.a0)){return Xrd(),Xrd(),Wrd}d=_J(a);for(c=a.a.Oe().Qb();c.Rc();){b=c.Sc();T(b.c.Bm(),a.a)&&rtd(d,mnd((JTb(),HTb)==b.e.a?b.b:b.b<0?b.b:b.b/2|0))}return d} +function iQ(a,b,c){dH.call(this,a);this.d=new uP(a.i,c);this.e=new aQ(b);this.a=new JP(this.o,this.e,this.d);this.b=new PP(this.o,this.e,this.d);this.c=new BP(this.o,this.e,this.d);bH(this,this.c)} +function Kzb(a){var b,c,d,e,f;f=Sgd(a.b,Rf(a.b).selectedIndex);for(c=(X1b(),vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b])),d=0,e=c.length;d>22-b;e=a.h<>22-b}else if(b<44){c=0;d=a.l<>44-b}else{c=0;d=0;e=a.l<>>e|c[g+d+1]<>>e;++g}return f} +function rC(a){var b,c,d,e,f,g;for(g=(e=(new ard(a.j)).a.mp().Qb(),new brd(e));g.a.Rc();){f=(b=g.a.Sc(),b.yp());tWb(a.e,f)}for(d=new qsd(dsd(a.e.v).b.Qb());d.b.Rc();){c=d.b.Sc();ty(c,new ard(a.j))}} +function r5(a){var b,c;if(a.e){if(Hnd('MRV_IMPLICIT_H',a.e.b)){c=(!a.d&&(a.d=new b5),a.d).a;b=new RegExp('^IMPL_H[1-9]$');if(c!=null&&b.test(c)){return mnd(Xmd(Tnd(c,'IMPL_H',''),10))}}}return null} +function V8(a){var b,c,d;if(a.length==3){return a}b=new yod;b.a+=''+a;d=$wnd.Math.max(0,3-a.length);c=suc(svc,fyd,23,d,15,1);Jrd(c,c.length,32);b.a+=(Cnd(),kod(c,0,c.length));return b.a.substr(0,3)} +function z9(a,b,c){var d,e,f,g;if(c.a.length!=0){d=c.a.length;f=new Frd(c);while(d>0){a.a+=b;g=$wnd.Math.min(8,d);nod(a,W8(g));for(e=0;eh){j=h;g=c}}return g} +function Uyb(a,b,c){this.d=new jud;this.j=new ltd;if(!a){throw I8c(new bnd('Type must not be null, and properties must not be null or empty if type is VARIOUS'))}this.n=a;this.i=c;this.c=b;Nyb(this)} +function iBb(b,c,d){var e,f,g;e=oBb(d,mnd(0));g=new tCb(c,e);if(ZBb(b.a,c)){try{g=new uCb(c,GCb(e,VBb(b.a,c)),e)}catch(a){a=H8c(a);if(!kvc(a,268))throw I8c(a)}}f=oCb(g)||$Bb(b.a,g.d);g.b=!f;return g} +function tcc(){tcc=p9c;scc=new is;rcc=wcc(null,false);wcc('=',true);wcc('<>',true);wcc('<',true);wcc('<=',true);wcc('>',true);wcc('>=',true);wcc('between',true);wcc('like',true);wcc('contains',true)} +function oqc(b,c){var d,e;!c.e||c.Xd();e=c.f;Fl(c,b.b);try{vqc(b.a,c,null)}catch(a){a=H8c(a);if(kvc(a,274)){d=a;throw I8c(new Lqc(d.a))}else throw I8c(a)}finally{e==null?(c.e=true,c.f=null):(c.f=e)}} +function Dsc(){Bsc();return vuc(quc(i1c,1),nyd,70,0,[esc,msc,Trc,Urc,Vrc,Wrc,nsc,osc,psc,qsc,Xrc,Yrc,Zrc,$rc,_rc,csc,dsc,asc,bsc,fsc,gsc,hsc,isc,jsc,ksc,lsc,rsc,ssc,tsc,usc,vsc,wsc,xsc,ysc,zsc,Asc])} +function y$(a,b){var c,d;c=a.e.a.length%2==0?'rgba(70,130,180, 0.3)':'rgba(255,0,0, 0.3)';d=u$(a,b,c);!!a.c&&rS(a.c,b);if(a.d){d&&b.sf(e$(a.o),a.n,a.j,new vT(true,3,true,c));b.sf(e$(a.o),a.n,a.j,r$)}} +function jcb(a,b,c){var d;if(a.b.a.length==0||c>=Yr(a.b,a.b.a.length-1).a){Wr(a.a,b);Wr(a.b,mnd(c))}else{d=a.b.a.length-1;while(d>=0){if(c=0){return a.d.a.c.b}c=(Xrd(),Xrd(),Urd);d=(null,Urd);if(0==b){c=yL(a);d=rL(a,zL(a))}else if(1==b){c=zL(a);d=sL(a,yL(a))}d.Fd(null);e=vL(c,d);return e?e.a:xL(d)} +function c4(a){var b,c,d;c=b4(a);d=vuc(quc(uvc,1),jyd,23,15,[0,1,4,8,12,-1]);for(b=0;b0)&&IEb(a.d,b)}} +function dUb(a){aUb();var b,c,d,e;if(a==null){return VTb}for(c=vuc(quc(pWc,1),nyd,201,0,[ZTb,_Tb,XTb,YTb,WTb,UTb,$Tb,VTb]),d=0,e=c.length;df)&&(d=f);if(d==f){Fjc(h,g,null)}else{e=h.options[d];Fjc(h,g,e)}} +function $b(a,b){var c,d,e,f,g;g=a.k;c=a.b;for(d=0;d111){return true}for(e=0;eOH/2&&b=0;d--){if(a[d]!==e[d]){c=a[d]!=0&&Q8c(K8c(a[d],SLd),K8c(e[d],SLd));break}}}g=new gpd(1,f+1,a);c&&dqd(g,b);Qod(g);return g} +function Atd(a,b,c){var d,e,f,g;g=b==null?0:a.b.tp(b);e=(d=a.a.get(g),d==null?new Array:d);if(e.length==0){a.a.set(g,e)}else{f=xtd(a,b,e);if(f){return f.zp(c)}}e[e.length]=new grd(b,c);++a.c;return null} +function fb(a,b,c){var d,e,f;owd(db,(Uvd(),Svd))&&lwd(db,'Checking valence for the Boron.');d=(b>0?(f=b):b<0?(f=$wnd.Math.abs(b)-2):(f=0),f);if(d>3){return ec()}if(c>3){return ec()}e=3-a-d-c;return dc(e)} +function pe(a,b){me(a,b.a?b.a.c.fb(Lyd):null);fg(a,b.a?b.a.c.fb(Cyd):null);le(a,b.a?b.a.c.fb(Fyd):null);ie(a,b.a?b.a.c.fb(Byd):null);oe(a,b.a?b.a.c.fb(Nyd):null,null);ne(a,b.a?b.a.c.fb(Oyd):null);ke(a,b)} +function uh(a,b,c){var d,e;if(c<0||c>a.b.a.length){throw I8c(new kmd)}Vr(a.b,c,b);e=0;for(d=0;d>>b;e=a.m>>b|c<<22-b;d=a.l>>b|a.m<<22-b}else if(b<44){f=0;e=c>>>b-22;d=a.m>>b-22|a.h<<44-b}else{f=0;e=0;d=c>>>b-44}return Auc(d&XKd,e&XKd,f&YKd)} +function u6(a){if(a.length==0){throw I8c(new bnd(MDd+a))}return i1b(),m1b(a,false)||o1b(a,false)||Hnd(a,'R#')||Hnd(a,'L')||Hnd(a,'*')||p1b(a)!=-1?jUb(a):(eTb(),Y_b(),Gqd(X_b,a)?new E1b($_b(a)):new G1b(a))} +function Bfb(a,b){var c,d,e,f,g;if(a.Wo()){g=a.To();for(c=0;c=0||c.b-c.d>=0)&&Lv(a,rIb(a.a,new hbc(c.c,c.d,c.a-c.c,c.b-c.d)))} +function sC(a,b){var c,d,e,f;f=cVb(Bdb(a.e,x$b(new F$b,b).a));e=new es;for(d=new Frd(f);d.a=2147483648&&(c-=4294967296);return c} +function XF(a,b){var c;c=false;if(a.a){QF(a);a.a=null;a.c=null;c=true}if(Os(),Ns){bG(a);return c}if(!c&&!!a.b.c){Vz(a.b.c,bbc(a.b.c.b,b));a.n.w.Hf()}if(!c&&!!a.b.d){Vz(a.b.d,bbc(a.b.d.b,b));a.n.w.Hf()}return c} +function jV(a,b){var c,d,e;iV(this);e=new es;for(d=new Frd(a.e);d.a1&&(b=T1(a,(O$b(),K$b)),b==null||(e4b(),d4b)==i4b(b))){return x9c(new RegExp('^1-([2-9]|[1-9]\\d{1,2})$'),T1(a,(O$b(),N$b)))}return false} +function oi(b){var c,d,e;try{e=hvc(ci(new ei(new gi(b))));d=suc(j6c,lyd,50,e.length,0,1);for(c=0;c>1);Ord(b,a,j,l,-e,f);Ord(b,a,l,h,-e,f);if(f.Wg(a[l-1],a[l])<=0){while(c0&&(b=b.substring(c+'base64,'.length));e.nl(b)}}(f,g);h.readAsDataURL(f)}} +function Ked(a){var b;this.a=a;Gg.call(this,(abd(),rkc($doc)));b=this.U;b['href']='javascript:void(0);';b.style[pLd]='block';this.Q==-1?obd(this.U,1|(this.U.__eventBits||0)):(this.Q|=1);this.U.className='header'} +function wxd(a,b){var c=[];for(i=0;i=a&&Object.prototype.toString.apply(b[e])===$xd){c.push(b[e])}else{var f=[];for(i=e;id.b.a&&c.b>d.b.b&&c.a=0&&b.a<255){return ''+b}}return uId} +function yPb(a){var b,c,d,e,f,g;g=[];for(f=new kt((new jt(a.categories)).a);f.b0&&a.Mb(b);a.Db();a.Kb();Xpc(a,true)} +function qM(a){jM();$G.call(this,a);this.j=new vT(false,2,false,_Bd);this.i=new vT(false,1,false,_Bd);this.c=new xT(true,_Bd);this.k=new vT(false,4,false,aCd);this.b=new vT(false,4,false,'firebrick');this.d=new fM} +function UP(a){var b,c,d,e,f,g;g=new es;c=a.d.Me();for(f=0;f0&&e<=2){d=new y2b((WZb(),UXb));pTb(d,H9b(b.Lh(),false,K9b(b),LBd));Wr(g,vuc(quc(tWc,1),zBd,49,0,[b,d]))}}return g} +function sV(a,b,c){var d,e,f,g,h;f=new V9b;Q9b(f,b);for(h=new Frd(a);h.a0&&Ii(a.b,$wnd.Math.max(5,16-(Ohc()-c.a)))} +function _9c(b){var c;if(Hnd('',s9c(b))){return null}try{return mnd(qvc(rnd($sc((Qsc(),!Psc&&(Psc=new itc(irc())),Qsc(),Psc),s9c(b)))))}catch(a){a=H8c(a);if(kvc(a,65)){c=a;throw I8c(new vqd(c.i))}else throw I8c(a)}} +function Fjd(a,b,c){var d,e,f;if(c<0||c>a.c){throw I8c(new kmd)}if(a.c==a.a.length){f=suc(R4c,_Hd,29,a.a.length*2,0,1);for(e=0;ec;--d){a.a[d]=a.a[d-1]}a.a[c]=b} +function kC(a,b){var c,d,e,f,g,h;e=b.a.a;g=new es;for(d=(h=(new ard(e.a)).a.mp().Qb(),new brd(h));d.a.Rc();){c=(f=d.a.Sc(),f.yp());Cqd(a.a,c)?qtd(b.a.a,Eqd(a.a,c))||Wr(g,Eqd(a.a,c)):(g.a[g.a.length]=c,true)}return g} +function lC(a,b){var c,d,e,f,g;a.k=new es;f=new _td;for(d=new Vqd((new Sqd(b)).a);d.b;){c=Uqd(d);g=c.Ok();e=c.yp();if(kvc(g,167)){if(PB(g)2&&b<13||b<1){throw I8c(new bnd('Element with atom num:'+a+' is not in a Main Group Of Elements (This is a metal or pseudo element)'))}return b-10} +function M5b(a,b){var c,d,e,f,g,h;g=new Tac((f=E5b(a),f?f.Lh():new pad),(e=E5b(a),e?e.Ki():0));h=new Tac(lad(b.a,g.a),b.b-g.b);for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){c=d.b.Sc();c.lm(Qac(new Tac(c.Lh(),c.Ki()),h))}} +function J9b(a,b,c){var d,e,f,g,h;g=new es;d=B9b(c);for(f=new Frd(N9b(b,d.a,d.b));f.a=0;f--){h=Pod(g);Kpd(h,c);g=$od(g,h);if((e.a[f>>5]&1<<(f&31))!=0){g=$od(g,d);Kpd(g,c)}}Kpd(g,c);return g} +function OO(a,b){var c,d,e,f;d=lad(gw(a.o.i,b),gw(a.o.i,a.b));e=jw(a.o.i,kH(a.a.c.gn(),a.c?d:new qad(0,0)));f=jw(a.o.i,kH(a.a.a.gn(),a.c?new qad(0,0):d));c=$wnd.Math.abs(hw(a.o.i,LBd));return rac(e.a,e.b,0,f.a,f.b,0)>c} +function NU(a){var b,c,d,e,f;if(a==null){return null}f=Und(a.toLowerCase(),' ',0);for(d=0,e=f.length;da.d*2&&(a.d=(a.c+1)/2|0);if((RTb(),MTb)==b){c=a.d++}else if(NTb==b){a.c%2==0&&(a.c=a.d*2);c=a.c++}return c} +function pXb(a,b,c){var d;this.e=c?(RTb(),MTb):(RTb(),NTb);this.c=a;this.d=b;sac(this.c.Bm().Lh(),jXb(this))<3.08&&(this.f=0.75,vTb(this));if(a.Dm()){this.b=-100}else if(!c){d=a.Bm().Xl();(X1b(),U1b)==d||(this.b=-d.c)}} +function xwd(a,b,c,d,e,f){var g,h,j,l,m;if(pvc(a)===pvc(c)){a=a.slice(b,b+e);b=0}j=c;for(h=b,l=b+e;hMarvin<\/font> JS<\/font><\/b>'));qwb=Qrc((Bsc(),$rc));pwb=Qrc(Wrc);rwb=wrc((Orc(),Rrc(CHd,Msc((Lsc(),Lsc(),Ksc)))),'2099-12-31')} +function bac(a,b){var c,d,e,f;f=new _td;e=new Frd(b);for(d=0;e.ac[1]+d[0]?(eQ(),cQ):(eQ(),dQ)} +function D0(a,b,c){var d,e,f;d=a.f.Jf(c,b.e,b.c);a.e=kH(a.e,new qad(d.c,0));f=a.e;if((wR(),tR)==b.b.b){e=E0(a,b.e);f=kH(f,new qad(0,-e))}else if(vR==b.b.b){e=E0(a,b.e);f=kH(f,new qad(0,e))}R9b(a.a,a.e);R9b(a.a,f);a.d=b.e} +function oIb(a,b,c){Kad(a.p,b);Jad(a.p,c);Kad(_Ib(a.i,(Lz(),Iz)),b);Jad(_Ib(a.i,Iz),c);Kad(_Ib(a.i,Jz),b);Jad(_Ib(a.i,Jz),c);Kad(_Ib(a.i,Hz),b);Jad(_Ib(a.i,Hz),c);Kad(_Ib(a.i,Kz),b);Jad(_Ib(a.i,Kz),c);nJb(a.k,b,c);iIb(a)} +function a5b(a){var b,c,d,e;for(d=new qsd(dsd(a.a.w).b.Qb());d.b.Rc();){b=d.b.Sc();$4b(a,b)}for(e=new qsd(dsd(a.a.v).b.Qb());e.b.Rc();){b=e.b.Sc();$4b(a,b)}for(c=new qsd(dsd(a.a.r).b.Qb());c.b.Rc();){b=c.b.Sc();$4b(a,b)}} +function f5b(a){var b,c,d,e;for(d=new qsd(dsd(a.a.w).b.Qb());d.b.Rc();){b=d.b.Sc();d5b(a,b)}for(e=new qsd(dsd(a.a.v).b.Qb());e.b.Rc();){b=e.b.Sc();d5b(a,b)}for(c=new qsd(dsd(a.a.r).b.Qb());c.b.Rc();){b=c.b.Sc();d5b(a,b)}} +function Shc(b){var c=Thc();var d=b.replace(/[\x00-\x1f\xad\u0600-\u0603\u06dd\u070f\u17b4\u17b5\u200b-\u200f\u2028-\u202e\u2060-\u2064\u206a-\u206f\ufeff\ufff9-\ufffb"\\]/g,function(a){return Qhc(a,c)});return '"'+d+'"'} +function Tdd(a){var b;ul.call(this,(abd(),Jkc($doc)));this.b=a;this.c=Ckc($doc);Lic(this.U,this.b);Lic(this.U,this.c);b=Rkc($doc);this.b[WDd]=b;hlc(this.c,b);this.a=new Aed(this.c);!!this.b&&(this.b.tabIndex=0,undefined)} +function TV(a,b,c,d,e){var f,g,h,j,l;h=e&&b.Rl()>0&&b.Ue();if(b.Xl().c+(h?b.Rl():0)==0){return lW(),kW}f=cbc(c,2*a.b.Yd());j=1.2*a.b.Yd();l=new pW(f,aac((g=new cac(b,d,h),!_9b&&(_9b=new y9b),g)),j);return !l.b?(lW(),kW):l} +function HW(a,b,c,d){var e,f;e=a.a.ce(b.Lh()).a;f=a.a.ce(KW(b).a[0]).a;if(e>=f+0.5){return Iac(),Gac}else if(f>=e+0.5){return Iac(),Eac}return JW(CW,c)||d>1&&JW(EW,c)?(Iac(),Eac):JW(DW,c)||JW(EW,c)?(Iac(),Gac):(Iac(),Fac)} +function Hvb(a,b){var c,d,e,f,g;for(d=new Frd(a.a);d.ag.a){e=-1;f=a.e.qi(a.d);g=a.e.pi(a.d)}c=g.a-f.a;d=g.b-f.b;b.gl();Ygc(b.el(),f.a,f.b);IHb(b,new pad,-$wnd.Math.atan2(d,c));a.ki(b,e,a.d.bi());a.mi(b);b.qe()} +function Vgb(a,b){var c,d,e,f,g;e=new gs(a.a);for(d=new Frd(b);d.a-1){_r(e,c);f=dsd(c.a.r);if(f.b.vd()>0){Vr(e,g,f.a.zd(0));Xr(e,usd(f,1,f.b.vd()))}}}return new Agb(e)} +function alb(){var a,b,c,d,e;for(b=(P0(),vuc(quc(pHc,1),nyd,199,0,[L0,M0,O0,N0,K0,J0])),c=0,d=b.length;ctr>td{padding:5px;}'));return true}return false} +function cb(a){$();var b,c,d,e;owd(Z,(Uvd(),Rvd))&&kwd(Z,'Checking valence for the 1st group.');b=a.a;if(Y(b)==1){d=a.d;e=a.b.Xl().c;if(e>1){return ec()}c=a.b.Nl();return b==1?bb(d,c,e):ab(d,c,e)}else{throw I8c(new Yc(kyd+b))}} +function XA(){var a;XA=p9c;WA=(a=new bB,$A(a,vuc(quc(RXc,1),nyd,112,0,[(s6b(),m6b),h6b,q6b])),$A(a,vuc(quc(RXc,1),nyd,112,0,[e6b,o6b])),$A(a,vuc(quc(RXc,1),nyd,112,0,[n6b,k6b,f6b])),$A(a,vuc(quc(RXc,1),nyd,112,0,[i6b,j6b])),a)} +function EC(a,b){var c,d,e,f,g,h;f=a.o.C;for(d=new Frd(LC(a));d.a>2)+(d==0?0:1);a.a=suc(uvc,jyd,23,a.d,15,1);e=0;while(c>d){a.a[e++]=b[--c]&255|(b[--c]&255)<<8|(b[--c]&255)<<16|(b[--c]&255)<<24}for(f=0;f=3){var b=parseInt(a[1])*1000000+parseInt(a[2])*hAd+parseInt(a.length>=5&&!isNaN(a[4])?a[4]:0);return b}return -1} +function tc(b,c){var d;if(c.d<0){owd(qc,(Uvd(),Rvd))&&kwd(qc,'Electrons in bonds < 0');return ec()}if(c.c[4]>0){return Zb(c,b.a)}else{try{return uc(b,c)}catch(a){a=H8c(a);if(kvc(a,239)){d=a;throw I8c(new Xc(d))}else throw I8c(a)}}} +function LP(a){var b,c,d,e,f,g;c=NP(a);if(a.p){b=a.b.c.Lh();f=lad(a.b.d.Lh(),b);e=(kBd+(kBd-$wnd.Math.atan2(f.b,f.a))%kBd)%kBd;g=Bac(lad(gw(a.o.i,a.p),b),new pad,e);d=c;g.b>0?(d=(eQ(),cQ)):g.b<0&&(d=(eQ(),dQ));d!=c&&(c=d)}return c} +function fY(a,b,c,d){var e,f,g,h,j,l,m;j=a.e.pi(a.d);l=a.e.qi(a.d);f=b;m=c;if(j.a>l.a){f=c;m=b}g=new qad(0,0);h=new qad(rac(j.a,j.b,0,l.a,l.b,0),0);a.f=eY(a,g,h,f,m,(iU(),hU),d);a.i=(e=Hnd(UBd,f)&&Hnd(f,m)?f:uBd,e);a.ji(g,h,f,m,d)} +function B7(a,b){var c,d,e,f,g,h,j;j=Ynd(b,(R5(),L5).a.length);c=(h5(),g=bod(j.substr(0,3)),g.length==0?0:Xmd(g,10));h=j.substr(3);for(d=0;d0){if(Gqd(a.c,UEd)){b=Xtd(a,UEd);this.a=b.length>0?Und(Xtd(a,UEd),' ',0):suc(g6c,eyd,2,0,6,1)}else{throw I8c(new bnd('atomID is missing'))}}else{this.a=suc(g6c,eyd,2,0,6,1)}} +function sib(a){var b;b=new ltd;if((s6b(),p6b)==a){Otd(b.e,KEd,'MDL');Otd(b.e,MEd,'4')}else if(i6b==a){Otd(b.e,KEd,'MDL');Otd(b.e,MEd,'3')}else if(j6b==a){Otd(b.e,KEd,'ChemAxon');Otd(b.e,MEd,'CTUnspec')}return b.d.c+b.e.b==0?null:b} +function xlb(a,b,c){var d,e,f;d=!c?{}:mPb(us(c));e=new hJb;return bf(),cf($wnd.Promise.resolve(gJb(e,b.d,a.G.C,(f=new ZIb(d),WIb(f,d.width||200),UIb(f,d.height||200),Dw(f,WOb(d)),Uo(f,d.svgScaling||1),XIb(f,d.zoomMode||'fit'),f))))} +function kgc(){kgc=p9c;new Nec('aria-busy');new Tdc('aria-checked');new Nec('aria-disabled');new Tdc('aria-expanded');new Tdc('aria-grabbed');new Nec(izd);new Tdc('aria-invalid');jgc=new Tdc('aria-pressed');new Tdc('aria-selected')} +function tqc(a,b,c,d){var e;if(!b){throw I8c(new und('Cannot add a handler with a null type'))}if(d==null){throw I8c(new und('Cannot add a null handler'))}a.b>0?sqc(a,new _ld(a,b,c,d)):(e=xqc(a,b,c),e.od(d));return new $ld(a,b,c,d)} +function ktc(a){var b,c;c=-a.a;b=vuc(quc(svc,1),fyd,23,15,[43,48,48,58,48,48]);if(c<0){b[0]=45;c=-c}b[1]=b[1]+((c/60|0)/10|0)&hyd;b[2]=b[2]+(c/60|0)%10&hyd;b[4]=b[4]+(c%60/10|0)&hyd;b[5]=b[5]+c%10&hyd;return Cnd(),kod(b,0,b.length)} +function ntc(a){var b;b=vuc(quc(svc,1),fyd,23,15,[71,77,84,45,48,48,58,48,48]);if(a<=0){b[3]=43;a=-a}b[4]=b[4]+((a/60|0)/10|0)&hyd;b[5]=b[5]+(a/60|0)%10&hyd;b[7]=b[7]+(a%60/10|0)&hyd;b[8]=b[8]+a%10&hyd;return Cnd(),kod(b,0,b.length)} +function zad(){if(x9c(new RegExp('(iPad|iPhone|iPod)'),$wnd.navigator.userAgent)&&Aad()){return $wnd.Math.min($wnd.Math.max(0,((oid(),$doc.body).offsetWidth||0)|0),5000)}return $wnd.Math.min($wnd.Math.max(0,parent.innerWidth),5000)} +function _fd(a,b,c){var d=$doc.createElement('td');d.innerHTML=dJd;var e=$doc.createElement('tr');for(var f=0;f>16);b=d>>16&16;c=16-b;a=a>>b;d=a-256;b=d>>16&8;c+=b;a<<=b;d=a-4096;b=d>>16&4;c+=b;a<<=b;d=a-16384;b=d>>16&2;c+=b;a<<=b;d=a>>14;b=d&~(d>>1);return c+2-b}} +function $i(a,b){var c;if(a.p){throw I8c(new end('Composite.initWidget() may only be called once.'))}if(!b){throw I8c(new und('widget cannot be null'))}kvc(b,174)&&b;vg(b);c=(abd(),b.U);_f(a,c);(Phd(),ibd(c))&&Qhd(c,a);a.p=b;yg(b,a)} +function Sp(){Sp=p9c;Np=new F9c(QAd,(Z9c(),new U9c('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAANElEQVR42mNgQAMBAQH/YZgBnyQhzEAyIMnUUcV0U/yTgOIfcMWBgYGteDT89Pf3bwGpAwAW+9lyZeWNbwAAAABJRU5ErkJggg==')),11,14)} +function Sr(a,b){var c,d,e,f,g;if(b===a){return true}if(!kvc(b,160)){return false}g=b;if(a.vd()!=g.vd()){return false}f=g.Qb();for(d=a.Qb();d.Rc();){c=d.Sc();e=f.Sc();if(!(pvc(c)===pvc(e)||c!=null&&T(c,e))){return false}}return true} +function nv(a){var b,c,d,e,f;d=new std;Lr(d,a.c.Ml());Lr(d,a.d.Ml());d.a.qp(a)!=null;for(c=(f=(new ard(d.a)).a.mp().Qb(),new brd(f));c.a.Rc();){b=(e=c.a.Sc(),e.yp());if(b.o==(s6b(),h6b)||b.o==i6b||b.o==j6b){return true}}return false} +function QZ(a,b){var c,d,e;c=$wnd.Math.max(a.b.Yd()*10,1);if(FF(HZ(a.c),IZ(a.c),b)<=c/2){return true}for(e=KZ(a.c).Qb();e.Rc();){d=e.Sc();if(bbc(d.xh(),b)){return true}}if(bbc(cbc(new ibc(LZ(a.c),0,0),c),b)){return true}return false} +function ogb(a,b){var c,d,e;d=Pib(a.c,'MEFlow');eld(d,'arcAngle',$md(360*b.f));(RTb(),NTb)==b.e&&eld(d,ZDd,b.c.Bm().Lh().a-iXb(b).Lh().a>0?'4':'2');c=pgb(a,b);if(c){Lkd(d,c);e=ngb(a,b);if(e){Lkd(d,e);rgb(a,d,b);return d}}return null} +function ohd(a,b){var c,d,e,f,g,h;b=_nd(b,(Aud(),xud));if(a.d!=null){for(c=0;c>>0,f.toString(16)),g='\\u'+Ynd('0000',e.length)+e,h=String.fromCharCode(32),b.replace(new RegExp(g,'g'),h))}}return b} +function sid(a){oid();var b,c;c=Fqd(mid,a);b=null;if(a!=null){if(!(b=Wkc($doc,a))){return null}}if(c){if(!b||(abd(),c.U==b)){return c}}if(Mqd(mid)==0){$bd(new uid);Lsc()}!b?(c=new vid):(c=new pid(b));Iqd(mid,a,c);ptd(nid,c);return c} +function Btd(a,b){var c,d,e,f,g;f=b==null?0:a.b.tp(b);d=(c=a.a.get(f),c==null?new Array:c);for(g=0;g0?b.c:b.b)-b.d}if(kvc(c,215)){return c.a}else if(ovc(c)){try{d=Xmd(c,10);return d}catch(a){a=H8c(a);if(kvc(a,65)){return (b.d>0?b.c:b.b)-b.d}else throw I8c(a)}}return (b.d>0?b.c:b.b)-b.d} +function XQ(a){var b,c,d,e;if(Hnd('\u25CF',a)||Hnd('\u207A',a)){return true}for(c=$nd(a),d=0,e=c.length;d'+b+Uyd);return b} +function Vp(){var a='Webkit Moz O ms Khtml'.split(' ');var b=$doc.createElement(Nzd);if(b.style.animationName!==undefined){return true}for(var c=0;c0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))){if(b.Le().sd()&&!b.Qe().sd()){return Svb(b)}}else if(dsd(c.k).a.sd()&&b.Le().vd()==1&&!b.Qe().sd()){return Svb(b)}}return b} +function WEb(a){this.j=new XEb(this);this.k=new YEb(this);this.n=a;this.o=(aFb(),ZEb);$Eb(this.o);this.a=Rkc($doc);this.b=Rkc($doc);this.d=Rkc($doc);this.f=Rkc($doc);this.c=new tad(this.b);this.e=new tad(this.d);this.i=new tad(this.f)} +function sbc(a,b){var c,d,e,f,g;f=new es;e=new gs(b);d=a.a.length;if(d>1){g=ds(a,suc(P5c,{3:1,2398:1,4:1},725,0,7,1));Nrd(g,0,g.length,null);for(c=0;c0&&b<=126){return b>0&&b<=126?h1b[b-1].c:null}return null} +function xBb(a){var b,c;c=CEb(a.b.a);if(c==null||c.length==0||bod(c).length==0){return null}c=bod(c);if(m1b(c,true)){return 'D'}else if(o1b(c,true)){return 'T'}b=Vyb(c);i1b();if(b>0&&b<=126){return b>0&&b<=126?h1b[b-1].c:null}return null} +function yb(a,b,c){var d;owd(vb,(Uvd(),Svd))&&lwd(vb,'Checking valence for the Oxygen.');d=2-a-c;if(b==0||b==6){return dc(d)}if(b<-2||b>6){return ec()}if(b<0){return dc(b+d)}if(b==5){return dc(d-1)}if(b==2){return dc(d+2)}return dc(d+b%2)} +function ng(a,b){var c=(a.className||'').split(/\s+/);if(!c){return}var d=c[0];var e=d.length;c[0]=b;for(var f=1,g=c.length;fe&&h.charAt(e)=='-'&&h.indexOf(d)==0&&(c[f]=b+h.substring(e))}a.className=c.join(' ')} +function rL(a,b){var c,d,e,f;if(hy(a.a)||!!a.f){f=hy(a.a)?dsd(a.a.r).a.zd(0):a.f;c=null;for(e=new qsd(dsd(a.o.i.C.v).b.Qb());e.b.Rc();){d=e.b.Sc();if(lsd(dsd(d.r),f)){c=mnd(d.a);break}}!!c&&Zr(b,c,0)==-1&&(b.a[b.a.length]=c,true)}return b} +function oP(a){var b,c,d,e,f,g,h;c=0;g=0;for(e=(f=(new ard((h=new std,Lr(h,a.a.c.Ml()),Lr(h,a.a.d.Ml()),rtd(h,a.a),h).a)).a.mp().Qb(),new brd(f));e.a.Rc();){d=(b=e.a.Sc(),b.yp());wv(a.a,d)==(dv(),av)?++c:++g}return c>g?(eQ(),cQ):(eQ(),dQ)} +function l8(a){var b,c,d,e,f,g;g=new is;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();U(b)==PXc&&Wr(g,b)}if(g.a.length!=0){d=new js(a);Or(d,g);for(f=new Frd(g);f.a0){d.a+='M MRV SMA ';k5(d,false,b,3,32);d.a+=' [';nod(d,D8(c));d.a+=';';d.a+=h;d.a+=']';d.a+=oyd}} +function lAb(a,b){var c,d,e,f,g;g=new pDb;for(d=(Kbc(),vuc(quc(TYc,1),nyd,191,0,[Cbc,Gbc,Hbc,Ebc,Fbc,Dbc,Ibc,Jbc])),e=0,f=d.length;eg&&e0?f.a.substr(1):''} +function Rvb(a,b){var c,d;if(!b||b.n.a.length==0&&b.k.a.length==0&&b.t.a.length==0&&b.u.a.length==0&&b.A.a.length==0){return}c=PVb(b);d=lad($Hb(a.a.i.a),dbc(c.gh()));Gy(c,d);c=Qvb(a,c);yQ(a.a.f,RC(a.a.i,c));Ry(a.a.i.A);az(a.a.i.A,c);Ww(a.a)} +function qJb(a){var b;this.a=a;this.b=(b=new YIb,b.a=24,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),b.c=24,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),b.r=true,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),b.u=false,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),Hw(b,(iz(),hz)),b)} +function nPb(){return {atomIndicesVisible:false,atomMapsVisible:true,carbonLabelVisible:false,chiralFlagVisible:true,cpkColoring:true,implicitHydrogen:oBd,lonePairsVisible:false,valenceErrorVisible:true,displayMode:pBd,height:200,width:200}} +function bgd(a,b,c){var d,e,f;if(c==(abd(),b.U)){return}vg(b);f=null;d=new Ljd(a.i);while(d.b>5;if(e>=a.d){return a.e<0}c=a.a[e];b=1<<(b&31);if(a.e<0){d=Tod(a);if(e0){Qic(b,$ad._n(b,0))}for(d=new Frd(a.b);d.a$wnd.Math.abs(e)?(e=0):(d=0));return new qad(d,e)} +function _eb(a,b,c){var d,e,f,g,h;if(a){g=(e=kld(a.So(),_zd),e?Dld(e.a):null);if(Hnd(gFd,g)){if(Hnd(b,(f=kld(a.So(),hFd),f?Dld(f.a):null))){return c==null||(h=(d=kld(a.So(),NEd),d?Dld(d.a):null),Hnd(c,h)||h==null||h.length==0)}}}return false} +function fxb(a){var b,c,d,e,f,g,h;b=(d=DEb(a.a),d==null?'':d);h=(e=DEb(a.d),e==null?'':e);g=jxb((c=DEb(a.c),c==null?'':c));f=Rf(a.b).selectedIndex;return b==null||bod(b).length==0?null:new qcc(b,h,(tcc(),ds(scc,suc(VYc,IHd,282,0,0,1)))[f],g)} +function K7b(a,b){var c,d,e,f;if(dsd(b.k).b.vd()!=1){throw I8c(new bnd(''))}d=new Q7b(b);e=new V7b(d,dsd(b.k).a.zd(0));c=dsd(b.k).a.zd(0);if(a.a){f=new S7b(c,dsd(b.t));return new F7b(M7b(e.d,f.c,c),e.a,M7b(e.c,f.b,c),c,d)}return new E7b(e,d)} +function f8b(a){var b,c,d;d=new es;if(a.c.a.length==0){Wr(d,a.b.b);return d}if(a.c.a.length+1==a.b.b.a.length){for(c=new Frd(a.b.b);c.a0)&&(X1b(),U1b)==a.a.Xl()){return Xrd(),Xrd(),Wrd}d=$J(a);for(c=a.a.Oe().Qb();c.Rc();){b=c.Sc();if(T(b.c.Bm(),a.a)){rtd(d,mnd((JTb(),HTb)==b.e.a?b.b*2:b.b));HTb==b.e.a&&rtd(d,mnd(b.b*2+1))}}return d} +function zX(a,b,c){var d,e,f,g,h,j,l;h=new es;g=d2b(c);for(e=new Frd(g);e.a1){f=iDb(c);KCb(a,g,d)||nDb(c,f)}c.d=c.e;e=_Cb(a.d,b,oDb(c,d));gDb(e,c.e);Uo(e,new rDb(c));return e} +function eed(a,b){var c,d;a.d||(b=1-b);if(a.c==-1){c=qvc(b*$ic(a.a,qLd));d=qvc((1-b)*$ic(a.b,qLd))}else{c=qvc(b*a.c);d=a.c-c}if(c==0){c=1;d=$wnd.Math.max(1,d-1)}else if(d==0){d=1;c=$wnd.Math.max(1,c-1)}a.a.style[czd]=c+dzd;a.b.style[czd]=d+dzd} +function kF(a,b){var c,d;if(!!a&&!!b){c=Ojc((ujc(),a).clientX||0)-tjc.Cn(b)+tjc.In(b)+Ykc(b.ownerDocument);d=Ojc(a.clientY||0)-tjc.Dn(b)+((b.scrollTop||0)|0)+Zkc(b.ownerDocument);return new iF(vuc(quc(T1c,1),tBd,5,0,[new qad(c,d)]))}return null} +function CI(a,b){var c,d,e,f;if(b<=0.385){f=kH(a.i,a.b[a.c]);for(e=dsd(Vw(a.o).n).b.vd();e>0;--e){c=ssd(dsd(Vw(a.o).n),e-1);d=c.Lh();if($wnd.Math.abs(f.a-d.a)_ic((abd(),a.U),OHd).length){throw I8c(new lmd('From Index: 0 To Index: '+b+' Text Length: '+_ic(a.U,OHd).length))}Ckd(a.U,0,b)} +function xVb(a,b){if(Zrd(kXb(b),dsd(a.n))&&Zrd(kXb(b),dsd(a.p))){throw I8c(new bnd('Nodes of ElectronFlowArrow should be contained in the molecule'))}if(hs(a.q,b)==-1){hs(a.q,b)!=-1||Wr(a.q,b);b.c.Bm().bf(b);b.d.Bm().bf(b);b.p=a;SVb(a,new u7b)}} +function Tuc(a,b){var c,d,e,f,g;b&=63;c=a.h;d=(c&ZKd)!=0;d&&(c|=-1048576);if(b<22){g=c>>b;f=a.m>>b|c<<22-b;e=a.l>>b|a.m<<22-b}else if(b<44){g=d?YKd:0;f=c>>b-22;e=a.m>>b-22|c<<44-b}else{g=d?YKd:0;f=d?XKd:0;e=c>>b-44}return Auc(e&XKd,f&XKd,g&YKd)} +function VB(a,b){var c,d;this.a=new es;this.a.a=suc(_5c,lyd,1,0,5,1);for(d=new qsd(dsd(a.k).b.Qb());d.b.Rc();){c=d.b.Sc();!!c.c.fn()&&lsd(b,c.c.fn().b)&&Wr(this.a,new WB(true,c,c.c));!!c.a.fn()&&lsd(b,c.a.fn().b)&&Wr(this.a,new WB(false,c,c.a))}} +function aI(a){var b,c,d,e;if(a.a.b<=1){bI(a)}else{b=new y2b((WZb(),UXb));oTb(b,new Tac(SH(a,a.a.b%2==1),a.n));c=new std;c.a.pp(b,c);e=new std;d=new S2b((s6b(),m6b),a.a.c.b.c,b);e.a.pp(d,e);VH(a,new PC(a.o.i,y$b(x$b(new F$b,c),e).a));lud(a.a,b)}} +function KI(a,b){var c,d,e;if(a.i){e=Ku(a.o.i,jw(a.o.i,a.i));c=vuc(quc(tWc,1),zBd,49,0,[b,e]);if(!!e&&SI(a,e,b)&&aVb(a.o.i.C,new Srd(c))){d=new S2b((s6b(),m6b),e,b);II(a,d);Jl(a,jw(a.o.i,b.Lh()));a.a=d.c.Lh()}else b.Lh()==a.a&&zI(a,b)}a.i=b.Lh()} +function VPb(b,c,d){var e,f,g;if(!d){throw I8c(new tnd)}e=new Yqc(b.b,b.c);UPb(e);Wqc(e,'content-type',b.a.a);f=new $Pb(b,d);frc(rJd,f);e.a=f;e.e=c;try{frc(rJd,e.a);Uqc(e,e.e,e.a)}catch(a){a=H8c(a);if(kvc(a,229)){g=a;f.b.ob(g)}else throw I8c(a)}} +function OA(a,b,c){BA.call(this,a,a.C,x$b(new F$b,new Srd(vuc(quc(tWc,1),zBd,49,0,[b]))).a);if(!b){throw I8c(new bnd('Old atom cannot be null!'))}else if(!c){throw I8c(new bnd('New atom cannot be null!'))}this.c=b;this.b=c;this.a=new Yu(this.o.A)} +function nK(a,b){var c,d,e;d=qnd(b.a,b.c)*0.5;c=RT(new qad(b.b.a+b.c/2,b.b.b+b.a/2),d,new qad(b.b.a+b.c/2,b.b.b+b.a/2),1.3*d);Hqd(c.a,0,'rgba(255,255,255,0.9)');Hqd(c.a,1,qBd);e=new wT(true,c);GHb(a,new qad(b.b.a+b.c/2,b.b.b+b.a/2),1.3*d,false,e)} +function AHb(a){Sdd(a.p,(qmd(),a.q.r?true:false));Sdd(a.k,a.q.s?true:false);Sdd(a.a,a.q.p?true:false);Sdd(a.i,a.q.o?true:false);Sdd(a.j,a.q.q?true:false);Sdd(a.o,a.q.u?true:false);Sdd(a.n,a.q.t?true:false);Ugd(a.e,a.q.n.k);Ugd(a.c,a.q.j.k);vHb(a)} +function Yod(a,b){var c;if(b.e<=0){throw I8c(new jmd(PLd))}if(!(epd(a,0)||epd(b,0))){throw I8c(new jmd(QLd))}if(b.d==1&&b.a[0]==1){return Mod}c=Npd(Xod(a.e<0?new gpd(1,a.d,a.a):a,b),b);if(c.e==0){throw I8c(new jmd(QLd))}c=a.e<0?fqd(b,c):c;return c} +function jL(a){var b,c,d;d=new gs(a);if(d.a.length<3){return null}c=d.a[0];b=new utd(dsd(Ey(c).r));b.a.qp(c)!=null;if(Zrd(b,d)){c=d.a[1];b=new utd(dsd(Ey(c).r));b.a.qp(c)!=null}b.a.pp(c,b);Pr(b,d);Or(d,b);if(d.a.length==1){return d.a[0]}return null} +function $V(a,b,c,d,e){var f,g;if(Hnd(UBd,e)){g=new xT(true,UBd);GHb(b,c,d,true,g)}else{g=new xT(true,e);GHb(b,c,d,true,g);f=RT(c,1,c,$wnd.Math.max(d*a.b.Yd(),2));Hqd(f.a,0,'rgba(255,255,255,0.6)');Hqd(f.a,1,qBd);g=new wT(true,f);GHb(b,c,d,true,g)}} +function e4(a,b){var c,d,e,f;f=a.e.a.get(uDd);c=u3(a.e.a.get(xDd));e=null;Hnd('DAT',f)?(e=g4(a,b,c)):Hnd('GEN',f)?(e=new Z1(i4(b,c))):Hnd(zDd,f)?(e=j4(a,b,c)):Hnd(ADd,f)&&(e=k4(a,b,c));if(e){d=a.e.a.get('PARENT');d!=null&&Q4(b,e,Xmd(d,10))}return e} +function Jhb(a,b,c){this.n=a;this.b=new is;this.i=new is;this.k=new is;this.e=new ltd;this.f=ugb(a.c,VDd);eld(this.f,'molID','m'+$md(++a.e));if(b){Lkd(b.f,this.f);this.d=b.d}else{this.d=new Bgb}this.j=b;this.a=new Rhb(this,c);this.c=new Xhb(this,c)} +function t$b(a){var b,c,d,e;if(!a.b){a.b=new is;for(e=new qsd(dsd(a.c.p).b.Qb());e.b.Rc();){d=e.b.Sc();U(d.c)!=PXc&&U(d.d)!=PXc&&Wr(a.b,d)}for(c=new Frd(cWb(a.c));c.a0?a[j-1]:a[a.length-1];f=j118){return false}}else if(a.a==Gbc){c=qBb(b);i1b();if(!(c>0&&c<=126&&h1b[c-1].a==0)){return false}}return true} +function wF(a){var b,c,d;d=new is;for(c=new qsd(dsd(a.q).b.Qb());c.b.Rc();){b=c.b.Sc();!!b.c.fn()&&!lsd(dsd(a.B),b.c.fn().b)&&hs(d,b)==-1&&(d.a[d.a.length]=b,true);!!b.a.fn()&&!lsd(dsd(a.B),b.a.fn().b)&&hs(d,b)==-1&&(d.a[d.a.length]=b,true)}Or(a.q,d)} +function Elb(a){var b,c,d,e;b=new tmb(a,'molchange');d=new tmb(a,'selectionchange');e=new tmb(a,'zoom');c=new tmb(a,'scroll');Ju(a.G,new jmb(a,b));Iu(a.G,new lmb(a,d));if(Q0((P0(),O0))){RHb(a.f,new mmb(a,c));SHb(a.f,new nmb(a,e))}wQ(a.q.f,new omb(a))} +function r5b(a){var b,c,d,e,f,g,h;g=new is;h=dsd(a.a.f);c=nsd(h,suc(tWc,zBd,49,0,0,1));for(e=new qsd(dsd(a.a.a.b).b.Qb());e.b.Rc();){d=e.b.Sc();b=lsd(h,d.c)?d.c:d.d;for(f=0;f=a.u+a.n;if(a.q&&!d){e=(b-a.u)/a.n;a.ln((1+$wnd.Math.cos(jBd+e*jBd))/2);return a.p&&a.s==c}if(!a.q&&b>=a.u){a.q=true;a.kn();if(!(a.p&&a.s==c)){return false}}if(d){a.p=false;a.q=false;a.jn();return false}return true} +function xr(){xr=p9c;rr=new yr('HEX',0,'#[0-9a-zA-z]{3,6}',false);vr=new yr('RGB',1,'rgb\\(.*\\)',false);wr=new yr('RGBA',2,'rgba\\(.*\\)',true);sr=new yr('HSL',3,'hsl\\(.*\\)',false);tr=new yr('HSLA',4,'hsla\\(.*\\)',true);ur=new yr(XAd,5,'\\w+',false)} +function gZ(a,b,c,d){var e,f,g,h,j,l,m,n,o,q;e=sac(a.e.pi(a.d),a.e.qi(a.d));h=fDd*a.c.Yd();m=qvc(e/h)+1;if(m>1){l=(e-m*h)/2;f=(c>0?1:d)*a.c.Yd();g=(c<0?1:d)*a.c.Yd();o=l;q=f;n=(g-f)/(m-1);for(j=0;j6?(g=4-c):f>4?(g=f-c):f>2?(g=4-c):(g=2-c),dc(g))} +function x2(a){var b,c,d,e,f,g,h,j;j=new ltd;for(g=new Frd(a);g.ae.a&&(f-=c.a-e.a+d);c.b+d>e.b&&(g-=c.b-e.b+d);return new qad(f,g)} +function gS(a){cS();var b,c,d,e;if(a!=null){if(Hnd(a.substr(0,3),'br/')){return WR}for(c=vuc(quc($Ec,1),nyd,173,0,[VR,WR,XR,_R,YR,ZR,$R,bS,aS]),d=0,e=c.length;d=0){Hl(a.j,false);a.o=LBd){d=!a.i?new y2b((WZb(),UXb)):Ku(a.o.i,jw(a.o.i,a.i));d=!d?new y2b((WZb(),UXb)):d;c=new S2b((s6b(),m6b),d,new y2b((WZb(),UXb)));c.c.mm(a.i);c.d.lm(new Tac(e,d.Ki()));II(a,c);Jl(a,jw(a.o.i,c.d.Lh()))}} +function pX(a,b){var c;while(a.a118){return false}}else if(a.c==Gbc){b=Vyb(c);i1b();if(!(b>0&&b<=126&&h1b[b-1].a==0)){return false}}return true} +function t9(a,b,c){var d,e,f,g;k5(a,false,b,3,32);nod(a,c.a?' F':' T');a.a+=' ';f=(Xrd(),new osd(c.b));g=$wnd.Math.min(f.b.vd(),5);nod(a,(Cnd(),''+g));for(e=new qsd(f.b.Qb());e.b.Rc();){d=e.b.Sc();if(g==0){break}--g;a.a+=' ';k5(a,false,d.k+1,3,32)}a.a+=oyd} +function Unb(a,b){var c,d,e,f,g,h;Sn(a.a.b);for(d=new kt((new jt(b)).a);d.b1?''+c.Ql():null;g=xV(a,new jX((HU(),zU),false),'H');Wr(this.c,g);if(f!=null){h=BV(a,new jX(AU,false),f);this.a=h.c.a;Wr(this.c,h);e=g.d+this.a-h.d;h.f+=0;h.i+=e}this.d=RU(0,this.c)} +function p2(a,b,c){var d,e;MVb(a.a,b);if(c){d=b.b;e=new o0b(b.c,dsd(d.n));!(dsd(e.r).a.sd()&&dsd(e.s).a.sd()&&dsd(e.A).a.sd()&&(Xrd(),true)&&(Xrd(),true)&&(Xrd(),true)&&(Xrd(),true)&&dsd(e.u).a.sd()&&(Xrd(),true))&&Q6b(e,dsd(d.w),new es).a.length>1&&BVb(a.a,e)}} +function IGb(){var a=navigator.saveBlob||navigator.msSaveBlob||navigator.mozSaveBlob||navigator.webkitSaveBlob;if(a){return {func:a,owner:navigator}}var b=$wnd.saveAs||$wnd.webkitSaveAs||$wnd.mozSaveAs||$wnd.msSaveAs;if(b){return {func:b,owner:$wnd}}return null} +function Lhd(a,b){var c,d,e,f,g,h;a.j||(b=1-b);g=0;e=0;f=0;c=0;d=qvc(b*a.d);h=qvc(b*a.e);switch(a.a.r.k){case 2:f=a.e;c=d;break;case 0:g=a.d-d>>1;e=a.e-h>>1;f=e+h;c=g+d;break;case 1:Lsc();f=h;c=d;}(Jg(),Ig).Io(Rf(a.a),'rect('+g+'px, '+f+'px, '+c+'px, '+e+'px)')} +function JZ(a){var b,c,d,e,f;if(!a.o&&a.j!=null&&a.j.length!=0){b=FX(a,a.j,(HU(),DU).b,(z0(),y0));c=tac(a.k.e,GX(a,a.i),sac(a.k.e,GX(a,a.i))+$wnd.Math.max(10*a.u.Yd(),b.c/2));e=c.a-b.c/2;f=c.b-b.a/2;d=new ibc(new qad(e,f),b.c,b.a);a.o=new AT(DU,a.j,d)}return a.o} +function X8(a,b,c){var d;d=Eqd(a.b.a,c);if(d==null){d=suc(g6c,eyd,2,2,6,1);d[0]=V7(a,c.c);d[1]=V7(a,c.d)}l5(b,d[0]);l5(b,d[1]);k5(b,false,a9(c.o),3,32);k5(b,false,$8(c.o),3,32);k5(b,false,0,3,32);k5(b,false,_8(c.j),3,32);k5(b,false,Z8(c.e),3,32);b.a+='';b.a+=oyd} +function ctc(a,b){var c,d;d=0;c=new yod;d+=atc(a,b,0,c,false);a.u=c.a;d+=dtc(a,b,d,false);d+=atc(a,b,d,c,false);a.v=c.a;if(d0){b.a=b.a.substr(0,0)+''+Ynd(b.a,d);a.d-=d;a.e-=d}if(a.k>a.p&&a.k>0){a.e+=a.b-1;c=a.e%a.k;c<0&&(c+=a.k);a.b=c+1;a.e-=c}else{a.e+=a.b-a.p;a.b=a.p}if(a.d==1&&b.a.charCodeAt(0)==48){a.e=0;a.b=a.p}} +function MU(a,b){var c,d,e,f,g;c=NU(a);if(c){return UQ(b,c.a)}return d=document.getElementsByTagName('body')[0],e=document.createElement('span'),f=document.createTextNode(b),e.appendChild(f),e.setAttribute(RAd,a),d.appendChild(e),g=e.offsetHeight,d.removeChild(e),g} +function Nhb(a,b){var c,d,e,f,g,h,j,l;for(d=b.Me().Qb();d.Rc();){c=d.Sc();Phb(a,c)}for(f=b.Re().Qb();f.Rc();){e=f.Sc();g=Mhb(a,e);Mfb(a.c.n.a,e,g)}for(j=b.Pe().Qb();j.Rc();){h=j.Sc();l=Mhb(a,h);Wr(a.b,l);Lfb(a.c.n.a,h,l)}Ild(a.a.a)&&!Pkd(Fld(a.a.a))&&Lkd(a.c.f,a.a)} +function QAb(a,b){var c,d,e;c=b.b;d=new Wl(new Cgd((dub(),Osb)),new Cgd((Ctb(),lsb)));kg((abd(),d.U),qId,true);Ul(d,(qmd(),c?false:true));a.U[mAd]=!c;!a.U[mAd]&&!b.c&&IEb(a,b.c?null:b.f);return d?(e=JAb(),Qo(e,a),Qo(e,d),pg(d,new KAb(a),(!Xt&&(Xt=new Ioc),Xt)),e):a} +function _pd(a,b){var c;if(a.e==0){Eod(b.a,0,a.a,0,b.d)}else if(b.e==0){return}else if(a.e==b.e){Zpd(a.a,a.a,a.d,b.a,b.d)}else{c=iqd(a.a,b.a,a.d,b.d);if(c>0){hqd(a.a,a.a,a.d,b.a,b.d)}else{eqd(a.a,a.a,a.d,b.a,b.d);a.e=-a.e}}a.d=$wnd.Math.max(a.d,b.d)+1;Qod(a);a.b=-2} +function jE(a){var b,c,d,e,f,g,h,j;j=new es;for(h=(f=(new drd(a.e)).a.mp().Qb(),new erd(f));h.a.Rc();){g=(b=h.a.Sc(),b.Ok());j.a[j.a.length]=g}e=Cac(ds(j,suc(T1c,tBd,5,0,0,1)),a.b,a.j);d=0;for(c=new iud(new gud(a.e));c.b!=c.c.a.b;){b=hud(c);b.d.mm(kH(e[d],a.n));++d}} +function lE(a){var b,c,d,e,f,g,h,j;j=new es;for(h=(f=(new drd(a.k)).a.mp().Qb(),new erd(f));h.a.Rc();){g=(b=h.a.Sc(),b.Ok());j.a[j.a.length]=g}e=Cac(ds(j,suc(T1c,tBd,5,0,0,1)),a.b,a.j);d=0;for(c=new iud(new gud(a.k));c.b!=c.c.a.b;){b=hud(c);b.d.mm(kH(e[d],a.n));++d}} +function LH(a){var b,c,d,e,f;f=F9b(LG(a),a.k);if(!f){return}e=xH(f,LG(a),a.o.i);d=new S2b(a.e,LG(a),e);c=new wB;b=vuc(quc(tWc,1),zBd,49,0,[LG(a),e]);if(aVb(a.o.i.C,new Srd(b))){lsd(dsd(a.o.i.C.n),e)||uB(c,new BC(a.o.i,e));uB(c,new OC(a.o.i,d));yQ(a.o.f,vB(c,a.o.i))}} +function NCb(a){var b,c,d;d=a.c.i;b=new wB;c=LCb(a,a.j,(WCb(),VCb));if(c){uB(b,new KD(a.a));!!c&&Wr(b.a,c)}uB(b,LCb(a,a.i,UCb));uB(b,LCb(a,a.e,SCb));uB(b,LCb(a,a.f,TCb));rm(a.b.a,false);b.a.a.length==0||yQ(a.c.f,new TA(d,new AB(d,ds(b.a,suc(PEc,ABd,38,0,0,1))),a.a))} +function Rpd(a,b,c,d,e){var f,g,h;f=0;g=0;for(h=0;h')!=-1&&(a=w9c(L9c,a,'>'));a.indexOf('"')!=-1&&(a=w9c(O9c,a,'"'));a.indexOf("'")!=-1&&(a=w9c(P9c,a,'''));return a} +function sp(a,b,c,d){var e,f,g,h,j,l;j=new zo;Of(j,(xp(),'mjs-obf-C'));if(d!=null){e=Und(d,' ',0);for(g=0,h=e.length;g0){hqd(a.a,a.a,a.d,b.a,b.d)}else{eqd(a.a,a.a,a.d,b.a,b.d);a.e=-a.e}}a.d=$wnd.Math.max(a.d,b.d)+1;Qod(a);a.b=-2} +function A7(a,b){var c,d,e,f,g,h,j;c=new RegExp('(\\d+)( +\\w{2})');f=c.exec(b);if(!!f&&f.length==3){e=Xmd(f[1],10);h=bod(f[2]);g=Yr(a.a,e-1);if(g){d=i4b(h);Kl(g,d?(d.j!=null?d.j:''+d.k).toLowerCase():null)}j=f.index+f[0].length;return j0){f=a.b.Mj(b);c=new es;if((X1b(),S1b)==h){Wr(c,Fgb(a,Hgb(a,f,true,true)))}else if(h.c>0){for(e=0;e0){for(f=new Vqd((new Sqd(b.b)).a);f.b;){e=Uqd(f);try{Gkd(c,e.yp(),e.Ok())}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new arc(d.ab()))}else throw I8c(a)}}}else{c.setRequestHeader('Content-Type','text/plain; charset=utf-8')}} +function Y5b(a){var b,c,d,e,f;if(a.c.f.a.length!=0){f=new gs(dsd(a.c.a.b));Xr(f,dsd(a.c.c.b));Xr(f,dsd(a.c.b.b));d=new gs(a.c.f);c=new Frd(a.c.f);while(c.a3&&Krc(a,0,b-3)}} +function vFb(a,b){var c,d,e;this.c=new es;this.b=new qqc(null);Xr(this.c,a);this.a=new Wgd;Vgd(this.a);e=Zr(this.c,b,0);e=e>-1?e:0;for(d=new Frd(this.c);d.ac||ef&&hc?1:-1:$pd(a.a,b.a,g))==-1){return a}e=suc(uvc,jyd,23,c,15,1);if(c==1){e[0]=Upd(a.a,g,b.a[0])}else{d=g-c+1;e=Fpd(d,a.a,g,b.a,c)}f=new gpd(a.e,c,e);Qod(f);return f} +function Wwd(a,b){var c,d,e,f;a=(Cnd(),a);c=new zod;f=0;d=0;while(d'+Yic(Wdd((!a.d&&Cl(a,a.o),a.d)))+Uyd);Xdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f),Tyd+b+';">'+Yic(Wdd((!a.d&&Cl(a,a.o),a.d)))+Uyd)}else{Rnd(Yic(Wdd(a.o)),c,b);Rnd(Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))),c,b)}}} +function ki(){ki=p9c;var a,b,c,d,e,f;ii=suc(svc,fyd,23,64,15,1);e=0;for(b=65;b<=90;b++){ii[e++]=b}for(c=97;c<=122;c++){ii[e++]=c}for(a=48;a<=57;a++){ii[e++]=a}ii[e++]=43;ii[e]=47;ji=suc(rvc,Kzd,23,128,15,1);for(f=0;f>24}} +function Gu(a){switch(a.k){case 4:case 5:case 6:case 0:return ld(),gd;case 7:case 8:case 1:return ld(),cd;case 2:return ld(),kd;case 3:return ld(),_c;case 9:return ld(),jd;case 10:return ld(),hd;case 11:return ld(),dd;case 12:return ld(),$c;case 13:return ld(),bd;}return ld(),gd} +function brb(a,b){var c,d,e,f,g,h,j;h=new es;if(b.a.vd()!=dsd(a.n).b.vd()){f=0;for(d=new qsd(dsd(a.n).b.Qb());d.b.Rc();){c=d.b.Sc();b.a.lp(c)||Wr(h,mnd(f));++f}}e=suc(uvc,jyd,23,h.a.length,15,1);j=0;for(g=new Frd(h);g.a0){r=(Zbd(),Vkc($doc)+Ykc($doc));q=Ykc($doc);h=r-j;e=j-q;h=l&&(j-=l)}n=Wic(b.U);s=(Zbd(),Zkc($doc));o=Zkc($doc)+Ukc($doc);f=n-s;g=o-(n+b.vb());g=d?(n-=d):(n+=b.vb());Zg(a,j,n)} +function H9(a,b,c){var d,e;if(b.length>69){e=b.length/69|0;for(d=0;da.d){h=a;a=b;b=h}if(b.d<63){return qqd(a,b)}g=(a.d&-2)<<4;l=dpd(a,g);m=dpd(b,g);d=fqd(a,cpd(l,g));e=fqd(b,cpd(m,g));j=mqd(l,m);c=mqd(d,e);f=mqd(fqd(l,d),fqd(e,m));f=Xpd(Xpd(f,j),c);f=cpd(f,g);j=cpd(j,g<<1);return Xpd(Xpd(j,f),c)} +function z6(a){switch(a){case 1:return s6b(),m6b;case 2:return s6b(),h6b;case 3:return s6b(),q6b;case 4:return s6b(),f6b;case 5:return s6b(),o6b;case 6:return s6b(),n6b;case 7:return s6b(),k6b;case 8:return s6b(),e6b;default:throw I8c(new bnd((Cnd(),'Invalid bond type:'+(''+a))));}} +function l7(){l7=p9c;k7=new m7('TOTAL_H',0,(kcc(),Xbc),'H[0-9]+');g7=new m7(NDd,1,Sbc,'h[0-9]+');e7=new m7(ODd,2,Rbc,'X[0-9]+');h7=new m7(PDd,3,Ubc,'(R(\\*|[0-9]+){0,1})');i7=new m7(QDd,4,Vbc,'r[0-9]+');f7=new m7('DEGREE',5,Wbc,'D[0-9]+');j7=new m7(SBd,6,Wbc,'(s(\\*|[0-9]+){0,1})')} +function u9b(a,b,c){var d,e,f,g,h,j;if(c.a.length==0||b>=a.a.length){return}j=sbc(c,a);if(j.a.length!=0){f=new es;d=b;j.a[0].f>jBd&&(d=w9b(j.a[0],b));while(d>0){e=x9b(new Frd(j),d);if(e==d){break}d=e}for(h=new Frd(j);h.a2){return ec()}d=a.b.Nl();b==8?(e=yb(c,d,f)):(e=zb(a,c,d,f,a.f));return e}else{throw I8c(new Yc('Calling column 16 for atom number: '+b))}} +function Dib(a,b,c){var d,e,f;if(!b){return null}if(b.n.a.length==0&&b.k.a.length==0&&b.t.a.length==0&&b.u.a.length==0&&b.A.a.length==0){return '<\/MDocument><\/cml>'}d=(Jkd(),Pkd(Ikd.$o()));e=new wgb(d);f=zib(e);Lkd(d,f);vib(a,e,f,b,c);return (old(),old(),nld).bp(d)} +function Spb(a,b,c){var d,e;if(!YK(b.a.a,c)){e=new W0b(c,b.b,a.a);d=vB(uB(uB(new wB,new DD(a.c.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[b]))).a)),new PC(a.c.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[e]))).a)),a.c.i);xic((pic(),oic),new Upb(a,d));return true}return false} +function I9b(a){var b,c,d,e,f,g,h,j;f=new std;for(c=a.Ml().Qb();c.Rc();){b=c.Sc();ptd(f,E2b(b,a).Lh())}for(e=a.Ul().Qb();e.Rc();){d=e.Sc();T(d.b,a)&&ptd(f,(g=mUb(d.a),g.a))}for(j=new qsd(a.Re().b.Qb());j.b.Rc();){h=j.b.Sc();ptd(f,(!h.d&&P3b(h),kH(h.a.Lh(),h.d)))}return L9b(a.Lh(),f)} +function Uac(a){var b,c,d,e,f,g,h;g=new es;if(!!a.a&&a.a.vd()>1){h=new jud;f=new kud(a.a);b=(e=(new ard(f.a)).a.mp().Qb(),c=(new brd(e)).a.Sc(),c.yp());f.a.qp(b)!=null;h.a.pp(b,h);while(f.a.vd()!=0){b=Wac(f,T9b(Z9b(h)));d=Wac(h,b);Wr(g,Vac(b,d));h.a.pp(b,h);f.a.qp(b)!=null}}return g} +function rE(a,b,c){var d,e,f;this.a=new _td;this.c=new ltd;this.b=a;this.e=c;if(!!c&&!Sx(c.A)){this.d=new Cy(c.A);for(f=b.Qb();f.Rc();){d=f.Sc();Xx(this.d,d.Me(),d.Ne())}}for(e=b.Qb();e.Rc();){d=e.Sc();Ytd(this.a,d,(qmd(),!!this.e&&U(d)==OXc&&Zr(cWb(this.e.C),d.i,0)!=-1?true:false))}} +function Zbb(a){var b,c,d,e,f,g;if(a!=null&&!Hnd(a,'0')){g=Und(a,':',0);c=g.length>1?Und(g[1],';',0):Und(g[0],';',0);f=new ltd;d=null;for(e=0;eh.c){for(f=b.Oe().Qb();f.Rc();){e=f.Sc();T(b,e.c.Bm())&&b2b(e.b)&&!Y1b(h,e.b)&&(d.a[d.a.length]=e,true)}}}return d} +function eEb(a){var b,c,d;this.b=a;this.a=new Am;zm(this.a,MGd);Of(this.a,LId);b=new ajd;Yid(b,bEb(this,false),'Acyclic');Yid(b,bEb(this,true),'Cyclic');Uid(b.b,0);c=aEb(this,vuc(quc(uXc,1),MId,57,0,[(B3b(),c3b),d3b,f3b,e3b,A3b]));d=new Bjd;En(d,(qgd(),mgd));yjd(d,b);yjd(d,c);Cg(this.a,d)} +function QW(a,b){if(b.Gl()!=null){return false}if(a.a&&b.Hl()==6&&a.b!=(sz(),qz)){return true}if(b.Ql()==0||a.b==(sz(),qz)){return false}if(a.b==(sz(),pz)&&(b.Hl()==p1b('H')||b.Hl()==p1b('C'))){return false}if(a.b==rz&&(b.Hl()==p1b('H')||b.Hl()==p1b('C'))&&LW(b)>1){return false}return true} +function w7(a,b){var c,d,e,f,g,h,j,l,m,n;n=Ynd(b,(R5(),F5).a.length);e=(h5(),h=bod(n.substr(1,3)),h.length==0?0:Xmd(h,10));m=Yr(a.a,e-1);if(m){c=(j=bod(n.substr(5,3)),j.length==0?0:Xmd(j,10));l=n.substr(8);f=0;for(d=0;d=9223372036854775807){return cvc(),$uc}e=false;if(a<0){e=true;a=-a}d=0;if(a>=$Kd){d=qvc(a/$Kd);a-=d*$Kd}c=0;if(a>=vzd){c=qvc(a/vzd);a-=c*vzd}b=qvc(a);f=Auc(b,c,d);e&&Guc(f);return f} +function Zw(a,b,c){var d;this.b=new Iqc;this.c=(Ot(),d=vuc(quc(Czc,1),lyd,462,0,[]),new gu(d));this.f=new CQ;this.e=new JG(b,c,new $w(this));this.i=a;Pu(this.e,Mv(this.i));this.i.p=this;Tw(this,new SE(this.i.k.b));Sw(this,this.i.k.a);Rw(this,this.i.k.b);Uw(this,this.i.k.b);fu(this.c,this.i)} +function cC(a,b,c){var d,e,f,g,h,j;j=new By;for(e=(h=(new drd(a.a)).a.mp().Qb(),new erd(h));e.a.Rc();){d=(f=e.a.Sc(),f.Ok());g=Ey(d);qx(j,g)}uB(b,new GD(c.zd(0),j));msd(dsd(j.r),dsd(c.zd(0).r))&&msd(dsd(j.s),dsd(c.zd(0).s))&&uB(b,new rE(a.e,new Srd(vuc(quc(LXc,1),lyd,168,0,[c.zd(0)])),a.o))} +function NK(a,b){var c,d,e;this.i=a;this.a=b;c=this.i.o.i.j;this.e=dT(c,this.a).fi();d=this.a.a?tK(this.i,this.a.a.c.Lh(),$Ub(this.a.a)):jXb(this.a);this.f=jw(this.i.o.i,d);this.c=sac(this.e,this.f);this.d=Aac(this.e,this.f);e=lad(this.f,this.e);this.b=(kBd+$wnd.Math.atan2(e.b,e.a)%kBd)%kBd} +function aab(a){var b,c,d;c=a.Vl();b=new yod;if(Cqd(c,(kcc(),icc))){b.a+=' RGROUPS=(1 ';nod(b,s9c(Eqd(c,icc)));b.a+=')'}if(Cqd(c,Ybc)){d=Hnd('u',Eqd(c,Ybc))?1:0;nod(b,Fab('UNSAT',d))}nod(b,bab(c,Wbc,'SUBST'));nod(b,bab(c,Tbc,'RBCNT'));nod(b,bab(c,Sbc,yDd));nod(b,bab(c,Qbc,'VAL'));return b.a} +function Kbb(a){var b,c,d;if(!a||!Hnd(hEd,Bld(a.a))){throw I8c(new bnd('this is not an atomArray node'))}this.b=new idb(Lbb(new lld(uld(a.a))));c=new jld(vld(a.a));this.a=new Dcb;for(d=0;de:g.d<=e&&g.c>e){l=g;break}}if(l){m.a[m.a.length]=l;_r(n,l)}}return m} +function etc(a,b){var c,d,e;if(a.b>a.d){while(a.da.p){e=a.b-a.p;for(c=0;c0){b.a=b.a.substr(0,0)+''+Ynd(b.a,e);a.d-=e;a.b-=e}}}} +function sxd(a,b,c,d){var e,f,g,h,j,l,m;f=a.a.b;e=qxd(f.c,b);m=ppd(0);if(Ood(m,c)>=0||Ood(f.c,c)<=0){return false}if(Ood(m,d)>=0||Ood(f.c,d)<=0){return false}l=Yod(d,f.c);g=Xod($od(e,l),f.c);h=Xod($od(c,l),f.c);g=Zod(f.a,g,f.b);h=Zod(a.a.a,h,f.b);j=Xod(Xod($od(g,h),f.b),f.c);return Rod(j,c)} +function qzb(a,b){var c,d,e;if(!b){rl(a.b,false);Ugd(a.a,(p$b(),vuc(quc(QWc,1),nyd,204,0,[n$b,l$b,m$b,o$b])).length);return}c=b.a!=-1;c&&HEb(a.b,''+b.a);rl(a.b,c);e=(p$b(),vuc(quc(QWc,1),nyd,204,0,[n$b,l$b,m$b,o$b]));for(d=0;d0&&c<119&&kvd(e.a,b,(qmd(),omd))==null}}if(e.a.c==0){return null}return e} +function Ync(){Xnc();var a,b,c;c=null;if(Wnc.length!=0){a=Wnc.join('');b=foc((boc(),aoc),a);!Wnc&&(c=b);Wnc.length=0}if(Unc.length!=0){a=Unc.join('');b=eoc((boc(),aoc),a);!Unc&&(c=b);Unc.length=0}if(Vnc.length!=0){a=Vnc.join('');b=eoc((boc(),aoc),a);!Vnc&&(c=b);Vnc.length=0}Tnc=false;return c} +function MV(a,b,c,d){var e,f;NV(a,b);e=Z9b(a.d);f=e.a+a.f;if(c.b.a.length!=0){ZW(c,f-(c.b.a.length==0?0:c.b.a[0].Ph()),a.a.b.b-WW(c));$W(c,SV(a.b,c.b.a.length==0?null:c.b.a[0].xh(),false))}if(!!d&&d.b.a.length!=0){!!a.e&&Q9b(e,a.e);f=e.a+a.f;ZW(d,f-(d.b.a.length==0?0:d.b.a[0].Ph()),e.b-WW(d))}} +function iRb(a,b){var c,d,e,f,g;if(a.c.a*a.c.c==0){return null}if(a.a){d=new hRb(a.a,b,a.b);e=d.c.a;nT(d.d,e);yRb(d.a,JS(d.b,e));f=d.a.c;g=new _Qb(d.d,d.b,new Yz(d.a));XQb(g,f,e,d.c.b&&O0b(d.c.a)?(Lud(),new Pud(Iud(Tu(d.c)))):(Lud(),Lud(),Kud),!!d.a.b);return (c=a.a,Oad(),c).f.Wn()}return null} +function LX(a){var b,c,d,e,f;f=new V9b;for(c=a.c.c,d=0,e=c.length;d0&&Pnd(e.substr(0,b))){nod((c.a+='&',c),e.substr(0,b+1));nod(c,R9c(e.substr(b+1)))}else{nod((c.a+='&',c),R9c(e))}}return c.a} +function Ln(a,b,c,d,e){var f,g,h,j;f=!!c&&c.a.length>0;if(!f&&a.a){a.d.Vb();return}a.d.P&&a.d.Vb();ph(a.c);for(h=new Frd(c);h.ac:f.d<=c&&f.c>c)&&Zr(a,f,0)!=-1){_r(a,f);break}}}} +function fed(a,b,c){var d,e,f,g;tdc(a);d=(abd(),abd(),Mic(c.U));e=ebd(Ajc((ujc(),d)),d);if(!b){mg(d,true);c.Ab(true);return}a.e=b;f=(null,Mic(b.U));g=ebd(Ajc(f),f);if(e>g){a.a=f;a.b=d;a.d=false}else{a.a=d;a.b=f;a.d=true}mg(a.a,a.d);mg(a.b,!a.d);a.a=null;a.b=null;a.e.Ab(false);a.e=null;c.Ab(true)} +function _jd(a){var b=$doc.createElement(Nzd);b.tabIndex=0;var c=$doc.createElement('input');c.type=tFd;c.tabIndex=-1;c.setAttribute(izd,jzd);var d=c.style;d.opacity=0;d.height='1px';d.width='1px';d.zIndex=-1;d.overflow=ozd;d.position=yzd;c.addEventListener(Yyd,a,false);b.appendChild(c);return b} +function lHb(){var a,b;this.d=new kid;a=new jq(this.d);this.b=new oHb(a);zm(this.b,'Text');this.c=new Idd(qHd);Of(this.c,FHd);pg(this.d,new pHb(this),(!Vpc&&(Vpc=new Ioc),Vpc));b=new Bjd;En(b,(qgd(),mgd));yjd(b,a);yjd(b,this.d);yjd(b,this.c);Cg(this.b,b);og(this.c,new mHb(this),(voc(),voc(),uoc))} +function Xad(b){var c=$doc.cookie;if(c&&c!=''){var d=c.split('; ');for(var e=d.length-1;e>=0;--e){var f,g;var h=d[e].indexOf('=');if(h==-1){f=d[e];g=''}else{f=d[e].substring(0,h);g=d[e].substring(h+1)}if(Vad){try{f=decodeURIComponent(f)}catch(a){}try{g=decodeURIComponent(g)}catch(a){}}b.pp(f,g)}}} +function sb(a,b){ob();var c,d,e,f,g,h;owd(nb,(Uvd(),Rvd))&&kwd(nb,'Checking valence for the 15th group.');c=a.a;if(Y(c)==15){d=a.d;e=a.b.Nl();h=a.b.Xl().c;g=a.f;if(d==6&&tb(a)){return dc(-g)}c==7?(f=qb(a,d,e,h,g,b)):(f=rb(c,d,e,h,g));return f}else{throw I8c(new Yc('Calling column 15 for atom'+c))}} +function uw(a,b){var c,d,e;d=a.a.a.f;c=(e=new es,Xr(e,dsd(b.u)),Xr(e,dsd(b.p)),Xr(e,dsd(b.s)),Xr(e,dsd(b.n)),Xr(e,dsd(b.o)),e);!!a.a.a.d&&(Xrd(),bs(c,new $9b));Rv(a.a,d,c);Rv(a.a,d,dsd(b.q));Rv(a.a,d,dsd(b.k));Rv(a.a,d,dsd(b.t));Rv(a.a,d,dsd(b.A));Sv(a.a,d,dsd(b.w));Sv(a.a,d,dsd(b.v));KS(a.a.b,d,b)} +function dab(a){var b;if(Hnd((WZb(),GXb).a,a.Il())&&Hnd('*',a.Gl())){return '*'}b=a.Il();if(n1b(a.Hl())){if(qtd((yab(),xab),b)){return 'C'}}else{if(Hnd(b,'L')){b=Rnd(a.Zl(),', ',',');if(Hnd(b.substr(0,4),'NOT[')){return Rnd(b,'NOT[','"NOT [')+'"'}return b}else if(Hnd(b,'A')){return a.Zl()}}return b} +function wpd(a,b){var c,d,e,f,g;d=b>>5;b&=31;if(d>=a.d){return a.e<0?(Nod(),Hod):(Nod(),Mod)}f=a.d-d;e=suc(uvc,jyd,23,f+1,15,1);xpd(e,f,a.a,d,b);if(a.e<0){for(c=0;c0&&a.a[c]<<32-b!=0){for(c=0;ce){d=lad(a.d.Lh(),a.c.Lh());e=$wnd.Math.atan2(d.b,d.a);if(e>=0){if(lBde){return dv(),av}return dv(),cv}return dv(),av}if(Zmd(e,0)>0){if(c==0){return dv(),av}return dv(),cv}else{if(c==0){return dv(),cv}return dv(),av}} +function nI(a,b){var c,d,e,f,g,h,j;h=lad(a.b,b);f=s5b(a.d,new B0b).a;for(d=new qsd(dsd(f.r).b.Qb());d.b.Rc();){c=d.b.Sc();c.mm(lad(c.Lh(),h))}g=(j=new jD(a.o.i),fD(j,dsd(a.o.i.C.n)),eD(j,dsd(f.r)),j);yE(bD(g),g.b);e=new wB;uB(e,RC(a.o.i,pI(f)));uB(e,new uC(a.o.i,a.o.i.C,bD(g)));yQ(a.o.f,vB(e,a.o.i))} +function cS(){cS=p9c;VR=new dS(ACd,0,'b','b');WR=new eS('BR',1,'br','br/');XR=new fS('DIV',2,Nzd,'br/',true);_R=new dS('STRONG',3,'strong','b');YR=new dS('EMPHASIZE',4,'em','i');ZR=new dS(BCd,5,'i','i');$R=new fS('P',6,'p','br/',true);bS=new dS(CCd,7,'sup','sup');aS=new dS('SUBSCRIPT',8,'sub','sub')} +function Web(a,b,c){var d,e;this.b=new q2;this.a=(_bb(),!!c&&Qs(c,$bb)?new ecb(new ccb):new ccb);e=new By;Teb(this,ieb(a,eFd),e,b,false);Teb(this,ieb(a,'agentList'),null,b,true);Teb(this,ieb(a,fFd),e,b,false);d=ieb(a,'arrow');!!d&&Ueb(this,new lld(uld(d.a)));zVb(this.b.a,e);cdb(this,Pkd(Fld(a.a)),b)} +function V7b(a,b){var c,d,e,f,g;this.d=new es;this.a=new es;this.c=new es;this.b=b;f=Q6b(a,P7b(a,dsd(a.a.w)),P7b(a,dsd(a.a.r)));for(d=new Frd(f);d.a0&&a.Hl()<119){return Kbc(),Cbc}else if(kvc(a,68)){return Kbc(),Gbc}else if(kvc(a,177)){return Kbc(),Ebc}else if(kvc(a,93)){return Kbc(),Hbc}else if(kvc(a,207)){return Kbc(),Dbc}else if(kvc(a,261)){return Kbc(),Fbc}else if(kvc(a,167)){return Kbc(),Ibc}return null} +function ye(a,b){if(b!=null){if(b){Yic(Wdd(a.a.o)).indexOf(Ryd)!=-1||Xdd(a.a.o,Ryd+Yic(Wdd(a.a.o))+Syd);Yic(Wdd(xl(a.a))).indexOf(Ryd)!=-1||Xdd(xl(a.a),Ryd+Yic(Wdd(xl(a.a)))+Syd)}else{Snd(Yic(Wdd(a.a.o)),Syd,'');Snd(Yic(Wdd(a.a.o)),Ryd,'');Rnd(Yic(Wdd(xl(a.a))),Syd,'');Rnd(Yic(Wdd(xl(a.a))),Ryd,'')}}} +function CD(a){var b,c,d,e,f;c=new wB;b=Bdb(a.c,a.b);uB(c,new rE(a.c,dsd(b.w),a.o));uB(c,new rE(a.c,cVb(Ndb(a.c,a.b)),a.o));for(e=new Frd(cVb(b));e.a1?(Cnd(),''+$wnd.Math.abs(f)):'');h=f>0;e||(j.a+=String.fromCharCode(h?43:8211),j);j.a.length>0&&Wr(g,IV(d,xV(a,new jX((HU(),xU),true),j.a)));e&&Wr(g,IV(d,mV(kX(a,b.Yd()),new jX((HU(),xU),true),h)))}return g} +function Thb(a,b){var c,d,e,f,g,h,j,l;for(f=b.Ne().Qb();f.Rc();){e=f.Sc();Uhb(a,e)}for(d=b.Re().Qb();d.Rc();){c=d.Sc();j=(O1b(),M1b)==c.c?Whb(a,c.a,c):Whb(a,c,c.a);l=Shb(a,c);eld(l,GEd,j);ehb(a.b.n.b,c.o,false,l)}for(h=b.Pe().Qb();h.Rc();){g=h.Sc();Vhb(a,g)}Ild(a.a.a)&&!Pkd(Fld(a.a.a))&&Lkd(a.b.f,a.a)} +function BCb(a,b,c){var d,e;this.a=a;this.e=b;this.b=c;a.c||yCb(b,c.Vk(a));this.c=(d=new Kgd,(abd(),d.U).style[ezd]='26px',e=this.b.Uk(this.a),HEb(d,d.b.Id(e)),d.U[mAd]=!e,og(d,new DCb(this),(cpc(),cpc(),bpc)),d);this.d=JAb();Qo(this.d,b.b);Qo(this.d,this.c);og(b.b,new CCb(this,b,c),(qoc(),qoc(),poc))} +function Phb(a,b){var c,d,e,f;e=Mhb(a,b);if(!Ohb(a,b,e)){Kfb(a.c.n.a,b,U(b)==PXc?'R':iib(b),e);a.c.n.f.Tj(b,tld(e.a,WDd),'atomprop',e);for(d=(f=b.Ji(),f.sd()||Q0((P0(),K0))?f:new Srd(vuc(quc(WYc,1),lyd,176,0,[f.zd(0)]))).Qb();d.Rc();){c=d.Sc();Wr(a.c.b,new b2(new Srd(vuc(quc(tWc,1),zBd,49,0,[b])),c))}}} +function eh(a){Fg.call(this);this.B=new xhd(this);this.r=(Fhd(),Chd);this.C='gwt-PopupPanelGlass';this.F=false;this.H=-1;this.L=new Nhd(this);this.N=-1;Lic((abd(),this.U),Ig.vc());Zg(this,0,0);Ig.Ho(fbd(this.U)).className='gwt-PopupPanel';Ig.Go(fbd(this.U)).className=zzd;this.s=true;this.t=true;this.I=a} +function IB(a,b){var c,d,e,f;c=Bdb(a.d,a.c);for(e=new Frd(cVb(c));e.a=0){d=e+1;d=0){a.a=Xnd(a.a,0,c)+''+Ynd(a.a,c+1);f-=a.a.length-c}return f} +function Yfd(a,b){var c,d,e,f;if(a.a==b){return}if(b<0){throw I8c(new lmd('Cannot set number of columns to '+b))}if(a.a>b){for(c=0;c=b;d--){qfd(a,c,d);e=sfd(a,c,d,false);f=kgd(a.c,c);f.removeChild(e)}}}else{for(c=0;c13&&f<17))){return false}b=true}}else{if(c!=8){return false}}}return true} +function nu(a,b){var c,d,e,f,g,h;a.b=(s$b(b),b.a);for(f=new Frd((t$b(b),b.b));f.aOH/2&&b>g&&WH(a,b)} +function tDb(a){var b,c,d;this.b=a;this.a=new Bm;zm(this.a,oHd);this.c=new Idd(qHd);Of(this.c,FHd);this.d=new kjd;b=new red(iId);kg((abd(),b.U),GHd,true);c=new Wo;Vo(c,(vgd(),tgd));Qo(c,b);Qo(c,this.d);d=new Bjd;En(d,(qgd(),mgd));yjd(d,c);yjd(d,this.c);Cg(this.a,d);og(this.c,new uDb(this),(voc(),voc(),uoc))} +function ST(a,b){var c,d,e,f;c=new dU(b);aU(c,(iz(),hz),(d=new jZ(a),new sU(new hW(new TT(a)),d,new AZ(d,a))));aU(c,ez,(e=new xZ(a,new pZ(a)),new sU(new bW(a,new ZV),e,new yZ(e))));aU(c,gz,(f=new xZ(a,new rZ),new sU(new bW(a,new mX),f,new AZ(f,a))));aU(c,fz,new sU(new bW(a,new lX(a)),new CT,new CT));return c} +function aV(a){var b,c,d,e;if(a.b.e.a.length==0&&a.a.Ml().vd()==2){c=a.a.Ml().Qb();d=lad(E2b(c.Sc(),a.a).Lh(),a.a.Lh());e=lad(E2b(c.Sc(),a.a).Lh(),a.a.Lh());b=$wnd.Math.abs((kBd+$wnd.Math.atan2(d.b,d.a)%kBd)%kBd-(kBd+$wnd.Math.atan2(e.b,e.a)%kBd)%kBd);if($wnd.Math.abs(jBd-b)<0.1746){return true}}return false} +function VUb(a,b){var c,d,e,f,g,h,j,l,m;h=new ltd;if(Mqd(a.a)!=0){l=new gs(b);for(g=new Frd((m=n5b(a.b),Pr(m,new drd(a.a)),m));g.a0&&dsd(b.k).b.vd()==1&&Q0b(dsd(b.k).a.zd(0))){h=J7b(new N7b(c),b);if(h){g=VUb(b.c,(l=new es,Xr(l,h.d),Xr(l,h.a),Xr(l,h.c),l));e=(Jkd(),Pkd(Ikd.$o()));f=new wgb(e);j=zib(f);Lkd(e,j);wib(a,f,j,b,h,g,d);return (old(),old(),nld).bp(e)}}return Dib(a,b,d)} +function iEb(a,b){var c,d,e,f;c=b.b;!c&&(c=mnd(0));f=new tQb(c.a);if(!Sx(a.a.i.A)&&!dsd(a.a.i.A.r).a.sd()&&Tx(a.a.i.A)){sQb(f,a.a)}else if(dsd(a.a.i.A.r).b.vd()==1){hEb(a,f,dsd(a.a.i.A.r).a.zd(0))}else if(hy(Lu(a.a.i).b)){hEb(a,f,dsd(Lu(a.a.i).b.r).a.zd(0))}else{e=(d=new I3b(uQb(f.a)),d);Yw(a.a,new BH(a.a,e))}} +function vic(a){var b,c,d,e,f,g,h;f=a.length;if(f==0){return null}b=false;c=new Ghc;while(Ohc()-c.a<16){d=false;for(e=0;ec.b.a&&b.b>c.b.b&&b.a-1){d=new yod;nod(d,f.substr(0,h));d.a+='.';c=$wnd.Math.min(h+1+4,f.length);b=f.substr(h+1,c-(h+1));d.a+=''+b;e=4-b.length;if(e>0){g=suc(svc,fyd,23,e,15,1);Jrd(g,g.length,48);d.a+=kod(g,0,g.length)}return d.a}return f+'.0000'} +function rxb(a){var b,c;b=new Bjd;kg((abd(),b.U),'mjs-details',true);yjd(b,new red('Details'));yjd(b,(c=new jjd,c.U[OHd]=a!=null?a:'',undefined,c.U.rows=4,undefined,c.U.cols=60,undefined,GEb(c,0),c.U['readOnly']=true,undefined,eg(c,jg(c.U)+'-'+'readonly',true),pg(c,new sxb(c),(!Vpc&&(Vpc=new Ioc),Vpc)),c));return b} +function Ykb(a,b,c){var d;this.c=b;this.d=c;this.e=new _nb;this.b=(d=new jn,kg((abd(),d.U),'mjs-main',true),kg(d.U,'mjs-focused',true),d);Okb(this,(Xm(),Um),Skb(this,false,true,(enb(),bnb)));Okb(this,Wm,Skb(this,true,true,dnb));Okb(this,Tm,Skb(this,true,false,anb));Okb(this,Vm,Skb(this,false,false,cnb));dn(this.b,a)} +function Nqb(a,b){var c,d,e,f,g,h,j;e=new std;j=new es;for(h=new Frd(cWb(a));h.a0||c&&d==0}}return false} +function Wyb(a){var b,c,d,e,f;f=new rhd;if(a.b!=(Kbc(),Gbc)){for(b=1;b<119;++b){hhd(f,(i1b(),b>0&&b<=126?h1b[b-1].c:null))}hhd(f,(v1b(),t1b).b);hhd(f,u1b.b)}if(a.b!=Cbc){for(c=(i1b(),vuc(quc(uvc,1),jyd,23,15,[119,120,121,122,123,124,125,126])),d=0,e=c.length;d0&&b<=126?h1b[b-1].c:null)}}return f} +function wBb(a){var b,c,d,e,f;f=new rhd;if(a.c!=(Kbc(),Gbc)){for(b=1;b<119;++b){hhd(f,(i1b(),b>0&&b<=126?h1b[b-1].c:null))}hhd(f,(v1b(),t1b).b);hhd(f,u1b.b)}if(a.c!=Cbc){for(c=(i1b(),vuc(quc(uvc,1),jyd,23,15,[119,120,121,122,123,124,125,126])),d=0,e=c.length;d0&&b<=126?h1b[b-1].c:null)}}return f} +function D5b(a,b){var c,d,e,f,g,h,j,l,m;e=new es;m=new es;for(l=new qsd(dsd(a.s).b.Qb());l.b.Rc();){j=l.b.Sc();Wr(m,B2b(j,b))}for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){c=d.b.Sc();Wr(e,c.El(b))}h=new es;for(g=new qsd(dsd(a.f).b.Qb());g.b.Rc();){f=g.b.Sc();Wr(h,f.El(b))}return new R5b(e,h,m,T1(a,(O$b(),M$b)),new b6b(a))} +function Frc(a,b,c,d,e){if(d<0){d=urc(a,e,vuc(quc(g6c,1),eyd,2,6,[yKd,zKd,AKd,BKd,CKd,DKd,EKd,FKd,GKd,HKd,IKd,JKd]),b);d<0&&(d=urc(a,e,vuc(quc(g6c,1),eyd,2,6,['Jan','Feb','Mar','Apr',CKd,'Jun','Jul','Aug','Sep','Oct','Nov','Dec']),b));if(d<0){return false}c.n=d;return true}else if(d>0){c.n=d-1;return true}return false} +function lb(a,b,c,d,e){var f;owd(hb,(Uvd(),Svd))&&lwd(hb,'Checking valence for the Sn.');if(c<0){return ec()}if(b<=0){return jb(c,d,50)}else{if(e>4&&(b==5||b==6)){return dc(0)}else if(e==0&&c==2&&b==2){return dc(0)}else if(e==0&&c==2){return dc(2-b)}f=yc(a.k,a.b,(ld(),bd));if(e==2&&f>=2){return dc(-a.f)}return dc(4-b)}} +function AI(a,b,c){var d,e,f,g,h,j,l,m;g=c>0.25666666666666665&&c<2.31;for(h=0;h=a.length){return false}h=a.charCodeAt(b[0]);if(h!=43&&h!=45){return false}++b[0];d=xrc(a,b);if(d<0){return false}h==45&&(d=-d)}if(h==32&&b[0]-c==2&&e.b==2){j=new Htc;l=j.r.getFullYear()-KKd+KKd-80;g=l%100;f.a=d==g;d+=(l/100|0)*100+(d'+Ds()+'+C'+'<\/b> ')+NHd)+'to copy the selected source above.')+NHd:YId+('Use '+(ZId+(''+Ds()+'+A<\/b>')+NHd)+', '+(ZId+(''+Ds()+'+C<\/b>')+NHd)+' to select and copy')+NHd} +function Itd(){if(!Object.create||!Object.getOwnPropertyNames){return false}var a='__proto__';var b=Object.create(null);if(b[a]!==undefined){return false}var c=Object.getOwnPropertyNames(b);if(c.length!=0){return false}b[a]=42;if(b[a]!==42){return false}if(Object.getOwnPropertyNames(b).length==0){return false}return true} +function KF(a,b){var c,d,e,f;if(jad(a.a,a.b)||jad(a.b,a.c)||jad(a.a,a.c)){return false}c=(b.b-a.a.b)*(a.b.a-a.a.a)-(b.a-a.a.a)*(a.b.b-a.a.b);e=(b.b-a.c.b)*(a.a.a-a.c.a)-(b.a-a.c.a)*(a.a.b-a.c.b);d=(b.b-a.b.b)*(a.c.a-a.b.a)-(b.a-a.b.a)*(a.c.b-a.b.b);f=c*d>0&&d*e>0;f||(f=LF(a.a,a.b,b)||LF(a.c,a.b,b)||LF(a.a,a.c,b));return f} +function byb(a,b,c){vd.call(this,lob(a,Cyd));ud(this,Fyd,lob(a,Fyd));this.a=a;this.b=b;this.c=c;!b.e&&(b.e=new Cqc);tqc(b.e,(_d(),$d),b,this);!c.e&&(c.e=new Cqc);tqc(c.e,$d,c,this);!a.e&&(a.e=new Cqc);tqc(a.e,(ce(),ce(),be),a,this);!b.e&&(b.e=new Cqc);tqc(b.e,(null,be),b,this);!c.e&&(c.e=new Cqc);tqc(c.e,(null,be),c,this)} +function L6b(a,b){var c,d,e;e=new es;for(d=new qsd(b.b.Qb());d.b.Rc();){c=d.b.Sc();Nr(a.r,dsd(c.r))&&Nr(a.s,dsd(c.s))&&Nr(a.A,dsd(c.A))&&Nr(a.t,(Xrd(),Xrd(),Urd))&&Nr(a.q,(Xrd(),Xrd(),Urd))&&Nr(a.w,(Xrd(),Xrd(),Urd))&&Nr(a.C,(Xrd(),Xrd(),Urd))&&Nr(a.u,dsd(c.u))&&Nr(a.B,(Xrd(),Xrd(),Urd))&&(e.a[e.a.length]=c,true)}return e} +function uac(a){var b,c,d,e,f,g,h,j,l,m;if(a.a.vd()==0){return null}f=OBd;c=LJd;g=OBd;d=LJd;h=OBd;e=LJd;for(m=(j=a.a.mp().Qb(),new erd(j));m.a.Rc();){l=(b=m.a.Sc(),b.Ok());l.a.ac&&(c=l.a.a);l.a.bd&&(d=l.a.b);l.be&&(e=l.b)}return new Sac((f+c)*0.5,(g+d)*0.5,(h+e)*0.5)} +function Icd(){Icd=p9c;Dcd={_default_:Ocd,dragenter:Ncd,dragover:Ncd};Fcd={click:Mcd,dblclick:Mcd,mousedown:Mcd,mouseup:Mcd,mousemove:Mcd,mouseover:Mcd,mouseout:Mcd,mousewheel:Mcd,keydown:Lcd,keyup:Lcd,keypress:Lcd,touchstart:Mcd,touchend:Mcd,touchmove:Mcd,touchcancel:Mcd,gesturestart:Mcd,gestureend:Mcd,gesturechange:Mcd}} +function w2(a,b){var c,d,e,f,g,h,j,l,m;e=new ltd;l=new is;g=new js(a);for(d=new Frd(b);d.a1){e=A9b(c);if(e.a.length==0){return null}g=(Xrd(),asd(e,new Hsd(new P9b)))+(b?jBd:0)}h=new qad(d*$wnd.Math.cos(g),d*$wnd.Math.sin(g));return new qad(h.a+a.a,h.b+a.b)} +function Gpd(a,b){var c,d,e,f,g;d=K8c(b,SLd);if(L8c(a,0)>=0){f=N8c(a,d);g=U8c(a,d)}else{c=_8c(a,1);e=b>>>1;f=N8c(c,e);g=U8c(c,e);g=J8c(Z8c(g,1),K8c(a,1));if((b&1)!=0){if(L8c(f,g)<=0){g=a9c(g,f)}else{if(T8c(a9c(f,g),d)){g=J8c(g,a9c(d,f));f=a9c(f,1)}else{g=J8c(g,a9c(Z8c(d,1),f));f=a9c(f,2)}}}}return Y8c(Z8c(g,32),K8c(f,SLd))} +function zY(a){var b,c,d,e,f;if(!a.p||a.p.a==null){return new ibc(GX(a,a.n),0,0)}b=FX(a,a.p.a,(HU(),GU).b,(z0(),y0));c=VQ(a.p.a,b.a);d=kH(EY(a),(!a.f&&(a.f=tac(a.j.e,a.c.Lh(),DY(a)*(a.w.a==(s6b(),r6b)||a.w.a==l6b||a.w.a==p6b?0.8:1))),a.f));d=new qad(d.a/2,d.b/2);e=d.a-b.c/2;f=d.b-b.a/2-c;return new ibc(new qad(e,f),b.c,b.a)} +function s6b(){s6b=p9c;m6b=new t6b(tyd,0,2);h6b=new t6b(uyd,1,4);q6b=new t6b(vyd,2,6);f6b=new t6b(wyd,3,3);r6b=new t6b('UP',4,2);l6b=new t6b(bDd,5,2);p6b=new t6b(cDd,6,2);i6b=new t6b(dDd,7,4);j6b=new t6b(eDd,8,4);o6b=new t6b(xyd,9,-1);n6b=new t6b(yyd,10,-1);k6b=new t6b(zyd,11,-1);e6b=new t6b(syd,12,-1);g6b=new t6b(Ayd,13,0)} +function khb(a,b){var c,d,e,f,g,h,j;if(n4b(b)){c=dsd(b.r).a.zd(0);d=(e=Eqd(a.e,c),!e&&!!a.j?Dhb(a.j,c):e);tld(d.a,xEd)!=null||eld(d,xEd,'0');j=Und(T1(b,(O$b(),N$b)),'-',0)[1];eld(d,gEd,j);f=c.Ml().Qb();g=Dhb(a,E2b(f.Sc(),c));h=Dhb(a,E2b(f.Sc(),c));eld(d,'mrvLinkNodeOut',tld(g.a,WDd)+','+tld(h.a,WDd));return true}return false} +function Vsc(a,b){var c,d,e,f;if(isNaN(b)){return 'NaN'}d=b<0||b==0&&1/b<0;d&&(b=-b);c=new yod;if(!isNaN(b)&&!isFinite(b)){nod(c,d?a.r:a.u);c.a+=WAd;nod(c,d?a.s:a.v);return c.a}b*=a.q;f=jtc(c,b);e=c.a.length+f+a.j+3;if(e>0&&e0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0));h=dsd(a.n).b.vd()>0&&!dsd(a.v).a.sd()&&!dsd(a.o).a.sd();if(_j(b,(kA(),hA))){for(d=F1(),e=0,f=d.length;e>19!=0){return '-'+Yuc(Quc(a))}c=a;d='';while(!(c.l==0&&c.m==0&&c.h==0)){e=yuc(_Kd);c=Buc(c,e,true);b=''+Xuc(xuc);if(!(c.l==0&&c.m==0&&c.h==0)){f=9-b.length;for(;f>0;f--){b='0'+b}}d=b+d}return d} +function Obb(a,b){var c,d,e;if(b.Fj(pEd)){e=new I3b(Xmd(b.Cj(pEd),10));Mbb(e,b)}else if(b.Fj(vEd)){d=b.Cj(vEd);if(b.Fj(wEd)){if(Hnd('2',d)){e=(c=new z2b((WZb(),sYb),(E0b(),C0b)),c)}else if(Hnd('3',d)){e=(c=new z2b((WZb(),sYb),(E0b(),D0b)),c)}else{throw I8c(new and)}}else{e=jUb(a);e.pm(Xmd(d,10))}}else{e=jUb(a)}Mbb(e,b);return e} +function afb(a,b){var c,d,e,f,g,h,j;if(Hnd(VDd,b.Uo())){if(qtd(a.b,b)){return true}if(_eb(b,iFd,null)){e=(h=kld(b.So(),hFd),h?Dld(h.a):null);c=(g=kld(b.So(),NEd),g?Dld(g.a):null);j=new is;d=Zeb(a,b,e,c,j);f=d?Yeb(d):Yeb(b.Vo());if(f!=null){Wr(j,(new icb(b)).a);Fqd(a.a,f)==null&&Iqd(a.a,f,j);ptd(a.b,b);return true}}}return false} +function Hib(a,b,c){var d,e,f,g,h,j,l,m;if(c.d.c+c.e.b!=0){h=_kd(a.a,a.b,cFd);for(f=new Vqd((new Sqd(c)).a);f.b;){e=Uqd(f);g=e.yp();j=e.Ok();d=(l=_kd(a.a,a.b,'property'),eld(l,'dictRef',g),bhb(l,azd,j.b),m=_kd(a.a,a.b,_Ed),bhb(m,aFd,j.a),Lkd(m,vgb(a,j.c)),Lkd(l,m),l);Lkd(h,d)}Ild(b.a)?Mkd(b,h,ild(new jld(vld(b.a)),0)):Lkd(b,h)}} +function Eyb(a){var b,c,d,e;e=Tf(a.f);b=Sf(a.f);if(!!a.d&&Syb(a.d)){c=Qyb(a.d);if(a.d.n==(Kbc(),Jbc)||a.d.n==Ibc||a.e==a.d.n&&!Cqd(c,(kcc(),jcc))){yQ(a.i.f,new rB(a.i.i,a.b,c));rm(a.f,false);a.i.i.w.Hf();return}else{d=Gyb(a.d.n,c);yQ(a.i.f,new QA(a.i.i,d,a.b,c));rm(a.f,false);a.i.i.w.Hf();return}}wic((pic(),oic),new Iyb(a,e,b))} +function us(a){var b,c,d;if(a==null||typeof a!=Zxd||a instanceof Boolean||a instanceof Date||a instanceof Number||a instanceof String||a instanceof RegExp){return a}if(a instanceof Array){b=[]}else if(a instanceof Object){b={}}else{return a}for(d in a){a.hasOwnProperty(d)&&(typeof a[d]===Zxd?(b[d]=us(a[d])):(b[d]=a[d]))}return b} +function lKb(a,b){bcb(b,jJd,new gob('Rectangle selection',(Ptb(),ysb),a.b,a.d));bcb(b,kJd,new gob('Freehand selection',(utb(),dsb),a.b,a.c));bcb(b,yHd,new gob('Electron flow single arrow',(ntb(),Yrb),a.b,a.f));bcb(b,xHd,new gob('Electron flow double arrow',(mtb(),Xrb),a.b,a.a));bcb(b,zHd,new gob('3D rotate',(Ntb(),wsb),a.b,a.e))} +function QVb(a,b){var c,d,e,f;if(Nr(b.r,dsd(a.n))&&Nr(b.s,dsd(a.p))&&Nr(b.A,dsd(a.o))&&Nr(b.t,dsd(a.q))&&Nr(b.q,dsd(a.k))&&Nr(b.w,dsd(a.t))&&Nr(b.C,dsd(a.A))&&Nr(b.u,dsd(a.s))&&Nr(b.B,dsd(a.u))){return PVb(a)}f=a.e||a.i.a.vd()!=0&&Nr(a.i,dsd(b.r));e=new B0b;c=zdb(Ndb(a,b),e);d=new JWb(c);wVb(d,c);d.e=f;f||(d.i=RVb(a,e));return d} +function Kb(){Kb=p9c;Jb=twd((Hmd(Bvc),Bvc.p));Ib=vuc(quc(uvc,2),lyd,44,0,[vuc(quc(uvc,1),jyd,23,15,[0,3]),vuc(quc(uvc,1),jyd,23,15,[0,4]),vuc(quc(uvc,1),jyd,23,15,[2,0]),vuc(quc(uvc,1),jyd,23,15,[2,2]),vuc(quc(uvc,1),jyd,23,15,[2,3]),vuc(quc(uvc,1),jyd,23,15,[4,0]),vuc(quc(uvc,1),jyd,23,15,[4,1]),vuc(quc(uvc,1),jyd,23,15,[6,0])])} +function kG(a,b){var c;if((b.a.deltaY<0?-3:3)==0){return}c=new qad(soc(b),toc(b));tlc(b.a);!!b.a&&slc(b.a);if(!!a.a.b.d&&bbc(a.a.b.d.b,c)){aw(a.a.n,new qad(0,-(b.a.deltaY<0?-3:3)*10));return}if(!!a.a.b.c&&bbc(a.a.b.c.b,c)){aw(a.a.n,new qad(-(b.a.deltaY<0?-3:3)*10,0));return}kw(a.a.n,b.a.deltaY<0?-3:3,false,new qad(soc(b),toc(b)))} +function sH(a,b){var c,d;if(!a.j||(c=vuc(quc(tWc,1),zBd,49,0,[a.d,LG(a)]),!!a.i&&!aVb(a.o.i.C,C2b(a.i))||!!a.d&&hy(Lu(a.o.i).b)&&a.d!=LG(a)&&!aVb(a.o.i.C,new Srd(c)))){return}d=b.Kf();dT(a.o.i.j,a.i).rh(d,KBd);if(!!a.d&&!lsd(dsd(a.o.i.C.n),a.d)){dT(a.o.i.j,a.d).rh(d,KBd);!!a.j&&!lsd(dsd(a.o.i.C.n),a.j)&&dT(a.o.i.j,a.j).rh(d,KBd)}} +function Nob(a){var b,c,d,e;c=false;a.c.a.Pb();if(Sx(a.b.i.A)){if(Lu(a.b.i).b){b=Bdb(Vw(a.b),Lu(a.b.i).b);for(e=new qsd(dsd(b.w).b.Qb());e.b.Rc();){d=e.b.Sc();kvc(d,189)&&(c=c|ptd(a.c,d))}}}else{b=Ndb(Vw(a.b),a.b.i.A);for(e=new qsd(dsd(b.w).b.Qb());e.b.Rc();){d=e.b.Sc();kvc(d,189)&&(c=c|ptd(a.c,d))}}ud(a,Byd,(qmd(),c?true:false))} +function Wcd(){$wnd.addEventListener(rKd,Yxd(function(a){var b=(Icd(),Ecd);if(b&&!a.relatedTarget){if('html'==a.target.tagName.toLowerCase()){var c=$doc.createEvent(SId);c.initMouseEvent(tKd,true,true,$wnd,0,a.screenX,a.screenY,a.clientX,a.clientY,a.ctrlKey,a.altKey,a.shiftKey,a.metaKey,a.button,null);b.dispatchEvent(c)}}}),true)} +function opd(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;q=b.length;l=q;if(b.charCodeAt(0)==45){n=-1;o=1;--q}else{n=1;o=0}g=(Bpd(),Apd)[c];f=q/g|0;t=q%g;t!=0&&++f;j=suc(uvc,jyd,23,f,15,1);d=zpd[c-2];h=0;r=o+(t==0?g:t);for(s=o;s1024&&(h=true);h&&Usc(a,c);etc(a,c);gtc(a,c);Ysc(a,c,g,e);Tsc(a,c);Ssc(a,c,f);h&&Rsc(a,c);j='0'.charCodeAt(0);j!=48&&Zsc(c,j);xod(c,0,b?a.r:a.u);nod(c,b?a.s:a.v)} +function ci(a){var b,c,d;b=a.a.fc();if(b<0){return null}if((b&192)!=0||(b&31)==31){throw I8c(new bmd('Longform or not universal class'))}c=di(a);d=b&31;if((b&32)!=0){switch(d){case 16:return bi(a,c);default:throw I8c(new bmd('tag: '+d));}}else{switch(d){case 2:return fi(a.a,suc(rvc,Kzd,23,c,15,1));default:throw I8c(new bmd('tag: '+d));}}} +function tC(a){var b,c,d,e,f,g,h,j;j=new std;Lr(j,a.k);e=x$b(new F$b,new ard(a.a)).a;Lr(j,dsd(Bdb(a.e,e).w));for(c=(f=(new drd(a.a)).a.mp().Qb(),new erd(f));c.a.Rc();){b=(d=c.a.Sc(),d.Ok());for(h=new qsd(dsd(a.e.w).b.Qb());h.b.Rc();){g=h.b.Sc();if(Ex(g,b)){if(!W5b(g)||!S5b(g,b)){j.a.pp(g,j);break}if(qC(a,b)){j.a.pp(g,j);break}}}}return j} +function eqd(a,b,c,d,e){var f,g;f=0;if(c$wnd.Math.abs(j)+gv){l.a.Pb();l.a.pp(b,l);f=$wnd.Math.abs(j)}else $wnd.Math.abs(f-$wnd.Math.abs(j))0){e=0;for(f=0;f1){d=e8b(f);_r(f,d);if(Zr(g,d,0)==-1){g.a[g.a.length]=d;e=false;h.a=suc(_5c,lyd,1,0,5,1);for(c=new Frd(f);c.a0&&c<=8&&c%2==0){for(m=0;m0?g.a.substr(1):null);eld(o.a.f,KAd,d);chb(a.a.f,NEd,d);return dld(o.a.f,WDd)} +function eeb(a,b){var c,d;d=beb(a,b);c=new jld(yld(d.a,UDd));if(zld(c.a)==0){if(!(Ild(d.a)&&Tr(new Srd((Oab(),Nab)),Gld(Pkd(xld(d.a)).a))!=-1)){throw I8c(new vqd("One of '{MDocument, cml}' is expected."))}if($db(d,vuc(quc(g6c,1),eyd,2,6,[VDd,WEd]))){throw I8c(new vqd('The given source may be a CML. MRV importer does not support it.'))}}return c} +function vhb(a){var b,c,d,e,f,g,h,j,l,m;for(l=new Frd(a.k);l.ac-b){b=j;c=l}j=l}j=j-kBd;if(g-j>c-b){b=j;c=g}return new qad(b,c)} +function Qz(a,b,c,d){var e,f,g,h,j,l,m,n,o,q;if(!!a.a&&!(dsd(d.r).a.sd()&&dsd(d.s).a.sd())){l=dsd(d.s);for(j=new qsd(l.b.Qb());j.b.Rc();){h=j.b.Sc();n=jw(b,h.c.Lh());o=jw(b,h.d.Lh());HHb(c,Oz(a,a.a),vuc(quc(T1c,1),tBd,5,0,[n,o]))}g=dsd(d.r);q=b.j;for(f=new qsd(g.b.Qb());f.b.Rc();){e=f.b.Sc();m=dT(q,e).Jh();GHb(c,m,OOb(a.a)*10,true,Pz(a.a,a.b))}}} +function Axd(a,b,c,d,e,f,g){var h,j,l,m,n;j=f?a.c:a.a;if(g){for(m=yxd(Bqd(ztd(j.d,c)),d),l=m;l>=1;l--){h=wxd(l,e);n=Bxd(b,j,c,d,h);if(!n){h=Gxd(b,h);n=Bxd(b,j,c,d,h)}if(n){return n}}}else{n=Bxd(b,j,c,d,e);if(!n){e=Gxd(b,e);n=Bxd(b,j,c,d,e)}if(n){return n}}throw I8c(new nQb("Can't find exported method for given arguments: "+d+':'+e.length+oyd+''))} +function N_(a,b,c,d){var e,f,g,h,j,l,m,n;j=new vT(false,10*c*a.a,true,d);b.ci()?(e=new X$(b.ci(),j)):(e=new P$(b.ei().a,b.ei().b,10*c*a.a,new xT(true,d)));f=b.gi();h=new HS(vuc(quc(nFc,1),nBd,106,0,[e]));for(m=0,n=f.length;m3){return ec()}if(c+d>5){return ec()}if(c<=0&&$wnd.Math.abs(c)+d>3){return ec()}if(c==0&&b-e+d>=4){h=(a.i||Ac(a),a.n);if(h>=1){return ub(h,b,d,f)}}return owd(nb,Svd)&&lwd(nb,'SetValenceOfN method called.'),dc(3-b+g-d)} +function Qb(a){Pb();var b,c,d,e,f;owd(Ob,(Uvd(),Rvd))&&kwd(Ob,'Checking valence for the 2nd group.');b=a.a;if(Y(b)==2){c=a.d;d=a.b.Nl();f=a.b.Xl().c;if(c==0&&d==0&&f==0){e=0}else if(d<0){return ec()}else if(c==0||c==2){e=2-c-f-d}else if(c==1&&d==1){e=1-f-1}else{return ec()}return dc(e)}else{throw I8c(new Yc('Calling column 2 for atom number: '+b))}} +function MC(a){var b,c,d,e,f,g;b=new es;for(d=new qsd(dsd(a.c.a.p).b.Qb());d.b.Rc();){c=d.b.Sc();for(f=new qsd(dsd(a.o.C.q).b.Qb());f.b.Rc();){e=f.b.Sc();g=lXb(e);Zr(g,c.c,0)!=-1&&Zr(g,c.d,0)!=-1&&((e.a?e.a.a:(vXb(),uXb))==(vXb(),rXb)?(b.a[b.a.length]=e,true):!!e.a&&Zr(C2b(c),e.a.b,0)!=-1&&Zr(C2b(c),e.a.c,0)!=-1&&(b.a[b.a.length]=e,true))}}return b} +function aK(a){var b,c,d,e,f,g,h,j,l,m;d=dT(a.d.j,a.a).b.c;if(!d||d.sd()){return Xrd(),Xrd(),Urd}l=new gs(d);b=eK(a);m=new std;c=a.a.Xl().c;for(h=b.Qb();h.Rc();){f=h.Sc();if(a.b){ptd(m,mnd(f.a*2+c));ptd(m,mnd(f.a*2+1+c))}else{ptd(m,mnd(f.a+c))}}for(g=(j=(new ard(m.a)).a.mp().Qb(),new brd(j));g.a.Rc();){f=(e=g.a.Sc(),e.yp());_r(l,d.zd(f.a))}return l} +function S6(a,b){var c,d,e;e=new E7;while((c=q7(b))!=null){if(Hnd(c.substr(0,3),'A ')){n6(a,(h5(),d=bod(c.substr(3,3)),d.length==0?0:Xmd(d,10)),q7(b))}else{!b7&&(b7=new d7);if(c7(b7,a,c)||F6(a,c)||E6(a,c));else if(Hnd(c.substr(0,4),'M S')||Hnd(c.substr(0,10),IDd)||Hnd(c.substr(0,10),JDd)){v7(e,c)}else if(Hnd(c.substr(0,6),kAd)){break}}}return e.a} +function T8(a){var b,c,d,e;c=a.Vl();if(Eqd(c,(kcc(),bcc))!=null){return 'A'}if(U8(a.Zl())&&(b=a.Vl(),Eqd(b,bcc)==null&&Eqd(b,gcc)!=null)){return a.Zl()}if(Eqd(c,gcc)!=null){return 'C'}e=a.Il();U(a)==sXc&&n1b(a.Hl())&&(Hnd(e,'M')||(d='H'.length,Hnd(e.substr(e.length-d,d),'H')))&&(Hnd((WZb(),GXb).a,a.Il())&&Hnd('*',a.Gl())?(e='*'):(e=UXb.a));return e} +function s9(a,b){var c,d,e,f,g,h,j,l,m;l=new yod;e=0;g=0;for(d=new Frd(b);d.a0){m=Und(l.a,oyd,0);for(h=0;h1){d[4]==2&&d[2]==1&&e==5?(g=-j):(g=4-e-j)}else{f=e-h;f==1?(g=2-j-h):f==2?(g=1-j-h):f==3?d[1]==2?(g=-j-h):d[2]==1?(g=1-j-h):(g=-j-h):d[4]==1&&d[2]==2&&f==5?(g=-j-h):d[2]>0?(g=4-j-e):(g=3-j-e)}return dc(g)} +function aDb(a,b){var c,d,e,f,g;f=new Am;g=new Idd(qHd);og(g,new cDb(b),(voc(),voc(),uoc));d=new zo;yo(d,a.a.a);e=new Wo;(abd(),e.U).style[ezd]=fzd;Uo(e,(qgd(),mgd));kg(g.U,FHd,true);Qo(e,g);oo(d,e,d.U);Cg(f,d);c=(Jg(),Ig).Go(fbd(f.U));vHd.length==0?(c.removeAttribute(azd),undefined):(c.setAttribute(azd,vHd),undefined);oed(f.d,vHd);return new dDb(f)} +function ow(a,b,c,d){this.q=d?new yz:null;this.B=new ltd;this.o=new Iqc;this.u=new Xu(this);Ru(this,MWb());this.A=new dz;bz(this.A,this);this.r=new OUb;Su(this,new Uz);this.v=new Vu(this,d);this.e=new ww(this);this.c=new Sz;this.i=new h0;this.a=b;this.j=new oT(b,b.o,new vv(this.r));this.b=new LS(this.j,b.o,b,this.v);QHb(this.a,this);this.k=a;this.f=c} +function Bm(){Jg();var a;ym.call(this,new wed);this.c=new ued('  ×');this.d=new ued('');this.b=new Wo;a=(abd(),hed(this.q));Qic(a,yjc((ujc(),a)));Lic(a,Rf(this.b));Vo(this.b,(vgd(),tgd));dg(this.b,'Caption');Qo(this.b,this.d);Of(this.c,sAd);Qo(this.b,this.c);Yg(this);!!this.A&&Tic(this.A,Azd);this.F=false;kg(Ig.Ho(fbd(this.U)),Azd,true)} +function eP(a,b){var c,d,e,f,g,h,j,l;if(!!b&&b.o==(s6b(),h6b)){if(!!a&&a.o==(s6b(),m6b)){c=0;h=0;for(f=(g=(new ard((l=new std,Lr(l,a.c.Ml()),Lr(l,a.d.Ml()),l.a.qp(a)!=null,l).a)).a.mp().Qb(),new brd(g));f.a.Rc();){e=(d=f.a.Sc(),d.yp());j=e.o;if(j==(s6b(),h6b)){++c;if(c>1){return null}}else if(j==m6b){++h}else{return null}}return c<2?a:null}}return null} +function _Y(){_Y=p9c;VY=new aZ(tyd,0,(s6b(),m6b));PY=new aZ(uyd,1,h6b);ZY=new aZ(vyd,2,q6b);NY=new aZ(wyd,3,f6b);$Y=new aZ('UP',4,r6b);TY=new aZ(bDd,5,l6b);YY=new aZ(cDd,6,p6b);QY=new aZ(dDd,7,i6b);RY=new aZ(eDd,8,j6b);XY=new aZ(xyd,9,o6b);WY=new aZ(yyd,10,n6b);SY=new aZ(zyd,11,k6b);MY=new aZ(syd,12,e6b);OY=new aZ(Ayd,13,g6b);UY=new aZ('HASHED',14,g6b)} +function Ybb(a,b){var c,d,e,f,g;if(Vnd(b,(Yab(),Pab).b)){Hqd(a,Pab.a,Hnd('a0',b)?'A':'a');return}if(Vnd(b,Xab.b)){Hqd(a,Xab.a,'u');return}if(Hnd(b,'R256')){Hqd(a,Tab.a,'');return}for(d=vuc(quc(oJc,1),nyd,184,0,[Wab,Qab,Tab,Rab,Uab,Sab,Vab,Xab,Pab]),e=0,f=d.length;ed.b.a&&b.b>d.b.b&&b.a0&&c<119&&kvd(h.a,b,(qmd(),omd))==null}if(h.a.c==0){return null}return h} +function WK(a,b,c,d){var e,f,g,h,j,l,m,n;g=new utd(b.a.a);Qqd(g,c);m=(new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_]))).b;j=new By;l=d.Kf();FS(L_(m,a.o.i,b),l);rx(j,b);for(f=(n=(new ard(c.a)).a.mp().Qb(),new brd(n));f.a.Rc();){e=(h=f.a.Sc(),h.yp());FS(J_(m,a.o.i,e),l);wx(j,new Srd(vuc(quc(tWc,1),zBd,49,0,[e])),e.Ml())}VT();$T(l,a.o.i.j,j,null,!!d.pe(),null)} +function p4(a){var b,c,d,e,f,g,h,j,l,m,n,o;e=null;n=w4(a.a.a);if(n){d=v9c(n.a,a.a.a);c=d.index;wod(a.a,0,c);o=d[0];b=o.length;if(n==(u4(),s4)){m=Und(o.substr(1),'"',0);f=new yod;f.a+='"';for(j=0,l=m.length;j=1||KJb(a,a.e.b*g,new qad(b.b.a+b.c/2,b.b.b+b.a/2)))&&(a.c=lad(a.c,lad(GJb(a,new qad(b.b.a+b.c/2,b.b.b+b.a/2)),new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2))))} +function GIb(a,b,c,d,e){var f,g,h,j,l,m;if(b==null){return new ibc(new pad,0,d9c(P8c($wnd.Math.round(c.b*(c.a?1:e)))))}g=a.a.el().textBaseline;h=a.a.el().font;IIb(a,(Dhc(),xhc));c.a?(l=LU(e,c.b,c.a)):(l=500);HIb(a,d.a+l+fJd);f=MU(a.a.el().font,b);m=Jgc(a.a.el(),b).width;Wgc(a.a.el(),g);Pgc(a.a.el(),h);if(!c.a){j=c.b*e;m=j*m/500;f=j*f/500}return new ibc(new pad,m,f)} +function sc(a,b){var c,d,e,f,g;owd(qc,(Uvd(),Rvd))&&kwd(qc,'Calculating valence for molecule.');f=b.b;g=new Sb;e=new $qd(f,0);d=new Dc;while(e.b=c.c&&a.a>=c.a;!a.c||!d?(e=$wnd.Math.min(a.b/c.c,a.a/c.a),f=new qad(-c.b.a*e,-c.b.b*e),f=kH(f,lad(new qad(a.b/2,a.a/2),new qad(c.c/2*e,c.a/2*e))),Ygc(b.a.el(),f.a,f.b),Ngc(b.a.el(),e,e),undefined):(g=new qad(-c.b.a,-c.b.b),g=kH(g,lad(new qad(a.b/2,a.a/2),new qad(c.c/2,c.a/2))),Ygc(b.a.el(),g.a,g.b),undefined)} +function hE(a){var b,c,d,e,f,g,h,j,l,m,n;n=new es;for(m=(f=(new drd(a.a)).a.mp().Qb(),new erd(f));m.a.Rc();){l=(b=m.a.Sc(),b.Ok());for(h=0,j=l.length;h0){b.charCodeAt(0)==47&&(f=1);d=b.substr(f,e-f);g=gS(d);if(!g){OR(a,b,e);return}else if((cS(),WR)==g){if(f==0){c=new KR(g);GR(c,a.c);a.a=true}}else if(f==1&&(XR==g||$R==g)){PR(a,g);a.b=true;a.a=false}else if(f==0&&(XR==g||$R==g)){NR(a,g,d,a.b);a.b=false;a.a=false}else{f==0?NR(a,g,d,false):PR(a,g);a.a=false}OR(a,b,e)}} +function Av(a,b,c){var d,e,f,g,h,j,l,m,n;if(a.a<=2){return false}f=0;h=a.b[a.a-1];j=a.c[a.a-1];for(g=0;g=h){continue}l=d}else{if(b>=d){continue}l=h}if(e=j){continue}if(b=e){continue}if(b0&&f){n='['+$md(c.Sl())+']';m=IV(e,xV(a,new jX((HU(),uU),d),j!=null?n+',':n))}j!=null&&(h=IV(e,xV(a,new jX((HU(),yU),d),j)));UW(l,iX(m,h,$wnd.Math.min(2,b.Yd())));g=IV(e,xV(a,new jX((HU(),vU),d),yS(b1b(c.Ji()),l.b.a.length!=0)));if(g){l=l.b.a.length==0?l:YW(l);UW(l,g)}return l} +function mhb(a,b,c,d,e){var f,g,h,j,l,m,n;h=new Jhb(a.n,e,false);m=b.Ok();qhb(h,c.np(m),d.np(b.Ok()));yhb(a,h,m);for(g=new Frd(b.$m());g.ab.length){throw I8c(new bmd('Wrong syntax. Expected: '+(j=new yod,j.a+='KEY',j.a+=' POSVALS{',mod(j,a.Ti().length),j.a+='}',j.a+=' KEYWORD=[VALUE|(n VALUE{n})]*',j.a)))}for(d=0;d0&&x9c((n4(),m4),h.a.a)){f=o4(h);a.Ri(f.a,f.b,g)}}return g} +function Wib(a,b){var c,d,e,f,g,h;d=new ltd;for(f=new qsd(dsd(b.u).b.Qb());f.b.Rc();){e=f.b.Sc();if(yYc==yYc){c=Cfb(a,(g=Dfb(a,(V8b(),U8b)==e.b?SEd:'MEllipse'),e.a!=null&&eld(g,TEd,e.a),e.c!=null&&eld(g,'lineColor',e.c),h=e.e,Lkd(g,Efb(a,h.b)),Lkd(g,Efb(a,kH(h.b,new qad(h.c,0)))),Lkd(g,Efb(a,kH(h.b,new qad(h.c,h.a)))),Lkd(g,Efb(a,kH(h.b,new qad(0,h.a)))),g));Atd(d.d,e,c)}}return d} +function zrb(){zrb=p9c;wrb=new F9c(nGd,(Z9c(),new U9c('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAo0lEQVR42u2POwqAMBBEU3gvc4J8WguvaGHvgsdQxINYaAIGQoi6iSsoOE3S7Lw3jP35TLTWpfsrpfgTgM4DALm9KZ09wEq6QgjRmsI+AAClfWMgUwCgWWFNpZSVeZcIACjsR855YQsjgHsrdvvalR4A4Lb9BSBvhW+PAECO/eDsEYC0FaE9EgDZ9kgAbkXMPgEAWfYJgPMV1uDsGAkA9udV2QAGs9U2b10I3gAAAABJRU5ErkJggg==')),24,24)} +function zW(a,b,c){var d,e,f,g,h,j,l,m,n,o;m=a;n=0;o=0;for(h=nW(b,(lac(),eac)).Qb();h.Rc();){f=h.Sc();l=a.b;if(fbc(f.a,a)){e=f.a.b.b-a.a-c-l.b;o+=e}}for(j=nW(b,gac).Qb();j.Rc();){f=j.Sc();m=gbc(m,new qad(n,o));l=m.b;if(fbc(f.a,m)){d=f.a.b.a-m.c-c-l.a;n+=d}}for(g=nW(b,kac).Qb();g.Rc();){f=g.Sc();m=gbc(m,new qad(n,o));l=m.b;if(fbc(f.a,m)){d=f.a.b.a-m.c-c-l.a;n+=d}}return new qad(n,o)} +function Ltb(){Ltb=p9c;usb=new bl(sGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMjAgOS41bC0yLTYtMS4xOCAxLjc3QTggOCAwIDEgMCAxMi41IDIwdi0yYTYgNiAwIDEgMSAzLjIxLTExLjA3TDE0IDkuNXoiIGZpbGw9IiM1MDUwNTAiLz48L3N2Zz4=')))} +function vKb(a,b,c,d){var e,f,g;qKb.call(this);this.b=a!=null?a:rDd;this.c=c!=null?H1(c):null;e=!b?{}:mPb(us(b));this.a=rKb(e);(DOb(),GOb(lJd in e?LOb((qmd(),e[lJd]?true:false)):(null,COb),(qmd(),false)))&&GKb(this.f,(MKb(),LKb));!!e.lonePairsVisible&&GOb(UGd in e?LOb(e[UGd]?true:false):(null,COb),false)&&GKb(this.f,(MKb(),KKb));this.d=!d?new Hkb:(f=new Hkb,g=new FKb(f),$jb(g,d),f)} +function B9(a,b){var c,d,e,f,g,h,j,l,m;g=a.f;if(g.a.length!=0){l=g.a.length;m=0;h=a.f;while(l>0){d=$wnd.Math.min(l,4);l=l-d;b.a+=LDd;nod(b,W8(d));for(e=0;e0){e.charCodeAt(0)==47&&(m=1);j=e.substr(m,l-m);qtd(V9c,j)&&(c=true)}if(c){m==0?(d.a+='<',d):(d.a+='<\/',d);qod((d.a+=''+j,d),62);nod(d,S9c(e.substr(l+1)))}else{nod((d.a+='<',d),S9c(e))}}return d.a} +function Pob(a,b,c){var d,e,f,g,h,j;d=new Cy(b);for(g=new Frd(cVb(c));g.a0){l[e]=m;break}else{h=j.index;l[e]=m.substr(0,h);m=Xnd(m,h+j[0].length,m.length);d.lastIndex=0;if(g==m){l[e]=m.substr(0,1);m=m.substr(1)}g=m;++e}}if(c==0&&a.length>0){f=l.length;while(f>0&&l[f-1]==''){--f}fb+d){return null}if(g<$wnd.Math.abs(b-d)){return null}f=(b*b-d*d+g*g)/(2*g);r=s+h*f/g;u=v+j*f/g;l=$wnd.Math.sqrt(b*b-f*f);o=-j*(l/g);q=h*(l/g);m=new qad(r+o,u+q);n=new qad(r-o,u-q);if(e==m.b>=n.b){return m}return n} +function cEb(a,b){var c,d,e,f,g,h,j,l,m;j=new Bjd;En(j,(qgd(),mgd));for(g=0,h=b.length;g1){return new Xac(d)}}return new Xac(null)} +function rqd(a,b,c){var d,e,f,g,h;for(f=0;f1){if(fFb(c.charCodeAt(0))){if(Xmd(bod(c.substr(1)),10)>=0){return c}}else if(fFb(Dnd(c,c.length-1))){if(Xmd(bod(Xnd(c,0,c.length-1)),10)>=0){return c}}b=Und(c,'-',0);if(b.length==2&&Xmd(bod(b[0]),10)>=0&&Xmd(bod(b[1]),10)>=0){return c}}if(Xmd(bod(c),10)>=0){return c}throw I8c(new bnd('wrong input:'+c))}return c} +function $tb(){$tb=p9c;Jsb=new bl('textBox',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMjAgNVY0aC01djFoMnYxNGgtMnYxaDV2LTFoLTJWNWgyem0tNSA0VjZINHYzaDFWN2gzdjExSDd2MWg1di0xaC0xVjdoM3YyaDF6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} +function f0(a,b){var c,d,e,f,g,h;g=new es;h=iw(a,b.e);Wr(g,(V8b(),U8b)==b.b?new G$(new vT(false,13,true,gCd),h):new $$(new qad(h.b.a+h.c/2,h.b.b+h.a/2),h.c*0.5,h.a*0.5,new vT(false,13,true,gCd)));for(d=(P8b(),vuc(quc(zYc,1),nyd,155,0,[N8b,O8b,J8b,I8b,M8b,L8b,H8b,K8b])),e=0,f=d.length;e36){throw I8c(new And('radix '+b+' out of range'))}e=a.length;f=e>0&&(a.charCodeAt(0)==45||a.charCodeAt(0)==43)?1:0;for(c=f;cdyd){throw I8c(new And(MLd+a+'"'))}return g} +function Vpd(a,b,c,d,e){var f,g,h,j,l,m,n,o,q;n=suc(j6c,lyd,50,8,0,1);o=a;n[0]=b;q=Ppd(b,b,d,e);for(h=1;h<=7;h++){n[h]=Ppd(n[h-1],q,d,e)}for(g=qpd(c)-1;g>=0;g--){if((c.a[g>>5]&1<<(g&31))!=0){m=1;f=g;for(l=$wnd.Math.max(g-3,0);l<=g-1;l++){if((c.a[l>>5]&1<<(l&31))!=0){if(l>1],o,d,e);g=f}else{o=Ppd(o,o,d,e)}}return o} +function mb(a){ib();var b,c,d,e,f,g,h,j;owd(hb,(Uvd(),Rvd))&&kwd(hb,'Checking valence for the 14th group.');c=a.a;if(Y(c)==14){d=a.d;h=a.b.Xl().c;e=a.b.Nl();b=$wnd.Math.abs(e);if(b>4||h>3){return ec()}j=d+b+h;f=4-j;switch(c){case 6:case 14:case 32:return dc(f);case 50:return lb(a,j,e,h,d-a.f);default:g=a.f;return kb(e,h,j,d==0,g);}}else{throw I8c(new Yc('Calling column 14 for atom number: '+c))}} +function vcb(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;l=(f=kld(a.So(),IEd),f?Dld(f.a):null);m=(g=kld(a.So(),JEd),g?Dld(g.a):null);c=(h=kld(a.So(),KEd),h?Dld(h.a):null);o=null;d=null;b=ieb(a,LEd);if(b){o=ucb(meb(b));c=(j=kld(new lld(uld(b.a)),KEd),j?Dld(j.a):null);d=(e=kld(new lld(uld(b.a)),MEd),e?Dld(e.a):null)}n=ycb(new zcb,l,m,o,c,d);q=(s6b(),h6b)==n&&d!=null&&d.indexOf('CARE')!=-1;return new Acb(n,q)} +function U3(b){var c,d,e;if(Hnd(b.substr(0,6),'"NOT [')&&(e=']"'.length,Hnd(b.substr(b.length-e,e),']"'))){c=new ETb(false,T3(Xnd(b,6,b.length-2)))}else if(Hnd(b.substr(0,1),'[')&&(d=']'.length,Hnd(b.substr(b.length-d,d),']'))){c=new ETb(true,T3(Xnd(b,1,b.length-1)))}else{try{c=jUb(b)}catch(a){a=H8c(a);if(kvc(a,20)){c=(eTb(),Y_b(),Gqd(X_b,b)?new E1b($_b(b)):new G1b(b))}else throw I8c(a)}}return c} +function I8(){if(!B8){B8=new _td;Ytd(B8,mnd(119),'*');Ytd(B8,mnd(120),'!#1!#6');Ytd(B8,mnd(122),'F,Cl,Br,I');Ytd(B8,mnd(121),'!#1!#2!#5!#6!#7!#8!#9!#10!#14!#15!#16!#17!#18!#33!#34!#35!#36!#52!#53!#54!#85!#86');Ytd(B8,mnd(123),'*,#1');Ytd(B8,mnd(124),'#1,!#6');Ytd(B8,mnd(125),'!#2!#5!#6!#7!#8!#9!#10!#14!#15!#16!#17!#18!#33!#34!#35!#36!#52!#53!#54!#85!#86');Ytd(B8,mnd(126),'F,Cl,Br,I,#1')}return B8} +function Euc(a,b,c,d,e,f){var g,h,j,l,m,n,o;l=Huc(b)-Huc(a);g=Suc(b,l);j=Auc(0,0,0);while(l>=0){h=Kuc(a,g);if(h){l<22?(j.l|=1<>>1;g.m=m>>>1|(n&1)<<21;g.l=o>>>1|(m&1)<<21;--l}c&&Guc(j);if(f){if(d){xuc=Quc(a);e&&(xuc=Vuc(xuc,(cvc(),avc)))}else{xuc=Auc(a.l,a.m,a.h)}}return j} +function $jb(a,b){Zjb(a,(kA(),eA),(DOb(),'clean2dws' in b?LOb(b['clean2dws']):(null,COb)));Zjb(a,fA,'clean3dws' in b?LOb(b['clean3dws']):(null,COb));Zjb(a,hA,vFd in b?LOb(b[vFd]):(null,COb));Zjb(a,iA,wFd in b?LOb(b[wFd]):(null,COb));Zjb(a,jA,xFd in b?LOb(b[xFd]):(null,COb));Zjb(a,gA,yFd in b?LOb(b[yFd]):(null,COb));Zjb(a,dA,zFd in b?LOb(b[zFd]):(null,COb));Zjb(a,cA,AFd in b?LOb(b[AFd]):(null,COb))} +function IM(a){var b,c,d,e,f,g,h,j;for(c=new Frd(Ix(a));c.a0?le){HHb(b.Kf(),a.j,vuc(quc(T1c,1),tBd,5,0,[new qad(l,0),new qad(l,5)]));g=new p0((pR(),mR),(NT(),HT),true);b.Kf().tf(new qad(l,10),''+e9c(P8c($wnd.Math.round(j%kBd*$Bd)))+UAd,_Bd,g);h=d>0?1:-1;f=h*15;while($wnd.Math.abs(d*15)>$wnd.Math.abs(f)){HHb(b.Kf(),a.i,vuc(quc(T1c,1),tBd,5,0,[new qad(l+f,0),new qad(l+f,2.5)]));f+=h*15}l+=d*15;j+=ZBd*d}} +function lM(a,b,c,d,e){var f,g,h,j,l;j=0;l=c;while(d>0?le){HHb(b.Kf(),a.j,vuc(quc(T1c,1),tBd,5,0,[new qad(0,l),new qad(5,l)]));g=new p0((pR(),kR),(NT(),HT),true);b.Kf().tf(new qad(10,l),''+e9c(P8c($wnd.Math.round(j%kBd*$Bd)))+UAd,_Bd,g);h=d>0?1:-1;f=h*15;while($wnd.Math.abs(d*15)>$wnd.Math.abs(f)){HHb(b.Kf(),a.i,vuc(quc(T1c,1),tBd,5,0,[new qad(0,l+f),new qad(2.5,l+f)]));f+=h*15}l+=d*15;j+=ZBd*d}} +function DP(a){var b,c,d,e;c=a.b.Kl()==1?CP(lad(kH(a.b.Lh(),lad(a.b.Lh(),E2b(a.b.Jl(0),a.b).Lh())),a.b.Lh())):CP(lad(E9b(a.b),a.b.Lh()));if(!a.p||dT(a.o.i.j,a.b).dg(a.p)){return c}b=CP(lad(tac(a.b.Lh(),gw(a.o.i,a.p),LBd),a.b.Lh()));if((d=(kBd+c%kBd)%kBd,e=(kBd+b%kBd)%kBd,$wnd.Math.min($wnd.Math.abs(d-e),$wnd.Math.abs($wnd.Math.max(d,e)-($wnd.Math.min(d,e)+kBd))))<0.20943951023931953){return c}return b} +function Ped(a,b,c){var d,e,f,g;this.d=a;this.b=b;this.a=new Bgd(b.a);e=(abd(),Okc($doc));f=Lkc($doc);g=Nkc($doc);d=Mkc($doc);this.c=Mkc($doc);_f(this,e);Lic(e,lbd(f));Lic(f,lbd(g));Lic(g,lbd(d));Lic(g,lbd(this.c));d['align']=KAd;d[sFd]=LAd;d.style[ezd]=zgd(this.a)+dzd;Lic(d,lbd(Rf(this.a)));kjc(this.c,c);pg(a,this,(!cqc&&(cqc=new Ioc),cqc));pg(a,this,_pc?_pc:(_pc=new Ioc));Qed(this.b,this.d.c,this.a)} +function Db(a){var b,c,d,e,f,g,h;owd(Bb,(Uvd(),Svd))&&lwd(Bb,'Checking valence for the halogens without radical and charge.');h=-1;c=a.a;b=a.d;g=b-a.f;if(g==0){h=1-a.f}else if(g==1){h=-a.f}else if((g==3||g==5)&&Gb(a)){h=-a.f}else if(g==7){if(c==53){d=zc(a.k,a.b,9,(ld(),gd));d==7&&(h=-a.f)}if(c>9){f=(a.i||Ac(a),a.o);e=(a.i||Ac(a),a.n);f==1&&e==3&&(h=-a.f);c==53&&f==5&&e==1&&(h=-a.f)}}else{h=1-b}return h} +function tA(a){var b,c,d,e,f,g,h,j,l;Lqd(a.d);for(h=new qsd(dsd(a.c.C.v).b.Qb());h.b.Rc();){g=h.b.Sc();if(g!=a.b){f=new By;for(c=new qsd(dsd(a.a.r).b.Qb());c.b.Rc();){b=c.b.Sc();Ex(g,b)&&mx(f,b)}for(e=new qsd(dsd(a.a.s).b.Qb());e.b.Rc();){d=e.b.Sc();Ex(g,d)&&nx(f,d)}for(l=new qsd(dsd(a.a.A).b.Qb());l.b.Rc();){j=l.b.Sc();Ex(g,j)&&tx(f,j)}dsd(f.A).b.vd()+dsd(f.r).b.vd()+dsd(f.s).b.vd()!=0&&Hqd(a.d,g,f)}}} +function hC(a,b){var c,d,e,f,g;c=b.c;d=b.d;if(Cqd(a.a,c)&&Cqd(a.a,d)){e=Eqd(a.a,c);g=Eqd(a.a,d);if(Zrd(e.Ml(),g.Ml())){f=new S2b(b.o,e,g);M2b(f,F2b(b));Wr(a.c,f)}}else if(Cqd(a.a,c)){if(!oC(d,Eqd(a.a,c))&&pvc(d)!==pvc(Eqd(a.a,c))){f=new S2b(b.o,Eqd(a.a,c),d);M2b(f,F2b(b));Wr(a.c,f)}}else if(Cqd(a.a,d)){if(!oC(c,Eqd(a.a,d))&&pvc(c)!==pvc(Eqd(a.a,d))){f=new S2b(b.o,c,Eqd(a.a,d));M2b(f,F2b(b));Wr(a.c,f)}}} +function g4(a,b,c){var d,e,f,g,h,j,l;f=f4(a);if(c.length==0){j=a.e.a.get('PARENT');j!=null&&O4(b,f,Xmd(j,10))}else if(c.length>2){g=i4(b,c);l=L4(b,g);if(l){l.n=_0b(f,l.n);return null}l=_1(g);l.n=_0b(f,l.n);return l}else if(c.length==1){J4(b,Xmd(c[0],10)).Hi(f)}else if(c.length==2){d=J4(b,Xmd(c[0],10));h=J4(b,Xmd(c[1],10));e=h4(b,new Srd(vuc(quc(tWc,1),zBd,49,0,[d,h])));!!e&&(e.b=_0b(f,e.b))}return null} +function Yab(){Yab=p9c;Wab=new Zab('TOTAL_H',0,(kcc(),Xbc),'H','^H[0-9]+$');Qab=new Zab(ODd,1,Rbc,'X','^X[0-9]+$');Tab=new Zab(PDd,2,Ubc,'R','^R[0-9]+$');Rab=new Zab(NDd,3,Sbc,'h','^h[0-9]+$');Uab=new Zab(QDd,4,Vbc,'r','^r[0-9]+$');Sab=new Zab('RING_BOND',5,Tbc,'rb','^rb(\\*|[0-9]+)$');Vab=new Zab(SBd,6,Wbc,'s','^(s)(\\*|[0-9]+)$');Xab=new Zab(RBd,7,Ybc,'u','^u1$');Pab=new Zab(wyd,8,Pbc,'a','^a[0-1]$')} +function zrc(a,b,c){var d,e,f,g;if(b[0]>=a.length){c.p=0;return true}switch(a.charCodeAt(b[0])){case 43:e=1;break;case 45:e=-1;break;default:c.p=0;return true;}++b[0];f=b[0];g=xrc(a,b);if(g==0&&b[0]==f){return false}if(b[0]=49&&(h5(),g=bod(f.substr(46,3)),1==(g.length==0?0:Xmd(g,10)))&&Wr(c.a,d);return d}catch(a){a=H8c(a);if(kvc(a,469)){throw I8c(new vqd('Too short line in atom block: '+f))}else if(kvc(a,20)){e=a;throw I8c(new vqd('Parsing atom line failed ['+f+']:'+e.i))}else throw I8c(a)}} +function KJb(a,b,c){var d,e,f,g;e=(g=new qad(20*a.e.b,-(20*a.e.b)),kH(new qad(c.a*g.a,c.b*g.b),kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)));d=a.e.b;iKb(a.e,b);a.c=mad(iad(a.c,new qad(d,d)),new qad(a.e.b,a.e.b));if(a.e.b!=d){a.c=kH(a.c,lad(e,(f=new qad(20*a.e.b,-(20*a.e.b)),kH(new qad(c.a*f.a,c.b*f.b),kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)))));return true}return false} +function $K(a,b){var c,d,e,f,g,h,j;h=hx(Lu(a.o.i));if(dL(cWb(a.o.i.C),dsd(h.r))){j=new gs(cWb(a.o.i.C));Pr(j,dsd(hx(Lu(a.o.i)).r));_K(a,b,j);return}if(!VK(a,dsd(h.r))||!eL(dsd(h.r))){_K(a,b,dsd(h.r));return}if(dsd(h.r).b.vd()>1&&!dsd(h.u).a.sd()){g=cL(h);if(g){WK(a,dsd(h.u).a.zd(0),g,b);return}}e=bL(dsd(h.r),a.a);f=b.Kf();if(e){for(d=new qsd(dsd(e.u).b.Qb());d.b.Rc();){c=d.b.Sc();dT(a.o.i.j,c).rh(f,KBd)}}} +function M_(a,b,c){var d,e,f,g,h,j;h=new es;j=iw(b,c.e);Wr(h,(V8b(),U8b)==c.b?new G$(new vT(false,10*a.a,true,a.b),j):new $$(new qad(j.b.a+j.c/2,j.b.b+j.a/2),j.c*0.5,j.a*0.5,new vT(false,10*a.a,true,a.b)));for(e=(P8b(),vuc(quc(zYc,1),nyd,155,0,[N8b,O8b,J8b,I8b,M8b,L8b,H8b,K8b])),f=0,g=e.length;f3||f+d>3?ec():d==0&&f==0?dc(0):d!=0&&f==0?d!=2?dc(0):ec():f!=0?dc(3-f-d):ec():d>=-1?dc(3-c-d-f):ec()));return e}else{throw I8c(new Yc('Calling column 13 for atom'+b))}} +function c0b(a,b){var c,d,e,f,g,h,j,l,m,n;l=new es;j=new es;m=new es;for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){c=d.b.Sc();n=c.El(b);Zr(j,n,0)!=-1||(j.a[j.a.length]=n,true)}for(h=new qsd(dsd(a.s).b.Qb());h.b.Rc();){g=h.b.Sc();n=B2b(g,b);Zr(l,n,0)!=-1||(l.a[l.a.length]=n,true)}for(f=new qsd(dsd(a.A).b.Qb());f.b.Rc();){e=f.b.Sc();n=K3b(e,b);Zr(m,n,0)!=-1||(m.a[m.a.length]=n,true)}return C$b(y$b(x$b(new F$b,j),l),m).a} +function zub(a,b){var c,d,e,f,g;Gub(a);d=Tub(b,a.d);g=a.b.i;f=hx((!g.s&&(g.s=new fx(g)),g.s.a));c=dsd(f.r).b.vd()+dsd(f.s).b.vd()+dsd(f.A).b.vd()+dsd(f.t).b.vd()+dsd(f.q).b.vd()+dsd(f.w).b.vd()+dsd(f.C).b.vd()+dsd(f.B).b.vd()+dsd(f.u).b.vd()==1&&!dsd(f.r).a.sd()?dsd(f.r).a.zd(0):null;if(d!=null){Hub(a,c,d)}else{if(c){e=dT(g.j,c);if(e){Fub(a,b,e.Jh(),c,(Nv(g)&&Uv(g),pw(g.e,c)));return}}Fub(a,b,a.b.a.p,c,(Z0b(),Y0b))}} +function Vwb(a,b){var c,d;if(!a.a&&!Sx(a.b.i.A)){d=a.b.i.A;if(Nr(d.r,dsd(b.r))&&Nr(d.s,dsd(b.s))&&Nr(d.A,dsd(b.A))&&Nr(d.t,dsd(b.t))&&Nr(d.q,dsd(b.q))&&Nr(d.w,dsd(b.w))&&Nr(d.C,dsd(b.C))&&Nr(d.u,dsd(b.u))&&Nr(d.B,dsd(b.B))){c=new Cy(d);Wx(c,b);return !(dsd(c.r).a.sd()&&dsd(c.s).a.sd()&&dsd(c.A).a.sd()&&dsd(c.t).a.sd()&&dsd(c.q).a.sd()&&dsd(c.w).a.sd()&&dsd(c.B).a.sd()&&dsd(c.u).a.sd()&&dsd(c.C).a.sd())}}return false} +function Nbb(a){var b,c,d,e;d=Sbb(a);if(d!=null){if(Hnd(d.substr(0,1),'L')){return Pbb(d.substr(1),a)}if(Hnd(d,'A')||Hnd(d,'Q')){return Rbb(d,a)}}if(a.Fj(mEd)){c=a.Cj(mEd);if(Tbb(c,vuc(quc(PWc,1),nyd,18,0,[(WZb(),IYb),OZb,GXb,hZb,LYb,QZb]))){if(Tbb(c,vuc(quc(PWc,1),nyd,18,0,[IYb,OZb,GXb,hZb,LYb,QZb]))){return Rbb(c,a)}}b=(eTb(),Y_b(),Gqd(X_b,c)?new E1b($_b(c)):new G1b(c));Mbb(b,a);return b}e=a.Cj(lEd);return Obb(e,a)} +function bub(){bub=p9c;Msb=new bl(rGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTEuNzUgNC41YTcuOTMgNy45MyAwIDAgMC00LjA4IDEuMTNMNi4yNSAzLjVsLTIgNmg2TDguNzggNy4yOWE2IDYgMCAxIDEgMyAxMS4yMXYyYTggOCAwIDAgMCAwLTE2eiIgZmlsbD0iIzUwNTA1MCIvPjwvc3ZnPg==')))} +function RP(a,b,c){var d,e,f,g,h,j,l;!!a.c&&WP(a);d=b.c.Lh();if(pP(a.b.a[0])==c){l=lad(b.c.Lh(),a.b.a[0].a.c.Lh());g=lad(b.d.Lh(),b.c.Lh());h=lad(a.b.a[0].a.d.Lh(),a.b.a[0].a.c.Lh());e=$wnd.Math.atan2(g.b,g.a);f=$wnd.Math.atan2(h.b,h.a);j=e-f}else{l=lad(b.c.Lh(),a.b.a[0].a.d.Lh());g=lad(b.d.Lh(),b.c.Lh());h=lad(a.b.a[0].a.c.Lh(),a.b.a[0].a.d.Lh());e=$wnd.Math.atan2(g.b,g.a);f=$wnd.Math.atan2(h.b,h.a);j=e-f}_P(a,d,l,j)} +function NT(){NT=p9c;DT=new OT('DEFAULT_ABSOLUTE',0,12,true);ET=new OT('DEFAULT_RELATIVE',1,12,false);JT=new OT('SMALLER_ABSOLUTE',2,8,true);KT=new OT('SMALLER_RELATIVE',3,8,false);LT=new OT('SMALL_ABSOLUTE',4,9.2,true);MT=new OT('SMALL_RELATIVE',5,9.2,false);IT=new OT('MIDDLE_RELATIVE',6,10.49,false);HT=new OT('MIDDLE_ABSOLUTE',7,10.49,true);FT=new OT('LARGE_ABSOLUTE',8,20,true);GT=new OT('LARGE_RELATIVE',9,20,false)} +function znd(){znd=p9c;var a;vnd=vuc(quc(uvc,1),jyd,23,15,[-1,-1,30,19,15,13,11,11,10,9,9,8,8,8,8,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5]);wnd=suc(uvc,jyd,23,37,15,1);xnd=vuc(quc(uvc,1),jyd,23,15,[-1,-1,63,40,32,28,25,23,21,20,19,19,18,18,17,17,16,16,16,15,15,15,15,14,14,14,14,14,14,13,13,13,13,13,13,13,13]);ynd=suc(vvc,fyd,23,37,14,1);for(a=2;a<=36;a++){wnd[a]=qvc($wnd.Math.pow(a,vnd[a]));ynd[a]=N8c(IBd,wnd[a])}} +function Zpd(a,b,c,d,e){var f,g;f=J8c(K8c(b[0],SLd),K8c(d[0],SLd));a[0]=d9c(f);f=$8c(f,32);if(c>=e){for(g=1;g0||ckBd)&&R9b(b,kH(a.b,new qad(a.d,0))),cQBd&&R9b(b,kH(a.b,new qad(0,a.d))),cjBd&&R9b(b,kH(a.b,new qad(-a.d,0))),c<$Cd&&e>$Cd&&R9b(b,kH(a.b,new qad(0,-a.d))),R9b(b,kH(a.b,new qad($wnd.Math.cos(c)*a.d,$wnd.Math.sin(c)*a.d))),R9b(b,kH(a.b,new qad($wnd.Math.cos(e)*a.d,$wnd.Math.sin(e)*a.d))),b} +function yrb(){yrb=p9c;vrb=new F9c('chiralFlag',(Z9c(),new U9c('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAvUlEQVR42u1TwQ2EMAxjgFvgFmCBLsAEp7ZSf2zABrcCKzADS7AFy3CJZKOoV3jxjKUqUdrYbqp2ncPhaCLnvMQYd1kDa5IHrT0iAPJdhR4XEJIR5F9LSIGU0oq4cY811OdbAW2kczRMFJD8kL1PKeVFMgojBp6/Iu9BsvAGdFqPSOvcQ37UY20JzCQ1SxsH69TeFLcZ1RzHyzPNx61nSFccEQ0g9iA+TeH8+0ogtMbGuo2WRHO+gX9yh+MfPzb3jw/PHFrCAAAAAElFTkSuQmCC')),24,24)} +function Lac(a,b,c){var d,e,f,h,j,l,m;f=0;if(!!a&&!!b&&!c.sd()){for(e=c.Qb();e.Rc();){d=e.Sc();if(b.a>d.b.a&&b.b>d.b.b&&b.aPlease select at least one element.<\/b>';yjd(d,c);yjd(d,(e=new Idd(qHd),og(e,new tyb(a),(voc(),voc(),uoc)),dyb(a,a.d,a.e,e),dyb(a,a.e,a.d,e),kg(e.U,FHd,true),gg(e,(qmd(),pmd)==Yxb(a.d,Fyd)||pmd==Yxb(a.e,Fyd)),e));yjd(d,a.c);return d} +function pEb(a){var b,c,d;this.e=new Kgd;this.a=new Udd('auto numbering');this.b=a;this.c=new tEb(this);zm(this.c,'R-group');this.d=new Idd(qHd);Of(this.d,FHd);hg(this.e,'50px');b=new red('R');kg((abd(),b.U),GHd,true);c=new Wo;Vo(c,(vgd(),tgd));Qo(c,b);Qo(c,this.e);d=new Bjd;En(d,(qgd(),mgd));yjd(d,c);yjd(d,this.a);yjd(d,this.d);Cg(this.c,d);og(this.e,new qEb(this),(_oc(),_oc(),$oc));og(this.d,new rEb(this),(voc(),voc(),uoc))} +function g0(a){var b,c,d,e,f,g,h;e=new vT(false,13,true,gCd);a.ci()?(b=new X$(a.ci(),e)):(b=new P$(a.ei().a,a.ei().b,13,(QQ(),PQ)));c=a.gi();d=new HS(vuc(quc(nFc,1),nBd,106,0,[b]));for(g=0,h=c.length;g0&&_hb(b,NEd,j.a.substr(1));d!=(bjb(),Yib)&&!d1b(c.n).sd()&&Zhb(b,(o=d1b(c.n),o.sd()||Q0((P0(),K0))?o:new Srd(vuc(quc(WYc,1),lyd,176,0,[o.zd(0)]))).Qb(),c.Lh());return b} +function fy(a,b){return b.Me().vd()==dsd(a.r).b.vd()&&b.Ne().vd()==dsd(a.s).b.vd()&&b.Re().vd()==dsd(a.A).b.vd()&&b.Oe().vd()==dsd(a.t).b.vd()&&b.Le().vd()==dsd(a.q).b.vd()&&b.Qe().vd()==dsd(a.w).b.vd()&&b.Te().vd()==dsd(a.C).b.vd()&&dsd(a.u).b.vd()==b.Pe().vd()&&b.Se().vd()==dsd(a.B).b.vd()&&Nr(a.r,b.Me())&&Nr(a.s,b.Ne())&&Nr(a.A,b.Re())&&Nr(a.t,b.Oe())&&Nr(a.q,b.Le())&&Nr(a.w,b.Qe())&&Nr(a.C,b.Te())&&Nr(a.u,b.Pe())&&Nr(a.B,b.Se())} +function tP(a,b){var c,d,e,f,g,h,j,l,m,n;a.c.a=suc(_5c,lyd,1,0,5,1);j=new jud;for(d=(n=b.a.mp().Qb(),new erd(n));d.a.Rc();){c=(l=d.a.Sc(),l.Ok());e=false;for(h=c.Ml().Qb();h.Rc();){f=h.Sc();if(crd(b,E2b(f,c))){j.a.pp(f,j);e=true}}e||Wr(a.c,new T$(jw(a.f,c.Lh()),6,a.d))}for(g=(m=(new ard(j.a)).a.mp().Qb(),new brd(m));g.a.Rc();){f=(l=g.a.Sc(),l.yp());Wr(a.c,new P$(jw(a.f,f.c.Lh()),jw(a.f,f.d.Lh()),10,a.d))}a.a=2.001;a.b=0.1;iS(a.e,50)} +function Xb(a){var b,c,d,e,f,g,h,j,l,m;d=a.b;h=a.f;j=d.Xl().c;l=a.c[1];e=a.c[2];m=a.c[3];c=a.c[4];f=(b=a.c[4],a.d+b+(b/2|0)+j-h);owd(Tb,(Uvd(),Rvd))&&kwd(Tb,'Nitrogenlike atom.');if(j>1||m!=0||f>5){return ec()}if(c==2){if(f==3){g=h>1?-h:0;return dc(g)}else if(f==4||f==5&&l==0){return dc(-h)}}else if(c==3&&f==4){g=-h;return dc(g)}else if(c==1){if(f==1){return dc(2-h)}else if(f>1&&f<4||f==4&&e==1||f==5&&l==0){return dc(-h)}}return ec()} +function Cab(a,b,c){var d,e,f,g,h,j,l,m;l=new yod;g=j8(a,c);j=0;for(h=0;h0;break;case 2:++a.k;a.j=true;break;case 3:a.k=$wnd.Math.max(0,a.k-1);a.j=a.k>0;break;case 4:++a.p;a.c=(pR(),nR);break;case 5:a.p=$wnd.Math.max(0,a.p-1);a.c=a.p>0?(pR(),nR):a.q>0?(pR(),hR):(pR(),kR);break;case 6:++a.q;a.c=(pR(),hR);break;case 7:a.q=$wnd.Math.max(0,a.q-1);a.c=a.q>0?(pR(),hR):a.p>0?(pR(),nR):(pR(),kR);break;case 8:a.xi();}} +function otb(){otb=p9c;Zrb=new bl(OFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgMTdjLTMuOTMgMC03LTIuMi03LTVzMy4wNy01IDctNSA3IDIuMiA3IDUtMy4wNyA1LTcgNXptMC04Yy0yLjcxIDAtNSAxLjM3LTUgM3MyLjI5IDMgNSAzIDUtMS4zNyA1LTMtMi4yOS0zLTUtM3oiIGZpbGw9IiM1MDUwNTAiLz48L3N2Zz4=')))} +function Uib(a,b){var c,d,e,f,g;for(d=new qsd(dsd(b.t).b.Qb());d.b.Rc();){c=d.b.Sc();rXc==rXc&&Cfb(a,(e=Pib(a.c,nFd),eld(e,'toption','NOROT'),eld(e,'fontScale','14.0'),eld(e,'halign',uAd),eld(e,sFd,uAd),eld(e,'autoSize',Mzd),Lkd(e,(f=Pib(a.c,oFd),eld(f,tDd,tFd),Oib(a.c,f,'+'),f)),g=cbc(new ibc(c.a,0,0),PBd),Lkd(e,Efb(a,g.b)),Lkd(e,Efb(a,kH(g.b,new qad(g.c,0)))),Lkd(e,Efb(a,kH(g.b,new qad(g.c,g.a)))),Lkd(e,Efb(a,kH(g.b,new qad(0,g.a)))),e))}} +function mq(a,b){var c,d;var e=a.contentWindow.document;if(e.execCommandShowHelp&&e.getSelection){c=e.getSelection();if(c.getRangeAt&&c.rangeCount){d=c.getRangeAt(0);d.deleteContents();var f=e.createElement('mainedit');f.innerHTML=b;var g=e.createDocumentFragment(),h,j;while(h=f.firstChild){j=g.appendChild(h)}d.insertNode(g);if(j){d=d.cloneRange();d.setStartAfter(j);d.collapse(true);c.removeAllRanges();c.addRange(d)}}return true}return false} +function mAb(a,b){var c,d,e,f,g,h;a.c=new Am;zm(a.c,uHd);Of(a.c,aId);c=new Wo;Vo(c,(vgd(),tgd));g=new ped;(abd(),g.U).innerHTML=bId;kg(g.U,GHd,true);f=new Wgd;f.U.multiple=false;Qo(c,g);Qo(c,f);kg(c.U,cId,true);h=new Fg;kg(h.U,dId,true);Cg(h,c);a.f=lAb(a,f);e=new Bjd;En(e,(qgd(),mgd));yjd(e,h);a.b=new Fg;yjd(e,a.b);a.d=new Fg;dg(a.d,cBd);yjd(e,a.d);d=new Idd(qHd);og(d,new qAb(a,b),(voc(),voc(),uoc));kg(d.U,FHd,true);yjd(e,d);Cg(a.c,e);oAb(a)} +function KGb(a){var b,c,d,e,f,g,h,j;j=new Bjd;En(j,(qgd(),mgd));d=new red('Both values can not be NONE.');(abd(),d.U).style[PFd]='red';mg(d.U,false);g=JGb();b=JGb();h=new Idd(qHd);kg(h.U,FHd,true);og(h,new OGb(a,g,b,d),(voc(),voc(),uoc));f=new ped;f.U.innerHTML='Line  ';c=new ped;c.U.innerHTML=VId;kg(f.U,GHd,true);kg(c.U,GHd,true);e=new $fd(2,2);Ffd(e,0,0,f);Ffd(e,0,1,g);Ffd(e,1,0,c);Ffd(e,1,1,b);yjd(j,e);yjd(j,d);yjd(j,h);return j} +function fqd(a,b){var c,d,e,f,g,h,j,l,m,n;g=a.e;j=b.e;if(j==0){return a}if(g==0){return b.e==0?b:new gpd(-b.e,b.d,b.a)}f=a.d;h=b.d;if(f+h==2){c=K8c(a.a[0],SLd);d=K8c(b.a[0],SLd);g<0&&(c=W8c(c));j<0&&(d=W8c(d));return ppd(a9c(c,d))}e=f!=h?f>h?1:-1:$pd(a.a,b.a,f);if(e==-1){n=-j;m=g==j?gqd(b.a,h,a.a,f):Ypd(b.a,h,a.a,f)}else{n=g;if(g==j){if(e==0){return Nod(),Mod}m=gqd(a.a,f,b.a,h)}else{m=Ypd(a.a,f,b.a,h)}}l=new gpd(n,m.length,m);Qod(l);return l} +function rb(a,b,c,d,e){var f,g,h,j;owd(nb,(Uvd(),Svd))&&lwd(nb,'Checking valence for the P, As, Sb, Bi.');if(c>5||c<-3){return ec()}if(d>3){return ec()}else if(c>0&&c+d>5){return ec()}else if(c<=0&&$wnd.Math.abs(c)+d>3){return ec()}if(a==83&&b==0&&c==0&&d==0&&e==0){return dc(0)}else if(c==3&&a!=15&&b==0&&d==0&&e==0){return dc(0)}g=(b+d<=3||c==0&&b+d-e<=3?(f=b+d+2):(f=b+d),f);j=c==0?0:(b<=3&&c>0?(h=c-2):(h=$wnd.Math.abs(c)),h);return dc(5-g-j)} +function ne(a,b){if(b!=null){if(b){Yic(Wdd(a.o)).indexOf(Ryd)!=-1||Xdd(a.o,Ryd+Yic(Wdd(a.o))+Syd);Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))).indexOf(Ryd)!=-1||Xdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f),Ryd+Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f)))+Syd)}else{Snd(Yic(Wdd(a.o)),Syd,'');Snd(Yic(Wdd(a.o)),Ryd,'');Rnd(Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))),Syd,'');Rnd(Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))),Ryd,'')}}} +function rI(a,b){var c,d,e,f,g,h,j,l;if(a.b.p){f=b.Kf();f.gl();e=jw(a.b.o.i,a.b.b);for(l=new qsd(aD(a.a).b.Qb());l.b.Rc();){h=l.b.Sc();GHb(f,jw(a.b.o.i,h[0].Lh()),8,true,(QQ(),NQ))}KHb(f,lad(a.b.p,e));for(j=new qsd(aD(a.a).b.Qb());j.b.Rc();){h=j.b.Sc();GHb(f,jw(a.b.o.i,h[1].Lh()),10,true,(QQ(),MQ))}WT(a.b.c,f,a.b.o.i.j,null,null);g=a.b.d.a;for(d=new qsd(dsd(g.f).b.Qb());d.b.Rc();){c=d.b.Sc();GHb(f,jw(a.b.o.i,c.Lh()),10,true,(QQ(),MQ))}f.qe()}} +function zcb(){var a,b,c,d;this.a=new Srd(vuc(quc(J7c,1),lyd,212,0,[(a=new ltd,Iqd(a,'MDL/4',(s6b(),p6b)),Iqd(a,'MDL/3',i6b),Iqd(a,'ChemAxon/C,T,CARE',i6b),Iqd(a,'ChemAxon/CTUnspec',j6b),Iqd(a,'ChemAxon/CTUnspec,CARE',j6b),Iqd(a,'cxn:coord',g6b),a),(b=new ltd,Iqd(b,'W',r6b),Iqd(b,'H',l6b),b),(c=new ltd,Iqd(c,'SD',o6b),Iqd(c,'SA',n6b),Iqd(c,'DA',k6b),Iqd(c,'Any',e6b),c),(d=new ltd,Iqd(d,'1',m6b),Iqd(d,'2',h6b),Iqd(d,'3',q6b),Iqd(d,'A',f6b),d)]))} +function DV(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;r=c.$l(TU(c));l=b.ce(c.Lh());m=new oX(r);s=m.a;f=m.b;j=m.a.a.length;h=0;q=new is;for(e=0;e0){j=h/60|0;l=h%60;e=a.r.getDate();c=a.r.getHours();c+j>=24&&++e;f=new $wnd.Date(a.r.getFullYear(),a.r.getMonth(),e,b+j,a.r.getMinutes()+l,a.r.getSeconds(),a.r.getMilliseconds());a.r.setTime(f.getTime())}}g=a.r.getTime();a.r.setTime(g+3600000);a.r.getHours()!=b&&a.r.setTime(g)} +function cid(l,a){var b=l.a;var c=$hd;var d=_hd;while(b.length>0){var e=b.pop();if(e.index1&&!dsd(b.u).a.sd()){g=dsd(b.u).a.zd(0);f=cL(b);if(f){if(!YK(g.a.a,f)){d=new W0b(f,g.b,g.o);c=vB(uB(uB(new wB,new DD(a.o.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[g]))).a)),new PC(a.o.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[d]))).a)),a.o.i);yQ(a.o.f,c)}return}}e=bL(dsd(b.r),a.a);!!e&&yQ(a.o.f,new PC(a.o.i,e))} +function $4b(a,b){var c,d,e,f,g,h;for(d=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).c.b).b.Qb());d.b.Rc();){c=d.b.Sc();b.We(c)&&b.Fe(gVb((!a.b&&(a.b=new l5b(a.c)),a.b).c,c))}for(h=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).b.b).b.Qb());h.b.Rc();){g=h.b.Sc();b.Xe(g)&&b.Ie(gVb((!a.b&&(a.b=new l5b(a.c)),a.b).b,g))}for(f=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).d.b).b.Qb());f.b.Rc();){e=f.b.Sc();_r(b.u,e)&&rx(b,gVb((!a.b&&(a.b=new l5b(a.c)),a.b).d,e))}} +function d5b(a,b){var c,d,e,f,g,h;for(d=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).c.a).b.Qb());d.b.Rc();){c=d.b.Sc();b.We(c)&&b.Fe(hVb((!a.b&&(a.b=new l5b(a.c)),a.b).c,c))}for(h=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).b.a).b.Qb());h.b.Rc();){g=h.b.Sc();b.Xe(g)&&b.Ie(hVb((!a.b&&(a.b=new l5b(a.c)),a.b).b,g))}for(f=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).d.a).b.Qb());f.b.Rc();){e=f.b.Sc();_r(b.u,e)&&rx(b,hVb((!a.b&&(a.b=new l5b(a.c)),a.b).d,e))}} +function Job(a,b){var c,d,e,f,g;g=a.a.i;f=(!g.s&&(g.s=new fx(g)),g.s.a).b;c=null;dsd(f.r).a.sd()?dsd(f.r).b.vd()+dsd(f.s).b.vd()+dsd(f.A).b.vd()+dsd(f.t).b.vd()+dsd(f.q).b.vd()+dsd(f.w).b.vd()+dsd(f.C).b.vd()+dsd(f.B).b.vd()+dsd(f.u).b.vd()==1&&!dsd(f.s).a.sd()&&(c=dsd(f.s).a.zd(0).c):(c=dsd(f.r).a.zd(0));if(c){for(e=new Frd(b);e.ad){c=b-j;e.a=suc(_5c,lyd,1,0,5,1);Wr(e,(b+j)/2)}}}f=a.a[0];h=Yr(a,a.a.length-1);if(Zmd(c,kBd-(h-f))<0){if($wnd.Math.abs(kBd-(h-f)-c)>d){l=(f+h)/2;Zmd(l,0)<0?(l=l-jBd):(l=l+jBd);e.a=suc(_5c,lyd,1,0,5,1);e.a[e.a.length]=l}else{l=(f+h)/2;Zmd(l,0)<0&&l-jBd}}return e} +function GW(a,b){var c,d,e;d=b.Hl();c=b.Ql();if(!QW(a.b,b)||!(b.Ql()>0&&(NW(b.Hl())||OW(b.Hl())||PW(b.Hl())))){return Iac(),Fac}if(LW(b)==0){return JW(CW,d)||c>1&&JW(EW,d)?(Iac(),Eac):JW(DW,d)||JW(EW,d)?(Iac(),Gac):(Iac(),Fac)}if(LW(b)==1){return HW(a,b,d,c)}if(MW(b,a.a)){return Iac(),Dac}return e=lad(a.a.ce(H9b(b.Lh(),false,I9b(b),LBd)),a.a.ce(b.Lh())),$wnd.Math.abs(e.a)+0.5>=$wnd.Math.abs(e.b)?e.a>0?(Iac(),Gac):(Iac(),Eac):e.b>0?(Iac(),Dac):(Iac(),Hac)} +function sJb(a,b,c,d,e,f){var g,h,j,l,m,n;f.d&&(l=!f.e.a,l&&Rgc(b,(ihc(),ahc).a),m=b.lineWidth,Ugc(b,$wnd.Math.min(5,3*a.a.Yd())),Wgc(b,(Dhc(),xhc).a),b.strokeStyle=XCd,undefined,Pgc(b,f.c.a+LU(a.a.Yd(),f.e.b,f.e.a)+fJd),n=rJb(b,c,d,f),Xgc(b,d,n.a,n.b),b.lineWidth=m,undefined,Rgc(b,(ihc(),ghc).a),undefined);h=f.c.a+LU(a.a.Yd(),f.e.b,f.e.a)+fJd;g=e==null?uBd:e;b.save();Wgc(b,(Dhc(),xhc).a);b.fillStyle=g;b.font=h;j=rJb(b,c,d,f);Hgc(b,d,j.a,j.b);b.restore()} +function Pfb(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s,t;h=dsd(a.a.f);if(h.a.sd()){return}g=ugb(a.c,jFd);f=new js(h);t=a.d.Qb();s=f.a.length;for(m=a.b.Qb();m.Rc();){l=m.Sc();e=J5b(a.a,l.c)?l.c:l.d;r=hs(f,e);r>-1?as(f,r,null):(r=s++);j=Khb(c,t.Sc());Lkd(g,Qfb(a,(o=(n=Eqd(b.e,e),!n&&!!b.j?Dhb(b.j,e):n),o?tld(o.a,WDd):null),r+1,j))}for(q=0;q0){return new i$b(o$b,c)}}catch(a){a=H8c(a);if(!kvc(a,65))throw I8c(a)}return new h$b(o$b)}else if(Vnd(b,m$b.a)){try{c=Xmd(Snd(b,m$b.a,''),10);if(c>0){return new i$b(m$b,c)}}catch(a){a=H8c(a);if(!kvc(a,65))throw I8c(a)}return new h$b(m$b)}throw I8c(new bnd('Unrecognizable value'))} +function P6b(a){var b,c,d,e,f;c=new gs(dsd(a.r));f=new By;while(c.a.length!=0){b=c.a[0];d=Ey(b);Or(c,dsd(d.r));Nr(a.r,dsd(d.r))&&Nr(a.s,dsd(d.s))&&Nr(a.A,dsd(d.A))&&Nr(a.t,dsd(d.t))&&Nr(a.q,dsd(d.q))&&Nr(a.w,dsd(d.w))&&Nr(a.C,dsd(d.C))&&Nr(a.u,dsd(d.u))&&Nr(a.B,dsd(d.B))||qx(f,d)}e=new Cy(a);dsd(f.r).a.sd()&&dsd(f.s).a.sd()&&dsd(f.A).a.sd()&&dsd(f.t).a.sd()&&dsd(f.q).a.sd()&&dsd(f.w).a.sd()&&dsd(f.B).a.sd()&&dsd(f.u).a.sd()&&dsd(f.C).a.sd()||Wx(e,f);return e} +function Tx(a){var b,c,d;for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){b=d.b.Sc();if(!a.Re().rd(b.Re())){return false}}if(Kx(a).a.length!=0||Nx(a).a.length!=0){return false}if(Qx(a)||Lx(a).a.length!=0){return false}if(Px(a)){return false}if(Jx(a).a.length!=0||Mx(a).a.length!=0){return false}if(Rx(a)){return false}for(c=a.Le().Qb();c.Rc();){b=c.Sc();if(!!b.c.fn()&&!a.Se().qd(b.c.fn().b)){return false}if(!!b.a.fn()&&!a.Se().qd(b.a.fn().b)){return false}}return true} +function A_(){A_=p9c;l_=new B_(YBd,0);n_=new B_('BOND',1);o_=new B_('BOND_WITH_EFLOWS',2);w_=new B_(jDd,3);y_=new B_('SGROUP_BRACKET',4);r_=new B_('ELECTRONFLOWARROW',5);k_=new B_('ARROW',6);u_=new B_('POINTOBJECT',7);z_=new B_('TEXT',8);t_=new B_('MULTIEDGE',9);v_=new B_('RECTANGULAROBJECT',10);x_=new B_('RGROUP_ATTACHMENT',11);m_=new B_('ATOM_WITH_EDGES',12);q_=new B_('DEFAULT_SHAPE',13);s_=new B_('INNER_EDGES_SHAPE',14);p_=new B_('CROSSING_EDGES_SHAPE',15)} +function lfb(a,b){var c,d;for(d=new Frd(a.a);d.a1){n=b.substr(1);for(h=Und(n,'&',0),j=0,l=h.length;j1?f[1]:'';try{o=(frc('encodedURLComponent',o),r=/\+/g,decodeURIComponent(o.replace(r,'%20')))}catch(a){a=H8c(a);if(!kvc(a,109))throw I8c(a)}q=m.np(e);if(!q){q=new es;m.pp(e,q)}q.od(o)}}for(d=m.mp().Qb();d.Rc();){c=d.Sc();c.zp(dsd(c.Ok()))}m=(Xrd(),new xsd(m));return m} +function Pxd(a,b){var c,d,e,f,g,h,j,l,m,n;for(e=0,m=b.length;e0){if(e<0&&m.a){e=j;f=l[0];d=0}if(e>=0){h=m.b;if(j==e){h-=d++;if(h==0){return 0}}if(!Crc(b,l,m,h,g)){j=e-1;l[0]=f;continue}}else{e=-1;if(!Crc(b,l,m,0,g)){return 0}}}else{e=-1;if(m.c.charCodeAt(0)==32){n=l[0];Arc(b,l);if(l[0]>n){continue}}else if(Wnd(b,m.c,l[0])){l[0]+=m.c.length;continue}return 0}}if(!Ltc(g,c)){return 0}return l[0]} +function t6(a){var b,c,d,e,f,g,h;b=bod(a.substr(31,3));Hnd(b,'R')&&(b='R#');e=u6(b);e.lm(new Sac((h5(),Wmd(bod(a.substr(0,10)))/FDd),Wmd(bod(a.substr(10,10)))/FDd,Wmd(bod(a.substr(20,10)))/FDd));a.length>=40&&e.hm(B6((g=bod(a.substr(37,3)),g.length==0?0:Xmd(g,10))));!K7&&(K7=new M7);L7(e,a);a.length>=64&&e.om((h=bod(a.substr(61,3)),h.length==0?0:Xmd(h,10)));if(e.Tl()==0){d=(f=bod(a.substr(34,3)),f.length==0?0:Xmd(f,10));if(d!=0&&-3<=d&&d<=4){c=l1b(e.Hl());e.pm(c+d)}}return e} +function CJb(a,b){var c,d,e;c=FJb(a,a.a);d=b.a;e=b.b;if(b.a>0&&c.b.a+d>=0){d=$wnd.Math.max(0,-c.b.a);c.b.a<=0&&(d+=1)}else if(b.a<0&&c.b.a+c.c+d<=a.d.a.p.Un().width){d=$wnd.Math.min(0,-(c.b.a+c.c-a.d.a.p.Un().width));c.b.a+c.c>=a.d.a.p.Un().width&&(d-=1)}if(b.b>0&&c.b.b+e>=0){e=$wnd.Math.max(0,-c.b.b);c.b.b<=0&&(e+=1)}else if(b.b<0&&c.b.b+c.a+e<=a.d.a.p.Un().height){e=$wnd.Math.min(0,-(c.b.b+c.a-a.d.a.p.Un().height));c.b.b+c.a>=a.d.a.p.Un().height&&(e-=1)}return new qad(d,e)} +function ztb(){ztb=p9c;isb=new bl(TFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxjaXJjbGUgY2xhc3M9ImNscy0yIiBjeD0iOCIgY3k9IjEyIiByPSIzIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIxNiIgY3k9IjEyIiByPSIzIi8+PC9nPjwvc3ZnPg==')))} +function iZ(a,b,c){var d,e,f,g,h,j,l,m,n,o,q;d=sac(a.e.pi(a.d),a.e.qi(a.d));g=fDd*a.c.Yd();l=qvc(d/g)+1;if(l>1){j=(d-l*g)/2;e=(c>0?1:3.5)*a.c.Yd();f=(c<0?1:3.5)*a.c.Yd();n=(f-e)/(l-1);m=suc(T1c,tBd,5,l,0,1);if(c>0){o=j;m[0]=new qad(j,0);o+=g;q=e;for(h=1;h>1);f=Ukc($doc)-$ic(a.U,$yd)>>1;Zg(a,$wnd.Math.max(Ykc($doc)+e,0),$wnd.Math.max(Zkc($doc)+f,0));if(!d){a.F=c;if(c){Ig.Io(a.U,szd);a.U.style[nzd]=tzd;!!a.A&&(a.A.style[nzd]=tzd,undefined);udc(a.L,Ohc())}else{a.U.style[nzd]=tzd;!!a.A&&(a.A.style[nzd]=tzd,undefined)}}} +function nGb(a,b,c,d,e){var f,g,h,j;this.a=new Wo;Of(this.a,'mjs-thumbPanel');Vo(this.a,(vgd(),tgd));Uo(this.a,(qgd(),mgd));g=new Dgd(a);bg(g,JFb,JFb);h='type: '+d+', size: '+(Cnd(),''+b)+'x'+(''+c);alc((abd(),g.U),h);h.length==0?(g.U.removeAttribute(azd),undefined):gjc(g.U,azd,h);Qo(this.a,g);j=new ped;zed(j.a,'\u21E6 Right click on this picture to save',false);j.U.className=QHd;Qo(this.a,j);f=new ued('  ×  ');kg(f.U,sAd,true);og(f,new oGb(this,e),(voc(),voc(),uoc));Qo(this.a,f)} +function SRb(a,b){var c,d,e,f,g;this.a=new LRb(a,b);this.d=MRb(this.a.b);c=new kjd;d=new Nn(c);Of(d.d,Azd);this.f=new Did((e=new rhd,ihd(e,this.d),e),c,d);Rf(this.f.a).setAttribute(Gzd,'search group');this.e=new Idd(qHd);Of(this.e,FHd);this.c=new Udd('Expand');Sdd(this.c,(qmd(),omd));Of(this.c,'mjs-expandCheckbox');f=new Wo;Vo(f,(vgd(),tgd));Qo(f,this.f);Qo(f,this.c);g=new Bjd;En(g,(qgd(),mgd));yjd(g,f);yjd(g,this.e);this.b=new URb(this);zm(this.b,tJd);Cg(this.b,g);og(this.e,new TRb(this),(voc(),voc(),uoc))} +function gT(a,b){var c,d,e,f,g,h,j,l,m,n,o,q;q=new es;for(m=new qsd(dsd(b.r).b.Qb());m.b.Rc();){l=m.b.Sc();Wr(q,(c=Xtd(a.d,l),c?c:new dV(l,a.n,a.f,a.f,a.f,a.s)))}for(o=new qsd(dsd(b.s).b.Qb());o.b.Rc();){n=o.b.Sc();Wr(q,(f=Xtd(a.e,n),f?f:US(a,n,fT(a,n.c),fT(a,n.d))))}for(d=new qsd(dsd(b.A).b.Qb());d.b.Rc();){e=d.b.Sc();Wr(q,(c=Eqd(a.p,e),c?c:new SZ(e,a.n,a.f,a.f,a.f,a.s)))}for(h=new qsd(dsd(b.u).b.Qb());h.b.Rc();){g=h.b.Sc();Wr(q,(f=Xtd(a.k,g),f?f:US(a,g,new c_(a.f.ce((j=mUb(g.a),j.a))),fT(a,g.b))))}return q} +function jqb(a,b){var c,d,e,f,g;g=a.a.i;e=(!g.s&&(g.s=new fx(g)),g.s.a).b;if(!!e&&!(dsd(e.r).a.sd()&&dsd(e.s).a.sd()&&dsd(e.A).a.sd()&&dsd(e.t).a.sd()&&dsd(e.q).a.sd()&&dsd(e.w).a.sd()&&dsd(e.B).a.sd()&&dsd(e.u).a.sd()&&dsd(e.C).a.sd())){for(d=new qsd(dsd(g.C.r).b.Qb());d.b.Rc();){c=d.b.Sc();if(Nr(c.r,dsd(e.r))&&Nr(c.s,dsd(e.s))&&Nr(c.A,dsd(e.A))&&Nr(c.t,dsd(e.t))&&Nr(c.q,dsd(e.q))&&Nr(c.w,dsd(e.w))&&Nr(c.C,dsd(e.C))&&Nr(c.u,dsd(e.u))&&Nr(c.B,dsd(e.B))){!!b&&(f=b.a.pp(c,b),f==null);return true}}}return false} +function efb(b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;j=ieb(b.b,jFd);o=new ltd;if(j){f=b.a.a;l=jeb(j,oEd);d=suc(tWc,zBd,49,l.a.length,0,1);for(h=new Frd(l);h.a1){try{Hqd(o,mnd(Xmd(n.substr(1),10)),mnd(t))}catch(a){a=H8c(a);if(!kvc(a,65))throw I8c(a)}}}Xr(c,new Srd(d));return dfb(o)}return Xrd(),Xrd(),Urd} +function erb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;En(c,(qmd(),false));t=MUb(a.a.i.r,Vw(a.a)).Qb();h=new utd(dsd(b.s));r=new utd(h);l=new std;m=new std;while(r.a.vd()!=0&&t.Rc()){s=t.Sc();q=new std;for(g=(o=(new ard(r.a)).a.mp().Qb(),new brd(o));g.a.Rc();){e=(j=g.a.Sc(),j.yp());if(s.qd(e)){if(Nr(h,s)){Lr(m,s);Lr(q,s);!c.a&&drb(s)&&En(c,true);break}Lr(l,s)}}Qqd(r,q)}Qqd(h,l);Lr(h,m);d=new std;for(f=(n=(new ard(h.a)).a.mp().Qb(),new brd(n));f.a.Rc();){e=(j=f.a.Sc(),j.yp());Lr(d,C2b(e))}return y$b(x$b(new F$b,d),h).a} +function Mac(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s;g=a.a;n=a.b;h=b.a;o=b.b;j=c.a;q=c.b;l=d.a;r=d.b;e=(g-h)*(q-r)-(n-o)*(j-l);if(e==0){return 0}m=((j-l)*(g*o-n*h)-(g-h)*(j*r-q*l))/e;s=((q-r)*(g*o-n*h)-(n-o)*(j*r-q*l))/e;f=new qad(m,s);if(m+0.1<$wnd.Math.min(g,h)||m-0.1>$wnd.Math.max(g,h)){return 0}if(m+0.1<$wnd.Math.min(j,l)||m-0.1>$wnd.Math.max(j,l)){return 0}if(s+0.1<$wnd.Math.min(n,o)||s-0.1>$wnd.Math.max(n,o)){return 0}if(s+0.1<$wnd.Math.min(q,r)||s-0.1>$wnd.Math.max(q,r)){return 0}return rac(a.a,a.b,0,f.a,f.b,0)} +function $C(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;o=new es;b=new _td;n=$wnd.Math.max(a.j.a.j.e.b*10,1);l=0;for(j=new Frd(a.e);j.a=h?Ypd(a.a,f,b.a,h):Ypd(b.a,h,a.a,f)}else{e=f!=h?f>h?1:-1:$pd(a.a,b.a,f);if(e==0){return Nod(),Mod}if(e==1){o=g;n=gqd(a.a,f,b.a,h)}else{o=j;n=gqd(b.a,h,a.a,f)}}l=new gpd(o,n.length,n);Qod(l);return l} +function F6(a,b){var c,d,e,f,g,h,j,l;if(Hnd(b.substr(0,6),'M RGP')){e=(h5(),j=bod(b.substr(6,3)),j.length==0?0:Xmd(j,10));if(e>8){throw I8c(new vqd('Rgroup Label Location (M RGPnn{count}): count > 8'))}for(f=0;f3&&(e[1]!=1||e[4]!=2||e[2]!=0||h!=0)&&(e[1]!=0||e[2]!=0||e[4]!=2||h!=1)&&(e[1]!=0||e[2]!=0||e[4]!=3||h!=0)){return ec()}if(g>1){j<=2?(f=3-d-h):j==3&&e[4]==2?(f=4-d-h):(f=-g)}else if(g==1){if(j==2&&e[1]==1||j==3&&e[4]==2){return dc(0)}else j<=2&&e[1]==0?(f=3-d-h):(f=-1)}else{if(j==2&&e[1]==1||j==3&&(e[4]==2||h==1)||j==4&&h==1){return dc(0)}else j<=2&&e[1]==0&&(f=3-d-h)}return dc(f)} +function bFb(a,b,c,d){var e;e=new yod;e.a+="
    <\/span> <\/div>
    <\/span> <\/span> <\/div>";return new G9c(e.a)} +function X1(a,b){var c;if(b){if(T(b,a.o)){return}if(T(a,b)){throw I8c(new bnd('The parent s-group cannot be itself.'))}c=new is;R1(b,c);if(hs(c,a)!=-1){throw I8c(new bnd('This s-group cannot be in the parent hierarchy of its new parent'))}if(!(Nr(b.r,dsd(a.r))&&Nr(b.s,dsd(a.s))&&Nr(b.A,(Xrd(),Xrd(),Urd))&&Nr(b.t,(Xrd(),Xrd(),Urd))&&Nr(b.q,(Xrd(),Xrd(),Urd))&&Nr(b.w,(Xrd(),Xrd(),Urd))&&Nr(b.C,(Xrd(),Xrd(),Urd))&&Nr(b.u,dsd(a.u))&&Nr(b.B,(Xrd(),Xrd(),Urd)))){throw I8c(new bnd('The whole s-group is not in the new parent s-group'))}}a.o=b} +function zb(a,b,c,d,e){var f,g,h,j;owd(vb,(Uvd(),Svd))&&lwd(vb,'Checking valence for the S, Se, Te, Po.');j=b+d;h=j-e;if(c==0){j==0?(f=2):j>6?h>4?(f=6-j):h>2?(f=4-j):(f=2-j):j==3?(f=-1):j==5?e>0?(f=-1):(f=1):d>0&&h==2?(f=2-j):h<3?(f=2-j):(f=j%2)}else if(c<0){if(c<-2){return ec()}else{f=c==-2?0:1;f-=j;if(f==-2){g=(a.i||Ac(a),a.n);g==1&&c==-1&&j==3&&(f+=2)}else if(f<=-4){g=(a.i||Ac(a),a.n);g==2?(f+=4):c==-1&&(j==5||j==6)?(f+=4):c==-2&&j==4&&(f+=4)}}}else{if(c>6){return ec()}a.a==16?c==1&&h<4?(f=4-j-1):(f=6-j-c):(f=xb(c,e,j))}return dc(f)} +function li(a){ki();var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;l=a.length;if(l%4!=0){throw I8c(new bnd('Length of Base64 encoded input string is not a multiple of 4.'))}while(l>0&&a[l-1]==61){--l}r=l*3/4|0;t=suc(rvc,Kzd,23,r,15,1);m=0;s=0;while(m127||g>127||h>127||j>127){throw I8c(new bnd(Lzd))}b=ji[f];c=ji[g];d=ji[h];e=ji[j];if(b<0||c<0||d<0||e<0){throw I8c(new bnd(Lzd))}n=b<<2|c>>>4;o=(c&15)<<4|d>>>2;q=(d&3)<<6|e;t[s++]=n<<24>>24;s>24);s>24)}return t} +function HU(){HU=p9c;tU=new JU('ATOMLABEL',0,(NT(),ET),null,true);BU=new JU(GCd,1,KT,null,true);zU=new JU('IMPLICITH_LABEL',2,ET,null,true);AU=new JU('IMPLICITH_VALUE',3,KT,null,true);xU=new JU(HCd,4,MT,null,true);yU=new IU(ICd,5,KT,JCd);CU=new IU('QUERY_PROPERY',6,KT,JCd);uU=new IU('ATOM_MAP',7,KT,JCd);GU=new IU('STEREO',8,KT,uBd);vU=new IU('ATTACHED_DATA',9,IT,'rgb(105,105,105)');DU=new IU('RGROUP_ATTACHMENT_ORDER',10,KT,KCd);EU=new IU('RGROUP_LIGAND_ORDER',11,ET,uBd);wU=new IU('BOND_LABEL',12,KT,uBd);FU=new IU('RGROUP_TITLE',13,IT,uBd)} +function wDb(a){var b;Lqd(a.a);a.b=new Bm;zm(a.b,KGd);Of(a.b,LId);b=new $fd(5,4);vDb(a,(YDb(),UDb),0,0,b);vDb(a,PDb,0,1,b);vDb(a,NDb,0,2,b);vDb(a,ODb,0,3,b);vDb(a,MDb,1,0,b);vDb(a,HDb,1,1,b);vDb(a,FDb,1,2,b);vDb(a,GDb,1,3,b);vDb(a,RDb,2,0,b);vDb(a,SDb,2,1,b);vDb(a,QDb,2,2,b);vDb(a,TDb,2,3,b);vDb(a,JDb,3,0,b);vDb(a,KDb,3,1,b);vDb(a,IDb,3,2,b);vDb(a,LDb,3,3,b);vDb(a,XDb,4,0,b);vDb(a,EDb,4,1,b);vDb(a,VDb,4,2,b);vDb(a,WDb,4,3,b);a.d=new Ufd;Cg(a.d,b);og(a.d,new ADb(a),(cpc(),cpc(),bpc));pg(a.d,new yDb(a),(!Vpc&&(Vpc=new Ioc),Vpc));Cg(a.b,a.d)} +function Vg(a,b){var c,d,e,f;if(b.a||!a.K&&b.b){a.I&&(b.a=true);return}a.Xb(b);if(b.a){return}d=b.d;c=Ng(a,d)||Mg(a,d);c&&(b.b=true);a.I&&(b.a=true);f=(abd(),zcd((ujc(),d).type));switch(f){case 512:case 256:case 128:{(d.keyCode|0)&hyd;(d.shiftKey?1:0)|(d.metaKey?8:0)|(d.ctrlKey?2:0)|(d.altKey?4:0);return}case 4:case uzd:{if(_ad){b.b=true;return}}if(!c&&a.s){a.Wb(true);return}break;case 8:case 64:case 1:case 2:case vzd:{if(_ad){b.b=true;return}break}case wzd:{e=tjc.An(d);if(a.I&&!c&&!!e){e.blur&&e!=$doc.body&&e.blur();b.a=true;return}break}}} +function fNb(){this.b=new ltd;this.a=(JMb(),oJd);cNb(this,tMb);cNb(this,(EMb(),oMb));cNb(this,(GMb(),qMb));cNb(this,(FMb(),pMb));cNb(this,(IMb(),sMb));cNb(this,(DMb(),nMb));cNb(this,(HMb(),rMb));cNb(this,(KMb(),uMb));cNb(this,(YMb(),MMb));cNb(this,($Mb(),OMb));cNb(this,(_Mb(),PMb));cNb(this,(aNb(),QMb));cNb(this,(ZMb(),NMb));cNb(this,(XMb(),LMb));cNb(this,(ENb(),yNb));cNb(this,(FNb(),zNb));cNb(this,(GNb(),ANb));cNb(this,(lNb(),hNb));cNb(this,(kNb(),gNb));cNb(this,(wNb(),sNb));cNb(this,(xNb(),tNb));cNb(this,(qNb(),mNb));cNb(this,(rNb(),nNb))} +function nab(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u;n=new ltd;for(c=new Frd(a.a);c.a');nod(d.a,R9c(o));nod(d.a,'<\/strong>')}m=w.a}if(f==0){continue}H9c(d,j.substr(f));u=new thd(j,(new J9c(d.a.a)).a);v.a[v.a.length]=u}}return v} +function ejd(){var a,b,c,d;this.a=new Wo;$i(this,this.a);this.Q==-1?obd((abd(),this.U),1|(this.U.__eventBits||0)):(this.Q|=1);(abd(),this.U).className='gwt-TabBar';agc();Kdc(Tfc,Rf(this.a));Vo(this.a,(vgd(),sgd));a=new ved;b=new ved;a.U.className='gwt-TabBarFirst';b.U.className='gwt-TabBarRest';a.U.style[czd]=fzd;b.U.style[czd]=fzd;Qo(this.a,a);Qo(this.a,b);a.U.style[czd]=fzd;c=Lo(this.a,a);!!c&&(c[czd]=fzd,undefined);d=Lo(this.a,b);!!d&&(d[ezd]=fzd,undefined);Mic(a.U).className='gwt-TabBarFirst-wrapper';Mic(b.U).className='gwt-TabBarRest-wrapper'} +function YWb(a,b,c){var d,e,f,g,h,j,l;if(qtd(a.a,c)||Zr(W3b(b),c,0)==-1){return 0}if(Zr(W3b(b),c,0)==0){h=new _qd(W3b(b),1,W3b(b).a.length)}else if(Zr(W3b(b),c,0)==W3b(b).a.length-1){h=new _qd(W3b(b),0,W3b(b).a.length-1)}else{h=new _qd(W3b(b),Zr(W3b(b),c,0)+1,W3b(b).a.length);Lr(h,new _qd(W3b(b),0,Zr(W3b(b),c,0)))}l=0;f=true;e=new $qd(h,0);d=c;while(e.b0&&f){j=e.a.zd(e.c=--e.b);ZWb(d,j)?++g:(f=false);d=j}l<2&&(l=0);g<2&&(g=0);return l+g} +function a$b(){WZb();return vuc(quc(PWc,1),nyd,18,0,[sYb,tYb,EYb,PXb,NXb,UXb,PYb,XYb,kYb,TYb,QYb,KYb,HXb,vZb,ZYb,qZb,ZXb,JXb,BYb,VXb,sZb,EZb,MZb,bYb,MYb,lYb,aYb,UYb,dYb,TZb,pYb,rYb,KXb,tZb,TXb,CYb,jZb,yZb,RZb,UZb,RYb,NYb,BZb,pZb,nZb,aZb,FXb,WXb,zYb,xZb,rZb,CZb,yYb,PZb,cYb,OXb,DYb,XXb,dZb,SYb,bZb,wZb,jYb,qYb,AZb,gYb,wYb,hYb,GZb,SZb,GYb,uYb,zZb,NZb,kZb,YYb,AYb,eZb,MXb,vYb,FZb,_Yb,RXb,cZb,LXb,oZb,oYb,iZb,EXb,DZb,$Yb,HZb,WYb,fZb,IXb,$Xb,SXb,YXb,iYb,nYb,JYb,VYb,FYb,lZb,eYb,uZb,QXb,xYb,OYb,fYb,mZb,_Xb,LZb,mYb,JZb,HYb,KZb,IZb,DXb,gZb,IYb,OZb,GXb,hZb,LYb,QZb])} +function yrc(a,b){var c,d,e,f,g;c=new zod;g=false;for(f=0;f0){lrc(a,c,0);c.a+=String.fromCharCode(d);e=qrc(b,f);lrc(a,c,e);f+=e-1;continue}if(d==39){if(f+13 or <5',false),a.n.a=e,e),sad(a.c));agd(c,(f=new Hdd,kg(f.U,FHd,true),mg(f.U,true),kjc(f.U,qHd),og(f,a.j,(voc(),voc(),uoc)),f),sad(a.e));agd(c,(g=new Hdd,kg(g.U,FHd,true),mg(g.U,true),kjc(g.U,'Delete All'),og(g,a.k,(null,uoc)),g),sad(a.i));return c} +function Puc(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J;c=a.l&8191;d=a.l>>13|(a.m&15)<<9;e=a.m>>4&8191;f=a.m>>17|(a.h&255)<<5;g=(a.h&1048320)>>8;h=b.l&8191;j=b.l>>13|(b.m&15)<<9;l=b.m>>4&8191;m=b.m>>17|(b.h&255)<<5;n=(b.h&1048320)>>8;F=c*h;G=d*h;H=e*h;I=f*h;J=g*h;if(j!=0){G+=c*j;H+=d*j;I+=e*j;J+=f*j}if(l!=0){H+=c*l;I+=d*l;J+=e*l}if(m!=0){I+=c*m;J+=d*m}n!=0&&(J+=c*n);q=F&XKd;r=(G&511)<<13;o=q+r;t=F>>22;u=G>>9;v=(H&262143)<<4;w=(I&31)<<17;s=t+u+v+w;B=H>>18;C=I>>5;D=(J&4095)<<8;A=B+C+D;s+=o>>22;o&=XKd;A+=s>>22;s&=XKd;A&=YKd;return Auc(o,s,A)} +function mC(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;a.f=new std;a.i=new std;for(q=new qsd(dsd(a.e.o).b.Qb());q.b.Rc();){n=q.b.Sc();Ytd(a.b,n,mnd((!n.b&&(n.p?GWb(n.p):(n.b=mnd(0))),n.b?n.b.a:0)))}for(c=(l=(new ard(a.a)).a.mp().Qb(),new brd(l));c.a.Rc();){b=(f=c.a.Sc(),f.yp());Lr(a.f,b.Ml());Lr(a.i,b.Ul());for(o=new qsd(b.Re().b.Qb());o.b.Rc();){n=o.b.Sc();Ytd(a.j,n,b)}}a.c=new es;for(e=(m=(new ard(a.f.a)).a.mp().Qb(),new brd(m));e.a.Rc();){d=(f=e.a.Sc(),f.yp());hC(a,d)}a.d=new es;for(h=(j=(new ard(a.i.a)).a.mp().Qb(),new brd(j));h.a.Rc();){g=(f=h.a.Sc(),f.yp());iC(a,g)}} +function Dtb(){Dtb=p9c;msb=new bl(YFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmV9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjwvZz48cGF0aCBkPSJNOCAxMmg2djFIOHptNi0xbDMgMS41LTMgMS41TTQgOS4xOWwtMSAuODgtLjYtLjY5TDQgOGgxdjhINHptMTYgMGwtMSAuODgtLjYtLjY5TDIwIDhoMXY4aC0xeiIgZmlsbD0iIzUwNTA1MCIgaWQ9Ikljb25zIi8+PC9zdmc+')))} +function Whd(o,a,b,c,d){var e=o.d;var f=o.c;var g=o.a;if(a.length>b.length+g){var h=':'+a.slice(b.length,b.length+g);if(f.hasOwnProperty(h)){var j=f[h];var l=b+h.substr(1);j.ro(a,l,c,d)}}else{for(var m in e){if(m.indexOf(':')!=0){continue}var l=b+m.substr(1);l.indexOf(a)==0&&c.od(l);if(c.vd()>=d){return}}for(var h in f){if(h.indexOf(':')!=0){continue}var l=b+h.substr(1);var j=f[h];if(l.indexOf(a)==0){if(j.b<=d-c.vd()||j.b==1){j.qo(c,l)}else{for(var m in j.d){m.indexOf(':')==0&&c.od(l+m.substr(1))}for(var n in j.c){n.indexOf(':')==0&&c.od(l+n.substr(1)+'...')}}}}}} +function TF(a,b){a.a=null;if(a.b.c){if(bbc(a.b.c.e,b)){a.b.c.c=true;eG(a.i);a.a=b;return true}else if(bbc(a.b.c.f,b)){a.b.c.c=true;eG(a.j);a.a=b;return true}else if(bbc(a.b.c.d,b)){a.b.c.c=true;a.a=b;return true}else if(bbc(a.b.c.a,b)){a.b.c.c=true;aw(a.n,WJb(a.b,b,false));a.a=b;return true}}if(a.b.d){if(bbc(a.b.d.e,b)){a.b.d.c=true;eG(a.k);a.a=b;return true}else if(bbc(a.b.d.f,b)){a.b.d.c=true;eG(a.f);a.a=b;return true}else if(bbc(a.b.d.d,b)){a.b.d.c=true;a.a=b;return true}else if(bbc(a.b.d.a,b)){a.b.d.c=true;aw(a.n,WJb(a.b,b,true));a.a=b;return true}}return false} +function lyb(a){var b,c,d,e,f,g,h,j,l;b=$wnd.Math.min($wnd.Math.min($wnd.Math.max(0,parent.innerHeight),5000),zad());Qxb=$wnd.Math.max(1,b/500);for(d=new Frd(a.f);d.a0?''+b.Ol():null);m!=null&&Otd(e.e,zEd,m);n=b.Rl();n!=0&&Iqd(e,sEd,''+n);Ofb(e,d);a.a.Nj(b.Cf(),d)} +function hyb(a,b,c){var d,e,f,g,h,j,l,m,n,o;g=new Frd(b);e=0;h=(i1b(),f1b);d=e1b;while(g.a=57&&e<=71){++h;Ffd(c,9,h,Rxb(gyb(a,(g.b=g.a++,g.c.a[g.b]))));Kfd(c.d,9,h).className=WHd}else{if(e>=89&&e<=103){++d;Ffd(c,10,d,Rxb(gyb(a,(g.b=g.a++,g.c.a[g.b]))));Kfd(c.d,10,d).className=WHd}}}else{j=h1b[e-1].e;Ffd(c,j,f,Rxb(gyb(a,(g.b=g.a++,g.c.a[g.b]))));Kfd(c.d,j,f).className=WHd}}l=Sxb(gyb(a,a.d));m=Sxb(gyb(a,a.e));n=new Fg;o=new Fg;kg((abd(),n.U),XHd,true);kg(o.U,XHd,true);Cg(n,l);Cg(o,m);Ofd(c.d,9,3);Ofd(c.d,10,3);Ffd(c,9,0,n);Ffd(c,10,0,o)} +function ehb(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s,t;e=(q=new ltd,r=(s6b(),g6b)==b?'cxn:coord':null,r!=null&&Otd(q.e,KEd,r),s=qib(b),s!=null&&Otd(q.e,IEd,s),t=rib(b),t!=null&&Otd(q.e,JEd,t),q.d.c+q.e.b==0?null:q);if(e){l=(m=(new ard(e)).a.mp().Qb(),new brd(m));while(l.a.Rc()){j=(h=l.a.Sc(),h.yp());eld(d,j,j==null?Bqd(ztd(e.d,null)):Ntd(e.e,j))}}f=tib(b);g=c?(Ufb(),Tfb):sib(b);if(f!=null||!!g){n=Zgb(a.b,LEd);if(f!=null){o=$gb(a.b,f);Lkd(n,o)}if(g){l=(m=(new ard(g)).a.mp().Qb(),new brd(m));while(l.a.Rc()){j=(h=l.a.Sc(),h.yp());eld(n,j,j==null?Bqd(ztd(g.d,null)):Ntd(g.e,j))}}Lkd(d,n)}} +function uF(a,b){var c,d;for(d=new qsd(dsd(b.v).b.Qb());d.b.Rc();){c=d.b.Sc();if(dsd(c.r).b.vd()==dsd(a.r).b.vd()&&dsd(c.s).b.vd()==dsd(a.s).b.vd()&&dsd(c.A).b.vd()==dsd(a.A).b.vd()&&(Xrd(),0==dsd(a.t).b.vd())&&(Xrd(),0==dsd(a.q).b.vd())&&(Xrd(),0==dsd(a.w).b.vd())&&(Xrd(),0==dsd(a.C).b.vd())&&dsd(a.u).b.vd()==dsd(c.u).b.vd()&&(Xrd(),0==dsd(a.B).b.vd())&&Nr(a.r,dsd(c.r))&&Nr(a.s,dsd(c.s))&&Nr(a.A,dsd(c.A))&&Nr(a.t,(Xrd(),Xrd(),Urd))&&Nr(a.q,(Xrd(),Xrd(),Urd))&&Nr(a.w,(Xrd(),Xrd(),Urd))&&Nr(a.C,(Xrd(),Xrd(),Urd))&&Nr(a.u,dsd(c.u))&&Nr(a.B,(Xrd(),Xrd(),Urd))){return true}}return false} +function R4(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r;CWb(b,a.c);for(f=(l=(new drd(a.a)).a.mp().Qb(),new erd(l));f.a.Rc();){d=(c=f.a.Sc(),c.Ok());uVb(b,d)}for(g=(m=(new drd(a.b)).a.mp().Qb(),new erd(m));g.a.Rc();){d=(c=g.a.Sc(),c.Ok());vVb(b,d)}for(h=(j=(new drd(a.j)).a.mp().Qb(),new erd(j));h.a.Rc();){d=(c=h.a.Sc(),c.Ok());AVb(b,d)}for(e=new Frd((r=new es,Xr(r,new drd(a.n)),Xr(r,a.i),r));e.a>24;return 1}else if(c>6&31|192)<<24>>24;a[b]=(c&63|128)<<24>>24;return 2}else if(c>12&15|224)<<24>>24;a[b++]=(c>>6&63|128)<<24>>24;a[b]=(c&63|128)<<24>>24;return 3}else if(c>18&7|240)<<24>>24;a[b++]=(c>>12&63|128)<<24>>24;a[b++]=(c>>6&63|128)<<24>>24;a[b]=(c&63|128)<<24>>24;return 4}else if(c>24&3|248)<<24>>24;a[b++]=(c>>18&63|128)<<24>>24;a[b++]=(c>>12&63|128)<<24>>24;a[b++]=(c>>6&63|128)<<24>>24;a[b]=(c&63|128)<<24>>24;return 5}throw I8c(new bnd('Character out of range: '+c))} +function nlb(g){var d=(Sxd(),xxd(QGd));var e,f=g;$wnd.marvin.ImageExporter=Yxd(function(){var a,b=this,c=arguments;c.length==1&&f.Yj(c[0])?(a=c[0]):c.length==1?(a=new clb(c[0])):c.length==0&&(a=new blb);b.g=a;Vxd(a,b);return b});e=$wnd.marvin.ImageExporter.prototype=new Object;$wnd.marvin.ImageExporter.molToDataUrl=Yxd(function(a,b,c){return dlb(a,b,c,(C1(),k1))});$wnd.marvin.ImageExporter.mrvToDataUrl=Yxd(function(a,b,c){return dlb(a,b,c,(C1(),m1))});e.render=Yxd(function(a){return this.g.Wj(a)});if(d)for(p in d)$wnd.marvin.ImageExporter[p]===undefined&&($wnd.marvin.ImageExporter[p]=d[p])} +function A9(a,b,c){var d,e,f,g;d=b1b(d1b(b.n));if(d){X9((W9(),S9),a);a.a+=''+c;a.a+=' ';x9(a,d.a,30);x9(a,null,2);x9(a,d.c,20);g=d.b;nod(a,(tcc(),!!g&&g.a?'mQ':' '));g.b!=null&&nod(a,g.b);a.a+=oyd;X9(Q9,a);a.a+=''+c;a.a+=' 0.0000 0.0000 DRU ALL 0 0 ';a.a+=oyd;d.d.a!=null&&H9(a,Nud(d.d),c)}else{f=dsd(b.r);if(f.b.vd()==1){e=f.a.zd(0).Ol();if(e!=0){X9((W9(),S9),a);a.a+=''+c;a.a+=' MRV_IMPLICIT_H \n';X9(Q9,a);a.a+=''+c;a.a+=' 0.0000 0.0000 DR ALL 0 0\n';X9(T9,a);a.a+=''+c;a.a+=' IMPL_H';nod(a,(Cnd(),''+e));a.a+=oyd}}}} +function mtb(){mtb=p9c;Xrb=new bl(xHd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxjaXJjbGUgY2xhc3M9ImNscy0yIiBjeD0iNiIgY3k9IjE1IiByPSIxIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSI2IiBjeT0iMTkiIHI9IjEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xNiA0bC0zIDZoMi41QTYuNTEgNi41MSAwIDAgMSA5IDE2LjV2MWE3LjUgNy41IDAgMCAwIDcuNS03LjVIMTl6Ii8+PC9nPjwvc3ZnPg==')))} +function Itb(){Itb=p9c;rsb=new bl(EFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE3LjE0IDExLjVIMTF2MWg4di0xaC0xLjg2eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjE0IDE1bC01IDIuODktNS0yLjg5VjkuMjNsNS0yLjg5IDUgMi44OXYxLjI3aDFWOC42NWwtNi0zLjQ3LTYgMy40N3Y2LjkzbDYgMy40NiA2LTMuNDZWMTMuNWgtMVYxNXoiLz48L2c+PC9zdmc+')))} +function Vac(a,b){var c,d,e,f;if(bbc(a,new qad(b.b.a+b.c/2,b.b.b+b.a/2))||bbc(b,new qad(a.b.a+a.c/2,a.b.b+a.a/2))){return Aac(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(b.b.a+b.c/2,b.b.b+b.a/2))}c=Lac(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(b.b.a+b.c/2,b.b.b+b.a/2),new Srd(vuc(quc(QYc,1),lyd,25,0,[a])));d=Lac(new qad(b.b.a+b.c/2,b.b.b+b.a/2),new qad(a.b.a+a.c/2,a.b.b+a.a/2),new Srd(vuc(quc(QYc,1),lyd,25,0,[b])));e=tac(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(b.b.a+b.c/2,b.b.b+b.a/2),c);f=tac(new qad(b.b.a+b.c/2,b.b.b+b.a/2),new qad(a.b.a+a.c/2,a.b.b+a.a/2),d);return new qad((e.a+f.a)/2,(e.b+f.b)/2)} +function p8(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r;O7.call(this);this.c=new std;this.d=new std;this.f=new es;this.i=new ltd;this.a=a;this.b=b;this.e=d?new s8:new q8;j=new es;Xr(j,dsd(c.w));for(h=new qsd(dsd(c.p).b.Qb());h.b.Rc();){g=h.b.Sc();h8(this,g)}q=new gs(dsd(c.n));Or(q,cWb(c));for(f=new Frd(q);f.a0||a==Cbc&&e>0&&e<119||a==Gbc&&(i1b(),e>0&&e<=126&&h1b[e-1].a==0)){Bid(this.b,d);a==Cbc&&(zBb(this,false),Cic((pic(),new IBb(this,c)),200))}}}this.d=f} +function mo(a,b){ho();this.d=a;this.a=b;jo(this);this.f=new Zo(this);this.k=new _o(this);acd(new ap(this));og(this.i,new bp(this),(Tpc(),Tpc(),Spc));og(this.e,new cp(this),(ipc(),ipc(),hpc));og(this.e,new dp(this),(Qpc(),Qpc(),Ppc));og(this.e,new ep(this),(opc(),opc(),npc));og(this.e,new Bo(this),(upc(),upc(),tpc));og(this.e,new Co(this),(Gpc(),Gpc(),Fpc));og(this.e,new Do(this),(Jpc(),Jpc(),Ipc));og(this.j,new Eo(this),(null,hpc));og(this.j,new Fo(this),(null,Ppc));og(this.j,new Go(this),(null,npc));og(this.j,new Ho(this),(null,tpc));og(this.j,new Io(this),(null,Fpc));og(this.j,new Jo(this),(null,Ipc))} +function JJb(a,b){var c,d,e,f,g,h,j,l;f=new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2);d=a.e.b;e=!a.a||bbc(a.a,(h=new qad(20*a.e.b,-(20*a.e.b)),iad(lad(f,kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)),h)))?f:GJb(a,dbc(a.a));c=(j=new qad(20*a.e.b,-(20*a.e.b)),iad(lad(e,kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)),j));l=a.e.b;b?hKb(a.e):gKb(a.e);a.c=mad(iad(a.c,new qad(l,l)),new qad(a.e.b,a.e.b));if(a.e.b!=d){a.c=kH(a.c,lad(e,(g=new qad(20*a.e.b,-(20*a.e.b)),kH(new qad(c.a*g.a,c.b*g.b),kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)))));return true}return false} +function l_b(){l_b=p9c;W$b=new m_b('CHK',0,(T_b(),r_b));V$b=new m_b('CHE',1,q_b);X$b=new m_b('CHY',2,s_b);U$b=new m_b('ARY',3,x_b);c_b=new m_b('Heterocycle',4,I_b);$$b=new m_b('HEA',5,K_b);a_b=new m_b('HET',6,J_b);b_b=new m_b('HSA',7,F_b);Y$b=new m_b('CYC',8,w_b);_$b=new m_b('HEF',9,A_b);Z$b=new m_b('HAL',10,E_b);f_b=new m_b('PRT',11,P_b);h_b=new m_b('UNK',12,S_b);S$b=new m_b('ACT',13,o_b);d_b=new m_b('LAN',14,M_b);R$b=new m_b('A35',15,O_b);e_b=new m_b('MX',16,N_b);g_b=new m_b('TRM',17,R_b);T$b=new m_b('AMX',18,p_b);j_b=new m_b('acyclicCarbon',19,y_b);k_b=new m_b('anyring',20,z_b);i_b=new m_b('XX',21,u_b)} +function YNb(){ZNb.call(this,new si(new pxd(new kpd('10328400754623195006538232250445646173234515198616849995947710377130869330924088628017619811358599344440291439192721234623603691213749518356778136132486588'),new oxd(new kpd('13232376895198612407547930718267435757728527029623408872245156039757713029036368719146452186041204237350521785240337048752071462798273003935646236777459223'),new kpd('857393771208094202104259627990318636601332086981'),new kpd('5421644057436475141609648488325705128047428394380474376834667300766108262613900542681289080713724597310673074119355136085795982097390670890367185141189796')))))} +function F4b(){F4b=p9c;o4b=new H4b(syd,0,'any');p4b=new G4b('COMPONENT',1,'c',1);q4b=new H4b('COPOLYMER',2,'co');r4b=new H4b('COPOLYMER_ALTERNATING',3,'alt');s4b=new H4b('COPOLYMER_BLOCK',4,'blk');t4b=new H4b('COPOLYMER_RANDOM',5,'ran');u4b=new H4b('CROSSLINK',6,'xl');v4b=new H4b(HDd,7,'');w4b=new H4b('GRAFT',8,'grf');x4b=new H4b('MER',9,'mer');y4b=new H4b('MODIFICATION',10,'mod');z4b=new H4b('MONOMER',11,'mon');A4b=new G4b('MULTIPLE_GROUP',12,'',1);B4b=new H4b('ORDERED_MIXTURE',13,'f');C4b=new G4b('REPEATING_UNIT_WITH_RANGE',14,'',2);D4b=new H4b('SRU_POLYMER',15,'n');E4b=new H4b('UNORDERED_MIXTURE',16,'mix')} +function Ay(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;c=new std;g=new std;o=new std;s=new sud;mud(s,b,s.c.b,s.c);c.a.pp(b,c);while(s.b>0){r=s.b==0?null:qud(s,s.a.a);for(f=new Frd(dy(a,r));f.a>19!=0){b=Quc(b);j=true}g=Iuc(b);f=false;e=false;d=false;if(a.h==ZKd&&a.m==0&&a.l==0){e=true;f=true;if(g==-1){a=zuc((cvc(),$uc));d=true;j=!j}else{h=Tuc(a,g);j&&Guc(h);c&&(xuc=Auc(0,0,0));return h}}else if(a.h>>19!=0){f=true;a=Quc(a);d=true;j=!j}if(g!=-1){return Duc(a,g,j,f,c)}if(Nuc(a,b)<0){c&&(f?(xuc=Quc(a)):(xuc=Auc(a.l,a.m,a.h)));return Auc(0,0,0)}return Euc(d?a:Auc(a.l,a.m,a.h),b,j,f,e,c)} +function jfb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;g=heb(a.j,_zd);j=null;if(g==null){return}if(Hnd(g,gFd)){l=(m=(new icb(a.j)).a,n=_1(mfb(a)),n.n=_0b(m,n.n),n);if(!nfb(l)){j=l;!!b&&Wr(b.a.a,l);Pdb(a.k,j)}return}Hnd(g,kFd)?(j=(o=vfb(a.j),q=mfb(a),q.a.length==0&&(q=kfb(a)),r=new is,ffb(new gfb(a.j,a.c),r),s=new P5b(q,r,o),t=ufb(a.j),t!=null&&Y1(s,(O$b(),L$b),t),s)):Hnd(g,lFd)?(f=heb(a.j,KAd),a.b=new Jeb(mfb(a),f)):Hnd(g,mFd)?(j=(h=mfb(a),new Z1(h))):(j=ifb(a));if(j){c=lfb(a,j);if(c){Q1(j,b1b(d1b(c.n)));Sdb(a.k,c)}else{W1(j,Xeb(a.d,a.f))}for(e=new qsd(dsd(a.k.w).b.Qb());e.b.Rc();){d=e.b.Sc();!d.o&&X1(d,j)}}Pdb(a.k,j)} +function Fqb(a){var b,c,d;d=new jud;if(!Sx(a.A)){Lr(d,ipb(a));c=Ndb(a.C,a.A);Lr(d,dsd(c.v));Lr(d,dsd(c.r));Lr(d,dsd(c.w))}b=(!a.s&&(a.s=new fx(a)),a.s).a.a;if(b){ptd(d,b.a)}else if((!a.s&&(a.s=new fx(a)),a.s.a).b){if(hy((!a.s&&(a.s=new fx(a)),a.s.a).b)||iy((!a.s&&(a.s=new fx(a)),a.s.a).b)||my((!a.s&&(a.s=new fx(a)),a.s.a).b)){Lr(d,jpb(a,(!a.s&&(a.s=new fx(a)),a.s.a).b));c=Bdb(a.C,(!a.s&&(a.s=new fx(a)),a.s.a).b);Lr(d,dsd(c.w))}else{c=Bdb(a.C,(!a.s&&(a.s=new fx(a)),a.s.a).b);if(dsd(c.v).b.vd()==1){Lr(d,dsd(c.v));return d}else if(dsd(c.r).b.vd()==1){Lr(d,dsd(c.r));return d}Lr(d,dsd(c.v));Lr(d,dsd(c.r));Lr(d,dsd(c.w))}}return d} +function mE(a,b,c,d,e,f){var g,h,j,l,m,n,o,q,r;this.p=a;this.j=c;this.b=b;this.n=d;this.o=new _td;this.a=new _td;this.e=new _td;this.k=new _td;this.i=new _td;this.d=new Yu(a.A);for(j=new qsd(dsd(e.r).b.Qb());j.b.Rc();){g=j.b.Sc();Ytd(this.o,g,new Tac(g.Lh(),g.Ki()))}for(h=new qsd(dsd(e.q).b.Qb());h.b.Rc();){g=h.b.Sc();Ytd(this.a,g,vuc(quc(VXc,1),{2396:1,3:1,4:1},2237,0,[g.c,g.a]))}for(m=new qsd(dsd(e.w).b.Qb());m.b.Rc();){l=m.b.Sc();Ytd(this.e,l,l.a)}for(r=new qsd(dsd(e.C).b.Qb());r.b.Rc();){q=r.b.Sc();Ytd(this.k,q,q.a)}for(o=new qsd(dsd(e.B).b.Qb());o.b.Rc();){n=o.b.Sc();Ytd(this.i,n,dbc(n.e))}this.f=f;this.c=new uC(a,a.C,f)} +function WJb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q;if(a.e<0||a.b<0||!a.a){return null}if(!!a.c&&!c){o=b.a;l=a.c.d.b.a+a.c.d.c/2;m=a.c.d.b.a+(o-l);g=m-(m+a.c.d.c-(a.c.f.b.a+a.c.f.c-16));n=o-l>0?$wnd.Math.min(g,m):$wnd.Math.max(m,16);f=n-a.c.d.b.a;j=$wnd.Math.max(a.e,a.a.b.a+a.a.c)-$wnd.Math.min(a.a.b.a,0);e=a.c.f.b.a+a.c.f.c-16-16;return new qad(-f*j/e,0)}if(!!a.d&&c){q=b.b;l=a.d.d.b.b+a.d.d.a/2;m=a.d.d.b.b+(q-l);g=m-(m+a.d.d.a-(a.d.f.b.b+a.d.f.a-16));n=q-l>0?$wnd.Math.min(g,m):$wnd.Math.max(m,16);f=n-a.d.d.b.b;h=$wnd.Math.max(a.b,a.a.b.b+a.a.a)-$wnd.Math.min(a.a.b.b,0);d=a.d.f.b.b+a.d.f.a-16-16;return new qad(0,-f*h/d)}return null} +function zWb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s;if(!NVb(a,b,c)){return}c.lm(new Tac(b.Lh(),b.Ki()));q=new gs(b.Ml());o=new gs(b.Re());r=new gs(b.Ul());n=dWb(b,(s=new es,Xr(s,dsd(a.v)),Xr(s,dsd(a.r)),s));HVb(a,tsd(dsd(a.n),b),c);rtd(a.i,b)&&ptd(a.i,c);mWb(a,b);for(m=new Frd(n);m.a=17&&(d==0&&c==4&&(a.i||Ac(a),a.n==2)||d==1&&c==2||d==2&&c==2&&(a.i||Ac(a),a.o==2)||d==4&&c==0)){e=-a.f}else if(d==0){e=-c}else return d==1&&c==1?dc(0):ec()}else if(d<0){if(d==-1){e=Eb(a)}else{return ec()}}else if(d==0){if(g==0){e=Db(a)}else{return ec()}}else if(d==1){if(g!=0){return g==2&&c<=2?dc(-c):ec()}f=a.f;if(c-f==2){e=-f}else if(c<=2){e=2-c}else{return ec()}}else if(d>1){return ec()}return dc(e)}else{throw I8c(new Yc('Calling column 17 for atom number: '+b))}} +function zVb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v;for(g=new qsd(dsd(b.r).b.Qb());g.b.Rc();){f=g.b.Sc();uVb(a,f)}for(m=new qsd(dsd(b.s).b.Qb());m.b.Rc();){l=m.b.Sc();vVb(a,l)}for(t=new qsd(dsd(b.u).b.Qb());t.b.Rc();){s=t.b.Sc();AVb(a,s)}for(j=new qsd(dsd(b.A).b.Qb());j.b.Rc();){h=j.b.Sc();sVb(a,dsd(a.o).b.vd(),h)}for(o=new qsd(dsd(b.t).b.Qb());o.b.Rc();){n=o.b.Sc();xVb(a,n)}for(e=new qsd(dsd(b.q).b.Qb());e.b.Rc();){c=e.b.Sc();tVb(a,c)}for(d=new qsd(dsd(b.w).b.Qb());d.b.Rc();){c=d.b.Sc();CVb(a,c)}for(r=new qsd(dsd(b.C).b.Qb());r.b.Rc();){q=r.b.Sc();yVb(a,q)}for(v=new qsd(dsd(b.B).b.Qb());v.b.Rc();){u=v.b.Sc();GVb(a,u)}SVb(a,new u7b)} +function jq(a){this.c=new kq(this);this.e=new Wo;Uo(this.e,(qgd(),mgd));Of(this.e,(Os(),Js));this.i=a;this.b=hid(a);$i(this,this.e);kg((abd(),this.U),'gwt-RichTextToolbar',true);kg(a.U,'hasRichTextToolbar',true);if(this.b){Qo(this.e,this.a=gq(this,'B',SAd));Qo(this.e,this.d=gq(this,'I',TAd));Qo(this.e,this.j=gq(this,'X\u2082','subscript'));Qo(this.e,this.k=gq(this,'X\xB2','superscript'));Qo(this.e,this.f=fq(this,'\xD8','remove format from selection'));Qo(this.e,this.n=fq(this,'\u03A9','symbol'));Rf(this.a).style['fontWeight']=(ymc(),SAd);Rf(this.d).style['fontStyle']=(omc(),TAd);og(a,this.c,(fpc(),fpc(),epc));og(a,this.c,(voc(),voc(),uoc))}} +function Vsb(){Vsb=p9c;Erb=new bl(cGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUuMiAxNy4yMkwzLjc4IDE1LjhsMy41NC0zLjUzIDEuNDEgMS40MXpNOS40NCAxM0w4IDExLjU2IDExLjU2IDggMTMgOS40NHptNC4yNC00LjI0bC0xLjQxLTEuNDQgMy41My0zLjU0IDEuNDIgMS40MnoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMy41IDEzLjQ5OCkiIGQ9Ik01IDEyLjVoMTd2Mkg1eiIvPjwvZz48L3N2Zz4=')))} +function btb(){btb=p9c;Mrb=new bl('clear',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmV9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjwvZz48cGF0aCBkPSJNMTMuOTEgM0g2YTIgMiAwIDAgMC0yIDJ2MTRhMiAyIDAgMCAwIDIgMmgxMmEyIDIgMCAwIDAgMi0yVjkuMDl6TTE4IDE5SDZWNWg2djMuNWEyLjUgMi41IDAgMCAwIDIuNSAyLjVIMTh6bTAtOWgtMy41QTEuNSAxLjUgMCAwIDEgMTMgOC41VjVoLjA5TDE4IDkuOTF6IiBmaWxsPSIjNTA1MDUwIiBpZD0iSWNvbnMiLz48L3N2Zz4=')))} +function fub(){fub=p9c;Qsb=new bl(UFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjY0IDE1YTguMjIgOC4yMiAwIDAgMS0yLjEyIDIuMTJsNC4zMyA0LjMzIDIuMTUtMi4xek0xNyA5LjUzYTcgNyAwIDEgMC03IDcgNyA3IDAgMCAwIDctN3ptLTcgNmE2IDYgMCAxIDEgNi02IDYgNiAwIDAgMS02IDZ6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTEuMDMgNS41M2gtMnYzaC0zdjJoM3YzaDJ2LTNoM3YtMmgtM3YtM3oiLz48L2c+PC9zdmc+')))} +function Fi(a,b){var c,d,e,f,g,h;if(!a||!(Os(),Ns)){return null}c=new Ti(b);g=og(a,c,(yoc(),yoc(),xoc));f=$wnd.navigator.platform;if(f.indexOf('iPad')!=-1||f.indexOf(Ozd)!=-1){kg((abd(),a.U),Pzd,true);if(b){h=new Qi(b);!!a&&(g=new Xi(vuc(quc(W0c,1),Iyd,340,0,[g,(e=new Vi(h),new Xi(vuc(quc(W0c,1),Iyd,340,0,[og(a,e,(ipc(),ipc(),hpc)),og(a,e,(lpc(),lpc(),kpc)),og(a,e,(upc(),upc(),tpc)),og(a,e,(opc(),opc(),npc)),og(a,e,(rpc(),rpc(),qpc))])))])));!!a&&(g=new Xi(vuc(quc(W0c,1),Iyd,340,0,[(d=new Si(h),new Xi(vuc(quc(W0c,1),Iyd,340,0,[og(a,d,(Qpc(),Qpc(),Ppc)),og(a,d,(Npc(),Npc(),Mpc)),og(a,d,(Jpc(),Jpc(),Ipc)),og(a,d,(Gpc(),Gpc(),Fpc))])))])))}}return g} +function $Q(a){var b,c,d,e;if(a==null||a.length==0){return a}d='';e=true;for(c=0;c0){o=new es;for(c=0,d=a.length;ca.r.length?(d=false):a.u.lengtha.s.length?(d=false):a.v.length=0&&g<=9){qod(j,g+48&hyd);n=true}else if(e==f.charCodeAt(0)){if(m||o){break}j.a+='.';m=true}else if(e==h.charCodeAt(0)){if(m||o){break}continue}else if(e=='E'.charCodeAt(0)){if(o){break}j.a+='E';o=true}else if(e==43||e==45){j.a+=String.fromCharCode(e)}else if(e=='%'.charCodeAt(0)){if(q!=1){break}q=100;if(n){++d[0];break}}else if(e==VAd.charCodeAt(0)){if(q!=1){break}q=hAd;if(n){++d[0];break}}else{break}}try{l=Wmd(j.a)}catch(a){a=H8c(a);if(kvc(a,65)){throw I8c(new And(c))}else throw I8c(a)}l=l/q;return l} +function Ftb(){Ftb=p9c;osb=new bl(BGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMSA1LjVWMjBoMThsMy44My03LjY2QTEuNTYgMS41NiAwIDAgMCAyMS4zNSAxMEg3YTIuNzggMi43OCAwIDAgMC0yLjM0IDEuNDVMMiAxNy40OVY1LjVhLjUuNSAwIDAgMSAuNS0uNWgzLjc1YTEuMjcgMS4yNyAwIDAgMSAxIC42Mkw4LjQ0IDhIMThhLjUuNSAwIDAgMSAuNS41VjloMXYtLjVBMS41IDEuNSAwIDAgMCAxOCA3SDkuMDZsLS45Mi0xLjgzQTIuMjcgMi4yNyAwIDAgMCA2LjI1IDRIMi41QTEuNSAxLjUgMCAwIDAgMSA1LjV6TTQuMTIgMThsMi4zMy01LjY2QS44MS44MSAwIDAgMSA3IDEyaDEzLjczbC0zIDZ6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} +function Zb(a,b){Ub();var c,d,e,f,g;e=a.b.Nl();d=a.c;c=a.a;f=Y(c);owd(Tb,(Uvd(),Rvd))&&kwd(Tb,'Local aromatic valence check.');if(e*e>1){owd(Tb,Svd)&&lwd(Tb,'Valence error.\nCause: abs(charge) > 1');return ec()}if(e==0){if(d[2]==1&&a.j>2){if(!_b(a,b)){owd(Tb,Svd)&&lwd(Tb,'Valence error.\nCause: charge == 0\n1 double bond\nLigandCount > 2\nhasValidDoubleBondedLigand == false');return ec()}}}else{if(d[2]>0&&!ac(a)){owd(Tb,Svd)&&lwd(Tb,'Valence error.\nCause: charge == 0\nDouble bond count > 0isNorPwithAllowedDoubleBondedLigand == false');return ec()}f-=e}switch(f){case 13:g=Vb(a);break;case 14:g=Wb(a);break;case 15:g=Xb(a);break;case 16:g=Yb(a);break;default:g=ec();}return g} +function wib(a,b,c,d,e,f,g){var h,j,l,m,n,o,q,r,s,t,u,v,w,A;t=_kd(b.a,b.b,UDd);Lkd(c,t);v=_kd(b.a,b.b,ZEd);Lkd(t,v);l=Aib(d);egb(new fgb(XEd),l.a,t);egb(new fgb(YEd),l.b,t);r=Lkd(v,_kd(b.a,b.b,WEd));Lkd(r,Bib(e.b,b));m=new ahb(b,new bgb(b),kWb(d),AOb(a.a));g.Rj(e);j=new Tib;h=(!d.a&&(d.a=new UWb(d)),d.a);Lkd(r,uib(e.d,m,_kd(b.a,b.b,eFd),j,f,h));Lkd(r,uib(e.a,m,_kd(b.a,b.b,'agentList'),j,f,h));Lkd(r,uib(e.c,m,_kd(b.a,b.b,fFd),j,f,h));for(o=new qsd(dsd(d.v).b.Qb());o.b.Rc();){n=o.b.Sc();s=_kd(b.a,b.b,QEd);yib(n,s);Lkd(v,s);for(A=new Frd(R6b(n,d));A.ae){spd(n,d);spd(o,e);rpd(j,e);c+=d-e}else{spd(n,d);spd(o,e);rpd(l,d);c+=e-d}j.e=1;while(o.e>0){while(Ood(n,o)>0){dqd(n,o);m=Uod(n);spd(n,m);bqd(j,l);rpd(l,m);c+=m}while(Ood(n,o)<=0){dqd(o,n);if(o.e==0){break}m=Uod(o);spd(o,m);bqd(l,j);rpd(j,m);c+=m}}if(!(n.d==1&&n.a[0]==1)){throw I8c(new jmd(QLd))}Ood(j,b)>=0&&dqd(j,b);j=fqd(b,j);h=Epd(b);if(c>f){j=Ppd(j,(Nod(),Iod),b,h);c=c-f}j=Ppd(j,npd(f-c),b,h);return j} +function _tb(){_tb=p9c;Ksb=new bl(bGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDEyIDEyKSIgZD0iTTMuOTMgMTFoMTYuMTR2MkgzLjkzeiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDE1LjAwMiAxNC45OTYpIiBkPSJNNi45MyAxNGgxNi4xNHYySDYuOTN6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiB0cmFuc2Zvcm09InJvdGF0ZSgtNDUgOC45OTkgOS4wMDMpIiBkPSJNLjkzIDhoMTYuMTR2MkguOTN6Ii8+PC9nPjwvc3ZnPg==')))} +function rcb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F;l=ieb(c,'bondArray');if(!l){return}m=jeb(l,FEd);A=b.f;for(t=new Frd(m);t.a0?(e-=86400000):(e+=86400000);j=new Jtc(J8c(P8c(b.r.getTime()),e))}m=new zod;l=a.a.length;for(f=0;f=97&&d<=122||d>=65&&d<=90){for(g=f+1;g=l){throw I8c(new bnd("Missing trailing '"))}g+1*{vertical-align:top;}div.mjs-obf-C.mjs-marginTop{border-top:solid 5px transparent;}div.mjs-obf-C.mjs-inline.mjs-marginTop{border:none;}div.mjs-obf-C>div.mjs-obf-D,div.mjs-obf-C>select,div.mjs-obf-C>input{display:table-cell;}div.mjs-obf-C.mjs-inline{display:inline-block;}div.mjs-obf-C.mjs-inline>div.mjs-obf-D,div.mjs-obf-C.mjs-inline>select,div.mjs-obf-C.mjs-inline>input{display:initial;}'));return true}return false} +function Ktb(){Ktb=p9c;tsb=new bl(LGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNOCAyMUg2VjNoNS41MmE3IDcgMCAwIDEgNC4zMiAxLjIgNC4yMyA0LjIzIDAgMCAxIDEuNTggMy42MUE0LjQ3IDQuNDcgMCAwIDEgMTYuMjQgMTFhNSA1IDAgMCAxLTMuNDEgMS40OUwxOCAyMWgtMi4yM2wtNC45MS04LjM2SDh6bTAtMTBoMy4wNmE3LjMgNy4zIDAgMCAwIDIuMDctLjI2IDMuNzEgMy43MSAwIDAgMCAxLjM1LS43NCAyLjQxIDIuNDEgMCAwIDAgLjczLTEgMy4xMyAzLjEzIDAgMCAwIC4yMy0xLjIzIDMuMDcgMy4wNyAwIDAgMC0uMjMtMS4yMSAyLjU0IDIuNTQgMCAwIDAtLjczLTEgMy41NiAzLjU2IDAgMCAwLTEuMzUtLjY3IDcuNzUgNy43NSAwIDAgMC0yLjA3LS4yNEg4eiIgZmlsbD0iI2U5NzExYyIvPjwvc3ZnPg==')))} +function Gtb(){Gtb=p9c;psb=new bl(Yzd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTkgNC41aC0uNXYxaC41YS41LjUgMCAwIDEgLjUuNXYxM2EuNS41IDAgMCAxLS41LjVoLTJ2MWgyYTEuNSAxLjUgMCAwIDAgMS41LTEuNVY2QTEuNSAxLjUgMCAwIDAgMTkgNC41ek04LjUgNmEuNS41IDAgMCAxIC41LS41aC41di0xSDlBMS41IDEuNSAwIDAgMCA3LjUgNnYuNWgxem05LTIuNWgtMnYtMWgtM3YxaC0ydjNoN3YtM3ptLTEyIDRhMiAyIDAgMCAwLTIgMnYxMGEyIDIgMCAwIDAgMiAyaDhhMiAyIDAgMCAwIDItMnYtNy40MUwxMC45MSA3LjV6bTUgMi40MWwyLjU5IDIuNTlIMTFhLjUuNSAwIDAgMS0uNS0uNXptLTUgOS41OXYtMTBoNFYxMmExLjUgMS41IDAgMCAwIDEuNSAxLjVoMi41djZ6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} +function WS(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w;t=new es;q=new es;Xr(q,dsd(b.r));for(o=new Frd(q);o.a1){g=new RegExp('^[0-9]+(-[0-9]+){0,1}$');f=true;for(c=0,d=e.length;c=0){if(s[n]==j){l=-1}else{u=J8c(Z8c(K8c(s[n],SLd),32),K8c(s[n-1],SLd));A=Gpd(u,j);l=d9c(A);w=d9c($8c(A,32));if(l!=0){v=false;++l;do{--l;if(v){break}q=V8c(K8c(l,SLd),K8c(t[e-2],SLd));B=J8c(Z8c(w,32),K8c(s[n-2],SLd));r=J8c(K8c(w,SLd),K8c(j,SLd));jnd(d9c(_8c(r,32)))<32?(v=true):(w=d9c(r))}while(Q8c(f9c(q,TLd),f9c(B,TLd)))}}if(l!=0){f=Rpd(s,n-e,t,e,l);if(f!=0){--l;g=0;for(o=0;o0){b=a.charCodeAt(0);if(b==45||b==43){a=a.substr(1);--f;j=b==45}}if(f==0){throw I8c(new And(MLd+l+'"'))}while(a.length>0&&a.charCodeAt(0)==48){a=a.substr(1);--f}if(f>(znd(),xnd)[10]){throw I8c(new And(MLd+l+'"'))}for(e=0;e0){n=-parseInt(a.substr(0,d),10);a=a.substr(d);f-=d;c=false}while(f>=g){d=parseInt(a.substr(0,g),10);a=a.substr(g);f-=g;if(c){c=false}else{if(L8c(n,h)<0){throw I8c(new And(MLd+l+'"'))}n=V8c(n,m)}n=a9c(n,d)}if(L8c(n,0)>0){throw I8c(new And(MLd+l+'"'))}if(!j){n=W8c(n);if(L8c(n,0)<0){throw I8c(new And(MLd+l+'"'))}}return n} +function snb(a,b,c,d,e,f){var g,h,j,l,m,n,o;this.c=b;this.a=new ltd;pnb(this,a,(kA(),eA),'clean2d','Clean',(_sb(),Krb));pnb(this,a,fA,'clean3d','Clean 3D',(atb(),Lrb));pnb(this,a,jA,'calculateStereo','Calculate stereo',(Ztb(),Isb));pnb(this,a,gA,fHd,'Add/Remove explicit H',(xtb(),gsb));pnb(this,a,dA,'automapper','Auto Map',(Ysb(),Hrb));pnb(this,a,cA,gHd,'Aromatize/dearomatize',(Wsb(),Frb));g=(this.b=new ltd,h=new txb,j=new feb,l=new Gnb(d,h,j,this.c),m=new Gib((g3(),e3),0),n=dLb(e,(C1(),m1),e3),o=new uLb(e.jl(true,e3)),Hqd(this.b,eA,new Sqb(c,m,n,false,l)),Hqd(this.b,fA,new Sqb(c,m,n,true,l)),Hqd(this.b,jA,new prb(c,l,new uLb(e.jl(false,e3)))),Hqd(this.b,gA,new lrb(c,l,o)),Hqd(this.b,dA,new irb(c,l,o)),Hqd(this.b,cA,new frb(c,m,l)),l);rnb(a,c,new upb(g),new bqb(f,c.i))} +function Cbb(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r;c=new Kbb(ieb(a.d,hEd));j=(q=new es,Wr(q,new Gbb(a)),Wr(q,new Hbb),Wr(q,new hcb),Wr(q,new Ibb),q);for(e=0;e0){Qic(b,$ad._n(b,0))}r=1;e=1;for(j=new Ljd(a.i);j.b=b.length)return {done:true};var a=b[d++];return {value:[a,c.get(a)],done:false}}}};if(!Itd()){e.prototype.createObject=function(){return {}};e.prototype.get=function(a){return this.obj[':'+a]};e.prototype.set=function(a,b){this.obj[':'+a]=b};e.prototype[QAd]=function(a){delete this.obj[':'+a]};e.prototype.keys=function(){var a=[];for(var b in this.obj){b.charCodeAt(0)==58&&a.push(b.substring(1))}return a}}return e} +function rtb(){rtb=p9c;asb=new bl('fit',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjY0IDE1YTguMjIgOC4yMiAwIDAgMS0yLjEyIDIuMTJsNC4zMyA0LjMzIDIuMTUtMi4xek0xMCAxNi41M2E3IDcgMCAxIDEgNy03IDcgNyAwIDAgMS03IDd6bTAtMTNhNiA2IDAgMSAwIDYgNiA2IDYgMCAwIDAtNi02eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjczIDcuMjNsLTEuNDEtMS40MS0xLjcxIDEuNzEtLjU4IDEuNTgtLjU5LTEuNTktMS43MS0xLjctMS40MSAxLjQxIDEuNyAxLjcxIDEuNTkuNTktMS41OC41OC0xLjcxIDEuNzEgMS40MSAxLjQxIDEuNzEtMS43LjU5LTEuNTkuNTggMS41OSAxLjcxIDEuNyAxLjQxLTEuNDEtMS43MS0xLjcxLTEuNTgtLjU4IDEuNTktLjU5IDEuNy0xLjcxeiIvPjwvZz48L3N2Zz4=')))} +function etb(){etb=p9c;Prb=new bl($zd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjIxIDNIMTFhMS41IDEuNSAwIDAgMC0xLjUgMS41djJoMXYtMkEuNS41IDAgMCAxIDExIDRoNC41djIuNUExLjUgMS41IDAgMCAwIDE3IDhoMi41djguNWEuNS41IDAgMCAxLS41LjVoLTIuNXYxSDE5YTEuNSAxLjUgMCAwIDAgMS41LTEuNVY3LjI5ek0xNyA3YS41LjUgMCAwIDEtLjUtLjVWNC43MUwxOC43OSA3eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUuNSA3YTIgMiAwIDAgMC0yIDJ2MTBhMiAyIDAgMCAwIDIgMmg4YTIgMiAwIDAgMCAyLTJ2LTcuNDFMMTAuOTEgN3ptOCAxMmgtOFY5aDR2Mi41QTEuNSAxLjUgMCAwIDAgMTEgMTNoMi41ek0xMSAxMmEuNS41IDAgMCAxLS41LS41VjkuNDFMMTMuMDkgMTJ6Ii8+PC9nPjwvc3ZnPg==')))} +function Ltc(a,b){var c,d,e,f,g,h,j;a.e==0&&a.q>0&&(a.q=-(a.q-1));a.q>EId&&Gtc(b,a.q-KKd);g=b.r.getDate();Atc(b,1);a.n>=0&&Dtc(b,a.n);if(a.c>=0){Atc(b,a.c)}else if(a.n>=0){j=new Itc(b.r.getFullYear()-KKd,b.r.getMonth(),35);d=35-j.r.getDate();Atc(b,$wnd.Math.min(d,g))}else{Atc(b,g)}a.f<0&&(a.f=b.r.getHours());a.b>0&&a.f<12&&(a.f+=12);Btc(b,a.f==24&&a.i?0:a.f);a.k>=0&&Ctc(b,a.k);a.o>=0&&Etc(b,a.o);a.j>=0&&Ftc(b,J8c(V8c(N8c(P8c(b.r.getTime()),hAd),hAd),a.j));if(a.a){e=new Htc;Gtc(e,e.r.getFullYear()-KKd-80);S8c(P8c(b.r.getTime()),P8c(e.r.getTime()))&&Gtc(b,e.r.getFullYear()-KKd+100)}if(a.d>=0){if(a.c==-1){c=(7+a.d-b.r.getDay())%7;c>3&&(c-=7);h=b.r.getMonth();Atc(b,b.r.getDate()+c);b.r.getMonth()!=h&&Atc(b,b.r.getDate()+(c>0?-7:7))}else{if(b.r.getDay()!=a.d){return false}}}if(a.p>EId){f=b.r.getTimezoneOffset();Ftc(b,J8c(P8c(b.r.getTime()),(a.p-f)*60*hAd))}return true} +function Mpd(a,b){var c,d,e,f,g,h,j,l,m,n,o;f=$wnd.Math.max(a.d,b.d);m=suc(uvc,jyd,23,f+1,15,1);o=suc(uvc,jyd,23,f+1,15,1);Eod(b.a,0,m,0,b.d);Eod(a.a,0,o,0,a.d);l=new gpd(b.e,b.d,m);n=new gpd(a.e,a.d,o);h=new gpd(0,1,suc(uvc,jyd,23,f+1,15,1));j=new gpd(1,1,suc(uvc,jyd,23,f+1,15,1));j.a[0]=1;c=0;d=0;g=qpd(b);while(!Lpd(l,c)&&!Lpd(n,d)){e=Jpd(l,g);if(e!=0){rpd(l,e);if(c>=d){rpd(h,e)}else{spd(j,$wnd.Math.min(d-c,e));e-(d-c)>0&&rpd(h,e-d+c)}c+=e}e=Jpd(n,g);if(e!=0){rpd(n,e);if(d>=c){rpd(j,e)}else{spd(h,$wnd.Math.min(c-d,e));e-(c-d)>0&&rpd(j,e-c+d)}d+=e}if(l.e==n.e){if(c<=d){aqd(l,n);aqd(h,j)}else{aqd(n,l);aqd(j,h)}}else{if(c<=d){_pd(l,n);_pd(h,j)}else{_pd(n,l);_pd(j,h)}}if(n.e==0||l.e==0){throw I8c(new jmd(QLd))}}if(Lpd(n,d)){h=j;n.e!=l.e&&(l=l.e==0?l:new gpd(-l.e,l.d,l.a))}epd(l,g)&&(h.e<0?(h=h.e==0?h:new gpd(-h.e,h.d,h.a)):(h=fqd(b,h)));h.e<0&&(h=Xpd(h,b));return h} +function PS(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w;m=b.b;if(!c||!m){return}ix(b,jT(a,c));for(f=new iud(new gud(a.d));f.b!=f.c.a.b;){d=hud(f);if(ZU(d.e,c)){Jy(m,d.d);return}}for(o=new iud(new gud(a.k));o.b!=o.c.a.b;){n=hud(o);if(HY(n.e,c)){rx(m,n.d);return}}for(h=new iud(new gud(a.e));h.b!=h.c.a.b;){g=hud(h);if(HY(g.e,c)){Ky(m,g.d);return}}for(u=new Vqd((new Sqd(a.p)).a);u.b;){t=Uqd(u);if(QZ(t.Ok(),c)){Py(m,t.yp());return}}QS(m,c,a.r);QS(m,c,a.j);for(l=new Vqd((new Sqd(a.i)).a);l.b;){j=Uqd(l);if(j.Ok().dg(c)){Ly(m,j.yp());return}}for(e=new Vqd((new Sqd(a.u)).a);e.b;){d=Uqd(e);if(d.Ok().dg(c)){Iy(m,d.yp());return}}for(s=new Vqd((new Sqd(a.o)).a);s.b;){q=Uqd(s);if(q.Ok().dg(c)){Oy(m,q.yp());return}}for(w=new Vqd((new Sqd(a.v)).a);w.b;){v=Uqd(w);if(v.Ok().dg(c)){My(m,v.yp());return}}for(r=new Vqd((new Sqd(a.q)).a);r.b;){q=Uqd(r);if(q.Ok().dg(c)){Qy(m,q.yp());return}}} +function ltb(){ltb=p9c;Wrb=new bl(kGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTMgOWgxbC0yIDZoLTF6bTIuNDQgMGgxbDIuNDcgNmgtMS4zOEwxNyAxMy43M2gtMi4yTDE0LjM3IDE1SDEzem0uNDggMS43NWwtLjY5IDEuODZoMS4zOXpNNiA5aDEuODRhNC43MyA0LjczIDAgMCAxIDEuMjYuMTYgMi43NSAyLjc1IDAgMCAxIDEgLjUyIDIuNDIgMi40MiAwIDAgMSAuNzEuOTQgMy4yNyAzLjI3IDAgMCAxIC4yNiAxLjQgMyAzIDAgMCAxLS4yNSAxLjI4IDIuOCAyLjggMCAwIDEtLjY4LjkzIDMgMyAwIDAgMS0xIC41OEEzLjU2IDMuNTYgMCAwIDEgOCAxNUg2em0xLjIzIDQuNzhoLjYzYTMuMzUgMy4zNSAwIDAgMCAuNzktLjA5IDEuODYgMS44NiAwIDAgMCAuNjMtLjMxIDEuNjEgMS42MSAwIDAgMCAuNDEtLjU3IDIgMiAwIDAgMCAuMTYtLjgxIDEuNzEgMS43MSAwIDAgMC0uMTYtLjc3IDEuNjggMS42OCAwIDAgMC0uNDEtLjU0IDEuNzEgMS43MSAwIDAgMC0uNi0uMzEgMi42IDIuNiAwIDAgMC0uNzQtLjExaC0uNzF6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} +function Ey(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B;e=new std;j=new std;r=new std;q=new std;A=new sud;mud(A,a,A.c.b,A.c);e.a.pp(a,e);while(A.b>0){w=A.b==0?null:qud(A,A.a.a);for(h=w.Ml().Qb();h.Rc();){g=h.Sc();j.a.pp(g,j);u=E2b(g,w);if(!e.a.lp(u)){e.a.pp(u,e);mud(A,u,A.c.b,A.c)}for(d=new qsd(dsd(g.a).b.Qb());d.b.Rc();){b=d.b.Sc();q.a.pp(b,q);for(t=new Frd(lXb(b));t.a0){if(g+d>a.length){return false}h=xrc(a.substr(0,g+d),b)}else{h=xrc(a,b)}}switch(f){case 71:h=urc(a,g,vuc(quc(g6c,1),eyd,2,6,[LKd,MKd]),b);e.e=h;return true;case 77:return Frc(a,b,e,h,g);case 76:return Frc(a,b,e,h,g);case 69:return Drc(a,b,g,e);case 99:return Drc(a,b,g,e);case 97:h=urc(a,g,vuc(quc(g6c,1),eyd,2,6,['AM','PM']),b);e.b=h;return true;case 121:return Jrc(a,b,g,h,c,e);case 100:if(h<=0){return false}e.c=h;return true;case 83:if(h<0){return false}return Erc(h,g,b[0],e);case 104:h==12&&(h=0);case 75:case 72:if(h<0){return false}e.f=h;e.i=false;return true;case 107:if(h<0){return false}e.f=h;e.i=true;return true;case 109:if(h<0){return false}e.k=h;return true;case 115:if(h<0){return false}e.o=h;return true;case 90:if(gMake sure your application's host HTML page has a Standards Mode (document.compatMode=' CSS1Compat') doctype,
    e.g. by using <!doctype html> at the start of your application's HTML page.

    To continue using this unsupported rendering mode and risk layout problems, suppress this message by adding
    the following line to your*.gwt.xml module file:
      <extend-configuration-property name=\"document.compatMode\" value=\""+b+'"/>':"Your *.gwt.xml module configuration prohibits the use of the current document rendering mode (document.compatMode=' "+b+"').
    Modify your application's host HTML page doctype, or update your custom "+"'document.compatMode' configuration property settings."} +function qkb(a,b,c,d,e,f,g,h){this.a=new mub;this.f=a;this.b=b;this.d=c;this.j=e;this.c=f;this.i=g;akb(this);this.e=new vQb(new kwb(this.f,d,this.b,this.a,this.j,this.i,h));nkb(this,'about',jkb(new OQb(new EQb(this.e.a)),AGd,(Tsb(),Crb)));nkb(this,BGd,mkb(new OQb(new AQb(this.e.a)),(Ftb(),osb)));nkb(this,'save',kkb(new OQb(new BQb(this.e.a)),(Otb(),xsb)));nkb(this,'settings',jkb(new OQb(new DQb(this.e.a)),CGd,(Qtb(),zsb)));nkb(this,DGd,jkb(new OQb(new vt(new CQb(this.e.a))),EGd,(Htb(),qsb)));nkb(this,FGd,new zqb(this.f,new OQb(new wQb(this.e.a)),this.d));nkb(this,GGd,new Bqb(this.f,new OQb(new IQb(this.e.a)),this.d));nkb(this,'customRGroupAtom',new $ob(new MQb(new jEb(this.f))));nkb(this,HGd,hkb(new OQb(new FQb(this.e.a))));nkb(this,IGd,new Aqb(this.f,this.d));nkb(this,JGd,lkb(new OQb(new yQb(this.e.a)),KGd,null,(Xsb(),Grb),(nk(),qk((Cnd(),String.fromCharCode(46)),false))));nkb(this,LGd,jkb(new OQb(new xQb(this.e.a)),MGd,(Ktb(),tsb)));_jb(this);ekb(this)} +function mxb(a){var b,c,d,e,f,g,h,j,l,m,n;zm(a.a,'Copy/Paste');c=new ped;(abd(),c.U).innerHTML='This action is unavailable via toolbars or menus,
    but you can still use:';c.U.style[KHd]=(Knc(),LHd);f=new Fg;Eg(f,c);f.U.style[CAd]=(tnc(),'5.0px');f.U.style['marginBottom']='5.0px';b=new ped;d=new ped;l=new ped;jjc(b.U,MHd+(Ds().length==0||'C'.length==0?'':''+Ds()+'+'+'C'+'')+NHd);jjc(d.U,MHd+(Ds().length==0||'X'.length==0?'':''+Ds()+'+'+'X'+'')+NHd);jjc(l.U,MHd+(Ds().length==0||'V'.length==0?'':''+Ds()+'+'+'V'+'')+NHd);g=new red('\xA0for Copy');h=new red('\xA0for Cut');j=new red('\xA0for Paste');n=new ped;n.U.innerHTML="You can also copy the molecule source from Export Dialog
    or paste one into Import Dialog.<\/font>";n.U.style[KHd]=LHd;e=new Fg;Eg(e,n);e.U.style[CAd]='10.0px';m=new Ifd;Ofd(m.d,0,3);Ffd(m,0,0,f);Ffd(m,1,0,b);Ffd(m,1,1,d);Ffd(m,1,2,l);Ffd(m,2,0,g);Ffd(m,2,1,h);Ffd(m,2,2,j);Ofd(m.d,3,3);Ffd(m,3,0,e);m.U.style[PFd]='#444';Cg(a.a,m)} +function dtc(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s;f=-1;g=0;s=0;h=0;l=-1;m=b.length;q=c;n=true;for(;q0?++h:++g;l>=0&&f<0&&++l;break;case 48:if(h>0){throw I8c(new bnd("Unexpected '0' in pattern \""+b+'"'))}++s;l>=0&&f<0&&++l;break;case 44:l=0;break;case 46:if(f>=0){throw I8c(new bnd('Multiple decimal separators in pattern "'+b+'"'))}f=g+s+h;break;case 69:if(!d){if(a.w){throw I8c(new bnd('Multiple exponential symbols in pattern "'+b+'"'))}a.w=true;a.n=0}while(q+10&&f>=0){o=f;f==0&&++o;h=g-o;g=o-1;s=1}if(f<0&&h>0||f>=0&&(fg+s)||l==0){throw I8c(new bnd('Malformed pattern "'+b+'"'))}if(d){return q-c}r=g+s+h;a.j=f>=0?r-f:0;if(f>=0){a.o=g+s-f;a.o<0&&(a.o=0)}j=f>=0?f:r;a.p=j-g;if(a.w){a.k=g+a.p;a.j==0&&a.p==0&&(a.p=1)}a.f=l>0?l:0;a.c=f==0||f==r;return q-c} +function Ytb(){Ytb=p9c;Hsb=new bl(vGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTMgNWgydjFoLTJ6TTUgOWgxdjJINXptMCA0aDF2Mkg1em00LThoMnYxSDl6TTYgN1Y2aDFWNUg1djJoMXptMiAxMWgydjFIOHptLTEgMEg2di0xSDV2Mmgydi0xek0xNyA2aDF2MWgxVjVoLTJ2MXptLTUgMmg0YTQuMzQgNC4zNCAwIDAgMSAxLjc4LjMxIDMuMDYgMy4wNiAwIDAgMSAxLjExLjggMi43NiAyLjc2IDAgMCAxIC41NiAxLjA5IDQuMzIgNC4zMiAwIDAgMSAuMTYgMS4xNiAzLjI0IDMuMjQgMCAwIDEtLjE5IDEuMTFBMy4yIDMuMiAwIDAgMSAxOCAxNC4xNmEzIDMgMCAwIDEtMS4xNi4zN0wyMCAyMGgtMS45MWwtMi44Ni01LjI5aC0xLjdWMjBIMTJ6bTEuNTMgNS4yOWgyYTUuMTQgNS4xNCAwIDAgMCAuODgtLjA4IDIuMiAyLjIgMCAwIDAgLjc4LS4yOCAxLjQ3IDEuNDcgMCAwIDAgLjU1LS41OCAyLjA3IDIuMDcgMCAwIDAgLjIxLTEgMi4wOSAyLjA5IDAgMCAwLS4yMS0xIDEuNTQgMS41NCAwIDAgMC0uNTUtLjU4IDIuMiAyLjIgMCAwIDAtLjc4LS4yOCA1LjE0IDUuMTQgMCAwIDAtLjg4LS4wOGgtMnoiIGZpbGw9IiM1MDUwNTAiLz48L3N2Zz4=')))} +function Utb(){Utb=p9c;Dsb=new bl(iGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMiAxOC4yMkw1Ljc4IDE2LjhsMy41NC0zLjUzIDEuNDEgMS40MXpNMTEuNDQgMTRMMTAgMTIuNTYgMTMuNTYgOSAxNSAxMC40NHptNC4yNC00LjI0bC0xLjQxLTEuNDQgMy41My0zLjU0IDEuNDIgMS40MnoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMy4yNjIgMTUuNzQ3KSIgZD0iTTEwLjc2IDE0Ljc0aDV2MmgtNXoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxNy40OTUgMTEuNTAzKSIgZD0iTTE1IDEwLjVoNXYyaC01eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDcuNzU4IDExLjI0NikiIGQ9Ik01LjI2IDEwLjI0aDV2MmgtNXoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMi4wMDMgNy4wMDgpIiBkPSJNOS41IDZoNXYyaC01eiIvPjwvZz48L3N2Zz4=')))} +function i0(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I;A=a.i;for(f=new qsd(dsd(c.r).b.Qb());f.b.Rc();){d=f.b.Sc();S$((m=jw(a,d.Lh()),V$(A.b,m)),b)}for(l=new qsd(dsd(c.s).b.Qb());l.b.Rc();){j=l.b.Sc();N$((B=jw(a,j.c.Lh()),C=jw(a,j.d.Lh()),Q$(A.a,B,C)),b)}for(s=new qsd(dsd(c.u).b.Qb());s.b.Rc();){r=s.b.Sc();N$((D=jw(a,(F=mUb(r.a),F.a)),G=jw(a,r.b.Lh()),Q$(A.a,D,G)),b)}for(h=new qsd(dsd(c.A).b.Qb());h.b.Rc();){g=h.b.Sc();FS((H=jw(a,(!g.d&&P3b(g),kH(g.a.Lh(),g.d))),I=jw(a,g.a.Lh()),new HS(vuc(quc(nFc,1),nBd,106,0,[V$(A.b,H),Q$(A.a,I,H)]))),b)}for(o=new qsd(dsd(c.t).b.Qb());o.b.Rc();){n=o.b.Sc();(q=bT(a.j,n),!q||q.sd()?(a_(),_$):g0(q)).qh(b)}for(e=new qsd(dsd(c.q).b.Qb());e.b.Rc();){d=e.b.Sc();(q=iT(a.j,d),!q||q.sd()?(a_(),_$):g0(q)).qh(b)}for(v=new qsd(dsd(c.w).b.Qb());v.b.Rc();){t=v.b.Sc();S$(new T$(jw(a,t.a),10,(QQ(),PQ)),b)}for(w=new qsd(dsd(c.C).b.Qb());w.b.Rc();){t=w.b.Sc();F$(e0(dT(a.j,t).gh()),b)}for(u=new qsd(dsd(c.B).b.Qb());u.b.Rc();){t=u.b.Sc();FS(f0(a,t),b)}} +function RS(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C;h=new By;if(!c||!b){return}for(e=new iud(new gud(a.d));e.b!=e.c.a.b;){d=hud(e);c.dg(d.e.Lh())&&mx(h,d.d)}for(g=new iud(new gud(a.e));g.b!=g.c.a.b;){f=hud(g);c.dg(f.e.Lh())&&nx(h,f.d)}for(q=(r=(new ard(a.k)).a.mp().Qb(),new brd(r));q.a.Rc();){o=(n=q.a.Sc(),n.yp());c.dg(a.f.ce((s=mUb(o.a),s.a)))&&rx(h,o)}for(A=new Vqd((new Sqd(a.p)).a);A.b;){w=Uqd(A);c.dg(w.Ok().Lh())&&tx(h,w.yp())}for(m=new Vqd((new Sqd(a.i)).a);m.b;){j=Uqd(m);c.dg(j.Ok().Jh())&&ox(h,j.yp())}for(l=new Vqd((new Sqd(a.u)).a);l.b;){j=Uqd(l);c.dg(j.Ok().Jh())&&lx(h,j.yp())}for(u=new Vqd((new Sqd(a.o)).a);u.b;){s=Uqd(u);c.dg(s.Ok().Jh())&&sx(h,s.yp())}for(C=new Vqd((new Sqd(a.v)).a);C.b;){B=Uqd(C);c.dg(B.Ok().Jh())&&px(h,B.yp())}for(t=new Vqd((new Sqd(a.q)).a);t.b;){s=Uqd(t);v=s.Ok().gh();kvc(c,237)&&c.dg(kH(v.b,new qad(v.c*0.5,0)))?ux(h,s.yp()):c.dg(v.b)&&c.dg(kH(v.b,new qad(0,v.a)))&&c.dg(kH(v.b,new qad(v.c,0)))&&c.dg(kH(v.b,new qad(v.c,v.a)))&&ux(h,s.yp())}b.cf(h)} +function Uhc(){var a=['\\u0000','\\u0001','\\u0002','\\u0003','\\u0004','\\u0005','\\u0006','\\u0007','\\b','\\t','\\n','\\u000B','\\f','\\r','\\u000E','\\u000F','\\u0010','\\u0011','\\u0012','\\u0013','\\u0014','\\u0015','\\u0016','\\u0017','\\u0018','\\u0019','\\u001A','\\u001B','\\u001C','\\u001D','\\u001E','\\u001F'];a[34]='\\"';a[92]='\\\\';a[173]='\\u00ad';a[1536]='\\u0600';a[1537]='\\u0601';a[1538]='\\u0602';a[1539]='\\u0603';a[1757]='\\u06dd';a[1807]='\\u070f';a[6068]='\\u17b4';a[6069]='\\u17b5';a[8203]='\\u200b';a[8204]='\\u200c';a[8205]='\\u200d';a[8206]='\\u200e';a[8207]='\\u200f';a[8232]='\\u2028';a[8233]='\\u2029';a[8234]='\\u202a';a[8235]='\\u202b';a[8236]='\\u202c';a[8237]='\\u202d';a[8238]='\\u202e';a[8288]='\\u2060';a[8289]='\\u2061';a[8290]='\\u2062';a[8291]='\\u2063';a[8292]='\\u2064';a[8298]='\\u206a';a[8299]='\\u206b';a[8300]='\\u206c';a[8301]='\\u206d';a[8302]='\\u206e';a[8303]='\\u206f';a[65279]='\\ufeff';a[65529]='\\ufff9';a[65530]='\\ufffa';a[65531]='\\ufffb';return a} +function tV(a,b,c,d,e){var f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J,K,L,M;if(!(U(d)==sXc&&d.Gl()==null)){return g=new LV,h=JV(g,DV(b,a,d)),j=IV(g,yV(b,bUb(d.Yl()),true)),l=CV(b,a,d,d.Gl()==null||Hnd('*',d.Zl()),g,c.i),m=zV(b,a,d,true,g,c.q),n=uV(a,d,rV(h),(Iac(),Fac),c.t),MV(n,j,l,m),EV(KV(g),(o=a.ce(d.Lh()),GV(o,1,a.Yd())),mW(n.b.a),e,true)}f=hV(d,c.s,c.u,c.n);return f?(q=new LV,r=IV(q,wV(b,d.Zl(),a.ce(d.Lh()))),s=IV(q,(t=d.Zl(),BV(b,new jX((HU(),BU),false),d.Tl()>0&&Hnd(k1b(d.Hl()),t)?''+d.Tl():null))),u=GW(new IW(a,new RW(c.n,c.s)),d),v=YV(b,c,d,u,q),w=IV(q,yV(b,bUb(d.Yl()),true)),A=CV(b,a,d,d.Gl()==null,q,c.i),B=zV(b,a,d,true,q,c.q),C=uV(a,d,new ibc(new qad(r.f,r.i),r.e,r.d),u,c.t),PV(C,s),OV(C,v),MV(C,w,A,B),EV(KV(q),(D=a.ce(d.Lh()),GV(D,1,a.Yd())),mW(C.b.a),e,false)):(F=new LV,G=IV(F,yV(b,bUb(d.Yl()),false)),H=CV(b,a,d,d.Gl()==null,F,c.i),I=zV(b,a,d,false,F,c.q),J=(K=a.ce(d.Lh()),GV(K,3,a.Yd())),L=uV(a,d,J,(Iac(),Fac),c.t),MV(L,G,H,I),FV(KV(F),J,(M=a.ce(d.Lh()),GV(M,1,a.Yd())),mW(L.b.a),e))} +function Ndb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C;l=new Gdb;for(e=new qsd(dsd(a.n).b.Qb());e.b.Rc();){c=e.b.Sc();Ex(b,c)&&(hs(l.n,c)!=-1||Wr(l.n,c))}for(u=new qsd(dsd(a.s).b.Qb());u.b.Rc();){t=u.b.Sc();Ex(b,t)&&rdb(l,t)}for(j=new qsd(dsd(a.p).b.Qb());j.b.Rc();){h=j.b.Sc();Ex(b,h)&&(hs(l.p,h)!=-1||Wr(l.p,h))}for(g=new qsd(dsd(a.o).b.Qb());g.b.Rc();){f=g.b.Sc();Ex(b,f)&&(hs(l.o,f)!=-1||Wr(l.o,f))}for(n=new qsd(dsd(a.q).b.Qb());n.b.Rc();){m=n.b.Sc();Ex(b,m)&&Ex(b,m.c.Bm())&&Ex(b,iXb(m))&&(hs(l.q,m)!=-1||Wr(l.q,m))}for(d=new qsd(dsd(a.k).b.Qb());d.b.Rc();){c=d.b.Sc();Ex(b,c)&&mdb(l,c)}for(A=new qsd(dsd(a.t).b.Qb());A.b.Rc();){v=A.b.Sc();Ex(b,v)&&tdb(l,v)}for(C=new qsd(dsd(a.A).b.Qb());C.b.Rc();){B=C.b.Sc();Ex(b,B)&&tx(l,B)}for(w=new qsd(dsd(a.u).b.Qb());w.b.Rc();){v=w.b.Sc();Ex(b,v)&&rx(l,v)}for(r=new qsd(dsd(a.w).b.Qb());r.b.Rc();){o=r.b.Sc();Ldb(o,dsd(l.n),l.w)}for(s=new qsd(dsd(a.v).b.Qb());s.b.Rc();){o=s.b.Sc();Ldb(o,dsd(l.n),l.v)}for(q=new qsd(dsd(a.r).b.Qb());q.b.Rc();){o=q.b.Sc();Ldb(o,dsd(l.n),l.r)}return l} +function v7(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F;c=false;if(Hnd(b.substr(0,4),'M S')||S5((R5(),E5),b)||S5((R5(),D5),b)){S5((R5(),Q5),b)?D7(a,b):a.a.a.length==0||(S5(P5,b)?C7(a,b):S5(O5,b)?(d=O5,e=Ynd(b,d.a.length+1),f=(h5(),g=bod(e.substr(0,3)),g.length==0?0:Xmd(g,10)),e=e.substr(4),h=Yr(a.a,f-1),!!h&&(h.j=e),undefined):S5(F5,b)?w7(a,b):S5(G5,b)?x7(a,b):S5(H5,b)?y7(a,b):S5(L5,b)?B7(a,b):S5(M5,b)?(j=(h5(),l=bod(b.substr(7,3)),l.length==0?0:Xmd(l,10)),m=Yr(a.a,j-1),!!m&&s5(m,new e5(b)),undefined):S5(N5,b)?(n=(h5(),o=bod(b.substr(7,3)),o.length==0?0:Xmd(o,10)),q=Yr(a.a,n-1),!!q&&a5((!q.d&&(q.d=new b5),q.d),b),undefined):S5(I5,b)?(r=(h5(),s=bod(b.substr(7,3)),s.length==0?0:Xmd(s,10)),t=Yr(a.a,r-1),!!t&&a5((!t.d&&(t.d=new b5),t.d),b),undefined):S5(K5,b)?(u=(h5(),v=bod(b.substr(7,3)),v.length==0?0:Xmd(v,10)),w=Yr(a.a,u-1),!!w&&new c5(b),undefined):S5(J5,b)?z7(a,b):S5(D5,b)&&(A=D5,B=Ynd(b,A.a.length+1),C=(h5(),D=bod(B.substr(0,3)),D.length==0?0:Xmd(D,10)),B=B.substr(4),F=Yr(a.a,C-1),!!F&&(F.k=B),undefined));c=true}return c} +function Bdb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C;j=new Gdb;for(e=new qsd(dsd(b.r).b.Qb());e.b.Rc();){c=e.b.Sc();hs(a.n,c)!=-1&&(hs(j.n,c)!=-1||Wr(j.n,c))}for(h=new qsd(dsd(b.s).b.Qb());h.b.Rc();){f=h.b.Sc();hs(a.p,f)!=-1&&(hs(j.p,f)!=-1||Wr(j.p,f))}for(r=new qsd(dsd(b.u).b.Qb());r.b.Rc();){q=r.b.Sc();hs(a.s,q)!=-1&&rdb(j,q)}for(g=b.Re().Qb();g.Rc();){f=g.Sc();hs(a.o,f)!=-1&&(hs(j.o,f)!=-1||Wr(j.o,f));hs(a.n,f.a)!=-1&&ndb(j,f.a)}for(m=b.Oe().Qb();m.Rc();){l=m.Sc();hs(a.q,l)!=-1&&(hs(a.n,l.c.Bm())!=-1||hs(a.p,l.c.Bm())!=-1)&&(hs(a.n,iXb(l))!=-1||hs(a.p,iXb(l))!=-1)&&(hs(j.q,l)!=-1||Wr(j.q,l))}for(d=b.Le().Qb();d.Rc();){c=d.Sc();hs(a.k,c)!=-1&&mdb(j,c)}for(u=b.Qe().Qb();u.Rc();){s=u.Sc();hs(a.t,s)!=-1&&tdb(j,s)}for(v=b.Te().Qb();v.Rc();){s=v.Sc();hs(a.A,s)!=-1&&tx(j,s)}for(t=b.Se().Qb();t.Rc();){s=t.Sc();hs(a.u,s)!=-1&&rx(j,s)}for(C=new qsd(dsd(a.w).b.Qb());C.b.Rc();){B=C.b.Sc();Mdb(j,B,j.w)}for(A=new qsd(dsd(a.v).b.Qb());A.b.Rc();){w=A.b.Sc();Mdb(j,w,j.v)}for(o=new qsd(dsd(a.r).b.Qb());o.b.Rc();){n=o.b.Sc();Mdb(j,n,j.r)}return j} +function ftb(){ftb=p9c;Qrb=new bl(Zzd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTkuNTYgMTEuNjJMMTEuMTkgMTAgNSAzLjc1Yy0uMiAxLjUuODIgNC4wOCAyLjQ1IDUuNzF6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuNzggMTYuNDFhMy42MiAzLjYyIDAgMCAwLTQtMS43N2wtMi4yLTIuMjEgMy0zYzEuNjMtMS42MyAyLjY1LTQuMjEgMi40NS01LjcxTDguMTYgMTQuNjRhMy42MiAzLjYyIDAgMCAwLTMuOTQgMS43N2MtLjcgMS40OS0uMzIgMyAuODcgMy41OSAxIC40NSAyLjg2LjY3IDQuNTYtM2wuNTQtMS4xN0wxMiAxNC4wNmwxLjgxIDEuODEuNTQgMS4xM2MxLjcgMy42MyAzLjU5IDMuNDEgNC41NiAzIDEuMTktLjU2IDEuNTctMi4xLjg3LTMuNTl6bS0xMS4xOC4xNGMtMSAyLjA4LTIgMi44OS0zIDIuNC0uNjctLjMxLS42Ni0xLjI5LS4zMS0yLjA1YTIuNjIgMi42MiAwIDAgMSAzLjU1LS45ek0xOC40MyAxOWMtMSAuNDktMi4wNi0uMzItMy0yLjRsLS4yNy0uNmEyLjYyIDIuNjIgMCAwIDEgMy41OC44NmMuMzUuOC4zNiAxLjc4LS4zMSAyLjE0eiIvPjwvZz48L3N2Zz4=')))} +function sM(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;for(f=new qsd(dsd(b.r).b.Qb());f.b.Rc();){e=f.b.Sc();Ex(Lu(a.a.o.i).b,e)?Ty(Lu(a.a.o.i).b,e):Jy(Lu(a.a.o.i).b,e)}for(h=new qsd(dsd(b.s).b.Qb());h.b.Rc();){g=h.b.Sc();Ex(Lu(a.a.o.i).b,g)?qy(Lu(a.a.o.i).b,g):Ky(Lu(a.a.o.i).b,g)}for(o=new qsd(dsd(b.u).b.Qb());o.b.Rc();){m=o.b.Sc();Ex(Lu(a.a.o.i).b,m)?ry(Lu(a.a.o.i).b,m):rx(Lu(a.a.o.i).b,m)}for(t=new qsd(dsd(b.A).b.Qb());t.b.Rc();){s=t.b.Sc();Ex(Lu(a.a.o.i).b,s)?sy(Lu(a.a.o.i).b,s):Py(Lu(a.a.o.i).b,s)}for(l=new qsd(dsd(b.t).b.Qb());l.b.Rc();){j=l.b.Sc();Ex(Lu(a.a.o.i).b,j)?Vy(Lu(a.a.o.i).b,j):Ly(Lu(a.a.o.i).b,j)}for(d=new qsd(dsd(b.q).b.Qb());d.b.Rc();){c=d.b.Sc();Ex(Lu(a.a.o.i).b,c)?Sy(Lu(a.a.o.i).b,c):Iy(Lu(a.a.o.i).b,c)}for(q=new qsd(dsd(b.w).b.Qb());q.b.Rc();){m=q.b.Sc();Ex(Lu(a.a.o.i).b,m)?Yy(Lu(a.a.o.i).b,m):Oy(Lu(a.a.o.i).b,m)}for(r=new qsd(dsd(b.C).b.Qb());r.b.Rc();){m=r.b.Sc();Ex(Lu(a.a.o.i).b,m)?Wy(Lu(a.a.o.i).b,m):My(Lu(a.a.o.i).b,m)}for(n=new qsd(dsd(b.B).b.Qb());n.b.Rc();){m=n.b.Sc();Ex(Lu(a.a.o.i).b,m)?Zy(Lu(a.a.o.i).b,m):Qy(Lu(a.a.o.i).b,m)}} +function Kcd(a,b){var c=(a.__eventBits||0)^b;a.__eventBits=b;if(!c)return;c&1&&(a.onclick=b&1?Gcd:null);c&2&&(a.ondblclick=b&2?Gcd:null);c&4&&(a.onmousedown=b&4?Gcd:null);c&8&&(a.onmouseup=b&8?Gcd:null);c&16&&(a.onmouseover=b&16?Gcd:null);c&32&&(a.onmouseout=b&32?Gcd:null);c&64&&(a.onmousemove=b&64?Gcd:null);c&128&&(a.onkeydown=b&128?Gcd:null);c&256&&(a.onkeypress=b&256?Gcd:null);c&512&&(a.onkeyup=b&512?Gcd:null);c&1024&&(a.onchange=b&1024?Gcd:null);c&wzd&&(a.onfocus=b&wzd?Gcd:null);c&4096&&(a.onblur=b&4096?Gcd:null);c&8192&&(a.onlosecapture=b&8192?Gcd:null);c&16384&&(a.onscroll=b&16384?Gcd:null);c&32768&&(a.onload=b&32768?Hcd:null);c&gyd&&(a.onerror=b&gyd?Gcd:null);c&eLd&&(a.onmousewheel=b&eLd?Gcd:null);c&262144&&(a.oncontextmenu=b&262144?Gcd:null);c&ZKd&&(a.onpaste=b&ZKd?Gcd:null);c&uzd&&(a.ontouchstart=b&uzd?Gcd:null);c&fLd&&(a.ontouchmove=b&fLd?Gcd:null);c&vzd&&(a.ontouchend=b&vzd?Gcd:null);c&8388608&&(a.ontouchcancel=b&8388608?Gcd:null);c&gLd&&(a.ongesturestart=b&gLd?Gcd:null);c&hLd&&(a.ongesturechange=b&hLd?Gcd:null);c&iLd&&(a.ongestureend=b&iLd?Gcd:null)} +function dtb(){dtb=p9c;Orb=new bl(mGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE4IDIwSDUuNDZhLjQ5LjQ5IDAgMCAxLS40MS0uMjJsLTMtNC40N2EuNDcuNDcgMCAwIDEtLjA1LS40My41MS41MSAwIDAgMSAuMjktLjMyTDguNjIgMTIgOSAxM2wtNS43NSAyLjNMNS43MyAxOWgxMmwyLjg0LTMuOEwxNSAxM2wuMzctLjkyIDYuMTkgMi40N2EuNS41IDAgMCAxIC4yMS43NkwxOC40IDE5LjhhLjQ4LjQ4IDAgMCAxLS40LjJ6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNOS44MSAxMmg0LjM4djFIOS44MXptMC0yaDQuMzh2MUg5Ljgxem0wLTJoNC4zOHYxSDkuODF6bTAtMmg0LjM4djFIOS44MXpNMTcgMThINi41NGEuNS41IDAgMCAxLS40Mi0uMjJsLTEtMS41M2EuNS41IDAgMCAxLS4xMi0uNDMuNDcuNDcgMCAwIDEgLjI5LS4zMUw5IDE0YS4zOS4zOSAwIDAgMSAuMTggMGg1LjYyYS4zOS4zOSAwIDAgMSAuMiAwbDMuNDIgMS4zNmEuNS41IDAgMCAxIC4yMS43NkwxNy40IDE3LjhhLjQ4LjQ4IDAgMCAxLS40LjJ6TTYuOCAxN2gxMGwuNjgtLjkxTDE0LjcxIDE1SDkuMjlsLTMgMS4yMXoiLz48L2c+PC9zdmc+')))} +function _z(b){var c,d,e,f,g,h,j,l,m,n,o,q,r;q=new bA;try{Px(b)&&aA(q,null);for(g=new Frd(Ix(b));g.a2){l=null;for(A=(u=(new ard(m.a)).a.mp().Qb(),new brd(u));A.a.Rc();){w=(n=A.a.Sc(),n.yp());if(rsd(dsd(w.r),e)){l=w;Q1(w,q5(B));Hqd(v,w,mnd(B.n));break}}if(l){continue}l=_1(e);Q1(l,q5(B));Hqd(t,mnd(B.i),l);Hqd(v,l,mnd(B.n));FVb(a,l);m.a.pp(l,m)}else if(e.a.length==1){j=r5(B);j?e.a[0].jm(j.a):e.a[0].Hi(q5(B))}else if(e.a.length==2){o=new b2(e,q5(B));dsd(o.s).b.vd()==1&&(new qsd(dsd(o.s).b.Qb())).b.Sc().Hi(b1b(d1b(o.n)))}else e.a.length==0&&Wr(f,new _4(q5(B),B.n))}}U6(t,v);T6(t,f);for(C=new Frd(h);C.a0&&dsd(e.k).b.vd()==1&&Q0b(dsd(e.k).a.zd(0))&&atd(g,xvb)}atd(g,(Dvb(),svb));return g} +function bEb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B;d=new Bjd;En(d,(qgd(),mgd));c=new Wo;Vo(c,(vgd(),ugd));if(b){yjd(d,aEb(a,vuc(quc(uXc,1),MId,57,0,[(B3b(),m3b),n3b])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(e=new _td,f=vuc(quc(uXc,1),MId,57,0,[k3b,l3b]),Ytd(e,'',f),g=vuc(quc(uXc,1),MId,57,0,[g3b,h3b]),Ytd(e,'Aryl',g),h=vuc(quc(uXc,1),MId,57,0,[q3b,r3b]),Ytd(e,'Cycloalkyl',h),j=vuc(quc(uXc,1),MId,57,0,[o3b,p3b]),Ytd(e,'Cycloalkenyl',j),new gEb('Carb',e))])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(l=new _td,m=vuc(quc(uXc,1),MId,57,0,[w3b,x3b]),Ytd(l,'',m),n=vuc(quc(uXc,1),MId,57,0,[u3b,v3b]),Ytd(l,NId,n),new gEb(OId,l)),(o=new _td,q=vuc(quc(uXc,1),MId,57,0,[y3b,z3b]),Ytd(o,'',q),new gEb('No carbon',o))])))}else{yjd(d,aEb(a,vuc(quc(uXc,1),MId,57,0,[(B3b(),U2b),V2b])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(r=new _td,s=vuc(quc(uXc,1),MId,57,0,[i3b,j3b]),Ytd(r,'',s),t=vuc(quc(uXc,1),MId,57,0,[a3b,b3b]),Ytd(r,'Alkynyl',t),u=vuc(quc(uXc,1),MId,57,0,[$2b,_2b]),Ytd(r,'Alkyl',u),v=vuc(quc(uXc,1),MId,57,0,[W2b,X2b]),Ytd(r,'Alkenyl',v),new gEb('Carb',r))])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(w=new _td,A=vuc(quc(uXc,1),MId,57,0,[s3b,t3b]),Ytd(w,'',A),B=vuc(quc(uXc,1),MId,57,0,[Y2b,Z2b]),Ytd(w,'Alkoxy',B),new gEb(OId,w))])))}yjd(d,c);return d} +function jMb(){jMb=p9c;aMb=new kMb('IO',0,vuc(quc(g6c,1),eyd,2,6,[BGd,'save']));_Lb=new kMb('HISTORY',1,vuc(quc(g6c,1),eyd,2,6,[rGd,sGd]));VLb=new kMb('CLIPBOARD',2,vuc(quc(g6c,1),eyd,2,6,[Zzd,$zd,Yzd]));iMb=new kMb('ZOOM',3,vuc(quc(g6c,1),eyd,2,6,[UFd,VFd,'zoomToFit',FFd]));hMb=new kMb('THREE_D',4,vuc(quc(g6c,1),eyd,2,6,['clean3d',zHd]));fMb=new kMb('SELECT',5,vuc(quc(g6c,1),eyd,2,6,[jJd,kJd]));TLb=new kMb('BASIC_BONDS',6,vuc(quc(g6c,1),eyd,2,6,[_Fd,aGd,bGd]));YLb=new kMb('EXTENDED_BONDS',7,vuc(quc(g6c,1),eyd,2,6,[cGd,dGd,eGd,mGd]));dMb=new kMb('QUERY_BONDS',8,vuc(quc(g6c,1),eyd,2,6,[fGd,gGd,hGd,iGd,jGd,kGd,lGd,EFd]));ZLb=new kMb('FASTDRAW',9,vuc(quc(g6c,1),eyd,2,6,[GFd,BFd]));ULb=new kMb(HCd,10,vuc(quc(g6c,1),eyd,2,6,[CFd,DFd]));eMb=new kMb(jDd,11,vuc(quc(g6c,1),eyd,2,6,[vGd,KFd]));SLb=new kMb('ARROWS',12,vuc(quc(g6c,1),eyd,2,6,[LFd,MFd,NFd]));WLb=new kMb('EFLOWS',13,vuc(quc(g6c,1),eyd,2,6,[xHd,yHd]));XLb=new kMb('ELECTRONS',14,vuc(quc(g6c,1),eyd,2,6,[TFd,SFd]));gMb=new kMb('SHAPES',15,vuc(quc(g6c,1),eyd,2,6,['box',OFd]));$Lb=new kMb('FREQUENT_ATOMS',16,vuc(quc(g6c,1),eyd,2,6,['H','C','N','O']));cMb=new kMb('QUERY_ATOMS',17,vuc(quc(g6c,1),eyd,2,6,['A','AH','M','MH','Q','QH','X','XH',HGd,JGd]));bMb=new kMb('MIRROR',18,vuc(quc(g6c,1),eyd,2,6,[nGd,oGd]))} +function B3b(){B3b=p9c;c3b=new C3b('ANY_GROUP',0,'G');d3b=new C3b('ANY_GROUP_OR_H',1,'GH');f3b=new C3b('ANY_GROUP_RING_CLOSURE',2,'G*');e3b=new C3b('ANY_GROUP_OR_H_RING_CLOSURE',3,'GH*');A3b=new C3b('POLYMER',4,'Pol');U2b=new C3b('ACYCLIC',5,'ACY');V2b=new C3b('ACYCLIC_OR_H',6,'ACH');i3b=new C3b('CARBACYCLIC',7,'ABC');j3b=new C3b('CARBACYCLIC_OR_H',8,'ABH');a3b=new C3b('ALKYNYL',9,'AYL');b3b=new C3b('ALKYNYL_OR_H',10,'AYH');$2b=new C3b('ALKYL',11,'ALK');_2b=new C3b('ALKYL_OR_H',12,'ALH');W2b=new C3b('ALKENYL',13,'AEL');X2b=new C3b('ALKENYL_OR_H',14,'AEH');s3b=new C3b('HETEROACYCLIC',15,'AHC');t3b=new C3b('HETEROACYCLIC_OR_H',16,'AHH');Y2b=new C3b('ALKOXY',17,'AOX');Z2b=new C3b('ALKOXY_OR_H',18,'AOH');m3b=new C3b('CYCLIC',19,'CYC');n3b=new C3b('CYCLIC_OR_H',20,'CYH');k3b=new C3b('CARBOCYCLIC',21,'CBC');l3b=new C3b('CARBOCYCLIC_OR_H',22,'CBH');g3b=new C3b('ARYL',23,'ARY');h3b=new C3b('ARYL_OR_H',24,'ARH');q3b=new C3b('CYCLOALKYL',25,'CAL');r3b=new C3b('CYCLOALKYL_OR_H',26,'CAH');o3b=new C3b('CYCLOALKENYL',27,'CEL');p3b=new C3b('CYCLOALKENYL_OR_H',28,'CEH');w3b=new C3b('HETEROCYCLIC',29,'CHC');x3b=new C3b('HETEROCYCLIC_OR_H',30,'CHH');u3b=new C3b('HETEROARYL',31,'HAR');v3b=new C3b('HETEROARYL_OR_H',32,'HAH');y3b=new C3b('NO_CARBON',33,'CXX');z3b=new C3b('NO_CARBON_OR_H',34,'CXH')} +function Dpd(a,b){Bpd();var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J;D=a.e;q=a.d;e=a.a;if(D==0){switch(b){case 0:return '0';case 1:return '0.0';case 2:return '0.00';case 3:return '0.000';case 4:return '0.0000';case 5:return '0.00000';case 6:return '0.000000';default:B=new yod;b<0?(B.a+='0E+',B):(B.a+='0E',B);B.a+=-b;return B.a;}}v=q*10+1+7;w=suc(svc,fyd,23,v+1,15,1);c=v;if(q==1){g=e[0];if(g<0){J=K8c(g,SLd);do{r=J;J=N8c(J,10);w[--c]=48+d9c(a9c(r,V8c(J,10)))&hyd}while(L8c(J,0)!=0)}else{J=g;do{r=J;J=J/10|0;w[--c]=48+(r-J*10)&hyd}while(J!=0)}}else{G=suc(uvc,jyd,23,q,15,1);I=q;Eod(e,0,G,0,q);K:while(true){C=0;for(j=I-1;j>=0;j--){H=J8c(Z8c(C,32),K8c(G[j],SLd));t=Cpd(H);G[j]=d9c(t);C=d9c($8c(t,32))}u=d9c(C);s=c;do{w[--c]=48+u%10&hyd}while((u=u/10|0)!=0&&c!=0);d=9-s+c;for(h=0;h0;h++){w[--c]=48}m=I-1;for(;G[m]==0;m--){if(m==0){break K}}I=m+1}while(w[c]==48){++c}}o=D<0;f=v-c-b-1;if(b==0){o&&(w[--c]=45);return Cnd(),kod(w,c,v-c)}if(b>0&&f>=-6){if(f>=0){l=c+f;for(n=v-1;n>=l;n--){w[n+1]=w[n]}w[++l]=46;o&&(w[--c]=45);return Cnd(),kod(w,c,v-c+1)}for(m=2;m<-f+1;m++){w[--c]=48}w[--c]=46;w[--c]=48;o&&(w[--c]=45);return Cnd(),kod(w,c,v-c)}F=c+1;A=new zod;o&&(A.a+='-',A);if(v-F>=1){qod(A,w[c]);A.a+='.';A.a+=kod(w,c+1,v-c-1)}else{A.a+=kod(w,c,v-c)}A.a+='E';f>0&&(A.a+='+',A);nod(A,(Cnd(),''+f));return A.a} +function kxd(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;for(h=16;h<80;h++){q=a.f[h-3]^a.f[h-8]^a.f[h-14]^a.f[h-16];a.f[h]=q<<1|q>>>31}b=a.a;c=a.b;d=a.c;e=a.d;f=a.e;j=0;for(m=0;m<4;m++){f+=(b<<5|b>>>27)+(c&d|~c&e)+a.f[j++]+hMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b&c|~b&d)+a.f[j++]+hMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f&b|~f&c)+a.f[j++]+hMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e&f|~e&b)+a.f[j++]+hMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d&e|~d&f)+a.f[j++]+hMd;d=d<<30|d>>>2}for(n=0;n<4;n++){f+=(b<<5|b>>>27)+(c^d^e)+a.f[j++]+iMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b^c^d)+a.f[j++]+iMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f^b^c)+a.f[j++]+iMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e^f^b)+a.f[j++]+iMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d^e^f)+a.f[j++]+iMd;d=d<<30|d>>>2}for(o=0;o<4;o++){f+=(b<<5|b>>>27)+(c&d|c&e|d&e)+a.f[j++]+jMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b&c|b&d|c&d)+a.f[j++]+jMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f&b|f&c|b&c)+a.f[j++]+jMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e&f|e&b|f&b)+a.f[j++]+jMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d&e|d&f|e&f)+a.f[j++]+jMd;d=d<<30|d>>>2}for(l=0;l<=3;l++){f+=(b<<5|b>>>27)+(c^d^e)+a.f[j++]+kMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b^c^d)+a.f[j++]+kMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f^b^c)+a.f[j++]+kMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e^f^b)+a.f[j++]+kMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d^e^f)+a.f[j++]+kMd;d=d<<30|d>>>2}a.a+=b;a.b+=c;a.c+=d;a.d+=e;a.e+=f;a.i=0;for(g=0;g<16;g++){a.f[g]=0}} +function Ttb(){Ttb=p9c;Csb=new bl(jGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgOWgxbC0yIDZoLTF6bS0yLjg1IDEuNTRhLjg3Ljg3IDAgMCAwLS40LS4yOSAxLjQ1IDEuNDUgMCAwIDAtLjQ4LS4wOUg4YTEuNjkgMS42OSAwIDAgMC0uMjcuMS42MS42MSAwIDAgMC0uMi4xOS40LjQgMCAwIDAtLjA4LjI3LjQ3LjQ3IDAgMCAwIC4xOS40IDEuODcgMS44NyAwIDAgMCAuNDcuMjNsLjYxLjE5YTIuNjcgMi42NyAwIDAgMSAuNjIuMjggMS40MSAxLjQxIDAgMCAxIC40Ny40NyAxLjQ2IDEuNDYgMCAwIDEgLjE5LjggMiAyIDAgMCAxLS4xNy44MyAxLjcxIDEuNzEgMCAwIDEtLjQ3LjU5IDEuOTEgMS45MSAwIDAgMS0uNjguMzUgMy4xMiAzLjEyIDAgMCAxLS44Mi4xMSAzIDMgMCAwIDEtMS0uMTcgMi41MSAyLjUxIDAgMCAxLS44Ni0uNTJsLjg3LTFhMS4zMSAxLjMxIDAgMCAwIC40Ny40IDEuMzggMS4zOCAwIDAgMCAuNTkuMTQgMSAxIDAgMCAwIC4zIDAgLjc4Ljc4IDAgMCAwIC4yOC0uMTEuNjYuNjYgMCAwIDAgLjE5LS4xOC41LjUgMCAwIDAgLjA4LS4yNy41Mi41MiAwIDAgMC0uMTktLjQxIDIuMTUgMi4xNSAwIDAgMC0uNDgtLjI1bC0uNjMtLjIxYTIuNzUgMi43NSAwIDAgMS0uNjMtLjI4IDEuNjUgMS42NSAwIDAgMS0uNDgtLjQ3IDEuMzQgMS4zNCAwIDAgMS0uMTktLjc2IDEuNzMgMS43MyAwIDAgMSAuMTgtLjgxIDEuNTcgMS41NyAwIDAgMSAuNDctLjU4IDEuNzkgMS43OSAwIDAgMSAuNjctLjM1QTIuNjYgMi42NiAwIDAgMSA4LjI5IDlhMyAzIDAgMCAxIC45MS4xNCAyIDIgMCAwIDEgLjguNDZ6TTE0LjQ0IDloMWwyLjQ3IDZoLTEuMzhMMTYgMTMuNzNoLTIuMkwxMy4zNyAxNUgxMnptLjQ4IDEuNzVsLS42OSAxLjg2aDEuMzl6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} +function ekb(a){var b;b=new OQb(new GQb);dkb(a,Zzd,new wub(a.c,b),'Cut',(ftb(),Qrb),88);dkb(a,$zd,new vub(a.c,b),'Copy',(etb(),Prb),67);dkb(a,Yzd,new xub(a.c,b),'Paste',(Gtb(),psb),86);ckb(a,_Fd,'Single',(Rtb(),Asb),'1',(s6b(),m6b));ckb(a,aGd,'Double',(itb(),Trb),'2',h6b);ckb(a,bGd,'Triple',(_tb(),Ksb),'3',q6b);ckb(a,cGd,'Aromatic',(Vsb(),Erb),'4',f6b);ckb(a,dGd,'Single Up',(Wtb(),Fsb),'5',r6b);ckb(a,eGd,'Single Down',(Stb(),Bsb),'6',l6b);ckb(a,fGd,'Single Up or Down',(Xtb(),Gsb),'7',p6b);bkb(a,gGd,'Double Cis or Trans',(jtb(),Urb),i6b);bkb(a,hGd,'Double C/T or Unspecified',(ktb(),Vrb),j6b);ckb(a,iGd,'Single or Double',(Utb(),Dsb),'1,2',o6b);ckb(a,jGd,'Single or Aromatic',(Ttb(),Csb),'1,4',n6b);ckb(a,kGd,'Double or Aromatic',(ltb(),Wrb),'2,4',k6b);ckb(a,lGd,'Any',(Usb(),Drb),'0',e6b);nkb(a,mGd,new Xpb((dtb(),Orb),a.f));nkb(a,nGd,Cpb(a.f,(zrb(),wrb)));nkb(a,oGd,Ipb(a.f,(Arb(),xrb)));nkb(a,pGd,Bpb(a.f));nkb(a,qGd,Hpb(a.f));nkb(a,'A',ikb(a,(WZb(),DXb)));nkb(a,'Q',ikb(a,gZb));nkb(a,'M',ikb(a,IYb));nkb(a,'X',ikb(a,OZb));nkb(a,'AH',ikb(a,GXb));nkb(a,'QH',ikb(a,hZb));nkb(a,'MH',ikb(a,LYb));nkb(a,'XH',ikb(a,QZb));nkb(a,rGd,new Eqb(a.f,(bub(),Msb)));nkb(a,sGd,new gqb(a.f,(Ltb(),usb)));nkb(a,tGd,$pb('Expand',(qtb(),_rb),spb(new upb(null),a.f),new bqb(a.d,a.f.i)));nkb(a,uGd,new Oob((ctb(),Nrb),a.f,a.d));nkb(a,vGd,new Dqb((Ytb(),Hsb),a.f,new TL(a.f),new MQb(new jEb(a.f))));nkb(a,wGd,new cob(a.f,a.d));nkb(a,xGd,new iqb(a.f,a.d))} +function Wsb(){Wsb=p9c;Frb=new bl(gHd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMntmaWxsOiM1MDUwNTA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5Bcm9tYXRpemF0aW9uIDA0PC90aXRsZT48ZyBpZD0iVHJpbV9BcmVhIiBkYXRhLW5hbWU9IlRyaW0gQXJlYSI+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz48L2c+PGcgaWQ9Ikljb25zIj48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xMi41LDE2LjVBMi41LDIuNSwwLDEsMCwxNSwxNCwyLjUsMi41LDAsMCwwLDEyLjUsMTYuNVptNCwwQTEuNSwxLjUsMCwxLDEsMTUsMTUsMS41LDEuNSwwLDAsMSwxNi41LDE2LjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTAsMTMuNzF2NS41OGw1LDIuNzgsNS0yLjc4VjEzLjcxbC01LTIuNzhabTksNS00LDIuMjItNC0yLjIyVjE0LjI5bDQtMi4yMiw0LDIuMjJaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTIsNC43MSw3LDEuOTMsMiw0LjcxdjUuNThsNSwyLjc4LDUtMi43OFptLTEsNUw3LDExLjkzLDMsOS43MVY1LjI5TDcsMy4wN2w0LDIuMjJaIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjA0IDUuODcgOSA1LjI5IDkgNi40NCA5IDguNTYgOSA5LjcxIDEwLjA0IDkuMTMgMTAuMDQgNS44NyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1LjA0IDguNyA0IDguMTMgNCA5LjI4IDYuOTQgMTAuOTEgNy45OCAxMC4zNCA2Ljk0IDkuNzYgNS4wNCA4LjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iNCA1LjcyIDQgNi44NyA1LjA0IDYuMyA2Ljk0IDUuMjQgNy45OCA0LjY2IDYuOTQgNC4wOCA0IDUuNzIiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMSw4VjYuNUEyLjUsMi41LDAsMCwwLDE4LjUsNEgxN1YzTDE0LDQuNSwxNyw2VjVoMS41QTEuNSwxLjUsMCwwLDEsMjAsNi41VjhIMTlsMS41LDNMMjIsOFoiLz48L2c+PC9zdmc+')))} +function YDb(){YDb=p9c;UDb=new $Db('IncreaseTotalH',0,'H',FId,mnd(1),mnd(0),mnd(4),(kcc(),Xbc),Dmd(72));PDb=new $Db('IncreaseImplicitH',1,'h',GId,mnd(1),mnd(0),mnd(4),Sbc,Dmd(104));NDb=new $Db('IncreaseBondOrder',2,'v',HId,mnd(1),mnd(0),mnd(8),Qbc,Dmd(118));ODb=new $Db('IncreaseConnections',3,'X',IId,mnd(1),mnd(0),mnd(3),Rbc,Dmd(120));RDb=new $Db('IncreaseRingCount',4,'R',yId,mnd(1),mnd(0),mnd(6),Ubc,Dmd(82));SDb=new $Db('IncreaseSmallestRingSize',5,'r',JId,mnd(1),mnd(0),mnd(30),Vbc,Dmd(114));QDb=new $Db('IncreaseRingBond',6,'rb',xId,mnd(1),mnd(0),mnd(4),Tbc,Dmd(98));TDb=new $Db('IncreaseSubstitutions',7,'s',zId,mnd(1),mnd(0),mnd(6),Wbc,Dmd(115));XDb=new $Db(hId,8,'u',hId,null,null,null,Ybc,Dmd(117));MDb=new ZDb('DecreaseTotalH',9,'H',FId,mnd(-1),mnd(0),mnd(4),Xbc);HDb=new ZDb('DecreaseImplicitH',10,'h',GId,mnd(-1),mnd(0),mnd(4),Sbc);FDb=new ZDb('DecreaseBondOrder',11,'v',HId,mnd(-1),mnd(0),mnd(8),Qbc);GDb=new ZDb('DecreaseConnections',12,'X',IId,mnd(-1),mnd(0),mnd(3),Rbc);JDb=new ZDb('DecreaseRingCount',13,'R',yId,mnd(-1),mnd(0),mnd(6),Ubc);KDb=new ZDb('DecreaseSmallestRingSize',14,'r',JId,mnd(-1),mnd(0),mnd(30),Vbc);IDb=new ZDb('DecreaseRingBond',15,'rb',xId,mnd(-1),mnd(0),mnd(4),Tbc);LDb=new ZDb('DecreaseSubstitutions',16,'s',zId,mnd(-1),mnd(0),mnd(6),Wbc);EDb=new $Db(KId,17,'a/A',KId,null,null,null,Pbc,Dmd(97));VDb=new ZDb('RingBond',18,'rb*','*Ring bond',null,null,null,Tbc);WDb=new ZDb(zId,19,'s*','*Substitutions',null,null,null,Wbc)} +function C1(){C1=p9c;m1=new D1('MRV',0,'ChemAxon Marvin Document (MRV)',false,true,(a3(),L2));k1=new D1('MOL',1,'MDL Molfile',false,true,I2);t1=new D1('RXN',2,'MDL RXNfile',false,true,T2);r1=new D1('RGF',3,'MDL RGfile',false,true,R2);q1=new D1('RDF',4,'MDL RDfile',false,true,Q2);z1=new D1(mDd,5,mDd,false,true,Z2);d1=new D1('CXSMILES',6,'ChemAxon SMILES',false,true,E2);y1=new D1(nDd,7,nDd,false,true,Y2);c1=new D1('CXSMARTS',8,'ChemAxon Extended SMARTS',false,true,D2);g1=new D1('INCHI',9,'InChI',false,true,G2);h1=new D1('INCHIKEY',10,'InChIKey',false,false,H2);e1=new E1('DOCUMENT',11,'Document',true,true,false,F2);f1=new E1('HTML_XML',12,'HTML or XML',false,true,false,$2);n1=new D1(XAd,13,Lyd,false,true,M2);_0=new D1('CML',14,'CML',false,true,A2);l1=new D1(kDd,15,'MDL Molfile V3000',false,true,J2);u1=new D1('RXN_V3',16,'MDL RXNfile V3000',false,true,U2);s1=new D1('RGF_V3',17,'MDL RGfile V3000',false,true,S2);v1=new D1('SDF',18,'MDL SDfile',false,true,V2);w1=new E1('SDF_CTAB',19,'MDL SDfile (CTAB v2000)',false,false,true,W2);a1=new D1('CSMOL',20,'ChemAxon Compressed Molfile',false,true,B2);b1=new D1('CSSDF',21,'ChemAxon Compressed SDfile',false,true,C2);Z0=new D1('CDX',22,'CDX File format',true,true,y2);$0=new E1('CDXML',23,'CDXML File format',false,true,false,z2);x1=new D1('SKC',24,'SKC File format',true,true,X2);p1=new E1('PDF',25,'PDF file',true,true,false,P2);o1=new D1('PDB',26,'Protein Data Bank / PDB',false,true,O2);i1=vuc(quc(xHc,1),oDd,383,0,[m1,k1]);j1=vuc(quc(xHc,1),oDd,383,0,[m1,k1,l1])} +function qw(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J,K,L,M,N,O,P,Q,R;F=ax(Mu(a.a));m=hx(Lu(a.a));h=Bdb(a.a.C,m);J=a.a;s=a.a.a.f;for(r=new Frd(cVb(h));r.a0;--o){f=w.zd(o-1);Ytd(a.d,f,new dV(f,a.n,a.f,a.f,a.f,a.s))}for(q=A.vd();q>0;--q){f=A.zd(q-1);Ytd(a.e,f,(J=YS(a,f),K=TS(a,J,fT(a,f.c),fT(a,f.d)),!!f&&((s6b(),h6b)==f.o||f6b==f.o)&&!Cqd(a.b,f)&&Hqd(a.b,f,J),K))}for(r=B.vd();r>0;--r){f=B.zd(r-1);Ytd(a.k,f,US(a,f,new c_(a.f.ce((D=mUb(f.a),D.a))),fT(a,f.b)))}for(n=C.vd();n>0;--n){f=C.zd(n-1);Hqd(a.p,f,new SZ(f,a.n,a.f,a.f,a.f,a.s))}for(l=new Frd(new gs(dsd(b.q)));l.a=-1900?1:0;c>=4?nod(a,vuc(quc(g6c,1),eyd,2,6,[LKd,MKd])[h]):nod(a,vuc(quc(g6c,1),eyd,2,6,['BC','AD'])[h]);break;case 121:prc(a,c,d);break;case 77:orc(a,c,d);break;case 107:j=e.r.getHours();j==0?Krc(a,24,c):Krc(a,j,c);break;case 83:nrc(a,c,e);break;case 69:m=d.r.getDay();c==5?nod(a,vuc(quc(g6c,1),eyd,2,6,['S','M','T','W','T','F','S'])[m]):c==4?nod(a,vuc(quc(g6c,1),eyd,2,6,[NKd,OKd,PKd,QKd,RKd,SKd,TKd])[m]):nod(a,vuc(quc(g6c,1),eyd,2,6,['Sun','Mon','Tue','Wed','Thu','Fri','Sat'])[m]);break;case 97:e.r.getHours()>=12&&e.r.getHours()<24?nod(a,vuc(quc(g6c,1),eyd,2,6,['AM','PM'])[1]):nod(a,vuc(quc(g6c,1),eyd,2,6,['AM','PM'])[0]);break;case 104:n=e.r.getHours()%12;n==0?Krc(a,12,c):Krc(a,n,c);break;case 75:o=e.r.getHours()%12;Krc(a,o,c);break;case 72:q=e.r.getHours();Krc(a,q,c);break;case 99:r=d.r.getDay();c==5?nod(a,vuc(quc(g6c,1),eyd,2,6,['S','M','T','W','T','F','S'])[r]):c==4?nod(a,vuc(quc(g6c,1),eyd,2,6,[NKd,OKd,PKd,QKd,RKd,SKd,TKd])[r]):c==3?nod(a,vuc(quc(g6c,1),eyd,2,6,['Sun','Mon','Tue','Wed','Thu','Fri','Sat'])[r]):Krc(a,r,1);break;case 76:s=d.r.getMonth();c==5?nod(a,vuc(quc(g6c,1),eyd,2,6,['J','F','M','A','M','J','J','A','S','O','N','D'])[s]):c==4?nod(a,vuc(quc(g6c,1),eyd,2,6,[yKd,zKd,AKd,BKd,CKd,DKd,EKd,FKd,GKd,HKd,IKd,JKd])[s]):c==3?nod(a,vuc(quc(g6c,1),eyd,2,6,['Jan','Feb','Mar','Apr',CKd,'Jun','Jul','Aug','Sep','Oct','Nov','Dec'])[s]):Krc(a,s+1,c);break;case 81:t=d.r.getMonth()/3|0;c<4?nod(a,vuc(quc(g6c,1),eyd,2,6,['Q1','Q2','Q3','Q4'])[t]):nod(a,vuc(quc(g6c,1),eyd,2,6,['1st quarter','2nd quarter','3rd quarter','4th quarter'])[t]);break;case 100:u=d.r.getDate();Krc(a,u,c);break;case 109:l=e.r.getMinutes();Krc(a,l,c);break;case 115:g=e.r.getSeconds();Krc(a,g,c);break;case 122:c<4?nod(a,f.c[0]):nod(a,f.c[1]);break;case 118:nod(a,f.b);break;case 90:c<3?nod(a,ltc(f)):c==3?nod(a,ktc(f)):nod(a,ntc(f.a));break;default:return false;}return true} +function Ztb(){Ztb=p9c;Isb=new bl('stereoinfo',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIgMTFoNHYySDJ6bTE2IDBoNHYyaC00eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDEwIDIwKSIgZD0iTTggMTloNHYySDh6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiB0cmFuc2Zvcm09InJvdGF0ZSgtOTAgMTQgMjApIiBkPSJNMTIgMTloNHYyaC00eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDEwIDQpIiBkPSJNOCAzaDR2Mkg4eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDE0IDQpIiBkPSJNMTIgM2g0djJoLTR6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTEuMzggMTIuNjdhMS4wOSAxLjA5IDAgMCAxIC4wNy0uNDIuOC44IDAgMCAxIC4yMi0uMzJsLjQyLS4zOGEzLjM5IDMuMzkgMCAwIDAgLjMzLS4zMSAxIDEgMCAwIDAgLjIyLS4yNy41LjUgMCAwIDAgLjA4LS4yNy41Ni41NiAwIDAgMC0uMTctLjQyLjYuNiAwIDAgMC0uNDItLjE1Ljc3Ljc3IDAgMCAwLS41OS4yMS44NC44NCAwIDAgMC0uMjIuNTJsLTEuMjctLjA4YTEuOSAxLjkgMCAwIDEgLjY0LTEuMzJBMi4xMiAyLjEyIDAgMCAxIDEyLjEgOWEyLjM0IDIuMzQgMCAwIDEgLjcxLjEgMS43NSAxLjc1IDAgMCAxIC41OS4zMSAxLjUxIDEuNTEgMCAwIDEgLjU1IDEuMiAyIDIgMCAwIDEgMCAuNDQgMS4zOSAxLjM5IDAgMCAxLS4xNy4zOCAyLjQ3IDIuNDcgMCAwIDEtLjMxLjM4IDQuNTUgNC41NSAwIDAgMS0uNDkuNDIuNzIuNzIgMCAwIDAtLjI1LjI5LjU1LjU1IDAgMCAwLS4wNy4yOHYuMmgtMS4yOHptLS4xNCAxLjU4YS43My43MyAwIDAgMSAuMDYtLjMuNzQuNzQgMCAwIDEgLjQtLjQuNzMuNzMgMCAwIDEgLjMtLjA2LjcyLjcyIDAgMCAxIC4yOS4wNi42Ny42NyAwIDAgMSAuMjQuMTYuNjMuNjMgMCAwIDEgLjE2LjI0LjczLjczIDAgMCAxIC4wNi4zLjcyLjcyIDAgMCAxLS4wNi4yOS43NC43NCAwIDAgMS0uNC40LjcyLjcyIDAgMCAxLS4yOS4wNi43My43MyAwIDAgMS0uMy0uMDYuNjMuNjMgMCAwIDEtLjI0LS4xNi42Ny42NyAwIDAgMS0uMTYtLjI0LjcyLjcyIDAgMCAxLS4wNi0uMjl6bS0yLjQyLjkzYTQuNDkgNC40OSAwIDAgMSAwLTYuMzZsLjcxLjdhMy41IDMuNSAwIDAgMCAwIDV6bTYuMzYgMGwtLjcxLS43YTMuNSAzLjUgMCAwIDAgMC01bC43MS0uN2E0LjQ5IDQuNDkgMCAwIDEgMCA2LjM2eiIvPjwvZz48L3N2Zz4=')))} +function agc(){agc=p9c;Vec=new Ndc;Uec=new Mdc;Wec=new Odc;Xec=new Udc;Yec=new Vdc;Zec=new Ydc;$ec=new Zdc;_ec=new $dc;afc=new _dc;bfc=new aec;cfc=new bec;dfc=new cec;efc=new dec;ffc=new eec;gfc=new fec;hfc=new gec;jfc=new iec;ifc=new hec;kfc=new jec;lfc=new kec;mfc=new nec;nfc=new oec;pfc=new qec;qfc=new rec;ofc=new pec;rfc=new sec;sfc=new tec;tfc=new uec;ufc=new vec;wfc=new yec;yfc=new Aec;zfc=new Bec;xfc=new zec;vfc=new wec;Afc=new Cec;Bfc=new Dec;Cfc=new Eec;Dfc=new Fec;Efc=new Oec;Gfc=new Sec;Ffc=new Rec;Hfc=new Tec;Kfc=new cgc;Lfc=new dgc;Jfc=new bgc;Mfc=new egc;Nfc=new fgc;Ofc=new ggc;Pfc=new hgc;Qfc=new igc;Rfc=new lgc;Tfc=new ngc;Ufc=new ogc;Sfc=new mgc;Vfc=new pgc;Wfc=new qgc;Xfc=new rgc;Yfc=new sgc;$fc=new ugc;_fc=new vgc;Zfc=new tgc;Ifc=new ltd;Iqd(Ifc,'region',Hfc);Iqd(Ifc,'alert',Uec);Iqd(Ifc,rAd,efc);Iqd(Ifc,MJd,Vec);Iqd(Ifc,NJd,Wec);Iqd(Ifc,'document',gfc);Iqd(Ifc,'article',Xec);Iqd(Ifc,'banner',Yec);Iqd(Ifc,OJd,Zec);Iqd(Ifc,PJd,$ec);Iqd(Ifc,'gridcell',jfc);Iqd(Ifc,QJd,_ec);Iqd(Ifc,'group',kfc);Iqd(Ifc,'combobox',afc);Iqd(Ifc,RJd,bfc);Iqd(Ifc,SJd,cfc);Iqd(Ifc,TJd,dfc);Iqd(Ifc,'list',ofc);Iqd(Ifc,'directory',ffc);Iqd(Ifc,'form',hfc);Iqd(Ifc,'grid',ifc);Iqd(Ifc,'heading',lfc);Iqd(Ifc,'img',mfc);Iqd(Ifc,'link',nfc);Iqd(Ifc,'listbox',pfc);Iqd(Ifc,'listitem',qfc);Iqd(Ifc,'log',rfc);Iqd(Ifc,'main',sfc);Iqd(Ifc,'marquee',tfc);Iqd(Ifc,'math',ufc);Iqd(Ifc,'menu',vfc);Iqd(Ifc,'menubar',wfc);Iqd(Ifc,'menuitem',xfc);Iqd(Ifc,UJd,yfc);Iqd(Ifc,XJd,Cfc);Iqd(Ifc,'radio',Ffc);Iqd(Ifc,VJd,zfc);Iqd(Ifc,WJd,Afc);Iqd(Ifc,'note',Bfc);Iqd(Ifc,YJd,Dfc);Iqd(Ifc,ZJd,Efc);Iqd(Ifc,$Jd,Gfc);Iqd(Ifc,'row',Jfc);Iqd(Ifc,'rowgroup',Kfc);Iqd(Ifc,'rowheader',Lfc);Iqd(Ifc,nJd,Nfc);Iqd(Ifc,'separator',Ofc);Iqd(Ifc,'scrollbar',Mfc);Iqd(Ifc,'slider',Pfc);Iqd(Ifc,_Jd,Qfc);Iqd(Ifc,'status',Rfc);Iqd(Ifc,'tab',Sfc);Iqd(Ifc,'tablist',Tfc);Iqd(Ifc,'tabpanel',Ufc);Iqd(Ifc,aAd,Vfc);Iqd(Ifc,'timer',Wfc);Iqd(Ifc,'toolbar',Xfc);Iqd(Ifc,'tooltip',Yfc);Iqd(Ifc,'tree',Zfc);Iqd(Ifc,'treegrid',$fc);Iqd(Ifc,'treeitem',_fc)} +function aq(a){if(!a.a){a.a=true;Xnc();Znc((Lsc(),'.gwt-progress{position:relative;height:4px;display:block;width:100%;background-color:#acece6;border-radius:2px;overflow:hidden;}.gwt-progress .gwt-determinate{position:absolute;background-color:inherit;top:0;left:0;bottom:0;background-color:#26a69a;transition:width 0.3s linear;}.gwt-progress .gwt-indeterminate{background-color:#26a69a;}.gwt-progress .gwt-indeterminate:before{content:"";position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left, right;-webkit-animation:gwt-indeterminate 3.5s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;animation:gwt-indeterminate 3.5s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;}.gwt-progress .gwt-indeterminate:after{content:"";position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left, right;-webkit-animation:gwt-indeterminate-short 3.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;animation:gwt-indeterminate-short 3.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;-webkit-animation-delay:1.9s;animation-delay:1.9s;}@-webkit-keyframes gwt-indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@keyframes gwt-indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@-webkit-keyframes gwt-indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}@keyframes gwt-indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}.gwt-progress{background-color:#ebeef1;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;color:#fff;transition:1s all;-webkit-transition:1s all;-moz-transition:1s all;margin:0;top:0;left:0;position:absolute;height:2px;}.gwt-progress .gwt-indeterminate{border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;transition:1s all;-webkit-transition:1s all;-moz-transition:1s all;background-color:#4881d7;}.gwt-progressContainer{position:relative;}.gwt-progressFallback{position:absolute;top:5px;left:5px;}'));return true}return false} +function kr(){kr=p9c;rq=new lr('ALPHA',0,'\u03B1','α');tq=new lr('BETA',1,'\u03B2','β');Bq=new lr('GAMMA',2,'\u03B3','γ');xq=new lr('DELTA',3,'\u03B4','δ');yq=new lr('EPSILON',4,'\u03B5','ε');jr=new lr('ZETA',5,'\u03B6','ζ');zq=new lr('ETA',6,'\u03B7','η');gr=new lr('THETA',7,'\u03B8','θ');Fq=new lr('IOTA',8,'\u03B9','ι');Gq=new lr('KAPPA',9,'\u03BA','κ');Hq=new lr('LAMBDA',10,'\u03BB','λ');Oq=new lr('MU',11,'\u03BC','μ');Qq=new lr('NU',12,'\u03BD','ν');ir=new lr('XI',13,'\u03BE','ξ');Sq=new lr('OMICRON',14,'\u03BF','ο');Wq=new lr('PI',15,'\u03C0','π');$q=new lr('RHO',16,'\u03C1','ρ');br=new lr('SIGMA',17,'\u03C3','σ');fr=new lr('TAU',18,'\u03C4','τ');hr=new lr('UPSILON',19,'\u03C5','υ');Vq=new lr('PHI',20,'\u03C6','φ');vq=new lr('CHI',21,'\u03C7','χ');Zq=new lr('PSI',22,'\u03C8','ψ');Rq=new lr('OMEGA',23,'\u03C9','ω');uq=new lr('CELSIUS',24,'\u2103','℃');Aq=new lr('FAHRENHEIT',25,'\u2109','℉');sq=new lr('ANGSTROM',26,'\u212B','Å');wq=new lr('DEGREE',27,UAd,'°');cr=new lr('SMALL_H_WITHSTROKE',28,'\u0127','ħ');Xq=new lr('PLUSMINUS',29,'\xB1','±');Uq=new lr('PER_MILLE',30,VAd,'‰');dr=new lr('SQRT',31,'\u221A','√');Jq=new lr('LEFT_ARROW',32,'\u2190','←');_q=new lr('RIGHT_ARROW',33,'\u2192','→');Mq=new lr('LEFT_STROKED_ARROW',34,'\u219A','↚');ar=new lr('RIGHT_STROKED_ARROW',35,'\u219B','↛');Lq=new lr('LEFT_RIGHT_ARROW',36,'\u2194','↔');Kq=new lr('LEFT_ON_RIGHT_HARPOON',37,'\u21CC','⇌');Yq=new lr('PRODUCT',38,'\u220F','∏');er=new lr('SUM',39,'\u2211','∑');Dq=new lr('INFINITY',40,WAd,'∞');Tq=new lr('PARTIAL_DIFFERENTIAL',41,'\u2202','∂');Iq=new lr('LARGE_DELTA',42,'\u2206','∆');Eq=new lr('INTEGRAL',43,'\u222B','∫');qq=new lr('ALMOST',44,'\u2248','≈');Pq=new lr('NOT_EQUAL',45,'\u2260','≠');Nq=new lr('LESS_OR_EQUAL',46,'\u2264','≤');Cq=new lr('GREATER_OR_EQUAL',47,'\u2265','≥')} +function ktb(){ktb=p9c;Vrb=new bl('doubleCisOrTransOrUnspecifiedBond',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNNS45NCA5LjY0YTEuMSAxLjEgMCAwIDAtLjQzLS4zNCAxLjI2IDEuMjYgMCAwIDAtLjYtLjEzIDEuNTIgMS41MiAwIDAgMC0uNjMuMTQgMS41NSAxLjU1IDAgMCAwLS41LjM4IDEuODggMS44OCAwIDAgMC0uMzMuNTkgMi4xOSAyLjE5IDAgMCAwLS4xMi43MyAyLjE3IDIuMTcgMCAwIDAgLjEyLjc0IDEuODMgMS44MyAwIDAgMCAuMzMuNTggMS4zOCAxLjM4IDAgMCAwIC40OS4zOCAxLjI2IDEuMjYgMCAwIDAgLjYuMTQgMS4yOSAxLjI5IDAgMCAwIC42Ni0uMTYgMS4zNSAxLjM1IDAgMCAwIC40Ny0uNDVMNyAxM2EyLjA1IDIuMDUgMCAwIDEtLjg4Ljc1QTIuNjIgMi42MiAwIDAgMSA1IDE0YTMuMjIgMy4yMiAwIDAgMS0xLjE4LS4yMSAyLjcxIDIuNzEgMCAwIDEtMS41Mi0xLjUzQTMuNTYgMy41NiAwIDAgMSAyLjA4IDExYTMuNTEgMy41MSAwIDAgMSAuMjItMS4yMyAyLjcgMi43IDAgMCAxIC42Mi0uOTUgMi42NiAyLjY2IDAgMCAxIC45My0uNkEzLjIyIDMuMjIgMCAwIDEgNSA4YTIuOCAyLjggMCAwIDEgLjQ4LjA1QTIuMTEgMi4xMSAwIDAgMSA2IDguMmEyIDIgMCAwIDEgLjQ3LjI2IDEuODQgMS44NCAwIDAgMSAuNC4zOXpNMTAgOGgxbC0yIDZIOHptNCAxaC0yVjhoNXYxaC0ydjVoLTF6bTUuMzYgMi42N2ExLjMyIDEuMzIgMCAwIDEgLjA3LS40MiAxIDEgMCAwIDEgLjIzLS4zMmwuNDMtLjM4YTMuNiAzLjYgMCAwIDAgLjM0LS4zMSAxLjM4IDEuMzggMCAwIDAgLjIzLS4yNy41LjUgMCAwIDAgLjA4LS4yNy41Mi41MiAwIDAgMC0uMTgtLjQyLjYzLjYzIDAgMCAwLS40My0uMTUuODEuODEgMCAwIDAtLjYuMjEuOC44IDAgMCAwLS4yMy41MkwxOCA5Ljc4YTEuODQgMS44NCAwIDAgMSAuNjYtMS4zMkEyLjE5IDIuMTkgMCAwIDEgMjAuMTEgOGEyLjQxIDIuNDEgMCAwIDEgLjcyLjEgMS44NSAxLjg1IDAgMCAxIC42MS4zMSAxLjU3IDEuNTcgMCAwIDEgLjQxLjUxIDEuNTIgMS41MiAwIDAgMSAuMTUuNjkgMiAyIDAgMCAxLS4wNS40NCAxLjM5IDEuMzkgMCAwIDEtLjE3LjM4IDIuNTggMi41OCAwIDAgMS0uMzIuMzggNC43NiA0Ljc2IDAgMCAxLS41LjQyLjkuOSAwIDAgMC0uMjcuMjkuNjcuNjcgMCAwIDAtLjA2LjI4di4yaC0xLjI3em0tLjA3IDEuNThhLjczLjczIDAgMCAxIC4wNi0uMy43NC43NCAwIDAgMSAuNC0uNC44LjggMCAwIDEgLjMtLjA2LjgyLjgyIDAgMCAxIC41NC4yMiAxIDEgMCAwIDEgLjE2LjI0Ljk0Ljk0IDAgMCAxIC4wNS4zLjkzLjkzIDAgMCAxLS4wNS4yOSAxIDEgMCAwIDEtLjE2LjI0LjgyLjgyIDAgMCAxLS41NC4yMi44LjggMCAwIDEtLjMtLjA2Ljc0Ljc0IDAgMCAxLS40LS40LjcyLjcyIDAgMCAxLS4wNi0uMjl6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} +function a3(){a3=p9c;L2=new c3('MRV',0,true,true,vuc(quc(g6c,1),eyd,2,6,['mrv','xml']));I2=new c3('MOL',1,false,false,vuc(quc(g6c,1),eyd,2,6,['mol']));K2=new b3('MOL_V3_NAT',2,'mol:V3nat',false,false,vuc(quc(g6c,1),eyd,2,6,['mol']));T2=new c3('RXN',3,true,false,vuc(quc(g6c,1),eyd,2,6,['rxn']));R2=new c3('RGF',4,false,true,vuc(quc(g6c,1),eyd,2,6,['rgf']));Q2=new c3('RDF',5,true,true,vuc(quc(g6c,1),eyd,2,6,['rdf','rd']));Z2=new c3(mDd,6,true,false,vuc(quc(g6c,1),eyd,2,6,['smiles','smi']));E2=new c3('CXSMILES',7,true,true,vuc(quc(g6c,1),eyd,2,6,['cxsmiles','cxsmi']));F2=new b3('DOCUMENT',8,'d2s',true,true,vuc(quc(g6c,1),eyd,2,6,['doc','docx','odt','xls','xlsx','ppt','pptx']));$2=new b3('XML_HTML',9,'d2s',true,true,vuc(quc(g6c,1),eyd,2,6,['xml','html','xhtml','htm']));Y2=new c3(nDd,10,true,false,vuc(quc(g6c,1),eyd,2,6,['smarts','sma']));D2=new c3('CXSMARTS',11,true,true,vuc(quc(g6c,1),eyd,2,6,['cxsmarts','cxsma']));G2=new c3('INCHI',12,false,false,vuc(quc(g6c,1),eyd,2,6,['inchi']));H2=new c3('INCHIKEY',13,false,false,vuc(quc(g6c,1),eyd,2,6,['inchikey']));M2=new c3(XAd,14,false,false,vuc(quc(g6c,1),eyd,2,6,[tDd]));N2=new b3('NAME_ASCII',15,'name:ascii',false,false,vuc(quc(g6c,1),eyd,2,6,[tDd]));A2=new c3('CML',16,true,false,vuc(quc(g6c,1),eyd,2,6,['cml']));J2=new b3(kDd,17,'mol:V3',false,false,vuc(quc(g6c,1),eyd,2,6,['mol']));U2=new b3('RXN_V3',18,'rxn:V3',true,true,vuc(quc(g6c,1),eyd,2,6,['rxn']));S2=new b3('RGF_V3',19,'rgf:V3',false,true,vuc(quc(g6c,1),eyd,2,6,['rgf']));V2=new c3('SDF',20,true,true,vuc(quc(g6c,1),eyd,2,6,['sdf','sd']));W2=new b3('SDF_CTAB',21,'sdf:ctab',false,false,vuc(quc(g6c,1),eyd,2,6,['sdf','sd']));B2=new c3('CSMOL',22,false,false,vuc(quc(g6c,1),eyd,2,6,['csmol']));C2=new c3('CSSDF',23,true,true,vuc(quc(g6c,1),eyd,2,6,['cssdf']));_2=new c3('XYZ',24,true,true,vuc(quc(g6c,1),eyd,2,6,['xyz']));y2=new c3('CDX',25,true,true,vuc(quc(g6c,1),eyd,2,6,['cdx']));z2=new c3('CDXML',26,true,true,vuc(quc(g6c,1),eyd,2,6,['cdxml']));X2=new c3('SKC',27,true,true,vuc(quc(g6c,1),eyd,2,6,['skc']));P2=new c3('PDF',28,true,true,vuc(quc(g6c,1),eyd,2,6,['pdf']));O2=new c3('PDB',29,false,false,vuc(quc(g6c,1),eyd,2,6,['pdb']))} +function Qtb(){Qtb=p9c;zsb=new bl('settings',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIwLjg4IDEwLjYybC0uMTMtLjg1aC0xLjMxYTcuNzMgNy43MyAwIDAgMC0uNi0xLjQ2bC4zMi0uMzEuNjEtLjYtLjUxLS42OWE4LjU3IDguNTcgMCAwIDAtLjg4LTEgOSA5IDAgMCAwLTEuMDYtLjg5bC0uNjktLjUxLS42LjYxLS4zMy4zMmE3LjM4IDcuMzggMCAwIDAtMS40NS0uNlYzLjI1bC0uODUtLjEzYTggOCAwIDAgMC0yLjc2IDBsLS44NS4xM3YxLjMxYTcuMzggNy4zOCAwIDAgMC0xLjQ1LjZMOCA0Ljg0bC0uNi0uNjEtLjY5LjUxYTkgOSAwIDAgMC0xLjA2Ljg5IDguNjggOC42OCAwIDAgMC0uODcgMWwtLjUxLjY5LjYxLjYuMzIuMzJhNy43MyA3LjczIDAgMCAwLS42IDEuNDZIMy4yNWwtLjEzLjg1YTggOCAwIDAgMCAwIDIuNzZsLjEzLjg1aDEuMzFhNy43MyA3LjczIDAgMCAwIC42IDEuNDZsLS4zMi4zOC0uNjEuNi41MS42OWE5LjExIDkuMTEgMCAwIDAgMiAybC42OS41MS42LS42MS4zMy0uMzJhNy4zOCA3LjM4IDAgMCAwIDEuNDUuNnYxLjMxbC44NS4xM2E4IDggMCAwIDAgMi43NiAwbC44NS0uMTN2LTEuMzRhNy4zOCA3LjM4IDAgMCAwIDEuNDUtLjZsLjMzLjMyLjYuNjEuNjktLjUxYTkuMTEgOS4xMSAwIDAgMCAyLTJsLjUxLS42OS0uNjEtLjYtLjMyLS4zMmE3LjczIDcuNzMgMCAwIDAgLjYtMS40NmgxLjMxbC4xMy0uODVhOCA4IDAgMCAwIDAtMi43NnptLTEgMi42MWgtMS4yM2E2LjY4IDYuNjggMCAwIDEtMS4wNyAyLjYxbC44Ny44N2E3LjU2IDcuNTYgMCAwIDEtMS43NCAxLjc0bC0uODctLjg3YTYuNjggNi42OCAwIDAgMS0yLjYxIDEuMDd2MS4yNWE3LjYxIDcuNjEgMCAwIDEtMi40NiAwdi0xLjI1YTYuNjggNi42OCAwIDAgMS0yLjYxLTEuMDdsLS44Ny44N2E3LjU2IDcuNTYgMCAwIDEtMS43NC0xLjc0bC44Ny0uODdhNi42OCA2LjY4IDAgMCAxLTEuMDctMi42MUg0LjFhNy42MSA3LjYxIDAgMCAxIDAtMi40NmgxLjI1YTYuNjggNi42OCAwIDAgMSAxLjA3LTIuNjFsLS44Ny0uODdhNy4xNSA3LjE1IDAgMCAxIC43OS0uOTQgNy4xNSA3LjE1IDAgMCAxIC45NC0uNzlsLjg3Ljg3YTYuNjggNi42OCAwIDAgMSAyLjYxLTEuMDdWNC4xYTcuNjEgNy42MSAwIDAgMSAyLjQ2IDB2MS4yNWE2LjY4IDYuNjggMCAwIDEgMi42MSAxLjA3bC44Ny0uODdhNy4xNSA3LjE1IDAgMCAxIC45NC43OSA3LjE1IDcuMTUgMCAwIDEgLjc5Ljk0bC0uODcuODdhNi42OCA2LjY4IDAgMCAxIDEuMDcgMi42MWgxLjI3YTcuNjEgNy42MSAwIDAgMSAwIDIuNDZ6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTIgOC41YTMuNSAzLjUgMCAxIDAgMy41IDMuNUEzLjUgMy41IDAgMCAwIDEyIDguNXptMCA2YTIuNSAyLjUgMCAxIDEgMi41LTIuNSAyLjUgMi41IDAgMCAxLTIuNSAyLjV6Ii8+PC9nPjwvc3ZnPg==')))} +function Xsb(){Xsb=p9c;Grb=new bl(JGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNNSA5YS45My45MyAwIDAgMS0uNzcuNGMtLjggMC0xLjM2LS42OS0xLjM2LTJ2LS41MWMwLTEuMTQuNDktMiAxLjM2LTJhLjg1Ljg1IDAgMCAxIC43Ny40VjVoMXY1LjkySDV6TTMuODIgNi45MXYuNWMwIC43NS4xNSAxLjE3LjYgMS4xN3MuNTgtLjQuNTgtMS4xdi0uNTdjMC0uNjctLjEzLTEuMTgtLjYxLTEuMThzLS41Ny41MS0uNTcgMS4xOHptNi4yNiAyLjM5aC0uOVY5YS43Ny43NyAwIDAgMS0uNzcuNDJjLS43MiAwLTEuMjktLjQ2LTEuMjktMS42OVY1SDh2Mi41OWMwIC43Ni4xNyAxIC41NCAxcy41OC0uMzIuNTgtMVY1aC45MnptMy44NS0uNjZhMS4yOCAxLjI4IDAgMCAxLTEuMjkuNzRjLTEuMDYgMC0xLjU1LS44LTEuNTUtMS45NHYtLjU5YzAtMS4yNi41Mi0xLjkyIDEuNDQtMS45MnMxLjQ1LjcgMS40NSAydi40OEgxMmMwIC42Ny4xMSAxLjIxLjYzIDEuMjFhLjYxLjYxIDAgMCAwIC42My0uNDF6TTEyIDYuNjdoMS4wN2MwLS42My0uMTktLjk0LS41My0uOTRzLS41NC4zNi0uNTQuOTR6bTUtLjYxYS41LjUgMCAwIDAtLjQ2LS4zMWMtLjM1IDAtLjU0LjM0LS41NC44OFY5LjNoLS45MlY1SDE2di4zM2EuODEuODEgMCAwIDEgLjc0LS40MSAxIDEgMCAwIDEgMSAuNjN6TTE4LjkyIDVsLjc1IDMgLjctM2guOTRsLTEuMjMgNC40N2MtLjMxIDEuMS0uNjYgMS40Ni0xLjYzIDEuNDZ2LS44NGEuNjcuNjcgMCAwIDAgLjc0LS43TDE4IDV6bS0xNCAxNUg0di01LjkyaC45MnYuMjhhLjg0Ljg0IDAgMCAxIC43Ny0uMzZjLjg3IDAgMS4zNi44MSAxLjM2IDJ2LjU0YzAgMS4yNi0uNTYgMS45NS0xLjM2IDEuOTVhLjkzLjkzIDAgMCAxLS43Ny0uNHptMC00di41N2MwIC43LjE3IDEuMS42MSAxLjFzLjYtLjQyLjYtMS4xN1YxNmMwLS42Ny0uMS0xLjE4LS42LTEuMThzLS42MS40OS0uNjEgMS4xOHptNS4wOC0uODdhLjUyLjUyIDAgMCAwLS40Ni0uMzJjLS4zNSAwLS41NC4zNS0uNTQuODl2Mi42N2gtLjkzdi00LjI5SDl2LjMzYS44MS44MSAwIDAgMSAuNzEtLjQxIDEgMSAwIDAgMSAuOTUuNjN6TTEyLjY3IDE0YzEgMCAxLjUxLjY5IDEuNTEgMS45NXYuNTVjMCAxLjI2LS41NCAxLjk1LTEuNTEgMS45NXMtMS41MS0uNjktMS41MS0xLjk1VjE2YzAtMS4zMS41NS0yIDEuNTEtMnptMCAuOGMtLjQ0IDAtLjU5LjQzLS41OSAxLjE3di41MWMwIC43NC4xNSAxLjE3LjU5IDEuMTdzLjYtLjQzLjYtMS4xN1YxNmMwLS43Ny0uMTUtMS4yLS42LTEuMnptMy40NSA1LjJoLS45MnYtNS45MmguOTJ2LjI4YS44NC44NCAwIDAgMSAuNzctLjM2Yy44NyAwIDEuMzYuODEgMS4zNiAydi41NGMwIDEuMjYtLjU2IDEuOTUtMS4zNiAxLjk1YS45Mi45MiAwIDAgMS0uNzctLjR6bTAtNHYuNTdjMCAuNy4xNyAxLjEuNjEgMS4xcy42LS40Mi42LTEuMTdWMTZjMC0uNjctLjEtMS4xOC0uNi0xLjE4cy0uNjEuNDktLjYxIDEuMTh6bTMuOTggMi4zN2gtMS4xOHYtMS4xOWgxLjE4eiIgZmlsbD0iIzUwNTA1MCIvPjwvc3ZnPg==')))} +function Qmb(g){var d=(Sxd(),xxd(eHd));var e,f=g;$wnd.marvin.Sketch=Yxd(function(){var a,b=this,c=arguments;c.length==1&&f.Yj(c[0])?(a=c[0]):c.length==0?(a=new Tlb):c.length==1&&(a=new Vlb(c[0]));b.g=a;Vxd(a,b);return b});e=$wnd.marvin.Sketch.prototype=new Object;e._remove=Yxd(function(){this.g.Zj()});e.addButton=Yxd(function(a,b){this.g.$j(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});$wnd.marvin.Sketch.addRequestInterceptor=Yxd(function(a){rlb();TPb();Wr(SPb,a)});e.addTemplate=Yxd(function(a){this.g._j(a)});e.clear=Yxd(function(){this.g.Pb()});e.clearUndoStack=Yxd(function(){this.g.ak()});e.exportAsMol=Yxd(function(){return this.g.bk()});e.exportAsMrv=Yxd(function(){return this.g.ck()});e.exportStructure=Yxd(function(a,b){return this.g.dk(a,b)});e.getDisplaySettings=Yxd(function(){return this.g.ek()});e.getSelection=Yxd(function(){return this.g.fk()});e.getSupportedFormats=Yxd(function(){return this.g.gk()});e.importAsMol=Yxd(function(a){this.g.hk(a)});e.importAsMrv=Yxd(function(a){this.g.ik(a)});e.importStructure=Yxd(function(a,b){return this.g.jk(a,b)});e.isEmpty=Yxd(function(){return this.g.sd()});$wnd.marvin.Sketch.isSupported=Yxd(function(){return rlb(),ol(),zgc(skc($doc))});$wnd.marvin.Sketch.license=Yxd(function(a){rlb();MNb(qlb,a)});e.off=Yxd(function(a,b){this.g.kk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.on=Yxd(function(a,b){this.g.lk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.onMolChange=Yxd(function(a){this.g.mk(a==null?null:a.constructor==$wnd.marvin.Sketch.Function?a.g:new $mb(a))});e.pasteAsMol=Yxd(function(a){this.g.nk(a)});e.pasteAsMrv=Yxd(function(a){this.g.ok(a)});e.pasteStructure=Yxd(function(a,b){return this.g.pk(a,b)});$wnd.marvin.Sketch.removeRequestInterceptor=Yxd(function(a){rlb();TPb();_r(SPb,a)});e.setAutoChirality=Yxd(function(a){this.g.qk(a)});e.setDisplaySettings=Yxd(function(a){this.g.rk(a)});e.setHighlight=Yxd(function(a){Uxd(this.g,xMc,0,arguments,false,true)[0]});e.setSelection=Yxd(function(a){this.g.sk(a)});e.setServices=Yxd(function(a){this.g.tk(a)});Txd(xMc,{0:{1:[[Smb,null,Wxd,'array']]}},false);if(d)for(p in d)$wnd.marvin.Sketch[p]===undefined&&($wnd.marvin.Sketch[p]=d[p])} +function atb(){atb=p9c;Lrb=new bl('clean3D',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIxIDE2LjVMMTggMTV2MUg5LjVsLTEuNzkuNSAxLjc5LTEuMjkgMS4zNS0xLjM2LjY1LjY1IDEtMy0zIDEgLjY1LjY1LTEuMzYgMS4zNS0xLjI5IDEuNzkuNS0xLjc5VjZoMUw3LjUgMyA2IDZoMXYxMEgzdjFoMi41bDEuNzktLjUtMS43OSAxLjI5LTIgMiAuNzEuNzEgMi0yIDEuMjktMS43OUw3IDE4LjVWMjFoMXYtNGgxMHYxbDMtMS41eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEyLjcxIDkuMzZhLjY2LjY2IDAgMCAxLS4yNy4xMiAxIDEgMCAwIDEtLjI5IDAgLjk0Ljk0IDAgMCAxLS42My0uMjEgMSAxIDAgMCAxLS4zMy0uNDlsLTEuMjUuMzNhMi4wNyAyLjA3IDAgMCAwIC4zNC42OCAxLjkzIDEuOTMgMCAwIDAgLjUyLjQ3IDIuMDggMi4wOCAwIDAgMCAuNjcuMjYgMy4wOCAzLjA4IDAgMCAwIC43NS4wOSAyLjU2IDIuNTYgMCAwIDAgLjc3LS4xMSAyLjI0IDIuMjQgMCAwIDAgLjY4LS4zMiAxLjc2IDEuNzYgMCAwIDAgLjQ5LS41NiAxLjYyIDEuNjIgMCAwIDAgLjE5LS44MSAxLjEyIDEuMTIgMCAwIDAtLjA4LS40NSAxLjMgMS4zIDAgMCAwLS4yMi0uMzYgMS43MiAxLjcyIDAgMCAwLS4zNS0uMyAxLjU3IDEuNTcgMCAwIDAtLjQ0LS4xOCAxLjI3IDEuMjcgMCAwIDAgLjc0LS40NCAxLjE4IDEuMTggMCAwIDAgLjI3LS43OSAxLjM0IDEuMzQgMCAwIDAtLjI3LS43MSAxLjQ0IDEuNDQgMCAwIDAtLjQ1LS41IDEuODMgMS44MyAwIDAgMC0uNjMtLjMgMy4wNyAzLjA3IDAgMCAwLS43NC0uMSAyLjY2IDIuNjYgMCAwIDAtMS4zMS4zNyAyLjA4IDIuMDggMCAwIDAtLjQ5LjQ1IDEuOSAxLjkgMCAwIDAtLjMxLjYybDEuMjUuMjlhLjc3Ljc3IDAgMCAxIC4zMi0uNDEuODMuODMgMCAwIDEgMSAwIC41NC41NCAwIDAgMSAuMjIuNDcuNTkuNTkgMCAwIDEtLjA5LjM0LjYxLjYxIDAgMCAxLS4yMi4yIDEgMSAwIDAgMS0uMzIuMTFoLS43NnYxaC4zNmEyIDIgMCAwIDEgLjQyIDAgMS4wNyAxLjA3IDAgMCAxIC4zNy4xMi43My43MyAwIDAgMSAuMjcuMjIuNjkuNjkgMCAwIDEgLjEuMzYuNjguNjggMCAwIDEtLjA4LjM0LjY3LjY3IDAgMCAxLS4yLjJ6bTUuOTkuOThhMi45IDIuOSAwIDAgMCAxLS41MiAyLjUyIDIuNTIgMCAwIDAgLjczLS44OCAyLjczIDIuNzMgMCAwIDAgLjI4LTEuMjkgMyAzIDAgMCAwLS4yOC0xLjM0IDIuNDIgMi40MiAwIDAgMC0uNzQtLjg3IDIuOCAyLjggMCAwIDAtMS0uNDYgNC43IDQuNyAwIDAgMC0xLjE4LS4xNGgtMnY1LjY2aDIuMTFhNCA0IDAgMCAwIDEuMDgtLjE2em0tMS45Mi0xVjZoLjY4YTMuMDggMy4wOCAwIDAgMSAuNjguMDggMS44OCAxLjg4IDAgMCAxIC41OS4yNyAxLjUxIDEuNTEgMCAwIDEgLjQyLjUxIDEuODIgMS44MiAwIDAgMSAuMTUuNzkgMS44MiAxLjgyIDAgMCAxLS4xNS43OSAxLjQ2IDEuNDYgMCAwIDEtLjQyLjUyIDEuNjUgMS42NSAwIDAgMS0uNi4yNyAyLjc2IDIuNzYgMCAwIDEtLjcxLjA5eiIvPjwvZz48L3N2Zz4=')))} +function Oyb(a,b){var c,d,e,f,g,h;if(b.a){if(a.a){c=a.a;switch(b.k){case 24:e=new _td;Ytd(e,fId,'a');Ytd(e,gId,'A');Kyb(a,'Aromaticity (a/A)',new Ozb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1),e),c);break;case 18:Kyb(a,'Connections (X)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 16:Kyb(a,'Implicit H (h)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 21:Kyb(a,'Ring bond (rb)',new aAb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 17:Kyb(a,'Bond orders (v)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 19:Kyb(a,'Ring count (R)',new aAb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 20:Kyb(a,'Smallest ring size (r)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 22:Kyb(a,'Substitutions (s)',new aAb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 15:Kyb(a,'Total H (H)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 23:d=new _td;Ytd(d,hId,'u');Kyb(a,'Unsaturated (u)',new Ozb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1),d),c);}}}else{c=a.b;switch(b.k){case 0:Kyb(a,'Atom',new Zyb(a.n,a.c),c);break;case 1:Kyb(a,iId,new Czb(b,a.c,false),c);break;case 3:Kyb(a,'R',new Hzb(b,a.c,false,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 6:Kyb(a,'Alias',new Czb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 7:Kyb(a,'Isotope',new Hzb(b,a.c,false,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 5:Kyb(a,'Elements',new lzb(a.c),c);break;case 4:Kyb(a,'List type',new xyb(a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 8:Kyb(a,jId,new Hzb(b,a.c,true,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 9:Kyb(a,kId,new rzb(a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 2:f=new zzb(a.c);Kyb(a,iFd,f,c);g=new ped;(abd(),g.U).innerHTML=lId;h=c.c.rows.length;Ffd(c,h,0,g);Ffd(c,h,1,Ryb(vuc(quc(D3c,1),_Hd,21,0,[f.a])));break;case 11:Kyb(a,mId,new Mzb(a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 13:Kyb(a,'Map',new Hzb(b,a.c,false,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);}}} +function Kmb(g){var d=(Sxd(),xxd(eHd));var e,f=g;$wnd.marvin.Sketch=Yxd(function(){var a,b=this,c=arguments;c.length==1&&f.Yj(c[0])?(a=c[0]):c.length==1?(a=new Hmb(c[0])):c.length==0&&(a=new Fmb);b.g=a;Vxd(a,b);return b});e=$wnd.marvin.Sketch.prototype=new Object;e._remove=Yxd(function(){this.g.Zj()});e.addButton=Yxd(function(a,b){this.g.$j(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.addTemplate=Yxd(function(a){this.g._j(a)});e.clear=Yxd(function(){this.g.Pb()});e.clearUndoStack=Yxd(function(){this.g.ak()});$wnd.marvin.Sketch.create=Yxd(function(a,b){return Xxd((rlb(),new Gmb(new Dmb(a,b))))});e.exportAsMol=Yxd(function(){return this.g.bk()});e.exportAsMrv=Yxd(function(){return this.g.ck()});e.exportStructure=Yxd(function(a,b){return this.g.dk(a,b)});e.getCanvas=Yxd(function(){return this.g.wk()});e.getConfiguration=Yxd(function(){return this.g.xk()});e.getDisplaySettings=Yxd(function(){return this.g.ek()});e.getSelection=Yxd(function(){return this.g.fk()});e.getSupportedFormats=Yxd(function(){return this.g.gk()});e.getToolbars=Yxd(function(){return this.g.yk()});e.hide=Yxd(function(a){this.g.zk(a)});e.importAsMol=Yxd(function(a){this.g.hk(a)});e.importAsMrv=Yxd(function(a){this.g.ik(a)});e.importStructure=Yxd(function(a,b){return this.g.jk(a,b)});e.isEmpty=Yxd(function(){return this.g.sd()});e.off=Yxd(function(a,b){this.g.kk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.on=Yxd(function(a,b){this.g.lk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.onMolChange=Yxd(function(a){this.g.mk(a==null?null:a.constructor==$wnd.marvin.Sketch.Function?a.g:new $mb(a))});e.pasteAsMol=Yxd(function(a){this.g.nk(a)});e.pasteAsMrv=Yxd(function(a){this.g.ok(a)});e.pasteStructure=Yxd(function(a,b){return this.g.pk(a,b)});e.setAutoChirality=Yxd(function(a){this.g.qk(a)});e.setDisplaySettings=Yxd(function(a){this.g.rk(a)});e.setHighlight=Yxd(function(a){Uxd(this.g,uMc,0,arguments,false,true)[0]});e.setSelection=Yxd(function(a){this.g.sk(a)});e.setServices=Yxd(function(a){this.g.tk(a)});e.setToolbars=Yxd(function(a){this.g.Ak(a)});e.show=Yxd(function(a){this.g.Bk(a)});Txd(uMc,{0:{1:[[Mmb,null,Wxd,'array']]}},false);if(d)for(p in d)$wnd.marvin.Sketch[p]===undefined&&($wnd.marvin.Sketch[p]=d[p]);Object.defineProperty(e,Fzd,{get:function(){return this.getCanvas()}})} +function Ntb(){Ntb=p9c;wsb=new bl(zHd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTkuMzcgMTAuNzFhLjc3Ljc3IDAgMCAxLS4yNi4xMiAxIDEgMCAwIDEtLjI5IDAgMSAxIDAgMCAxLS42NC0uMjEgMSAxIDAgMCAxLS4zMi0uNDlsLTEuMjUuMzNhMS44OCAxLjg4IDAgMCAwIC4zMy42OCAxLjkzIDEuOTMgMCAwIDAgLjUzLjQ2IDIuNDEgMi40MSAwIDAgMCAuNjYuMjcgMy4wOCAzLjA4IDAgMCAwIC43NS4wOSAyLjg3IDIuODcgMCAwIDAgLjc3LS4xMSAyLjEgMi4xIDAgMCAwIC42OS0uMzNBMS41OSAxLjU5IDAgMCAwIDExIDEwLjJhMS4yMyAxLjIzIDAgMCAwLS4zMS0uODMgMS4yMiAxLjIyIDAgMCAwLS4zNC0uMyAxLjcgMS43IDAgMCAwLS40NC0uMTggMS4zIDEuMyAwIDAgMCAuNjgtLjQ0IDEuMTkgMS4xOSAwIDAgMCAuMjctLjggMS40MiAxLjQyIDAgMCAwLS4xNy0uNyAxLjg0IDEuODQgMCAwIDAtLjQ1LS41MSAyIDIgMCAwIDAtLjY0LS4yOUEyLjU3IDIuNTcgMCAwIDAgOC44OSA2YTIuNjEgMi42MSAwIDAgMC0uNjkuMDkgMi42NyAyLjY3IDAgMCAwLS42Mi4yOCAyLjA2IDIuMDYgMCAwIDAtLjQ5LjQ0IDEuODYgMS44NiAwIDAgMC0uMzEuNjNMOCA3Ljc2YS44NC44NCAwIDAgMSAuMy0uNDYuOC44IDAgMCAxIC41LS4xNy44MS44MSAwIDAgMSAuNS4xNi41NS41NSAwIDAgMSAuMjEuNDcuNjIuNjIgMCAwIDEtLjA4LjMzLjU4LjU4IDAgMCAxLS4yMy4yMS43Ni43NiAwIDAgMS0uMzEuMSAyLjIyIDIuMjIgMCAwIDEtLjM3IDBoLS4zOXYxaC4zNmEyLjczIDIuNzMgMCAwIDEgLjQxIDAgMS44OSAxLjg5IDAgMCAxIC4zOC4xMi44My44MyAwIDAgMSAuMjYuMjMuNjEuNjEgMCAwIDEgLjEuMzYuNjguNjggMCAwIDEtLjA4LjM0LjY3LjY3IDAgMCAxLS4xOS4yNnptNiAuOTdhMy4wNiAzLjA2IDAgMCAwIDEtLjUxIDIuNjcgMi42NyAwIDAgMCAuNzMtLjg5QTIuODEgMi44MSAwIDAgMCAxNy4zOSA5YTIuODYgMi44NiAwIDAgMC0uMjgtMS4zNCAyLjI0IDIuMjQgMCAwIDAtLjczLS44NyAzLjA4IDMuMDggMCAwIDAtMS0uNDcgNS4zIDUuMyAwIDAgMC0xLjE5LS4xNEgxMi4xdjUuNjdoMi4xMmE0LjE2IDQuMTYgMCAwIDAgMS4xNS0uMTd6bS0xLjkzLTFWNy4zNWguNjhhMy4wOCAzLjA4IDAgMCAxIC42OC4wOCAxLjgxIDEuODEgMCAwIDEgLjYuMjcgMS4zNSAxLjM1IDAgMCAxIC40MS41QTEuNzMgMS43MyAwIDAgMSAxNiA5YTEuNzEgMS43MSAwIDAgMS0uMTYuNzkgMS4yNCAxLjI0IDAgMCAxLS40MS41MSAxLjgzIDEuODMgMCAwIDEtLjYuMjggMi44MSAyLjgxIDAgMCAxLS43MS4wOHoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOC4yNCA4LjM4bC0uNDYuODhDMTkuMjEgMTAgMjAgMTEgMjAgMTJzLS43OSAyLTIuMjIgMi43NEExMi42OCAxMi42OCAwIDAgMSAxMiAxNmMtLjQ3IDAtLjkzIDAtMS4zOS0uMDhsLjE4LTFMOCAxNmwuMTMtLjQ4YTEwLjQ4IDEwLjQ4IDAgMCAxLTEuODktLjc0QzQuNzkgMTQgNCAxMyA0IDEycy43OS0yIDIuMjItMi43NGwtLjQ2LS44OEM0IDkuMzIgMyAxMC42IDMgMTJzMSAyLjY4IDIuNzYgMy42MmExMC4zNyAxMC4zNyAwIDAgMCAyLjA4LjgzTDggMTZsMi4yOSAxLjkzLjE3LTFjLjUxIDAgMSAuMDggMS41Ni4wOGExMy41NSAxMy41NSAwIDAgMCA2LjI0LTEuMzhDMjAgMTQuNjggMjEgMTMuNCAyMSAxMnMtMS0yLjY4LTIuNzYtMy42MnoiLz48L2c+PC9zdmc+')))} +function YU(){YU=p9c;XU=new ltd;Hqd(XU,mnd(1),'rgb(100,100,100)');Hqd(XU,mnd(2),'rgb(153,102,102)');Hqd(XU,mnd(3),'rgb(102,0,0)');Hqd(XU,mnd(4),MCd);Hqd(XU,mnd(5),NCd);Hqd(XU,mnd(6),uBd);Hqd(XU,mnd(7),'rgb(51,51,153)');Hqd(XU,mnd(8),'rgb(230,25,25)');Hqd(XU,mnd(9),OCd);Hqd(XU,mnd(10),PCd);Hqd(XU,mnd(11),JCd);Hqd(XU,mnd(12),'rgb(0,102,0)');Hqd(XU,mnd(13),MCd);Hqd(XU,mnd(14),OCd);Hqd(XU,mnd(15),OCd);Hqd(XU,mnd(16),'rgb(102,102,0)');Hqd(XU,mnd(17),NCd);Hqd(XU,mnd(18),PCd);Hqd(XU,mnd(19),QCd);Hqd(XU,mnd(20),MCd);Hqd(XU,mnd(21),RCd);Hqd(XU,mnd(22),MCd);Hqd(XU,mnd(23),SCd);Hqd(XU,mnd(24),MCd);Hqd(XU,mnd(25),MCd);Hqd(XU,mnd(26),OCd);Hqd(XU,mnd(27),RCd);Hqd(XU,mnd(28),TCd);Hqd(XU,mnd(29),TCd);Hqd(XU,mnd(30),TCd);Hqd(XU,mnd(31),RCd);Hqd(XU,mnd(32),RCd);Hqd(XU,mnd(33),SCd);Hqd(XU,mnd(34),SCd);Hqd(XU,mnd(35),TCd);Hqd(XU,mnd(36),PCd);Hqd(XU,mnd(37),QCd);Hqd(XU,mnd(38),'rgb(153,51,51)');Hqd(XU,mnd(39),RCd);Hqd(XU,mnd(40),RCd);Hqd(XU,mnd(41),RCd);Hqd(XU,mnd(42),RCd);Hqd(XU,mnd(43),RCd);Hqd(XU,mnd(44),RCd);Hqd(XU,mnd(45),SCd);Hqd(XU,mnd(46),SCd);Hqd(XU,mnd(47),MCd);Hqd(XU,mnd(48),RCd);Hqd(XU,mnd(49),RCd);Hqd(XU,mnd(50),RCd);Hqd(XU,mnd(51),RCd);Hqd(XU,mnd(52),SCd);Hqd(XU,mnd(53),UCd);Hqd(XU,mnd(54),PCd);Hqd(XU,mnd(55),'rgb(0,153,153)');Hqd(XU,mnd(56),OCd);Hqd(XU,mnd(57),VCd);Hqd(XU,mnd(58),VCd);Hqd(XU,mnd(59),VCd);Hqd(XU,mnd(60),VCd);Hqd(XU,mnd(61),VCd);Hqd(XU,mnd(62),VCd);Hqd(XU,mnd(63),OCd);Hqd(XU,mnd(64),SCd);Hqd(XU,mnd(65),'rgb(0,153,0)');Hqd(XU,mnd(66),VCd);Hqd(XU,mnd(67),VCd);Hqd(XU,mnd(68),VCd);Hqd(XU,mnd(69),VCd);Hqd(XU,mnd(70),VCd);Hqd(XU,mnd(71),VCd);Hqd(XU,mnd(72),VCd);Hqd(XU,mnd(73),VCd);Hqd(XU,mnd(74),VCd);Hqd(XU,mnd(75),VCd);Hqd(XU,mnd(76),VCd);Hqd(XU,mnd(77),VCd);Hqd(XU,mnd(78),VCd);Hqd(XU,mnd(79),OCd);Hqd(XU,mnd(80),PCd);Hqd(XU,mnd(81),VCd);Hqd(XU,mnd(82),PCd);Hqd(XU,mnd(83),VCd);Hqd(XU,mnd(84),VCd);Hqd(XU,mnd(85),UCd);Hqd(XU,mnd(86),PCd);Hqd(XU,mnd(87),VCd);Hqd(XU,mnd(88),VCd);Hqd(XU,mnd(89),VCd);Hqd(XU,mnd(90),VCd);Hqd(XU,mnd(91),VCd);Hqd(XU,mnd(92),OCd);Hqd(XU,mnd(93),VCd);Hqd(XU,mnd(94),VCd);Hqd(XU,mnd(95),VCd);Hqd(XU,mnd(96),VCd);Hqd(XU,mnd(97),VCd);Hqd(XU,mnd(98),VCd);Hqd(XU,mnd(99),VCd);Hqd(XU,mnd(100),VCd);Hqd(XU,mnd(101),VCd);Hqd(XU,mnd(102),VCd);Hqd(XU,mnd(103),VCd);Hqd(XU,mnd(104),VCd);Hqd(XU,mnd(105),VCd);Hqd(XU,mnd(106),VCd);Hqd(XU,mnd(107),VCd);Hqd(XU,mnd(108),VCd);Hqd(XU,mnd(109),VCd);Hqd(XU,mnd(110),uBd);Hqd(XU,mnd(111),uBd);Hqd(XU,mnd(112),uBd);Hqd(XU,mnd(113),uBd);Hqd(XU,mnd(114),uBd);Hqd(XU,mnd(115),uBd);Hqd(XU,mnd(116),uBd);Hqd(XU,mnd(117),uBd);Hqd(XU,mnd(118),uBd);Hqd(XU,mnd(119),uBd);Hqd(XU,mnd(120),uBd);Hqd(XU,mnd(121),uBd);Hqd(XU,mnd(122),uBd);Hqd(XU,mnd(123),uBd);Hqd(XU,mnd(124),uBd);Hqd(XU,mnd(125),uBd);Hqd(XU,mnd(126),uBd)} +function WZb(){WZb=p9c;sYb=new XZb('H',0);tYb=new XZb('HE',1);EYb=new XZb('LI',2);PXb=new XZb('BE',3);NXb=new XZb('B',4);UXb=new XZb('C',5);PYb=new XZb('N',6);XYb=new XZb('O',7);kYb=new XZb('F',8);TYb=new XZb('NE',9);QYb=new XZb('NA',10);KYb=new XZb('MG',11);HXb=new XZb('AL',12);vZb=new XZb('SI',13);ZYb=new XZb('P',14);qZb=new XZb('S',15);ZXb=new XZb('CL',16);JXb=new XZb('AR',17);BYb=new XZb('K',18);VXb=new XZb('CA',19);sZb=new XZb('SC',20);EZb=new XZb('TI',21);MZb=new XZb('V',22);bYb=new XZb('CR',23);MYb=new XZb('MN',24);lYb=new XZb('FE',25);aYb=new XZb('CO',26);UYb=new XZb('NI',27);dYb=new XZb('CU',28);TZb=new XZb('ZN',29);pYb=new XZb('GA',30);rYb=new XZb('GE',31);KXb=new XZb('AS',32);tZb=new XZb('SE',33);TXb=new XZb('BR',34);CYb=new XZb('KR',35);jZb=new XZb('RB',36);yZb=new XZb('SR',37);RZb=new XZb('Y',38);UZb=new XZb('ZR',39);RYb=new XZb('NB',40);NYb=new XZb('MO',41);BZb=new XZb('TC',42);pZb=new XZb('RU',43);nZb=new XZb('RH',44);aZb=new XZb('PD',45);FXb=new XZb('AG',46);WXb=new XZb('CD',47);zYb=new XZb('IN',48);xZb=new XZb('SN',49);rZb=new XZb('SB',50);CZb=new XZb('TE',51);yYb=new XZb('I',52);PZb=new XZb('XE',53);cYb=new XZb('CS',54);OXb=new XZb('BA',55);DYb=new XZb('LA',56);XXb=new XZb('CE',57);dZb=new XZb('PR',58);SYb=new XZb('ND',59);bZb=new XZb('PM',60);wZb=new XZb('SM',61);jYb=new XZb('EU',62);qYb=new XZb('GD',63);AZb=new XZb('TB',64);gYb=new XZb('DY',65);wYb=new XZb('HO',66);hYb=new XZb('ER',67);GZb=new XZb('TM',68);SZb=new XZb('YB',69);GYb=new XZb('LU',70);uYb=new XZb('HF',71);zZb=new XZb('TA',72);NZb=new XZb('W',73);kZb=new XZb('RE',74);YYb=new XZb('OS',75);AYb=new XZb('IR',76);eZb=new XZb('PT',77);MXb=new XZb('AU',78);vYb=new XZb('HG',79);FZb=new XZb('TL',80);_Yb=new XZb('PB',81);RXb=new XZb('BI',82);cZb=new XZb('PO',83);LXb=new XZb('AT',84);oZb=new XZb('RN',85);oYb=new XZb('FR',86);iZb=new XZb('RA',87);EXb=new XZb('AC',88);DZb=new XZb('TH',89);$Yb=new XZb('PA',90);HZb=new XZb('U',91);WYb=new XZb('NP',92);fZb=new XZb('PU',93);IXb=new XZb('AM',94);$Xb=new XZb('CM',95);SXb=new XZb('BK',96);YXb=new XZb('CF',97);iYb=new XZb('ES',98);nYb=new XZb('FM',99);JYb=new XZb('MD',100);VYb=new XZb('NO',101);FYb=new XZb('LR',102);lZb=new XZb('RF',103);eYb=new XZb('DB',104);uZb=new XZb('SG',105);QXb=new XZb('BH',106);xYb=new XZb('HS',107);OYb=new XZb('MT',108);fYb=new XZb('DS',109);mZb=new XZb('RG',110);_Xb=new XZb('CN',111);LZb=new XZb('UUT',112);mYb=new XZb('FL',113);JZb=new XZb('UUP',114);HYb=new XZb('LV',115);KZb=new XZb('UUS',116);IZb=new XZb('UUO',117);DXb=new YZb('A',118,false);gZb=new YZb('Q',119,false);IYb=new YZb('M',120,false);OZb=new YZb('X',121,false);GXb=new YZb('AH',122,false);hZb=new YZb('QH',123,false);LYb=new YZb('MH',124,false);QZb=new YZb('XH',125,false);VZb=a$b()} +function _jb(a){var b,c,d,e,f;c=new bqb(a.d,null);nkb(a,'duplicate',new fpb(a.f,a.d));nkb(a,'erase',new hpb(a.f,new mI(a.f),(htb(),Srb)));nkb(a,BFd,new gob('Chain',(Zsb(),Irb),a.f,new hI(a.f)));nkb(a,CFd,new vpb(a.f,(ytb(),hsb)));nkb(a,DFd,new _ob(a.f,(gtb(),Rrb)));nkb(a,'clear',new xob(a.f,(btb(),Mrb)));nkb(a,QAd,new epb(a.f,a.d));nkb(a,'zoomToFit',new qpb(a.f.i,(rtb(),asb)));nkb(a,EFd,new Tpb('Position variation bond',(Itb(),rsb),a.f,(s6b(),m6b)));nkb(a,FFd,new rpb(a.f.i,(stb(),bsb)));nkb(a,GFd,(e=new gob('Drawing'+(Ds().length==0||'D'.length==0?'':' ('+Ds()+'+'+'D'+')'),(ttb(),csb),a.f,new TI(a.f)),ud(e,HFd,(nk(),f=Und('SHORTCUT+D',iAd,0),qk(f[f.length-1],rk(f)))),e));nkb(a,IFd,$pb('Ungroup',(cub(),Nsb),tpb(new upb(null),a.f),new bqb(a.d,a.f.i)));d=new _pb((yrb(),vrb),new Mob(a.f),c);bcb(a.a,JFd,d);nkb(a,'rlogic',new nqb(a.f.i,new OQb(new zQb(a.e.a))));nkb(a,KFd,new gob('R-Group attachment',(Jtb(),ssb),a.f,new cJ(a.f)));nkb(a,LFd,new eqb('Straight arrow / Reaction / Atom map',(Vtb(),Esb),a.f,new _O(a.f,(RTb(),PTb))));nkb(a,MFd,new eqb('Two-headed arrow / Reaction / Atom map',(aub(),Lsb),a.f,new _O(a.f,QTb)));nkb(a,NFd,new eqb('Equilibrium arrow / Reaction / Atom map',(ptb(),$rb),a.f,new _O(a.f,OTb)));nkb(a,'box',new gob('Rectangle',(vtb(),esb),a.f,new zJ(a.f,(V8b(),U8b))));nkb(a,OFd,new gob('Ellipse',(otb(),Zrb),a.f,new zJ(a.f,T8b)));nkb(a,tFd,new gob('Text',($tb(),Jsb),a.f,new pQ(a.f,new rQ)));nkb(a,PFd,new Cqb(a.f,esb,new OQb(new HQb(a.e.a)),a.d));nkb(a,'merge',new Zpb('Merge Agents',new Sob(a.f),c));nkb(a,'unmerge',new Zpb('Unmerge Agent(s)',new lqb(a.f),c));nkb(a,QFd,new aob(a.d,a.f));nkb(a,RFd,new mqb(a.d,a.f));nkb(a,SFd,new gob('Increase radical',(Atb(),jsb),a.f,new yJ(a.f)));nkb(a,TFd,new ypb((ztb(),isb),a.f,new xJ(a.f)));nkb(a,'D',fkb(a,(v1b(),t1b)));nkb(a,'T',fkb(a,u1b));nkb(a,'R',oob(a.f,new H3b,'R'));nkb(a,'starAtom',new mob(a.f,kUb(),'*',null));nkb(a,'clearSelection',new yob(a.f));nkb(a,'selectAll',new xqb(a.f));nkb(a,UFd,new Jqb(a.f.i,a.b,(fub(),Qsb)));nkb(a,VFd,new Kqb(a.f.i,a.b,(gub(),Rsb)));nkb(a,'scrollLeft',new vqb('Scroll \u2190',a.f.i,'ARROWLEFT'));nkb(a,'scrollRight',new vqb('Scroll \u2192',a.f.i,WFd));nkb(a,'scrollUp',new vqb('Scroll \u2191',a.f.i,'ARROWUP'));nkb(a,'scrollDown',new vqb('Scroll \u2193',a.f.i,'ARROWDOWN'));nkb(a,XFd,new cpb('Max Substitution Count',(Etb(),nsb),a.f,new vJ(a.f,'s',new aJ),new hJ(a.f,new aJ)));nkb(a,'lockAtom',new cpb('Lock Atom',(Btb(),ksb),a.f,new vJ(a.f,'s*',(rJ(),pJ)),new hJ(a.f,pJ)));nkb(a,YFd,new eqb('Manual Mapping',(Dtb(),msb),a.f,new _O(a.f,PTb)));nkb(a,'simplifiedRepeatingUnit',Wob((wtb(),fsb),a.f));nkb(a,ZFd,Vob(($sb(),Jrb),a.f));nkb(a,'repeatingUnit',Uob((Mtb(),vsb),a.f));b=nkb(a,$Fd,new wob(Mu(a.f.i)));Ccb(b,new xO(a.f,false,new Yob(false)));Ccb(b,new oO(a.f,new RGb));Wub(a.d,b)} +function Etb(){Etb=p9c;nsb=new bl(XFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmV9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjwvZz48cGF0aCBkPSJNNi4xNCAxMS40M2EuODguODggMCAwIDAtLjMtLjcuOTQuOTQgMCAwIDAtLjY0LS4yNC44My44MyAwIDAgMC0uNjYuMjggMSAxIDAgMCAwLS4yNC42NCAxIDEgMCAwIDAgLjEzLjUgMS4xNiAxLjE2IDAgMCAwIC42NS40NGwxLjA4LjQzYTIuNiAyLjYgMCAwIDEgMS40MSAxLjA4QTMgMyAwIDAgMSA4IDE1LjM1YTIuNjkgMi42OSAwIDAgMS0uMjEgMS4wNyAyLjkgMi45IDAgMCAxLS41Ny44OCAyLjU5IDIuNTkgMCAwIDEtLjg2LjU5IDIuNjcgMi42NyAwIDAgMS0xLjEuMjIgMi42OCAyLjY4IDAgMCAxLTEuODctLjcgMi41OCAyLjU4IDAgMCAxLS42MS0uODYgMy4xMiAzLjEyIDAgMCAxLS4yNi0xLjJoMS42OWEyIDIgMCAwIDAgLjI2LjcxLjgxLjgxIDAgMCAwIC43My4zMiAxLjA5IDEuMDkgMCAwIDAgLjcxLS4yNi45LjkgMCAwIDAgLjMyLS43MyAxLjA5IDEuMDkgMCAwIDAtLjItLjY1IDEuNiAxLjYgMCAwIDAtLjcyLS40N0w0LjQzIDE0YTMuMDYgMy4wNiAwIDAgMS0xLjM2LTEgMi40OCAyLjQ4IDAgMCAxLS40OS0xLjU2IDIuNzIgMi43MiAwIDAgMSAuMjEtMS4wNyAyLjU5IDIuNTkgMCAwIDEgLjU5LS44NkEyLjM3IDIuMzcgMCAwIDEgNC4yMyA5YTIuNzUgMi43NSAwIDAgMSAxLS4xOSAyLjcxIDIuNzEgMCAwIDEgMSAuMTkgMi40OSAyLjQ5IDAgMCAxIC44Mi41NiAyLjYyIDIuNjIgMCAwIDEgLjU0Ljg2IDIuODQgMi44NCAwIDAgMSAuMiAxem0yLjY5LjU3VjYuNjlIOS45di41MWExLjM0IDEuMzQgMCAwIDEgLjQxLS40MSAxLjExIDEuMTEgMCAwIDEgMS4xOCAwIDEuNDQgMS40NCAwIDAgMSAuMzcuMzcgMi4yMiAyLjIyIDAgMCAxIC40NC0uMzggMS4yIDEuMiAwIDAgMSAuNy0uMTYgMS42IDEuNiAwIDAgMSAuNDEuMDcgMSAxIDAgMCAxIC4zNy4yMyAxLjE5IDEuMTkgMCAwIDEgLjI4LjQgMS43NSAxLjc1IDAgMCAxIC4xLjZWMTJoLTEuMDdWOC4zMmEuNzIuNzIgMCAwIDAtLjA5LS40Ni40Ny40NyAwIDAgMC0uMzgtLjE3LjQ1LjQ1IDAgMCAwLS40Mi4xOSAxIDEgMCAwIDAtLjEyLjU1VjEySDExVjguMzJhLjcyLjcyIDAgMCAwLS4xNC0uNDYuNDguNDggMCAwIDAtLjM5LS4xNy40NC40NCAwIDAgMC0uNDEuMTkgMSAxIDAgMCAwLS4xMi41NVYxMnptOC4yNCAwdi0uNTVhMS44NyAxLjg3IDAgMCAxLS40My40NSAxIDEgMCAwIDEtLjYuMTYgMS4zMiAxLjMyIDAgMCAxLS4zOS0uMDYgMS4wNyAxLjA3IDAgMCAxLS4zNy0uMjEgMS4wOCAxLjA4IDAgMCAxLS4yOS0uNDMgMiAyIDAgMCAxLS4xMS0uNzIgMy43IDMuNyAwIDAgMSAuMDgtLjc5IDEuMjYgMS4yNiAwIDAgMSAuMjctLjU3IDEuMDggMS4wOCAwIDAgMSAuNDktLjI4IDIuNDkgMi40OSAwIDAgMSAuODMtLjExaC41MnYtLjU3YS43OS43OSAwIDAgMC0uMDctLjQ1LjQ3LjQ3IDAgMCAwLS40Mi0uMTguNTkuNTkgMCAwIDAtLjM4LjE0LjY0LjY0IDAgMCAwLS4yMy40aC0xYTEuNzIgMS43MiAwIDAgMSAuNDktMS4xNiAxLjQ1IDEuNDUgMCAwIDEgLjUtLjMzIDEuNzYgMS43NiAwIDAgMSAuNjYtLjEyIDEuOSAxLjkgMCAwIDEgLjYzLjExIDEuNDQgMS40NCAwIDAgMSAuNTIuMzEgMS40OSAxLjQ5IDAgMCAxIC4zMy41MyAyIDIgMCAwIDEgLjEzLjczVjEyem0wLTIuMjloLS4zYTEgMSAwIDAgMC0uNTkuMTYuNjcuNjcgMCAwIDAtLjI1LjU5Ljc4Ljc4IDAgMCAwIC4xNS41LjUuNSAwIDAgMCAuNDEuMTguNTEuNTEgMCAwIDAgLjQyLS4xNy43My43MyAwIDAgMCAuMTYtLjUxem0xLjMgMi4yOWwxLjMxLTIuNzItMS4yNS0yLjZoMS4xM2wuNjcgMS41MS42Ni0xLjUxSDIybC0xLjI3IDIuNkwyMi4wOCAxMkgyMWwtLjcyLTEuNjNMMTkuNSAxMnoiIGZpbGw9IiM1MDUwNTAiIGlkPSJJY29ucyIvPjwvc3ZnPg==')))} +function Y0(){Y0=p9c;var a,b,c;X0=new ltd;c=Und('NHi-Am=i-AmNH\nMgCl=ClMg\nN+Et4=Et4N+\nCO2Bn=BnO2C\nSiMe3=Me3Si\nN+Et3=Et3N+\nOt-Bu=t-BuO\nCOs-Bu=s-BuCO\nC13H27=H27C13\nNHi-Pr=i-PrNH\nCO2Bu=BuO2C\nCOONa=NaOOC\nOTBS=TBSO\nSneo-Am=neo-AmS\nCBr3=Br3C\nCOOn-Bu=n-BuOOC\nCOtBu=tBuCO\nNHneo-Am=neo-AmNH\nC16H33=H33C16\nCO2Am=AmO2C\nOt-Am=t-AmO\nCOOiAm=iAmOOC\no-C6H4=o-C6H4\nSnMe3=Me3Sn\nC17H35=H35C17\nNO3=O3N\nNO2=O2N\nN+Me3=Me3N+\nOEt=EtO\nOnPr=nPrO\nCOOMe=MeOOC\nSi-Pr=i-PrS\nNHAm=AmNH\nC5H11=H11C5\nCOOiBu=iBuOOC\nSAm=AmS\nOSu=SuO\nC15H31=H31C15\nOtBu=tBuO\nNHBn=BnNH\nOBu=BuO\nNHt-Am=t-AmNH\nOTf=TfO\nOBz=BzO\nOTs=TsO\nNHBu=BuNH\nCF3=F3C\nSCN=NCS\nMgBr=BrMg\nCONHMe=MeNHCO\nOtAm=tAmO\nNHTs=TsNH\nOTBDMS=TBDMSO\nOPfp=PfpO\nC4H9=H9C4\nSs-Am=s-AmS\nOTMS=TMSO\nCONMe2=Me2NCO\nOPMB=PMBO\nSnBu3=Bu3Sn\nCH2CH2Ph=PhCh2CH2\nCO2i-Pr=i-PrO2C\nCOOt-Bu=t-BuOOC\nSBu=BuS\nCOt-Bu=t-BuCO\nNHs-Bu=s-BuNH\nNHneoAm=neoAmNH\nCOOi-Am=i-AmOOC\nSO2Ph=PhSO2\nC11H23=H23C11\nPiP=PPi\nC25H51=H51C25\nC24H49=H49C24\nCOOAm=AmOOC\nCO2Et=EtO2C\nCONH2=NH2CO\nCOOPr=PrOOC\nPhOMe=MeOPh\nC18H37=H37C18\nNHOH=HONH\nCOOi-Bu=i-BuOOC\nNHAc=AcNH\nCO2neoAm=neoAmO2C\nNHBoc=BocNH\nCO2iPr=iPrO2C\nPO(OEt)2=(EtO)2OP\nONO2=NO2O\nOiPr=iPrO\nNHn-Bu=n-BuNH\nCOOPh=PhOOC\nSO3H=HO3S\nCOOneoAm=neoAmOOC\nC21H43=H43C21\nCO2sBu=sBuO2C\nCHO=OHC\nSs-Bu=s-BuS\nOSiME3=SiMe3O\nNHCbz=CbzNH\nSn-Bu=n-BuS\nNHn-Am=n-AmNH\nSO2NH2=NH2SO2\nSK=KS\nPPh3=Ph3P\nCOOt-Am=t-AmOOC\nSEt=EtS\nPPh2=Ph2P\nCOEt=EtCO\nNHPh=PhNH\nNHPr=PrNH\nOiAm=iAmO\nOn-Am=n-AmO\nNHs-Am=s-AmNH\nOn-Pr=n-PrO\nCN=NC\nCOOtAm=tAmOOC\nC14H29=H29C14\nC19H39=H39C19\nOSiEt3=SiEt3O\nCO2neo-Am=neo-AmO2C\nOMs=MsO\nCOCl=ClCO\nC12H25=H25C12\nSO2Cl=ClSO2\nPO3=O3P\nCO2s-Am=s-AmO2C\nCOF=FCO\nCOSH=HSCO\nOMe=MeO\nPO3H=HO3P\nONp=NpO\nSiPr=iPrS\nCOOEt=EtOOC\nSn-Am=n-AmS\nSPh=PhS\nCOBr=BrCO\nCOBu=BuCO\nSneoAm=neoAmS\nC23H47=H47C23\nNEt2=Et2N\nONa=NaO\nNEt3=Et3N\nCO2i-Am=i-AmO2C\nSPr=PrS\nNC=CN\nOn-Bu=n-BuO\nCO2n-Pr=n-PrO2C\nCOOBu=BuOOC\nCO2n-Bu=n-BuO2C\nOMe3Si=SiMe3O\nP(OMe)2=(MeO)2P\nNHMe=MeNH\nNO=ON\nNHiPr=iPrNH\nOK=KO\nCONHEt=EtNHCO\nCOPh=PhCO\nNHtBu=tBuNH\nCOOBn=BnOOC\nCO2K=KO2C\nSiAm=iAmS\nSiEt3=Et3Si\nOTHP=THPO\nCO2H=HO2C\nCO2Me=MeO2C\nCOPr=PrCO\nStAm=tAmS\nStBu=tBuS\nNMe2=Me2N\nC9H19=H19C9\nCO2n-Am=n-AmO2C\nCCl3=Cl3C\nNHZ=ZNH\nCO2s-Bu=s-BuO2C\nC2H5=H5C2\nC3H7=H7C3\nOLi=LiO\nCO2iBu=iBuO2C\nC7H15=H15C7\nCOOi-Pr=i-PrOOC\nNHtAm=tAmNH\nC8H17=H17C8\nCOOs-Am=s-AmOOC\nNHiAm=iAmNH\nC10H21=H21C10\nOCN=NCO\nOBn=BnO\nCO2t-Bu=t-BuO2C\nOTIPS=TIPSO\nCO2tAm=tAmO2C\nCO2iAm=iAmO2C\nOs-Bu=s-BuO\nP(OEt)2=(EtO)2P\nCOOK=KOOC\nSi-Am=i-AmS\nCOOH=HOOC\nOH2+=+H2O\nCOiPr=iPrCO\nOneoAm=neoAmO\nCPh3=Ph3C\nNCO=OCN\nNHt-Bu=t-BuNH\nNCS=SCN\nOAm=AmO\nOi-Am=i-AmO\nOi-Pr=i-PrO\nOTES=TESO\nC20H41=H41C20\nOAc=AcO\nCO2t-Am=t-AmO2C\nSLi=LiS\nOTos=TosO\nCO2Na=NaO2C\nCH2CH3=CH3CH2\nCOOs-Bu=s-BuOOC\nNHEt=EtNH\nCO2Pr=PrO2C\nPO(OMe)2=(MeO)2OP\nCOOiPr=iPrOOC\nNHTos=TosNH\nSMe=MeS\nOneo-Am=neo-AmO\nCO2tBu=tBuO2C\nCO2i-Bu=i-BuO2C\nCOOtBu=tBuOOC\nCOOn-Am=n-AmOOC\nSt-Am=t-AmS\nC6H13=H13C6\nCOOsBu=sBuOOC\nOTre=TreO\nCONEt2=Et2NCO\nPO3H2=H2PO3\nCOsBu=sBuCO\nC22H45=H45C22\nSNa=NaS\nCOCF3=CF3CO\nCOOneo-Am=neo-AmOOC\nOPr=PrO\nCO2Ph=PhO2C\nOPh=PhO\nP+Ph3=Ph3P+\nSt-Bu=t-BuS\nCOMe=MeCO\nOs-Am=s-AmO\n',oyd,0);for(b=0;b<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"Pyrrole",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTYgNmgxdjZINnptMTEgMGgxdjZoLTF6bS0zIDEwdjZoLTFsLTEuOS0zLjU2VjIySDEwdi02aDFsMS45MyAzLjYxVjE2eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTguNTQgMTUuNDZMNSAxMi45OVY1aDE0djcuOTlsLTMuNTQgMi40Ny43Mi43MkwyMCAxMy41MVY0SDR2OS41MWwzLjgyIDIuNjcuNzItLjcyeiIvPjwvZz48L3N2Zz4="\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"CycloPentane (house)",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgMTkuNjlsLTgtNS44MVY0LjMxaDE2djkuNTd6bS03LTYuMzJsNyA1LjA5IDctNS4wOVY1LjMxSDV6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+"\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"CycloPentane",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTguMjQgMjEuNkg1Ljc2TDEuOSA5LjczIDEyIDIuNGwxMC4xIDcuMzN6bS0xMS43Ni0xaDExbDMuNC0xMC40OUwxMiAzLjYzbC04LjkyIDYuNDh6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+"\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"CycloHexane",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgMi41Nmw4IDQuNjJ2OS42NGwtOCA0LjYyLTgtNC42MlY3LjE4em0wLS45NUwzIDYuOHYxMC40bDkgNS4xOSA5LTUuMTlWNi44bC05LTUuMTl6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+"\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"Benzene",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEyIDIuNTZsOCA0LjYydjkuNjRsLTggNC42Mi04LTQuNjJWNy4xOHptMC0uOTVMMyA2Ljh2MTAuNGw5IDUuMTkgOS01LjE5VjYuOGwtOS01LjE5eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUuMjggOS41Mmw4LjIxLTQuNzQtMS0uNTgtNy4yMSA0LjE2djEuMTZ6TTE4LjUxIDE2VjcuNjdsLTEtLjU3djkuNDhsMS0uNTh6bS0xMy4yMy0uOTV2MS4xNWw2LjQ0IDMuNzIgMS0uNTgtNy40NC00LjI5eiIvPjwvZz48L3N2Zz4="\n\t}\n\t]\n}'),new zSb(new rSb(e,d))):new zSb(uSb(c,Fqd(c.b.a,_Gd)))} +function RQb(a){if(!a.a){a.a=true;Xnc();Znc((Lsc(),'.mjs-top .gwt-Reference-clean{height:5px;width:5px;zoom:1;}.mjs-top .gwt-Button{margin:0;padding:5px 7px;text-decoration:none;cursor:pointer;cursor:hand;font-size:small;color:white;background-image:none;font-weight:normal;text-align:center;min-width:80px;border-radius:1px;border:1px solid #3498db;background-color:#3498db;}.mjs-top .gwt-Button.mjs-marginRight{margin-right:10px;}.mjs-top .gwt-Button[disabled]{cursor:default;color:#888;}.mjs-top .gwt-Button[disabled]:hover{border:1px outset #ccc;}.mjs-top .gwt-CheckBox-disabled{color:#888;}.mjs-top .gwt-CheckBox input{margin:3px 5px 0 0;}.mjs-top.gwt-DialogBox{-webkit-box-shadow:2px 2px 5px #888;-moz-box-shadow:2px 2px 5px #888;box-shadow:2px 2px 5px #888;border:none;}.mjs-top.gwt-DialogBox table{border-collapse:collapse;border-spacing:0;}.mjs-top.gwt-DialogBox .dialogMiddleLeft,.mjs-top.gwt-DialogBox .dialogMiddleRight,.mjs-top.gwt-DialogBox .dialogBottomLeft,.mjs-top.gwt-DialogBox .dialogBottomCenter,.mjs-top.gwt-DialogBox .dialogBottomRight{background-image:none;background-color:white;}.mjs-top.gwt-DialogBox .dialogTopRight,.mjs-top.gwt-DialogBox .dialogTopLeft{background-image:none;background-color:#f1f1f1;}.mjs-top.gwt-DialogBox .dialogTopRightInner,.mjs-top.gwt-DialogBox .dialogBottomRightInner{width:10px;}.mjs-top.gwt-DialogBox .Caption{background:#f1f1f1;padding:4px 8px 4px 4px;cursor:default;font-family:Arial Unicode MS, Arial, sans-serif;font-weight:bold;width:100%;border:0;}.mjs-top.gwt-DialogBox .Caption td{vertical-align:middle;color:#707070;font-weight:bold;font-size:14px;}.mjs-top.gwt-DialogBox .dialogMiddleCenter{padding:3px;background:white;}.mjs-top.gwt-DialogBox .dialogTopLeftInner{width:10px;height:8px;zoom:1;}.mjs-top.gwt-DialogBox .dialogTopRightInner{width:12px;zoom:1;}.mjs-top.gwt-DialogBox .dialogBottomLeftInner{width:10px;height:12px;zoom:1;}.mjs-top.gwt-DialogBox .dialogBottomRightInner{width:12px;height:12px;zoom:1;}.mjs-top .gwt-DisclosurePanel .header,.mjs-top .gwt-DisclosurePanel .header a,.mjs-top .gwt-DisclosurePanel .header td{text-decoration:none;color:black;cursor:pointer;cursor:hand;}.mjs-top .gwt-DisclosurePanel .content{border-left:3px solid #e7e7e7;padding:4px 0 4px 8px;margin-left:6px;}.mjs-top .gwt-Frame{border-top:2px solid #666;border-left:2px solid #666;border-right:2px solid #bbb;border-bottom:2px solid #bbb;}.mjs-top .gwt-HTML{padding:0 0;}.mjs-top .gwt-Hyperlink{cursor:pointer;}.mjs-top .gwt-MenuBar{cursor:default;}.mjs-top .gwt-MenuBar .gwt-MenuItem{cursor:default;font-family:Arial Unicode MS, Arial, sans-serif;padding-right:3px;white-space:nowrap;}.mjs-top .gwt-MenuBar .gwt-MenuItem-selected{background:#e3e8f3;}.mjs-top .gwt-MenuBar-horizontal{background:#e3e8f3;border:1px solid #e0e0e0;}.mjs-top .gwt-MenuBar-horizontal .gwt-MenuItem{padding:5px 10px;vertical-align:bottom;color:#000;font-weight:normal;}.mjs-top .gwt-MenuBar-horizontal .gwt-MenuItemSeparator{width:1px;padding:0;margin:0;border:0;border-left:1px solid #ccc;background:white;}.mjs-top .gwt-MenuBar-horizontal .gwt-MenuItemSeparator .menuSeparatorInner{width:1px;height:1px;background:white;}.mjs-top .gwt-MenuBar-vertical{margin-top:0;margin-left:0;background:white;}.mjs-top .gwt-MenuBar-vertical table{border-collapse:collapse;}.mjs-top .gwt-MenuBar-vertical .gwt-MenuItem{padding:2px 40px 2px 1px;}.mjs-top .gwt-MenuBar-vertical .gwt-MenuItemSeparator{padding:2px 0;}.mjs-top .gwt-MenuBar-vertical .gwt-MenuItemSeparator .menuSeparatorInner{height:1px;padding:0;border:0;border-top:1px solid #ccc;overflow:hidden;}.mjs-top .gwt-MenuBar-vertical .subMenuIcon{padding-right:4px;}.mjs-top .gwt-MenuBar-vertical .subMenuIcon-selected{background:#e3e8f3;}.mjs-top.gwt-MenuBarPopup .menuPopupTopLeftInner{width:5px;height:5px;zoom:1;}.mjs-top.gwt-MenuBarPopup .menuPopupTopRightInner{width:8px;height:5px;zoom:1;}.mjs-top.gwt-MenuBarPopup .menuPopupBottomLeftInner{width:5px;height:8px;zoom:1;}.mjs-top.gwt-MenuBarPopup .menuPopupBottomRightInner{width:8px;height:8px;zoom:1;}.mjs-top .gwt-PasswordTextBox{padding:5px 4px;border:1px solid #ccc;border-top:1px solid #999;font-size:100%;}.mjs-top .gwt-PasswordTextBox-readonly,.mjs-top .gwt-RadioButton-disabled{color:#888;}.mjs-top.gwt-PopupPanel{border:none;padding:3px;background:white;-moz-box-shadow:1px 1px 5px 2px #ccc;-webkit-box-shadow:1px 1px 5px 2px #ccc;box-shadow:1px 1px 5px 2px #ccc;padding:0;}.mjs-top.gwt-PopupPanelGlass{background-color:#000;opacity:0.3;filter:alpha(opacity=30);}.mjs-top .gwt-PushButton-up,.mjs-top .gwt-PushButton-up-hovering,.mjs-top .gwt-PushButton-up-disabled,.mjs-top .gwt-PushButton-down,.mjs-top .gwt-PushButton-down-hovering,.mjs-top .gwt-PushButton-down-disabled{text-align:center;vertical-align:middle;font-weight:normal;padding:0;margin:0;text-decoration:none;border:1px solid white;outline:none;}.mjs-top .gwt-PushButton-up,.mjs-top .gwt-PushButton-up-hovering{padding:0;cursor:pointer;cursor:hand;}.mjs-top .gwt-PushButton-up-disabled{padding:0;}.mjs-top .gwt-PushButton-down,.mjs-top .gwt-PushButton-down-hovering{cursor:pointer;cursor:hand;border:1px solid #b6cdef;background-color:#b6cdef;}.mjs-top .gwt-PushButton-up-disabled,.mjs-top .gwt-PushButton-down-disabled{cursor:default;opacity:0.5;filter:alpha(opacity=45);zoom:1;}.mjs-top .gwt-RichTextArea{padding:2px;margin-top:4px;border:1px solid #ccc;border-top:1px solid #666;font-size:100%;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top .gwt-SuggestBox{padding:5px 4px;border:1px solid #ccc;border-top:1px solid #999;font-size:100%;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top.gwt-SuggestBoxPopup{background-color:white;-moz-box-shadow:2px 2px 3px 1px #ccc;-webkit-box-shadow:2px 2px 3px 1px #ccc;box-shadow:2px 2px 3px 1px #ccc;}.mjs-top.gwt-SuggestBoxPopup .item{padding:2px 6px;color:#000;cursor:default;font-size:110%;}.mjs-top.gwt-SuggestBoxPopup .item-selected{background:#d5e2ff;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupContent{background:white;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopCenter{border-top:1px solid #bbb;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomCenter{border-bottom:1px solid #bbb;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopCenterInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomCenterInner{height:1px;line-height:1px;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupMiddleLeftInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupMiddleRightInner{width:1px;line-height:1px;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopLeftInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopRightInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomLeftInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomRightInner{width:0;height:0;zoom:1;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopLeft,.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopRight,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomLeft,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomRight{width:0;height:0;}.mjs-top .gwt-TabBar{background:none repeat scroll 0 0 white;border-top:2px solid white;padding-top:6px;}.mjs-top .gwt-TabBar .gwt-TabBarFirst{width:0;}.mjs-top .gwt-TabBar .gwt-TabBarItem{margin-left:4px;padding:4px 8px 4px 8px;cursor:pointer;cursor:hand;color:white;font-weight:normal;text-align:center;background:#8e8e8e;}.mjs-top .gwt-TabBar .gwt-TabBarItem-selected{cursor:default;background:none repeat scroll 0 0 #e4e4e4;color:#333;font-weight:bold;}.mjs-top .gwt-TabBar .gwt-TabBarItem-disabled{cursor:default;color:#999;}.mjs-top .gwt-TabPanelBottom{background-color:#e4e4e4;border:none;overflow:hidden;padding:6px;}.mjs-top .gwt-TextArea{padding:4px;border:1px solid #ccc;border-top:1px solid #666;font-size:100%;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top .gwt-TextArea-readonly,.mjs-top .gwt-TextBox-readonly{color:#888;}.mjs-top .gwt-TextBox{padding:5px 4px;border:1px solid #ccc;border-top:1px solid #999;font-size:small;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top .gwt-ToggleButton-up,.mjs-top .gwt-ToggleButton-up-hovering{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;cursor:pointer;cursor:hand;}.mjs-top .gwt-ToggleButton-up-disabled{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;}.mjs-top .gwt-ToggleButton-down,.mjs-top .gwt-ToggleButton-down-hovering{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;cursor:pointer;cursor:hand;}.mjs-top .gwt-ToggleButton-down-disabled{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;}.mjs-top .gwt-ToggleButton-up-disabled,.mjs-top .gwt-ToggleButton-down-disabled{cursor:default;opacity:0.5;zoom:1;filter:alpha(opacity=45);}.mjs-top .gwt-ToggleButton-down,.mjs-top .gwt-ToggleButton-down-hovering{border:1px solid #b6cdef;background-color:#b6cdef;}'));return true}return false} +function cq(){cq=p9c;$p=new F9c('loader',(Z9c(),new U9c('data:image/gif;base64,R0lGODlhIAAgAPUAAP///wAAAKqqqoSEhGBgYExMTD4+PkhISFZWVnBwcI6OjqCgoGZmZjQ0NDIyMjg4OEJCQnR0dKampq6urmpqajAwMLCwsCoqKlxcXJSUlCYmJiIiIoiIiJiYmH5+flJSUnp6eh4eHiAgIBwcHJycnBYWFrq6uhISErS0tL6+vs7OztLS0tjY2MjIyMTExOLi4uzs7Obm5vDw8Pb29vz8/Nzc3AQEBAAAAAoKCgAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEicDBCOS8lBbDqfgAUidDqVSlaoliggbEbX8Amy3S4MoXQ6fC1DM5eNeh0+uJ0Lx0YuWj8IEQoKd0UQGhsaIooGGYRQFBcakocRjlALFReRGhcDllAMFZmalZ9OAg0VDqofpk8Dqw0ODo2uTQSzDQ12tk0FD8APCb1NBsYGDxzERMcGEB3LQ80QtdEHEAfZg9EACNnZHtwACd8FBOIKBwXqCAvcAgXxCAjD3BEF8xgE28sS8wj6CLi7Q2PLAAz6GDBIQMLNjIJaLDBIuBCEAhRQYMh4WEYCgY8JIoDwoGCBhRQqVrBg8SIGjBkcAUDEQ2GhyAEcMnSQYMFEC0QVLDXCpEFUiwAQIUEMGJCBhEkTLoC2hPFyhhsLGW4K6rBAAIoUP1m6hOEIK04FGRY8jaryBdlPJgQscLpgggmULMoEAQAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEicDDCPSqnUeCBAxKiUuEBoQqGltnQSTb9CAUMjEo2woZHWpgBPFxDNZoPGqpc3iTvaeWjkG2V2dyUbe1QPFxd/ciIGDBEKChEEB4dCEwcVFYqLBxmXYAkOm6QVEaFgCw+kDQ4NHKlgFA21rlCyUwIPvLwIuV8cBsMGDx3AUwzEBr/IUggHENKozlEH19dt1UQF2AfH20MF3QcF4OEACN0FCNroBAUfCAgD6EIR8ggYCfYAGfoICBBYYE+APgwCPfQDgZAAgwTntkkQyIBCggh60HFg8DACiAEZt1kAcTHCgAEKFqT4MoPGJQERYp5UkGGBBRcqWLyIAWNGy0JQEmSi7LBgggmcOmHI+BnKAgeUCogaRbqzJ9NLKEhIIioARYoWK2rwXNrSZSgTC7haOJpTrNIZzkygQMF2RdI9QQAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInHAwj0ZI9HggBhOidDpcYC4b0SY0GpW+pxFiQaUKKJWLRpPlhrjf0ulEKBMXh7R6LRK933EnNyR2Qh0GFYkXexttJV5fNgiFAAsGDhUOmIsQFCAKChEEF5GUEwVJmpoHGWUKGgOUEQ8GBk0PIJS6CxC1vgq6ugm+tbnBhQIHEMoGdceFCgfS0h3PhQnTB87WZQQFBQcFHtx2CN8FCK3kVAgfCO9k61PvCBgYhPJSGPUYBOr5Qxj0I8AAGMAhIAgQZGDsIIAMCxNEEOAQwAQKCSR+qghAgcQIHgZIqDhB44ABCkxUDBVSQYYOKg9aOMlBQYcFEkyokInS5oJECSZcqKgRA8aMGTRoWLOQIQOJBRaCqmDxAoYMpORMLHgaVShVq1jJpbAgoevUqleVynNhQioLokaRqpWnYirctHPLBAEAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInCgIBsNmkyQMJsSodLggNC5YjWYZGoU0iMV0Kkg8Kg5HdisKuUelEkEwHko+jXS+ctFuRG1ucSUPYmMdBw8GDw15an1LbV6DJSIKUxIHSUmMDgcJIAoKIAwNI3BxODcPUhMIBhCbBggdYwoGgycEUyAHvrEHHnVDCSc3DpgFvsuXw0MeCGMRB8q+A87YAAIF3NwU2dgZH9wIYeDOIOXl3+fDDBgYCE7twwT29rX0Y/cMDBL6+/oxSPAPoJQECBNEMGSQCAiEEUDkazhEgUIQA5pRFLJAoYeMJjYKsQACI4cMDDdmGMBBQQYSIUVaaPlywYQWIgEsUNBhgQRHCyZUiDRBgoRNFClasIix0YRPoC5UsHgBQ8YMGjQAmpgAVSpVq1kNujBhIurUqlcpqnBh9mvajSxWnAWLNWeMGDBm6K2LLQgAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInCgYB8jlAjEQOBOidDqUMAwNR2V70XhFF8SCShVEDIbHo5GtdL0bkWhDEJCrmCY63V5+RSEhIw9jZCQIB0l7aw4NfnGAISUlGhlUEoiJBwZNBQkeGRkgDA8agYGTGoVDEwQHBZoHGB1kGRAiIyOTJQ92QwMFsMIDd0MJIruTBFUICB/PCJbFv7qTNjYSQh4YGM0IHNNSCSUnNwas3NwEEeFTDhpSGQTz86vtQtlSAwwEDAzs96ZFYECBQQJpAe9ESMAwgr2EUxJEiAACRBSIZCSCGDDgIsYpFTlC+UiFA0cFCnyRJNKBg4IMHfKtrIKyAwkJLmYOMQHz5gRVEzqrkFggAIUJFUEBmFggwYIJFypqJEUxAUUKqCxiBHVhFOqKGjFgzNDZ4qkKFi9gyJhBg8ZMFS3Opl3rVieLu2FnsE0K4MXcvXzD0q3LF4BewAGDAAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEicKBKHg6ORZCgmxKh0KElADNiHo8K9XCqYxXQ6ARWSV2yj4XB4NZoLQTCmEg7nQ9rwYLsvcBsiBmJjCwgFiUkHWX1tbxoiIiEXGVMSBAgfikkIEQMZGR4JBoCCkyMXhUMTFAgYCJoFDB1jGQeSISEjJQZQQwOvsbEcdUMRG7ohJSUEdgTQBBi1xsAbI7vMhQPR0ArVUQm8zCUIABYJFAkMDB7gUhDkzBIkCfb2Eu9RGeQnJxEcEkSIAGKAPikPSti4YYPAABAgPIAgcTAKgg0E8gGIOKAjnYp1Og7goAAFyDokFYQycXKMAgUdOixg2VJKTBILJNCsSYTeAlYBFnbyFIJCAlATKVgMHeJCQtAULlQsHWICaVQWL6YCUGHiao0XMLSqULECKwwYM6ayUIE1BtoZNGgsZWFWBly5U1+4nQFXq5CzfPH6BRB4MBHBhpcGAQAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgEZBKIgsFQKFAUk6J0Kkl8DljI0vBwOB6ExXQ6GSSb2MO2W2lXKILxUEJBID6FtHr5aHgrFxcQYmMLDHZ2eGl8fV6BGhoOGVMCDAQEGIgIBCADHRkDCQeOkBsbF4RDFiCWl5gJqUUZBxcapqYGUUMKCQmWlgpyQxG1IiHHBEMTvcywwkQcGyIiIyMahAoR2todz0URxiHVCAAoIOceIMHeRQfHIyUjEgsD9fUW7LIlxyUlER0KOChQMClfkQf9+hUAmKFhHINECCQs0aCDRRILTEAk4mGiCBIYJUhwsXFXwhMlRE6wYKFFSSEKTpZYicJEChUvp5iw6cLFikWcUnq6UKGCBdAiKloUZVEjxtEhLIrWeBEDxlOoLF7AgCFjxlUAMah2nTGDxtetZGmoNXs1LduvANLCJaJ2rt27ePPKCQIAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBHRABMzhgEEkFJOidCoANT+F7PJg6DIW06llkGwiCtsDpGtoPBKC8HACYhCSiDx6ue42Kg4HYGESEQkJdndme2wPfxUVBh1iEYaHDHYJAwokHRwgBQaOjxcPg0Mon5WWIKdFHR8OshcXGhBRQyQDHgMDIBGTckIgf7UbGgxDJgoKvb1xwkMKFcbHgwvM2RLRRREaGscbGAApHeYdGa7cQgcbIiEiGxIoC/X1KetFGSLvIyEgFgQImCDAQj4pEEIoFIHAgkMTKFwcLMJAYYgRBkxodOFCxUQiHkooLLEhBccWKlh8lFZixIgSJVCqWMHixUohCmDqTMmixotJGDcBhNQpgkXNGDBgBCWgs8SDFy+SwpgR9AOOGzZOfEA6dcYMGkEBTGCgIQGArjTShi3iVe1atl/fTokrVwrYunjz6t3Lt+/bIAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgEdDwMAqJAIEQyk6J0KhhQCBiEdlk4eCmS6dSiSFCuTe2n64UYIBGBeGgZJO6JpBKx9h7cBg8FC3MTAyAgEXcUSVkfH34GkoEGHVMoCgOHiYoRChkkHQogCAeTDw0OBoRFopkDHiADYVMdCIEPDhUVB1FDExkZCsMcrHMAHgYNFboVFEMuCyShohbHRAoPuxcXFawmEuELC9bXRBEV3NwEACooFvAC5eZEHxca+BoSLSb9/S30imTIt2GDBxUtXCh0EVCKAQ0iCiJQQZHiioZFGGwIEdEAi48fa2AkMiBEiBEhLrxYGeNFjJFDFJwcMUIEjJs4YQqRSbOmjFQZM2TIgKETWQmaJTQAXTqjKIESUEs8oEGValOdDqKWKEBjCI2rIxWcgHriBAgiVHVqKDF2LK2iQ0DguFEWAdwpCW7gMHa3SIK+gAMLHky4sOGAQQAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBCw4kQQBQ2F4MsWoFGBRJBNNAgHBLXwSkmnURBqAIleGlosoHAoFkEAsNGU4AzMogdViEB8fbwcQCGFTJh0KiwMeZ3xqf4EHlBAQBx1SKQskGRkKeB4DGR0LCxkDGIKVBgYHh0QWEhKcnxkTUyQElq2tBbhDKRYWAgKmwHQDB70PDQlDKikmJiiyJnRECgYPzQ4PC0IqLS4u0y7YRR7cDhUODAA1Kyrz5OhRCOzsDQIvNSz/KljYK5KBXYUKFwbEWNhP4MAiBxBeuEAAhsWFMR4WYVBBg8cDM2bIsAhDI5EBGjakrBCypQyTQxRsELGhJo2bNELCFKJAhM9dmkNyztgJYECIoyIuEKFBFACDECNGhDDQtMiDo1ERVI1ZAmpUEFuFPCgRtYQIWE0TnCjB9oTWrSBKrGVbAtxWAjfmniAQVsiAvCcuzOkLAO+ITIT9KkjMuLFjmEEAACH5BAkHAAAALAAAAAAgACAAAAb/QIBwSARMOgNPIgECDTrFqBRgWmQUgwEosmQQviDJNOqyLDpXThLU/WIQCM9kLGyhBJIFKa3leglvHwUEYlMqJiYWFgJ6aR5sCV5wCAUFCCRSLC0uLoiLCwsSEhMCewmAcAcFBx+FRCsqsS4piC5TCwkIHwe8BxhzQy8sw7AtKnRCHJW9BhFDMDEv0sMsyEMZvBAG2wtCMN/fMTHWRAMH29sUQjIzMzLf5EUE6A8GAu347fFEHdsPDw4GzKBBkOC+Ih8AOqhAwKAQGgeJJGjgoOIBiBGlDKi48EHGKRkqVLhA8qMUBSQvaLhgMsoAlRo0OGhZhEHMDRoM0CRiYIPPVQ0IdgrJIKLoBhEehAI4EEJE0w2uWiYIQZVq0J0DRjgNMUJDN5oJSpQYwXUEAZoCNIhdW6KBgJ0XcLANAUWojRNiNShQutRG2698N2B4y1dI1MJjggAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBJgkHQVnwFQsitAooHVcdDIKxcATSXgHAimURUVZJFbstpugEBiDiVhYU7VcJjM6uQR1GQQECBQSYi8sKyoqeCYCEiRZA34JgIIIBE9QMDEvNYiLJqGhKEgDlIEIqQiFRTCunCyKKlISIKgIHwUEckMzMzIymy8vc0IKGKkFBQcgvb6+wTDFQx24B8sFrDTbNM/TRArLB+MJQjRD3d9FDOMHEBBhRNvqRB3jEAYGA/TFCPn5DPjNifDPwAeBYjg8MPBgIUIpGRo+cNDgYZQMDRo4qFDRYpEBDkJWeOCxSAKRFQ6UJHLgwoUKFwisFJJBg4YLN/fNPKBhg81UC6xKRhAhoqcGmSsHbCAqwmcmjwlEhGAqAqlFBQZKhNi69UE8hAgclBjLdYQGEh4PnBhbYsTYCxlKMrDBduyDpx5trF2L4WtJvSE+4F2ZwYNfKEEAACH5BAkHAAAALAAAAAAgACAAAAb/QIBwSAS0TBPJIsPsSIrQKOC1crlMFmVGwRl4QAqBNBqrrVRXlGDRUSi8kURCYRkPYbEXa9W6ZklbAyBxCRQRYlIzMzJ4emhYWm+DchQMDAtSNDSLeCwqKn1+CwqTCQwEqE9RmzONL1ICA6aoBAgUE5mcdkIZp7UICAO5MrtDJBgYwMCqRZvFRArAHx8FEc/PCdMF24jXYyTUBwUHCt67BAfpBwnmdiDpEBAI7WMK8BAH9FIdBv39+lEy+PsHsAiHBwMLFknwoOGDDwqJFGjgoCKBiLwcVNDoQBjGAhorVGjQrWCECyhFMsA44IIGDSkxKUywoebLCxQUChQRIoRNQwMln7lJQKBCiZ49a1YgQe9BiadHQ4wY4fNCBn0lTkCVOjWEAZn0IGiFWmLEBgJBzZ1YyzYEArAADZy4UOHDAFxjggAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBLxYKlcKZRFMLMWoVAiDHVdJk0WyyCgW0Gl0RobFjtltV8EZdMJiAG0+k1lZK5cJNVl02AMgAxNxQzRlMTUrLSkmAn4KAx4gEREShXKHVYlIehJ/kiAJCRECmIczUyYdoaMUEXBSc5gLlKMMBAOYuwu3BL+Xu4UdFL8ECB7CmCC/CAgYpspiCxgYzggK0nEU1x8R2mIDHx8FBQTgUwrkBwUf6FIdBQfsB+9RHfP59kUK+fP7RCIYgDAQAcAhCAwoNEDhIIAODxYa4OAQwYOIEaPtA+GgY4MGDQFyaNCxgoMHCwBGqHChgksHCfZlOKChZssKEDQWQkAgggJNBREYPBCxoaaGCxdQKntQomnTECFEiNBQVMODDNJuOB0BteuGohBSKltgY2uIEWiJamCgc5cGHCecPh2hAYFYbRI+uCxxosIDBIPiBAEAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBNBmM1isxlK1XMWotHhUvpouk8WSmnqHVdhVlZ1IFhLTV0qrxsZlSSfTQa2JbaSytnKlUBMLHQqEAndDSDJWTX9nGQocAwMTh18uAguPkhEDFpVfFpADIBEJCp9fE6OkCQmGqFMLrAkUHLBeHK0UDAyUt1ESCbwEBBm/UhHExCDHUQrKGBTNRR0I1ggE00Qk19baQ9UIBR8f30IKHwUFB+XmIAfrB9nmBAf2BwnmHRAH/Aen3zAYMACB36tpIAYqzKdNgYEHCg0s0BbhgUWIDyKsEXABYJQMBxxUcOCgwYMDB6fYwHGiAQFTCiIwMKDhwoWRIyWuUXCihM9DEiNGhBi6QUPNCkgNdLhz44RToEGFhiha8+aBiWs6OH0KVaiIDUVvMkj5ZcGHElyDTv16AQNWVKoQlAwxwiKCSV+CAAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgk0mYzGOxVKzqfT9pR+WKprtCs8yhbWl2mlEurlSZjVRXYMkmRo8dzbaVKmSaLBer9nHVjXyYoAgsdHSZ8WixrEoUKGXuJWS6EHRkKAySSWiYkl5gDE5tZFgocAx4gCqNZHaggEQkWrE8WA7AJFJq0ThwRsQkcvE4ZCbkJIMNFJAkMzgzKRAsMBNUE0UML1hjX2AAdCBjh3dgDCOcI0N4MHx/nEd4kBfPzq9gEBwX5BQLlB///4D25lUgBBAgAC0h4AuJEiQRvPBiYeBBCMmI2cJQo8SADlA4FHkyk+KFfkQg2bGxcaYCBqgwgEhxw0OCByIkHFjyRsGFliU8QQEUI1aDhQoUKDWiKPNAhy4IGDkuMGBE0BNGiRyvQLKBTiwAMK6eO2CBiA1GjRx8kMPlmwYcNIahumHv2wgMCXTdNMGczxAaRBDiIyhIEACH5BAkHAAAALAAAAAAgACAAAAb/QIBwSCwOabSZcclkImcwWKxJXT6lr1p1C3hCY7WVasV1JqGwF0vlcrXKzJlMWlu7TCgXnJm2p1AWE3tNLG0mFhILgoNLKngTiR0mjEsuApEKC5RLAgsdCqAom0UmGaADAxKjRR0cqAMKq0QLAx4gIAOyQxK3Eb66QhK+CcTAABLEycYkCRTOCcYKDATUEcYJ1NQeRhaMCwgYGAQYGUUXD4wJCOvrAkMVNycl0HADHwj3CNtCISfy8rm4ZDhQoGABDKqEYCghr0SJEfSoDDhAkeCBfUImXGg4IsQIA+WWdEAAoSJFDIuGdAjhMITLEBsMUACRIQOIBAceGDBgsoAmVSMKRDgc0VHEBg0aLjhY+kDnTggQCpBosuBBx44wjyatwHTnTgQJmwggICKE0Q1HL1TgWqFBUwMJ3HH5pgEm0gtquTowwCAsnAkDMOzEW5KBgpRLggAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyGSSpmw2aTOntAiVwaZSGhQWi2GX2pk1Vnt9j+EZDPZisc5INbu2UqngxzlL5Urd8UVtfC4mJoBGfCkmFhMuh0QrihYCEoaPQ4sCCx0Sl5gSmx0dnkImJB0ZChmkACapChwcrCiwA7asErYeu0MeBxGAJCAeIBG2Gic2JQ2AAxHPCQoRJycl1gpwEgnb2yQS1uAGcCAMDBQUCRYAH9XgCV8KBPLyA0IL4CEjG/VSHRjz8joJIWAthMENwJpwQMAQAQYE/IQIcFBihMEQIg6sOtKBQYECDREwmFCExIURFkNs0HDhQAIPGTI4+3Cg5oECHxAQEFgkwwVPjCI2rLzgwEGDBw8MGLD5ESSJJAsMBF3JsuhRpQYg1CxwYGcTAQQ0iL1woYJRpFi3giApZQGGCmQryHWQVCmEBDyxTOBAoGbRmxQUsEUSBAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgsGo/IpHLJbDqf0CiNNosyp1UrckqdwbRHrBcWAxdnaBjsxTYTZepXjcVyE2Nylqq1sgtjLCt7Li1+QoMuJimGACqJJigojCqQFgISBg8PBgZmLgKXEgslJyclJRlgLgusHR0ip6cRYCiuGbcOsSUEYBIKvwoZBaanD2AZHAMDHB0RpiEhqFYTyh7KCxIjJSMjIRBWHCDi4hYACNzdIrNPHQkR7wkKQgsb3NAbHE4LFBQJ/gkThhCAdu/COiUKCChk4E/eEAEPNkjcoOHCgQ5ISCRAgEEhAQYRyhEhcUGihooOHBSIMMDVABAEEMjkuFDCkQwOTl64UMFBA0hNnA4ILfDhw0wCC5IsgLCzQs+fnAwIHWoUAQWbSgQwcOrUwSZOEIYWKIBgQMAmCwg8SPnVQNihCbBCmaCAQYEDnMgmyHAWSRAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyKRyyWw6n9CodEpV0qrLK/ZIo822w2t39gUDut4ZDAAyDLDkmQxGL5xsp8t7OofFYi8OJYMlBFR+gCwsIoQle1IxNYorKo0lClQ1lCoqLoQjJRxULC0upiaMIyElIFQqKSkmsg8lqiEMVC4WKBa9CCG2BlQTEgISEhYgwCEiIhlSJgvSJCQoEhsizBsHUiQZHRnfJgAIGxrnGhFQEgrt7QtCCxob5hoVok0SHgP8HAooQxjMO1fBQaslHSKA8MDQAwkiAgxouHDBgcUPHZBIAJEgQYSPEQYAJEKiwYUKFRo0ePAAAYgBHTooGECBAAEGDDp6FHAkwwNNlA5WGhh64EABBEgR2CRAwaOEJAsOOEj5YCiEokaTYlgKgqcSAQkeCDVwFetRBBiUDrDgZAGDoQbMFijwAW1XKRMUJKhbVGmEDBOUBAEAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyKRyyWw6n9CodEqFUqrJRQkHwhoRp5PtNPAKJaVTaf0xA0DqdUnhpdEK8lKDagfYZw8lIyMlBFQzdjQzMxolISElHoeLizIig490UzIwnZ0hmCKaUjAxpi8vGqAiIpJTMTWoLCwGGyIhGwxULCu9vQgbwRoQVCotxy0qHsIaFxlSKiYuKdQqEhrYGhUFUiYWJijhKgAEF80VDl1PJgsSAhMTJkILFRfoDg+jSxYZJAv/ElwMoVChQoMGDwy4UiJBgYIMGTp0mEBEwAEH6BIaQNABiQAOHgYMcKiggzwiCww4QGig5QEMI/9lUAAiQQQQIQdwUIDiSAdQAxoNQDhwoAACBBgIEGCQwOZNEAMoIllQQCNRokaRKmXaNMIAC0sEJHCJtcAHrUqbJlAAtomEBFcLmEWalEACDgKkTMiQQKlRBgxAdGiLJAgAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyKRyyWw6n0yFBtpcbHBTanLiKJVsWa2R4PXeNuLiouwdKdJERGk08ibgQ8mmFAqVIHhDICEjfSVvgQAIhH0GiUIGIiEiIgyPABoblCIDjzQboKAZcDQ0AKUamamIWjMzpTQzFakaFx5prrkzELUaFRRpMMLDBBfGDgdpLzExMMwDFxUVDg4dWi8sLC8vNS8CDdIODQhaKior2doADA7TDwa3Ty0uLi3mK0ILDw7vBhCsS1xYMGEiRQoX+IQk6GfAwIFOS1BIkGDBAgoULogIKNAPwoEDBEggsUAiA4kFEwVYaKHmQEOPHz8wGJBhwQISHQYM4KAgQ4dYkxIyGungEuaBDwgwECDAIEEEEDp5ZjBpIokEBB8LaEWQlCmFCE897FTQoaoSASC0bu3KNIFbEFAXmGUiIcEHpFyXNnUbIYMFLRMygGDAAAEBpxwW/E0SBAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgsGo9I4iLJZAowuKa0uHicTqXpNLPBnnATLXOxKZnNUfFx8jCPzgb1kfAOhcwJuZE8GtlDA3pGGCF+hXmCRBIbIiEiIgeJRR4iGo8iGZJECBudGnGaQwYangyhQw4aqheBpwAXsBcVma6yFQ4VCq4AD7cODq2nBxXEDYh6NEQ0BL8NDx+JNNIA0gMODQbZHXoz3dI0MwIGD9kGGHowMN3dQhTk2QfBUzEx6ekyQgvZEAf9tFIsWNR4Qa/ekAgG+vUroKuJihYqVgisEYOIgA8KDxRAkGDJERcmTLhwoSIiiz0FNGpEgIFAggwkBEyQIGHBAgEWQo5UcdIIiVcPBQp8QICAAAMKCUB4GKAgQ4cFEiygMJFCRRIJBDayJGA0QQQQA5jChDrBhFUmE0AQLdo16dKmThegcKFFAggMLRkk2AtWrIQUeix0GPB1b9gOAkwwCQIAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInAw8xKRymVx8Sqcbc8oUEErYU4nKHS4e2LCN0KVmLthR+HQoMxeX0SgUCjcQbuXEEJr3SwYZeUsMIiIhhyIJg0sLGhuGIhsDjEsEjxuQEZVKEhcajxptnEkDn6AagqREGBeuFxCrSQcVFQ4Oi7JDD7a3lLpCDbYNDarADQ4NDw8KwEIGy9C/wAUG1gabzgzXBnjOAwYQEAcHHc4C4+QHDJU0SwnqBQXNeTM07kkSBQfyHwjmZWTMsOfu3hAQ/AogQECAHpUYMAQSxCdkAoEC/hgSACGBCQsWNSDCGDhDyYKFCwkwoJCAwwIBJkykcJGihQoWL0SOXEKCAAZVDCoZRADhgUOGDhIsoHBhE2ROGFMEUABKgCWIAQMUdFiQ1IQLFTdDcrEwQGWCBEOzHn2JwquLFTXcCBhwNsFVox1ILJiwdEUlCwsUDOCQdasFE1yCAAA7AAAAAAAAAAAA')),32,32)} +function no(a,b){return a?b?new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAABBSURBVHicY/n37x8DPsCCzAkKCgLT69atw1QAk4SxYYpY0CXRFbGgSf6H0owwRSxYJGFsRmQ3IEuiKGLBIQlXBAD7Kxbv5PcAEwAAAABJRU5ErkJggg=='):new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAABFSURBVHicfY7BCQAwCAMVHFAc1BVbfURssQ0EhDtUUdVFn0iUoy+JBcMgMTbQIHGdcHcyM7pBJplgaFLB40SXAO8fDoBsW/0WPGGb8m4AAAAASUVORK5CYII='):b?new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAAA2SURBVHicY/n37x8DMggKCkLm/mfBJwkiWPBJwhXgkkQxARcAK1i3bh2yKYwYVuBThGIFNkUAeAcW76S8NqYAAAAASUVORK5CYII='):new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAAA9SURBVHicYwkICPjPwMDAyAAF69atY0AGLFAarigoKAhFEQuSYqyKkBVgVYSuAAOgK8BwLAs+SWQFOL0JAFbZFjycGfliAAAAAElFTkSuQmCC')} +function TQb(a){if(!a.a){a.a=true;Xnc();Znc((Lsc(),'.mjs-top{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}.mjs-top:focus{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);outline:none;}.mjs-top *{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}.mjs-top :focus{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);outline:none;}.mjs-main{background-color:white;-moz-box-shadow:0 0 3px 2px #ccc;-webkit-box-shadow:0 0 3px 2px #ccc;box-shadow:0 0 3px 2px #ccc;max-height:100%;max-width:100%;min-height:100%;min-width:100%;width:100%;height:100%;}.mjs-main canvas{width:100%;height:100%;background:transparent;-moz-box-shadow:0 0 3px 2px #e0e0e0 inset;-webkit-box-shadow:0 0 3px 2px #e0e0e0 inset;box-shadow:0 0 3px 2px #e0e0e0 inset;}#sketch,.mjs-root,.mjs-focused{width:100%;height:100%;}.mjs-canvasScrollPanel{width:100%;height:100%;background-color:white;margin:0;padding:0;z-index:0;}.mjs-main table{border-collapse:collapse;border-spacing:0;}.mjs-canvasScrollPanel:before{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAdJElEQVR4Xu2dC5AlVXnHv6/v3V3ubhZ1ERV1N4APQNSAjrLO9OlxlM3iBhWVbFKCL6IxluKjFBAiLyERFUrlYRITQJOgCSqKj8V1LSdzT++4kgWJsgrBJ8ouUZddd2Rmd+6d/lLf2D3V09OP0z333umZ/rpqqmamz+lzzv/7fufdpxHkEgVEgUQFULQRBUSBZAUEEPEOUSBFAQFE3EMUEEDEB0SBYgpIC1JMN4lVEQUEkIoYWopZTAEBpJhuEqsiCgggFTG0FLOYAgJIMd0kVkUUEEAqYmgpZjEFBJBiukmsiigggFTE0FLMYgoIIMV0k1gVUUAAqYihpZjFFBBAiukmsSqigABSEUNLMYspIIAU001iVUQBAaQihpZiFlNAACmmm8SqiAICSEUMLcUspoAAUkw3iVURBQSQihhaillMAQGkmG4SqyIKCCA9MrTW+jQAuAwAVhDR5Uqp2xGRepS8JFNQAQGkoHCm0UJgnBKJc4+AYqriwoUTQLqkfQoY0RQFlC7ZoBOPFUA6oWLoGTnAEFA6rH03HieAdEhVQzC+6ycX7W6FcyEtSods0onHCCDzVDEHGJcppb7ByRnGEVDmaZtORBdACqpo6OTcYsyAEU3K8BkCSkEbdSKaAJJTRUOnTgVDQMkp+gIGF0AMxe8GGAKKofgLGEwAyRC/k2Ds2rVr+b59+17aarW+MzQ0tD8pacM0pevVA3AEkASRDZ3UqCvlg3EOEV0EAGsR8XdE9PF2u/1xAaUHXj6PJASQiHidBCN4dLPZ/DQiviFqJwFlHp7bo6gCyFxA0vZHGbUYcbbTWr/Y34s12E1Q2u3249JapR751ZJJRgAxA6QwGDED8VRQAOCGVqv1saGhod8WGaMIIJ1lUwDJAISIXuU4zpc7K/v0YmEiKADwKABc3263rzYA5Y5w3gSQzlpKAMkAJMnhiAi3b9/+LNu2d83HJPMFRWs9q0sogMzHGnPjCiA5AWEwtNavRMRLAeCkdru9emho6PfzNUtRUASQ+SqfHl8AyQlIs9m8ExFfEETrdI2dAcr+sbGxJ23atOlQkL4AIoB0V4GcgPTKIZNAiQLZq/z01AglSkxakJICEmohZg3mBZDe0iOAlByQCCgfaLfbZ4THPNKCdBcYAWSRAJKyJuIBwIwdOz0m6q77lf/pAsgiB6TZbA4i4uUAML1CL4B0FjoBZJEDEumCvX7Pnj1v2bx581Rn3aS6TxNAlggg1XXh7pZcACk5IFu3bl21atWqc4noLAA4zs/u/Yh4y6OPPnrdxo0beVuKXF1SQAApMSCjo6NPn5qa+loIjKgb3F+r1U7v7+//cZf8o/KPFUBKCgi3HCtXrrwrBY4g5/ePj48/X1qS7rAsgJQUENd1309EHzIxOyJeaNv2VSZhJUw+BQSQkgKitf4BADw7lL2RWq32N/z31NTUPwbTuv79e5VSz8lnegltooAAUl5AJgFgWZC9Wq12Qn9//3389+jo6PFTU1M/CmW9Zdv2Cjkt3sTl84URQEoICG+pd12XV8hnrvACYNb9fC4godMUEEBKCAhnKWuPVdZ9cfvOKCCACCCd8aQl+hQBRABZoq7dmWIJIAJIZzxpiT5FABFAlqhrd6ZYAogA0hlPWqJPEUByAtLtQxuC7GTNUkXvG/hnCxEfIqJtRPQvjuPcaRCn8kEEkJyAdOvYn6gndgGQaBKfXbZs2dvWr19/oPIUpAgggOQEJAjeqYPjkmzTA0A46TuXLVu2QSBJJkQAyQCkW0ePZtXaPQKEs/FZpRS/ayJXjAICSAYg/u2OHV5t6oV5AbEs6+jJycnfBc+v1+v7wmkh4vFE9EIAuBIA1oXvEdEpMiaJt4wAYgZIEKpnoOQFxPS8rB07djyx1WrxAD0MyT8rpf7aFN4qhRNA5gJymv8dj7RvmXcdlCxAms3mbxHxCM4+Ee1VSh0Z3s2bdl9r/ToA+Neg6Ij4c9u2j6mS45uWVQBJUKobX5qKJjUyMrIWAI6xLOtQo9G4u6+vrxWEyQLEdd2/8DzvBg5vWdbbbdv+z/Dz0+4PDw8/qV6v7wmFbymllps6TZXCCSAZ1u40KP5W9bMR8TwiCr/kxC3CNa1W63o+OTELEL/lmLZf0nsgnFbc/bjt8kop8QUZpBev+zoBys6dO1eOj49/DhFfkZQT7i5ZlnV19HXbTh8IFwVQAJFBenE6QjFNQUHEi23b3hZOVGv9TwBQaDAsgHTEfLkfIs1qbsn+EMEAFBofH18dnDYyMjJygmVZ/DWqQPMJIrqgVqtpz/O4q/V2AEicGBBAChpqntEEkHkKmAZK2KmbzeZ1iPiOIDkieqfjONdFWpikGbQDtm0/tpPvnEsXy8zwAoiZTpmh4kAJA6K15sPdnhY8CBGfYtv27rgHR57VBoC3KqVuysxEjgACiJlYAoiZTsahws4d/n5hzO7bTzYajXeHp3ajiWitjyWiMcdxfmOcAcOA0XUSx3Eebxi1UsEEkC6Zm8ccg4ODM0fzuK67n4geE0nuZ7wXioi+0uutHlnrKF2SZdE9VgDpkclc172QiP4+JbkHEPFmRLxxYGDg173IVtI6SS/SXixpCCA9tJTrujYRfQAANqYkywfG3UJEVzuO88MeZk+SilFAAFkAt3Bdt4+I3gMAmwGgnpAFQsTbPM+7REBZACP5SQogC6c9DA8PP7Ver/PULy8ePi4hK3zC4s2WZV3Uq67XAkpSuqQFkBKYhD910Gg0zkHE9wLAHydkaT8ivs+27RtLkOXKZEEAKZGph4eH6/V6nbtdPE45ISFrXx4fHz9bvgfSG8MJIL3ROVcqDEqtVjvbsqxLiejomMg7Dx48eOqGDRtm3iDMlYAENlZAADGWqvcBR0dHG1NTUxcBwPkAEH1f491KqU/0PlfVSlEAWQT2dl33RCL6AgAcH8ruu5RS1y6C7C/qLAogi8R8zWaTX6n9nP9lqWFEfI1t22OLJPuLNpsCyKI1nWS8FwoIIL1QWdJYtAoIIIvWdJLxXigggPRCZUlj0SoggCxa00nGe6GAANILlSWNRauAALJoTScZ74UCXQMk4QMvfKDy05RSsw5WNimo1pp3u/4kbtdrVc50itH0/UqpD5vo18swcbY3sZHW+vkAcKr/w79HdzjfBQDsOz/1f/jvu4r4k6kevQaE81XIqFrrCwDgqriCmYhvKkiZwy1VQLTWDAWfGXZsQf03KKW+VTBuarSFAIQzxK0I1wJGFx9e4LceseEFECMZexYoTwsyn8P0QgVa061WZKEA+bxSird1G11a61sB4M+TAgsgRjL2LJApIGm9gjyZ7ab9FwoQLr9Rs+g3v7OO8IyK102B8hiq22G11lEduKL5VLfTzft8E0CyegU8tvDHG9HkuTs26+qm/RcSkG8ppTZkie87xRxRwvG6KVBW/uT+XAUMAeHxJI8roxdPOnw4q8vkD+i5631sNycqFhIQFoZPDEysAbXW/K42D95SLwEkS6He3jcEhFvDaMVXaAKnm6XrJSDcZDLx4ak7Hqj3xdUW/rTuzsjMRjDFx1OAM5cA0k0Xyf9sQ0Ao5sldG2znL8UfYvQaEJ6KizarsbVGwgCOm1+udQSQohbvQbyigJSxouslIGwaPryZF/vCF7cK3IrMTPv6AzhuPaILRXHxIU5Y/xkMErda4UWncLPOwHLLxuOh1Hn0GKPPTDL4XUFOg3+4PNGuw6eUUm9N882ECmFWF9RkHSQpn1prngUMFuFYE87ndNkBgPOXe/E2qTyGgDwSY1+jiZseMD6TRE8BYUdOmPee5UBpYUzE59JprRmwWS1NhrDsKJuTHCXO8Xz4uEUML3Dxc6YHj6H09iml1mQAEpffWV2OgoBwq8twpC3CMRzsnAzMvC8TGyVMvnD6XCl0JB/zLkiPu1jTNX3KlpHp2iNhWndmi4qJ+D4gcYPALM3YMJyPObVpTLrc4sU5HQPC96JfkuJWMtbwviZco4avOWtFBQHJKnNwf05LbhoxGs7ERhlrIAw1l3/BQel5C+I7b9y2kelp34SaZWacYiK+n0bRz53FdocS9pbF+dB0lwUAeHEzfCXO0CTM1s2Z4esyIJxXo6n3LHBMbJQwCRN9NFc04W6w8e6LrDya3l8QQFK6QOxY0Zp3ltFMxA9ByM+a3tDmCxKukbj2D/rlUb3mzKZkAMKG+3ywgY5rPq11tI+d6HwJXco523HmCQi3EJxH1oDzy93PuL1tubYBxTlaDhtxHrilTzp2Nfr4YMzUs9ZlIQFhcbjfnXXN6pqYip/10OC+1jpuwYrHIuxMM1fK7mRuGeas5cRtj0mapdFa88RFuLvGO1T7DLouc1qlmHwyGNxlmTMQN5kYMNUxS6uUsrMfcGufZ7w43dr5G1+72g1bMED8Wj5pNTXQm1dU319UfBPjJvT/TRwvcbzily1ukTMOvLiKImnqO7p2YJLPtK4d19zRsc+8F+uKVGJ+N5M1ywvKvPOb5icLDUjiOx7+NOScd0eKiO87bHRmKaxLdI/TvBzPTy/O+eKAjxuPxQ7oC3axUh3I5JkmFU2nKrHIOyGpW4xCaabuyMib/3D4BQUkpablW7GFzgOI3zpwK8VjDdN+Lqc9b0D8skVn0uZ0nWImJX6qlJr52GeG4807n2UDJKZbGazdpE1Vd2wGLpr+ggPiO9KcTWtJG9BMAfFrojwDwLA283a8ULmiA+FZg+CY8sxpZYKMmTizSZi80OWtgU1tVOC5DAvrGdcNS9QtbzqlakHyZt5U/AILhd0AJO5Fr5mW0V/djk4HJ64mmzi/SZjFCkio68oVXxSSjkxRl7IFyQOJCSCmu4BT0u1IC+IbNLpCPrMAGDODlrribuL8JmEWMyC+prEzoN3Yy1WKLlYXAIm+gch9VJ5Bit1vZeJUJmHiypEGQcz0buqeLZM8mIRZ7ID4kMzZDSyA/GGPVaYwMYt0PXe80LghrrbjNQ6GNrpxc840cF5nrgIgCVPzmfvd8lTEQdil2oJkrheEHNhoLSCv40UcO7oQyGs7DEj0ZbDU9yFM8mASJi90eR3LpBLL+8xInhO3Ks3nuXFxqwJI7CER/liFZ0WiU8AdG4P43YHovjDu6jEg4YMoMg+yMHF+kzDdBCRh4iFuejs4A2t664vJKTd+y8GLiXFbZLqyYLhUAYk7BYW3W7BjMgxsnLRPL3caEAYhOlvFgITBzFzsMnF+kzCdBMTfUhPe7sG1e7TCiduZHLfTIBgjRg9sCBZ50xYO572HrEotiNG77L2YxQp15eJeEApnIdPAJs5vEqbDgMS9OhuVNm5ncuJBgAW6SV1pPTgfS7IFSZhezaN7R1sQPz9pZ3vFbk6MZtjE+U3C9BiQpI2XnQKka3AsdUC4mY9bUAr7R7DTlbtA4YWnbgCS1qoZGdnE+U3C9BAQ3lbPM3Nzdtx24NA47o7x6nlXjhxd0rNYEQdgxwwOegjexWZR+Yf7xvti3sfoBiBxs2VBVhPfNszrzAsACLcErG8wtuMsMxD8ukDmu+7+G6RB5RSMMaIbS4PDqoP36NluPXl5qmtdrDz9GQkrCpRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVgSUJiNb6vwBgkIheBQCPRcSbEfF227bPKKshJF/lVGBJAjI8PPxH9Xr9G0R0NQPCb+5NTExs3rhx46PlNIPkqqwKLElAWGxuRYjo4wyIZVlnFGk9XNc9zvO8ky3Lejy/IouI/zMwMHBvYMzR0dGnT01NPbXdbv98aGjo52U1cjRfIyMjay3LepplWfsHBgbuWSz5Xoh8CiAxqmutTwOAjwLAs2Nu/4SIXus4zp1aawbwXQBwuVLqsoUwYJE0Q8edjtdqtbX9/f3RA6yLPHZJxhFAImZtNpvnIyK/vw48bgGAOzzP+z9EPBwA1gPAmUR0vuM4n44DZMeOHYfX6/WJvr6+VpbHcFcQANpDQ0MHs8Ly/V27di2fmJio9/X1jUfD79y5c9nBgwcPs217LO1ZIyMjz7Es6/tBGES8yLbtD5mkbxLm1ltvra1bt27V+vXrD5iED8q1b9++FVl5N31eJ8MJICE1Xdd9GRFtAQB2wFfGva02Ojra8DzvSNu2HwwB8hFERM/zzkHEIwDgEAB8nYje4TjOnrDBRkZGjrEsi1ubV/jjI779ABH9w8MPP3zt5s2bp/gf27Zte0yj0fiFH/d0ImJoX+S/Jn0/EV3mOM5/uK6riIgdnO9ZAPAzRLzctu3PxDmK1vomAHgTAHzCb/12r1mz5pgTTzxxMgjvuu6/AcDLiehGpdR7w89xXfcjRLQZAL6plJr52JHW+uWI+D4isv18HEDEr1iWdXl/f/+Pg2dklCs17510fNNnlQYQ/004ozfr0gq3devWVY1G412+sc7xZ7HYqB9duXLlDXG1b8gx7iaik4nonY7jXJclYgiQ6dYCEbcQ0e8A4GUAcCQA3Ntut08eGhpq8/2RkREez3zbB+NnAPDfAMAf91QAsAIAPquUOovDDg8PP7ZerwffSuTn/4aINH9oBxFf4OeNj785zz+AbjsArAOAl/r35hxCt2PHjie2Wq0HAWD/2NjYutWrV3+dwxPR6xzH+fegvKOjo2s8z7uLiI4GgFcrpb7E97TWPCt4GwDssSzrpIGBgV/z/31oOB+swQ88z/slIp4MAEcBwO8R8dW2bU9/YsKwXKkH6GXZpZP3ywbIvD4DzIPmdrt9ByLeh4jXWpblHjp0qFar1U5FRK4Jj6zVaqeHa7RATL9m59c4x8fGxtZs2rSJW4HUKwyI53kvHhwcHOUI27dvf4LnebsA4PFEdIbjOLcTkeW67g8B4DgiukIpdSkiTp8IorV+JgB8h2FBxE22bd8RcaRtY2NjLw/ypLXm1uR83yFvb7VaZwYQNpvNS7gF4ddeo1+pajabH0TEi4noUsdxPqi1Ph0AvoqI37Nt+3nhwjabzRciogsAj1qWNf21K8/z+Jzh1Yg4ZNs2w8pwnEVEDBeDsJnzzv/3u3yXEdFFAMCtyQm2be82LJfRIRZZ9unE/SUDiN9y3GNZ1pFEtBEABvwDxjwA+LZlWRdNTU2dhYivaDQaJ0dbEn9gzsb9rlKKxxqZVwiQ25RSr4k42KcR8Q2IeIlt21c0m82XIuK3iOjHSqlnBnAEcYIzfInoM47jvDHsSJZlnRyebQrBzE773MHBwR8EzxkeHj66Xq9z6zSllKqHWoXG1NQUtx6rLctax7W/D+2PAIABHVJK8frRzKW15gkInoi42//n8xDxQtu2Zw5u01rfx9Aj4ptt274xKprW+ovcCvGUu+M45xmWa1beMw3RxQBlAyT8aeW3+oe7cW3Cv3NNyycUHstfw40xxN8i4ksA4CYius6yrOMnJyeXL1++fIXneVcS0QbLso4hoq/4X3P9u4hD/xkifg0ARpVSDFfmFQLkKqXUhRHnmjXDFTrFo42Ic9ZjiGg5ADQA4E6l1ClhR2q3243wQD58b2xs7LBwaxe+Fz7MudlsvgUR+VuKPK54c5DXZrP5NkT8JLckSikeF826XNf9AhFNw8/jM6XU6QHcw8PDT6rX6zzGmhwbGzs8rtXlsQkAsOY7lVIvMC1XNw6izjRoTICyATL9fWz/lAyupfgM2wuUUmtCBxbH9k+11vci4nlE9B7u5XA3y/O8G3jwzN0mRDzH87yjLct6iIg+opSaNYXbbDafy+scRLRXKfUEHnNnCZo2zRu957ru5UR0CQDwLFPatOoPlVKbkhyd85T3HhGh67rc5TsBACYQcWZATkQ1AODZNO7uHa+U+t9IxfGXiPg5H5AzHcfhFmH6GhkZOcGyLO42/lop9cQ4vfyu2ne55XQc5xl5855lg27fLxsg02MQ/ygYHtTxAJYPfuYWhI+V4Zqa/zfr8h2gZVnWkz3Pe8jzPB7Ifg8Rz0XEX/nA3UhED1iWtdbzvN3h7odvfHaiXwLAU8ID0zQD5AEkqKkR8Yu2bZ+ZZdiijhQXLzQ79xsA2B2TNmvLA/xPKqXeHtx3XXcdEfFC4mP8/+1FxJN4LMF/c7d25cqV+wGg7nneusHBQdZv1qW15uddT0TfdBxnY9FyZenVrfulBoSbWf/sVy4/n5XEXxGa9dXbkHMfarfb6+r1+i8sy3qm53ncb34HET2IiKe02+1buW9ORE9GxIeUUtylmXW5rsvhefZqT61Wc+IG8xxh586dK3kMkwcQfyB+P08B8+r84OAg9/0Tr6KOFBdPa81ngPFs1WmO42yNKfeTiYh3AnDLspbPCuNB9sTERNNf+7nYj3MFIjZ37979kmA6WmvNM1xnENEtSqnXhcdWzWbzSETkM7LWAsBfKaVuKlqubgGQ9dyyAcLz6zy1Of2Rex8QPvWQxx5cyyWeX6u15oHqhUR0FBHtsiyLZ1a45uNe1rlE9HQeuCPix/wu1nPiWqLt27d/3u9zHyCiayzL4nURrjFXE9ELAeAcfyAdu1AYPDMOHtd1byaiN/pTtlfUarUtk5OTexuNxopWq8X5eZNlWR/lAXlRR4rGC7qOPOVs2zZ3I2PP0tVa87rJ64MPmGqteR8bz/xts22bdxbwjNU3AIDHfzPfA+SZQ57dIiLW+kuc/3a7/atarfYiIroSAJ7BUdttXg8dahctV5Yjd+t+mQAJf0ODIeEDj3k8woNz7rPzYH3O4DzUHeCW5WUHDhz409WrVz/A45BarXZxq9U6VK/Xudbmqd9z2cF9o8cdoQ+8EnzUUUd9wF9fWBUjfAsReW/XljwtCD+HV8IfeeSR6wHgLQkG9Wq12on9/f33FXWkGECmZ9OI6E28+p/kSKEV9ocQ8Z1ExGONh9rt9klDQ0O/5Xh+i/A97oYG09G+fZ6PiDyY53WTWRcP7BHxbG6V+EbRcnULgKznlgaQpIxmDc6DeNztmZiYuJsX63imhogYAD7KskZEFyDiKCJuJaKHG43G89IWDPmZvFjWbrc3WZb1XH/Rb5/ned/nWj9YIGs2m4M8BQsAO2zb3hEuAw9OAeBZtVrtnuiGQH+9hleeT+SWkYjGEPFHnufdNjg4yHCzIx1Wr9enu5PRfV5btmxZcfjhh7+N79m2zbNlMxdDuHfv3tf68T6jtebZtfoRRxxxVXi1PE5vv4vJGzN5YbPOs3q2bfPax8zlum4fEfH6ySNKqWuDGz78PLZy/DI9SERfHRwc5G7azGVSLs/z0HGcj2U5by/uLwZApj+YEjc4jwqkteZxCgPCc/zXLF++fMfk5KSHiH+CiO/2u1mbenWuay8MKGl0V4HSA5K3+NySHDx4kLsIvGXjOD/+/Yh4y2GHHXZtVsuRNz0Jv7QVWHKAhM3F07/8d9LAdGmbVkrXCQWWNCCdEEieUW0FBJBq219Kn6GAACIuIgqkKCCAiHuIAgKI+IAoUEwBaUGK6SaxKqKAAFIRQ0sxiykggBTTTWJVRAEBpCKGlmIWU0AAKaabxKqIAgJIRQwtxSymgABSTDeJVREFBJCKGFqKWUwBAaSYbhKrIgoIIBUxtBSzmAICSDHdJFZFFBBAKmJoKWYxBQSQYrpJrIooIIBUxNBSzGIKCCDFdJNYFVFAAKmIoaWYxRQQQIrpJrEqooAAUhFDSzGLKSCAFNNNYlVEAQGkIoaWYhZTQAApppvEqogCAkhFDC3FLKaAAFJMN4lVEQUEkIoYWopZTAEBpJhuEqsiCgggFTG0FLOYAgJIMd0kVkUUEEAqYmgpZjEFBJBiukmsiigggFTE0FLMYgoIIMV0k1gVUUAAqYihpZjFFBBAiukmsSqigABSEUNLMYspIIAU001iVUQBAaQihpZiFlNAACmmm8SqiAICSEUMLcUspoAAUkw3iVURBQSQihhaillMgf8HTbWmyLNLob8AAAAASUVORK5CYII=) no-repeat center;content:"";opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;}.mjs-canvasScrollPanel.mjs-logo:before{animation:mjs-fade-in 1.75s ease-in forwards;}@keyframes mjs-fade-in {\n\t0% {\n\t opacity: 0;\n\t}\n\t100% {\n\t opacity: 1;\n\t}\n}.mjs-cursor-moved{cursor:move;}.mjs-cursor-copied{cursor:copy;}.mjs-cursor-defaultCursor{cursor:default;}.mjs-cursor-navigate{cursor:default;cursor:pointer;cursor:move;cursor:all-scroll;}.mjs-cursor-text{cursor:text;}.mjs-about{color:#585858;}.mjs-disabledText{color:darkgray;font-style:italic;}.mjs-hidden,.mjs-hToolbarNavigator>.gwt-PushButton-up-disabled,.mjs-vToolbarNavigator>.gwt-PushButton-up-disabled,.mjs-hTouchToolbarNavigator>.gwt-PushButton-up-disabled,.mjs-vTouchToolbarNavigator>.gwt-PushButton-up-disabled{visibility:hidden;}.mjs-thumbPanel{background:white;margin:10px auto;}.mjs-thumbPanel img{border:1px solid gray;margin:5px;}.mjs-thumbPanel img:hover{border:1px solid black;margin:5px;}.mjs-toolbar :focus{outline:1px solid lightgray;}.mjs-CloseButton{float:right;font-size:20px;color:gray;cursor:pointer;}.mjs-marginTop,.gwt-Button.mjs-marginTop,.mjs-separated{margin-top:15px;}.mjs-marginRight{margin-right:10px;}.mjs-expandCheckbox,.mjs-propertyDialog .gwt-CheckBox{margin-left:10px;}.mjs-errorMessage{font-weight:bold;color:red;}.mjs-dialogSubHeader{color:gray;font-weight:bold;font-size:14px;margin-top:15px;margin-bottom:5px;}.mjs-hasBottomLine{padding-bottom:4px;margin-bottom:4px;border-bottom:1px solid gray;}.mjs-separated{padding-bottom:15px;border-bottom:1px solid gray;}.mjs-disableiOSMenu{-webkit-touch-callout:none;}canvas.mjs-canvas,canvas.mjs-canvas:FOCUS{outline:none;margin:0;padding:0;-webkit-user-select:none;}.mjs-toolbar .gwt-ToggleButton,.mjs-toolbar .gwt-PushButton,.mjs-comboButtonPopup .gwt-ToggleButton,.mjs-comboButtonPopup .gwt-PushButton{width:28px;height:28px;line-height:26px;font-size:12px;font-weight:normal;}.mjs-buttonContainer-inline{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;}.mjs-comboButtonPopup div.mjs-buttonContainer-inline{max-width:124px;}.mjs-touchComboButtonPopup div.mjs-buttonContainer-inline{max-width:180px;}.mjs-touchToolbar .gwt-ToggleButton,.mjs-touchToolbar .gwt-PushButton,.mjs-touchComboButtonPopup .gwt-ToggleButton,.mjs-touchComboButtonPopup .gwt-PushButton{width:43px;height:43px;line-height:41px;font-size:18px;font-weight:normal;}.mjs-hToolbarNavigator .gwt-PushButton{width:9px;}.mjs-vToolbarNavigator .gwt-PushButton{height:13px;line-height:11px;}.mjs-touchToolbar .mjs-hTouchToolbarNavigator .gwt-PushButton{width:16px;}.mjs-touchToolbar .mjs-vTouchToolbarNavigator .gwt-PushButton{height:20px;line-height:18px;}.mjs-touchToolbar img{vertical-align:middle;margin-top:1px;}.mjs-touchComboButtonPopup img{vertical-align:middle;margin-top:1px;padding-top:7px;padding-left:7px;}.mjs-toolbar img,.mjs-comboButtonPopup img{vertical-align:middle;margin-top:1px;}.mjs-toggleButton .gwt-Image,.mjs-pushButton .gwt-Image,.mjs-comboButton .gwt-Image{width:24px;height:24px;}.mjs-icon18,.mjs-icon18 .gwt-Image{width:18px;height:18px;}.mjs-comboButton{background-color:white;border-bottom-right-radius:9px;}.mjs-comboButton-down{background-color:#b6cdef;border-bottom-right-radius:9px;}.mjs-touchToolbar .mjs-comboButton,.mjs-touchToolbar .mjs-comboButton-down{border-bottom-right-radius:12px;}.mjs-comboButtonBackground{background:black;filter:none;margin:0;padding:0;}.mjs-slidingBar{transition:margin 0.25s;-webkit-transition:margin 0.25s;}.mjs-touchContextMenu .gwt-MenuItem{font-size:20px;}.mjs-touchContextMenu{max-height:80%;max-width:80%;overflow-y:scroll;}.mjs-toolbar,.mjs-touchToolbar,.mjs-toolbar div,.mjs-touchToolbar div,.mjs-toolbar table,.mjs-touchToolbar table,.mjs-toolbar td,.mjs-touchToolbar td{-webkit-user-select:none;}.mjs-propertyDialog .gwt-ToggleButton{background-color:transparent;background-image:none;padding:0 2px;margin:0 3px;border:0;}.mjs-periodicsystem .gwt-ToggleButton{border-radius:0;border:0;font-size:11px;width:24px;height:24px;padding-right:3px;line-height:22px;text-align:center;vertical-align:middle;font-weight:bold;padding:0;background:none;}.mjs-emptyRow .gwt-Label{font-size:4px;line-height:8px;visibility:hidden;}.mjs-emptyRow{font-size:4px;border:1px solid #bbb;border-left:0;border-right:0;}.mjs-periodicButton{border:1px solid #bbb;}.mjs-periodicsystem{border-collapse:collapse;}.mjs-periodicsystem .gwt-ToggleButton-up{background:none;}.mjs-periodicsystem .gwt-ToggleButton-up-disabled,.mjs-periodicsystem .gwt-ToggleButton-down-disabled{background:lightgray;color:gray;text-decoration:italic;}.mjs-periodicsystem .gwt-ToggleButton-down,.mjs-periodicsystem .gwt-ToggleButton-down-hovering{background:#ddd;}.mjs-periodicsystem .gwt-Label{padding:0 5px;}.mjs-periodicsystem td,.mjs-periodicsystem div{text-align:center;vertical-align:middle;padding:auto;}.mjs-listButton .gwt-ToggleButton{width:62px;height:22px;background-color:#8b9699;color:white;font-weight:normal;}.mjs-listButton .gwt-ToggleButton-up{background-color:#8b9699;color:white;font-weight:normal;}.mjs-listButton .gwt-ToggleButton-down,.mjs-listButton .gwt-ToggleButton-down-hovering{background-color:#7dc9be;font-weight:normal;}.mjs-listButton{visibility:visible;}.mjs-topGap{border-top:20px solid rgba(0, 0, 0, 0);}.mjs-reaxysGenericsDialog .gwt-TabPanel{margin-bottom:10px;}.mjs-reaxysGenericsDialog button.gwt-Button{background-color:#fff;border:1px solid #d0d2d2;margin:2px;color:#353540;padding:3px 10px;min-width:50px;}.mjs-secondaryCaption{font-size:larger;border:2px solid darkgray;padding:2px;color:dimgray;}.mjs-tertiaryCaption{font-size:smaller;border:1px dotted darkgray;color:gray;padding:2px;margin-top:3px;}.mjs-errorpanel{background:none;}.mjs-errorpanel .mjs-details{background:none;border-left:none;}.mjs-errorpanel .mjs-details .gwt-Label{font-weight:bold;padding-left:2px;}.mjs-errorpanel .mjs-details .gwt-TextArea-readonly{color:black;border-style:none;background:#e7e7e7;}.mjs-customSGroupBracket{font-size:70px;font-size:70px;}.mjs-alignBottom,.mjs-alignBottom td{vertical-align:bottom;}.mjs-top.mjs-tutorialPopup{font-family:Arial Unicode MS, Arial, sans-serif;font-size:small;padding:4px;}table.mjs-dialog-errorField tr:last-of-type:after,input.mjs-dialog-errorField:after{color:red;content:"*";}.mjs-padded-header tr>td:first-child{padding-right:10px;}a.mjs-nodecoration{font-size:medium;display:block;padding:0.2em;}a.mjs-nodecoration:hover{text-decoration:none;}input.mjs-invalidInput{color:red;}'));return true}return false} +function pp(){var a;a=new yod;a.a+='/*!!\n * Canvas 2 Svg v1.0.19\n * A low level canvas to SVG converter. Uses a mock canvas context to build an SVG document.\n *\n * Licensed under the MIT license:\n * http://www.opensource.org/licenses/mit-license.php\n *\n * Author:\n * Kerry Liu\n *\n * Copyright (c) 2014 Gliffy Inc.\n */\n!function(){"use strict";var _,x,u,d,o;function g(t,e){var r,i=Object.keys(e);for(r=0;rMath.PI?0:1:_>Math.PI?1:0,this.lineTo(h,l),this.__addPathCommand(g("A {rx} {ry} {xAxisRotation} {largeArcFlag} {sweepFlag} {endX} {endY}",{rx:r,ry:r,xAxisRotation:0,largeArcFlag:p,sweepFlag:c,endX:a,endY:o})),this.__currentPosition={x:a,y:o}}},x.prototype.clip=function(){var t=this.__closestGroupOrSvg(),e=this.__createElement("clipPath"),r=h(this.__ids),i=this.__createElement("g");this.__applyCurrentDefaultPath(),t.removeChild(this.__currentElement),e.setAttribute("id",r),e.appendChild(this.__currentElement),this.__defs.appendChild(e),t.setAttribute("clip-path",g("url(#{id})",{id:r})),t.appendChild(i),this.__currentElement=i},x.prototype.drawImage=function(){var t,e,r,i,s,n,a,o,h,l,c,p,_,u=Array.prototype.slice.call(arguments),d=u[0],g=0,m=0;if(3===u.length)t=u[1],e=u[2],r=s=d.width,i=n=d.height;else if(5===u.length)t=u[1],e=u[2],r=u[3],i=u[4],s=d.width,n=d.height;els';a.a+='e{if(9!==u.length)throw new Error("Invalid number of arguments passed to drawImage: "+arguments.length);g=u[1],m=u[2],s=u[3],n=u[4],t=u[5],e=u[6],r=u[7],i=u[8]}a=this.__closestGroupOrSvg(),this.__currentElement;var f="translate("+t+", "+e+")";if(d instanceof x){if((o=d.getSvg().cloneNode(!0)).childNodes&&1',Syd='<\/i>',Tyd='",NHd='<\/font>',OHd='value',PHd='mjs-dialogSubHeader',QHd='mjs-inline',RHd={162:1,13:1},SHd='BUTTON',THd='Elements list',UHd='Atom list',VHd='NOT list',WHd='mjs-periodicButton',XHd='mjs-listButton',YHd='mjs-hidden',ZHd={248:1},$Hd='170px',_Hd={198:1,3:1,4:1},aId='mjs-propertyDialog',bId='Change to <\/b>',cId='change-atomtype',dId='mjs-hasBottomLine',eId='atomproperties',fId='Aromatic (a)',gId='Aliphatic (A)',hId='Unsaturated',iId='Pseudo',jId='Charge',kId='Enhanced
    stereo',lId='Display',mId='Radical',nId='120px',oId='160px',pId='  ',qId='mjs-icon18',rId='gwt-TextBox',sId='',tId='Invalid key.',uId='NOCHANGE',vId='as drawn',wId='exactly',xId='Ring bond',yId='Ring count',zId='Substitutions',AId='number cannot be null',BId={465:1,21:1},CId='mjs-dialog-errorField',DId={2243:1,13:1},EId=-2147483648,FId='Total H',GId='Implicit H',HId='Bond orders',IId='Connections',JId='Smallest ring size',KId='Aromaticity',LId='mjs-reaxysGenericsDialog',MId={163:1,3:1,6:1,4:1},NId='Heteroaryl',OId='Hetero',PId='mjs-obf-CJ',QId="'> ",ZId="",$Id='undefined',_Id='application/octet-stream',aJd='#000000',bJd='mjs-alignBottom',cJd='mjs-customSGroupBracket',dJd=' ',eJd='backgroundColor',fJd='px sans-serif',gJd='rgba(220,220,220,0.7)',hJd='rgba(128,128,128,0.7)',iJd='rgba(211,211,211,0.8)',jJd='rectangleSelection',kJd='lassoSelection',lJd='autoreaction',mJd='{"north":[{"categories":["clear","io"],"isFloating":false},{"categories":["history"],"isFloating":false},{"categories":["clipboard"],"isFloating":false},{"categories":["zoom"],"defaultItem":"zoomToFit","isFloating":true},{"items":["clean2d","calculateStereo","hydrogenize"],"isFloating":false},{"items":["#extension"],"isFloating":false},{"items":["settings"],"isFloating":false},{"items":["about"],"isFloating":false}],"west":[{"categories":["select"],"isFloating":true},{"items":["erase"],"isFloating":false},{"categories":["freehandDrawing","basic_bonds","aromaticBond","singleUpBond","singleDownBond","singleUpOrDownBond","doubleCisOrTransBond","doubleCisOrTransOrUnspecBond","singleOrDoubleBond","singleOrAromaticBond","doubleOrAromaticBond","anyBond","coordinateBond","positionVariation"],"defaultItem":"singleBond","isFloating":true},{"items":["chain"],"isFloating":false},{"categories":["charge"],"isFloating":false},{"items":["repeatingUnit"],"isFloating":false},{"categories":["rgroup"],"isFloating":false}],"east":[{"items":["periodicTable"],"isFloating":false},{"categories":["frequent_atoms","S","F","P","Cl","Br","I"],"isFloating":false},{"items":["starAtom"],"isFloating":false},{"items":["A","Q","M","X","AH","QH","MH","XH","pseudoAtom","atomQueryProperty"],"isFloating":true}],"south":[{"items":["abbreviations"],"isFloating":false},{"items":["#templates","#customTemplates"],"isFloating":false}]}',nJd='search',oJd='standard',pJd='{"north":[{"items":["zoomIn","zoomOut","zoomToFit"],"isFloating":false},{"items":["rotate3d"],"isFloating":false}]}',qJd='background-color',rJd='callback',sJd={3:1,45:1,52:1,42:1},tJd='Abbreviated groups',uJd={579:1},vJd={146:1,49:1,116:1,244:1,294:1,197:1,295:1,105:1,338:1,296:1,196:1},wJd='Bond cannot be null',xJd="Bond's ligands should be contained in the molecule",yJd='Ligand cannot be null',zJd={292:1,3:1,6:1,4:1},AJd=1.53,BJd={146:1,49:1,116:1,244:1,294:1,197:1,295:1,105:1,338:1,296:1,196:1,261:1},CJd='monovalent',DJd={123:1,337:1,226:1},EJd=0.5148721293383272,FJd=2.626720524251466,GJd=3.6564647829281203,HJd=1.1780972450961724,IJd=1.9634954084936207,JJd=4.319689898685965,KJd=5.105088062083414,LJd=-1.7976931348623157E308,MJd='alertdialog',NJd='application',OJd='button',PJd='checkbox',QJd='columnheader',RJd='complementary',SJd='contentinfo',TJd='definition',UJd='menuitemcheckbox',VJd='menuitemradio',WJd='navigation',XJd='option',YJd='presentation',ZJd='progressbar',$Jd='radiogroup',_Jd='spinbutton',aKd={409:1},bKd='CSS1Compat',cKd='HTMLEvents',dKd='load',eKd='contextmenu',fKd={67:1,59:1,3:1,11:1,10:1},gKd={277:1,59:1,3:1,11:1,10:1},hKd={222:1,59:1,3:1,11:1,10:1},iKd={59:1,223:1,3:1,11:1,10:1},jKd={59:1,224:1,3:1,11:1,10:1},kKd={59:1,225:1,3:1,11:1,10:1},lKd={117:1,3:1,11:1,10:1},mKd={59:1,188:1,3:1,11:1,10:1},nKd=2286,oKd=2298,pKd='mousedown',qKd='mousemove',rKd='mouseout',sKd='mouseover',tKd='mouseup',uKd='touchcancel',vKd='touchstart',wKd={274:1,3:1,45:1,52:1,42:1},xKd={229:1,3:1,45:1,42:1},yKd='January',zKd='February',AKd='March',BKd='April',CKd='May',DKd='June',EKd='July',FKd='August',GKd='September',HKd='October',IKd='November',JKd='December',KKd=1900,LKd='Before Christ',MKd='Anno Domini',NKd='Sunday',OKd='Monday',PKd='Tuesday',QKd='Wednesday',RKd='Thursday',SKd='Friday',TKd='Saturday',UKd='Too many percent/per mille characters in pattern "',VKd={3:1,11:1,156:1},WKd='Error parsing JSON: ',XKd=4194303,YKd=1048575,ZKd=524288,$Kd=17592186044416,_Kd=1000000000,aLd=-17592186044416,bLd='html is null',cLd={1009:1,3:1},dLd='DOMMouseScroll',eLd=131072,fLd=2097152,gLd=16777216,hLd=33554432,iLd=67108864,jLd={411:1},kLd='__gwtLastUnhandledEvent',lLd='__uiObjectID',mLd='orientationchange',nLd='http://www.chemaxon.com/',oLd={36:1,24:1,35:1,31:1,71:1,79:1,174:1,21:1,28:1,29:1,39:1},pLd='display',qLd='scrollHeight',rLd={95:1,36:1,24:1,35:1,31:1,21:1,27:1,28:1,29:1},sLd='rowSpan',tLd='Column index: ',uLd=', Column size: ',vLd='Row index: ',wLd=', Row size: ',xLd='bidiwrapped',yLd='gwt-PushButton',zLd={36:1,24:1,35:1,31:1,71:1,79:1,21:1,478:1,28:1,29:1,39:1},ALd='gwt-TabBarItem-selected',BLd='gwt-TabBarItem-wrapper-selected',CLd={36:1,24:1,35:1,31:1,174:1,21:1,2244:1,28:1,29:1},DLd={231:1,3:1,11:1,10:1},ELd={495:1,500:1},FLd={1010:1,443:1},GLd='Superscript',HLd={297:1,149:1},ILd={1011:1,297:1,149:1},JLd='Failed to parse: ',KLd='parsererror',LLd={3:1,45:1,73:1,52:1,42:1},MLd='For input string: "',NLd={3:1,45:1,20:1,52:1,42:1},OLd=1073741824,PLd='BigInteger: modulus not positive',QLd='BigInteger not invertible.',RLd='Zero length BigInteger',SLd=4294967295,TLd={l:0,m:0,h:524288},ULd={11:1,343:1},VLd={212:1},WLd=2265,XLd={39:1,78:1,144:1},YLd={185:1},ZLd={3:1,212:1},$Ld={3:1,39:1,78:1,144:1},_Ld={3:1,39:1,78:1,160:1},aMd=15525485,bMd=5.9604644775390625E-8,cMd={3:1,11:1,10:1,259:1},dMd={3:1,4:1,2346:1},eMd=', length: ',fMd='fromIndex: ',gMd=', toIndex: ',hMd=1518500249,iMd=1859775393,jMd=-1894007588,kMd=-899497514,lMd='__gwtex_wrap',mMd='locale',nMd='default',oMd='user.agent',pMd='gecko1_8';var _,l9c,g9c,x8c=-1;m9c();n9c(1,null,{},S);_.V=qMd;_.W=function(){return this.Fp};_.X=rMd;_.Y=function(){var a;return Jmd(U(this))+'@'+(a=V(this)>>>0,a.toString(16))};_.equals=function(a){return this.V(a)};_.hashCode=function(){return this.X()};_.toString=function(){return this.Y()};var dvc,evc,fvc;n9c(584,1,{584:1},Kmd);_.fp=function(a){var b;b=new Kmd;b.i=4;a>1?(b.c=Qmd(this,a-1)):(b.c=this);return b};_.gp=function(){Hmd(this);return this.b};_.Ic=function(){return Jmd(this)};_.hp=function(){Hmd(this);return this.n};_.ip=function(){return (this.i&4)!=0};_.jp=function(){return (this.i&1)!=0};_.Y=function(){return ((this.i&2)!=0?'interface ':(this.i&1)!=0?'':'class ')+(Hmd(this),this.p)};_.i=0;_.k=0;var Gmd=1;fvc={3:1,466:1,11:1,2:1};var Bnd;n9c(1015,1,{},lod);_.Wg=function(a,b){return End(a.toLowerCase(),b.toLowerCase())};_.V=qMd;var _5c=Mmd(1);var O5c=Mmd(584);var M5c=Omd();var g6c=Mmd(2);var c6c=Mmd(1015);var W;var Z;var Cvc=Mmd(null);var db;var wvc=Mmd(null);var hb;var xvc=Mmd(null);var nb;var yvc=Mmd(null);var vb;var zvc=Mmd(null);var Bb;var Avc=Mmd(null);var Ib,Jb;var Bvc=Mmd(null);var Ob;var Dvc=Mmd(null);n9c(1998,1,{},Sb);_.a=null;var Evc=Mmd(1998);var Tb;var Fvc=Mmd(null);n9c(440,1,{440:1},cc);_.V=function(a){return kvc(a,440)&&this.b==a.b&&this.a==a.a};_.X=function(){return this.b.k+$wnd.Math.abs(this.a)};_.Y=function(){var a;a=fc(this.b);this.b==(nc(),kc)&&(a+=': '+this.a);return a};_.a=0;var Ovc=Mmd(440);n9c(10,1,{3:1,11:1,10:1});_.Z=function(a){return this.k-a.k};_.V=qMd;_.X=rMd;_.$=function(){return fc(this)};_.Y=function(){return this.$()};_.k=0;var Q5c=Mmd(10);n9c(370,10,{370:1,3:1,11:1,10:1},oc);var jc,kc,lc,mc;var Gvc=Nmd(370,Q5c,pc);n9c(1534,1,{},vc);var qc;var Ivc=Mmd(1534);n9c(1999,1,{},Dc);_.Y=function(){var a;a=new pod;nod(a,'The atom reference is: '+this.b+oyd);nod(a,'ImplicitHCount = '+this.f+oyd);nod(a,'Electrons in bonds = '+this.d+oyd);a.a+='The bonds of the atom:\n';nod(a,'Single bonds: '+this.c[1]+oyd);nod(a,'Double bonds: '+this.c[2]+oyd);nod(a,'Triple bonds: '+this.c[3]+oyd);nod(a,'Aromatic bonds: '+this.c[4]+oyd);nod(a,'Charge: '+this.b.Nl()+oyd);nod(a,'Radical count: '+this.b.Xl().c);return a.a};_.a=0;_.b=null;_.d=0;_.e=false;_.f=0;_.i=false;_.j=0;_.k=null;_.n=0;_.o=0;var Hvc=Mmd(1999);n9c(515,1,{515:1,3:1},Gc,Hc);_.V=function(a){var b;if(this===a){return true}if(!kvc(a,515)){return false}b=a;if(this.a==b.a&&this.b==b.b){return true}return false};_.X=function(){return 5+(this.b?13:0)+(this.a?19:0)};_.Y=function(){return 'Local aromatic calculation: '+this.a+'\n Traditional form allowed: '+this.b};_.a=false;_.b=false;var Ec;var Kvc=Mmd(515);n9c(1535,1,{},Ic);_.a=true;_.b=true;var Jvc=Mmd(1535);n9c(42,1,{3:1,42:1});_._=function(a){return new Error(a)};_.ab=JMd;_.bb=function(){var a,b,c;c=this.i==null?null:this.i.replace(new RegExp(oyd,'g'),' ');b=(a=Jmd(this.Fp),c==null?a:a+': '+c);Pc(this,Sc(this._(b)));Hic(this)};_.Y=function(){return Qc(this,this.ab())};_.e=pyd;_.j=false;_.o=true;var h6c=Mmd(42);n9c(45,42,{3:1,45:1,42:1},Uc);var S5c=Mmd(45);n9c(324,45,{324:1,3:1,45:1,42:1},Xc);var Mvc=Mmd(324);n9c(239,324,{239:1,324:1,3:1,45:1,42:1},Yc);var Lvc=Mmd(239);n9c(681,324,{324:1,681:1,3:1,45:1,42:1},Zc);var Nvc=Mmd(681);n9c(172,10,{172:1,3:1,11:1,10:1},md);_.a=0;var $c,_c,ad,bd,cd,dd,ed,fd,gd,hd,jd,kd;var Pvc=Nmd(172,Q5c,nd);n9c(66,1,Hyd);_.cb=function(a){return qd(this,a)};_.eb=function(){rd(this)};_.fb=function(a){return td(this,a)};_.gb=function(a,b){ud(this,a,b)};_.f=true;var Qvc=Mmd(66);n9c(2112,1,Jyd,Ed);_.hb=function(a){this.a.eb()};var Rvc=Mmd(2112);n9c(2113,1,Kyd,Fd);_.ib=function(a){var b,c;b=a.f;c=a.a;c==Lyd?xe(this.a,a.b):c==Cyd?we(this.a,a.b):c==Byd?te(this.a,a.b):Hnd(Myd,c)||Hnd(Dyd,c)||Hnd(Eyd,c)?ve(this.a,b):c==Nyd?Ae(this.a,s9c(a.b),s9c(a.c)):c==Oyd?ye(this.a,a.b):c==null&&Be(this.a,b)};var Svc=Mmd(2113);n9c(2114,1,Jyd,Gd);_.hb=function(a){this.a.gb(Fyd,(qmd(),(1&wl(this.b).a)>0?true:false));this.a.eb()};var Tvc=Mmd(2114);n9c(2115,1,Kyd,Hd);_.ib=function(a){var b,c;b=a.f;c=a.a;c==Lyd?xe(this.a,a.b):c==Cyd?we(this.a,a.b):c==Fyd?De(this.a,a.b):c==Byd?te(this.a,a.b):Hnd(Myd,c)||Hnd(Dyd,c)||Hnd(Eyd,c)?ve(this.a,b):c==Nyd?Ee(this.a,a.b,s9c(a.c)):c==Oyd?ye(this.a,a.b):c==null&&Fe(this.a,b)};var Uvc=Mmd(2115);n9c(1892,1,Kyd,Qd);_.ib=function(a){if(!(Hnd(a.a,Fyd)||Hnd(a.a,Byd))){return}Id(this,a.f)};var Xvc=Mmd(1892);n9c(1893,1,{},Td);var Vvc=Mmd(1893);n9c(2109,66,{60:1,270:1,2329:1,12:1,19:1},Zd);_.db=function(){if(!this.a){return false}if(yd(this.a.c)){this.a.c.eb();return true}return false};_.fb=function(a){return Vd(this,a)};_.ib=function(a){!!this.a&&this.a.c==a.f&&sd(this,a.a,a.c,a.b)};_.jb=function(a){Xd(this);Ud(this);sd(this,null,null,this.a.c)};_.gb=function(a,b){Wd(this,a,b)};var Wvc=Mmd(2109);n9c(Pyd,1,{});_.Y=function(){return 'An event type'};var v5c=Mmd(Pyd);n9c(487,Pyd,{},ae);_.lb=function(a){a.kb(this)};_.mb=function(){return $d};var $d;var Yvc=Mmd(487);n9c(605,Pyd,{},de,ee);_.lb=function(a){a.ib(this)};_.mb=function(){return be};var be;var Zvc=Mmd(605);n9c(1894,1,Hyd,fe);_.cb=function(a){return this.a.cb(new ge(a,this))};_.eb=function(){this.a.eb();Sd(this.b,this)};_.fb=function(a){return this.a.fb(a)};_.gb=function(a,b){this.a.gb(a,b)};var _vc=Mmd(1894);n9c(1895,1,Kyd,ge);_.ib=function(a){this.b.ib(new de(this.a,a.a,a.c,a.b))};var $vc=Mmd(1895);n9c(2110,1,Kyd,qe);_.ib=function(a){var b;b=a.a;b==Lyd?me(this.b,a.b):b==Cyd?fg(this.b,a.b):b==Fyd?le(this.b,a.b):b==Byd?ie(this.b,a.b):Hnd(Myd,b)||Hnd(Dyd,b)||Hnd(Eyd,b)?ke(this.b,a.f):b==Nyd?oe(this.b,a.b,s9c(a.c)):b==Oyd?ne(this.b,a.b):b==null&&pe(this.b,this.a)};var awc=Mmd(2110);n9c(2197,1,Kyd,se);_.ib=function(a){bhd(this.b,re(this.a))};var bwc=Mmd(2197);n9c(973,1,{});var cwc=Mmd(973);n9c(2218,973,{},Ce);var dwc=Mmd(2218);n9c(2181,973,{},Ge);var ewc=Mmd(2181);n9c(1121,1,{},Je);_.nb=function(a){He(this,a)};var hwc=Mmd(1121);n9c(1122,1,{},Ke);_.nb=function(a){ONb(this.a,new Le(this.b,a))};var fwc=Mmd(1122);n9c(1123,1,{},Le);_.ob=function(a){Ie(this.b,new Me(a),this.a)};_.pb=function(a){Ie(this.b,new Ne(a),this.a)};var gwc=Mmd(1123);n9c(2309,1,{});var kwc=Mmd(2309);n9c(1685,2309,{},Me);_.nb=function(a){a.ob(this.a)};var iwc=Mmd(1685);n9c(1686,2309,{},Ne);_.nb=function(a){a.pb(this.a)};var jwc=Mmd(1686);n9c(807,1,{},Re);_.qb=function(a){Oe(this,a)};_.c=false;var nwc=Mmd(807);n9c(1389,1,{},Ue);var lwc=Mmd(1389);n9c(1388,1,Vyd,Ve);_.eb=function(){this.a.c=false;Pe(Te(this.a.a))};var mwc=Mmd(1388);var We,Xe,Ye,Ze;n9c(1197,1,{},_e);_.qb=function(a){wic((pic(),oic),a)};var owc=Mmd(1197);n9c(1198,1,{},af);_.qb=function(a){xic((pic(),oic),a)};var pwc=Mmd(1198);n9c(1085,1,Wyd,ff);_.sb=sMd;var qwc=Mmd(1085);n9c(743,1,Wyd,gf);_.sb=function(a){return bf(),undefined};var rwc=Mmd(743);n9c(1086,1,{},hf);_.ob=function(a){this.b.call(null,df(this.a.sb(a)))};_.pb=function(a){this.c.call(null,this.d.sb(a))};var swc=Mmd(1086);n9c(744,1,Wyd,jf);_.sb=sMd;var twc=Mmd(744);n9c(986,$wnd.Function,{},kf);_.rb=function(a,b){ef(this.b,this.c,this.a,a,b)};n9c(355,1,{},nf,pf);var uwc=Mmd(355);n9c(821,1,Xyd,xf);_.tb=function(a){wf(this,a)};_.d=0;var wwc=Mmd(821);n9c(822,1,Xyd,Af);_.tb=function(a){vf(this.a,a)};var vwc=Mmd(822);n9c(874,1,{},Df);_.ob=function(a){zf(this.b,a)};_.pb=function(a){Cf(this,a)};_.ub=function(a,b){this.a=a;this.b=b};var xwc=Mmd(874);n9c(2310,1,{});var Ef;var zwc=Mmd(2310);n9c(1713,2310,{},Jf);var Ff;var ywc=Mmd(1713);n9c(28,1,{31:1,28:1});_.vb=function(){return Sf(this)};_.wb=function(){return Tf(this)};_.xb=function(){return Rf(this)};_.yb=zMd;_.zb=function(a){ag(this,a)};_.Ab=function(a){gg(this,a)};_.Bb=function(a){hg(this,a)};_.Y=function(){if(!this.U){return '(null handle)'}return bjc((abd(),this.U))};var E4c=Mmd(28);var D3c=Omd();n9c(29,28,kzd);_.Cb=WMd;_.Db=tMd;_.Eb=tMd;_.Fb=function(a){qg(this,a)};_.Gb=function(){return this.P};_.Hb=function(){sg(this)};_.Ib=function(a){tg(this,a)};_.Jb=uMd;_.Kb=tMd;_.Lb=tMd;_.Mb=function(a){this.Q==-1?obd((abd(),this.U),a|(this.U.__eventBits||0)):(this.Q|=a)};_.P=false;_.Q=0;var R4c=Mmd(29);n9c(2276,29,lzd);_.Nb=function(a){zg(this,a)};_.Ob=function(a){throw I8c(new God('This panel does not support no-arg add()'))};_.Pb=function(){Bg(this)};_.Db=function(){Edd(this,(Cdd(),Add))};_.Eb=function(){Edd(this,(Cdd(),Bdd))};var S3c=Mmd(2276);n9c(64,2276,mzd,Fg,Gg,Hg);_.Ob=function(a){Cg(this,a)};_.Sb=function(){return abd(),this.U};_.Tb=function(){return this.O};_.Qb=function(){return new xid(this)};_.Rb=function(a){return Dg(this,a)};_.Ub=function(a){Eg(this,a)};var i4c=Mmd(64);n9c(488,64,mzd);_.Sb=function(){return Ig.Go(fbd((abd(),this.U)))};_.vb=function(){return Sf(this)};_.wb=function(){return Tf(this)};_.xb=function(){return Ig.Ho(fbd((abd(),this.U)))};_.Vb=function(){this.Wb(false)};_.Wb=function(a){Sg(this)};_.Xb=function(a){a.c&&false&&(a.a=true)};_.Lb=function(){this.M&&Mhd(this.L,false,true)};_.zb=function(a){this.v=a;Tg(this);a.length==0&&(this.v=null)};_.Yb=function(a){$g(this,a)};_.Ab=function(a){(abd(),this.U).style[nzd]=a?tzd:ozd;!!this.A&&(this.A.style[nzd]=a?tzd:ozd,undefined)};_.Ub=function(a){_g(this,a)};_.Bb=function(a){this.w=a;Tg(this);a.length==0&&(this.w=null)};_.Zb=function(){ah(this)};_.s=false;_.t=false;_.F=false;_.G=false;_.H=0;_.I=false;_.K=false;_.M=false;_.N=0;var Ig;var $3c=Mmd(488);n9c(630,488,mzd,fh);_.Xb=function(a){512==rbd(a.d)&&nlc(a.d)==27&&Sg(this)};var Bwc=Mmd(630);n9c(827,1,Bzd,gh);_.$b=function(a){Jg();Pj(this.a)};var Awc=Mmd(827);n9c(1398,1,{},lh);var Dwc=Mmd(1398);n9c(618,29,kzd);_._b=vMd;_.Ib=function(a){var b,c;b=rh(this,(abd(),(ujc(),tjc).An(a)));switch(zcd(a.type)){case 1:{(Sfd(),Rfd).Fo(this.U);!!b&&qh(this,b,true);break}case 16:{!!b&&wh(this,b,true);break}case 32:{!!b&&wh(this,null,false);break}case wzd:{Bh(this);break}case 128:{c=a.keyCode|0;Lsc();c=Zoc(c,false);switch(c){case 37:Ah(this);a.stopPropagation();tjc.Bn(a);break;case 39:zh(this);a.stopPropagation();tjc.Bn(a);break;case 38:yh(this);a.stopPropagation();tjc.Bn(a);break;case 40:xh(this);a.stopPropagation();tjc.Bn(a);break;case 27:this._b();a.stopPropagation();tjc.Bn(a);break;case 9:this._b();break;case 13:if(!Bh(this)){qh(this,this.i,true);a.stopPropagation();tjc.Bn(a)}}break}}tg(this,a)};_.Jb=uMd;_.c=false;_.e=true;_.j=false;var M3c=Mmd(618);n9c(1399,618,kzd);_.ac=vMd;_._b=function(){this.ac()};var L3c=Mmd(1399);n9c(1400,1399,kzd,Hh);_.ac=function(){Ch(this,null);Sg(this.a.c)};var Cwc=Mmd(1400);n9c(1334,1,{},Kh);var Owc=Mmd(1334);n9c(1340,1,{2335:1,13:1},Mh);_.bc=function(a){this.a.c=a.a.b;Sg(this.a.b)};var Ewc=Mmd(1340);n9c(1341,1,Hzd,Nh);_.cc=function(a){if(nlc(a.a)==27){this.b.d.Vb();Sg(this.a.b)}};var Fwc=Mmd(1341);n9c(1342,1,{1003:1,13:1},Oh);_.dc=function(a){Wh(this.a)};var Gwc=Mmd(1342);n9c(1343,1,Izd,Ph);_.eb=function(){wic((pic(),oic),new Qh(this,this.b))};var Iwc=Mmd(1343);n9c(1344,1,Izd,Qh);_.eb=function(){sl(this.a.a.a.a);Aid(this.a.a.a,this.b);Cid(this.a.a.a)};var Hwc=Mmd(1344);n9c(1338,1,Bzd,Sh);_.$b=function(a){Rh(this)};var Jwc=Mmd(1338);n9c(1335,1,{},Th);_.ec=function(a,b){var c,d,e,f;c=-b/3|0;e=this.b+c;d=(Zbd(),Ykc($doc));e=ai(e,a,d,Vkc($doc)+d);f=this.c-(b/2|0);Zg(this.a.b,e,f)};_.b=0;_.c=0;var Kwc=Mmd(1335);n9c(1337,1,Bzd,Uh);_.$b=function(a){Zld(this.b.a);Rh(this.a)};var Lwc=Mmd(1337);n9c(1336,1,{},Xh);var Nwc=Mmd(1336);n9c(1339,1,Izd,Yh);_.eb=function(){Vh(this.a)};var Mwc=Mmd(1339);n9c(2111,1,{},_h);_.ec=function(a,b){Zg(this.a,ai(this.b,a,(Zbd(),Ykc($doc)),Vkc($doc)+Ykc($doc)),$h(this,b))};_.b=0;_.c=0;var Pwc=Mmd(2111);n9c(955,1,{},ei);var Swc=Mmd(955);n9c(2103,1,{},gi);_.fc=function(){return this.b0&&tjc.wn(a)==1&&this.ad()}break;case 64:this.k&&tjc.Bn(a);break;case 32:c=$ad.$n(a);if(Oic(this.U,tjc.An(a))&&(!c||!Oic(this.U,c))){this.k&&this.bd();!this.d&&Cl(this,this.o);(2&this.d.a)>0&&Nl(this)}break;case 16:if(Oic(this.U,tjc.An(a))){!this.d&&Cl(this,this.o);(2&this.d.a)<=0&&Nl(this);this.k&&this.cd()}break;case 4096:if(this.n){this.n=false;this.bd()}break;case 8192:if(this.k){this.k=false;this.bd()}}tg(this,a);if((zcd(a.type)&896)!=0){b=(a.keyCode|0)&hyd;switch(d){case 128:if(b==32){this.n=true;this.cd()}break;case 512:if(this.n&&b==32){this.n=false;this.ad()}break;case 256:if(b==10||b==13){this.cd();this.ad()}}}};_.ad=function(){Al(this)};_.bd=tMd;_.cd=tMd;_.Jb=function(){ug(this);vl(this);!this.d&&Cl(this,this.o);(2&this.d.a)>0&&Nl(this)};_._c=function(a){ljc((Sfd(),abd(),this.U),a)};_.c=false;_.k=false;_.n=false;var O2c=Mmd(266);n9c(209,266,oAd,Vl,Wl,Xl);_.ad=function(){var a,b;b=(!this.d&&Cl(this,this.o),this.d.a^1);a=yl(this,b);Cl(this,a);Al(this);Zt(this,(qmd(),!this.d&&Cl(this,this.o),(1&this.d.a)>0?true:false))};_.dd=function(a){Tl(this,a)};var Rl='gwt-ToggleButton';var D4c=Mmd(209);n9c(694,209,{714:1,95:1,36:1,24:1,35:1,31:1,21:1,209:1,28:1,29:1},Zl);_.Uc=AMd;_.Vc=function(a){Yl(this,a)};var Sxc=Mmd(694);n9c(2067,Uzd,lAd,cm);_.Uc=function(){return this.b.Uc()};_.Vc=function(a){am(this);this.b.Vc(a);$l(this);bm(this,!!this.b.Uc()&&Ad(this.b.Uc()))};var Vxc=Mmd(2067);n9c(2068,1,pAd,em);_.ed=function(a){a.a&&_l(this.a)};var Txc=Mmd(2068);n9c(2069,1,Kyd,fm);_.ib=function(a){a.a==Gyd&&_l(this.a)};var Uxc=Mmd(2069);n9c(2216,1,qAd);var Xxc=Mmd(2216);n9c(2217,2216,qAd,hm);_.Cb=AMd;var Wxc=Mmd(2217);n9c(2175,1,Jyd,lm);_.hb=function(a){Sg(this.a)};var Yxc=Mmd(2175);n9c(600,488,mzd,nm);_.Pb=function(){Bg(this.q)};_.Db=function(){sg(this.q)};_.Eb=function(){ug(this.q)};_.Tb=function(){return this.q.O};_.Qb=function(){return new xid(this.q)};_.Rb=function(a){return Dg(this.q,a)};_.Ub=function(a){mm(this,a)};var S2c=Mmd(600);n9c(762,600,mzd);_.Db=function(){try{sg(this.q)}finally{sg(this.e)}};_.Eb=function(){try{ug(this.q)}finally{ug(this.e)}};_.Wb=function(a){rm(this,a)};_.Ib=function(a){switch(abd(),zcd((ujc(),a).type)){case 4:case 8:case 64:case 16:case 32:if(!this.n&&!sm(this,a)){return}}tg(this,a)};_.Xb=function(a){wm(this,a)};_.Zb=function(){xm(this)};_.f=0;_.i=0;_.j=0;_.k=0;_.n=false;_.p=0;var X2c=Mmd(762);n9c(103,762,mzd,Am,Bm);_.fd=function(){this.Vb()};_.Xb=function(a){var b;wm(this,a);!a.a&&(b=a.d,rbd(a.d)==1&&nt((ujc(),tjc).An(b),Rf(this.c))||rbd(a.d)==128&&((ujc(),b).keyCode|0)==27)&&this.fd()};var Zxc=Mmd(103);n9c(1886,1,{714:1,21:1},Hm);_.Cb=BMd;_.Uc=AMd;_.Vc=function(a){if(!a){Em(this,null)}else{throw I8c(new and)}};_.c=false;var cyc=Mmd(1886);n9c(1888,209,oAd,Lm);_.dd=function(a){Km(this,a)};var $xc=Mmd(1888);n9c(1889,1,Vyd,Nm);_.eb=function(){Mm(this)};var _xc=Mmd(1889);n9c(1890,1,Jyd,Om);_.hb=function(a){var b,c;if(ilc(a.a)==1){c=false;b=Vd(this.a.a,Fyd);b!=null&&(c=b);Km(this.a.b,c)}};var ayc=Mmd(1890);n9c(1887,1,{339:1,575:1,1001:1,574:1,13:1},Pm);_.oc=function(a){ilc(a.a)==1&&(this.a.c=true)};_.qc=CMd;_.rc=CMd;_.sc=function(a){ilc(a.a)==1&&Dm(this.a,soc(a),toc(a))};var byc=Mmd(1887);n9c(1471,1,{31:1},Rm);_.a=0;var dyc=Mmd(1471);n9c(273,10,{273:1,3:1,11:1,10:1},Ym);var Sm,Tm,Um,Vm,Wm;var eyc=Nmd(273,Q5c,Zm);var $m;n9c(1687,Uzd,Wzd,jn);_.uc=function(a,b){en(this,a,b)};_.b=-1;_.d=-1;var jyc=Mmd(1687);n9c(316,10,xAd,on);_.gd=DNd;var kn,ln,mn;var hyc=Nmd(316,Q5c,pn);n9c(1688,316,xAd,qn);_.gd=function(a,b,c){var d;d=b.S;d.c=c+dzd;!!d.d&&(d.d.style[czd]=d.c,undefined)};var fyc=Nmd(1688,hyc,null);n9c(1689,316,xAd,rn);_.gd=function(a,b,c){var d;d=b.S;d.f=c+dzd;!!d.d&&(d.d.style[ezd]=d.f,undefined)};var gyc=Nmd(1689,hyc,null);n9c(363,1,{363:1},zn);_.b=false;_.c=0;var iyc=Mmd(363);n9c(2046,600,mzd);var R2c=Mmd(2046);n9c(942,2046,{942:1,36:1,24:1,35:1,31:1,71:1,79:1,21:1,64:1,28:1,29:1,39:1},Fn);_.Yb=function(a){$g(this,new Gn(this,a))};var lyc=Mmd(942);n9c(2047,1,{},Gn);_.ec=function(a,b){var c;c=Bn(this.b);Cn(this.b,c-An(this.b));Dn(this.b);yhd(this.a,a,$wnd.Math.min(b,c))};var kyc=Mmd(2047);n9c(2313,1,{});var o4c=Mmd(2313);n9c(678,2313,{});_.hd=function(){return Hn()};_.a=true;_.b=null;var n4c=Mmd(678);n9c(927,678,{},Nn);_.hd=function(){var a;a=new Fn;(Jg(),Ig).Ho(fbd((abd(),a.U))).className=AAd;Xg(a,(Fhd(),Ehd));return a};var myc=Mmd(927);n9c(1805,1,pAd,On);_.ed=function(a){wic((pic(),oic),new Qn(this))};var oyc=Mmd(1805);n9c(1806,1,Izd,Qn);_.eb=function(){sl(this.a.a)};var nyc=Mmd(1806);n9c(2018,1,qAd,Vn);_.Cb=AMd;var pyc=Mmd(2018);n9c(780,Uzd,Wzd,Xn);_.uc=function(a,b){a>=0&&((abd(),this.U).style[ezd]=a+dzd,undefined);b>=0&&((abd(),this.U).style[czd]=b+dzd,undefined);this.a.uc(a,b)};var qyc=Mmd(780);n9c(350,1,{350:1,21:1},co,eo);_.Cb=DMd;_.a=false;var Lyc=Mmd(350);n9c(1690,1,qAd,mo);_.Cb=IMd;_.a=false;_.d=false;_.o=0;var fo=0,go=0;var Kyc=Mmd(1690);n9c(399,2276,lzd);_.Qb=function(){return new Ljd(this.i)};_.Rb=function(a){return vo(this,a)};var K2c=Mmd(399);n9c(255,399,lzd,zo);_.Nb=function(a){zg(this,a)};_.Ob=function(a){yo(this,a)};_.Pb=function(){try{so(this)}finally{Pic((abd(),this.U))}};var j3c=Mmd(255);n9c(875,255,lzd,Ao);_.Ob=function(a){oo(this,a,(abd(),this.U));lo(this.a,0)};var Byc=Mmd(875);n9c(1698,1,DAd,Bo);_.sc=EMd;var ryc=Mmd(1698);n9c(1699,1,EAd,Co);_.jc=EMd;var syc=Mmd(1699);n9c(1700,1,FAd,Do);_.kc=EMd;var tyc=Mmd(1700);n9c(1701,1,GAd,Eo);_.oc=function(a){$o(this.a.k)};var uyc=Mmd(1701);n9c(1702,1,HAd,Fo);_.mc=function(a){qlc(a.a).length==1&&$o(this.a.k)};var vyc=Mmd(1702);n9c(1703,1,IAd,Go);_.qc=FMd;var wyc=Mmd(1703);n9c(1704,1,DAd,Ho);_.sc=FMd;var xyc=Mmd(1704);n9c(1705,1,EAd,Io);_.jc=FMd;var yyc=Mmd(1705);n9c(1706,1,FAd,Jo);_.kc=FMd;var zyc=Mmd(1706);n9c(877,1,Izd,Ko);_.eb=function(){var a,b;if(this.a.d){a=$wnd.Math.max($wnd.Math.min($wnd.Math.max(0,parent.innerHeight),5000)-(ho(),go),0);ag(this.a.n,a+dzd);Rf(this.a.i).style[czd]=$wnd.Math.max(a-go,0)+(tnc(),dzd)}else{b=zad();this.a.a||(b-=2*(ho(),go));hg(this.a.n,$wnd.Math.max(b,0)+dzd);Rf(this.a.i).style[ezd]=$wnd.Math.max(b-(ho(),go),0)+(tnc(),dzd)}lo(this.a,0)};var Ayc=Mmd(877);n9c(611,399,lzd);var H2c=Mmd(611);var mgd,ngd,ogd,pgd;var sgd,tgd,ugd;n9c(113,611,lzd,Wo);_.Nb=qPd;_.Ob=function(a){Qo(this,a)};_.Rb=function(a){return To(this,a)};var x3c=Mmd(113);n9c(876,113,lzd,Xo);_.Ob=function(a){Qo(this,a);lo(this.a,0)};var Cyc=Mmd(876);n9c(1691,221,{},Zo);_.ic=function(){Yo(this)};var Dyc=Mmd(1691);n9c(1692,221,{},_o);_.ic=function(){$o(this)};var Eyc=Mmd(1692);n9c(1693,1,NAd,ap);_.jd=function(a){ko(this.a)};var Fyc=Mmd(1693);n9c(1694,1,OAd,bp);_.kd=function(a){var b;if(a.a.deltaY==0){return}tlc(a.a);!!a.a&&slc(a.a);b=qvc(snd(a.a.deltaY));lo(this.a,this.a.o-b*(ho(),fo))};var Gyc=Mmd(1694);n9c(1695,1,GAd,cp);_.oc=function(a){Yo(this.a.f)};var Hyc=Mmd(1695);n9c(1696,1,HAd,dp);_.mc=function(a){qlc(a.a).length==1&&Yo(this.a.f)};var Iyc=Mmd(1696);n9c(1697,1,IAd,ep);_.qc=EMd;var Jyc=Mmd(1697);n9c(1292,2291,Qzd,jp);_.jc=GMd;_.kc=GMd;_.lc=function(a){var b,c;if(!!this.e&&!!this.e.e&&!!this.b){c=hp(rlc(a.a));if(c){b=new qad(Ojc((ujc(),c).clientX||0),Ojc(c.clientY||0));if(this.a>Fk(this.b,b)){return}}}fp(this)};_.mc=function(a){ip(this,hp(rlc(a.a)))};_.a=0;var Nyc=Mmd(1292);n9c(1293,221,{},np);_.ic=function(){gp(this.a)};var Myc=Mmd(1293);var op;var F1c=Omd();n9c(1761,1,PAd,qp);_.Ic=function(){return 'getSource'};_.ld=function(){return pp()};var Oyc=Mmd(1761);n9c(432,1,qAd,tp);_.Cb=AMd;var Qyc=Mmd(432);var up;n9c(1973,1,fAd,wp);_.Ic=function(){return 'listpanel'};_.a=false;var Pyc=Mmd(1973);n9c(2032,1,qAd);_.md=function(){return Bp(this),Kp(this.c)};_.Cb=KMd;_.e=-1;var Uyc=Mmd(2032);n9c(2035,1,Jyd,Lp);_.hb=function(a){var b;b=ufd(this.a.b,a);if(b.a==2){wic((pic(),oic),new Mp(this,b))}else{Hp(this.a,this.a.e);this.a.e!=b.a&&Ap(this.a,b.b)}};var Syc=Mmd(2035);n9c(2036,1,Izd,Mp);_.eb=function(){zp(this.a.a,this.b.b)};var Ryc=Mmd(2036);var Np,Op,Pp;n9c(2145,1,fAd,Rp);_.Ic=function(){return 'listview'};_.a=false;var Tyc=Mmd(2145);n9c(1800,1,{},Wp);_.a=false;var Vyc=Mmd(1800);n9c(1469,Uzd,Vzd,Yp);var Xp;var Yyc=Mmd(1469);n9c(1470,64,mzd,Zp);var Wyc=Mmd(1470);var $p,_p;n9c(1563,1,fAd,bq);_.Ic=EOd;_.a=false;var Xyc=Mmd(1563);n9c(1828,Uzd,Vzd,jq);var _yc=Mmd(1828);n9c(1829,1,{85:1,1003:1,13:1},kq);_.hb=function(a){var b;b=a.f;if(b==this.a.a){this.a.b.zo()}else if(b==this.a.d){this.a.b.Ao()}else if(b==this.a.j){this.a.b.xo()&&this.a.b.Co();this.a.b.Bo()}else if(b==this.a.k){this.a.b.wo()&&this.a.b.Bo();this.a.b.Co()}else b==this.a.f?this.a.b.yo():b==this.a.n&&bh(hq(this.a),this.a.n);iq(this.a)};_.dc=function(a){var b;b=a.f;b==this.a.i&&iq(this.a)};var Zyc=Mmd(1829);n9c(1830,1,{},nq);var $yc=Mmd(1830);n9c(2161,1,Jyd,pq);_.hb=function(a){lq(this.a,this.b.a)};var azc=Mmd(2161);n9c(58,10,{58:1,3:1,11:1,10:1},lr);var qq,rq,sq,tq,uq,vq,wq,xq,yq,zq,Aq,Bq,Cq,Dq,Eq,Fq,Gq,Hq,Iq,Jq,Kq,Lq,Mq,Nq,Oq,Pq,Qq,Rq,Sq,Tq,Uq,Vq,Wq,Xq,Yq,Zq,$q,_q,ar,br,cr,dr,er,fr,gr,hr,ir,jr;var bzc=Nmd(58,Q5c,mr);n9c(257,10,{257:1,3:1,11:1,10:1},yr);_.a=false;var rr,sr,tr,ur,vr,wr;var czc=Nmd(257,Q5c,Ar);n9c(1092,1,{},Ir);var dzc=Mmd(1092);var Jr=0;n9c(2260,1,YAd);_.od=function(a){throw I8c(new God('Add not supported on this collection'))};_.pd=function(a){return Lr(this,a)};_.qd=function(a){return Mr(this,a,false)};_.rd=function(a){return Nr(this,a)};_.sd=zPd;_.td=function(a){return Mr(this,a,true)};_.ud=function(a){return Or(this,a)};_.wd=function(){return this.xd(suc(_5c,lyd,1,this.vd(),5,1))};_.xd=function(a){return Qr(this,a)};_.Y=function(){return Rr(this)};var o6c=Mmd(2260);var E7c=Omd();n9c(2261,2260,ZAd);_.Fd=LPd;_.yd=function(a,b){throw I8c(new God('Add not supported on this list'))};_.od=function(a){this.yd(this.vd(),a);return true};_.V=function(a){return Sr(this,a)};_.X=function(){return _rd(this)};_.Ad=function(a){return Tr(this,a)};_.Qb=function(){return new Zqd(this)};_.Bd=function(){return this.Cd(0)};_.Cd=function(a){return new $qd(this,a)};_.Dd=function(a){throw I8c(new God('Remove not supported on this list'))};_.Ed=function(a,b){throw I8c(new God('Set not supported on this list'))};_.Gd=function(a,b){return new _qd(this,a,b)};var v6c=Mmd(2261);n9c(7,2261,$Ad,es,fs,gs);_.yd=function(a,b){Vr(this,a,b)};_.od=function(a){return Wr(this,a)};_.pd=function(a){return Xr(this,a)};_.qd=function(a){return this.Ad(a)!=-1};_.zd=function(a){return Yr(this,a)};_.Ad=function(a){return Zr(this,a,0)};_.sd=function(){return this.a.length==0};_.Qb=function(){return new Frd(this)};_.Dd=function(a){return $r(this,a)};_.td=function(a){return _r(this,a)};_.Ed=function(a,b){return as(this,a,b)};_.vd=bOd;_.Fd=function(a){bs(this,a)};_.wd=function(){return cs(this)};_.xd=HMd;var N6c=Mmd(7);n9c(16,7,$Ad,is,js);_.Ad=function(a){return hs(this,a)};var ezc=Mmd(16);n9c(967,1,{},ks);var fzc=Mmd(967);n9c(1839,1,{},os);_.Hd=function(a){return ns(a)};var gzc=Mmd(1839);n9c(1758,1,{},ss);_.Sc=function(){return qs(this)};_.Rc=function(){return ps(this)};_.Tc=zMd;_.a=0;var hzc=Mmd(1758);var Cs=null;var Fs=0,Gs=0,Hs,Is,Js,Ks,Ls=0,Ms=false,Ns=false;n9c(909,1,{},Rs);_.Y=function(){return this.a+'.'+this.b+'.'+this.c};_.a=0;_.b=0;_.c=0;var izc=Mmd(909);var Ss;n9c(_Ad,1,{});var Q1c=Mmd(_Ad);n9c(1982,_Ad,{},Ys);_.Id=function(a){return Ws(a)};var jzc=Mmd(1982);n9c(539,1,{},$s);_.md=AMd;var kzc=Mmd(539);n9c(1111,1,{});_.ob=wMd;_.pb=function(a){at(this.a,a)};var lzc=Mmd(1111);n9c(276,1,{},ct);var nzc=Mmd(276);n9c(484,10,{484:1,3:1,11:1,10:1},ht);var et,ft;var mzc=Nmd(484,Q5c,it);n9c(391,1,aBd,jt);_.Qb=function(){return new kt(this.a)};var ozc=Mmd(391);n9c(342,1,{},kt);_.Rc=function(){return this.b2||a.d.Ml().vd()>2){b=kv(a,a.c);d=kv(a,a.d);if(b==(dv(),bv)&&d==cv||b==cv&&d==bv){return av}if(b==bv&&d==av||b==av&&d==bv){return cv}}g=lv(a);if(g.a.vd()==0){return dv(),bv}rv(a)?(c=(dv(),cv)):(c=(dv(),av));for(f=(j=(new ard(g.a)).a.mp().Qb(),new brd(j));f.a.Rc();){e=(h=f.a.Sc(),h.yp());if(c==wv(a,e)){return c}}return c==(dv(),cv)?av:cv}}};var gv=0.05;var Xzc=Mmd(497);n9c(1298,1,{},Bv);_.a=0;var Wzc=Mmd(1298);n9c(1094,1,{},Ev);_.me=function(a,b){return Dv(a,b)};var Yzc=Mmd(1094);n9c(1680,1,{},Fv);_.me=function(a,b){return _Vb(b,Abc(a))};var Zzc=Mmd(1680);n9c(697,45,{697:1,3:1,45:1,42:1},Gv);var $zc=Mmd(697);n9c(597,1127,{2365:1,194:1,24:1},nw,ow);_.Yd=function(){return this.a.j.e.b};_.Zd=function(){Ov(this,(Lz(),Jz));this.w.Hf()};_.$d=function(a){return fw(this,a)};_._d=function(a){return gw(this,a)};_.ae=function(a){return hw(this,a)};_.be=function(a){return iw(this,a)};_.ce=function(a){return jw(this,a)};_.f=false;var cAc=Mmd(597);n9c(1128,1,{},ww);var aAc=Mmd(1128);n9c(1129,1,{},xw);_.qe=function(){rw(this.a);ZHb(this.a.a.a,null)};var _zc=Mmd(1129);n9c(591,1,{},Nw);_.re=CNd;_.se=cPd;_.te=IMd;_.ue=OOd;_.ve=POd;_.we=FOd;_.xe=NNd;_.ye=QOd;_.ze=JMd;_.Ae=aOd;_.Be=VOd;_.Ce=SOd;_.e=qBd;_.i=false;_.k=true;_.o=true;_.p=false;_.q=true;_.r=true;_.s=false;_.t=false;_.u=true;var bAc=Mmd(591);n9c(1514,fBd,{},Qw);_.Vd=function(a){a.De(this)};_.Wd=function(){return Ow};var Ow;var dAc=Mmd(1514);n9c(1206,1,{},Zw);var fAc=Mmd(1206);n9c(1207,1,{},$w);_.md=UNd;var eAc=Mmd(1207);n9c(126,1,{},fx);var iAc=Mmd(126);n9c(1555,1,{2384:1},jx);_.md=KMd;var hAc=Mmd(1555);n9c(153,1,{153:1,243:1,105:1,123:1});_.Ee=LMd;_.Fe=MMd;_.Ge=NMd;_.He=OMd;_.Ie=PMd;_.Je=QMd;_.Ke=RMd;_.Le=dOd;_.Me=eOd;_.Ne=fOd;_.Oe=gOd;_.Pe=hOd;_.Qe=iOd;_.Re=jOd;_.Se=function(){return dsd(this.B)};_.Te=function(){return dsd(this.C)};_.Ue=function(){return !!this.v};_.sd=function(){return Sx(this)};_.Ve=SMd;_.We=function(a){return _r(this.s,a)};_.Xe=function(a){return _r(this.A,a)};_.Ye=function(a){return Or(this.A,a)};_.Ze=TMd;_.$e=function(a){return $x(this,a)};_._e=function(a){this.v=a};var jWc=Mmd(153);n9c(30,153,rBd,By,Cy);_.af=function(a){return lx(this,a)};_.Ee=LMd;_.Fe=MMd;_.bf=function(a){return ox(this,a)};_.Ge=NMd;_.cf=function(a){return qx(this,a)};_.He=OMd;_.df=function(a){return sx(this,a)};_.Ie=PMd;_.ef=function(a){return ux(this,a)};_.ff=function(a){return vx(this,a)};_.Je=QMd;_.gf=function(a){return xx(this,a)};_.hf=function(a){return yx(this,a)};_.Ke=RMd;_.jf=function(a){return Ax(this,a)};_.kf=function(a){return Bx(this,a)};_.lf=function(a){return Cx(this,a)};_.Ve=SMd;_.We=function(a){return qy(this,a)};_.Xe=function(a){return sy(this,a)};_.Ye=function(a){return ty(this,a)};_.Ze=TMd;_.mf=function(a){return Yx(this,a)};_.nf=function(a){return Zx(this,a)};_.$e=function(a){return $x(this,a)};_.of=function(a){return _x(this,a)};_.pf=function(a){return ay(this,a)};_.qf=function(a){return yy(this,a)};var UWc=Mmd(30);n9c(800,30,rBd);_.af=function(a){return Iy(this,a)};_.Ee=function(a){return Jy(this,a)};_.Fe=function(a){return Ky(this,a)};_.bf=function(a){return Ly(this,a)};_.Ge=function(a){return My(this,a)};_.cf=function(a){return Ny(this,a)};_.df=function(a){return Oy(this,a)};_.Ie=function(a){return Py(this,a)};_.ef=function(a){return Qy(this,a)};_.ff=function(a){var b;b=vx(this,a);b&&this.rf();return b};_.Je=function(a,b){var c,d,e,f,g;g=false;if(a){for(d=a.Qb();d.Rc();){c=d.Sc();g=g|Jy(this,c)}}if(b){for(f=b.Qb();f.Rc();){e=f.Sc();g=g|Ky(this,e)}}g&&this.rf();return g};_.gf=function(a){var b;b=xx(this,a);b&&this.rf();return b};_.hf=function(a){var b;b=yx(this,a);b&&this.rf();return b};_.jf=function(a){var b;b=Ax(this,a);b&&this.rf();return b};_.kf=function(a){var b;b=Bx(this,a);b&&this.rf();return b};_.lf=function(a){var b;b=Cx(this,a);b&&this.rf();return b};_.rf=tMd;_.Ve=function(a){return Ty(this,a)};_.Ye=function(a){var b;b=Or(this.A,a);b&&this.rf();return b};_.Ze=function(a,b){var c;c=Xx(this,a,b);c&&this.rf();return c};_.mf=function(a){var b;b=Or(this.q,a);b&&this.rf();return b};_.nf=function(a){var b;b=Zx(this,a);b&&this.rf();return b};_.of=function(a){var b;b=Or(this.w,a);b&&this.rf();return b};_.pf=function(a){var b;b=Or(this.B,a);b&&this.rf();return b};_.qf=function(a){var b;b=Or(this.C,a);b&&this.rf();return b};var sAc=Mmd(800);n9c(1556,800,rBd,_y);_.rf=function(){Pv(this.a.c.c)};var gAc=Mmd(1556);n9c(1379,800,rBd,dz);_.cf=function(a){return az(this,a)};_.rf=function(){this.b||vqc(this.a,new eF,this)};_.b=false;var jAc=Mmd(1379);n9c(249,10,{249:1,3:1,11:1,10:1},jz);var ez,fz,gz,hz;var kAc=Nmd(249,Q5c,lz);var mz;n9c(120,10,{120:1,3:1,11:1,10:1},tz);var oz,pz,qz,rz;var lAc=Nmd(120,Q5c,vz);var wz;n9c(771,1,Wyd,yz);_.sb=function(a){return dsd(a.n).b.vd()>0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))&&!dsd(a.t).a.sd()&&xWb(a,B$b(new F$b,dsd(a.t)).a),null};var mAc=Mmd(771);n9c(302,10,{302:1,3:1,11:1,10:1},Fz);var zz,Az,Bz,Cz,Dz;var nAc=Nmd(302,Q5c,Gz);n9c(217,10,{217:1,3:1,11:1,10:1},Mz);var Hz,Iz,Jz,Kz;var oAc=Nmd(217,Q5c,Nz);n9c(1383,1,{},Sz);var qAc=Mmd(1383);n9c(801,1,{},Tz);_.Cf=AMd;_.Df=UMd;_.Ef=VMd;_.Ff=function(){return 13*this.b};_.Gf=FNd;_.b=0;var pAc=Mmd(801);n9c(1382,1,{},Uz);_.Hf=function(){Uv(this.a)};_.If=function(a){this.a=a};var rAc=Mmd(1382);n9c(769,1,{},Wz);_.c=false;_.i=0;var tAc=Mmd(769);n9c(624,1,{},Yz);var uAc=Mmd(624);var xAc=Omd();n9c(2079,1,{},bA);var wAc=Mmd(2079);n9c(218,10,{218:1,3:1,11:1,10:1},lA);var cA,dA,eA,fA,gA,hA,iA,jA;var yAc=Nmd(218,Q5c,mA);n9c(2312,1,{});var zAc=Mmd(2312);var PEc=Omd();n9c(wBd,1,xBd);_.eb=function(){this.Tf()};_.Sf=WMd;_.Tf=tMd;_.Uf=tMd;var AAc=Mmd(wBd);n9c(283,wBd,xBd);_.eb=function(){nA(this)};_.Sf=function(){return zC(this.o,this)};_.Tf=function(){this.n.eb();this.Vf()};_.Uf=function(){oA(this)};var rBc=Mmd(283);n9c(663,283,xBd,sA);_.Vf=function(){var a;a=IVb(this.o.C,this.a,(s6b(),m6b),(O1b(),M1b));!!this.b&&tx(this.b,a)};_.Wf=function(){var a;if(!this.a.Re().a.sd()){a=ssd(this.a.Re(),this.a.Re().b.vd()-1);!!this.b&&sy(this.b,a);tWb(this.o.C,a)}};_.Xf=function(){return new YB(this.o)};var BAc=Mmd(663);n9c(1837,wBd,xBd,uA);_.Tf=function(){var a,b;for(b=new Vqd((new Sqd(this.d)).a);b.b;){a=Uqd(b);i0b(a.yp(),a.Ok().Me(),a.Ok().Ne());ty(a.yp(),a.Ok().Re())}b0b(this.b,dsd(this.a.r),dsd(this.a.s));vx(this.b,dsd(this.a.A))};_.Uf=function(){var a,b;for(b=new Vqd((new Sqd(this.d)).a);b.b;){a=Uqd(b);b0b(a.yp(),a.Ok().Me(),a.Ok().Ne());vx(a.yp(),a.Ok().Re());lsd(dsd(this.c.C.v),a.yp())||DVb(this.c.C,a.yp())}i0b(this.b,dsd(this.a.r),dsd(this.a.s));ty(this.b,dsd(this.a.A))};var CAc=Mmd(1837);n9c(381,wBd,xBd,vA);_.Tf=cNd;_.Uf=bNd;var DAc=Mmd(381);n9c(2150,wBd,xBd,xA);_.Tf=function(){var a,b,c,d,e,f;DA(this.a);for(e=this.d.Ne().Qb();e.Rc();){d=e.Sc();f=EE(this.b,d.k,gWb(this.c,d));if(!!f&&d.o!=f){GA(this.a,d);d.o!=f&&(d.i=false);yTb(d,f)}}for(b=this.d.Me().Qb();b.Rc();){a=b.Sc();c=mnd(FE(this.b,a._l(),fWb(this.c,a)));if(!!c&&a.Ol()!=c.a){FA(this.a,a);a.jm(c.a)}}this.e.w.Hf()};_.Uf=function(){if(!CA(this.a)){EA(this.a);return}};var EAc=Mmd(2150);n9c(323,283,xBd);_.Xf=function(){return new AB(this.o,vuc(quc(PEc,1),ABd,38,0,[this.d]))};_.f=false;var FAc=Mmd(323);n9c(964,1,{},HA);var KAc=Mmd(964);n9c(702,1,{});_.qe=function(){IA(this)};var HAc=Mmd(702);n9c(2147,702,{},LA);_.Yf=function(a){return a.Lh()};_.Zf=function(a){a.yp().mm(a.Ok())};var GAc=Mmd(2147);n9c(2149,702,{},MA);_.Yf=AOd;_.Zf=function(a){O2b(a.yp(),a.Ok())};var IAc=Mmd(2149);n9c(2148,702,{},NA);_.Yf=BOd;_.Zf=function(a){a.yp().ym(a.Ok())};var JAc=Mmd(2148);n9c(328,323,xBd,OA);_.Vf=function(){zWb(this.o.C,this.c,this.b);Ry(this.o.A)};_.Wf=function(){zWb(this.o.C,this.b,this.c);Qu(this.o,this.a)};var LAc=Mmd(328);n9c(326,323,xBd,PA,QA);_.Vf=function(){var a,b,c,d,e;Qu(this.o,this.b);e=new es;b=this.o.A;for(d=new Vqd((new Sqd(this.a)).a);d.b;){c=Uqd(d);a=c.yp();Ex(b,a)&&Wr(e,c.Ok());zWb(this.o.C,a,c.Ok())}Ou(this.o,x$b(new F$b,e).a)}; +_.Wf=function(){var a,b,c,d;for(c=new Vqd((new Sqd(this.a)).a);c.b;){b=Uqd(c);a=b.yp();d=b.Ok();zWb(this.o.C,d,a)}Qu(this.o,this.b)};var MAc=Mmd(326);n9c(969,323,xBd,SA);_.Vf=function(){RA(this)};_.Wf=function(){this.n=new AB(this.o,vuc(quc(PEc,1),ABd,38,0,[this.d]));this.n.eb();RA(this);Qu(this.o,this.b)};var NAc=Mmd(969);n9c(2030,283,xBd,TA);_.Xf=function(){var a;return a=new es,Wr(a,new HD(this.o)),Wr(a,new YB(this.o)),Wr(a,new YC(this.o,this.o.C,y$b(new F$b,this.a).a)),new AB(this.o,ds(a,suc(PEc,ABd,38,a.a.length,0,1)))};_.Vf=function(){yB(this.b)};_.Wf=function(){zB(this.b)};var OAc=Mmd(2030);n9c(540,wBd,xBd,VA);_.Tf=function(){if(!UA(this)&&!Sx(this.c)){this.a=new WWb(UVb(this.d));this.b?NWb(UVb(this.d),this.c):TWb(UVb(this.d),this.c)}};_.Uf=function(){UA(this)};_.b=false;var PAc=Mmd(540);var WA;n9c(2100,1,{},bB);var QAc=Mmd(2100);n9c(937,323,xBd,cB);_.Vf=function(){this.a.Tf()};_.Wf=function(){this.a.Uf()};_.Xf=dNd;var SAc=Mmd(937);n9c(938,1,{},lB);_.Yf=function(a){return a.xm()};_.$f=function(a,b){a.ym(b)};var RAc=Mmd(938);n9c(2099,wBd,xBd,mB);_.Tf=function(){mXb(this.a,this.b)};_.Uf=function(){mXb(this.a,this.c)};var TAc=Mmd(2099);n9c(2214,wBd,xBd,nB);_.Tf=function(){oXb(this.a,this.b)};_.Uf=function(){oXb(this.a,this.c)};_.b=0;_.c=0;var UAc=Mmd(2214);n9c(348,wBd,xBd,oB,pB);_.Tf=function(){dw(this.d,this.c);HWb(this.d.C);this.d.w.Hf()};_.Uf=function(){dw(this.d,this.b);Qu(this.d,this.a)};var VAc=Mmd(348);n9c(372,283,xBd,rB);_.Xf=function(){var a,b;return a=new es,Wr(a,new HD(this.o)),Wr(a,new YB(this.o)),b=qB(this),Wr(a,new YC(this.o,this.o.C,x$b(new F$b,new ard(this.a)).a)),b.a.length==0||Wr(a,new DD(this.o,z$b(new F$b,b).a)),new AB(this.o,ds(a,suc(PEc,ABd,38,a.a.length,0,1)))};_.Vf=function(){var a,b,c,d;for(b=(d=(new ard(this.a)).a.mp().Qb(),new brd(d));b.a.Rc();){a=(c=b.a.Sc(),c.yp());a.qm(this.b)}};_.Wf=function(){var a,b;for(b=new Vqd((new Sqd(this.a)).a);b.b;){a=Uqd(b);a.yp().qm(a.Ok())}};var WAc=Mmd(372);n9c(970,323,xBd,tB);_.Vf=XMd;_.Wf=XMd;var XAc=Mmd(970);n9c(98,1,{},wB);var YAc=Mmd(98);n9c(139,wBd,xBd,AB);_.Sf=function(){if(xB(this)){return zC(this.b,this)}return this};_.Tf=function(){yB(this)};_.Uf=function(){zB(this)};var ZAc=Mmd(139);n9c(1836,wBd,xBd,BB);_.Tf=ZMd;_.Uf=YMd;var $Ac=Mmd(1836);n9c(2176,wBd,xBd,CB);_.Tf=function(){zVb(this.b.C,this.a)};_.Uf=function(){xWb(this.b.C,this.a)};var _Ac=Mmd(2176);n9c(687,wBd,xBd,EB);_.Tf=function(){FVb(this.c.C,this.a);DB(this)};_.Uf=function(){FWb(this.c.C,this.a);!!this.d&&zB(this.d)};_.b=false;var aBc=Mmd(687);n9c(905,283,xBd,JB);_.Xf=function(){var a;return a=new wB,IB(this,a),PN(this.d,a),new AB(null,ds(a.a,suc(PEc,ABd,38,0,0,1)))};_.Vf=function(){this.c.Gi(this.d);this.a=null;if(O0b(this.d)&&RWb(UVb(this.d),this.c)){if(!msd(TVb(this.d),dsd(this.c.r))){this.a=new WWb(UVb(this.d));NWb(UVb(this.d),this.c)}}};_.Wf=function(){!!this.a&&VWb(this.a);FWb(this.d,this.c)};var FB,GB;var dBc=Mmd(905);n9c(1824,1,{},NB);_._f=function(a){return dsd(a.r)};var bBc=Mmd(1824);n9c(1825,1,{},OB);_._f=function(a){return dsd(a.v)};var cBc=Mmd(1825);n9c(2188,wBd,xBd,QB);_.Tf=function(){if(n4b(this.b)){this.a=d1b(this.b.n);W1(this.b,null)}};_.Uf=function(){!!this.a&&W1(this.b,this.a)};var eBc=Mmd(2188);n9c(2212,wBd,xBd,RB);_.Tf=function(){this.b?F6b(this.a,this.c):G6b(this.a,this.c)};_.Uf=function(){this.b?F6b(this.a,this.d):G6b(this.a,this.d)};_.b=false;var fBc=Mmd(2212);n9c(2221,wBd,xBd,SB);_.Tf=function(){this.c=this.a.c;oVb(this.a,this.b)};_.Uf=function(){oVb(this.a,this.c)};var gBc=Mmd(2221);n9c(2098,wBd,xBd,TB);_.Tf=function(){xVb(this.b.C,this.a)};_.Uf=function(){oWb(this.b.C,this.a)};var hBc=Mmd(2098);n9c(965,wBd,xBd,UB);_.Tf=YMd;_.Uf=ZMd;var iBc=Mmd(965);n9c(2064,wBd,xBd,VB);_.Tf=function(){var a,b;for(b=new Frd(this.a);b.a0&&dsd(u.k).b.vd()==1&&Q0b(dsd(u.k).a.zd(0))){this.a=NC(u);if(!this.a){this.a=new WWb((!u.a&&(u.a=new UWb(u)),u.a));j=dXb(this.c);if((!u.a&&(u.a=new UWb(u)),u.a).a.i.a.vd()!=0||!(dsd(j.r).a.sd()&&dsd(j.s).a.sd()&&dsd(j.A).a.sd()&&dsd(j.t).a.sd()&&dsd(j.q).a.sd()&&dsd(j.w).a.sd()&&dsd(j.B).a.sd()&&dsd(j.u).a.sd()&&dsd(j.C).a.sd())){l=d2b(Tu(this.o.v));NWb((!u.a&&(u.a=new UWb(u)),u.a),j);SWb((!u.a&&(u.a=new UWb(u)),u.a),l)}}}else !u.e&&this.c.b&&(this.a=(CWb(u,true),new VC(u)))};_.Wf=function(){var a,b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A;!!this.a&&this.a.qe();s=this.o.C;for(v=new qsd(dsd(this.c.a.u).b.Qb());v.b.Rc();){t=v.b.Sc();vWb(s,t)}for(w=new qsd(dsd(this.c.a.A).b.Qb());w.b.Rc();){t=w.b.Sc();pWb(s,t)}for(u=new qsd(dsd(this.c.a.t).b.Qb());u.b.Rc();){t=u.b.Sc();rWb(s,t)}for(b=new qsd(dsd(this.c.a.k).b.Qb());b.b.Rc();){a=b.b.Sc();lWb(s,a)}for(l=new qsd(dsd(this.c.a.q).b.Qb());l.b.Rc();){j=l.b.Sc();oWb(s,j)}for(f=new qsd(dsd(this.c.a.o).b.Qb());f.b.Rc();){e=f.b.Sc();tWb(s,e)}for(h=new qsd(dsd(this.c.a.p).b.Qb());h.b.Rc();){g=h.b.Sc();if(!nWb(s,g)){A=$Vb(s,g.c,g.d);!!A&&nWb(s,A)}}for(r=new qsd(dsd(this.c.a.s).b.Qb());r.b.Rc();){q=r.b.Sc();qWb(s,q)}for(d=new qsd(dsd(this.c.a.n).b.Qb());d.b.Rc();){c=d.b.Sc();mWb(s,c)}for(o=new qsd(dsd(this.c.a.w).b.Qb());o.b.Rc();){m=o.b.Sc();uWb(s,m)}for(n=new qsd(dsd(this.c.a.v).b.Qb());n.b.Rc();){m=n.b.Sc();sWb(s,m)}};var xBc=Mmd(84);n9c(1558,1,{},UC);_.qe=function(){VWb(this.b);CWb(this.a,true)};var tBc=Mmd(1558);n9c(1559,1,{},VC);_.qe=function(){CWb(this.a,false)};var uBc=Mmd(1559);n9c(1560,1,Wyd,WC);_.sb=function(a){return a.Fe(this.a),null};var vBc=Mmd(1560);n9c(1561,1,Wyd,XC);_.sb=function(a){return rx(a,this.a),null};var wBc=Mmd(1561);n9c(963,323,xBd,YC);_.Vf=tMd;_.Wf=tMd;var yBc=Mmd(963);n9c(364,1,{},jD);_.a=false;_.i=null;var zBc=Mmd(364);n9c(553,wBd,xBd,mD,nD);_.Tf=function(){Qu(this.d,this.b);lD(this)};_.Uf=function(){lD(this);Qu(this.d,this.b)};var ABc=Mmd(553);n9c(2230,wBd,xBd,oD);_.Tf=function(){f0b(this.b,this.a);a0b(this.c,this.a)};_.Uf=function(){f0b(this.c,this.a);a0b(this.b,this.a)};var BBc=Mmd(2230);n9c(1896,2312,{},pD);_.Qf=aNd;_.Rf=aNd;var CBc=Mmd(1896);n9c(2074,wBd,xBd,sD);_.Tf=function(){var a,b,c,d,e,f;DA(this.a);if(rD(this)){for(b=new qsd(dsd(this.f.r).b.Qb());b.b.Rc();){a=b.b.Sc();f=CE(this.b,a._l(),fWb(this.d,a));if(!!f&&!jad(a.Lh(),f)){FA(this.a,a);a.mm(f)}}for(d=new qsd(dsd(this.f.s).b.Qb());d.b.Rc();){c=d.b.Sc();e=EE(this.b,c.k,gWb(this.d,c));if(!!e&&c.o!=e){GA(this.a,c);c.o!=e&&(c.i=false);yTb(c,e)}}}if(CA(this.a)){dw(this.i,this.e);HWb(this.i.C)}this.i.w.Hf()};_.Uf=function(){if(!CA(this.a)){EA(this.a);return}dw(this.i,this.d);Qu(this.i,this.c)};var DBc=Mmd(2074);n9c(1798,2312,{},yD);_.Qf=function(a){var b,c;c=this.a.C;if(dsd(c.n).b.vd()>0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))){if(!dsd(a.k).a.sd()){return wD(this,true)}}else{if(dsd(a.k).b.vd()==1&&P0b(c,dsd(a.k).a.zd(0))){return vD(this,false)}b=dsd(a.n).b.vd();if(dsd(a.k).a.sd()&&dsd(c.k).b.vd()==1&&dsd(c.n).b.vd()+b>0&&Q0b(dsd(c.k).a.zd(0))){return vD(this,false)}}return null};_.Rf=function(a){var b,c;c=this.a.C;if(dsd(c.n).b.vd()>0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))){if(dsd(a.k).b.vd()==1||dsd(c.n).b.vd()-dsd(a.n).b.vd()<1){return wD(this,false)}if(RWb((!c.a&&(c.a=new UWb(c)),c.a),new Cy(a))){return xD(this,d2b(Tu(this.a.v)),a,c)}}else{b=new gs(dsd(c.k));Or(b,dsd(a.k));if(b.a.length==1&&Q0b(b.a[0])){return vD(this,true)}}return null};var EBc=Mmd(1798);n9c(2177,wBd,xBd,AD);_.Tf=function(){xWb(this.a.C,this.b)};_.Uf=function(){zVb(this.a.C,this.b)};var FBc=Mmd(2177);n9c(128,283,xBd,DD,ED);_.Xf=function(){return CD(this)};_.Vf=function(){this.a=new WWb(UVb(this.c));xWb(this.c,this.b);O0b(this.c)&&UVb(this.c).a.i.a.vd()!=0&&SWb(UVb(this.c),d2b(Tu(this.o.v)))};_.Wf=function(){zVb(this.c,this.b);!!this.a&&VWb(this.a)};var HBc=Mmd(128);n9c(263,wBd,xBd,GD);_.Tf=bNd;_.Uf=cNd;var GBc=Mmd(263);n9c(441,wBd,xBd,HD);_.Uf=function(){Qu(this.b,this.a)};var IBc=Mmd(441);n9c(2178,wBd,xBd,ID);_.Tf=function(){this.b=this.c.e;CWb(this.c,false);this.a=new WWb(UVb(this.c));TWb(UVb(this.c),this.c)};_.Uf=function(){VWb(this.a);CWb(this.c,this.b)};_.b=false;var JBc=Mmd(2178);n9c(2171,wBd,xBd,JD);_.Tf=function(){D8b(this.b,this.a)};_.Uf=function(){D8b(this.b,this.c)};var KBc=Mmd(2171);n9c(936,wBd,xBd,KD);_.Uf=function(){var a,b;for(b=new Vqd((new Sqd(this.a)).a);b.b;){a=Uqd(b);O2b(a.yp(),a.Ok())}};var LBc=Mmd(936);n9c(2186,wBd,xBd,ND);_.Tf=function(){MD(this,this.c)};_.Uf=function(){MD(this,this.a)};var MBc=Mmd(2186);n9c(552,wBd,xBd,TD);_.Tf=function(){PD(this)};_.Uf=function(){SD(this)};_.b=0;_.c=0;var NBc=Mmd(552);n9c(926,1,{},_D);var OBc=Mmd(926);n9c(2180,wBd,xBd,cE);_.Tf=function(){var a,b,c,d;for(d=this.c.op().Qb();d.Rc();){c=d.Sc();b=Hnd(DBd,this.b)?c.c:this.b;a=Hnd(DBd,this.a)?c.a:this.a;B8b(c,b,a)&&!!c.d&&SVb(c.d,new u7b)}};_.Uf=function(){var a,b;for(b=this.c.mp().Qb();b.Rc();){a=b.Sc();A8b(a.yp(),a.Ok()[0],a.Ok()[1])}};var PBc=Mmd(2180);n9c(538,323,xBd,dE);_.Vf=function(){var a,b,c,d,e;for(b=(e=(new ard(this.a)).a.mp().Qb(),new brd(e));b.a.Rc();){a=(c=b.a.Sc(),c.yp());d=a.Nl()+this.b;d<=128&&d>=-128&&a.hm(d)}};_.Wf=function(){var a,b;for(b=new Vqd((new Sqd(this.a)).a);b.b;){a=Uqd(b);a.yp().hm(a.Ok().a)}};_.Xf=dNd;_.b=0;var QBc=Mmd(538);n9c(398,wBd,xBd,eE);_.Tf=function(){this.a=this.c.e!=this.b;CWb(this.c,this.b)};_.Uf=function(){this.a&&CWb(this.c,!this.b)};_.a=false;_.b=false;var RBc=Mmd(398);n9c(696,wBd,xBd,fE);_.Tf=function(){var a,b,c,d;for(c=(d=(new ard(this.b)).a.mp().Qb(),new brd(d));c.a.Rc();){b=(a=c.a.Sc(),a.yp());this.a.$f(b,this.c)}};_.Uf=function(){var a,b;for(b=new Vqd((new Sqd(this.b)).a);b.b;){a=Uqd(b);this.a.$f(a.yp(),a.Ok())}};var SBc=Mmd(696);n9c(555,wBd,xBd,mE);_.Tf=function(){Qu(this.p,this.d);iE(this);hE(this);jE(this);lE(this);kE(this);yE(this.f,new ard(this.o));nA(this.c)};_.Uf=function(){var a,b,c,d,e,f,g;oA(this.c);for(c=new iud(new gud(this.o));c.b!=c.c.a.b;){a=hud(c);a.d.lm(a.e)}for(d=new iud(new gud(this.a));d.b!=d.c.a.b;){a=hud(d);F6b(a.d,a.e[0]);G6b(a.d,a.e[1])}for(e=new iud(new gud(this.e));e.b!=e.c.a.b;){a=hud(e);a.d.mm(a.e)}for(f=new iud(new gud(this.k));f.b!=f.c.a.b;){a=hud(f);a.d.mm(a.e)}for(b=new iud(new gud(this.i));b.b!=b.c.a.b;){a=hud(b);g=a.d;C8b(g,lad(a.e,new qad(g.e.c*0.5,g.e.a*0.5)))}Qu(this.p,this.d)};_.j=0;var TBc=Mmd(555);n9c(129,wBd,xBd,rE);_.Tf=function(){var a,b,c;a=new gs(new ard(this.a));for(c=a.a.length;c>0;c--){b=a.a[c-1];Xtd(this.a,b)&&t5b(b.i);oE(this,b);FWb(this.b,b)}pE(this)};_.Uf=function(){var a,b,c;if(!!this.e&&!!this.d){Ry(this.e.A);Ou(this.e,this.d)}for(c=new iud(new gud(this.a));c.b!=c.c.a.b;){b=hud(c);a=b.d;a.Gi(this.b);b.e&&(!!a.e&&lsd(dsd(a.e.w),a)&&Z4b(new j5b(a.i,a.e)),undefined)}qE(this)};var UBc=Mmd(129);n9c(2187,wBd,xBd,tE);_.Tf=function(){sE(this.a,this.b)};_.Uf=function(){sE(this.a,this.c)};var WBc=Mmd(2187);n9c(975,wBd,xBd,uE);_.Tf=function(){var a,b;for(b=this.a.Qb();b.Rc();){a=b.Sc();X1(a,this.c)}};_.Uf=function(){var a,b;for(b=this.a.Qb();b.Rc();){a=b.Sc();X1(a,Eqd(this.b,a))}};var VBc=Mmd(975);n9c(701,1,{},GE);var XBc=Mmd(701);n9c(2063,1,{},IE);var YBc=Mmd(2063);n9c(1037,1,{});var $Bc=Mmd(1037);n9c(1059,1,EBd,SE);_.Fb=function(a){qg(this.a,a)};var ZBc=Mmd(1059);n9c(119,1,{},TE,UE);_.b=false;_.d=false;var aCc=Mmd(119);n9c(451,10,{451:1,3:1,11:1,10:1},ZE);var VE,WE,XE;var _Bc=Nmd(451,Q5c,$E);n9c(730,Pyd,{},bF);_.lb=eNd;_.mb=function(){return _E};var _E;var bCc=Mmd(730);n9c(505,Pyd,{},eF);_.lb=function(a){a.Zd()};_.mb=function(){return cF};var cF;var cCc=Mmd(505);n9c(1650,fBd,{},hF);_.Vd=function(a){a.ag()};_.Wd=function(){return fF};var fF;var dCc=Mmd(1650);n9c(808,1,{},iF);var eCc=Mmd(808);n9c(346,Pyd,{},nF);_.lb=eNd;_.mb=function(){return lF};var lF;var fCc=Mmd(346);n9c(545,1,{});var gCc=Mmd(545);n9c(917,545,{},qF);_.bg=function(){return pF(this)};var hCc=Mmd(917);n9c(951,545,{},rF);_.bg=function(){var a;a=new Cy(this.a);zy(a,this.b);return a};var iCc=Mmd(951);n9c(950,545,{},sF);_.bg=function(){return new By};var jCc=Mmd(950);n9c(918,545,{},xF);_.bg=function(){return vF(this)};var kCc=Mmd(918);n9c(554,1,{},zF);_.cg=function(a){return yF(this,a)};_.a=0;_.b=0;_.c=0;_.d=0;var lCc=Mmd(554);n9c(442,1,{},BF);_.cg=function(a){return AF(this,a)};_.b=0;var mCc=Mmd(442);n9c(431,1,{431:1},EF);_.V=function(a){var b;if(this===a){return true}else if(kvc(a,431)){b=a;return jad(this.b,b.b)&&jad(this.a,b.a)}return false};_.X=function(){return DF(this)};_.Y=function(){var a,b;b=new ood;nod(b,(Hmd(nCc),nCc.p+'@'+(a=DF(this)>>>0,a.toString(16))));b.a+='[';nod(b,oad(this.b));b.a+=',';nod(b,oad(this.a));b.a+=']';return b.a};var nCc=Mmd(431);n9c(919,1,{},IF);_.cg=function(a){return HF(this.a,this.b,a)};var oCc=Mmd(919);n9c(457,1,{},JF);_.cg=function(a){return kH(a,this.a)};var pCc=Mmd(457);n9c(237,1,{237:1,2332:1},OF);_.dg=function(a){return KF(this,a)};_.Y=function(){return 'Triangle [p1='+this.a+', p2='+this.b+', p3='+this.c+']'};var qCc=Mmd(237);n9c(1188,1,{},cG);_.a=null;_.c=null;_.d=null;var wCc=Mmd(1188);n9c(494,221,{});_.b=false;var xCc=Mmd(494);n9c(1189,494,{},gG);_.ic=function(){aw(this.a.n,new qad(0,30));Ji(this,250)};var rCc=Mmd(1189);n9c(1190,494,{},hG);_.ic=function(){aw(this.a.n,new qad(0,-30));Ji(this,250)};var sCc=Mmd(1190);n9c(1191,494,{},iG);_.ic=function(){aw(this.a.n,new qad(30,0));Ji(this,250)};var tCc=Mmd(1191);n9c(1192,494,{},jG);_.ic=function(){aw(this.a.n,new qad(-30,0));Ji(this,250)};var uCc=Mmd(1192);n9c(1193,1,OAd,lG);_.kd=function(a){kG(this,a)};var vCc=Mmd(1193);n9c(1397,1,{},xG);var yCc=Mmd(1397);n9c(1311,1,{2374:1,341:1,1003:1,339:1,1002:1,575:1,1001:1,574:1,578:1,577:1,716:1,385:1,2235:1,13:1},JG);_.cc=function(a){if(this.d.a.a.a){if(sG(this.d,nlc(a.a))){tlc(a.a);!!a.a&&slc(a.a)}}};_.dc=function(a){if(this.d.a.a.a){if(tG(this.d,nlc(a.a))){tlc(a.a);!!a.a&&slc(a.a)}}};_.oc=function(a){var b,c,d,e;this.a=true;this.b=false;!!a.a&&slc(a.a);e=new qad(soc(a),toc(a));if(!!this.i&&RF(this.i,e)){tlc(a.a);TF(this.i,e);return}else !!this.i&&bG(this.i);if(yG(ilc(a.a))==(YE(),XE)||mlc(a.a)&&Hnd('\u2318',Ds())){if(this.c){this.a=false;tlc(a.a);!!a.a&&slc(a.a);return}}d=this.j;this.j=e;if(this.d.a.a.a){c=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));if((c.a==WE||this.b)&&!!this.f){this.b=true;WI(this.f,c)}else if(c.a==VE){if(d){this.j=null;wG(this.d,c)}else{b=(Dod(),c9c(a9c(P8c(Date.now()),this.e)));(b<0||b>hAd)&&oG(this.d,c)}}}};_.pc=function(a){var b,c;c=new qad(soc(a),toc(a));if(this.o){this.o=false;return}if(!!this.i&&RF(this.i,c)){tlc(a.a);UF(this.i,c);return}else !!this.i&&bG(this.i);if(!this.d.a.a.a){return}if(!this.j){uG(this.d,new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a)))}else if(!!this.j&&sac(new qad(soc(a),toc(a)),this.j)>5){b=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));this.a=false;(b.a==(YE(),WE)||this.b)&&!!this.f?VI(this.f,b):b.a==VE&&pG(this.d,b)}};_.qc=function(a){var b;if(!!this.i&&VF(this.i)){return}else !!this.i&&bG(this.i);this.b=false;this.a=false;b=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));!!this.f&&YI(this.f);rG(this.d,b)};_.rc=function(a){var b;this.b=false;if(!!this.i&&WF(this.i)){return}else !!this.i&&bG(this.i);b=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));!!this.f&&XI(this.f,b);qG(this.d,b)};_.sc=function(a){var b,c,d;this.b=false;d=new qad(soc(a),toc(a));if(!!this.i&&RF(this.i,d)){tlc(a.a);XF(this.i,d);return}else !!this.i&&bG(this.i);if(yG(ilc(a.a))==(YE(),XE)&&!!this.c){tlc(a.a);!!a.a&&slc(a.a);return}if(!!this.d.a.a.a&&!!this.j){c=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));(c.a==WE||this.b)&&!!this.f?ZI(this.f,c):c.a==VE&&(b=(Dod(),c9c(a9c(P8c(Date.now()),this.e))),b<0||b>hAd)&&wG(this.d,c);!!this.j&&this.a&&sac(d,this.j)<=5&&((c.a==WE||this.b)&&!!this.f?undefined:c.a==VE&&mG(this.d,c));this.o=true}this.a=false;this.j=null};_.jc=function(a){var b,c;if(CG(this,a)){tlc(a.a);(c=this.i,jF(a,this.n),c).d=null;EG(this);return}if(BG(this,rlc(a.a))){b=kF(this.k,this.n);!!b&&!!this.d.a.a.a&&rG(this.d,new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a)));FG(this)}};_.kc=function(a){var b,c,d,e;if(CG(this,a)){tlc(a.a);(d=this.i,jF(a,this.n),d).d=null;EG(this);return}if(BG(this,rlc(a.a))){b=kF(this.k,this.n);if(b){if(this.d.a.a.a){e=new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a));wG(this.d,e);if(zG(this,b.a[0])){c=(Dod(),a9c(P8c(Date.now()),this.e));L8c(c,0)>0&&L8c(c,300)<0&&nG(this.d,e);this.e=P8c(Date.now())}this.o=true}this.a=false;this.j=null}this.k=null}};_.lc=function(a){var b;if(CG(this,a)){tlc(a.a);YF(this.i,jF(a,this.n));EG(this);return}IG(this,rlc(a.a));b=kF(this.k,this.n);if(b){if(!!this.d.a.a.a&&!!this.j&&sac(b.a[0],this.j)>5){this.a=false;pG(this.d,new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a)))}}};_.mc=function(a){var b;if(CG(this,a)){tlc(a.a);ZF(this.i,jF(a,this.n));EG(this);return}IG(this,rlc(a.a));b=kF(this.k,this.n);if(!!b&&!this.a){if(AG(this,b.a[0])){tlc(a.a);TF(this.i,b.a[0]);EG(this);return}this.a=true;this.j=b.a[0];!!this.d.a.a.a&&oG(this.d,new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a)))}};_.kd=function(a){!!this.i&&kG(SF(this.i),a)};_.a=false;_.b=false;_.e=IBd;_.k=null;_.o=false;var zCc=Mmd(1311);n9c(91,1,{});_.eg=function(){return e_(),d_};_.fg=wMd;_.gg=wMd;_.hg=gNd;_.ig=fNd;_.jg=fNd;_.kg=wMd;_.lg=wMd;_.mg=function(a){this.p=null;Ry(Lu(this.o.i).b)};_.ng=gNd;_.og=wMd;_.pg=function(){this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),this.eg())};_.rg=wMd;_.Rd=function(){ex(Mu(this.o.i),this.eg());this.o.i.w.Hf()};_.sg=function(a){(Ez(),Az)==a.Af()||a.Bf(Az)};_.tg=tMd;_.p=null;var BCc=Mmd(91);n9c(202,91,{});_.fg=function(a){!!this.k&&this.k.fg(a)};_.gg=function(a){!!this.k&&this.k.gg(a)};_.hg=function(a){Jl(this,a.c);!!this.k&&this.k.hg(a)};_.ig=function(a){if(this.k){return this.k.ig(a)}return false};_.jg=function(a){if(this.k){return this.k.jg(a)}return false};_.kg=function(a){!!this.k&&this.k.kg(a)};_.lg=function(a){!!this.k&&this.k.lg(a)};_.mg=function(a){this.p=null;!!this.k&&this.k.mg(a)};_.ng=function(a){Jl(this,a.c);!!this.k&&this.k.ng(a)};_.og=function(a){!!this.k&&this.k.og(a)};_.qg=function(){_G(this)};_.rg=lNd;_.Rd=function(){aH(this)};_.sg=wMd;_.tg=function(){cH(this)};_.k=null;_.n=false;var HCc=Mmd(202);n9c(2233,202,{},eH);_.ig=function(a){a==16&&bH(this,this.b);return true};_.jg=function(a){a==16&&bH(this,this.a);return false};_.qg=function(){bH(this,this.a);_G(this)};var ACc=Mmd(2233);n9c(448,1,{},iH);_.b=0;var CCc=Mmd(448);n9c(531,91,{});_.hg=function(a){pH(this,a)};_.ig=function(a){if(a==16){this.k=true;this.o.i.w.Hf();return true}return false};_.jg=function(a){if(a==16){this.k=false;this.o.i.w.Hf();return true}return false};_.kg=function(a){if(a.a!=(YE(),VE)){return}Ry(this.o.i.A);VG(this,a.c);if(iy(Lu(this.o.i).b)){this.d=null;return}if(hy(Lu(this.o.i).b)){this.d=LG(this);this.f=new iH(this.d.Lh(),LBd);return}this.d=this.ug();this.d.mm(gw(this.o.i,a.c));this.f=new iH(this.d.Lh(),LBd)};_.lg=function(a){this.k=false;this.o.i.w.Hf()};_.ng=function(a){qH(this,a)};_.og=function(a){pH(this,a);if(!this.d){return}if(!this.j){return}nH(this);this.d=null;this.j=null};_.rg=function(a){sH(this,a)};_.Rd=function(){uH(this)};_.k=false;_.n=false;var ICc=Mmd(531);n9c(260,531,{260:1},BH);_.V=function(a){var b;if(a==null){return false}if(this===a){return true}if(!kvc(a,260)){return false}b=a;return U(b.a)==U(this.a)&&this.a.Hl()==b.a.Hl()&&CH(this.a,b.a)&&this.a.Tl()==b.a.Tl()&&!kvc(this.a,93)&&!kvc(b.a,93)||kvc(this.a,93)&&kvc(b.a,93)&&this.a.b==b.a.b};_.ug=function(){return this.a.Dl()};_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)]))};_.fg=function(a){var b,c,d,e,f,g,h,j;if(a.a!=(YE(),VE)){return}VG(this,a.c);e=new wB;if(hy(Lu(this.o.i).b)){if(a.d){j=E9b(LG(this));if(!j){return}h=this.a.Dl();h.lm(new Tac(j,LG(this).Ki()));g=xH(j,LG(this),this.o.i);d=new S2b(this.e,LG(this),h);c=vuc(quc(tWc,1),zBd,49,0,[g,LG(this)]);if(aVb(this.o.i.C,new Srd(c))&&lsd(dsd(this.o.i.C.n),g)){h.lm(new Tac(g.Lh(),g.Ki()));uB(e,new OA(this.o.i,g,h))}else{uB(e,new BC(this.o.i,h))}uB(e,new OC(this.o.i,d))}else{uB(e,new OA(this.o.i,LG(this),this.a.Dl()))}f=vB(e,this.o.i);yQ(this.o.f,f);VG(this,a.c)}else if(!iy(Lu(this.o.i).b)){b=this.a.Dl();b.mm(gw(this.o.i,a.c));yQ(this.o.f,AH(this,b))}};_.lg=function(a){Jl(this,a.c);this.o.i.w.Hf()};_.mg=function(a){this.p=null;Ry(Lu(this.o.i).b);this.o.i.w.Hf()};_.ng=function(a){qH(this,a);VG(this,a.c);Jl(this,a.c);this.o.i.w.Hf()};_.X=MPd;_.rg=function(a){if(!this.p){return}a.Mf(0.4);this.k&&hy(Lu(this.o.i).b)&&zH(this,a.Kf());if(this.j){sH(this,a)}else if(!!this.p&&!(Os(),Ns)){this.a.mm(gw(this.o.i,this.p));dT(this.o.i.j,this.a).qh(a.Kf())}a.Mf(1)};_.Rd=function(){this.p=null;uH(this)};var DCc=Mmd(260);n9c(439,531,{439:1},MH,NH);_.V=function(a){return FH(this,a)};_.ug=function(){return new y2b((WZb(),UXb))};_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_,t_]))};_.fg=function(a){switch(this.c){case 1:HH(this);break;case 2:case 3:iy(Lu(this.o.i).b)?JH(this,fB(this.o.i,BUb(MG(this).o,this.e),MG(this))):my(Lu(this.o.i).b)?JH(this,dB(this.o.i,BUb(SG(this).o,this.e),SG(this))):ky(Lu(this.o.i).b)&&JH(this,jB(this.o.i,BUb(PG(this).o,this.e),PG(this)));break;case 0:vH(this,a.d);IH(this,a.c);}this.o.i.w.Hf()};_.ng=function(a){qH(this,a);VG(this,a.c);this.o.i.w.Hf()};_.X=function(){return Zwd(this.e)};_.pg=function(){if(this.c==3&&GH(this)==this.a){return}iy(Lu(this.o.i).b)?KH(this)&&(this.e==(s6b(),m6b)||this.e==h6b)?(this.a=null,this.c=2):(this.a=null,this.c=1):my(Lu(this.o.i).b)?SG(this).o==this.e&&(this.e==(s6b(),m6b)||this.e==h6b)?(this.a=null,this.c=2):(this.a=null,this.c=1):ky(Lu(this.o.i).b)?PG(this).o==this.e&&(this.e==(s6b(),m6b)||this.e==h6b)?(this.a=null,this.c=2):(this.a=null,this.c=1):(this.a=null,this.c=0);this.o.i.w.Hf()};_.rg=function(a){sH(this,a);EH(this,a)};_.Rd=function(){this.a=null;this.c=0;uH(this)};_.b=false;_.c=0;var ECc=Mmd(439);n9c(1483,91,{},hI);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_]))};_.fg=function(a){VG(this,a.c);iy(Lu(this.o.i).b)?(this.f||MG(this).o==(s6b(),m6b)?VH(this,fB(this.o.i,BUb(MG(this).o,(s6b(),m6b)),MG(this))):VH(this,fB(this.o.i,(s6b(),m6b),MG(this))),this.f=true):aI(this);this.o.i.w.Hf()};_.hg=function(a){var b,c,d,e;Jl(this,a.c);this.d=true;c=YH(this.i.Lh(),this.a.c.b.c.Lh());b=YH(this.i.Lh(),gw(this.o.i,a.c));$wnd.Math.abs(b-c)>OH/2&&(b>c?WH(this,b):cI(this,b));d=lad(gw(this.o.i,a.c),this.i.Lh());e=$wnd.Math.atan2(d.b,d.a);$wnd.Math.abs(b-c)>jBd/PH&&gI(this,e);this.o.i.w.Hf()};_.ig=function(a){if(a==17){this.c=true;this.d&&TH(this);return true}return false};_.jg=function(a){if(a==17){this.c=false;this.d&&UH(this);return true}return false};_.kg=function(a){this.n=0;VG(this,a.c);_H(this);this.e=true;this.i=LG(this);if(!this.i){this.e=false;this.i=new y2b((WZb(),UXb));this.i.lm(new Tac(gw(this.o.i,a.c),this.n))}else{this.n=this.i.Ki()}Mr(this.a,this.i,false)||lud(this.a,this.i);this.o.i.w.Hf()};_.ng=function(a){Jl(this,a.c);VG(this,a.c);_H(this);this.o.i.w.Hf()};_.og=function(a){if(this.d){this.e&&oud(this.a);this.b.b>0&&VH(this,new PC(this.o.i,y$b(x$b(new F$b,new utd(this.a)),new utd(this.b)).a));ZH(this)}};_.qg=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_])));ZH(this);Ry(this.o.i.A);dI(this);this.k=wQ(this.o.f,new iI(this));this.d=false;this.c=false;this.e=false;this.f=false};_.rg=function(a){var b,c,d,e,f,g;if(this.d&&!!this.p){f=a.Kf();if(this.a.b>1){g=new o0((pR(),jR),(NT(),DT));f.tf(this.p,$md((new gnd(this.a.b)).a),null,g)}for(e=nud(this.b,0);e.b!=e.d.c;){d=tud(e);dT(this.o.i.j,d).rh(f,KBd)}for(c=nud(this.a,0);c.b!=c.d.c;){b=tud(c);lsd(dsd(this.o.i.C.n),b)||dT(this.o.i.j,b).rh(f,KBd)}}};_.Rd=function(){eI(this)};_.tg=function(){dI(this)};_.c=false;_.d=false;_.e=false;_.f=false;_.j=0;_.n=0;var OH=0,PH=20;var GCc=Mmd(1483);n9c(831,1,{989:1},iI);_.vg=function(a){eI(this.a)};var FCc=Mmd(831);n9c(632,91,{632:1},mI);_.V=function(a){if(this===a){return true}if(a==null){return false}if(!kvc(a,632)){return false}return true};_.eg=AMd;_.fg=function(a){var b;if(a.a!=(YE(),VE)){return}VG(this,a.c);oy(Lu(this.o.i).b)||YG(this)||XG(this)?yQ(this.o.f,new DD(this.o.i,new Cy((b=hx(Lu(this.o.i)),dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd()&&!!Lu(this.o.i).a?new Cy(Lu(this.o.i).a.a):b)))):!!Lu(this.o.i).a&&yQ(this.o.f,new rE(this.o.i.C,bsd(Lu(this.o.i).a.a),this.o.i));Ry(this.o.i.A)};_.hg=function(a){jI(this,a)};_.kg=function(a){this.c=a.c;ex(Mu(this.o.i),this.a)};_.ng=zNd;_.og=function(a){var b;if(!this.b){this.c=null;return}jI(this,a);yQ(this.o.f,new DD(this.o.i,(b=hx(Lu(this.o.i)),dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd()&&!!Lu(this.o.i).a?new Cy(Lu(this.o.i).a.a):b)));this.c=null;this.b=null;ex(Mu(this.o.i),this.a);this.o.i.w.Hf()};_.X=function(){return Zwd(this.o)};_.qg=function(){ex(Mu(this.o.i),this.a);lI(this)};_.rg=function(a){!!this.c&&!!this.b&&a.Kf().uf(this.b,(QQ(),JQ))};_.Rd=function(){lI(this)};var JCc=Mmd(632);n9c(985,91,{},qI);_.hg=hNd;_.ng=hNd;_.og=function(a){nI(this,gw(this.o.i,a.c));this.p=null};_.rg=function(a){rI(this.a,a)};var LCc=Mmd(985);n9c(2234,1,{},tI);var KCc=Mmd(2234);n9c(649,91,{649:1},TI);_.fg=function(a){var b;VG(this,a.c);if(iy(Lu(this.o.i).b)){yQ(this.o.f,YA(this.o.i,MG(this)))}else if(my(Lu(this.o.i).b)){yQ(this.o.f,ZA(this.o.i,SG(this)))}else if(ky(Lu(this.o.i).b)){b=PG(this);yQ(this.o.f,jB(this.o.i,GI(b.o),b))}else hy(Lu(this.o.i).b)&&RI(this,a.d);Ry(Lu(this.o.i).b);NI(this);Jl(this,a.c);this.d=null;this.o.i.w.Hf()};_.hg=function(a){if(a.a!=(YE(),VE)||!this.e){return}Vo(this,a.c);BI(this,a.c);yI(this,a.d);this.o.i.w.Hf()};_.kg=function(a){if(a.a!=(YE(),VE)){return}Ry(Lu(this.o.i).b);NI(this);yI(this,a.d);Jl(this,a.c);Vo(this,a.c);VG(this,a.c);if(hy(Lu(this.o.i).b)){xI(this,LG(this))}else if(Sx(Lu(this.o.i).b)){this.f=new y2b((WZb(),UXb));pTb(this.f,gw(this.o.i,a.c));AC(new BC(this.o.i,this.f));xI(this,this.f)}this.o.i.w.Hf()};_.lg=function(a){Jl(this,a.c);Vo(this,a.c)};_.mg=function(a){this.p=null;Ry(Lu(this.o.i).b);Ry(Lu(this.o.i).b);NI(this);this.p=null;this.d=null};_.ng=function(a){Ry(Lu(this.o.i).b);NI(this);Jl(this,a.c);VG(this,a.c)};_.og=function(a){if(a.a!=(YE(),VE)||!this.e){return}yI(this,a.d);BI(this,a.c);JI(this,a.c);Ry(Lu(this.o.i).b);NI(this);Jl(this,a.c);this.d=null;this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),(e_(),d_));Ry(this.o.i.A);Ry(Lu(this.o.i).b);NI(this)}; +_.rg=function(a){var b,c,d;if(this.e&&!!this.i){d=gw(this.o.i,this.d);c=sac(this.i,d);AI(this,a,c);b=c>=LBd?'rgba(0,0,200,1)':'rgba(0,0,200,0.5)';IY(FI(this,this.i,d),a.Kf(),b)}};_.Rd=function(){Ry(this.o.i.A);this.d=null;NI(this);ex(Mu(this.o.i),(e_(),d_));this.o.i.w.Hf()};_.tg=function(){Ry(Lu(this.o.i).b);NI(this)};_.a=null;_.c=-1;_.d=null;_.e=false;_.f=null;_.i=null;_.j=QBd;var uI,vI;var MCc=Mmd(649);n9c(1208,1,{},_I);_.b=null;var NCc=Mmd(1208);n9c(834,1,{2240:1},aJ);_.wg=WNd;_.xg=function(a){return Hnd('6',a)?null:'6'};var OCc=Mmd(834);n9c(1495,91,{},cJ);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),x_]))};_.fg=function(a){var b;VG(this,a.c);if(hy(Lu(this.o.i).b)){yQ(this.o.f,new sA(LG(this),this.o.i))}else if(my(Lu(this.o.i).b)){b=SG(this);yQ(this.o.f,dB(this.o.i,GI(b.o),b))}this.o.i.w.Hf()};_.ng=iNd;_.qg=function(){Ry(Lu(this.o.i).b);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),x_])))};_.Rd=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),x_])));this.o.i.w.Hf()};_.tg=function(){Ry(Lu(this.o.i).b)};var PCc=Mmd(1495);n9c(512,91,{});_.yg=function(){return hy(Lu(this.o.i).b)&&dJ(this,LG(this))};_.eg=function(){return new j_(vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)]))};_.fg=function(a){var b;VG(this,a.c);if(this.yg()){b=new ltd;Hqd(b,this.wg(),this.zg(LG(this)));eJ(this,new Srd(vuc(quc(tWc,1),zBd,49,0,[LG(this)])),b)}};_.ng=function(a){Jl(this,a.c);VG(this,a.c);this.yg()||Ry(Lu(this.o.i).b)};_.rg=function(a){!!this.p&&!(Os(),Ns)&&a.Kf().tf(this.p,this.e,uBd,new o0((pR(),iR),(NT(),KT)))};var QCc=Mmd(512);n9c(2146,1,{2240:1},gJ);_.wg=AMd;_.xg=aNd;var RCc=Mmd(2146);n9c(835,1,{},hJ);_.Ag=function(a){var b,c;b=dsd(a.r);if(!b.a.sd()){c=new ltd;Hqd(c,this.b.wg(),this.b.xg(mJ(this.b.wg(),b)));yQ(this.a.f,new rB(this.a.i,b,c));return true}return false};var SCc=Mmd(835);n9c(2072,512,{});_.wg=AMd;_.b=0;_.c=0;_.d=0;var TCc=Mmd(2072);n9c(2073,2072,{},kJ);_.zg=function(a){return jJ(this,a)};var UCc=Mmd(2073);n9c(313,10,{313:1,2240:1,3:1,11:1,10:1},sJ);_.wg=AMd;_.xg=function(a){var b;b=hs(this.b,a)+1;return this.b.a.length>b?Yr(this.b,b):null};var nJ,oJ,pJ,qJ;var VCc=Nmd(313,Q5c,uJ);n9c(634,512,{},vJ);_.zg=function(a){return this.a.xg(lJ(a,this.a.wg()))};_.wg=function(){return this.a.wg()};var WCc=Mmd(634);n9c(1507,512,{},xJ);_.zg=function(a){return mnd((a.Rl()+1)%5)};_.yg=function(){return hy(Lu(this.o.i).b)&&dJ(this,LG(this))&&!St(this.o.c,(cu(),_t)).Pd()};_.wg=function(){return kcc(),ecc};var XCc=Mmd(1507);n9c(1505,512,{},yJ);_.zg=function(a){return Z1b(a.Xl())};_.wg=uOd;var YCc=Mmd(1505);n9c(833,202,{},zJ);_.eg=jNd;_.kg=function(a){VG(this,a.c);if(ny(Lu(this.o.i).b)){bH(this,(!this.c&&(this.c=new GJ(this.o)),this.c));FJ((!this.c&&(this.c=new GJ(this.o)),this.c),TG(this),a.c)}else{bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b))}!!this.k&&this.k.kg(a)};_.ng=iNd;_.og=function(a){!!this.k&&this.k.og(a);bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b))};_.qg=function(){!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));this.o.i.w.Hf();bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b));_G(this)};_.Rd=function(){!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));this.o.i.w.Hf();bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b))};_.tg=function(){!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));this.o.i.w.Hf();bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b));cH(this)};var ZCc=Mmd(833);n9c(434,91,{},BJ);_.eg=jNd;_.hg=function(a){if(this.b){Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){AJ(this);this.b=a.c};_.og=function(a){var b,c;if(!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))){c=fw(this.o.i,kbc(this.b,this.p));b=new By;ux(b,new F8b(c,this.a));yQ(this.o.f,new PC(this.o.i,b))}AJ(this)};_.qg=function(){AJ(this);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])))};_.rg=function(a){var b;if(!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))){b=kbc(this.b,this.p);(V8b(),U8b)==this.a?VZ(new XZ(b,a,KBd,null),a.Kf()):VZ(new $Z(b,a,KBd,null),a.Kf())}};_.Rd=kNd;_.tg=kNd;var $Cc=Mmd(434);n9c(631,91,{},GJ);_.hg=function(a){if(!!this.c&&!!this.b){Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){DJ(this,a)};_.og=function(a){var b,c,d;if(!(!!this.c&&!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))*TBd)){EJ(this);return}Jl(this,a.c);if(!this.a){d=lad(gw(this.o.i,this.p),gw(this.o.i,this.b));yQ(this.o.f,new mE(this.o.i,dbc(this.c.e),0,d,D$b(new F$b,new Srd(vuc(quc(BYc,1),lyd,2338,0,[this.c]))).a,new ltd))}else{c=(b=iw(this.o.i,this.c.e),Q8b(this.a,b,this.p));sac(c.b,kH(c.b,new qad(c.c,c.a)))>$wnd.Math.abs(hw(this.o.i,LBd))&&yQ(this.o.f,new JD(this.c,fw(this.o.i,c)))}this.o.i.w.Hf();EJ(this)};_.rg=function(a){var b,c,d,e,f,g;if(!!this.c&&!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))*TBd){g=dT(this.o.i.j,this.c);b=a.Kf();if(!this.a){b.gl();g.rh(b,UBd);KHb(b,lad(this.p,this.b));g.qh(b);b.qe()}else{g.rh(b,UBd);d=(e=iw(this.o.i,this.c.e),Q8b(this.a,e,this.p));sac(d.b,kH(d.b,new qad(d.c,d.a)))>$wnd.Math.abs(hw(this.o.i,LBd))&&((V8b(),U8b)==this.c.b?VZ(new XZ((f=iw(this.o.i,this.c.e),Q8b(this.a,f,this.p)),a,KBd,null),b):VZ(new $Z((c=iw(this.o.i,this.c.e),Q8b(this.a,c,this.p)),a,KBd,null),b))}}};_.Rd=function(){EJ(this)};var _Cc=Mmd(631);n9c(855,91,{},KJ);_.eg=VMd;_.fg=function(a){var b;VG(this,a.c);b=Lu(this.o.i);!!MJ(this.a,b)&&oH(this,LJ(this.a,b))};_.ng=function(a){Jl(this,a.c);VG(this,a.c);!!MJ(this.a,Lu(this.o.i))||Ry(Lu(this.o.i).b)};_.rg=function(a){!!this.p&&!(Os(),Ns)&&a.Kf().tf(this.p,this.b,uBd,HJ)};var HJ;var aDc=Mmd(855);n9c(1736,1,VBd,OJ);_.Bg=function(a){return !!MJ(this,a)};_.Cg=function(a){return LJ(this,a)};var bDc=Mmd(1736);n9c(534,1,VBd,QJ);_.Bg=function(a){var b;b=this.a.Dg(a);return b!=null&&this.b.Bg(b)};_.Cg=function(a){return this.b.Cg(this.a.Dg(a))};var cDc=Mmd(534);n9c(879,1,{},RJ);_.Dg=function(a){return hy(a.b)?dsd(a.b.r).a.zd(0):null};var dDc=Mmd(879);n9c(880,1,{},SJ);_.Dg=function(a){return a.a?a.a.a:null};var eDc=Mmd(880);n9c(881,1,VBd,TJ);_.Bg=function(a){var b;return b=gdc(a),!!b&&lsd(b.b,this.b)};_.Cg=function(a){var b;return b=csd(this.b,XJ(this.a,Eqd(a.Vl(),this.b))),new rB(this.c,(Xrd(),new ksd(a)),b)};var fDc=Mmd(881);n9c(901,1,{},WJ);_.a=0;_.b=0;_.c=0;var gDc=Mmd(901);n9c(882,1,{},YJ);_.a=0;var hDc=Mmd(882);n9c(659,1,{},hK);_.b=false;_.c=0;var iDc=Mmd(659);n9c(1475,91,{},yK);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_]))};_.hg=function(a){Jl(this,a.c);VG(this,a.c);!rK(this)&&!sK(this)?Ry(Lu(this.o.i).b):cw(this.o.i,true);this.o.i.w.Hf()};_.kg=function(a){VG(this,a.c);xK(this,a.c)};_.og=function(a){var b;VG(this,a.c);b=vK(this);!!b&&yQ(this.o.f,new TB(this.o.i,b));this.d=null};_.rg=function(a){var b,c,d;d=wK(this);if(!!d&&!!this.p){if(sac(d,this.p)>$wnd.Math.abs(a.ae(2.31))){b=tK(this,this.p,Aac(d,this.p));c=new dY(d,b,new EF(d,this.p),TBd,this.a?(RTb(),MTb):(RTb(),NTb),a)}else{c=new aY(d,this.p,TBd,this.a?(RTb(),MTb):(RTb(),NTb),a)}c.rh(a.Kf(),KBd)}};_.a=false;var jDc=Mmd(1475);n9c(785,202,{},CK);_.fg=function(a){var b,c,d;if(this.d){this.d=false;this.c=null;cw(this.o.i,true);this.o.i.w.Hf()}else if(!this.c){VG(this,a.c);b=LG(this);if(iK(b,this.o.i,this.b)&&DK(this.i,EK(dT(this.o.i.j,b)))>1){this.c=new GK(LG(this));this.o.i.w.Hf()}else{c=NG(this);if(c){d=u0b(this.f,c);!!d&&yQ(this.o.f,new mB(c,d))}}!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf()}else{this.c=null;cw(this.o.i,true);this.o.i.w.Hf()}};_.hg=function(a){if(this.d){this.d=false;this.c=null;cw(this.o.i,true)}else{Jl(this,a.c);!!this.k&&this.k.hg(a)}!!this.c&&(!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true),this.o.i.w.Hf())};_.kg=function(a){var b;this.d&&(this.d=false);b=BK(this,a);if(b){VG(this,a.c);!!this.c||hy(Lu(this.o.i).b)?bH(this,this.a):iy(Lu(this.o.i).b)?bH(this,this.a):jy(Lu(this.o.i).b)?bH(this,(!this.e&&(this.e=new MK(this.o)),this.e)):bH(this,this.a);!!this.k&&this.k.kg(b);if(this.c){Jl(this,a.c);!!this.k&&this.k.hg(a);this.c=null;cw(this.o.i,true)}!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf()}else{this.d=true}this.o.i.w.Hf()};_.lg=function(a){this.d&&(this.d=false);!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf();!!this.k&&this.k.lg(a)};_.mg=function(a){this.d&&(this.d=false);!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf();this.p=null;!!this.k&&this.k.mg(a)};_.ng=function(a){this.d&&(this.d=false);if(!this.c){VG(this,a.c);!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf();this.o.i.w.Hf()}};_.og=sNd;_.qg=function(){Ry(this.o.i.A);_G(this)};_.rg=function(a){var b,c;if(this.c){c=LG(this);Uo(this.c,oK(a,dT(this.o.i.j,c),kK(c,this.o.i,this.b)))}else{b=LG(this);iK(b,this.o.i,this.b)&&DK(this.i,EK(dT(this.o.i.j,b)))>1&&!(T(this.k,this.a)&&!!this.a.d)?qK(a,dT(this.o.i.j,LG(this)).oh()):!!this.k&&WG(this.k,a)}};_.tg=function(){this.c=null;cw(this.o.i,true);cH(this)};_.b=false;_.c=null;_.d=false;var lDc=Mmd(785);n9c(1317,1,{},GK);_.b=null;var kDc=Mmd(1317);n9c(1682,1,{},IK);_.a=0;var mDc=Mmd(1682);n9c(699,91,{},MK);_.hg=function(a){Ry(Lu(this.o.i).b);Jl(this,a.c);this.a?(this.b=true):(this.b=false);this.o.i.w.Hf()};_.kg=function(a){LK(this,a)};_.og=function(a){var b;b=KK(this,a.c);this.b&&b!=null&&$wnd.Math.abs(b-this.a.a.f)>0.01&&yQ(this.o.f,new nB(this.a.a,b));this.a=null;this.b=false};_.rg=function(a){var b,c,d,e;if(this.b&&!!this.p){e=KK(this,this.p);if(this.p){c=a.Kf();d=dT(this.o.i.j,this.a.a);d.rh(c,UBd);b=new aY(this.a.e,this.a.f,e,this.a.a.e,a);b.c.b?(!b.e&&((RTb(),OTb)==b.i?(b.e=new YX(b.b)):(b.e=new XX)),b.e).hi(c,uBd,b.c.c,b.c.b):(!b.e&&((RTb(),OTb)==b.i?(b.e=new YX(b.b)):(b.e=new XX)),b.e).ii(c,uBd,b.c.c,b.c.d)}}};_.a=null;_.b=false;var oDc=Mmd(699);n9c(2101,1,{},NK);_.b=0;_.c=0;var nDc=Mmd(2101);n9c(1618,202,{},PK);_.fg=function(a){VG(this,a.c);!Sx(Lu(this.o.i).b)&&!hy(Lu(this.o.i).b)&&!!this.k&&this.k.fg(a)};_.kg=function(a){VG(this,a.c);OK(this)?bH(this,this.b):hy(Lu(this.o.i).b)||iy(Lu(this.o.i).b)||my(Lu(this.o.i).b)||ky(Lu(this.o.i).b)?bH(this,this.a):bH(this,this.c);Ry(Lu(this.o.i).b);!!this.k&&this.k.kg(a)};_.og=function(a){!!this.k&&this.k.og(a);if(!FH(this.a,this.k)){Ry(this.o.i.A);bH(this,this.a)}};_.rg=lNd;var pDc=Mmd(1618);n9c(783,91,{});_.Eg=function(a){this.d.Jg(a,this.b)};_.hg=mNd;_.ig=function(a){if(a==27&&this.c){SK(this);this.o.i.w.Hf();return true}return false};_.kg=function(a){Jl(this,a.c);this.e=a.c;this.d.Kg(this.e)};_.og=nNd;_.qg=function(){ex(Mu(this.o.i),this.eg());SK(this)};_.Hg=wMd;_.rg=function(a){if(this.c){this.Eg(a);this.Hg(a)}};_.tg=function(){SK(this)};_.c=false;var JDc=Mmd(783);n9c(784,783,{});_.Gg=function(a){return new uM(this,a.i)};var GDc=Mmd(784);n9c(902,784,{},aL);_.Fg=function(a){XK(this,a)};_.eg=function(){return new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),q_]))};_.hg=mNd;_.og=nNd;_.Hg=function(a){$K(this,a)};var rDc=Mmd(902);n9c(1822,902,{},iL);_.Fg=function(a){var b,c,d,e;b=dsd(a.r);if(!(b.b.vd()<2||aVb(this.o.i.C,b))){return}c=jL(b);b.b.vd()>2&&!!c?(e=new By,rx(e,fL(this,b,c)),yQ(this.o.f,new PC(this.o.i,e)),undefined):hL(this,dsd(a.r))?(d=gL(this,b),yQ(this.o.f,new PC(this.o.i,y$b(new F$b,new Srd(vuc(quc(xWc,1),lyd,715,0,[d]))).a))):XK(this,a)};_.Hg=function(a){var b,c,d,e,f,g;e=hx(Lu(this.o.i));c=dsd(e.r);if(!(c.b.vd()<2||aVb(this.o.i.C,c))){return}b=jL(c);f=a.Kf();if(c.b.vd()>2&&!!b){d=new gs(c);_r(d,b);if(ZK(this,x$b(new F$b,d).a)){return}g=fL(this,c,b);dT(this.o.i.j,g).rh(f,KBd)}else !this.d.Ig().sd()&&c.b.vd()==2&&Zrd(c.a.zd(0).Ml(),c.a.zd(1).Ml())&&Zrd(c.a.zd(0).Ul(),c.a.zd(1).Ul())?dT(this.o.i.j,gL(this,c)).rh(f,KBd):$K(this,a)};var qDc=Mmd(1822);n9c(2169,91,{},lL);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)]))};_.fg=function(a){VG(this,a.c);Sx(Lu(this.o.i).b)||ny(Lu(this.o.i).b)?kL(this,a.c):ly(Lu(this.o.i).b)&&yQ(this.o.f,new DD(this.o.i,B$b(new F$b,new Srd(vuc(quc(jXc,1),lyd,1005,0,[QG(this)]))).a));this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();this.o.i.w.Hf()};_.hg=function(a){if(this.a){Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();VG(this,a.c);ly(Lu(this.o.i).b)&&(this.a=a.c)};_.ng=function(a){this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();Jl(this,a.c);VG(this,a.c)};_.og=function(a){var b;!!this.a&&!!this.p&&sac(this.p,this.a)>10&&ly(Lu(this.o.i).b)&&(b=lad(gw(this.o.i,this.p),gw(this.o.i,this.a)),yQ(this.o.f,new mE(this.o.i,new pad,0,b,B$b(new F$b,new Srd(vuc(quc(jXc,1),lyd,1005,0,[QG(this)]))).a,new ltd)));this.o.i.w.Hf()};_.qg=function(){this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[u_])))};_.rg=function(a){var b,c,d,e;if(!!this.a&&!!this.p&&sac(this.p,this.a)>10&&ly(Lu(this.o.i).b)){d=a.Kf();e=QG(this);c=dT(this.o.i.j,e);c.rh(d,UBd);b=new f2b(e.a);e2b(b,a._d(this.p));dT(this.o.i.j,b).qh(d)}};_.Rd=oNd;_.tg=oNd;var sDc=Mmd(2169);n9c(541,10,{541:1,3:1,11:1,10:1},pL);_.a=false;var mL,nL;var tDc=Nmd(541,Q5c,qL);n9c(1740,91,{},HL);_.eg=function(){return !this.b&&(this.b=new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_,t_,w_]))),this.b};_.fg=function(a){var b,c,d;VG(this,a.c);if(a.d){hy(Lu(this.o.i).b)?yQ(this.o.f,new sA(LG(this),this.o.i)):my(Lu(this.o.i).b)&&yQ(this.o.f,new DD(this.o.i,C$b(new F$b,new Srd(vuc(quc(oXc,1),lyd,717,0,[SG(this)]))).a))}else{if(YG(this)){IL(this.d,(oL(),nL));GL(this,hx(Lu(this.o.i)));PL(this.d.a.c,RG(this).a,this.d.a.c.a);c=new MQb(this.d);nEb(new pEb(c.a))}else if(hy(Lu(this.o.i).b)){IL(this.d,(oL(),mL));GL(this,hx(Lu(this.o.i)));b=dsd(this.a.r).a.zd(0);if(kvc(b,93)){PL(this.d.a.c,b.b,this.d.a.c.a);c=new MQb(this.d);nEb(new pEb(c.a))}else{DL(this)}}else if(Sx(Lu(this.o.i).b)){d=new I3b(uL(this,0));pTb(d,gw(this.o.i,a.c));yQ(this.o.f,new BC(this.o.i,d))}}EL(this);this.o.i.w.Hf()};_.hg=function(a){var b;if(CL(this,a.c)){Jl(this,a.c);if(!this.f){ex(Mu(this.o.i),(!this.e&&(this.e=new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),s_)]))),this.e));b=kbc(this.c,a.c);BL(this,b)}this.o.i.w.Hf()}};_.kg=function(a){this.c=a.c;VG(this,a.c);if(YG(this)){this.f=null;this.c=a.c}else if(hy(Lu(this.o.i).b)){this.f=LG(this);this.c=jw(this.o.i,LG(this).Lh())}Ry(Lu(this.o.i).b)};_.ng=function(a){ex(Mu(this.o.i),(!this.b&&(this.b=new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_,t_,w_]))),this.b));VG(this,a.c);!iy(Lu(this.o.i).b)&&!hy(Lu(this.o.i).b)&&!YG(this)&&!my(Lu(this.o.i).b)&&Ry(Lu(this.o.i).b);this.o.i.w.Hf()};_.og=function(a){CL(this,a.c)&&(!this.f?tL(this,a.c):FL(this,a.c));ex(Mu(this.o.i),(!this.b&&(this.b=new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_,t_,w_]))),this.b));EL(this);this.o.i.w.Hf()};_.rg=function(a){var b,c,d,e;if(!!this.c&&!!this.p){c=a.Kf();if(!this.f){e=kbc(this.c,this.p);c.uf(e,(QQ(),IQ))}else{d=new I3b(uL(this,0));b=new S2b((s6b(),m6b),this.f,d);pTb(d,AL(this,this.p));dT(this.o.i.j,b).rh(c,KBd);dT(this.o.i.j,d).rh(c,KBd)}}};_.Rd=function(){EL(this)};_.tg=function(){Dx(this.a);EL(this)};_.f=null;var vDc=Mmd(1740);n9c(1741,1,{},JL);_.md=function(){var a,b;return a=mnd(this.a.c.b),b=LL(this.a)==(oL(),mL)?(qmd(),this.a.c.a?true:false):null,new KL(a,b)};_.ob=function(a){Dx(this.b.a);OL(this.b.d.a.c)};_.pb=function(a){var b,c;b=(c=new QL,PL(c,a.b.a,a.a==null||a.a),c);PL(this.b.d.a.c,b.b,b.a);DL(this.b)};var uDc=Mmd(1741);n9c(533,1,{533:1},KL);var xDc=Mmd(533);n9c(2045,1,{},NL);var wDc=Mmd(2045);n9c(542,1,{},QL);_.a=false;_.b=0;var yDc=Mmd(542);n9c(1647,202,{},TL);_.fg=function(a){VG(this,a.c);iy(Lu(this.o.i).b)?RL(this,YA(this.o.i,MG(this))):my(Lu(this.o.i).b)&&!a.d?RL(this,ZA(this.o.i,SG(this))):!!this.k&&this.k.fg(a)};_.hg=function(a){var b;if(this.k!=this.d&&this.c){VG(this,this.b);Ry(this.o.i.A);az(this.o.i.A,(b=new By,YG(this)?(b=RG(this)):hy(Lu(this.o.i).b)?(b=Ey(LG(this))):my(Lu(this.o.i).b)?(b=Ey(SG(this).a)):iy(Lu(this.o.i).b)&&(b=Ey(MG(this).c)),b));bH(this,this.d);this.k.kg(new TE(this.b))}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){Ry(this.o.i.A);this.b=a.c;VG(this,a.c);(hy(Lu(this.o.i).b)&&a.d||iy(Lu(this.o.i).b)||my(Lu(this.o.i).b)||YG(this))&&(this.c=true);!!this.k&&this.k.kg(a)};_.og=function(a){!!this.k&&this.k.og(a);Ry(this.o.i.A);SL(this)};_.qg=function(){_G(this);ML(this.a.d.a,(oL(),nL));PL(this.a.d.a.c,-1,true);ML(this.a.d.a,mL);this.a.d.a.c.a&&PL(this.a.d.a.c,-1,true)};_.Rd=function(){SL(this)};_.b=null;_.c=false;var zDc=Mmd(1647);n9c(521,91,{},aM);_.fg=function(a){WL(this)};_.hg=function(a){!!this.f&&this.c&&_L(this,a.c)};_.kg=function(a){if(!this.f&&this.c){this.f=a.c;Jl(this,a.c);this.o.i.w.Hf()}};_.og=function(a){!!this.f&&this.c&&_L(this,a.c);XL(this)};_.qg=function(){ex(Mu(this.o.i),(e_(),d_));XL(this)};_.Rd=function(){XL(this)};_.tg=function(){$L(this);!!this.d&&Mqd(cM(this.d).c)!=0&&YL(this.d);XL(this)};_.a=null;_.c=false;_.f=null;var UL;var BDc=Mmd(521);n9c(1567,1,Vyd,bM);_.eb=function(){var a;if(this.a.c&&!!this.a.d&&!!this.a.d.a){a=this.a.b;this.a.b=kH(this.a.b,this.a.i);this.a.b=new qad(this.a.b.a%kBd,this.a.b.b%kBd);this.a.b.a>jBd==a.a>jBd&&this.a.b.b>jBd==a.b>jBd&&(this.a.o.i.j.c=true);this.a.a=new TD(this.a.d.a,this.a.b.a,this.a.b.b,cM(this.a.d));PD(this.a.a);this.a.o.i.w.Hf()}};var ADc=Mmd(1567);n9c(850,1,{},fM);_.a=null;var CDc=Mmd(850);n9c(620,91,{},qM);_.hg=function(a){var b;if(!!this.d&&!!this.d.a&&!!this.a&&this.e!=null&&this.f!=null){Jl(this,a.c);b=mM(this,a.c,a.d);if(b.a!=this.e||b.b!=this.f){this.e=b.a;this.f=b.b;this.o.i.j.c=true;PD(new TD(this.d.a,this.e,this.f,cM(this.d)))}this.o.i.w.Hf()}};_.kg=function(a){if(!this.a){this.a=a.c;Jl(this,a.c);this.e=0;this.f=0;ZL(this,this.d);this.o.i.w.Hf()}};_.og=function(a){var b;if(!!this.d&&!!this.d.a&&!!this.a&&this.e!=null&&this.f!=null){Jl(this,a.c);b=mM(this,a.c,a.d);if(b.a!=this.e||b.b!=this.f){this.e=b.a;this.f=b.b;this.o.i.j.c=true}$wnd.Math.abs(this.e)>HBd||$wnd.Math.abs(this.f)>HBd?yQ(this.o.f,new TD(this.d.a,this.e,this.f,cM(this.d))):PD(new TD(this.d.a,0,0,cM(this.d)))}this.o.i.w.Hf();!!this.d&&dM(this.d);nM(this)};_.qg=function(){ex(Mu(this.o.i),(e_(),d_));!!this.d&&dM(this.d);nM(this)};_.rg=function(a){var b,c,d,e,f,g,h,j,l;if(!!this.p&&!!this.a){d=a.Pf();kM(this,a,this.a.a,5,d.c);kM(this,a,this.a.a,-5,0);lM(this,a,this.a.b,5,d.a);lM(this,a,this.a.b,-5,0);e=this.p.a-this.a.a;f=this.p.b-this.a.b;g=c9c(P8c($wnd.Math.round(e/15)));h=c9c(P8c($wnd.Math.round(f/15)));j=this.a.a+g*15;l=this.a.b+h*15;HHb(a.Kf(),this.k,vuc(quc(T1c,1),tBd,5,0,[new qad(0,l),new qad(10,l)]));HHb(a.Kf(),this.b,vuc(quc(T1c,1),tBd,5,0,[new qad(j,0),new qad(j,10)]));GHb(a.Kf(),this.a,3,false,this.c);b=kH(this.p,new qad(-2,0));c=kH(this.p,new qad(0,-2));a.Kf().tf(kH(this.a,new qad(0,5)),'(0\xB0,0\xB0)',_Bd,hM);a.Kf().tf(b,e9c(P8c($wnd.Math.round(-this.e*$Bd)))+UAd,aCd,iM);a.Kf().tf(c,e9c(P8c($wnd.Math.round(-this.f*$Bd)))+UAd,'firebrick',gM)}};_.Rd=function(){nM(this)};_.tg=function(){!!this.d&&Mqd(cM(this.d).c)!=0&&YL(this.d);nM(this);!!this.d&&dM(this.d)};_.a=null;_.e=null;_.f=null;var gM,hM,iM;var DDc=Mmd(620);n9c(1318,202,{},rM);_.fg=function(a){WL((!this.a&&(this.a=new aM(this.o,this.c)),this.a));bH(this,this.k==(!this.a&&(this.a=new aM(this.o,this.c)),this.a)?(!this.b&&(this.b=new qM(this.o)),this.b):(!this.a&&(this.a=new aM(this.o,this.c)),this.a))};_.tg=function(){this.k==(!this.a&&(this.a=new aM(this.o,this.c)),this.a)&&bH(this,(!this.b&&(this.b=new qM(this.o)),this.b));cH(this)};var EDc=Mmd(1318);n9c(1315,1,{});_.Ig=KMd;_.Jg=function(a,b){var c,d,e;if(this.b.a.length<2){return}c=this.b.a[0];d=Yr(this.b,this.b.a.length-1);e=new gs(this.b);$r(e,this.b.a.length-1);HHb(a.Kf(),b,ds(e,suc(T1c,tBd,5,0,0,1)));HHb(a.Kf(),(QQ(),LQ),vuc(quc(T1c,1),tBd,5,0,[c,d]))};_.Kg=function(a){this.b.a=suc(_5c,lyd,1,0,5,1);this.c=a};_.Lg=function(a){var b,c;Wr(this.b,a);c=new OF(this.a.e,this.c,a);b=new By;RS(this.d.j,b,c);sM(this,b);this.c=a};var aEc=Mmd(1315);n9c(1316,1315,{},uM);var FDc=Mmd(1316);n9c(809,783,{});_.Gg=function(a){return new wM(this,a.i)};var IDc=Mmd(809);n9c(1404,1,{});_.Ig=function(){var a,b,c;if(!this.b){return Xrd(),Xrd(),Urd}b=this.b.b;c=this.b.c;a=this.b.a;return new Srd(vuc(quc(T1c,1),tBd,5,0,[b,kH(b,new qad(c,0)),kH(b,new qad(c,a)),kH(b,new qad(0,a))]))};_.Jg=function(a,b){if(!this.b){return}a.Kf().uf(this.b,b)};_.Kg=function(a){this.b=null};_.Lg=function(a){this.b=kbc(this.a.e,a);gx(Lu(this.c));cx(Mu(this.c),this.b)};_.b=null;var bEc=Mmd(1404);n9c(1405,1404,{},wM);var HDc=Mmd(1405);n9c(828,91,{});_.Mg=function(a,b){VT();$T(a.Kf(),this.o.i.j,b,UBd,!!a.pe(),null)};_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_]))};_.kg=function(a){cw(this.o.i,false)};_.og=function(a){cw(this.o.i,true);this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_])));cw(this.o.i,false);this.Rd()};_.rg=function(a){AM(this,a);yM(this,a)};_.Rg=function(a,b){VT();$T(b.Kf(),this.o.i.j,a,null,!!b.pe(),null)};_.Rd=function(){BM(this)};_.tg=function(){this.Rd();cw(this.o.i,true)};_.f=null;var KDc=Mmd(828);n9c(1565,91,{},HM);_.hg=function(a){var b;b=EM(this,a.c);!!b&&!a.d?yN(this.a,b):mN(this.b,gw(this.o.i,a.c));this.o.i.w.Hf()};_.tg=function(){!!this.b&&(this.b.c=false,undefined)};var LDc=Mmd(1565);n9c(507,828,{},VM);_.Mg=function(a,b){var c;VT();$T(a.Kf(),this.o.i.j,b,UBd,!!a.pe(),null);c=a.Kf();YG(this)?eT(this.o.i.j,RG(this)).rh(c,UBd):XG(this)&&eT(this.o.i.j,OG(this)).rh(c,UBd)};_.Ng=function(){var a,b;if(this.a){return new By}a=new By;qx(a,Lu(this.o.i).b);qx(a,this.o.i.A);b=new qF(a,this.o.i.C);a=pF(b);return a};_.Og=function(){var a,b,c,d,e,f,g,h;b=new es;h=aD(this.f);c=gw(this.o.i,this.b);d=gw(this.o.i,this.p);e=new qad(d.a-c.a,d.b-c.b);for(g=new qsd(h.b.Qb());g.b.Rc();){f=g.b.Sc();a=jw(this.o.i,kH(f[1].Lh(),e));b.a[b.a.length]=a}return b};_.Pg=function(){var a,b,c,d;b=new es;for(d=new qsd(aD(this.f).b.Qb());d.b.Rc();){c=d.b.Sc();a=jw(this.o.i,c[0].Lh());b.a[b.a.length]=a}return b};_.Qg=function(){var a,b;a=new By;qx(a,Lu(this.o.i).b);qx(a,this.o.i.A);b=new xF(a,this.o.i.C);a=vF(b);this.a||IM(a);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_])));return a};_.hg=function(a){if(!KM(this,a.c)){return}!!this.b&&!this.c&&UM(this,this.b);RM(this,a);this.o.i.w.Hf()};_.kg=function(a){QM(this,a)};_.og=function(a){var b,c,d,e,f,g;if(!KM(this,a.c)){return}RM(this,a);b=gw(this.o.i,this.b);c=gw(this.o.i,a.c);d=new qad(c.a-b.a,c.b-b.b);this.a?(e=this.f,f=QVb(this.o.i.C,Hy(this.o.i.A)),Gy(f,d),eD(e,dsd(f.n)),yE(bD(e),e.b),g=new wB,uB(uB(g,RC(this.o.i,f)),new uC(this.o.i,this.o.i.C,bD(e))),yQ(this.o.f,vB(g,this.o.i)),undefined):yQ(this.o.f,SN(this.o.i.C,new mE(this.o.i,new pad,0,d,this.o.i.A,bD(this.f))));TM(this);this.o.i.w.Hf()};_.rg=function(a){!!this.c&&(AM(this,a),yM(this,a))};_.Rg=function(a,b){var c;VT();$T(b.Kf(),this.o.i.j,a,null,!!b.pe(),null);this.a||SM(this,a,b,mad(this.c,new qad(-1,-1)));c=b.Kf();YG(this)&&eT(this.o.i.j,RG(this)).qh(c);XG(this)&&eT(this.o.i.j,OG(this)).qh(c)};_.Rd=function(){TM(this)};_.sg=function(a){this.c?a.Bf(this.a?(Ez(),zz):(Ez(),Bz)):a.Bf((Ez(),Az))};_.Sg=function(a){KHb(a,this.c)};_.a=false;var MDc=Mmd(507);n9c(1314,784,{},WM);_.Fg=pNd;_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,t_,x_,r_,k_,u_,z_,v_,q_,y_]))};_.hg=mNd;_.og=qNd;var NDc=Mmd(1314);n9c(1403,809,{},XM);_.Eg=function(a){var b;if(this.p){b=new ibc(this.e,this.p.a-this.e.a,this.p.b-this.e.b);a.Kf().uf(b,(QQ(),OQ))}};_.Fg=pNd;_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),s_),y_]))};_.og=qNd;var ODc=Mmd(1403);n9c(1566,828,{},cN);_.Ng=rNd;_.Og=function(){var a,b,c,d;d=aD(this.f);a=new es;for(c=new qsd(d.b.Qb());c.b.Rc();){b=c.b.Sc();Wr(a,jw(this.o.i,AF(new BF(uN(this.a.e.b),this.b),b[1].Lh())))}return a};_.Pg=function(){var a,b,c,d;d=aD(this.f);a=new es;for(c=new qsd(d.b.Qb());c.b.Rc();){b=c.b.Sc();Wr(a,jw(this.o.i,b[0].Lh()))}return a};_.Qg=rNd;_.hg=function(a){var b,c,d,e,f;c=gw(this.o.i,a.c);cw(this.o.i,false);d=tac(uN(this.a.e.b),c,sac(uN(this.a.e.b),uN(this.c.b)));yN(this.c,d);f=lad(this.d,uN(this.a.e.b));b=lad(c,uN(this.a.e.b));bN(this,($wnd.Math.atan2(b.b,b.a)-$wnd.Math.atan2(f.b,f.a))%kBd,a.d);e=$M(this,a.d);En(this.a,e);CM(this,new BF(uN(this.a.e.b),e),false);this.o.i.w.Hf()};_.kg=function(a){cw(this.o.i,false);this.a.a=0;this.e='0';CM(this,new BF(uN(this.a.e.b),0),false);this.o.i.w.Hf()};_.og=function(a){var b,c;if(this.a.a!=null){cw(this.o.i,true);b=uN(this.a.e.b);c=$M(this,a.d);yQ(this.o.f,new mE(this.o.i,b,c,new pad,this.o.i.A,bD(this.f)))}_M(this);this.o.i.w.Hf()};_.rg=function(a){var b;if(this.a.a!=null&&this.e!=null){AM(this,a);yM(this,a);b=new p0((pR(),jR),(NT(),DT),true);a.Kf().tf(kH(a.ce(uN(this.c.b)),new qad(0,-20)),this.e,bCd,b)}};_.Rd=function(){_M(this)};_.Sg=function(a){IHb(a,jw(this.o.i,uN(this.a.e.b)),this.a.a)};_.tg=function(){_M(this);_M(this);cw(this.o.i,true)};_.b=0;var PDc=Mmd(1566);n9c(810,1,{194:1,143:1,13:1},oN);_.Zd=function(){nN(this)};_.Ud=function(a){nN(this)};_.a=null;_.c=false;_.d=0;var WDc=Mmd(810);n9c(1406,1,{},qN);_.md=function(){return $z(this.a.i.A)};var QDc=Mmd(1406);n9c(1407,1,{},rN);_.md=function(){return qmd(),uN(this.a)!=null?true:false};var RDc=Mmd(1407);n9c(1408,1,{},sN);_.md=function(){return qmd(),Tx(this.a.i.A)?true:false};var SDc=Mmd(1408);n9c(1409,1,{},tN);_.md=function(){var a;return a=iN(this.a),gw(this.a.i,lad(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(0,a.a/2+30)))};var TDc=Mmd(1409);n9c(619,1,{},wN);_.md=function(){return uN(this)};_.b=false;var UDc=Mmd(619);n9c(811,1,{},zN);_.c=0;var VDc=Mmd(811);n9c(1474,202,{},DN);_.kg=function(a){hN(this.b,a.c)?(this.b.c=true,undefined):(this.b.c=false,undefined);CN(this,a);!!this.k&&this.k.kg(a)};_.ng=function(a){hN(this.b,a.c)?(this.b.c=true,undefined):(this.b.c=false,undefined);this.o.i.w.Hf()};_.og=sNd;_.rg=function(a){!!this.k&&WG(this.k,a);kN(this.b,a)};var XDc=Mmd(1474);n9c(498,202,{},EN,FN);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,k_,z_,u_,v_,x_,w_,y_]))};_.fg=function(a){if(AN(this.i,a)){return}bH(this,this.a);!!this.k&&this.k.fg(a)};_.gg=function(a){bH(this,this.a);!!this.k&&this.k.gg(a)};_.hg=function(a){if(!this.b){return}if(this.k==this.a){if(jy(Lu(this.o.i).b)&&(Sx(this.o.i.A)||!Tx(this.o.i.A))){Ex(this.o.i.A,NG(this))||Ry(this.o.i.A);bH(this,(!this.f&&(this.f=new MK(this.o)),this.f));LK((!this.f&&(this.f=new MK(this.o)),this.f),new UE(this.b,a.a,a.d,a.b))}else if(gy(Lu(this.o.i).b)&&KO((!this.c&&(this.c=new QO(this.o)),this.c),KG(this),this.b)){bH(this,(!this.c&&(this.c=new QO(this.o)),this.c));NO((!this.c&&(this.c=new QO(this.o)),this.c),new UE(this.b,a.a,a.d,a.b))}else if(ny(Lu(this.o.i).b)&&CJ(this.e,TG(this),this.b)){bH(this,this.e);FJ(this.e,TG(this),this.b);DJ(this.e,new UE(this.b,a.a,a.d,a.b))}else{bH(this,this.d);QM(this.d,new UE(this.b,a.a,a.d,a.b))}}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){this.b=a.c;if(AN(this.i,a)){bH(this,this.i)}else{VG(this,a.c);Sx(Lu(this.o.i).b)?bH(this,this.j):bH(this,this.a)}!!this.k&&this.k.kg(a)};_.ng=function(a){AN(this.i,a)?bH(this,this.i):bH(this,this.a);Jl(this,a.c);!!this.k&&this.k.ng(a)};_.og=function(a){this.b=null;!!this.k&&this.k.og(a);bH(this,this.a);this.o.i.w.Hf()};_.qg=function(){_G(this);cw(this.o.i,true)};_.rg=function(a){!!this.k&&WG(this.k,a);this.k==this.a&&BN(this.i,a)};_.tg=function(){cw(this.o.i,true);cH(this)};_.b=null;var YDc=Mmd(498);n9c(1473,91,{},KN);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,t_,r_,k_,x_,u_,z_,v_,w_,y_]))};_.fg=function(a){var b;a.d||Ry(this.o.i.A);b=JN(this,a);dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd()||IN(this,a,Lu(this.o.i).b)};_.gg=function(a){var b;a.d||Ry(this.o.i.A);b=JN(this,a);if(!(dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd())){b=HN(b);a.d&&Fx(this.o.i.A,b)?Xy(this.o.i.A,b):az(this.o.i.A,b)}};_.ng=function(a){JN(this,a);this.o.i.w.Hf()};_.sg=function(a){a.Bf(!Sx(this.o.i.A)&&!Sx(Lu(this.o.i).b)&&Fx(this.o.i.A,Lu(this.o.i).b)?(Ez(),Bz):(Ez(),Az))};var ZDc=Mmd(1473);n9c(2065,wBd,xBd,ON);_.Tf=function(){MN(this)};_.Uf=function(){NN(this)};var _Dc=Mmd(2065);n9c(2066,wBd,xBd,TN);_.Tf=function(){this.a.eb();!!this.b&&MN(this.b)};_.Uf=function(){this.a.Uf();!!this.b&&NN(this.b)};var $Dc=Mmd(2066);n9c(2213,wBd,xBd,UN);_.Tf=function(){XN(this.b,this.c);$v(this.d)};_.Uf=function(){XN(this.b,this.a);$v(this.d)};_.a=0;_.c=0;var cEc=Mmd(2213);n9c(883,1,VBd,YN);_.Bg=function(a){return P4b(a)==(V4b(),S4b)&&!!VN(a)&&WN(a)!=0};_.Cg=function(a){return _N(this.a,a,WN(a)+this.b)};_.b=0;var dEc=Mmd(883);n9c(884,1,{},aO);var eEc=Mmd(884);n9c(417,1,dCd);_.sb=function(a){return qmd(),this.Ug(a)&&this.Tg(a)?true:false};_.Ug=function(a){return hO(this,P4b(a))};var mEc=Mmd(417);n9c(837,417,dCd,oO);_.Tg=function(a){var b;return b=WN(a),bt(PGb(this.a,b),new qO(this,a)),true};_.Ug=function(a){return P4b(a)==(V4b(),S4b)&&!!VN(a)}; +_.Ag=function(a){var b,c;if(!dsd(a.r).a.sd()){c=fO(this,a);if(c){b=WN(c);bt(PGb(this.a,b),new qO(this,c));return true}if(!gO(this,dsd(a.r))){kO(this,new Z1(V6b(dsd(a.r),dsd(Vw(this.c).n))));return true}}return false};var hEc=Mmd(837);n9c(1513,1,Xyd,pO);_.tb=function(a){nO(this.a,this.b,a)};var fEc=Mmd(1513);n9c(838,1,Xyd,qO);_.tb=function(a){mO(this.a,this.b,a.a)};var gEc=Mmd(838);n9c(1738,809,{},sO);_.Fg=function(a){this.a.Ag(a)};_.eg=function(){return new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),q_,y_]))};_.fg=function(a){var b,c,d;VG(this,a.c);d=rO(this);for(c=d.Qb();c.Rc();){b=c.Sc();if(iO(this.a,b)){break}}gx(Lu(this.o.i));this.o.i.w.Hf()};_.ng=function(a){Jl(this,a.c);VG(this,a.c);rO(this).sd()&&gx(Lu(this.o.i));this.o.i.w.Hf()};var iEc=Mmd(1738);n9c(636,417,dCd,xO);_.Tg=function(a){return bt(Xob(this.b,a),new zO(this,a)),true};_.Ag=function(a){var b;if(!dsd(a.r).a.sd()){if(!this.a){b=fO(this,a);if(b){bt(Xob(this.b,b),new zO(this,b));return true}}if(!gO(this,dsd(a.r))){tO(this,new Z1(V6b(dsd(a.r),dsd(Vw(this.c).n))));return true}}return false};_.a=false;var lEc=Mmd(636);n9c(1512,1,Xyd,yO);_.tb=function(a){uO(this.a,this.b,a)};var jEc=Mmd(1512);n9c(836,1,Xyd,zO);_.tb=function(a){vO(this.a,this.b,a)};var kEc=Mmd(836);n9c(2158,1,{1006:1},EO);_.Vg=function(a){return BO(this,a)};_.a=false;var nEc=Mmd(2158);n9c(2229,1,{},FO);_.Wg=function(a,b){return hnd(a.Sl(),b.Sl())};_.V=qMd;var oEc=Mmd(2229);n9c(373,1,{},JO);_.b=0;var pEc=Mmd(373);n9c(379,91,{},QO);_.eg=jNd;_.hg=function(a){if(!!this.a&&!!this.b&&OO(this,a.c)){Jl(this,a.c);VG(this,MO(this,a.c));Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){NO(this,a)};_.og=function(a){var b,c;OO(this,a.c)&&Jl(this,a.c);if(!!this.a&&!!this.b){b=MO(this,a.c);VG(this,b);c=null;ny(Lu(this.o.i).b)&&(c=B6b(TG(this),HO(new JO(TG(this),lad(gw(this.o.i,new qad($wnd.Math.max(this.o.i.a.j.e.b*10,1),0)),gw(this.o.i,new qad(0,0))).a),gw(this.o.i,b))));!c&&(c=new C6b(gw(this.o.i,b)));yQ(this.o.f,SN(this.o.i.C,new RB(this.a,c,this.c)));this.o.i.w.Hf()}PO(this)};_.qg=function(){PO(this);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])))};_.rg=function(a){var b,c,d,e;if(!!this.a&&!!this.p&&!!this.b){c=a.Kf();dT(this.o.i.j,this.a).rh(c,UBd);b=LO(this,MO(this,this.p));d=this.c?b:jw(this.o.i,this.a.c.gn());e=this.c?jw(this.o.i,this.a.a.gn()):b;_X(new aY(d,e,0,this.a.d,a),c,uBd)}};_.Rd=tNd;_.tg=tNd;_.b=null;_.c=false;_.d=null;var qEc=Mmd(379);n9c(662,91,{},UO);_.eg=jNd;_.fg=function(a){var b;gy(Lu(this.o.i).b)&&yQ(this.o.f,(b=zD(this.o.i),new ED(this.o.i,Lu(this.o.i).b,b)));TO(this);this.o.i.w.Hf()};_.hg=function(a){Jl(this,a.c);Ry(Lu(this.o.i).b);VG(this,a.c);this.a=!a.d&&!ny(Lu(this.o.i).b);this.o.i.w.Hf()};_.ig=function(a){if(16==a){this.a=false;this.o.i.w.Hf();return true}return false};_.jg=function(a){if(16==a){this.a=true;this.o.i.w.Hf();return true}return false};_.kg=function(a){var b,c;TO(this);VG(this,a.c);b=gw(this.o.i,a.c);this.b=(c=null,ny(Lu(this.o.i).b)&&(c=B6b(TG(this),HO(new JO(TG(this),lad(gw(this.o.i,new qad($wnd.Math.max(this.o.i.a.j.e.b*10,1),0)),gw(this.o.i,new qad(0,0))).a),b))),!c&&(c=new C6b(b)),c);this.a=!a.d&&!ny(Lu(this.o.i).b)};_.og=function(a){var b,c,d,e;Jl(this,a.c);if(RO(this)){VG(this,this.p);this.a=!a.d&&!ny(Lu(this.o.i).b);c=this.b.gn();d=gw(this.o.i,this.p);this.a&&(d=gH(new iH(c,rac(c.a,c.b,0,d.a,d.b,0)),d));b=SO(this,d);yQ(this.o.f,(e=zD(this.o.i),SC(this.o.i,b,e)))}TO(this);this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));TO(this)};_.rg=function(a){var b,c,d,e,f,g,h;if(gy(Lu(this.o.i).b)){a.Mf(0.5);c=dT(this.o.i.j,KG(this)).Jh();GHb(a.Kf(),c,7*a.Yd(),false,new xT(false,NBd));a.Mf(1)}else if(ly(Lu(this.o.i).b)){a.Mf(0.5);c=dT(this.o.i.j,QG(this)).Jh();GHb(a.Kf(),c,7*a.Yd(),false,new xT(false,NBd));a.Mf(1)}else if(RO(this)){b=jw(this.o.i,this.b.gn());d=this.p;if(this.a){g=gw(this.o.i,b);h=gw(this.o.i,d);d=jw(this.o.i,gH(new iH(g,rac(g.a,g.b,0,h.a,h.b,0)),h))}else if(ny(hx(Lu(this.o.i)))){f=dsd(hx(Lu(this.o.i)).B).a.zd(0);d=jw(this.o.i,z8b(f,HO(new JO(f,lad(gw(this.o.i,new qad($wnd.Math.max(this.o.i.a.j.e.b*10,1),0)),gw(this.o.i,new qad(0,0))).a),gw(this.o.i,this.p))))}e=new aY(b,!d?this.p:d,0,this.c,a);_X(e,a.Kf(),KBd)}};_.Rd=uNd;_.tg=uNd;_.a=true;var rEc=Mmd(662);n9c(2097,91,{},YO);_.eg=function(){return new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)]))};_.hg=function(a){if(this.a){VG(this,a.c);hy(Lu(this.o.i).b)&&LG(this)!=this.a?Jl(this,jw(this.o.i,LG(this).Lh())):Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){XO(this);VG(this,a.c);hy(Lu(this.o.i).b)&&(this.a=LG(this))};_.og=function(a){var b,c,d;if(this.a){VG(this,a.c);if(hy(Lu(this.o.i).b)){c=LG(this);if(this.a!=c){b=VO(this,c);d=new _td;Ytd(d,(kcc(),Obc),mnd(b));yQ(this.o.f,new rB(this.o.i,new Srd(vuc(quc(tWc,1),zBd,49,0,[this.a,c])),d))}}}XO(this);this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)])));XO(this)};_.rg=function(a){var b;if(!!this.a&&!!this.p){b=new vT(false,3,false,XBd);HHb(a.Kf(),b,vuc(quc(T1c,1),tBd,5,0,[jw(this.o.i,this.a.Lh()),this.p]))}};_.Rd=vNd;_.tg=vNd;var sEc=Mmd(2097);n9c(511,202,{},_O);_.eg=function(){return ZO(this)};_.fg=function(a){VG(this,a.c);if(gy(Lu(this.o.i).b)){if(KO((!this.b&&(this.b=new QO(this.o)),this.b),KG(this),a.c)){Ry(Lu(this.o.i).b);$O(this);this.o.i.w.Hf();return}else{bH(this,(!this.c&&(this.c=new UO(this.o,this.f)),this.c))}}else{bH(this,bP(this.e))}!!this.k&&this.k.fg(a);$O(this);this.o.i.w.Hf()};_.hg=function(a){if(!this.a){return}if(this.k==(!this.c&&(this.c=new UO(this.o,this.f)),this.c)&&gy(Lu(this.o.i).b)&&KO((!this.b&&(this.b=new QO(this.o)),this.b),KG(this),this.a)){bH(this,(!this.b&&(this.b=new QO(this.o)),this.b));this.k.kg(new UE(this.a,a.a,a.d,a.b))}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){$O(this);VG(this,a.c);this.a=a.c;hy(Lu(this.o.i).b)?bH(this,(!this.d&&(this.d=new YO(this.o)),this.d)):ly(Lu(this.o.i).b)&&bH(this,bP(this.e));!!this.k&&this.k.kg(a)};_.ng=function(a){VG(this,a.c);Jl(this,a.c);!!this.k&&this.k.ng(a)};_.og=function(a){!!this.k&&this.k.og(a);Jl(this,a.c);$O(this)};_.Rd=function(){$O(this)};_.a=null;var vEc=Mmd(511);n9c(1497,1,{},cP);_.md=function(){return aP(this)};var uEc=Mmd(1497);n9c(1498,91,{},dP);var tEc=Mmd(1498);n9c(708,91,{});_.Xg=function(a){var b,c,d;if(a.d.c+a.e.b==2){c=new js(new Sqd(a));b=fP(c.a[0].yp(),c.a[1].yp());d=fP(c.a[0].Ok(),c.a[1].Ok());return eP(d,b)}return null};_.Yg=wMd;_.eg=yNd;_.fg=function(a){this.Rd();this.c=a.c;this.Yg(a);this.Rd()};_.hg=function(a){if(!!this.c&&(!!this.p||sac(this.c,a.c)>$wnd.Math.abs(hw(this.o.i,LBd))*0.5)){Jl(this,a.c);this.$g(a)}};_.ig=function(a){if(a==16){if(this.c){$P(gP(this));this.o.i.w.Hf()}return true}return false};_.jg=function(a){if(a==16){return true}return false};_.kg=function(a){this.Rd();VG(this,a.c);this.c=a.c;this.Zg(a)};_.ng=function(a){if(!this.c){VG(this,a.c);this.p=null}};_.og=function(a){!!this.c&&this.bh(a);this.Rd()};_.rg=function(a){!!this.c&&this._g(a)};_.Rd=function(){mP(this)};var wEc=Mmd(708);n9c(983,1,{983:1},qP);var xEc=Mmd(983);n9c(2200,1,{},uP);_.a=0.1;_.b=0.1;var zEc=Mmd(2200);n9c(2201,1,Vyd,vP);_.eb=function(){rP(this.a)};var yEc=Mmd(2201);n9c(2228,1,{},yP);var AEc=Mmd(2228);n9c(2204,708,{},BP);_.Yg=function(a){AP(this,a.c);zP(this,a.c);yQ(this.o.f,RC(this.o.i,gP(this)));Ry(Lu(this.o.i).b)};_.Zg=wNd;_.$g=wNd;_._g=function(a){var b,c,d;if(this.p){b=a.Kf();d=jw(this.o.i,dbc(gP(this).d.gh()));c=this.p;b.gl();jP(this,this.d,a);KHb(b,new qad(c.a-d.a,c.b-d.b));iP(this,this.d,a);WT(this.i,b,this.o.i.j,KBd,null);b.qe()}};_.ah=GNd;_.bh=function(a){AP(this,a.c);if(this.p){zP(this,a.c);hP(this);Ry(Lu(this.o.i).b)}};_.dh=function(){var a;a=aD(this.d);a.a.sd()||lP(this,a.a.zd(0)[0].Ki())};var BEc=Mmd(2204);n9c(2202,708,{},JP);_.Zg=function(a){this.b=LG(this);this.b.Kl()!=1&&SP(gP(this));this.o.i.w.Hf()};_.$g=function(a){if(this.b){this.a=true;GP(this,a);this.o.i.w.Hf()}};_._g=function(a){var b,c,d,e,f;if(this.b){e=lad(this.b.Lh(),XP(gP(this)).Lh());d=DP(this)-ZP(gP(this));c=(f=new jD(this.o.i),fD(f,dsd(this.o.i.C.n)),eD(f,gP(this).d.Me()),hD(f,new IF(new JF(e),new BF(kH(XP(gP(this)).Lh(),e),d))),f);jP(this,c,a);b=a.Kf();b.gl();KHb(b,lad(jw(this.o.i,this.b.Lh()),jw(this.o.i,XP(gP(this)).Lh())));IHb(b,jw(this.o.i,XP(gP(this)).Lh()),d);iP(this,c,a);kP(this,b,EP(this));b.qe()}};_.ah=function(a){return a[0]!=this.b&&a[1]!=this.b};_.Rd=function(){this.a=false;this.b=null;mP(this)};_.bh=function(a){if(this.b){this.a?GP(this,a):this.b.Kl()!=1&&SP(gP(this));IP(this);!aD(this.d).a.sd()||HP(this,this.b.Ki());hP(this);Ry(Lu(this.o.i).b)}};_.dh=tMd;_.a=false;var CEc=Mmd(2202);n9c(2203,708,{},PP);_.Xg=function(a){var b;b=gP(this);return eP(this.b,YP(b).vd()>0?YP(b).zd(0):null)};_.Zg=function(a){this.b=MG(this);this.o.i.w.Hf()};_.$g=function(a){!!this.b&&this.o.i.w.Hf()};_._g=function(a){var b,c,d,e,f,g,h,j,l,m,n;if(this.b){e=a.Kf();e.gl();if(LP(this)==pP(gP(this).b.a[0])){b=a.ce(gP(this).b.a[0].a.c.Lh());l=lad(a.ce(this.b.c.Lh()),a.ce(gP(this).b.a[0].a.c.Lh()));g=lad(this.b.d.Lh(),this.b.c.Lh());h=lad(gP(this).b.a[0].a.d.Lh(),gP(this).b.a[0].a.c.Lh());c=$wnd.Math.atan2(g.b,g.a);d=$wnd.Math.atan2(h.b,h.a);j=c-d}else{b=a.ce(gP(this).b.a[0].a.d.Lh());l=lad(a.ce(this.b.c.Lh()),a.ce(gP(this).b.a[0].a.d.Lh()));g=lad(this.b.d.Lh(),this.b.c.Lh());h=lad(gP(this).b.a[0].a.c.Lh(),gP(this).b.a[0].a.d.Lh());c=$wnd.Math.atan2(g.b,g.a);d=$wnd.Math.atan2(h.b,h.a);j=c-d}f=(m=lad(D2b(this.b),D2b(gP(this).b.a[0].a)),n=new jD(this.o.i),fD(n,dsd(this.o.i.C.n)),eD(n,gP(this).d.Me()),hD(n,new IF(new JF(m),new BF(kH(D2b(gP(this).b.a[0].a),m),j))),n);jP(this,f,a);Ygc(e.el(),l.a,l.b);IHb(e,b,j);iP(this,f,a);kP(this,e,MP(this));e.qe()}};_.ah=function(a){return Zr(C2b(this.b),a[0],0)==-1&&Zr(C2b(this.b),a[1],0)==-1};_.Rd=function(){this.b=null;mP(this)};_.bh=function(a){var b,c;if(this.b){RP(gP(this),this.b,LP(this));eD(this.d,gP(this).d.Me());b=gP(this).b.a[0].a.c;c=gP(this).b.a[0].a.d;OP(this,b,MG(this).c)?c.mm(MG(this).d.Lh()):OP(this,b,MG(this).d)?c.mm(MG(this).c.Lh()):OP(this,c,MG(this).c)?b.mm(MG(this).d.Lh()):b.mm(MG(this).c.Lh());hP(this);Ry(Lu(this.o.i).b);this.o.i.w.Hf()}};_.dh=tMd;var DEc=Mmd(2203);n9c(979,1,fCd,aQ);_.eh=cOd;_.Le=function(){return this.d.Le()};_.fh=function(){return this.d.Me().vd()};_.Me=function(){return this.d.Me()};_.Ne=function(){return YP(this)};_.gh=function(){return this.d.gh()};_.Oe=function(){return this.d.Oe()};_.hh=function(){return this.d.hh()};_.Pe=function(){return this.d.Pe()};_.Qe=function(){return this.d.Qe()};_.Re=function(){return this.d.Re()};_.ih=function(){return this.d.ih()};_.Se=function(){return this.d.Se()};_.jh=function(){return this.d.jh()};_.Te=function(){return this.d.Te()};_.kh=xNd;_.sd=function(){return this.d.sd()};var GEc=Mmd(979);n9c(569,10,{569:1,3:1,11:1,10:1},fQ);var cQ,dQ;var EEc=Nmd(569,Q5c,gQ);n9c(966,202,{},hQ);_.eg=yNd;_.kg=function(a){VG(this,a.c);hy(Lu(this.o.i).b)&&this.e.a.a.length!=0?bH(this,this.a):iy(Lu(this.o.i).b)&&this.e.b.a.length!=0?bH(this,this.b):bH(this,this.c);!!this.k&&this.k.kg(a)};_.mg=function(a){this.p=null;aH(this)};_.rg=function(a){!!this.p&&!!this.k&&WG(this.k,a);sP(this.d,a)};_.Rd=function(){this.p=null;!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_])));this.o.i.w.Hf()};var FEc=Mmd(966);n9c(1737,91,{},lQ);_.eg=ANd;_.fg=function(a){var b,c;b=a.c;VG(this,b);py(Lu(this.o.i).b)?(c=UG(this),jQ(this,c.c,new vQ(this.o.i,this.o.f,c))):Sx(Lu(this.o.i).b)&&kQ(this,gw(this.o.i,b))};_.ng=zNd;_.sg=function(a){a.Bf((Ez(),Dz))};var HEc=Mmd(1737);n9c(2173,1,{},nQ);_.lh=function(a){mQ(this,a)};var IEc=Mmd(2173);n9c(1499,202,{},pQ);_.eg=ANd;_.fg=function(a){bH(this,this.a);!!this.k&&this.k.fg(a);oQ(this)};_.hg=function(a){if(!!this.b&&sac(this.b,a.c)<$wnd.Math.abs(hw(this.o.i,LBd))*0.5&&this.k!=this.c){VG(this,this.b);if(py(Lu(this.o.i).b)){bH(this,this.c);QM(this.c,new TE(this.b))}}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){oQ(this);!!this.k&&this.k.kg(a);this.b=a.c};_.ng=function(a){Jl(this,a.c);!!this.k&&this.k.ng(a);VG(this,a.c)};_.og=function(a){if(this.k==this.c){!!this.k&&this.k.og(a);oQ(this)}};_.Rd=function(){oQ(this)};_.b=null;var JEc=Mmd(1499);n9c(1626,1,{},rQ);var LEc=Mmd(1626);n9c(1627,1,{},tQ);_.lh=function(a){sQ(this,a)};var KEc=Mmd(1627);n9c(2172,1,{},vQ);_.lh=function(a){uQ(this,a)};var MEc=Mmd(2172);n9c(782,1,{},CQ);_.qb=function(a){yQ(this,a)};_.b=0;var NEc=Mmd(782);n9c(506,Pyd,{},FQ);_.lb=function(a){a.vg(this)};_.mb=function(){return DQ};_.a=0;var DQ;var OEc=Mmd(506);n9c(657,1,{657:1,2378:1},HQ);_.V=function(a){return GQ(this,a)};_.X=function(){var a,b;a=this.a==null?0:this.a;b=this.b==null?0:this.b;return qvc(b)^qvc(a)};_.a=null;_.b=null;var QEc=Mmd(657);var IQ,JQ,KQ,LQ,MQ,NQ,OQ,PQ;n9c(2013,1,{},TQ);_.a=0;_.b=0;_.c=0;var RQ;var REc=Mmd(2013);n9c(415,10,{415:1,3:1,11:1,10:1},eR);_.a=0;var _Q,aR,bR;var SEc=Nmd(415,Q5c,fR);n9c(190,10,{190:1,3:1,11:1,10:1},rR);var gR,hR,iR,jR,kR,lR,mR,nR,oR;var TEc=Nmd(190,Q5c,sR);n9c(416,10,{416:1,3:1,11:1,10:1},yR);_.a=0;var tR,uR,vR;var UEc=Nmd(416,Q5c,zR);n9c(1832,1,{},CR);_.Hd=function(a){return AR(this,a)};var VEc=Mmd(1832);n9c(1833,_Ad,{},ER);_.Id=function(a){return DR(a)};var XEc=Mmd(1833);n9c(1834,1,{},FR);_.mh=function(a){nod(this.a,a.a?'<':'<\/');nod(this.a,_nd(a.b,(Aud(),xud)));nod(this.a,'>')};_.nh=function(a){nod(this.a,R9c(a))};var WEc=Mmd(1834);n9c(568,1,{568:1},KR,LR);_.b=false;var YEc=Mmd(568);n9c(2078,1,{},UR);_.a=true;_.b=true;var ZEc=Mmd(2078);n9c(173,10,{173:1,3:1,11:1,10:1},dS,eS,fS);_.a=false;_.b=false;var VR,WR,XR,YR,ZR,$R,_R,aS,bS;var $Ec=Nmd(173,Q5c,hS);n9c(786,1,{},kS);var aFc=Mmd(786);n9c(1319,221,{},lS);_.ic=function(){!!this.a.a&&this.a.a.eb()};var _Ec=Mmd(1319);n9c(1792,1,{175:1},sS);_.dg=function(a){var b,c;for(c=new qsd(dsd(qS(this).c).b.Qb());c.b.Rc();){b=c.b.Sc();if(bbc(b.xh(),a)){return true}}return false};_.gh=BNd;_.oh=BNd;_.ph=function(){return dsd(qS(this).c)};_.qh=function(a){rS(this,a)};_.rh=function(a,b){rS(this,a)};var mS,nS;var dFc=Mmd(1792);n9c(1793,1,{},vS);_.a=0;_.e=0;_.f=0;var cFc=Mmd(1793);var nFc=Omd();n9c(1794,1,DCd,wS);_.qh=function(a){yT(this.a,a,ECd,(oS(),nS).b,false)};var bFc=Mmd(1794);n9c(157,1,DCd,GS,HS);_.qh=function(a){FS(this,a)};var eFc=Mmd(157);n9c(604,1,{},LS);var fFc=Mmd(604);n9c(609,1,{},oT);_.c=false;var MS;var iFc=Mmd(609);n9c(1297,1,{},qT);_.md=function(){return this.a.j};var gFc=Mmd(1297);n9c(1296,1,{},rT);_.oe=function(a){return dv(),bv};var hFc=Mmd(1296);n9c(37,1,{},sT,tT,uT,vT,wT,xT);_.Cf=AMd;_.Df=KMd;_.Ef=VMd;_.Ff=CNd;_.Gf=BMd;_.d=false;_.e=0;var jFc=Mmd(37);n9c(238,1,{2347:1},zT,AT,BT);_.vh=function(a){return new zT(this,a)};_.wh=BMd;_.xh=KMd;_.yh=AMd;_.sd=function(){return this.c==null||!this.b||this.b.c*this.b.a==0};_.zh=function(a,b,c,d){yT(this,a,b,c,d)};_.a=false;var kFc=Mmd(238);n9c(866,1,{},CT);_.Ah=ENd;_.Bh=HNd;_.Ch=DNd;_.Dh=ENd;var lFc=Mmd(866);n9c(171,10,{171:1,3:1,11:1,10:1},OT);_.a=false;_.b=0;var DT,ET,FT,GT,HT,IT,JT,KT,LT,MT;var mFc=Nmd(171,Q5c,PT);n9c(517,1,{},QT);var oFc=Mmd(517);n9c(1384,1,{},TT);_.md=function(){return this.a.pe()};var pFc=Mmd(1384);n9c(683,1,{},YT);_.b=false;var UT;var qFc=Mmd(683);n9c(1459,1,{2336:1},dU);_.Fh=function(){return Osd(this.b,this.a.a.j).Fh()};_.Gh=function(){return bU(this)};_.Hh=function(){return cU(this)};var rFc=Mmd(1459);n9c(1117,1,{},eU);_.Ih=FPd;_.sd=FNd;var sFc=Mmd(1117);n9c(414,10,{414:1,3:1,11:1,10:1},jU);_.a=false;var fU,gU,hU;var tFc=Nmd(414,Q5c,kU);n9c(1460,1,{},pU);var uFc=Mmd(1460);n9c(528,1,{2336:1},sU);_.Fh=AMd;_.Gh=VMd;_.Hh=KMd;var vFc=Mmd(528);n9c(141,10,{141:1,3:1,11:1,10:1},IU,JU);_.c=false;var tU,uU,vU,wU,xU,yU,zU,AU,BU,CU,DU,EU,FU,GU;var wFc=Nmd(141,Q5c,KU);n9c(320,1,LCd);_.Nh=BMd;_.xh=function(){return new ibc(new qad(this.f,this.i),this.e,this.d)};_.Oh=CNd;_.Ph=LNd;_.Qh=JMd;_.Rh=function(a,b){OU(this,a,b)};_.d=0;_.e=0;_.f=0;_.i=0;var xFc=Mmd(320);var XU;n9c(205,1,{175:1,247:1,205:1},cV,dV);_.dg=function(a){return ZU(this,a)};_.gh=DMd;_.oh=vOd;_.Jh=CNd;_.sh=function(){return $U(this)};_.Kh=function(a,b){return qW(new uW(this),a,b)};_.th=function(){return this.b.d};_.Lh=CNd;_.ph=function(){return this.b.e};_.sd=xNd;_.qh=function(a){bV(this,a,$U(this))};_.rh=function(a,b){bV(this,a,b)};_.d=false;_.f=false;_.j=false;_.k=true;_.n=0;var zFc=Mmd(205);n9c(641,1,{},jV,kV);var yFc=Mmd(641);n9c(368,320,WCd);_.Mh=KNd;var DFc=Mmd(368);n9c(933,368,WCd,nV);_.Sh=function(){return new BT(this.a.c,this.b,new ibc(new qad(this.f,this.i),this.e,this.d),this.a.b)};var AFc=Mmd(933);n9c(2010,368,WCd,oV);_.Sh=function(){return new pV(this.b,new ibc(new qad(this.f,this.i),this.e,this.d),this.a)};_.a=false;var BFc=Mmd(2010);n9c(932,1,{2347:1},pV);_.vh=function(a){return new pV(this.c,gbc(this.b,a),this.a)};_.wh=MNd;_.xh=KMd;_.yh=xNd;_.sd=xNd;_.zh=function(a,b,c,d){var e;e=$wnd.Math.min(this.b.c,this.b.a);FHb(a,dbc(this.b),this.a,b,e)};_.a=false;var CFc=Mmd(932);n9c(668,1,{},LV);var EFc=Mmd(668);n9c(1790,1,{},QV);_.e=null;_.f=0;var FFc=Mmd(1790);n9c(1789,1,{},UV);var GFc=Mmd(1789);n9c(1788,1,{},XV);_.a=0;_.d=0;var HFc=Mmd(1788);n9c(1785,1,{},ZV);_.Th=GNd;_.Uh=INd;var IFc=Mmd(1785);n9c(656,1,{},bW);_.Bh=function(a){return _V(this,a)};_.Ch=function(a,b,c){this.a.Th(b.a.Kl())&&$V(this,a,b.e,_V(this,b.a.Hl()),c);aW(this,a,b.b.c,c)};var JFc=Mmd(656);n9c(1675,1,{},hW);_.Bh=HNd;_.Ch=function(a,b,c){var d;cW(a,b,c);d=!Hnd(UBd,c)&&b.j&&b.a.am()?uBd:c;fW(this,a,b,d);gW(a,b.b.c,c)};var KFc=Mmd(1675);n9c(949,1,{},oW,pW);var kW;var LFc=Mmd(949);n9c(1876,1,{},uW);var MFc=Mmd(1876);n9c(2105,1,{},yW);_.b=0;_.c=0;_.e=0;var OFc=Mmd(2105);n9c(556,1,{556:1},BW);var NFc=Mmd(556);n9c(2011,1,{},IW);var CW,DW,EW;var PFc=Mmd(2011);n9c(689,1,{},RW);_.a=false;var QFc=Mmd(689);n9c(688,1,{},_W,aX);_.c=0;_.d=0;var SFc=Mmd(688);n9c(549,10,{549:1,3:1,11:1,10:1},fX);_.a=0;var bX,cX;var RFc=Nmd(549,Q5c,gX);n9c(2062,320,LCd,hX);_.Mh=function(){return this.a.c.a};_.Rh=function(a,b){OU(this.a,a,b);OU(this.b,a,b)};var TFc=Mmd(2062);n9c(159,1,{},jX);_.a=0;_.b=false;var UFc=Mmd(159);n9c(1787,1,{},lX);_.Th=GNd;_.Uh=function(a){var b,c,d;d=(i1b(),a>0&&a<=126?h1b[a-1].f:0.77);c=this.a.ce(new pad);b=this.a.ce(new qad(d,0));return $wnd.Math.abs(b.a-c.a)/this.a.Yd()};var VFc=Mmd(1787);n9c(1786,1,{},mX);_.Th=function(a){return a==0};_.Uh=INd;var WFc=Mmd(1786);n9c(2060,1,{},oX);var YFc=Mmd(2060);n9c(2061,1,{},rX);_.a=0;var XFc=Mmd(2061);n9c(804,1,{},vX);_.gh=function(){return tX(this)};_.qh=function(a){uX(this,a)};var ZFc=Mmd(804);n9c(1554,1,{},yX);_.gh=function(){return new hbc(0,0,-1,-1)};_.qh=wMd;var wX;var $Fc=Mmd(1554);n9c(1461,1,{},BX);_.gh=function(){var a,b,c,d;a=new V9b;b=new qad(this.a.c,this.a.a);for(d=new Frd(this.b);d.a0?1:3.5)*this.c.Yd();h=(b<0?1:3.5)*this.c.Yd();j=kH(e,new qad(0,g));l=kH(e,new qad(0,-g));m=kH(f,new qad(0,-h));n=kH(f,new qad(0,h));HHb(a,this.a,vuc(quc(T1c,1),tBd,5,0,[j,l,m,n,j]));break;case 5:gZ(this,a,b,3.5);break;case 6:iZ(this,a,b);break;case 7:kY(this,a);break;case 8:lY(this,a);break;case 9:pY(this,a);break;case 10:oY(this,a);break;case 11:mY(this,a);break;case 12:gY(this,a);break;case 13:o=sac(this.e.pi(this.d),this.e.qi(this.d));q=new qad(0,0);r=new qad(o,0);s=b<0?q:r;t=lad(s,new qad(6*this.c.Yd()*b,3*this.c.Yd()));u=new qad(t.a,-t.b);v=b<0?new qad(t.a,0):q;w=b>0?new qad(t.a,0):r;HHb(a,this.a,vuc(quc(T1c,1),tBd,5,0,[s,t,u,s]));hZ(a,v,w,this.f);break;case 14:gZ(this,a,b,1);}};_.li=function(a,b,c,d,e,f){eZ(a,b,c,d,e,f)};_.mi=function(a){var b,c,d;b=new qad(sac(this.e.pi(this.d),this.e.qi(this.d))*0.5,0);for(d=this.d.$h().Qb();d.Rc();){c=d.Sc();a.tf(kH(b,c.d),c.c,this.i,nZ(this.b,c.a,c.b))}};_.ni=function(a,b,c,d){hZ(a,b,c,d)};_.oi=function(a){return a?0.15:0.05};var qGc=Mmd(1673);n9c(1674,1,{},oZ);var kZ=0,lZ=0;var pGc=Mmd(1674);n9c(1784,1,{},pZ);_.pi=function(a){return tac(a._h(),a.ai(),7.5*this.a.Yd()*0.65)};_.qi=function(a){return tac(a.ai(),a._h(),7.5*this.a.Yd()*0.65)};var rGc=Mmd(1784);n9c(1783,1,{},qZ);_.pi=function(a){return a.Yh()};_.qi=function(a){return a.Zh()};var sGc=Mmd(1783);n9c(1782,1,{},rZ);_.pi=function(a){return a._h()};_.qi=function(a){return a.ai()};var tGc=Mmd(1782);n9c(865,863,{},xZ);_.ki=function(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A;switch(this.d.w.k){case 4:case 5:case 6:case 0:nY(this,a);break;case 1:d=sac(this.e.pi(this.d),this.e.qi(this.d));e=new qad(0,0);f=new qad(d,0);g=1.5*this.c.Yd()*1.5*b;h=kH(e,new qad(0,g));j=kH(f,new qad(0,g));l=kH(e,new qad(0,-g));m=kH(f,new qad(0,-g));uZ(this,a,h,j,this.f);uZ(this,a,l,m,this.f);qY(this,a,d,g,0);break;case 2:rY(this,a);break;case 3:n=sac(this.e.pi(this.d),this.e.qi(this.d));o=new qad(0,0);q=new qad(n,0);r=1.5*this.c.Yd()*1.5*b;s=kH(o,new qad(0,r));t=kH(q,new qad(0,r));u=kH(o,new qad(0,-r));v=kH(q,new qad(0,-r));w=1.5*this.c.Yd();A=3*this.c.Yd();uZ(this,a,s,t,this.f);tZ(this,a,u,v,w,A,this.f);break;case 7:kY(this,a);break;case 8:lY(this,a);break;case 9:pY(this,a);break;case 10:oY(this,a);break;case 11:mY(this,a);break;case 12:gY(this,a);break;case 13:sZ(this,a);break;case 14:sZ(this,a);}};_.li=function(a,b,c,d,e,f){tZ(this,a,b,c,d,e,f)};_.ni=function(a,b,c,d){uZ(this,a,b,c,d)};var uGc=Mmd(865);n9c(1676,1,{},yZ);_.Dh=function(a,b,c,d){hY(this.a,a,b,c,d)};var vGc=Mmd(1676);n9c(864,1,{},AZ);_.Dh=function(a,b,c,d){hY(this.a,a,b,c,d);zZ(this,a,(O1b(),M1b)==b.n?d:c,b)};var wGc=Mmd(864);n9c(1677,867,{},NZ);_.Wh=function(){return DZ(this)};_.Xh=function(){return FZ(this)};_.Yh=function(){return GZ(this)};_.Zh=function(){return !this.d&&((O1b(),M1b)==this.n?(this.d=GX(this,this.i)):(this.d=tac(this.k.e,GX(this,this.i),FZ(this)*(this.w.a==(s6b(),r6b)||this.w.a==l6b||this.w.a==p6b?0.8:1)))),this.d};_._h=function(){return HZ(this)};_.ai=function(){return IZ(this)};_.ph=function(){return KZ(this)};var xGc=Mmd(1677);n9c(519,1,{175:1,247:1,519:1},SZ);_.dg=function(a){return QZ(this,a)};_.gh=ONd;_.oh=ONd;_.Jh=function(){return DX(this.c)};_.Kh=PNd;_.Lh=function(){return LZ(this.c)};_.ph=function(){return KZ(this.c)};_.sd=xNd;_.qh=function(a){RZ(this,a,this.a.a,this.a.b)};_.rh=function(a,b){cU(this.d).Dh(a,this.c,b,b)};var OZ;var zGc=Mmd(519);n9c(643,1,{},UZ);var yGc=Mmd(643);n9c(427,1,hDd);_.gh=function(){return cbc(this.d,$wnd.Math.max(this.b.Yd()*10,1)*0.5)};_.oh=BMd;_.Jh=function(){return dbc(this.d)};_.Kh=PNd;_.Lh=function(){return this.d.b};_.ph=JNd;_.sd=xNd;_.qh=function(a){VZ(this,a)};_.rh=function(a,b){this.si(a,this.c==null?null:b,this.a==null?null:b)};var AGc=Mmd(427);n9c(529,427,hDd,XZ);_.dg=function(a){var b,c,d;b=$wnd.Math.max(this.b.Yd()*10,1)/2;c=cbc(this.d,b);d=cbc(this.d,-b);return a.a>c.b.a&&a.b>c.b.b&&a.ad.b.a&&a.b>d.b.b&&a.a0&&x9c(m4,this.a.a)};var m4;var QHc=Mmd(2106);n9c(380,10,{380:1,3:1,11:1,10:1},v4);var r4,s4,t4;var PHc=Nmd(380,Q5c,x4);n9c(824,1,{},B4);_.Hd=function(a){return z4(this,a)};var RHc=Mmd(824);n9c(2107,1,{},C4);var SHc=Mmd(2107);n9c(1882,2318,{},F4);_.Wi=function(a,b,c){Hqd(c.n,mnd(a),b);!!b&&b.k&&ptd(c.f,b)};_.Ri=function(a,b,c){var d;if(Hnd(DDd,a)){d=u3(b)[0];Mtd(c.e,DDd)?Iqd(c,DDd,god(',',vuc(quc(M5c,1),lyd,466,0,[c.e.a.get(DDd),d]))):Otd(c.e,DDd,d);return}a==null?Atd(c.d,null,b):Otd(c.e,a,b)};_.Xi=AMd;_.Ti=function(){return D4};var D4;var THc=Mmd(1882);n9c(1684,1,{},S4);_.c=false;var XHc=Mmd(1684);n9c(1796,1,{},W4);var WHc=Mmd(1796);n9c(537,1,{537:1},X4);_.nh=function(a){Wr(this.b,a)};var UHc=Mmd(537);n9c(1797,537,{537:1},Z4);_.nh=function(a){var b;b=G3(a);if(!b){Wr(this.b,a);return}Y4(Fqd(this.a.a,YBd),b.a,b.b)};var VHc=Mmd(1797);n9c(750,_Ad,{},$4);_.Id=function(a){var b;return b=new mab(a,Q0((P0(),K0))),c8(b)+EDd};var ZHc=Mmd(750);n9c(682,1,{682:1},_4);_.a=0;var $Hc=Mmd(682);n9c(550,1,{},b5);_.Y=function(){var a,b,c;a=new yod;if(this.a.length>69){c=this.a.length/69|0;for(b=0;b0&&a.rm((kcc(),Ybc),'u')};var EIc=Mmd(2089);n9c(2080,1,{},M7);var K7;var FIc=Mmd(2080);n9c(749,_Ad,{},N7);_.md=WMd;_.Id=function(a){var b;return b=new b9(a,Q0((P0(),K0))),c8(b)+EDd};var GIc=Mmd(749);var PIc=Omd();n9c(496,1,RDd);_.Ad=function(a){return Zr(this.j,a,0)};var IIc=Mmd(496);n9c(796,496,RDd);_.bj=XNd;_.Ad=function(a){return Q7(this,a)};var HIc=Mmd(796);n9c(797,496,RDd);_.dj=function(a){Wr(this.c,a)};_.Ad=function(a){return Y7(this,a)};var T7;var KIc=Mmd(797);n9c(1368,1,{},_7);var JIc=Mmd(1368);n9c(776,1,RDd);_.hj=function(){return new Srd(vuc(quc(PIc,1),lyd,131,0,[this.gj(),this.ij()]))};_.aj=function(){return c8(this)};_.e=false;_.f=null;var LIc=Mmd(776);n9c(798,496,RDd);_.jj=function(a){f8(this,a)};var OIc=Mmd(798);n9c(1370,1,{},q8);_.lj=function(a){return new Srd(vuc(quc(tHc,1),lyd,179,0,[new b2(new Srd(vuc(quc(tWc,1),zBd,49,0,[a])),b1b(a.Ji()))]))};_.mj=function(a){var b,c;c=new Srd(vuc(quc(tWc,1),zBd,49,0,[a.c,a.d]));b=new b2(c,b1b(d1b(a.b)));return new Srd(vuc(quc(tHc,1),lyd,179,0,[b]))};_.nj=function(a){var b;if(!a.k&&!!a.n&&!a.n.sd()){b=new b2((Xrd(),Xrd(),Urd),b1b(d1b(a.n)));X1(b,a);return new Srd(vuc(quc(tHc,1),lyd,179,0,[b]))}return Xrd(),Xrd(),Urd};var MIc=Mmd(1370);n9c(1371,1370,{},s8);_.lj=function(a){return r8(new Srd(vuc(quc(tWc,1),zBd,49,0,[a])),a)};_.mj=function(a){return r8(new Srd(vuc(quc(tWc,1),zBd,49,0,[a.c,a.d])),a)};_.nj=function(a){var b,c,d,e,f;if(!!a.n&&!a.n.sd()){d=d1b(a.n).Qb();b=(Xrd(),Xrd(),Urd);e=a;if(a.k){d.Sc();b=dsd(a.r);e=a.o}f=new is;while(d.Rc()){c=new b2(b,d.Sc());X1(c,e);f.a[f.a.length]=c}return f}return Xrd(),Xrd(),Urd};var NIc=Mmd(1371);n9c(330,1,SDd);var VIc=Mmd(330);n9c(2009,330,SDd,u8);_.wg=function(){return kcc(),Pbc};_.oj=function(a){return a=='a'?'a;a':'A'};var QIc=Mmd(2009);n9c(667,1,{});_.oj=function(a){switch(a){case '*':return ' -2';case '0':return ' -1';}return w8(a)};var RIc=Mmd(667);n9c(2004,330,SDd,z8);_.wg=function(){return kcc(),Rbc};_.oj=function(a){return 'X'+a};var SIc=Mmd(2004);n9c(2005,330,SDd,A8);_.wg=function(){return kcc(),Sbc};_.oj=function(a){return 'h'+a};var TIc=Mmd(2005);n9c(1781,1,{},H8);var B8;var UIc=Mmd(1781);n9c(1779,667,{},K8);_.wg=YNd;_.Zi=ZNd;var WIc=Mmd(1779);n9c(2006,330,SDd,L8);_.wg=function(){return kcc(),Ubc};_.oj=function(a){return 'R'+a};var XIc=Mmd(2006);n9c(2007,330,SDd,M8);_.wg=function(){return kcc(),Vbc};_.oj=function(a){return 'r'+a};var YIc=Mmd(2007);n9c(1780,667,{},N8);_.wg=WNd;_.Zi=$Nd;var ZIc=Mmd(1780);n9c(2008,330,SDd,O8);_.wg=function(){return kcc(),Xbc};_.oj=function(a){return 'H'+a};var $Ic=Mmd(2008);n9c(1778,667,{},P8);_.wg=function(){return kcc(),Ybc};_.Zi=_Nd;_.oj=function(a){return ' 1'};var _Ic=Mmd(1778);n9c(1373,796,RDd,Q8);_.bj=wMd;_.cj=function(a){var b,c,d;d=new is;for(c=new qsd(dsd(a.n).b.Qb());c.b.Rc();){b=c.b.Sc();Zr(this.b,b,0)!=-1?Xr(d,dsd(b.a.r)):(d.a[d.a.length]=b,true)}return d};_.aj=function(){var a,b,c,d;c=new yod;for(b=new Frd(this.j);b.a0&&nod(d,' PARENT='+Hab((Cnd(),''+e)))}d.a+=oyd}d.a+='M V30 END SGROUP\n';return d.a};var nJc=Mmd(1372);var Iab,Jab;var Nab;n9c(184,10,{184:1,3:1,11:1,10:1},Zab);var Pab,Qab,Rab,Sab,Tab,Uab,Vab,Wab,Xab;var oJc=Nmd(184,Q5c,$ab);n9c(978,1,{},cbb);_.fc=function(){return abb(this)};_.c=0;var pJc=Mmd(978);n9c(2215,1,{},dbb);_.pj=function(a){qod(this.a,a)};_.qj=function(a){nod(this.a,a)};_.Y=UNd;var qJc=Mmd(2215);n9c(2211,1,{},ebb);_.fc=function(){return this.a>=this.b.length?-1:Dnd(this.b,this.a++)};_.a=0;var rJc=Mmd(2211);n9c(564,1,{},ibb,jbb);_.pj=function(a){fbb(this,a)};_.qj=function(a){gbb(this,a)};_.Y=KPd;var sJc=Mmd(564);n9c(567,1,{},mbb,obb);_.fc=function(){return lbb(this)};var tJc=Mmd(567);n9c(945,1,{});_.rj=UMd;var uJc=Mmd(945);n9c(2315,1,{});_.tj=function(a){return sbb(this,a)};var vJc=Mmd(2315);n9c(946,1,{});_.uj=function(a){return ubb(this,a)};var yJc=Mmd(946);n9c(2053,946,{},vbb);_.uj=function(a){var b,c,d,e,f,g,h;b=ubb(this,a);if(b){g=(d=kld(this.b,XDd),d?Dld(d.a):null);h=(e=kld(this.b,YDd),e?Dld(e.a):null);g==null||Hnd(g,'-1')||h==null?nXb(b,Wcb(this.a,(f=kld(this.b,ZDd),((f?Dld(f.a):null)!=null?new CXb(false):new CXb(true)).a?(RTb(),MTb):(RTb(),NTb)))):nXb(b,Vcb(this.a,(c=kld(this.b,ZDd),((c?Dld(c.a):null)!=null?new CXb(false):new CXb(true)).a?(RTb(),MTb):(RTb(),NTb)),Xmd(g,10),Xmd(h,10)))}return b};_.vj=function(a){var b;return b=kld(this.b,ZDd),yXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a.a,a)};_.wj=function(a){var b;return b=kld(this.b,ZDd),zXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a.a,a)};_.xj=function(a){var b,c,d;d=T(this.a.a,a.b)?a.c:a.b;b=(c=kld(this.b,ZDd),yXb((c?Dld(c.a):null)!=null?new CXb(false):new CXb(true),this.a.a,d));mXb(b,(vXb(),rXb));return b};var wJc=Mmd(2053);n9c(2056,946,{},wbb);_.vj=function(a){var b;return b=kld(this.b,ZDd),AXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a,a)};_.wj=function(a){var b;return b=kld(this.b,ZDd),BXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a,a)};_.xj=function(a){var b,c,d,e,f;if(Zr(C2b(this.a),a.b,0)!=-1){d=a.b;e=a.c}else{d=a.c;e=a.b}f=T(this.a.c,d)?(vXb(),sXb):(vXb(),tXb);if(U(e)==sXc){b=(c=kld(this.b,ZDd),AXb((c?Dld(c.a):null)!=null?new CXb(false):new CXb(true),this.a,e));mXb(b,f);return b}return null};var xJc=Mmd(2056);n9c(264,2315,$Dd);var aKc=Mmd(264);n9c(1856,264,$Dd,zbb);_.sj=function(a){var b,c,d,e,f,g,h,j,l,m,n;if(Hnd(a.Uo(),'MPolyline')){n=Abb(a.So());if(n){d=new tfb;d.d=n;h=a.To();for(e=0;e=0&&eld(b,qEd,(Cnd(),''+(c+1)))}};var GKc=Mmd(1767);n9c(845,1,{},kgb);var IKc=Mmd(845);n9c(1545,421,{},sgb);var HKc=Mmd(1545);n9c(820,1,{},wgb);var JKc=Mmd(820);n9c(1768,886,{},xgb);_.Nj=lOd;var KKc=Mmd(1768);n9c(904,1,{},Agb);var MKc=Mmd(904);n9c(1871,1,{},Bgb);_.a=0;_.b=0;_.c=0;var NKc=Mmd(1871);n9c(2311,1,{});_.Oj=function(a){return Cgb(this,a)};var QKc=Mmd(2311);n9c(1770,2311,{},Dgb);_.Pj=function(){return 'x2'};_.Qj=function(){return 'y2'};var OKc=Mmd(1770);n9c(1769,2311,{},Egb);_.Oj=function(a){var b;b=Cgb(this,a);Iqd(b,'z3',$md(a.Ki()));return b};_.Pj=function(){return 'x3'};_.Qj=function(){return 'y3'};var PKc=Mmd(1769);n9c(1771,846,{},Kgb); +var SKc=Mmd(1771);n9c(1772,1,{},Qgb);var RKc=Mmd(1772);n9c(2290,1,{});var Rgb;var VKc=Mmd(2290);n9c(1283,2290,{},Tgb);_.Rj=wMd;_.Sj=wMd;var TKc=Mmd(1283);n9c(675,2290,{},Wgb);_.Rj=function(a){Ugb(this,a.d);Ugb(this,a.c);Ugb(this,a.a)};_.Sj=function(a){Xr(this.a,a.Me())};var UKc=Mmd(675);n9c(841,1,{},ahb);_.e=0;var bLc=Mmd(841);n9c(1542,1,{},ghb);var WKc=Mmd(1542);n9c(419,1,qFd,Jhb);_.Mj=function(a){return Bhb(this,a)};var _Kc=Mmd(419);n9c(842,1,{},Lhb);var XKc=Mmd(842);n9c(1539,1,{},Rhb);var YKc=Mmd(1539);n9c(1540,1,{},Xhb);var ZKc=Mmd(1540);n9c(1541,1,{},aib);var $Kc=Mmd(1541);n9c(2300,1,{});var bib;var kLc=Mmd(2300);n9c(1538,2300,{},dib);_.Tj=function(a,b,c,d){var e,f;f=ybc(a._l());if(f!=null){e=ugb(this.a.c,_Ed);eld(e,WDd,b+'.prop1');eld(e,azd,tEd);eld(e,KEd,c);eld(e,aFd,'xsd:string');Lkd(e,vgb(this.a.c,f));Lkd(d,e)}};var aLc=Mmd(1538);var eib;n9c(252,_Ad,{},Fib,Gib);_.Id=function(a){return Cib(this,a,(Sgb(),Rgb))};_.b=0;var cLc=Mmd(252);n9c(843,1,{},Qib);_.a=0;var dLc=Mmd(843);n9c(1548,1,qFd,Tib);_.Mj=function(a){var b,c,d;for(d=new Vqd((new Sqd(this.a)).a);d.b;){c=Uqd(d);b=c.Ok().Mj(a);if(b!=null){return c.yp()+'.'+b}}return null};var eLc=Mmd(1548);n9c(1546,421,{},Vib);var fLc=Mmd(1546);n9c(1665,421,{},Xib);var gLc=Mmd(1665);n9c(319,10,{319:1,3:1,11:1,10:1},cjb);var Yib,Zib,$ib,_ib,ajb;var hLc=Nmd(319,Q5c,djb);n9c(1544,1,qFd,ejb);_.Mj=function(a){var b;if(Zr(this.b,a,0)!=-1){b=Bhb(this.a,a);if(b!=null){return this.c+'.'+b}}return null};var iLc=Mmd(1544);n9c(1543,2300,{},fjb);_.Tj=ENd;var jLc=Mmd(1543);n9c(1773,1,{},gjb);_.Wg=function(a,b){var c,d;return c=(RTb(),MTb)==a.e?a.b*2:a.b,d=MTb==b.e?b.b*2:b.b,cd?1:0};_.V=qMd;var lLc=Mmd(1773);n9c(1666,421,{},ljb);var mLc=Mmd(1666);n9c(1774,_Ad,{},njb);_.Id=function(a){return mjb(a)};var uLc=Mmd(1774);n9c(288,10,{288:1,3:1,11:1,10:1},xjb,yjb);var qjb,rjb,sjb,tjb,ujb;var qLc=Nmd(288,Q5c,zjb);n9c(366,10,uFd);var Ajb,Bjb;var pLc=Nmd(366,Q5c,Ejb);n9c(1776,366,uFd,Fjb);_.Uj=function(a,b){return pvc((qmd(),pmd))===pvc(b)?a:'no'+a};var nLc=Nmd(1776,pLc,null);n9c(1777,366,uFd,Gjb);_.Uj=function(a,b){return a+'='+s9c(b)};var oLc=Nmd(1777,pLc,null);n9c(436,1,{},Mjb,Njb,Ojb);var rLc=Mmd(436);n9c(435,10,{435:1,3:1,11:1,10:1},Tjb);var Pjb,Qjb,Rjb;var sLc=Nmd(435,Q5c,Ujb);n9c(1775,1,{},Xjb);_.mh=function(a){a==(g9b(),b9b)?Vjb(this,oyd):a==Z8b||a==$8b?Jjb(this.a,(vjb(),qjb),(qmd(),a.a?true:false)):a==_8b||a==a9b?Jjb(this.a,(vjb(),sjb),(qmd(),a.a?true:false)):a==d9b||a==f9b?Kjb(this.a,(Sjb(),Pjb).a):a==c9b?Kjb(this.a,(Sjb(),Qjb).a):a==e9b&&Kjb(this.a,(Sjb(),Rjb).a)};_.nh=function(a){Vjb(this,a)};_.Y=function(){return s9c(this.c.b)};var tLc=Mmd(1775);n9c(760,1,{});var wLc=Mmd(760);n9c(1209,1,{},qkb);var xLc=Mmd(1209);n9c(1194,1,{},skb);o9c(_,{clientRect:{'get':function(){return new tkb(xJb(this.a.j))}}});o9c(_,{transformation:{'get':function(){return new ukb(this.a.j.e.b/(Os(),Ls),this.a.j.c)}}});_.transform=function(a,b,c){wIb(this.a,a,b,c)&&cmb(this.b)};var ALc=Mmd(1194);n9c(1195,1,{},tkb);o9c(_,{bottom:{'get':function(){return $wnd.Math.max(this.d,this.d+this.a)}}});o9c(_,{height:{'get':AMd}});o9c(_,{left:{'get':function(){return $wnd.Math.min(this.c,this.c+this.b)}}});o9c(_,{right:{'get':function(){return $wnd.Math.max(this.c,this.c+this.b)}}});o9c(_,{top:{'get':function(){return $wnd.Math.min(this.d,this.d+this.a)}}});o9c(_,{width:{'get':KMd}});o9c(_,{x:{'get':VMd}});o9c(_,{y:{'get':BMd}});_.a=0;_.b=0;_.c=0;_.d=0;var yLc=Mmd(1195);n9c(1196,1,{},ukb);o9c(_,{dx:{'get':AMd}});o9c(_,{dy:{'get':KMd}});o9c(_,{zoomRatio:{'get':VMd}});_.a=0;_.b=0;_.c=0;var zLc=Mmd(1196);n9c(1113,1,{},ykb);var DLc=Mmd(1113);n9c(134,1,{134:1},Akb);var BLc=Mmd(134);n9c(1114,1,{},Ckb);var CLc=Mmd(1114);n9c(1312,1,{},Ekb);_.b=false;var ELc=Mmd(1312);n9c(593,1,{},Hkb);var GLc=Mmd(593);n9c(253,1,{},Jkb);_.md=function(){return Ikb(this)};var FLc=Mmd(253);n9c(768,1,{},Kkb);_.Hf=function(){Oe(this.a,this.b)};_.If=function(a){this.c=a};var ILc=Mmd(768);n9c(1205,1,Vyd,Mkb);_.eb=function(){Uv(this.a.c)};var HLc=Mmd(1205);n9c(1472,1,{2372:1,2373:1,13:1},Nkb);var JLc=Mmd(1472);n9c(1078,1,{},Ykb);var MLc=Mmd(1078);n9c(1079,1,{},$kb);_.gc=GNd;var KLc=Mmd(1079);n9c(1080,1,{},_kb);_.gc=function(a){return !qtd(this.a,a)};var LLc=Mmd(1080);var t8c=Omd();n9c(271,1,{271:1,572:1},blb,clb);_.Wj=function(a){var b;return b=new xKb(this.a,a),bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[b,new Qvd,new Qvd])))};var QLc=Mmd(271);n9c(470,271,{271:1,470:1,572:1},elb,flb);var OLc=Mmd(470);n9c(1013,1,SGd,jlb);_.Xj=function klb(){return $wnd.marvin.ImageExporter};_.Yj=function(a){return a!=null&&kvc(a,470)};var glb=false;var NLc=Mmd(1013);n9c(1014,1,SGd,olb);_.Xj=function plb(){return $wnd.marvin.ImageExporter};_.Yj=function(a){return a!=null&&kvc(a,271)};var llb=false;var PLc=Mmd(1014);n9c(200,1,{200:1,572:1},Tlb,Vlb);_.Zj=function(){var a;a=this.s.b.T;kvc(a.T,71)&&vg(this.s.b.T)};_.$j=function(a,b){var c;c=a;c.name!=null&&!!hnb(c.toolbar)?Pkb(this.s,new Zob(c.name,c['image-url']||c.imageUrl,b),hnb(c.toolbar)):pxb(new qxb('addButton has been called with invalid parameter'))};_._j=function(a){wSb(this.F,(Xrd(),new ksd(a)))};_.Pb=function(){yQ(this.q.f,new oB(this.G));Pe(Te(this.p.a))};_.ak=function(){xQ(this.q.f)};_.bk=function(){return fLb((C1(),k1),(g3(),f3)).Id(Vw(this.q))};_.ck=function(){var a;a=fLb((C1(),m1),(g3(),f3));return a.Id(Vw(this.q))};_.dk=function(a,b){var c,d;C1();if(H1(a)){d=us(b);c=d?d.extra||null:null;return ylb(this,H1(a),d,c)}else return l2(),n2(a)?xlb(this,n2(a),b):(bf(),cf($wnd.Promise.reject(df('Unknown format'))))};_.ek=function(){return kPb(this.f.o)};_.fk=function(){return TOb(sOb(rOb(new tOb(this.G.C),dsd(this.G.A.r))),vOb(uOb(dsd(this.G.A.s))))};_.gk=function(){return Blb(Plb(_j(this.D,(kA(),hA))?I1():(C1(),Q0((P0(),N0))?j1:i1)),Plb(Jlb(_j(this.D,hA)?F1():(C1(),Q0((P0(),N0))?j1:i1))))};_.hk=function(a){Ilb(this,(C1(),k1),a,false)};_.ik=function(a){Ilb(this,(C1(),m1),a,false)};_.jk=function(a,b){return bf(),bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[new umb(this,new bLb(this.d,H1(a),b,false)),new gf,new jf])))};_.sd=function(){return Cdb(Vw(this.q))};_.kk=function(a,b){if(a==null){return}b?Fr(this.v,a,b):Hr(this.v,a)};_.lk=function(a,b){a!=null&&!!b&&Br(this.v,a,b)};_.mk=function(a){!!a&&Br(this.v,'molchange',a)};_.nk=function(a){Ilb(this,(C1(),k1),a,true)};_.ok=function(a){Ilb(this,(C1(),m1),a,true)};_.pk=function(a,b){return bf(),bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[new umb(this,new bLb(this.d,H1(a),b,true)),new gf,new jf])))};_.qk=function(a){Pu(this.G,a);a&&yQ(this.G.p.f,new eE(this.G.C,true))};_.rk=function(a){var b,c,d,e;d=jPb(a,vuc(quc(E$c,1),lyd,0,2,[kPb(this.f.o)]));nIb(this.f,d);e=YOb(d);c=(DOb(),HOb(TGd in d?LOb(d[TGd]):(null,COb),new qPb));Klb(this,e,c);Nlb(this,WGd in d?LOb(d[WGd]):(null,COb));Llb(this,XGd in d?LOb(d[XGd]):(null,COb));Qlb(this,YGd in d?LOb((qmd(),d[YGd]?true:false)):(null,COb));wlb(this,ZGd in d?LOb((qmd(),d[ZGd]?true:false)):(null,COb));tlb(this,bHd in d?LOb(d[bHd]):(null,COb));b=UGd in d?LOb((qmd(),d[UGd]?true:false)):(null,COb);b.a&&FOb(b)&&Tt(this.q.c,(cu(),_t),EOb(b));this.G.w.Hf()};_.sk=function(a){var b,c,d;c=us(a);d=new F$b;b=new a0(this.G.C,new $u,new Ev);__(b,c,d);Ry(this.G.A);Ou(this.G,d.a);Pe(Te(this.p.a))};_.tk=function(a){$jb(this.C,a)};_.t=0;var qlb;var xMc=Mmd(200);n9c(1041,1,Xyd,Xlb);_.tb=mOd;var RLc=Mmd(1041);n9c(1040,1,Vyd,Ylb);_.eb=function(){Rlb(this.a);JNb(this.a.u,new Zlb(this))};var WLc=Mmd(1040);n9c(722,1,{2329:1},Zlb);_.jb=function(a){Rlb(this.a.a)};var SLc=Mmd(722);n9c(1056,1,{},$lb);_.nb=function(a){mf(lf(this.a,new _lb(a)),new amb(a))};var VLc=Mmd(1056);n9c(1057,1,Xyd,_lb);_.tb=function(a){this.a.pb(a.b)};var TLc=Mmd(1057);n9c(1058,1,Xyd,amb);_.tb=HOd;var ULc=Mmd(1058);n9c(729,1,Xyd,bmb);_.tb=mOd;var XLc=Mmd(729);n9c(1042,1,Vyd,dmb);_.eb=function(){cmb(this)};var YLc=Mmd(1042);n9c(1052,1,{},fmb);var ZLc=Mmd(1052);n9c(1053,1,Wyd,gmb);_.sb=nOd;var $Lc=Mmd(1053);n9c(1044,1,Xyd,hmb);_.tb=wMd;var _Lc=Mmd(1044);n9c(1054,1,Wyd,imb);_.sb=function(a){return a.a};var aMc=Mmd(1054);n9c(1047,1,eBd,jmb);_.Ud=function(a){Oe(this.a.p,this.b)};var bMc=Mmd(1047);n9c(1055,1,Wyd,kmb);_.sb=nOd;var cMc=Mmd(1055);n9c(1048,1,{194:1},lmb);_.Zd=function(){Oe(this.a.p,this.b)};var dMc=Mmd(1048);n9c(1049,1,{2360:1},mmb);var eMc=Mmd(1049);n9c(1050,1,{2361:1},nmb);var fMc=Mmd(1050);n9c(1051,1,{989:1},omb);_.vg=function(a){a.a==2&&zlb(this.a,sGd);a.a==1&&zlb(this.a,rGd)};var gMc=Mmd(1051);n9c(2263,1,{});_.ob=function(a){this.uk(pmb(a.ab()))};_.pb=wMd;var tTc=Mmd(2263);n9c(728,2263,{},rmb);_.uk=function(a){qmb(a)};var hMc=Mmd(728);n9c(1038,1037,{},smb);var iMc=Mmd(1038);n9c(471,1,Vyd,tmb);_.eb=function(){zlb(this.b,this.a)};var jMc=Mmd(471);n9c(586,1,{},umb);_.nb=function(a){this.a.nb(new vmb(this.b,a))};var kMc=Mmd(586);n9c(1039,1,{},vmb);_.ob=function(a){Pe(Te(this.b.p.a));this.a.ob(a)};_.pb=function(a){Pe(Te(this.b.p.a));this.a.pb(a)};var lMc=Mmd(1039);var mMc=Omd();n9c(1036,1,{},xmb);_.ob=function(a){var b;wmb((b=this,a,b))};_.pb=function(a){Slb(this.b,this.a,ytc(a.a,new Htc)?dHd:null)};_.a=0;var nMc=Mmd(1036);n9c(1035,1,eBd,ymb);_.Ud=function(a){Dkb(this.a,a.a.sd())};var oMc=Mmd(1035);n9c(1043,1,{},zmb);_.md=function(){return this.a.o};var pMc=Mmd(1043);n9c(1045,1,{},Amb);_.vk=function(a){return new Bmb(this.a,a)};var qMc=Mmd(1045);n9c(1046,1,Xyd,Bmb);_.tb=function(a){Ilb(this.a,this.b,a,true)};var rMc=Mmd(1046);n9c(741,1,{},Dmb);var sMc=Mmd(741);n9c(394,200,{200:1,394:1,572:1},Fmb,Gmb,Hmb);_.wk=function(){return Alb(this)};_.xk=function(){return us(this.j.a)};_.yk=function(){return Clb(this)};_.zk=function(a){Vkb(this.s,a)};_.Ak=function(a){Olb(this,a)};_.Bk=function(a){Xkb(this.s,a)};var uMc=Mmd(394);n9c(1016,1,SGd,Lmb);_.Xj=function Nmb(){return $wnd.marvin.Sketch};_.Yj=function(a){return a!=null&&kvc(a,394)};var Imb=false;var tMc=Mmd(1016);n9c(721,1,SGd,Rmb);_.Xj=function Tmb(){return $wnd.marvin.Sketch};_.Yj=function(a){return a!=null&&kvc(a,200)};var Omb=false;var vMc=Mmd(721);n9c(395,1,{2359:1,395:1,12:1,572:1,712:1},Zmb,$mb);_.V=function(a){return Vmb(this,a)};_.eb=function(){Ymb(this.a)};_.Xj=function _mb(){return $wnd.marvin.Sketch.Function};_.Yj=function(a){return a!=null&&kvc(a,395)};var Umb=false;var wMc=Mmd(395);n9c(251,10,{251:1,3:1,11:1,10:1},fnb,gnb);_.b=false;var anb,bnb,cnb,dnb;var yMc=Nmd(251,Q5c,inb);n9c(1390,1,{},knb);var AMc=Mmd(1390);n9c(1391,1,Vyd,lnb);_.eb=function(){qmb(this.a)};var zMc=Mmd(1391);n9c(1308,1,Vyd,nnb);_.eb=function(){mnb(this)};var BMc=Mmd(1308);n9c(1204,1,{},onb);var CMc=Mmd(1204);n9c(1210,760,{},snb);_.Vj=function(a,b){var c,d;if(!Cqd(this.a,a)){return}c=Eqd(this.a,a);d=(b.a&&b.b!=null?b.b:'').length==0;Hqb(c,d?null:Eqd(this.b,a))};var DMc=Mmd(1210);n9c(1304,1,{461:1,1000:1,13:1,2371:1},tnb);_.ed=oOd;_.jd=oOd;var FMc=Mmd(1304);n9c(1305,221,{},unb);_.ic=function(){mnb(this.a)};var EMc=Mmd(1305);n9c(789,1,{},Gnb);_.md=function(){return Anb(this)};var KMc=Mmd(789);n9c(1324,1,{},Inb);_.ob=function(a){this.a.a.uk(a.ab())};_.pb=function(a){Hnb(this,a)};var GMc=Mmd(1324);n9c(1325,1,{},Knb);_.ob=LOd;_.pb=function(a){Jnb(this,a)};var HMc=Mmd(1325);n9c(1326,1,{},Mnb);var IMc=Mmd(1326);n9c(1323,1,{},Nnb);_.Hd=function(a){var b;return b=QOb(s9c(a)),_db(this.a.c,b.b)};var JMc=Mmd(1323);n9c(1385,1,{},Pnb);var MMc=Mmd(1385);n9c(1386,1,{},Xnb);var LMc=Mmd(1386);n9c(1104,1,{},_nb);var NMc=Mmd(1104);n9c(1503,66,iHd,aob);_.db=function(){var a;a=hx(Lu(this.a.i));if(dsd(a.r).b.vd()+dsd(a.s).b.vd()+dsd(a.A).b.vd()+dsd(a.t).b.vd()+dsd(a.q).b.vd()+dsd(a.w).b.vd()+dsd(a.C).b.vd()+dsd(a.B).b.vd()+dsd(a.u).b.vd()==1&&!dsd(a.r).a.sd()){yQ(this.a.f,new sA(dsd(a.r).a.zd(0),this.a.i));return true}return false};_.De=function(a){ud(this,Byd,(qmd(),hy(hx(Lu(this.a.i)))?true:false))};var OMc=Mmd(1503);n9c(1648,66,jHd,cob);_.db=function(){if(this.c){yQ(this.b.f,new uA(this.c,this.b.i,this.b.i.A));this.b.i.w.Hf();this.c=null;return true}return false};_.De=function(a){bob(this)};_.Zd=function(){bob(this)};var PMc=Mmd(1648);n9c(135,66,kHd,gob,hob);_.db=function(){return dob(this)};_.ag=function(){ud(this,Fyd,(qmd(),T(this.d,this.c.a)?true:false))};var WNc=Mmd(135);n9c(280,135,kHd);_.db=function(){return iob(this)};var QNc=Mmd(280);n9c(621,280,{60:1,214:1,621:1,12:1,13:1,19:1},mob);_.db=function(){var a,b,c,d;if(hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null){b=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;lO(this,new PA(this.c.i,this.a,new Srd(vuc(quc(tWc,1),zBd,49,0,[b]))));wic((pic(),oic),new pob(this,b));this.c.i.w.Hf();this.c.a.Rd();this.c.i.w.Hf();return true}else{a=this.c.a;if(kvc(a,649)&&!!a.p&&!!Ku(this.c.i,a.p)){c=this.c.a;d=Ku(this.c.i,c.p);lO(this,new PA(this.c.i,this.a,new Srd(vuc(quc(tWc,1),zBd,49,0,[d]))));this.c.i.w.Hf();this.c.i.w.Hf();return true}}return iob(this)};_.fb=function(a){return lob(this,a)};_.Ck=function(){return !(kvc(this.a,93)&&dsd(this.c.i.A.r).b.vd()>1)&&!dsd(this.c.i.A.r).a.sd()};_.Dk=function(){lO(this,new PA(this.c.i,this.a,dsd(this.c.i.A.r)));this.c.i.w.Hf()};var RMc=Mmd(621);n9c(1410,1,Izd,pob);_.eb=pOd;var QMc=Mmd(1410);n9c(677,280,kHd,rob,sob);_.db=function(){var a,b,c,d,e,f,g,h;b=iy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.s).a.zd(0):null;if(!!b&&!Ex(this.c.i.A,b)){e=iy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.s).a.zd(0):null;lO(this,gB(this.c.i,this.a,(Xrd(),new ksd(e))));wic((pic(),oic),new tob(this,e));this.c.i.w.Hf();this.c.a.Rd();return true}else{d=my(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.A).a.zd(0):null;if(!!d&&!Ex(this.c.i.A,d)){f=my(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.A).a.zd(0):null;lO(this,dB(this.c.i,this.a,f));dx(Mu(this.c.i),jw(this.c.i,(!f.d&&P3b(f),kH(f.a.Lh(),f.d))));this.c.a.Rd();return true}else{c=ky(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.u).a.zd(0):null;if(!!c&&!Ex(this.c.i.A,c)){g=ky(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.u).a.zd(0):null;lO(this,jB(this.c.i,this.a,g));dx(Mu(this.c.i),jw(this.c.i,Aac((h=mUb(g.a),h.a),g.b.Lh())));this.c.a.Rd();return true}else{a=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;if(!!a&&!Ex(this.c.i.A,a)&&((s6b(),m6b)==this.a||h6b==this.a||q6b==this.a||f6b==this.a||l6b==this.a||r6b==this.a||p6b==this.a)){qob(this);this.c.a.Rd();return true}}}}return iob(this)};_.Ck=function(){var a;a=new Cy(this.c.i.A);return !dsd(a.s).a.sd()||!dsd(a.A).a.sd()||!dsd(a.u).a.sd()||dsd(a.r).b.vd()+dsd(a.s).b.vd()+dsd(a.A).b.vd()+dsd(a.t).b.vd()+dsd(a.q).b.vd()+dsd(a.w).b.vd()+dsd(a.C).b.vd()+dsd(a.B).b.vd()+dsd(a.u).b.vd()==1&&!dsd(a.r).a.sd()};_.Dk=function(){var a,b,c,d,e,f,g,h;b=new wB;d=false;h=new Cy(this.c.i.A);if(!dsd(h.s).a.sd()){uB(b,gB(this.c.i,this.a,dsd(h.s)));d=true}if(!dsd(h.A).a.sd()){uB(b,eB(this.c.i,this.a,dsd(h.A)));d=true}if(!dsd(h.u).a.sd()){uB(b,kB(this.c.i,this.a,dsd(h.u)));d=true}if(d){c=vB(b,this.c.i);yQ(this.c.f,c)}if(dsd(h.r).b.vd()+dsd(h.s).b.vd()+dsd(h.A).b.vd()+dsd(h.t).b.vd()+dsd(h.q).b.vd()+dsd(h.w).b.vd()+dsd(h.C).b.vd()+dsd(h.B).b.vd()+dsd(h.u).b.vd()==1&&!dsd(h.r).a.sd()){a=dsd(h.r).a.zd(0);g=xH(H9b(a.Lh(),false,K9b(a),LBd),a,this.c.i);f=new S2b(this.a,a,g);e=new By;lsd(dsd(this.c.i.C.n),g)||mx(e,g);nx(e,f);lO(this,new PC(this.c.i,e))}};var TMc=Mmd(677);n9c(1835,1,Izd,tob);_.eb=function(){dx(Mu(this.a.c.i),jw(this.a.c.i,D2b(this.b)))};var SMc=Mmd(1835);n9c(830,66,{60:1,245:1,830:1,12:1,13:1,19:1},wob);_.db=function(){var a;if(!(!!this.b.a.a&&!!vob(this,this.b.a.a.a))){return false}a=this.b.a.a.a;return qmd(),iO(vob(this,a),a)?true:false};_.De=function(a){ud(this,Byd,(qmd(),!!this.b.a.a&&!!vob(this,this.b.a.a.a)?true:false))};var UMc=Mmd(830);n9c(1488,66,nHd,xob);_.db=function(){var a,b;b=MWb();a=new pB(this.a.i,b);this.a.i.n&&(a=new AB(this.a.i,vuc(quc(PEc,1),ABd,38,0,[a,new eE(b,true)])));yQ(this.a.f,a);ud(this,Fyd,(qmd(),omd));this.a.i.w.Hf();return true};_.Ud=function(a){ud(this,Byd,(qmd(),!!this.a.i.C&&!Cdb(this.a.i.C)?true:false))};var VMc=Mmd(1488);n9c(1508,66,Hyd,yob);_.db=function(){!Sx(this.a.i.A)&&Ry(this.a.i.A);Yw(this.a,this.a.d);return true};var WMc=Mmd(1508);n9c(423,66,Hyd,zob,Aob,Bob);_.db=function(){this.a.eb();ud(this,Fyd,(qmd(),omd));return true};var XMc=Mmd(423);n9c(1493,1,pHd,Mob);_.md=function(){return Cob(this)};_.ne=function(){var a,b,c;b=Dob(this);c=Vw(this.a);a=b?new VA(c,!Eob(this,b),b):new eE(c,!c.e);yQ(this.a.f,a);return true};_.Ek=function(){if(O0b(Vw(this.a))){return Iob(this)||Fob(this,Lu(this.a.i).b)}return true};var YMc=Mmd(1493);n9c(1645,66,jHd,Oob);_.db=function(){if(this.c.a.vd()!=0){yQ(this.b.f,new BB(this.c,this.b.i));this.b.i.w.Hf();return true}return false};_.De=function(a){Nob(this)};_.Zd=function(){Nob(this)};var ZMc=Mmd(1645);n9c(1501,1,pHd,Sob);_.ne=function(){var a;a=Rob(this);!!a&&yQ(this.a.f,KB(dsd(a.r),this.a.i.C));return true};_.Ek=function(){var a,b;b=this.a.i;if(!Sx(b.A)){a=b.C;if(dsd(a.n).b.vd()>0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))){return !!Rob(this)}}return false};var $Mc=Mmd(1501);n9c(635,1,{},Yob);_.a=false;var _Mc=Mmd(635);n9c(1081,66,Hyd,Zob);_.db=function(){if(this.a){Ymb(this.a.a);return true}return false};var aNc=Mmd(1081);n9c(1478,66,Hyd,$ob);_.db=function(){nEb(new pEb(this.a.a));ud(this,Fyd,(qmd(),false));return false};var bNc=Mmd(1478);n9c(1486,280,kHd,_ob);_.db=function(){var a;if(hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null){a=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;lO(this,new dE(this.c.i,-1,new Srd(vuc(quc(tWc,1),zBd,49,0,[a]))));wic((pic(),oic),new bpb(this,a));this.c.i.w.Hf();this.c.a.Rd();this.c.i.w.Hf();return true}return iob(this)};_.Ck=qOd;_.Dk=function(){lO(this,new dE(this.c.i,-1,dsd(this.c.i.A.r)));!this.e&&(this.e=new Cqc);vqc(this.e,new ae,this)};var dNc=Mmd(1486);n9c(1487,1,Izd,bpb);_.eb=pOd;var cNc=Mmd(1487);n9c(633,280,kHd,cpb);_.Ck=qOd;_.Dk=function(){this.a.Ag(new Cy(this.c.i.A))};var eNc=Mmd(633);n9c(1489,66,Hyd,epb);_.db=function(){if(Sx(this.b.i.A)){if((!this.a||!this.a.b.c.c.M)&&!Sx(hx(Lu(this.b.i)))){dpb(this,hx(Lu(this.b.i)));return true}}else{dpb(this,this.b.i.A);Ry(this.b.i.A);return true}return false};var fNc=Mmd(1489);n9c(1481,66,iHd,fpb);_.db=function(){var a;if(Sx(this.b)){return false}a=QVb(this.a.i.C,this.b);Gy(a,new qad(0.77,-0.77));yQ(this.a.f,RC(this.a.i,a));Ry(this.a.i.A);Ou(this.a.i,a);return true};_.De=function(a){Dx(this.b);qx(this.b,gpb(this.a.i));ud(this,Byd,(qmd(),Sx(this.b)?false:true))};var gNc=Mmd(1481);n9c(1482,280,kHd,hpb);_.Ck=function(){return !Sx(this.c.i.A)};_.Dk=function(){lO(this,new DD(this.c.i,this.c.i.A));!this.e&&(this.e=new Cqc);vqc(this.e,new ae,this)};var hNc=Mmd(1482);var kpb,lpb,mpb;n9c(1748,1747,fAd,opb);var iNc=Mmd(1748);n9c(1490,66,Hyd,qpb);_.db=function(){Jv(this.a);ud(this,Fyd,(qmd(),false));return true};var jNc=Mmd(1490);n9c(1491,66,rHd,rpb);_.db=function(){ud(this,Fyd,(qmd(),false));if(!Sx(this.a.A)){Kv(this.a,this.a.A);return true}return false};_.Zd=function(){ud(this,Byd,(qmd(),Sx(this.a.A)?false:true))};var kNc=Mmd(1491);n9c(839,1,pHd);var lNc=Mmd(839);n9c(610,1,{},upb);var mNc=Mmd(610);n9c(1484,280,kHd,vpb);_.db=function(){var a;if(hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null){a=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;lO(this,new dE(this.c.i,1,new Srd(vuc(quc(tWc,1),zBd,49,0,[a]))));wic((pic(),oic),new xpb(this,a));this.c.i.w.Hf();this.c.a.Rd();this.c.i.w.Hf();return true}return iob(this)};_.Ck=qOd;_.Dk=function(){lO(this,new dE(this.c.i,1,dsd(this.c.i.A.r)));!this.e&&(this.e=new Cqc);vqc(this.e,new ae,this)};var oNc=Mmd(1484);n9c(1485,1,Izd,xpb);_.eb=pOd;var nNc=Mmd(1485);n9c(1506,135,{60:1,214:1,12:1,143:1,13:1,19:1},ypb);_.Ud=function(a){ud(this,Byd,(qmd(),St(this.c.c,(cu(),_t)).Pd()?false:true))};var pNc=Mmd(1506);n9c(426,66,rHd,zpb,Apb);_.db=function(){if(this.c){yQ(this.a.f,this.b.Fk(this.a.i.A,this.c));return true}return false};_.Zd=function(){this.c=$z(this.a.i.A);Bd(this,!!this.c)};var uNc=Mmd(426);n9c(1639,1,{},Jpb);_.Fk=function(a,b){return Dpb(this.a,a,b)};var qNc=Mmd(1639);n9c(1640,1,{},Kpb);_.Fk=function(a,b){return Epb(this.a,a,b)};var rNc=Mmd(1640);n9c(1641,1,{},Lpb);_.Fk=function(a,b){return Fpb(this.a,a,b)};var sNc=Mmd(1641);n9c(1642,1,{},Mpb);_.Fk=function(a,b){return Gpb(this.a,a,b)};var tNc=Mmd(1642);n9c(832,280,kHd,Tpb);_.Ck=function(){var a;a=this.c.i.A;return (dsd(a.r).b.vd()>1||!dsd(a.u).a.sd())&&(dsd(a.r).b.vd()<2||aVb(this.c.i.C,dsd(a.r)))&&Opb(this,a)};_.Dk=function(){Rpb(this)};var wNc=Mmd(832);n9c(509,1,Izd,Upb);_.eb=function(){yQ(this.a.c.f,this.b);Ry(this.a.c.i.A)};var vNc=Mmd(509);n9c(1637,832,kHd,Xpb);_.Ck=function(){var a;a=this.c.i.A;return (dsd(a.s).b.vd()+dsd(a.A).b.vd()+dsd(a.u).b.vd()>0&&dsd(a.r).a.sd()||dsd(a.r).b.vd()>1)&&Opb(this,a)};_.Dk=function(){var a,b,c,d,e;e=this.c.i.A;c=jL(dsd(e.r));if(c){a=new kud(dsd(e.r));a.a.qp(c)!=null;d=new By;rx(d,new W0b(a,c,Vpb));b=new PC(this.c.i,d);xic((pic(),oic),new Upb(this,b))}else dsd(e.s).b.vd()+dsd(e.A).b.vd()+dsd(e.u).b.vd()>0&&dsd(e.r).a.sd()?xic((pic(),oic),new Ypb(this,e)):Rpb(this)};var Vpb;var yNc=Mmd(1637);n9c(1638,1,Izd,Ypb);_.eb=function(){var a;a=vB(uB(uB(uB(new wB,gB(this.a.c.i,(Wpb(),Vpb),dsd(this.b.s))),eB(this.a.c.i,Vpb,dsd(this.b.A))),kB(this.a.c.i,Vpb,dsd(this.b.u))),this.a.c.i);yQ(this.a.c.f,a);Ry(this.a.c.i.A)};var xNc=Mmd(1638);n9c(308,66,sHd,Zpb);_.db=function(){return !!this.b&&this.b.ne()};_.Gk=function(){ud(this,Byd,(qmd(),!!this.b&&this.b.Ek()?true:false))};var zNc=Mmd(308);n9c(1492,308,sHd,_pb);_.Gk=function(){ud(this,Byd,(qmd(),!!this.b&&this.b.Ek()?true:false));ud(this,Fyd,!!this.a&&Cob(this.a)?true:false)};var ANc=Mmd(1492);n9c(499,1,{},bqb);var DNc=Mmd(499);n9c(1327,1,{245:1,13:1},cqb);_.De=function(a){aqb(this.a)};var BNc=Mmd(1327);n9c(1328,1,{194:1},dqb);_.Zd=function(){aqb(this.a)};var CNc=Mmd(1328);n9c(510,280,kHd,eqb);_.Ck=function(){this.a.a=suc(_5c,lyd,1,0,5,1);aP(this.b)||Xr(this.a,Uac(Yac(new Cy(this.c.i.A))));return this.a.a.length!=0};_.Dk=function(){var a,b,c;if(this.a.a.length!=0){a=new By;for(c=new Frd(this.a);c.adsd(e.r).b.vd()){c=new Wgb;a=new utd(dsd(d.n));Qqd(a,dsd(e.r));f=Cib(this.d,d,c);b=Yqb(new Zqb(Vgb(c,cWb(d))),a);return Rqb(this,f,b)}mf(lf(this.b.Qi(d),new Tqb(this)),new Vqb(this,d));return true};_.c=false;var fOc=Mmd(812);n9c(1430,1,Xyd,Tqb);_.tb=function(a){Qqb(this.a,a.b)};var cOc=Mmd(1430);n9c(1431,1,Xyd,Vqb);_.tb=function(a){var b;Uqb((b=this,a,b))};var dOc=Mmd(1431);n9c(1432,1,Xyd,Wqb);_.tb=function(a){yQ(this.a.a.f,new sD(this.a.a.i,a,this.a.a.i.A))};var eOc=Mmd(1432);n9c(903,1,{},Zqb);var hOc=Mmd(903);n9c(1823,1,{},_qb);_.Wg=function(a,b){return $qb(a,b)};_.V=qMd;var gOc=Mmd(1823);n9c(676,1,Xyd,arb);_.tb=function(a){yQ(this.a.f,new pB(this.a.i,a))};var iOc=Mmd(676);n9c(1437,1,pHd,frb);_.ne=function(){var a,b,c,d,e;c=Vw(this.a);b=dsd(c.n);if(!b.a.sd()&&!Nr(cWb(c),b)){e=this.a.i;if(Sx(e.A)){if(dsd(c.p).b.vd()>1){return crb(this,null,drb(dsd(c.p)))}}else{a=new $s((qmd(),false));d=erb(this,e.A,a);if(!dsd(d.s).a.sd()){return crb(this,d,a.a)}}}return false};var kOc=Mmd(1437);n9c(1438,1,Xyd,grb);_.tb=function(a){yQ(this.a.a.f,new xA(this.a.a.i,a,this.b))};var jOc=Mmd(1438);n9c(622,1,pHd);var lOc=Mmd(622);n9c(1436,622,pHd,irb);_.ne=function(){var a,b;a=Vw(this.b);if(dsd(a.n).b.vd()>0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))){b=xnb(this.c,sLb(this.a,a));if(b){bt(b,new arb(this.b));return true}}return false};var mOc=Mmd(1436);n9c(1435,622,pHd,lrb);_.ne=function(){var a,b,c,d,e,f,g,h;e=Vw(this.b);a=dsd(e.n);if(!a.a.sd()&&!Nr(cWb(e),a)){b=null;if(Sx(this.b.i.A)){h=sLb(this.a,e);d=jrb(dsd(Vw(this.b).n))}else{g=krb(this);if(g.a.length==0){return false}c=new Wgb;h=tLb(this.a,e,c);b=Yqb(new Zqb(Vgb(c,cWb(e))),g);d=jrb(g)}f=Bnb(this.c,h,d,b);if(f){bt(f,new arb(this.b));return true}}return false};var nOc=Mmd(1435);n9c(1433,622,pHd,prb);_.ne=function(){var a,b,c;if(!mrb(this)){a=new Wgb;b=Vw(this.b);c=Fnb(this.c,tLb(this.a,b,a));if(c){bt(c,new qrb(this,new trb(Vgb(a,cWb(b)))));return true}return false}orb(this);!!this.b.i&&$v(this.b.i);return true};var pOc=Mmd(1433);n9c(1434,1,Xyd,qrb);_.tb=function(a){rrb(this.b,a);nrb(this.a)};var oOc=Mmd(1434);n9c(671,1,Xyd,trb,urb);_.tb=function(a){rrb(this,a)};var qOc=Mmd(671);var vrb,wrb,xrb;var Brb,Crb,Drb,Erb,Frb,Grb,Hrb,Irb,Jrb,Krb,Lrb,Mrb,Nrb,Orb,Prb,Qrb,Rrb,Srb,Trb,Urb,Vrb,Wrb,Xrb,Yrb,Zrb,$rb,_rb,asb,bsb,csb,dsb,esb,fsb,gsb,hsb,isb,jsb,ksb,lsb,msb,nsb,osb,psb,qsb,rsb,ssb,tsb,usb,vsb,wsb,xsb,ysb,zsb,Asb,Bsb,Csb,Dsb,Esb,Fsb,Gsb,Hsb,Isb,Jsb,Ksb,Lsb,Msb,Nsb,Osb,Psb,Qsb,Rsb;n9c(1142,1,{},jub);var rOc=Mmd(1142);n9c(1322,1,{},mub);var sOc=Mmd(1322);var nub;n9c(1017,1,{},tub);var tOc=Mmd(1017);n9c(650,1,Vyd);_.eb=function(){var a;a=this.Hk(this.a);a||this.b.a.md().Zb()};var uOc=Mmd(650);n9c(1635,650,Vyd,vub);_.Hk=function(a){return bwb(a,$zd)};var vOc=Mmd(1635);n9c(1634,650,Vyd,wub);_.Hk=function(a){return bwb(a,Zzd)};var wOc=Mmd(1634);n9c(1636,650,Vyd,xub);_.Hk=function(a){return bwb(a,Yzd)};var xOc=Mmd(1636);n9c(648,1,Vyd,yub);_.eb=function(){this.a.a.md().Zb()};var yOc=Mmd(648);n9c(1329,1,{},Nub);var DOc=Mmd(1329);n9c(1330,1,AHd,Oub);_.Ik=function(){Mub(this.a)};_.Jk=function(a){Mub(this.a)};var zOc=Mmd(1330); +n9c(1331,1,{},Rub);var AOc=Mmd(1331);n9c(1333,1,Xyd,Sub);_.tb=function(a){X5b(a.jh(),true);Iub(this.a,this.b,a.Me().zd(0))};var BOc=Mmd(1333);n9c(1332,1,Xyd,Vub);_.tb=function(a){Qm(this.a.e,false)};var COc=Mmd(1332);n9c(1313,1,{},evb);var EOc=Mmd(1313);n9c(1302,1,{},kvb);var IOc=Mmd(1302);n9c(1303,1,Rzd,mvb);_.nc=function(a){tlc(a.a);!!a.a&&slc(a.a);lvb(this,a.a)};var FOc=Mmd(1303);n9c(125,10,{125:1,3:1,11:1,10:1},Evb);var nvb,ovb,pvb,qvb,rvb,svb,tvb,uvb,vvb,wvb,xvb,yvb,zvb,Avb,Bvb,Cvb;var GOc=Nmd(125,Q5c,Fvb);n9c(781,1,{781:1},Ivb);var HOc=Mmd(781);n9c(1347,1,{},Mvb);var JOc=Mmd(1347);n9c(792,1,{},Tvb);var KOc=Mmd(792);n9c(1348,1,{},Xvb);var MOc=Mmd(1348);n9c(1349,1,Xyd,Yvb);_.tb=function(a){Rvb(this.a.a,a)};var LOc=Mmd(1349);n9c(1211,1,{2368:1,2369:1,2333:1,13:1},_vb);_.Kk=function(a){$vb(this,a)};var NOc=Mmd(1211);n9c(1321,1,{},cwb);var OOc=Mmd(1321);n9c(692,1,{},ewb);var POc=Mmd(692);n9c(1427,1,{},kwb);var ROc=Mmd(1427);n9c(1428,2263,{},lwb);_.uk=sOd;var QOc=Mmd(1428);n9c(1568,1,BHd,nwb);_.Zb=function(){var a;a=uwb(this.b);LNb(this.a,new owb(this));Lg(a)};var TOc=Mmd(1568);n9c(1569,1,{},owb);_.ob=function(a){var b;ywb((b=this,a,b).a.b,new wt(new HNb,new At((Ewb(),Dwb),cHd)))};_.pb=function(a){mwb(this.a,a)};var SOc=Mmd(1569);n9c(1716,1,{},Awb);var pwb,qwb,rwb,swb;var UOc=Mmd(1716);n9c(546,10,{546:1,3:1,11:1,10:1},Fwb);var Cwb,Dwb;var VOc=Nmd(546,Q5c,Gwb);n9c(2022,1,qAd,Lwb);_.Cb=AMd;var WOc=Mmd(2022);n9c(897,1,BHd,Pwb);_.Zb=function(){Owb(this)};var ZOc=Mmd(897);n9c(1818,1,Jyd,Qwb);_.hb=function(a){yp(this.b,fxb(this.a));ixb(this.a,null)};var XOc=Mmd(1818);n9c(1819,1,Jyd,Rwb);_.hb=function(a){Nwb(this.a,Cp(this.b))};var YOc=Mmd(1819);n9c(1609,1,{},Zwb);_.md=function(){return Twb(this)};_.ob=wMd;_.pb=function(a){Wwb(this,a)};_.a=false;var $Oc=Mmd(1609);n9c(2033,2032,qAd,$wb);var aPc=Mmd(2033);n9c(2034,_Ad,{},cxb);_.Id=function(a){return bxb(a)};var _wb;var _Oc=Mmd(2034);n9c(2031,1,qAd,kxb);_.Cb=LNd;var bPc=Mmd(2031);n9c(1976,wBd,xBd,lxb);_.Tf=function(){this.b=this.c.Ji();this.c.Ni(this.a);$v(this.d)};_.Uf=function(){this.c.Ni(this.b);$v(this.d)};var cPc=Mmd(1976);n9c(1739,1,BHd,nxb);_.Zb=DOd;var dPc=Mmd(1739);n9c(400,1,BHd,qxb);_.Zb=function(){pxb(this)};var fPc=Mmd(400);n9c(1105,1,pAd,sxb);_.ed=function(a){a.a&&FEb(this.a)};var ePc=Mmd(1105);n9c(1429,1,{},txb);_.uk=sOd;var gPc=Mmd(1429);n9c(1807,1,{2388:1},uxb);var hPc=Mmd(1807);n9c(1570,1,{124:1,72:1},zxb);_.tb=function(a){vxb(this,a)};_.vk=function(a){return new Exb(this,a)};_.Zb=function(){Lxb(this.d,this,new Cxb(this))};var lPc=Mmd(1570);n9c(1571,1,Xyd,Cxb);_.tb=function(a){wxb(this.a,a)};var iPc=Mmd(1571);n9c(1572,1,Vyd,Dxb);_.eb=function(){gg(Jxb(this.a.d),true)};var jPc=Mmd(1572);n9c(1573,1,Xyd,Exb);_.tb=function(a){yxb(this.a,this.b,a)};var kPc=Mmd(1573);n9c(1574,1,{},Mxb);var pPc=Mmd(1574);n9c(851,1,Jyd,Nxb);_.hb=function(a){!!this.a.j&&vxb(this.a.j,new Pxb(this.a,this.b))};_.b=false;var mPc=Mmd(851);n9c(1575,1,RHd,Oxb);_.Lk=function(a){!!this.a.i&&Bxb(this.a.i,this.a.e)};var nPc=Mmd(1575);n9c(1576,1,{2386:1},Pxb);_.b=false;var oPc=Mmd(1576);var Qxb=0;n9c(547,10,{547:1,3:1,11:1,10:1},Wxb);_.a=0;_.b=0;var Txb,Uxb;var qPc=Nmd(547,Q5c,Xxb);n9c(896,66,{60:1,2342:1,12:1,19:1},Zxb);_.kb=function(a){!this.a&&(this.a=new Nvd);dvd(this.a.a);ud(this,Fyd,(qmd(),false))};_.db=function(){ud(this,Fyd,Yxb(this,Fyd));!this.a&&(this.a=new Nvd);dvd(this.a.a);return true};_.fb=function(a){return Yxb(this,a)};_.b=false;var rPc=Mmd(896);n9c(1968,66,{60:1,2342:1,270:1,12:1,19:1},byb);_.kb=function(a){zd(a.f)&&zd(this.a)?ud(this.a,Fyd,(qmd(),omd)):pvc((qmd(),pmd))===pvc($xb(this,Fyd))&&ud(this,Fyd,omd)};_.db=function(){var a;if(zd(this.b)){a=cyb(this.b);return ayb(this,a)}else if(zd(this.c)){a=cyb(this.c);return ayb(this,a)}rd(this.a);return true};_.fb=function(a){return $xb(this,a)};_.ib=function(a){ud(this,a.a,a.b)};_.gb=function(a,b){_xb(this,a,b)};var sPc=Mmd(1968);n9c(852,1,{270:1,124:1},myb);_.ib=function(a){if(Hnd(Fyd,a.a)&&pvc((qmd(),pmd))===pvc(a.b)){if(this.a.M){ryb(this.a,false)}else{ud(this.e,Fyd,(qmd(),omd));ud(this.d,Fyd,omd)}}};_.Zb=function(){lyb(this);Lg(this.a);xm(this.a)};var wPc=Mmd(852);n9c(1584,103,mzd,syb);_.Wb=function(a){ryb(this,a)};_.fd=function(){ud(this.a.d,Fyd,(qmd(),false));ud(this.a.e,Fyd,false);gg(this.a.c,false);ryb(this,false)};var tPc=Mmd(1584);n9c(1585,1,Jyd,tyb);_.hb=function(a){kyb(this.a)};var uPc=Mmd(1585);n9c(1586,1,Kyd,uyb);_.ib=function(a){if(Hnd(Fyd,a.a)){if(pvc((qmd(),pmd))===pvc(a.b)){gg(this.b,true);Lg(this.a.a)}else pmd==Yxb(this.c,Fyd)||gg(this.b,false)}};var vPc=Mmd(1586);n9c(211,1,ZHd);_.Pk=function(){return this.Qk()&&(!this.f||!Cqd(this.f,this.Nk())||!T(this.Ok(),Eqd(this.f,this.Nk())))};_.Rk=function(a){vyb(this,a)};_.j=true;var xPc=Mmd(211);n9c(2137,211,ZHd,xyb);_.Nk=function(){return kcc(),dcc};_.Ok=function(){var a;return a=Rf(this.a).selectedIndex,a==0?(qmd(),true):a==1?(qmd(),false):null};_.Mk=function(){var a;this.a=new Xgd;Lgd(this.a,UHd);Lgd(this.a,VHd);Lgd(this.a,'');hg(this.a,$Hd);if(this.b){Ugd(this.a,0)}else if(this.f){a=Eqd(this.f,(kcc(),dcc));Ugd(this.a,a==null?2:a?0:1)}return new Srd(vuc(quc(D3c,1),_Hd,21,0,[this.a]))};_.Qk=function(){var a;return a=Qgd(this.a),(a==0?(qmd(),true):a==1?(qmd(),false):null)!=null};_.b=false;var yPc=Mmd(2137);n9c(1590,1,BHd,Fyb);_.Zb=function(){Dyb(this)};_.k=null;var CPc=Mmd(1590);n9c(1591,1,Jyd,Hyb);_.hb=function(a){Eyb(this.a)};var zPc=Mmd(1591);n9c(854,1,Izd,Iyb);_.eb=function(){var a,b,c,d;if(!this.a.f.M){Dyb(this.a);return}c=Pf(this.a.f);d=Qf(this.a.f);b=(Tf(this.a.f)-this.c)/2|0;a=(Sf(this.a.f)-this.b)/2|0;Zg(this.a.f,c-b,d-a)};_.b=0;_.c=0;var APc=Mmd(854);n9c(1592,1,RHd,Jyb);_.Lk=function(a){var b,c,d;d=Tf(this.a.f);b=Sf(this.a.f);c=Rf(this.a.a).selectedIndex;Cyb(this.a,this.b[c]);Byb(this.a,d,b)};var BPc=Mmd(1592);n9c(924,1,{924:1},Uyb);_.Ok=function(){return Pyb(this),this.j};_.Qk=function(){return Syb(this)};var DPc=Mmd(924);n9c(2127,211,ZHd,Zyb);_.Nk=function(){return kcc(),jcc};_.Ok=function(){return Xyb(this)};_.Mk=function(){var a,b,c,d,e;d=new es;e=new $yb;this.a=new Did(Wyb(this),new kjd,e);hg(this.a,this.b==(Kbc(),Cbc)?nId:oId);Wr(d,this.a);a=new ped;if(this.b==Cbc){BEb(this.a.a,new _yb(this,a));og(this.a.a,new azb(this,a),(qoc(),qoc(),poc));og(this.a.a,new bzb(this,a),(_oc(),_oc(),$oc));og(this.a.a,new czb(this,a),(ipc(),ipc(),hpc));og(this.a.a,new dzb(this,a),(Qpc(),Qpc(),Ppc));d.a[d.a.length]=a}if(this.f){b=Eqd(this.f,(kcc(),jcc));if(b!=null){c=Vyb(b);if(this.b==Jbc&&c>0||this.b==Cbc&&c>0&&c<119||this.b==Gbc&&(i1b(),c>0&&c<=126&&h1b[c-1].a==0)){Bid(this.a,b);this.b==Cbc&&Cic((pic(),new ezb(this,a)),200)}}}return d};_.Qk=function(){var a,b;b=Xyb(this);if(b==null||b.length==0){return false}if(this.b==(Kbc(),Jbc)&&Vyb(b)<1){return false}if(this.b==Cbc){a=Vyb(b);if(a<1||a>118){return false}}else if(this.b==Gbc){a=Vyb(b);i1b();if(!(a>0&&a<=126&&h1b[a-1].a==0)){return false}}return true};var LPc=Mmd(2127);n9c(2128,678,{},$yb);_.hd=wOd;var EPc=Mmd(2128);n9c(2129,1,eBd,_yb);_.Ud=tOd;var FPc=Mmd(2129);n9c(2130,1,RHd,azb);_.Lk=tOd;var GPc=Mmd(2130);n9c(2131,1,Hzd,bzb);_.cc=tOd;var HPc=Mmd(2131);n9c(2132,1,GAd,czb);_.oc=tOd;var IPc=Mmd(2132);n9c(2133,1,HAd,dzb);_.mc=tOd;var JPc=Mmd(2133);n9c(960,1,{},ezb);_.Gc=function(){var a;a=Vyb(Xyb(this.a));a>0&&a<119?jjc(Rf(this.b),pId+a+'<\/b>'):(Rf(this.b).innerHTML='',undefined);return false};var KPc=Mmd(960);n9c(982,1,{},fzb);_.Wg=function(a,b){var c,d,e;return c=new Srd(a$b()),d=Tr(c,a),e=Tr(c,b),d==e?0:d=0&&b.a<255||IEb(this.a.b,mnd(0))};var aQc=Mmd(2144);n9c(334,10,{334:1,3:1,11:1,10:1},iAb);var dAb,eAb,fAb,gAb;var bQc=Nmd(334,Q5c,kAb);n9c(1587,1,BHd,pAb);_.Zb=function(){!!this.c&&Lg(this.c)};var fQc=Mmd(1587);n9c(1588,1,Jyd,qAb);_.hb=function(a){nAb(this.a,this.b)};var dQc=Mmd(1588);n9c(1589,1,RHd,rAb);_.Lk=function(a){nDb(this.b,Rf(this.c).selectedIndex);oAb(this.a)};var eQc=Mmd(1589);n9c(1969,1,{2394:1,465:1,21:1},IAb);_.Cb=function(){return DAb(this)};_.Sk=function(){return GAb(this)};_.d=false;var nQc=Mmd(1969);n9c(1972,1,eBd,KAb);_.Ud=function(a){if(a.a){rl(this.a,false)}else{rl(this.a,true);Rf(this.a).focus()}};var gQc=Mmd(1972);n9c(1970,1,{},OAb);_.Tk=function(a,b){return LAb(a,b)};_.Vk=function(a){return MAb(a)};_.Wk=function(a){return NAb(a)};_.Uk=function(a){var b;if(!a.c){b=a.c?null:a.f;if(!!b&&NAb(b.b)){return mnd(b.a)}}return null};var hQc=Mmd(1970);n9c(685,1,BId,RAb);_.Cb=VMd;_.Sk=function(){var b,c;c=new eCb(pl(this.a));if(c.a){try{b=EEb(this.a);PAb(this,b)&&(c.c=b,c.b=false)}catch(a){a=H8c(a);if(kvc(a,46)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}}try{mCb(this.b,c)}catch(a){a=H8c(a);if(kvc(a,268)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}return true};var jQc=Mmd(685);n9c(1971,1,DId,SAb);_.Xk=yOd;var iQc=Mmd(1971);n9c(289,10,{289:1,3:1,11:1,10:1},XAb);var TAb,UAb,VAb;var kQc=Nmd(289,Q5c,YAb);n9c(548,1,BId,ZAb);_.Cb=vOd;_.Sk=function(){try{mCb(this.a,this.b)}catch(a){a=H8c(a);if(kvc(a,268)){return false}else throw I8c(a)}return true};var lQc=Mmd(548);n9c(686,1,{},aBb);_.Tk=function(a,b){return $Ab(a,b)};_.Vk=function(a){return _Ab(a)};_.Wk=function(a){return (WAb(),UAb)==a};_.Uk=function(a){var b;if(!a.c){b=a.c?null:a.f;if(x9c(new RegExp(sCd),b)){return mnd(Xmd(b,10))}}return null};var mQc=Mmd(686);n9c(1734,1,Wyd,nBb);_.sb=function(a){return cBb(this,a)};var oQc=Mmd(1734);n9c(2323,1,{});_.Yk=UMd;_.Zk=xNd;var PQc=Mmd(2323);n9c(2070,2323,{},uBb);_.$k=function(a){return tBb(this,a)};var pQc=Mmd(2070);n9c(2116,1,BId,BBb);_.Cb=BMd;_.Sk=function(){var b,c;if(yBb(this)){b=xBb(this);try{c=new eCb(true);c.c=b;c.b=false;mCb(this.a,c);return true}catch(a){a=H8c(a);if(!kvc(a,268))throw I8c(a)}}zBb(this,true);return false};_.b=null;var xQc=Mmd(2116);n9c(2117,678,{},CBb);_.hd=wOd;var qQc=Mmd(2117);n9c(2118,1,eBd,DBb);_.Ud=xOd;var rQc=Mmd(2118);n9c(2119,1,RHd,EBb);_.Lk=xOd;var sQc=Mmd(2119);n9c(2120,1,Hzd,FBb);_.cc=xOd;var tQc=Mmd(2120);n9c(2121,1,GAd,GBb);_.oc=xOd;var uQc=Mmd(2121);n9c(2122,1,HAd,HBb);_.mc=xOd;var vQc=Mmd(2122);n9c(959,1,{},IBb);_.Gc=function(){var a;a=Vyb(xBb(this.a));a>0&&a<119?jjc(Rf(this.b),pId+a+'<\/b>'):(Rf(this.b).innerHTML='',undefined);return false};var wQc=Mmd(959);n9c(2123,1,BId,LBb);_.Cb=VMd;_.Sk=function(){var b,c;c=new eCb(true);try{b=EEb(this.b);if(KBb(this,b)){return true}c.c=b;c.b=false;mCb(this.a,c)}catch(a){a=H8c(a);if(kvc(a,45)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}return true};var zQc=Mmd(2123);n9c(2124,1,RHd,MBb);_.Lk=yOd;var yQc=Mmd(2124);n9c(2219,1,{},QBb);_.Hd=function(a){return OBb(a)};_.Id=function(a){return PBb(a)};var AQc=Mmd(2219);n9c(974,_Ad,{},SBb);_.Hd=function(a){return RBb(a)};_.Id=zOd;var BQc=Mmd(974);n9c(1733,1,{},_Bb);var CQc=Mmd(1733);n9c(458,1,{},eCb);_.md=VMd;_.Pd=AMd;_._k=KMd;_.a=false;_.b=true;_.c=null;var DQc=Mmd(458);n9c(2125,1,{465:1},kCb);_.Sk=function(){var b,c;b=!!this.a&&pl(this.a)?$_b(Ngd(this.a,Rf(this.a).selectedIndex)):null;c=new eCb(pl(this.c));!!b&&(c.c=b,c.b=false);try{mCb(this.b,c)}catch(a){a=H8c(a);if(kvc(a,268)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}return true};var FQc=Mmd(2125);n9c(2126,1,RHd,lCb);_.Lk=function(a){gCb(this.a)};var EQc=Mmd(2126);n9c(192,1,{192:1},tCb,uCb);_.md=function(){return nCb(this)};_.Pd=KMd;_._k=VMd;_.b=true;_.c=true;var GQc=Mmd(192);n9c(456,1,{},zCb);_.md=function(){return wCb(this)};_.Pd=function(){return pl(this.b)};_._k=function(){return xCb(this)};var HQc=Mmd(456);n9c(566,1,BId,BCb);_.Cb=BMd;_.Sk=function(){var b,c;c=new eCb(true);try{if(!xCb(this.e)){b=null;pl(this.c)&&(b=EEb(this.c));dCb(c,this.b.Tk(wCb(this.e),b))}mCb(this.a,c)}catch(a){a=H8c(a);if(kvc(a,45)){zBb(this,true);return false}else throw I8c(a)}return true};var KQc=Mmd(566);n9c(2182,1,RHd,CCb);_.Lk=function(a){var b;zBb(this.a,false);b=!xCb(this.c)&&this.b.Wk(wCb(this.c));rl(this.a.c,b)};var IQc=Mmd(2182);n9c(2183,1,DId,DCb);_.Xk=function(a){zBb(this.a,false)};var JQc=Mmd(2183);n9c(376,2323,{},ECb);_.$k=function(a){if(a==null){throw I8c(new JCb)}return a};var LQc=Mmd(376);n9c(2071,2323,{},FCb);_.Zk=FNd;_.$k=zOd;var MQc=Mmd(2071);n9c(953,2323,{},HCb);_.Yk=AMd;_.$k=function(a){return GCb(this,a)};_.Zk=FNd;_.b=0;_.c=0;var NQc=Mmd(953);n9c(268,45,{268:1,3:1,45:1,42:1},ICb,JCb);var OQc=Mmd(268);n9c(2303,1,{});var QQc=Mmd(2303);n9c(1593,1,BHd,OCb);_.Zb=function(){!!this.b&&Lg(this.b.a)};var XQc=Mmd(1593);n9c(1598,1,{},QCb);var RQc=Mmd(1598);n9c(1599,1,Vyd,RCb);_.eb=function(){NCb(this.a)};var SQc=Mmd(1599);var SCb,TCb,UCb,VCb;n9c(1594,2303,{},XCb);_.Yf=AOd;_.$f=function(a,b){O2b(a,b)};_.al=function(a){return a?'On':'Off'};_.bl=function(){return vuc(quc(L5c,1),lyd,583,8,[(qmd(),omd),pmd])};var TQc=Mmd(1594);n9c(1595,2303,{},YCb);_.Yf=function(a){return a.e};_.$f=function(a,b){N2b(a,b)};_.al=function(a){var b;return b=a.a,b!=null?Snd(a.j!=null?a.j:''+a.k,'_',' ').toLowerCase()+' - '+b:Snd(a.j!=null?a.j:''+a.k,'_',' ').toLowerCase()};_.bl=function(){return Xcc(),vuc(quc(ZYc,1),nyd,206,0,[Wcc,Rcc,Ucc,Scc,Tcc,Vcc])};var UQc=Mmd(1595);n9c(1596,2303,{},ZCb);_.Yf=function(a){return a.j};_.$f=function(a,b){K2b(a,b)};_.al=COd;_.bl=function(){return Ccc(),vuc(quc(XYc,1),nyd,236,0,[zcc,Bcc,Acc])};var VQc=Mmd(1596);n9c(1597,2303,{},$Cb);_.Yf=BOd;_.$f=function(a,b){a.o!=b&&(a.i=false);yTb(a,b)};_.al=COd;_.bl=function(){return x6b()};var WQc=Mmd(1597);n9c(1600,1,{},bDb);var _Qc=Mmd(1600);n9c(1602,1,Jyd,cDb);_.hb=function(a){!!this.a&&NCb(this.a.a)};var YQc=Mmd(1602);n9c(1603,1,BHd,dDb);_.Zb=DOd;var ZQc=Mmd(1603);n9c(1601,1,RHd,hDb);_.Lk=function(a){!!this.b&&qDb(this.b,Rf(this.a).selectedIndex)};var $Qc=Mmd(1601);n9c(433,1,{},pDb);_.a=-1;_.d=-1;_.e=-1;var bRc=Mmd(433);n9c(1735,1,{},rDb);var aRc=Mmd(1735);n9c(1607,1,BHd,tDb);_.Zb=DOd;var dRc=Mmd(1607);n9c(1608,1,Jyd,uDb);_.hb=function(a){sDb(this.a);rm(this.a.a,false)};var cRc=Mmd(1608);n9c(1610,1,BHd,xDb);_.Zb=function(){Lg(this.b)};var jRc=Mmd(1610);n9c(1611,1,pAd,yDb);_.ed=function(a){a.a&&wic((pic(),oic),new zDb(this))};var fRc=Mmd(1611);n9c(1612,1,Izd,zDb);_.eb=function(){Tfd(this.a.a.d)};var eRc=Mmd(1612);n9c(1613,1,DId,ADb);_.Xk=function(a){var b,c,d,e;for(e=new Vqd((new Sqd(this.a.a)).a);e.b;){c=Uqd(e);b=c.yp().f;if(!!b&&(jlc(a.a)&hyd)==b.a){c.Ok().eb();rm(this.a.b,false);!!a.a&&slc(a.a);tlc(a.a);return}}for(d=new Vqd((new Sqd(this.a.a)).a);d.b;){c=Uqd(d);b=c.yp().f;if(!!b&&(jlc(a.a)&hyd)==Bmd(b.a)){c.Ok().eb();rm(this.a.b,false);!!a.a&&slc(a.a);tlc(a.a);return}}};var gRc=Mmd(1613);n9c(1614,1,Vyd,CDb);_.eb=function(){BDb(this)};var hRc=Mmd(1614);n9c(1615,1,Jyd,DDb);_.hb=function(a){BDb(this.a)};var iRc=Mmd(1615);n9c(104,10,{104:1,3:1,11:1,10:1},ZDb,$Db);var EDb,FDb,GDb,HDb,IDb,JDb,KDb,LDb,MDb,NDb,ODb,PDb,QDb,RDb,SDb,TDb,UDb,VDb,WDb,XDb;var kRc=Nmd(104,Q5c,_Db);n9c(1616,1,BHd,eEb);_.Zb=DOd;var nRc=Mmd(1616);n9c(1617,1,Jyd,fEb);_.hb=function(a){dEb(this.a,this.b)};var lRc=Mmd(1617);n9c(234,1,{234:1},gEb);var mRc=Mmd(234);n9c(829,1,{},jEb);_.md=function(){return new KL(null,null)};_.ob=wMd;_.pb=function(a){iEb(this,a)};var oRc=Mmd(829);n9c(424,1,BHd,pEb);_.Zb=function(){nEb(this)};_.f=false;var sRc=Mmd(424);n9c(1604,1,Hzd,qEb);_.cc=function(a){if(nlc(a.a)==13){oEb(this.a);sEb(this.a.c);!!a.a&&slc(a.a);tlc(a.a)}};var pRc=Mmd(1604);n9c(1605,1,Jyd,rEb);_.hb=function(a){oEb(this.a);sEb(this.a.c)};var qRc=Mmd(1605);n9c(1606,103,mzd,tEb);_.Vb=function(){sEb(this)};_.fd=function(){kEb(this.a);kEb(this.a);rm(this,false)};var rRc=Mmd(1606);n9c(1977,1,qAd,AEb);_.Cb=CNd;var BRc=Mmd(1977);n9c(793,485,nAd);_.Ok=function(){return DEb(this)};_.Ib=function(a){var b;b=(abd(),zcd((ujc(),a).type));(b&896)!=0?tg(this,a):tg(this,a)};_.Kb=tMd;_.c=false;var L4c=Mmd(793);n9c(674,793,nAd,LEb);var M4c=Mmd(674);n9c(1979,674,nAd,NEb);var tRc=Mmd(1979);n9c(925,1,{925:1},PEb);_.a=0;var vRc=Mmd(925);n9c(1980,1,{},SEb);var uRc=Mmd(1980);n9c(1978,1,{},UEb);var wRc=Mmd(1978);n9c(2075,1,{},WEb);var zRc=Mmd(2075);n9c(2076,1,Jyd,XEb);_.hb=function(a){yEb(this.a.n)};var xRc=Mmd(2076);n9c(2077,1,Jyd,YEb);_.hb=function(a){zEb(this.a.n)};var yRc=Mmd(2077);var ZEb;n9c(2232,1,fAd,_Eb);_.Ic=EOd;_.a=false;var ARc=Mmd(2232);n9c(1619,1,BHd,cFb);_.Zb=function(){var a;Lg((a=new Bm,oed(a.d,'R-logic'),Cg(a,(new AEb(dsd(Vw(this.a).v),new eFb(this,a))).e),a))};var DRc=Mmd(1619);n9c(1620,1,{},eFb);_.ob=wMd;_.pb=function(a){dFb(this,a)};var CRc=Mmd(1620);n9c(2042,1,{},iFb);_.Hd=function(a){return gFb(a)};var ERc=Mmd(2042);n9c(2199,_Ad,{},kFb);_.Id=function(a){return a==null?'':s9c(a)};var jFb;var FRc=Mmd(2199);n9c(2225,1,qAd,lFb);_.Cb=AMd;var HRc=Mmd(2225);n9c(2226,1,Izd,nFb);_.eb=function(){mFb(Rf(this.a.a))};var GRc=Mmd(2226);n9c(895,1,qAd,qFb);_.Cb=VMd;var JRc=Mmd(895);n9c(1808,1,Jyd,rFb);_.hb=function(a){!!this.a.b&&!!this.b&&fGb(this.b,this.a.b,this.a.a)};var IRc=Mmd(1808);n9c(522,1,UId);_.Cb=AMd;_.Fb=function(a){oqc(this.b,a)};var eSc=Mmd(522);n9c(1964,522,UId,wFb);_.cl=function(a){return a.b};var KRc=Mmd(1964);n9c(1814,1,Jyd,xFb);_.hb=function(a){var b,c;c=EFb(this.a);b='marvinjs-output.'+uFb(this.c.d).c[0];this.b?this.b.dl(c,b):MFb(this.c,c)};var LRc=Mmd(1814);n9c(1577,1,BHd,AFb);_.Zb=function(){Lg(this.a);xm(this.a);$Fb(this.b)};var yFb;var PRc=Mmd(1577);n9c(1579,1,{},DFb);_.dl=function(a,b){CFb(a,b)};var MRc=Mmd(1579);n9c(1580,1,{},FFb);_.md=function(){return EFb(this)};_.c=false;var NRc=Mmd(1580);n9c(1578,522,UId,GFb);_.cl=function(a){return a.zi()};var ORc=Mmd(1578);n9c(1725,1,qAd,NFb);_.Cb=LNd;var HFb=200,IFb=200,JFb=32;var URc=Mmd(1725);n9c(1727,1,eBd,PFb);_.Ud=function(a){var b;b=a.a;b.a?VFb(this.a.a,true):VFb(this.a.a,false)};var QRc=Mmd(1727);n9c(1728,522,UId,QFb);_.cl=function(a){return (a.j!=null?a.j:''+a.k).toLowerCase()};var RRc=Mmd(1728);n9c(1729,1,Vyd,RFb);_.eb=function(){gg(this.a.c,true)};var SRc=Mmd(1729);n9c(1726,522,UId,WFb);_.cl=function(a){return Yr(TFb,Tr(SFb,a))};var SFb,TFb;var TRc=Mmd(1726);n9c(1723,1,qAd,_Fb);_.Cb=LNd;var WRc=Mmd(1723);n9c(1724,1,{},dGb);var VRc=Mmd(1724);n9c(1809,1,{},gGb);_.dl=function(a,b){fGb(this,a,b)};var _Rc=Mmd(1809);n9c(1810,1,eBd,hGb);_.Ud=function(a){var b,c,d;b=a.a;bGb(this.d,!b.Di());c=dLb(this.b,b,(g3(),f3));d=new mGb(this,b);c?mf(lf(c.Qi(this.c),new iGb(d)),new jGb(d)):lGb(d,new Uc('Renderer has not been found for this format: '+b.Ic()))};var $Rc=Mmd(1810);n9c(1812,1,Xyd,iGb);_.tb=function(a){kGb(this.a,a)};var XRc=Mmd(1812);n9c(1813,1,Xyd,jGb);_.tb=function(a){lGb(this.a,a)};var YRc=Mmd(1813);n9c(1811,1,{},mGb);var ZRc=Mmd(1811);n9c(2023,1,qAd,nGb);_.Cb=AMd;var cSc=Mmd(2023);n9c(2024,1,Jyd,oGb);_.hb=function(a){var b;b=new pGb(this,this.b);wic((pic(),oic),b)};var bSc=Mmd(2024);n9c(2025,1,Izd,pGb);_.eb=function(){vg(this.a.a.a);gg(this.b.a.c,true)};var aSc=Mmd(2025);n9c(1581,1,RHd,qGb);_.Lk=function(a){Zt(this.a,uFb(this.a))};var dSc=Mmd(1581);n9c(922,1,{},uGb);_.dl=function(a,b){wic((pic(),oic),new zGb(this.a.sb(a),b))};var iSc=Mmd(922);n9c(1966,1,Wyd,wGb);_.sb=zOd;var fSc=Mmd(1966);n9c(1967,1,Wyd,yGb);_.sb=function(a){var b;return this.a?xGb(rGb(a,_Id,true)):(b=new Blob([a],{type:'plain/text'}),URL.createObjectURL(b))};_.a=false;var gSc=Mmd(1967);n9c(1965,1,Izd,zGb);_.eb=function(){var a;a=new nFb(this.a);wic((pic(),oic),a)};var hSc=Mmd(1965);n9c(1815,1,{},CGb);_.dl=function(a,b){tGb()&&!!this.a&&GGb(sGb(a),b)};var jSc=Mmd(1815);n9c(1816,1,{},DGb);_.dl=function(a,b){GGb(rGb(a,_Id,this.b),b)};_.b=false;var kSc=Mmd(1816);n9c(921,1,{},HGb);_.dl=function(a,b){GGb(a,b)};var EGb;var lSc=Mmd(921);n9c(1628,1,BHd,NGb);_.Zb=function(){Lg(MGb(this))};var nSc=Mmd(1628);n9c(1629,1,Jyd,OGb);_.hb=function(a){var b,c;c=LGb(Sgd(this.d,Rf(this.d).selectedIndex));b=LGb(Sgd(this.b,Rf(this.b).selectedIndex));if(b==null&&c==null){gg(this.c,true)}else if(!Hnd(DBd,b)||!Hnd(DBd,c)){gg(this.c,false);yQ(this.a.b.f,new cE(this.a.b.i,c,b));rm(MGb(this.a),false)}else{rm(MGb(this.a),false)}};var mSc=Mmd(1629);n9c(856,1,{},RGb);var sSc=Mmd(856);n9c(1630,1,{},UGb);var rSc=Mmd(1630);n9c(1631,1,Jyd,VGb);_.hb=function(a){TGb(this.a)};var oSc=Mmd(1631);n9c(1632,1,Hzd,WGb);_.cc=function(a){nlc(a.a)==13&&TGb(this.a)};var pSc=Mmd(1632);n9c(1633,1,Izd,XGb);_.eb=function(){sl(this.a.e)};var qSc=Mmd(1633);n9c(2151,1,{},$Gb);var zSc=Mmd(2151);n9c(2152,1,{},eHb);var ySc=Mmd(2152);n9c(2153,1,Jyd,fHb);_.hb=function(a){dHb(this.a)};var tSc=Mmd(2153);n9c(2154,1,pAd,gHb);_.ed=function(a){a.a&&wic((pic(),oic),new hHb(this))};var vSc=Mmd(2154);n9c(2155,1,Izd,hHb);_.eb=function(){sl(this.a.a.e)};var uSc=Mmd(2155);n9c(2156,1,Hzd,iHb);_.cc=function(a){nlc(a.a)==13&&dHb(this.a)};var wSc=Mmd(2156);n9c(2157,1,Izd,jHb);_.eb=function(){gg(this.a.c,false);rm(this.a.b,false)};var xSc=Mmd(2157);n9c(1621,1,{},lHb);var ESc=Mmd(1621);n9c(1622,1,Jyd,mHb);_.hb=function(a){var b;b=this.a.d.a.Jo();bod(this.a.d.a.ld()).length==0&&(b='');nHb(this.a.b);sQ(this.a.a,b)};var ASc=Mmd(1622);n9c(1623,103,mzd,oHb);_.Vb=function(){nHb(this)};_.Wb=function(a){rm(this,a);eq(this.a)};var BSc=Mmd(1623);n9c(1624,1,pAd,pHb);_.ed=function(a){a.a&&wic((pic(),oic),new qHb(this))};var DSc=Mmd(1624);n9c(1625,1,Izd,qHb);_.eb=function(){iid(this.a.a.d)};var CSc=Mmd(1625);n9c(1582,1,BHd,sHb);_.Zb=function(){Lg(this.b);AHb(this.d)};var GSc=Mmd(1582);n9c(1583,1,Jyd,tHb);_.hb=function(a){rHb(this.a)};var FSc=Mmd(1583);n9c(878,1,{},BHb);var KSc=Mmd(878);n9c(1730,1,RHd,CHb);_.Lk=function(a){vHb(this.a)};var HSc=Mmd(1730);n9c(1731,1,Jyd,DHb);_.hb=function(a){wHb(this.a)};var ISc=Mmd(1731);n9c(1732,1,RHd,EHb);_.Lk=function(a){uHb(this.a)};var JSc=Mmd(1732);n9c(2284,1,{});_.vf=function(a,b,c,d){var e,f,g,h,j,l,m,n;if((iU(),fU)==d.c){n=c*this.Yd();if(rac(a.a,a.b,0,b.a,b.b,0)>n){h=tac(a,b,n/2);j=tac(b,a,n/2)}else{h=a;j=b}l=!d.b?new vT(false,c,true,d.a):new uT(false,c,true,d.b);HHb(this,l,vuc(quc(T1c,1),tBd,5,0,[h,j]))}else{d.b?LHb(this,d):(f=this.el(),fU==d.c?Ogc(f,d.a):Vgc(f,d.a));e=this.el();e.save();Ugc(e,d.e*(d.d?this.Yd():1));g=rac(a.a,a.b,0,b.a,b.b,0);Ygc(e,a.a,a.b);Mgc(e,$wnd.Math.atan2(b.b-a.b,b.a-a.a));e.beginPath();m=c*this.Yd();e.arc(0,0,m,QBd,$Cd,false);e.moveTo(0,-m);e.lineTo(g,-m);e.arc(g,0,m,$Cd,QBd,false);e.moveTo(0,m);e.lineTo(g,m);e.stroke();e.restore()}};_.wf=function(a,b,c,d){GHb(this,a,b,c,d)};_.zf=function(a,b){HHb(this,a,b)};var LSc=Mmd(2284);n9c(2274,1,{});_.Jf=function(a,b,c){return GIb(this.hl(),a,b,c,this.Yd())};var MSc=Mmd(2274);n9c(1309,1,{},NHb);_.uc=function(a,b){MHb(this,a,b)};_.b=false;var NSc=Mmd(1309);n9c(745,2274,qAd,BIb);_.Cb=FOd;_.el=function(){return _Hb(this)};_.Af=VMd;_.pe=BMd;_.Kf=LNd;_.Pf=function(){return dIb(this)};_.hl=IMd;_.Yd=function(){return this.j.e.b};_.Bf=function(a){mIb(this,a)};_.uh=function(a){if(!a&&!this.d||!!this.d&&!!a&&GQ(this.d,a)){return}this.d=a;cJb(this.i,(Lz(),Iz),true)};_.Lf=function(a){Rgc(_Ib(this.i,this.b).Vn(),(a?(ihc(),ahc):(ihc(),ghc)).a)};_.Mf=function(a){Qgc(_Ib(this.i,this.b).Vn(),a)};_.uc=function(a,b){if(this.p.Un().width==a&&this.p.Un().height==b){return}oIb(this,a,b)};_.$d=function(a){return rIb(this,a)};_._d=function(a){return sIb(this,a)};_.ae=function(a){return tIb(this,a)};_.be=function(a){return uIb(this,a)};_.ce=function(a){return vIb(this,a)};_.d=null;var OHb;var RSc=Mmd(745);n9c(1087,1,{},CIb);var OSc=Mmd(1087);n9c(1088,1,{},DIb);var PSc=Mmd(1088);n9c(1294,2284,{},FIb);_.Pb=function(){var a,b;b=bIb(this.c);a=aIb(this.c);Dgc(_Hb(this.a),0,0,b,a)};_.sf=function(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r;e=cbc(a,1.5*this.b.j.e.b);f=d.a==null?uBd:d.a;g=_Hb(this.a);l=g.lineWidth;Ugc(g,d.e*(d.d?this.b.j.e.b:1));m=g.strokeStyle;g.strokeStyle=f;g.save();g.beginPath();q=e.b.a;r=e.b.b;j=e.a;o=e.c;h=$wnd.Math.min(10*this.b.j.e.b,o/3);g.moveTo(q+h,r);g.lineTo(q,r);g.lineTo(q,r+j);g.lineTo(q+h,r+j);g.moveTo(q+o-h,r);g.lineTo(q+o,r);g.lineTo(q+o,r+j);g.lineTo(q+o-h,r+j);g.stroke();g.restore();g.lineWidth=l;g.strokeStyle=m;if(b!=null&&b.length!=0){n=new p0((pR(),nR),(NT(),ET),true);sJb(this.d,g,new qad(q+o+h/2,r),b,f,n)}if(c!=null&&c.length!=0){n=new p0((pR(),hR),(NT(),ET),true);sJb(this.d,g,new qad(q+o+h/2,r+j),c,f,n)}g.restore()};_.tf=function(a,b,c,d){EIb(this,a,b,c,d)};_.el=function(){return _Hb(this.a)};_.Yd=function(){return this.b.j.e.b}; +_.uf=function(a,b){var c,d,e;c=a;(iU(),fU)==b.c&&(c=cbc(a,b.e*(b.d?this.b.j.e.b:1)));e=_Hb(this.a);Sgc(e,(ohc(),lhc).a);Tgc(e,(uhc(),rhc).a);e.beginPath();Lgc(e,c.b.a,c.b.b,c.c,c.a);b.b?LHb(this,b):(d=_Hb(this.a),fU==b.c?Ogc(d,b.a):Vgc(d,b.a));if(fU==b.c){e.fill()}else{Ugc(_Hb(this.a),b.e*(b.d?this.b.j.e.b:1));e.stroke()}};_.xf=function(a,b,c,d,e,f){var g,h;if((iU(),fU)==f.c){return}h=_Hb(this.a);Sgc(h,(ohc(),mhc).a);Tgc(h,(uhc(),thc).a);h.beginPath();h.arc(a,b,c,d,e,false);Ugc(h,f.e*(f.d?this.b.j.e.b:1));f.b?LHb(this,f):(g=_Hb(this.a),fU==f.c?Ogc(g,f.a):Vgc(g,f.a));h.stroke()};_.fl=function(a,b,c,d,e){var f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B;if((iU(),fU)==a.c){return}u=c.a-b.a;v=c.b-b.b;t=rac(b.a,b.b,0,c.a,c.b,0);h=d/t;m=e/t;g=_Hb(this.a);Sgc(g,(hU==a.c?(ohc(),mhc):(ohc(),lhc)).a);Tgc(g,(uhc(),thc).a);a.b?LHb(this,a):(f=_Hb(this.a),fU==a.c?Ogc(f,a.a):Vgc(f,a.a));Ugc(g,a.e*(a.d?this.b.j.e.b:1));w=qvc($wnd.Math.floor((t+e)/(d+e)));r=(t+e-(d+e)*w)/2;s=r/t;g.beginPath();A=b.a+s*u;B=b.b+s*v;g.moveTo(A,B);j=h*u;l=h*v;n=m*u;o=m*v;for(q=0;q0){return a}return 0};_.Rl=function(){return !this.j&&j2b(this),this.f};_.Tl=function(){return l2b(this)};_.Vl=function(){var a;a=m2b(this);Hqd(a,(kcc(),ecc),mnd((!this.j&&j2b(this),this.f)));return a};_.Yl=JMd;_.Zl=function(){if(this.k!=null){if(Hnd('*',this.k)){return '\u2217'}return this.k}return k2b(this)};_.cm=dPd;_.dm=function(a){this.j=null;iTb(this,a)};_.jm=function(a){q2b(this,a)};_.nm=function(a){r2b(this,a)};_.pm=function(a){s2b(this,a)};_.qm=function(a){t2b(this,a)};_.rm=function(a,b){var c,d;sTb(this,a,b);a==(kcc(),Nbc)&&jTb(this,b);a==Zbc&&p2b(this,b);a==$bc&&kTb(this,b.a);a==acc&&nTb(this,b);a==fcc&&(i1b(),!m1b(k2b(this),false))&&(i1b(),!o1b(k2b(this),false))&&s2b(this,b.a);if(a==hcc){d=b;tTb(this,!d?(X1b(),U1b):d)}if(a==ecc){c=b;!!c&&r2b(this,c.a)}};_.um=function(a){this.i=a};_.b=0;_.d=0;_.e=null;_.f=0;var sXc=Mmd(68);n9c(63,2302,{715:1,116:1,460:1,294:1,197:1,2331:1,295:1,296:1,196:1,63:1,999:1},S2b,T2b);_.im=function(a){xTb(this,a)};_.bf=function(a){if(Zr(this.a,a,0)==-1&&Zr(kXb(a),this,0)!=-1){return Wr(this.a,a)}return false};_.Hi=function(a){this.b=_0b(a,this.b)};_.Me=function(){return C2b(this)};_.Wm=LNd;_.Xm=cPd;_.Ji=function(){return d1b(this.b)};_.Oe=bPd;_.Lh=function(){return D2b(this)};_.Vl=function(){return F2b(this)};_.Xl=function(){return X1b(),U1b};_.Ym=CNd;_._l=aOd;_.Ki=function(){return (this.c.Ki()+this.d.Ki())/2};_.Li=function(){return !!this.b&&!this.b.sd()};_.Zm=function(){return this.i&&(s6b(),h6b)==this.o};_.cm=dPd;_.Ni=function(a){this.b=a?new js(a):null};_.qm=function(a){M2b(this,a)};_.ym=function(a){P2b(this,a)};_.vm=function(a){Q2b(this,a)};_.i=false;var tXc=Mmd(63);n9c(57,10,{57:1,3:1,11:1,10:1},C3b);var U2b,V2b,W2b,X2b,Y2b,Z2b,$2b,_2b,a3b,b3b,c3b,d3b,e3b,f3b,g3b,h3b,i3b,j3b,k3b,l3b,m3b,n3b,o3b,p3b,q3b,r3b,s3b,t3b,u3b,v3b,w3b,x3b,y3b,z3b,A3b;var uXc=Nmd(57,Q5c,E3b);n9c(93,146,{146:1,49:1,116:1,244:1,294:1,197:1,295:1,105:1,338:1,296:1,196:1,93:1},H3b,I3b,J3b);_.Dl=function(){var a;return a=new J3b(this.b,this.q),oTb(a,new Tac(this.s,this.t)),En(a,this.a),a};_.Bl=lOd;_.Hl=ROd;_.Il=function(){return 'R#'};_.Nl=ROd;_.Ql=ROd;_.Tl=ROd;_.Vl=function(){var a;a=gTb(this);Hqd(a,(kcc(),Nbc),this.k);Hqd(a,icc,mnd(this.b));Hqd(a,_bc,d1b(this.v));Hqd(a,Zbc,this.a);return a};_.Wl=ePd;_.Zl=function(){var a;if(this.k!=null){return this.k}a='R';this.b>0&&(a='R'+this.b);return a};_.am=xNd;_.hm=wMd;_.pm=wMd;_.qm=function(a){rTb(this,a);a.lp((kcc(),Nbc))&&jTb(this,a.np(Nbc));a.lp(icc)&&G3b(this,a.np(icc).a);a.lp(Zbc)&&En(this,a.np(Zbc))};_.rm=function(a,b){sTb(this,a,b);a==(kcc(),Nbc)&&jTb(this,b);a==icc&&G3b(this,b.a);a==Zbc&&(this.a=b,undefined)};_.sm=wMd;_.tm=wMd;_.b=0;var vXc=Mmd(93);n9c(210,2302,{116:1,460:1,717:1,210:1,999:1},Q3b,R3b,S3b);_.Me=function(){if(this.a){return new Srd(vuc(quc(tWc,1),zBd,49,0,[this.a]))}return Xrd(),Xrd(),Urd};_.Lh=function(){return !this.d&&P3b(this),kH(this.a.Lh(),this.d)};_.Ki=function(){return this.a.Ki()};var wXc=Mmd(210);n9c(707,1,{707:1,11:1},Z3b);_.Z=function(a){return U3b(this,a)};_.V=function(a){var b,c;if(kvc(a,707)){c=a;if(c.c.length!=this.c.length){return false}for(b=0;b=1009000)&&(c=a.ownerDocument.defaultView.getComputedStyle(a,null),c.direction=='rtl')){return Ojc(a.scrollLeft||0)-(((a.scrollWidth||0)|0)-(a.clientWidth|0))}return Ojc(a.scrollLeft||0)};_.Kn=function hkc(a,b){return a===b||!!(a.compareDocumentPosition(b)&16)};_.Mn=function ikc(a){var b=a.ownerDocument;var c=a.cloneNode(true);var d=b.createElement('DIV');d.appendChild(c);outer=d.innerHTML;c.innerHTML='';return outer};var N$c=Mmd(1148);n9c(2282,2281,aKd);_.sn=function jkc(a,b){var c=a.createElement(SHd);c.setAttribute(uDd,b);return c};_.yn=function kkc(a){return a.currentTarget||$wnd};_.Cn=function(a){var b,c;c=a.getBoundingClientRect&&a.getBoundingClientRect();b=c?c.left+Bjc(this,a.ownerDocument):lkc(a);return ujc(),b|0};_.Dn=function(a){var b,c,d;b=a.getBoundingClientRect&&a.getBoundingClientRect();c=b?b.top+Cjc(this,a.ownerDocument):mkc(a);return ujc(),c|0};_.In=function(a){if(!Ind('body',(ujc(),a).tagName)&&a.ownerDocument.defaultView.getComputedStyle(a,'').direction=='rtl'){return Ojc(a.scrollLeft||0)-(((a.scrollWidth||0)|0)-(a.clientWidth|0))}return Ojc(a.scrollLeft||0)};_.Jn=function nkc(a){return typeof a.tabIndex!=$Id?a.tabIndex:-1};var O$c=Mmd(2282);n9c(1147,2282,aKd,okc);_.An=function pkc(a){var b=a.target;b&&b.nodeType==3&&(b=b.parentNode);return b};_.Nn=function(a){return a.body};var Q$c=Mmd(1147);n9c(67,10,fKd);var ylc,zlc,Alc,Blc,Clc,Dlc,Elc,Flc,Glc,Hlc,Ilc,Jlc,Klc,Llc,Mlc,Nlc,Olc,Plc,Qlc;var j_c=Nmd(67,Q5c,Tlc);n9c(1238,67,fKd,Ulc);var a_c=Nmd(1238,j_c,null);n9c(1247,67,fKd,Vlc);var S$c=Nmd(1247,j_c,null);n9c(1248,67,fKd,Wlc);var T$c=Nmd(1248,j_c,null);n9c(1249,67,fKd,Xlc);var U$c=Nmd(1249,j_c,null);n9c(1250,67,fKd,Ylc);var V$c=Nmd(1250,j_c,null);n9c(1251,67,fKd,Zlc);var W$c=Nmd(1251,j_c,null);n9c(1252,67,fKd,$lc);var X$c=Nmd(1252,j_c,null);n9c(1253,67,fKd,_lc);var Y$c=Nmd(1253,j_c,null);n9c(1254,67,fKd,amc);var Z$c=Nmd(1254,j_c,null);n9c(1255,67,fKd,bmc);var $$c=Nmd(1255,j_c,null);n9c(1256,67,fKd,cmc);var _$c=Nmd(1256,j_c,null);n9c(1239,67,fKd,dmc);var b_c=Nmd(1239,j_c,null);n9c(1240,67,fKd,emc);var c_c=Nmd(1240,j_c,null);n9c(1241,67,fKd,fmc);var d_c=Nmd(1241,j_c,null);n9c(1242,67,fKd,gmc);var e_c=Nmd(1242,j_c,null);n9c(1243,67,fKd,hmc);var f_c=Nmd(1243,j_c,null);n9c(1244,67,fKd,imc);var g_c=Nmd(1244,j_c,null);n9c(1245,67,fKd,jmc);var h_c=Nmd(1245,j_c,null);n9c(1246,67,fKd,kmc);var i_c=Nmd(1246,j_c,null);n9c(277,10,gKd);var lmc,mmc,nmc;var n_c=Nmd(277,Q5c,qmc);n9c(1257,277,gKd,rmc);var k_c=Nmd(1257,n_c,null);n9c(1258,277,gKd,smc);var l_c=Nmd(1258,n_c,null);n9c(1259,277,gKd,tmc);var m_c=Nmd(1259,n_c,null);n9c(222,10,hKd);var umc,vmc,wmc,xmc;var s_c=Nmd(222,Q5c,Amc);n9c(1260,222,hKd,Bmc);var o_c=Nmd(1260,s_c,null);n9c(1261,222,hKd,Cmc);var p_c=Nmd(1261,s_c,null);n9c(1262,222,hKd,Dmc);var q_c=Nmd(1262,s_c,null);n9c(1263,222,hKd,Emc);var r_c=Nmd(1263,s_c,null);n9c(223,10,iKd);var Fmc,Gmc,Hmc,Imc;var x_c=Nmd(223,Q5c,Lmc);n9c(1264,223,iKd,Mmc);var t_c=Nmd(1264,x_c,null);n9c(1265,223,iKd,Nmc);var u_c=Nmd(1265,x_c,null);n9c(1266,223,iKd,Omc);var v_c=Nmd(1266,x_c,null);n9c(1267,223,iKd,Pmc);var w_c=Nmd(1267,x_c,null);n9c(224,10,jKd);var Qmc,Rmc,Smc,Tmc;var C_c=Nmd(224,Q5c,Wmc);n9c(1268,224,jKd,Xmc);var y_c=Nmd(1268,C_c,null);n9c(1269,224,jKd,Ymc);var z_c=Nmd(1269,C_c,null);n9c(1270,224,jKd,Zmc);var A_c=Nmd(1270,C_c,null);n9c(1271,224,jKd,$mc);var B_c=Nmd(1271,C_c,null);n9c(225,10,kKd);var _mc,anc,bnc,cnc;var H_c=Nmd(225,Q5c,fnc);n9c(1272,225,kKd,gnc);var D_c=Nmd(1272,H_c,null);n9c(1273,225,kKd,hnc);var E_c=Nmd(1273,H_c,null);n9c(1274,225,kKd,inc);var F_c=Nmd(1274,H_c,null);n9c(1275,225,kKd,jnc);var G_c=Nmd(1275,H_c,null);n9c(117,10,lKd);var knc,lnc,mnc,nnc,onc,pnc,qnc,rnc,snc;var R_c=Nmd(117,Q5c,vnc);n9c(1229,117,lKd,wnc);var I_c=Nmd(1229,R_c,null);n9c(1230,117,lKd,xnc);var J_c=Nmd(1230,R_c,null);n9c(1231,117,lKd,ync);var K_c=Nmd(1231,R_c,null);n9c(1232,117,lKd,znc);var L_c=Nmd(1232,R_c,null);n9c(1233,117,lKd,Anc);var M_c=Nmd(1233,R_c,null);n9c(1234,117,lKd,Bnc);var N_c=Nmd(1234,R_c,null);n9c(1235,117,lKd,Cnc);var O_c=Nmd(1235,R_c,null);n9c(1236,117,lKd,Dnc);var P_c=Nmd(1236,R_c,null);n9c(1237,117,lKd,Enc);var Q_c=Nmd(1237,R_c,null);n9c(188,10,mKd);var Fnc,Gnc,Hnc,Inc,Jnc;var X_c=Nmd(188,Q5c,Mnc);n9c(1276,188,mKd,Nnc);var S_c=Nmd(1276,X_c,null);n9c(1277,188,mKd,Onc);var T_c=Nmd(1277,X_c,null);n9c(1278,188,mKd,Pnc);var U_c=Nmd(1278,X_c,null);n9c(1279,188,mKd,Qnc);var V_c=Nmd(1279,X_c,null);n9c(1280,188,mKd,Rnc);var W_c=Nmd(1280,X_c,null);var Snc,Tnc=false,Unc,Vnc,Wnc;n9c(1217,1,Izd,_nc);_.eb=function(){(Xnc(),Tnc)&&Ync()};var Y_c=Mmd(1217);n9c(1216,1,{},goc);var aoc;var Z_c=Mmd(1216);n9c(nKd,fBd,{});_.Wd=function(){return this.On()};var ioc;var g0c=Mmd(nKd);n9c(2019,nKd,{},ooc);_.Vd=function(a){Ch(a.a,null)};_.On=function(){return moc};var moc;var $_c=Mmd(2019);n9c(1763,nKd,{},roc);_.Vd=function(a){a.Lk(this)};_.On=function(){return poc};var poc;var __c=Mmd(1763);n9c(2297,nKd,{});var n0c=Mmd(2297);n9c(oKd,2297,{});var u0c=Mmd(oKd);n9c(1817,oKd,{},woc);_.Vd=function(a){a.hb(this)};_.On=function(){return uoc};var uoc;var a0c=Mmd(1817);n9c(2287,nKd,{});var b0c=Mmd(2287);n9c(1387,nKd,{},zoc);_.Vd=function(a){a.nc(this)};_.On=function(){return xoc};var xoc;var c0c=Mmd(1387);n9c(1212,2287,{},Coc);_.Vd=function(a){!!this.a&&slc(this.a);Jvb(a.a,new ewb(this.a.clipboardData||$wnd.clipboardData))};_.On=function(){return Aoc};var Aoc;var d0c=Mmd(1212);n9c(1213,2287,{},Foc);_.Vd=function(a){!!this.a&&slc(this.a);Kvb(a.a,new ewb(this.a.clipboardData||$wnd.clipboardData))};_.On=function(){return Doc};var Doc;var e0c=Mmd(1213);n9c(145,1,{},Hoc);_.X=VMd;_.Y=function(){return 'Event type'};_.c=0;var Goc=0;var t5c=Mmd(145);n9c(80,145,{},Ioc);var S0c=Mmd(80);n9c(96,80,{96:1},Joc);var f0c=Mmd(96);n9c(1715,oKd,{},Moc);_.Vd=function(a){DG(a,this)};_.On=function(){return Koc};var Koc;var h0c=Mmd(1715);n9c(2295,nKd,{});var Noc;var j0c=Mmd(2295);n9c(1392,1,{},Ooc);_.a=false;var i0c=Mmd(1392);n9c(1393,2295,{},Soc);_.Vd=function(a){var b;Roc((b=this,a,b))};_.On=function(){return Poc};var Poc;var k0c=Mmd(1393);n9c(1394,2295,{},Voc);_.Vd=function(a){var b,c;tlc(this.a);!!this.a&&slc(this.a);b=(c=OLb(this.a.dataTransfer||null),c?c:null);ILb(a.a,b)};_.On=function(){return Toc};var Toc;var l0c=Mmd(1394);n9c(1564,nKd,{},Yoc);_.Vd=function(a){bj(a.a)};_.On=function(){return Woc};var Woc;var m0c=Mmd(1564);n9c(2306,nKd,{});var q0c=Mmd(2306);n9c(2307,2306,{});var o0c=Mmd(2307);n9c(1662,2307,{},apc);_.Vd=function(a){a.cc(this)};_.On=function(){return $oc};var $oc;var p0c=Mmd(1662);n9c(2037,2306,{},dpc);_.Vd=function(a){a.Xk(this)};_.On=function(){return bpc};var bpc;var r0c=Mmd(2037);n9c(1714,2307,{},gpc);_.Vd=function(a){a.dc(this)};_.On=function(){return epc};var epc;var s0c=Mmd(1714);n9c(1526,oKd,{},jpc);_.Vd=function(a){a.oc(this)};_.On=function(){return hpc};var hpc;var t0c=Mmd(1526);n9c(1528,oKd,{},mpc);_.Vd=function(a){a.pc(this)};_.On=function(){return kpc};var kpc;var v0c=Mmd(1528);n9c(1530,oKd,{},ppc);_.Vd=function(a){a.qc(this)};_.On=function(){return npc};var npc;var w0c=Mmd(1530);n9c(1529,oKd,{},spc);_.Vd=function(a){a.rc(this)};_.On=function(){return qpc};var qpc;var x0c=Mmd(1529);n9c(1527,oKd,{},vpc);_.Vd=function(a){a.sc(this)};_.On=function(){return tpc};var tpc;var y0c=Mmd(1527);n9c(770,2287,{},ypc);_.Vd=function(a){a.Kk(this)};_.On=function(){return wpc};var wpc; +var B0c=Mmd(770);n9c(1214,1,{2333:1,13:1},zpc);_.Kk=function(a){var b,c;b=(c=new ypc,En(c,a.a),Uo(c,a.b),c);wic((pic(),oic),new Apc(this,b))};var A0c=Mmd(1214);n9c(1215,1,Izd,Apc);_.eb=function(){$vb(this.a.a,this.b)};var z0c=Mmd(1215);n9c(1562,1,{},Dpc);var C0c=Mmd(1562);n9c(2299,2297,{});var Epc;var G0c=Mmd(2299);n9c(1672,2299,{},Hpc);_.Vd=function(a){a.jc(this)};_.On=function(){return Fpc};var Fpc;var D0c=Mmd(1672);n9c(1671,2299,{},Kpc);_.Vd=function(a){a.kc(this)};_.On=function(){return Ipc};var Ipc;var E0c=Mmd(1671);n9c(1458,1,{},Lpc);_.a=false;var F0c=Mmd(1458);n9c(1531,2299,{},Opc);_.Vd=function(a){a.lc(this)};_.On=function(){return Mpc};var Mpc;var H0c=Mmd(1531);n9c(1670,2299,{},Rpc);_.Vd=function(a){a.mc(this)};_.On=function(){return Ppc};var Ppc;var I0c=Mmd(1670);n9c(1804,oKd,{},Upc);_.Vd=function(a){a.kd(this)};_.On=function(){return Spc};var Spc;var J0c=Mmd(1804);n9c(1106,fBd,{},Wpc);_.Vd=function(a){a.ed(this)};_.Wd=function(){return Vpc};_.a=false;var Vpc;var K0c=Mmd(1106);n9c(2026,fBd,{},Zpc);_.Vd=function(a){var b;b=$pc(a.a,mnd(this.b.a));!b||!b.a||(this.a=true)};_.Wd=function(){return Ypc};_.a=false;var Ypc;var L0c=Mmd(2026);n9c(1282,fBd,{},aqc);_.Vd=function(a){a.$b(this)};_.Wd=function(){return _pc};var _pc;var M0c=Mmd(1282);n9c(1762,fBd,{},dqc);_.Vd=function(a){Qed(a.b,a.d.c,a.a)};_.Wd=function(){return cqc};var cqc;var N0c=Mmd(1762);n9c(1362,fBd,{},gqc);_.Vd=function(a){a.jd(this)};_.Wd=function(){return fqc};_.a=0;var fqc;var O0c=Mmd(1362);n9c(2027,fBd,{},jqc);_.Vd=function(a){a.bc(this)};_.Wd=function(){return iqc};var iqc;var P0c=Mmd(2027);n9c(2269,1,{});var u5c=Mmd(2269);n9c(2293,2269,EBd);var R0c=Mmd(2293);n9c(301,1,EBd,qqc,rqc);_.Fb=function(a){oqc(this,a)};var V0c=Mmd(301);n9c(107,2269,{},Cqc);_.Pn=kPd;_.b=0;_.c=false;var B5c=Mmd(107);n9c(1069,107,{},Eqc);_.Pn=kPd;var U0c=Mmd(1069);n9c(626,1,Tzd,Fqc);_.tc=function(){Zld(this.a)};var X0c=Mmd(626);n9c(356,2293,EBd,Iqc);_.Fb=function(a){lqc(this,a)};var Y0c=Mmd(356);n9c(274,52,wKd,Jqc);var C5c=Mmd(274);n9c(479,274,wKd,Lqc);var Z0c=Mmd(479);n9c(1299,1,{},Pqc);_.b=0;var f1c=Mmd(1299);n9c(1300,221,{},Qqc);_.ic=function(){Oqc(this.a)};var $0c=Mmd(1300);n9c(595,1,{},Yqc);_.d=false;_.f=0;var Rqc,Sqc;var b1c=Mmd(595);n9c(1125,1,{},$qc);_.Qn=function(a){if(a.readyState==4){Dkd(a);Nqc(this.b,this.a)}};var _0c=Mmd(1125);n9c(404,1,{},_qc);_.Y=AMd;var a1c=Mmd(404);n9c(229,45,xKd,arc);var c1c=Mmd(229);n9c(1467,229,xKd,brc);var d1c=Mmd(1467);n9c(2017,229,xKd,crc);var e1c=Mmd(2017);n9c(2292,1,{});var h1c=Mmd(2292);n9c(1301,2292,{},drc);var g1c=Mmd(1301);n9c(525,1,{525:1},Lrc);var jrc;var t1c=Mmd(525);n9c(920,525,{920:1,525:1},Prc);var Nrc;var j1c=Mmd(920);n9c(70,10,{70:1,3:1,11:1,10:1},Csc);var Trc,Urc,Vrc,Wrc,Xrc,Yrc,Zrc,$rc,_rc,asc,bsc,csc,dsc,esc,fsc,gsc,hsc,isc,jsc,ksc,lsc,msc,nsc,osc,psc,qsc,rsc,ssc,tsc,usc,vsc,wsc,xsc,ysc,zsc,Asc;var i1c=Nmd(70,Q5c,Dsc);n9c(2320,1,{});var u1c=Mmd(2320);n9c(2321,2320,{});var k1c=Mmd(2321);n9c(405,10,{405:1,3:1,11:1,10:1},Isc);var Esc,Fsc,Gsc;var l1c=Nmd(405,Q5c,Jsc);n9c(1126,1,{},Osc);var Ksc;var m1c=Mmd(1126);n9c(706,1,{},itc);_.b=0;_.c=false;_.d=0;_.e=0;_.f=3;_.i=false;_.j=3;_.k=40;_.n=0;_.o=0;_.p=1;_.q=1;_.r='-';_.s='';_.u='';_.v='';_.w=false;var Psc;var n1c=Mmd(706);n9c(2224,1,{},mtc);_.a=0;var o1c=Mmd(2224);n9c(2220,1,{},stc);var p1c=Mmd(2220);n9c(2003,2321,{},utc);var r1c=Mmd(2003);n9c(2021,2003,{},vtc);var q1c=Mmd(2021);n9c(861,1,{861:1},wtc);_.a=false;_.b=0;var s1c=Mmd(861);n9c(156,1,VKd,Htc,Itc,Jtc);_.Z=function(a){return pnd(P8c(this.r.getTime()),P8c(a.r.getTime()))};_.V=function(a){return kvc(a,156)&&O8c(P8c(this.r.getTime()),P8c(a.r.getTime()))};_.X=function(){var a;a=P8c(this.r.getTime());return d9c(f9c(a,_8c(a,32)))};_.Y=function(){var a,b,c;c=-this.r.getTimezoneOffset();a=(c>=0?'+':'')+(c/60|0);b=Ktc($wnd.Math.abs(c)%60);return (Lsd(),Jsd)[this.r.getDay()]+' '+Ksd[this.r.getMonth()]+' '+Ktc(this.r.getDate())+' '+Ktc(this.r.getHours())+':'+Ktc(this.r.getMinutes())+':'+Ktc(this.r.getSeconds())+' GMT'+a+b+' '+this.r.getFullYear()};var f7c=Mmd(156);n9c(2058,156,VKd,Mtc);_.a=false;_.b=0;_.c=0;_.d=0;_.e=0;_.f=0;_.i=false;_.j=0;_.k=0;_.n=0;_.o=0;_.p=0;_.q=0;var v1c=Mmd(2058);n9c(2322,1,{});_.Rn=UMd;_.Sn=UMd;var D1c=Mmd(2322);n9c(940,2322,{940:1},Ptc);_.V=function(a){if(!kvc(a,940)){return false}return nt(this.a,a.a)};_.X=lPd;_.Rn=WMd;_.Y=function(){return Otc(this)};var w1c=Mmd(940);n9c(980,2322,{},Ttc);_.Y=function(){return rmd(this.a)};_.a=false;var Qtc,Rtc;var x1c=Mmd(980);n9c(452,52,{452:1,3:1,45:1,52:1,42:1},Utc,Vtc);var y1c=Mmd(452);n9c(2205,2322,{},Ytc);_.Y=function(){return iyd};var Wtc;var z1c=Mmd(2205);n9c(709,2322,{709:1},Ztc);_.V=function(a){if(!kvc(a,709)){return false}return this.a==a.a};_.X=function(){return qvc(this.a)};_.Y=function $tc(){return this.a+''};_.a=0;var A1c=Mmd(709);n9c(941,2322,{941:1},duc);_.V=function(a){if(!kvc(a,941)){return false}return nt(this.a,a.a)};_.X=lPd;_.Sn=WMd;_.Y=function(){return cuc(this)};var B1c=Mmd(941);var euc;n9c(710,2322,{710:1},puc);_.V=function(a){if(!kvc(a,710)){return false}return Hnd(this.a,a.a)};_.X=mPd;_.Y=function(){return Shc(this.a)};var C1c=Mmd(710);var xuc;var $uc,_uc,avc,bvc;n9c(377,45,{377:1,3:1,45:1,42:1},A9c,B9c);var E1c=Mmd(377);n9c(1749,1,{},D9c);_.ql=function(a,b){Rk(this.a,new B9c('Unable to retrieve external resource',b))};_.rl=function(a,b){var c,d;d=b.a.responseText;c=gl(d);C9c(this,c)};var H1c=Mmd(1749);n9c(1750,1,PAd,E9c);_.Ic=function(){return this.a.b.d};_.ld=KMd;var G1c=Mmd(1750);n9c(265,1,{2375:1,77:1},F9c);_.Ic=KMd;_.a=0;_.d=0;var J1c=Mmd(265);n9c(2222,1,cLd,G9c);_.Qc=AMd;_.V=nPd;_.X=mPd;var K1c=Mmd(2222);n9c(2231,1,{},I9c);var L1c=Mmd(2231);n9c(365,1,cLd,J9c);_.Qc=AMd;_.V=nPd;_.X=mPd;_.Y=oPd;var M1c=Mmd(365);var K9c,L9c,M9c,N9c,O9c,P9c;n9c(33,1,{2236:1},U9c);_.Qc=AMd;_.V=function(a){return T9c(this,a)};_.X=mPd;_.Y=oPd;var N1c=Mmd(33);var V9c;n9c(1975,1,{},aad);_.Hd=function(a){return _9c(a)};var $9c;var O1c=Mmd(1975);n9c(1974,_Ad,{},dad);_.Id=function(a){return cad(a)};var bad;var P1c=Mmd(1974);n9c(1661,1,{},fad);_.Hd=function(a){return s9c(a)};var ead;var R1c=Mmd(1661);n9c(1660,_Ad,{},had);_.Id=zOd;var gad;var S1c=Mmd(1660);n9c(5,1,{5:1},pad,qad,rad);_.V=function(a){return jad(this,a)};_.X=function(){return kad(this)};_.Y=function(){return oad(this)};_.a=0;_.b=0;var T1c=Mmd(5);n9c(571,1,{},tad);var U1c=Mmd(571);var uad;n9c(2227,1,{},yad);var V1c=Mmd(2227);n9c(KKd,1,{13:1});var W1c=Mmd(KKd);n9c(2277,1,{});_.Vn=function(){return this.Un().getContext('2d')};var Z1c=Mmd(2277);n9c(352,10,{352:1,3:1,11:1,10:1},Pad);var Lad,Mad,Nad;var X1c=Nmd(352,Q5c,Rad);n9c(2275,1,{});var Y1c=Mmd(2275);var Tad=null,Uad,Vad=true;var Zad=null,$ad,_ad;var qbd;n9c(1149,fBd,{},Abd);_.Vd=function(a){Vg(a.a,this);xbd.c=false};_.Wd=function(){return wbd};_.Xd=function(){ybd(this)};_.a=false;_.b=false;_.c=false;var wbd,xbd;var $1c=Mmd(1149);n9c(1118,2277,{},Cbd);_.Tn=AMd;_.Un=function(){return Rf(this.a)};_.Vn=function(){return Rf(this.a).getContext('2d')};_.Wn=function(){return Rf(this.a).toDataURL()};_.Xn=function(a){return a?sjc(Rf(this.a),a.a):Rf(this.a).toDataURL()};var a2c=Mmd(1118);n9c(1095,2275,{},Ebd);_.Yn=function(){return Dbd()};_.Zn=function(){return ol(),zgc(skc($doc))};var _1c=Mmd(1095);var Fbd,Gbd;n9c(1532,1,EBd,Mbd);_.Fb=function(a){oqc(this.a,a)};var b2c=Mmd(1532);n9c(1533,1,{},Nbd);var c2c=Mmd(1533);n9c(1524,2277,{},Pbd);_.Tn=KMd;_.Un=function(){return Rf(this.b)};_.Vn=function(){return !this.a&&(this.a=Ead(Rf(this.b).width,Rf(this.b).height)),this.a};_.Wn=function(){return Iad((!this.a&&(this.a=Ead(Rf(this.b).width,Rf(this.b).height)),this.a))};_.Xn=function(a){if((Oad(),Nad)==a||!a){return Iad((!this.a&&(this.a=Ead(Rf(this.b).width,Rf(this.b).height)),this.a))}return null};var f2c=Mmd(1524);n9c(1525,485,nAd,Rbd);var d2c=Mmd(1525);n9c(1353,2275,{},Sbd);_.Yn=function(){return Qbd()};_.Zn=function(){return Gad()};var e2c=Mmd(1353);var Tbd=false,Ubd,Vbd,Wbd=0,Xbd=0,Ybd=false;n9c(1068,fBd,{},hcd);_.Vd=function(a){null.Ip()};_.Wd=function(){return fcd};var fcd;var h2c=Mmd(1068);var icd='',jcd;n9c(588,301,EBd,ncd);var i2c=Mmd(588);var ocd,pcd,qcd=false;n9c(1307,1,Bzd,ucd);_.$b=function(a){fdd((rcd(),pcd))};var j2c=Mmd(1307);n9c(1306,fBd,{},xcd);_.Vd=function(a){Ii(a.a,100)};_.Wd=function(){return vcd};var vcd;var k2c=Mmd(1306);n9c(411,1,jLd);var ycd=false;var p2c=Mmd(411);n9c(2288,411,jLd);_.$n=function(a){if(Hnd((ujc(),a).type,sKd)){return tjc.An(a)}if(Hnd(a.type,rKd)){return tjc.zn(a)}return null};_._n=function Qcd(a,b){var c=0,d=a.firstChild;while(d){if(d.nodeType==1){if(b==c)return d;++c}d=d.nextSibling}return null};_.ao=function Rcd(a){var b=0,c=a.firstChild;while(c){c.nodeType==1&&++b;c=c.nextSibling}return b};_.bo=function Scd(a,b){var c=0,d=a.firstChild;while(d){if(d===b){return c}d.nodeType==1&&++c;d=d.nextSibling}return -1};_.co=function(){Jcd()};_.eo=function Ucd(a,b,c){var d=0,e=a.firstChild,f=null;while(e){if(e.nodeType==1){if(d==c){f=e;break}++d}e=e.nextSibling}a.insertBefore(b,f)};_.fo=function(a){Acd(this);Ecd==a&&(Ecd=null)};_.go=function(a){Acd(this);Ecd=a};_.ho=function(a,b){var c,d;Acd(this);c=Dcd;d=c[b]||c['_default_'];a.addEventListener(b,d,false)};_.io=function(a,b){Acd(this);Kcd(a,b)};var Dcd,Ecd,Fcd,Gcd,Hcd;var n2c=Mmd(2288);n9c(1224,2288,jLd,Xcd);_.co=function(){Jcd();Wcd()};_.io=function(a,b){Acd(this);Kcd(a,b);b&eLd&&a.addEventListener(dLd,(Icd(),Gcd),false)};var l2c=Mmd(1224);n9c(2289,2288,jLd);var m2c=Mmd(2289);n9c(1225,2289,jLd,Ycd);var o2c=Mmd(1225);n9c(2028,1,{},bdd);_.a=null;var r2c=Mmd(2028);n9c(2029,1,{},ddd);_.a=0;var q2c=Mmd(2029);n9c(1395,1,{},hdd);var s2c=Mmd(1395);n9c(599,1,{599:1},ndd);_.jo=function odd(){return $wnd.location.hash};var u2c=Mmd(599);n9c(1218,599,{599:1},pdd);_.jo=function qdd(){var a=$wnd.location.href;var b=a.indexOf('#');return b>0?a.substring(b):''};var t2c=Mmd(1218);n9c(592,399,lzd,udd);_.Nb=function(a){rdd(this,a)};_.Ob=function(a){yo(this,a)};_.Rb=function(a){return tdd(this,a)};var v2c=Mmd(592);n9c(446,485,nAd,ydd,zdd);_.$c=function(){return cjc((abd(),this.U))};_._c=pPd;var w2c=Mmd(446);n9c(1101,479,wKd,Ddd);var Add,Bdd;var z2c=Mmd(1101);n9c(1102,1,{},Fdd);_.ko=function(a){a.Hb()};var x2c=Mmd(1102);n9c(1103,1,{},Gdd);_.ko=function(a){a.Jb()};var y2c=Mmd(1103);n9c(108,673,nAd,Hdd,Idd);var B2c=Mmd(108);n9c(690,Uzd,oLd,Mdd);_.Nb=function(a){Ldd(this,!a?null:a.Cb())};_.Ob=function(a){Ldd(this,a)};_.Pb=function(){this.p.Pb()};_.Qb=function(){return this.p.Qb()};_.Rb=function(a){return this.p.Rb(a)};var Jdd;var G2c=Mmd(690);n9c(691,1,{691:1});_.lo=function(a,b,c,d){d?(b.innerHTML=c||'',undefined):(ujc(),tjc).Ln(b,c);Hnd('',c)?!!b.parentNode&&a.removeChild(b):Nic(a,b,a.firstChild)};var F2c=Mmd(691);n9c(2038,691,{691:1},Ndd);_.lo=function(a,b,c,d){a.style[pLd]=bzd;d?(b.innerHTML=c||'',undefined):(ujc(),tjc).Ln(b,c);Hnd('',c)?!!b.parentNode&&a.removeChild(b):Nic(a,b,a.firstChild);a.style[pLd]=''};var C2c=Mmd(2038);n9c(2039,691,{691:1},Odd);_.lo=function(a,b,c,d){a.style[nzd]=ozd;d?(b.innerHTML=c||'',undefined):(ujc(),tjc).Ln(b,c);Hnd('',c)?!!b.parentNode&&a.removeChild(b):Nic(a,b,a.firstChild);wic((pic(),oic),new Pdd(a))};var E2c=Mmd(2039);n9c(2040,1,Izd,Pdd);_.eb=function(){this.a.style[nzd]=''};var D2c=Mmd(2040);n9c(208,673,nAd,Udd);_.$c=function(){return cjc(this.b)};_.Kb=function(){abd();this.b.__listener=this};_.Lb=function(){abd();this.b.__listener=null;Sdd(this,this.P?(qmd(),this.b.checked?true:false):(qmd(),this.b.defaultChecked?true:false))};_._c=function(a){!!this.b&&ljc(this.b,a)};_.Mb=function(a){this.Q==-1?obd(this.b,a|tbd(this.b)):this.Q==-1?obd((abd(),this.U),a|(this.U.__eventBits||0)):(this.Q|=a)};var I2c=Mmd(208);n9c(1100,1,{},Vdd);_.ko=function(a){yg(a,null)};var J2c=Mmd(1100);n9c(1891,1,{});_.Y=KMd;var N2c=Mmd(1891);n9c(121,1891,{},$dd);_.a=0;var M2c=Mmd(121);n9c(1717,399,lzd);_.Nb=qPd;_.Ob=function(a){var b;b=aed();abd();Lic(this.U,lbd(b));oo(this,a,b);bed(b,a)};_.Rb=function(a){return ced(this,a)};var _dd;var Q2c=Mmd(1717);n9c(1721,489,{},ged);_.jn=function(){if(this.d){this.a.style[czd]=fzd;mg(this.a,true);mg(this.b,false);this.b.style[czd]=fzd}else{mg(this.a,false);this.a.style[czd]=fzd;this.b.style[czd]=fzd;mg(this.b,true)}this.a.style[yAd]=tzd;this.b.style[yAd]=tzd;this.a=null;this.b=null;this.e.Ab(false);this.e=null};_.kn=function(){this.a.style[yAd]=ozd;this.b.style[yAd]=ozd;eed(this,0);mg(this.a,true);mg(this.b,true)};_.ln=function(a){eed(this,a)};_.a=null;_.b=null;_.c=-1;_.d=false;_.e=null;var P2c=Mmd(1721);n9c(1453,64,mzd,jed);_.Sb=function(){return ied(this)};var T2c=Mmd(1453);n9c(763,1,NAd,led);_.jd=function(a){this.a.p=a.a};var U2c=Mmd(763);n9c(490,29,kzd);var E3c=Mmd(490);n9c(27,490,rLd,ped,red);_.Wc=rPd;_.Xc=sPd;_.Yc=tPd;_.Zc=uPd;var F3c=Mmd(27);n9c(186,27,rLd,ted,ued,ved);var t3c=Mmd(186);n9c(1157,186,rLd,wed);var V2c=Mmd(1157);n9c(1158,1,Szd,xed);_.oc=function(a){om(this.a,a)};_.pc=function(a){pm(this.a,a)};_.qc=wMd;_.rc=wMd;_.sc=function(a){qm(this.a,a)};var W2c=Mmd(1158);n9c(637,1,{},Aed);_.c=false;var Y2c=Mmd(637);n9c(606,Uzd,oLd,Jed);_.Nb=function(a){Ced(this,!a?null:a.Cb())};_.Ob=function(a){Ced(this,a)};_.Pb=function(){Eed(this,null)};_.Qb=function(){return Njd(this,vuc(quc(R4c,1),_Hd,29,0,[this.a.O]))};_.Rb=function(a){return Ded(this,a)};_.c=false;var Bed;var b3c=Mmd(606);n9c(1226,64,mzd,Ked);_.Ib=function(a){switch(abd(),zcd((ujc(),a).type)){case 1:tjc.Bn(a);Hed(this.a,!this.a.c);}};var Z2c=Mmd(1226);n9c(1227,489,{},Ned);_.jn=function(){this.b||gg(this.a.a,false);Rf(this.a.a).style[czd]='auto';this.a=null};_.kn=function(){Led(this,(1+$wnd.Math.cos(jBd))/2);if(this.b){gg(this.a.a,true);this.a.a.O.Ab(true)}};_.ln=function(a){Led(this,a)};_.b=false;var $2c=Mmd(1227);n9c(774,29,{573:1,36:1,2370:1,13:1,24:1,35:1,31:1,21:1,28:1,29:1},Oed);_.$b=function(a){Qed(this.b,this.d.c,this.a)};var a3c=Mmd(774);n9c(1228,1,{},Red);var _2c=Mmd(1228);var Sed,Ted;n9c(1801,611,lzd,jfd);_.Rb=function(a){return efd(this,a)};var Wed,Xed,Yed,Zed,$ed,_ed,afd;var f3c=Mmd(1801);n9c(321,1,{},kfd);var c3c=Mmd(321);n9c(892,1,{892:1},lfd);_.c='';_.f='';var d3c=Mmd(892);n9c(672,1,{672:1},mfd);_.a=0;var e3c=Mmd(672);n9c(894,485,nAd,nfd);var g3c=Mmd(894);n9c(898,2276,lzd);_.Pb=function(){tfd(this)};_.Qb=function(){return new fgd(this)};_.Rb=function(a){return Bfd(this,a)};var s3c=Mmd(898);n9c(267,898,lzd,Ifd);_.mo=function(a){return rfd(this,a),vfd((abd(),this.c),a)};_.no=function(){return (abd(),this.c).rows.length};_.oo=function(a,b){var c,d;Hfd(this,a);if(b<0){throw I8c(new lmd('Cannot create a column with a negative index: '+b))}c=(rfd(this,a),vfd((abd(),this.c),a));d=b+1-c;d>0&&pfd(this.c,a,d)};var i3c=Mmd(267);n9c(899,1,{},Nfd);var p3c=Mmd(899);n9c(923,899,{923:1},Qfd);var h3c=Mmd(923);n9c(893,64,{95:1,36:1,24:1,35:1,31:1,71:1,79:1,21:1,64:1,28:1,29:1,39:1},Ufd);_.Wc=rPd;_.Xc=sPd;_.Yc=tPd;_.Zc=uPd;var Rfd;var k3c=Mmd(893);n9c(438,898,lzd,$fd);_.mo=IPd;_.no=KMd;_.oo=function(a,b){Wfd(this,a);if(b<0){throw I8c(new lmd('Cannot access a column with a negative index: '+b))}if(b>=this.a){throw I8c(new lmd(tLd+b+uLd+this.a))}};_.a=0;_.b=0;var m3c=Mmd(438);n9c(2041,399,lzd,cgd);_.Ob=function(a){oo(this,a,(abd(),this.U))};var n3c=Mmd(2041);n9c(1821,1,{},fgd);_.Sc=function(){return egd(this)};_.Rc=function(){return this.b0&&(b=(!this.d&&Cl(this,this.o),this.d.a^1),a=yl(this,b),Cl(this,a));Al(this)};_.bd=function(){var a,b;!this.d&&Cl(this,this.o);(1&this.d.a)>0&&(b=(!this.d&&Cl(this,this.o),this.d.a^1),a=yl(this,b),Cl(this,a))};_.cd=function(){var a,b;!this.d&&Cl(this,this.o);(1&this.d.a)<=0&&(b=(!this.d&&Cl(this,this.o),this.d.a^1),a=yl(this,b),Cl(this,a))};var b4c=Mmd(371);n9c(1831,485,nAd,kid);_.Hb=function(){ql(this);this.a.Ko()};_.Jb=function(){ug(this);this.a.No()};var c4c=Mmd(1831);n9c(478,592,zLd,pid);var lid,mid,nid;var g4c=Mmd(478);n9c(1098,1,{},tid);_.ko=function(a){a.Gb()&&a.Jb()};var d4c=Mmd(1098);n9c(1099,1,Bzd,uid);_.$b=function(a){rid()};var e4c=Mmd(1099);n9c(1097,478,zLd,vid);var f4c=Mmd(1097);n9c(761,1,{},xid);_.Sc=function(){return wid(this)};_.Rc=AMd;_.Tc=function(){!!this.b&&this.c.Rb(this.b)};_.a=false;_.b=null;var h4c=Mmd(761);n9c(543,Uzd,Vzd,Did);_.e=20;_.i=true;var r4c=Mmd(543);n9c(1847,1,{},Fid);var k4c=Mmd(1847);n9c(1849,1,{341:1,1003:1,143:1,13:1},Gid);_.cc=function(a){var b;switch(nlc(a.a)){case 40:Jn(this.a.d);this.a.d.d.M&&!!a.a&&slc(a.a);break;case 38:Kn(this.a.d);this.a.d.d.M&&!!a.a&&slc(a.a);break;case 13:case 9:b=In(this.a.d);!b?this.a.d.d.Vb():zid(this.a,b);}};_.dc=function(a){yid(this.a)};_.Ud=function(a){qg(this.a,a)};var j4c=Mmd(1849);n9c(1848,1,{},Iid);var l4c=Mmd(1848);n9c(1846,1,Izd,Jid);_.eb=function(){Hid(this.a,this.b)};var m4c=Mmd(1846);n9c(1845,618,kzd,Mid);var q4c=Mmd(1845);n9c(906,369,{31:1,369:1,906:1,28:1},Nid);var p4c=Mmd(906);n9c(907,1,{},Oid);_.a=20;var s4c=Mmd(907);n9c(908,1,{},Pid);var t4c=Mmd(908);n9c(1719,Uzd,CLd);var w4c=Mmd(1719);n9c(1722,Uzd,Vzd,Xid);_.Ib=function(a){if(!this.a){return}switch(abd(),zcd((ujc(),a).type)){case 1:Vid(this.c,this);break;case 128:((a.keyCode|0)&hyd)==13&&Vid(this.c,this);(a.keyCode|0)&hyd;(a.shiftKey?1:0)|(a.metaKey?8:0)|(a.ctrlKey?2:0)|(a.altKey?4:0);}tg(this,a);this.p.Ib(a)};_.a=true;var v4c=Mmd(1722);n9c(532,Uzd,{36:1,24:1,35:1,31:1,71:1,174:1,21:1,2244:1,28:1,29:1,39:1},ajd);_.Ob=function(a){throw I8c(new God('A tabText parameter must be specified with add().'))};_.Pb=function(){while(this.a.i.c>0){_id(this,to(this.a,0))}};_.Qb=function(){return new Ljd(this.a.i)};_.Rb=function(a){return _id(this,a)};var z4c=Mmd(532);n9c(1718,1717,lzd,djd);_.Ob=function(a){throw I8c(new God('Use TabPanel.add() to alter the DeckPanel'))};_.Pb=function(){throw I8c(new God('Use TabPanel.clear() to alter the DeckPanel'))};_.Rb=function(a){return cjd(this,a)};var x4c=Mmd(1718);n9c(1720,1719,CLd,ejd);var y4c=Mmd(1720);n9c(794,793,nAd);_.Ok=function(){var a;return a=DEb(this),a==null?'':a};var B4c=Mmd(794);n9c(613,794,nAd,jjd);var A4c=Mmd(613);n9c(150,794,nAd,kjd);var C4c=Mmd(150);n9c(1359,1,RHd,mjd);_.Lk=function(a){Zt(this.a,this.a.Ok())};var F4c=Mmd(1359);n9c(231,10,DLd);var njd,ojd,pjd,qjd;var K4c=Nmd(231,Q5c,tjd);n9c(1355,231,DLd,ujd);var G4c=Nmd(1355,K4c,null);n9c(1356,231,DLd,vjd);var H4c=Nmd(1356,K4c,null);n9c(1357,231,DLd,wjd);var I4c=Nmd(1357,K4c,null);n9c(1358,231,DLd,xjd);var J4c=Nmd(1358,K4c,null);n9c(92,611,lzd,Bjd);_.Nb=function(a){yjd(this,!a?null:a.Cb())};_.Ob=function(a){yjd(this,a)};_.Rb=function(a){return zjd(this,a)};var N4c=Mmd(92);n9c(775,1,aBd,Ijd);_.Qb=function(){return new Ljd(this)};_.c=0;var P4c=Mmd(775);n9c(353,1,{},Ljd);_.Sc=function(){return Jjd(this)};_.Rc=function(){return this.b<\/div>';wic((pic(),oic),new ikd(a))}return a};_.Go=function(a){return ekd?yjc((ujc(),a)):a};_.Ho=function(a){return ekd?a:Ajc((ujc(),a))};_.Io=function(a,b){a.style['clip']=b;a.style[pLd]=(Rlc(),bzd);a.style[pLd]=''};var ekd=false;var W4c=Mmd(1360);n9c(1361,1,Izd,ikd);_.eb=function(){this.a.style[yAd]=(Jmc(),'auto')};var V4c=Mmd(1361);n9c(443,1,{443:1});_.vc=function(){return abd(),Pkc($doc)};_.Jo=wPd;_.ld=wPd;_.zc=function(){obd(this.f,8189)};_.Ko=function(){this.Ac()};_.Ac=function(){this.zc()};_.Lo=function jkd(a){a?this.f.focus():this.f.blur()};_.Mo=function(a){this.f[OHd]=a};_.No=tMd;var _4c=Mmd(443);n9c(939,443,FLd);_.vc=function rkd(){return $doc.createElement('iframe')};_.Jo=function(){return !this.b?this.f.contentWindow.document.body.innerHTML:Yic(this.b)};_.ld=function(){return !this.b?this.Oo():Zic(this.b)};_.Oo=function skd(){return this.f.contentWindow.document.body.textContent};_.zc=function tkd(){var b=this.f;var c=b.contentWindow;b.__gwt_handler=Yxd(function(a){bbd(a,b)});b.__gwt_focusHandler=function(a){if(b.__gwt_isFocused){return}b.__gwt_isFocused=true;b.__gwt_handler(a)};b.__gwt_blurHandler=function(a){if(!b.__gwt_isFocused){return}b.__gwt_isFocused=false;b.__gwt_handler(a)};c.addEventListener(cAd,b.__gwt_handler,true);c.addEventListener(dAd,b.__gwt_handler,true);c.addEventListener(eAd,b.__gwt_handler,true);c.addEventListener(pKd,b.__gwt_handler,true);c.addEventListener(tKd,b.__gwt_handler,true);c.addEventListener(qKd,b.__gwt_handler,true);c.addEventListener(sKd,b.__gwt_handler,true);c.addEventListener(rKd,b.__gwt_handler,true);c.addEventListener(TId,b.__gwt_handler,true);c.addEventListener(Yyd,b.__gwt_focusHandler,true);c.addEventListener(Zyd,b.__gwt_blurHandler,true)};_.Ko=function ukd(){var a=this;a.Po();setTimeout(Yxd(function(){if(a.f.contentWindow!=null){a.f.contentWindow.document.designMode='On';a.Ac()}}),1)};_.to=function(a){kkd(this,'InsertHTML',a)};_.uo=function(){return mkd(this,'Bold')};_.vo=function(){return mkd(this,Oyd)};_.wo=function(){return mkd(this,'Subscript')};_.xo=function(){return mkd(this,GLd)};_.Ac=function(){if(!this.c){return}this.c=false;this.e=true;if(this.b){pkd(this,Yic(this.b));nkd(this,!this.b?lkd(this):!this.b[mAd]);this.b=null}this.zc();if(this.d){this.d=false;this.c?(this.d=true):this.Qo(true)}};_.Po=function(){this.c=true;this.d=false};_.yo=function(){kkd(this,'RemoveFormat',null)};_.Lo=function(a){this.c?(this.d=a):this.Qo(a)};_.Qo=function(a){okd(this,a)};_.Mo=function(a){!this.b?pkd(this,a):jjc(this.b,a)};_.zo=function(){kkd(this,'Bold',Mzd)};_.Ao=function(){kkd(this,Oyd,Mzd)};_.Bo=function(){kkd(this,'Subscript',Mzd)};_.Co=function(){kkd(this,GLd,Mzd)};_.Fc=function vkd(){var a=this.f;var b=a.contentWindow;b.removeEventListener(cAd,a.__gwt_handler,true);b.removeEventListener(dAd,a.__gwt_handler,true);b.removeEventListener(eAd,a.__gwt_handler,true);b.removeEventListener(pKd,a.__gwt_handler,true);b.removeEventListener(tKd,a.__gwt_handler,true);b.removeEventListener(qKd,a.__gwt_handler,true);b.removeEventListener(sKd,a.__gwt_handler,true);b.removeEventListener(rKd,a.__gwt_handler,true);b.removeEventListener(TId,a.__gwt_handler,true);b.removeEventListener(Yyd,a.__gwt_focusHandler,true);b.removeEventListener(Zyd,a.__gwt_blurHandler,true);a.__gwt_handler=null;a.__gwt_focusHandler=null;a.__gwt_blurHandler=null};_.No=function(){var a,b;this.e=false;if(this.c){this.c=false;return}this.Fc();b=!this.b?this.f.contentWindow.document.body.innerHTML:Yic(this.b);a=!this.b?lkd(this):!this.b[mAd];this.b=(abd(),wkc($doc));jjc(this.b,b);!this.b?nkd(this,a):(this.b[mAd]=!a,undefined)};_.c=false;_.d=false;_.e=false;var $4c=Mmd(939);n9c(2044,939,FLd,wkd);_.Ko=function xkd(){var a=this;var b=a.f;a.Po();a.a=true;b.onload=Yxd(function(){b.onload=null;b.contentWindow.onfocus=function(){b.contentWindow.onfocus=null;b.contentWindow.onmouseover=null;b.contentWindow.document.designMode='On'};b.contentWindow.onmouseover=b.contentWindow.onfocus;a.Ac()})};_.Qo=function(a){var b,c,d;if(this.a){this.a=false;b=this.f;c=b.contentWindow;c.removeEventListener(Yyd,b.__gwt_focusHandler,true);c.removeEventListener(Zyd,b.__gwt_blurHandler,true);c.focus();c.blur();c.focus();c.addEventListener(Yyd,b.__gwt_focusHandler,true);c.addEventListener(Zyd,b.__gwt_blurHandler,true);d=document.createEvent(cKd);d.initEvent(Yyd,false,false);c.dispatchEvent(d)}else{okd(this,a)}};_.a=false;var Y4c=Mmd(2044);n9c(2043,939,FLd,ykd);_.Oo=function zkd(){return this.f.contentWindow.document.body.innerText};_.zc=function Akd(){var b=this.f;var c=b.contentWindow;b.__gwt_handler=function(a){bbd(a,b)};c.addEventListener(cAd,b.__gwt_handler,true);c.addEventListener(dAd,b.__gwt_handler,true);c.addEventListener(eAd,b.__gwt_handler,true);c.addEventListener(pKd,b.__gwt_handler,true);c.addEventListener(tKd,b.__gwt_handler,true);c.addEventListener(qKd,b.__gwt_handler,true);c.addEventListener(sKd,b.__gwt_handler,true);c.addEventListener(rKd,b.__gwt_handler,true);c.addEventListener(TId,b.__gwt_handler,true);c.onfocus=function(a){bbd(a,b)};c.onblur=function(a){bbd(a,b)}};_.Fc=function Bkd(){var a=this.f;var b=a.contentWindow;b.removeEventListener(cAd,a.__gwt_handler,true);b.removeEventListener(dAd,a.__gwt_handler,true);b.removeEventListener(eAd,a.__gwt_handler,true);b.removeEventListener(pKd,a.__gwt_handler,true);b.removeEventListener(tKd,a.__gwt_handler,true);b.removeEventListener(qKd,a.__gwt_handler,true);b.removeEventListener(sKd,a.__gwt_handler,true);b.removeEventListener(rKd,a.__gwt_handler,true);b.removeEventListener(TId,a.__gwt_handler,true);a.__gwt_handler=null;a.onfocus=null;a.onblur=null};var Z4c=Mmd(2043);n9c(625,52,sJd);var a5c=Mmd(625);var Ikd;n9c(149,1,{149:1});_.V=function(a){if(kvc(a,149)){return this.a==a.a}return false};_.Xo=AMd;_.X=lPd;var f5c=Mmd(149);n9c(318,149,HLd,Okd);_.So=function(){return new lld(uld(this.a))};_.To=function(){return new jld(vld(this.a))};_.Uo=function(){return Bld(this.a)};_.Vo=function(){return Pkd(Fld(this.a))};_.Wo=function(){return Ild(this.a)};_.Y=function(){return (old(),old(),nld).bp(this)};var m5c=Mmd(318);n9c(1864,318,HLd,Qkd);var b5c=Mmd(1864);n9c(912,318,ILd);_.Ro=function(){return wld(this.a)};var d5c=Mmd(912);n9c(913,912,{1011:1,297:1,2348:1,149:1},Skd);_.Y=function(){var a,b,c;a=new yod;c=Und(wld(this.a),'(?=[;&<>\'"])',-1);for(b=0;b')){a.a+='>';nod(a,c[b].substr(1))}else{a.a+=''+c[b]}}return a.a};var p5c=Mmd(913);n9c(1865,913,{2391:1,1011:1,297:1,2348:1,149:1},Tkd);_.Y=function(){var a;a=new Aod('';return a.a};var c5c=Mmd(1865);n9c(1866,912,ILd,Ukd);_.Y=function(){var a;a=new Aod('';return a.a};var e5c=Mmd(1866);n9c(290,625,sJd,Vkd);var g5c=Mmd(290);n9c(310,625,{310:1,3:1,45:1,52:1,42:1},Wkd,Xkd);var h5c=Mmd(310);n9c(1867,318,HLd,Zkd);var i5c=Mmd(1867);n9c(1868,318,{2381:1,297:1,149:1},bld);var j5c=Mmd(1868);n9c(1869,318,{2380:1,297:1,149:1},gld);var k5c=Mmd(1869);n9c(158,149,{149:1},jld);_.Yo=xPd;_.Zo=function(a){return ild(this,a)};_.Y=function(){var a,b;a=new yod;for(b=0;b0){var e=d.item(0);e.parentNode.tagName=='body'&&Wld(e.childNodes[1].innerHTML)}return c};var q5c=Mmd(1766);n9c(358,1,{293:1},Yld);_.tc=function(){Xld(this)};var x5c=Mmd(358);n9c(1070,1,{293:1},$ld);_.tc=function(){Zld(this)};var y5c=Mmd(1070);n9c(1071,1,{2330:1},_ld);_.eb=function(){uqc(this.a,this.d,this.c,this.b)};var z5c=Mmd(1071);n9c(736,1,{2330:1},amd);_.eb=function(){wqc(this.a,this.d,this.c,this.b)};var A5c=Mmd(736);n9c(2258,1,{});var F5c=Mmd(2258);n9c(2259,2258,{});var D5c=Mmd(2259);n9c(132,45,{132:1,3:1,45:1,42:1},bmd);var E5c=Mmd(132);n9c(1029,2259,{},cmd);var G5c=Mmd(1029);n9c(581,132,{132:1,3:1,581:1,45:1,42:1},dmd);var H5c=Mmd(581);n9c(393,1,{466:1});_.Y=AMd;var I5c=Mmd(393);n9c(166,52,{3:1,166:1,45:1,52:1,42:1},jmd);var J5c=Mmd(166);n9c(73,52,LLd,kmd,lmd);var V5c=Mmd(73);n9c(823,73,LLd,mmd,nmd);var K5c=Mmd(823);dvc={3:1,583:1,11:1};var omd,pmd;var L5c=Mmd(583);n9c(392,1,{3:1,392:1,11:1},umd);_.Z=function(a){return this.a-a.a};_.V=function(a){return kvc(a,392)&&a.a==this.a};_.X=AMd;_.Y=function(){return Cnd(),String.fromCharCode(this.a)};_.a=0;var smd,tmd;var N5c=Mmd(392);var Emd;n9c(467,1,{3:1,467:1});var Vmd;var $5c=Mmd(467);evc={3:1,11:1,725:1,467:1};var P5c=Mmd(725);n9c(386,42,{3:1,42:1},_md);var R5c=Mmd(386);n9c(20,52,NLd,and,bnd,cnd);var T5c=Mmd(20);n9c(110,52,sJd,dnd,end);var U5c=Mmd(110);n9c(215,467,{3:1,11:1,215:1,467:1},gnd);_.Z=function(a){return hnd(this.a,a.a)};_.V=function(a){return fnd(this,a)};_.X=AMd;_.Y=function(){return $md(this.a)};_.a=0;var W5c=Mmd(215);var nnd;n9c(2454,1,{});n9c(83,585,sJd,tnd,und);_._=function(a){return new TypeError(a)};var Y5c=Mmd(83);var vnd,wnd,xnd,ynd;n9c(65,20,{3:1,45:1,20:1,65:1,52:1,42:1},And);var Z5c=Mmd(65);n9c(468,393,{466:1},ood,pod);var d6c=Mmd(468);n9c(26,393,{466:1,26:1},yod,zod,Aod);var e6c=Mmd(26);n9c(469,73,{3:1,45:1,73:1,52:1,469:1,42:1},Bod);var f6c=Mmd(469);n9c(2458,1,{});var Cod;n9c(86,52,sJd,Fod,God);var i6c=Mmd(86);n9c(50,467,{3:1,11:1,467:1,50:1},fpd,gpd,hpd,ipd,jpd,kpd,lpd,mpd);_.Z=function(a){return Ood(this,a)};_.V=function(a){return Rod(this,a)};_.X=function(){return Vod(this)};_.Y=function(){return Dpd(this,0)};_.b=-2;_.c=0;_.d=0;_.e=0;var Hod,Iod,Jod,Kod,Lod,Mod;var j6c=Mmd(50);var zpd,Apd;var jqd,kqd;n9c(343,1,ULd);_.Z=function(a){return Fnd(this.a,a.a)};_.V=function(a){var b;if(a===this){return true}if(!kvc(a,343)){return false}b=a;return Hnd(this.a,b.a)};_.X=mPd;_.Y=AMd;var k6c=Mmd(343);n9c(1028,20,NLd,tqd);var l6c=Mmd(1028);n9c(580,20,{3:1,45:1,20:1,52:1,42:1,580:1},uqd);var m6c=Mmd(580);n9c(46,45,{3:1,45:1,42:1,46:1},vqd);var n6c=Mmd(46);var J7c=Omd();n9c(2266,1,VLd);_.kp=function(a){return wqd(this,a)};_.lp=function(a){return !!xqd(this,a,false)};_.V=function(a){var b,c,d;if(a===this){return true}if(!kvc(a,212)){return false}d=a;if(this.vd()!=d.vd()){return false}for(c=d.mp().Qb();c.Rc();){b=c.Sc();if(!this.kp(b)){return false}}return true};_.np=function(a){return Bqd(xqd(this,a,false))};_.X=function(){return $rd(this.mp())};_.sd=zPd;_.op=function(){return new ard(this)};_.pp=function(a,b){throw I8c(new God('Put not supported on this map'))};_.qp=function(a){return Bqd(xqd(this,a,true))};_.vd=function(){return this.mp().vd()};_.Y=function(){var a,b,c;c=new cvd(', ','{','}');for(b=this.mp().Qb();b.Rc();){a=b.Sc();avd(c,zqd(this,a.yp())+'='+zqd(this,a.Ok()))}return !c.a?c.c:c.e.length==0?c.a.a:c.a.a+(''+c.e)};var D6c=Mmd(2266);n9c(347,2266,VLd);_.Pb=function(){this.d=new Ctd(this);this.e=new Qtd};_.lp=function(a){return Cqd(this,a)};_.rp=function(a){return Dqd(this,a,this.e)||Dqd(this,a,this.d)};_.mp=function(){return new Sqd(this)};_.np=function(a){return Eqd(this,a)};_.pp=function(a,b){return Hqd(this,a,b)};_.qp=function(a){return Jqd(this,a)};_.vd=function(){return Mqd(this)};var r6c=Mmd(347);n9c(WLd,2260,XLd);_.V=function(a){return Pqd(this,a)};_.X=function(){return $rd(this)};_.ud=function(a){return Qqd(this,a)};var J6c=Mmd(WLd);n9c(54,WLd,XLd,Sqd);_.qd=function(a){return Rqd(this,a)};_.Qb=function(){return new Vqd(this.a)};_.td=function(a){var b;if(Rqd(this,a)){b=a.yp();this.a.qp(b);return true}return false};_.vd=CPd;var q6c=Mmd(54);n9c(55,1,{},Vqd);_.Sc=function(){return Uqd(this)};_.Rc=KMd;_.Tc=function(){this.c.Tc();this.c=null;this.b=Tqd(this)};_.b=false;var p6c=Mmd(55);n9c(250,1,{},Zqd);_.Rc=function(){return Wqd(this)};_.Sc=function(){return Xqd(this)};_.Tc=APd;_.b=0;_.c=-1;var s6c=Mmd(250);n9c(344,250,{},$qd);_.Tc=APd;_.up=function(a){this.a.yd(this.b,a);++this.b;this.c=-1};_.vp=function(){return this.b>0};_.wp=function(){return this.a.zd(this.c=--this.b)};_.xp=function(a){this.a.Ed(this.c,a)};var t6c=Mmd(344);n9c(345,2261,ZAd,_qd);_.yd=function(a,b){this.c.yd(this.a+a,b);++this.b};_.zd=function(a){return this.c.zd(this.a+a)};_.Dd=function(a){var b;b=this.c.Dd(this.a+a);--this.b;return b};_.Ed=function(a,b){return this.c.Ed(this.a+a,b)};_.vd=KMd;_.a=0;_.b=0;var u6c=Mmd(345);n9c(32,WLd,XLd,ard);_.qd=BPd;_.Qb=function(){var a;return a=this.a.mp().Qb(),new brd(a)};_.td=function(a){if(this.a.lp(a)){this.a.qp(a);return true}return false};_.vd=CPd;var x6c=Mmd(32);n9c(41,1,{},brd);_.Rc=DPd;_.Sc=function(){var a;return a=this.a.Sc(),a.yp()};_.Tc=EPd;var w6c=Mmd(41);n9c(74,2260,YAd,drd);_.qd=function(a){return crd(this,a)};_.Qb=function(){var a;return a=this.a.mp().Qb(),new erd(a)};_.vd=CPd;var z6c=Mmd(74);n9c(111,1,{},erd);_.Rc=DPd;_.Sc=function(){var a;return a=this.a.Sc(),a.Ok()};_.Tc=EPd;var y6c=Mmd(111);n9c(397,1,{397:1,185:1});_.V=function(a){var b;if(!kvc(a,185)){return false}b=a;return Gud(this.d,b.yp())&&Gud(this.e,b.Ok())};_.yp=BMd;_.Ok=CNd;_.X=function(){return Hud(this.d)^Hud(this.e)};_.zp=function(a){return frd(this,a)};_.Y=function(){return this.d+'='+this.e};var A6c=Mmd(397);n9c(300,397,{397:1,300:1,185:1},grd);var B6c=Mmd(300);n9c(2278,1,YLd);_.V=function(a){var b;if(!kvc(a,185)){return false}b=a;return Gud(this.yp(),b.yp())&&Gud(this.Ok(),b.Ok())};_.X=function(){return Hud(this.yp())^Hud(this.Ok())};_.Y=function(){return this.yp()+'='+this.Ok()};var C6c=Mmd(2278);n9c(2304,2266,VLd);_.kp=function(a){return hrd(this,a)};_.lp=function(a){return ird(this,a)};_.mp=function(){return new jrd(this)};_.np=function(a){return Bqd(evd(this,a))};_.op=function(){return new krd(this)};var H6c=Mmd(2304);n9c(859,WLd,XLd,jrd);_.qd=function(a){return kvc(a,185)&&hrd(this.a,a)};_.Qb=function(){return new vvd(this.a)};_.td=function(a){var b;if(kvc(a,185)){b=a;return mvd(this.a,b)}return false};_.vd=MOd;var E6c=Mmd(859);n9c(285,WLd,XLd,krd);_.qd=function(a){return ird(this.a,a)};_.Qb=function(){var a;return a=new vvd((new xvd(this.a)).a),new lrd(a)};_.td=function(a){if(ird(this.a,a)){lvd(this.a,a);return true}return false};_.vd=MOd;var G6c=Mmd(285);n9c(286,1,{},lrd);_.Rc=function(){return Wqd(this.a.a)};_.Sc=function(){var a;return a=tvd(this.a),a.yp()};_.Tc=function(){uvd(this.a)};var F6c=Mmd(286);n9c(2308,2261,ZAd);_.yd=function(a,b){var c;c=this.Cd(a);c.up(b)};_.zd=function(b){var c;c=this.Cd(b);try{return c.Sc()}catch(a){a=H8c(a);if(kvc(a,147)){throw I8c(new lmd("Can't get element "+b))}else throw I8c(a)}};_.Qb=function(){return nud(this,0)};_.Dd=function(b){var c,d;c=this.Cd(b);try{d=c.Sc();c.Tc();return d}catch(a){a=H8c(a);if(kvc(a,147)){throw I8c(new lmd("Can't remove element "+b))}else throw I8c(a)}};_.Ed=function(b,c){var d,e;d=this.Cd(b);try{e=d.Sc();d.xp(c);return e}catch(a){a=H8c(a);if(kvc(a,147)){throw I8c(new lmd("Can't set element "+b))}else throw I8c(a)}};var I6c=Mmd(2308);n9c(826,2260,YAd,zrd);_.od=function(a){Iud(a);this.a[this.c]=a;this.c=this.c+1&this.a.length-1;qrd(this);return true};_.qd=function(a){return ord(new Drd(this),a)};_.sd=function(){return rrd(this)};_.Qb=function(){return new Drd(this)};_.td=function(a){return urd(new Drd(this),a)};_.vd=function(){return yrd(this)};_.xd=function(a){var b;b=this.c-this.b&this.a.length-1;a.lengthb&&(a[b]=null);return a};_.b=0;_.c=0;var L6c=Mmd(826);n9c(629,1,{},Drd);_.Rc=function(){return this.a!=this.b};_.Sc=function(){return Brd(this)};_.Tc=function(){Crd(this)};_.a=0;_.b=0;_.c=-1;var K6c=Mmd(629);n9c(9,1,{},Frd);_.Rc=function(){return this.a>24}return b};var j8c=Mmd(727);n9c(1027,726,ULd,Nwd);_.Ep=function(a){var b,c,d,e,f,g,h;g=a.length;b=0;for(f=0;f=gyd?2:1;d<128?++b:d=gyd?2:1;h+=Mwd(c,h,d)}return c};var k8c=Mmd(1027);n9c(2453,1,{});var Ywd=0;var $wd,_wd=0,axd;n9c(2000,1,{});_.j=0;_.n=0;var m8c=Mmd(2000);n9c(2001,2000,{},nxd);_.a=0;_.b=0;_.c=0;_.d=0;_.e=0;_.i=0;var n8c=Mmd(2001);n9c(2296,1,{});var o8c=Mmd(2296);n9c(1456,2296,{});var p8c=Mmd(1456);n9c(638,1,{638:1},oxd);_.V=function(a){var b;if(!kvc(a,638)){return false}b=a;return Rod(b.b,this.b)&&Rod(b.c,this.c)&&Rod(b.a,this.a)};_.X=function(){return Vod(this.b)^Vod(this.c)^Vod(this.a)};var q8c=Mmd(638);n9c(1457,1456,{},pxd);var r8c=Mmd(1457);n9c(2002,1,{},txd);var s8c=Mmd(2002);n9c(2267,1,{});var v8c=Mmd(2267);n9c(1067,2267,{},Ixd);var u8c=Mmd(1067);var Rxd;var b6c=Mmd(null);var svc=Pmd('C');var uvc=Pmd('I');var w8c=Pmd('Z');var vvc=Pmd('J');var rvc=Pmd('B');var tvc=Pmd('D');var Yxd=(eic(),hic);var gwtOnLoad=gwtOnLoad=j9c;h9c(u9c);k9c('permProps',[[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,'safari']],[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,'safari']]]);$sendStats('moduleStartup', 'moduleEvalEnd');gwtOnLoad(__gwtModuleFunction.__errFn, __gwtModuleFunction.__moduleName, __gwtModuleFunction.__moduleBase, __gwtModuleFunction.__softPermutationId,__gwtModuleFunction.__computePropValue);$sendStats('moduleStartup', 'end');$gwt && $gwt.permProps && __gwtModuleFunction.__moduleStartupDone($gwt.permProps); +//# sourceURL=gui-0.js + diff --git a/public/marvinjs/gui/FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt b/public/marvinjs/gui/FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt new file mode 100644 index 000000000..d2099e125 --- /dev/null +++ b/public/marvinjs/gui/FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt @@ -0,0 +1,2 @@ +[ +"Arg\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 7.2857 3.3804 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2857 2.5554 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 6.5679 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8554 2.5554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1429 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4250 2.5554 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0000 2.5554 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 1.3179 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9982 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7161 2.5554 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 2 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Arg\nM SAP 1 3 1 0 Al 10 0 Br 8 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nMgCl\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Mg 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 MgCl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ClMg\nM END\n> \nMgCl\n\n> \nClMg\n\n$$$$\nc-C16H31\n Mrv15c7 12111511552D \n\n 16 16 0 0 0 0 999 V2000\n 2.1434 1.4223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7183 2.0140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5182 1.8119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7432 1.0182 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1683 0.4265 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3932 -0.3673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8183 -0.9589 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0433 -1.7527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4684 -2.3444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6685 -2.1423 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4435 -1.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6436 -1.1466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4187 -0.3528 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9936 0.2389 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7686 1.0326 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3435 1.6243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 1 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 c-C16H31\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C16H31\n\n$$$$\nc-C3H5\n Mrv15c7 12111511552D \n\n 3 3 0 0 0 0 999 V2000\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 1 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 c-C3H5\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C3H5\n\n$$$$\nBTC\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BTC\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBTC\n\n$$$$\nCt\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Ct\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nCt\n\n$$$$\nCOs-Bu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COs-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuCO\nM END\n> \nCOs-Bu\n\n> \ns-BuCO\n\n$$$$\nC13H27\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n 5.4730 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1875 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.9020 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.6164 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.3309 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.0454 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.7599 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.4743 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1888 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.9033 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.6177 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.3322 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.0467 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 C13H27\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H27C13\nM END\n> \nC13H27\n\n> \nH27C13\n\n$$$$\nCy\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Cy\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCy\n\n$$$$\nPmc\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8545 0.3627 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3848 -0.5558 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 3 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 2 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 13 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 16 18 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Pmc\nM SAP 1 1 16 0 1\nM SDS EXP 1 1\nM END\n> \nPmc\n\n$$$$\nCe\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Ce\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCe\n\n$$$$\n4Py\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 4Py\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \n4Py\n\n$$$$\nC16H33\n Mrv15c7 12111511552D \n\n 16 15 0 0 0 0 999 V2000\n 5.9961 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.7105 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.4250 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.1395 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.8539 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.5684 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.2829 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.9974 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.7118 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.4263 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.1408 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8552 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5697 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2842 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9987 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.7131 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 C16H33\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H33C16\nM END\n> \nC16H33\n\n> \nH33C16\n\n$$$$\nADRibof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADRibof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADRibof\n\n$$$$\ns-Butyl\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 s-Butyl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-Butyl\n\n$$$$\no-C6H4\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 o-C6H4\nM SAP 1 2 2 0 1 1 0 2\nM SDS EXP 1 1\nM MJS SAT 1 o-C6H4\nM END\n> \no-C6H4\n\n> \no-C6H4\n\n$$$$\nCys\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4304 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Cys\nM SAP 1 3 1 0 Al 5 0 Br 4 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nSnMe3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Sn 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SnMe3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me3Sn\nM END\n> \nSnMe3\n\n> \nMe3Sn\n\n$$$$\nCyt\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Cyt\nM SAP 1 2 6 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nCyt\n\n$$$$\nBDAllos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDAllos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDAllos\n\n$$$$\nEE\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 EE\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nEE\n\n$$$$\nOEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 OEt\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtO\nM END\n> \nOEt\n\n> \nEtO\n\n$$$$\nc-C7H13\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.8566 1.3632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5999 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7834 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2691 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4441 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0703 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1133 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 1 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 c-C7H13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C7H13\n\n$$$$\np-Tolyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 p-Tolyl\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \np-Tolyl\n\n$$$$\nOnPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OnPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 nPrO\nM END\n> \nOnPr\n\n> \nnPrO\n\n$$$$\nSi-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Si-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrS\nM END\n> \nSi-Pr\n\n> \ni-PrS\n\n$$$$\nDPTBS\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3020 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\n 6 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 13 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 DPTBS\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nDPTBS\n\n$$$$\nNHAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmNH\nM END\n> \nNHAm\n\n> \nAmNH\n\n$$$$\nHmb\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 3 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Hmb\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nHmb\n\n$$$$\nU\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.3819 -1.7224 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1665 -1.4675 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 -2.5070 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.3020 -2.5070 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0470 -1.7224 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7376 -1.4675 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9091 -0.6605 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6937 -0.4056 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4784 -0.1506 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9487 -1.1902 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4388 0.3790 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6119 -3.1745 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4324 -3.0882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9173 -3.7557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5817 -4.5094 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0667 -5.1768 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7613 -4.5956 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2763 -3.9282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4559 -4.0144 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 2 0 0 0 0\n 5 14 1 6 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 17 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 14 20 1 0 0 0 0\n 20 21 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 U\nM SDS EXP 1 1\nM END\n> \nU\n\n$$$$\nAsu\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 2.1434 -4.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.5375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -5.7750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Asu\nM SAP 1 2 1 0 1 11 0 2\nM SDS EXP 1 1\nM END\n> \nAsu\n\n$$$$\nEt\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Et\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nEt\n\n$$$$\nAsx\n Mrv15c7 12111511552D \n\n 8 7 1 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 L 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 5 F 2 7 8\nM ALS 5 2 F N O \nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Asx\nM SAP 1 2 1 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADRibop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADRibop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADRibop\n\n$$$$\nZ\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Z\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nZ\n\n$$$$\nIps\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ips\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nIps\n\n$$$$\nNHBn\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NHBn\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnNH\nM END\n> \nNHBn\n\n> \nBnNH\n\n$$$$\nIPA\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 IPA\nM SDS EXP 1 1\nM END\n> \nIPA\n\n$$$$\nOBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuO\nM END\n> \nOBu\n\n> \nBuO\n\n$$$$\nc-Hx\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 c-Hx\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nc-Hx\n\n$$$$\nNHt-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHt-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmNH\nM END\n> \nNHt-Am\n\n> \nt-AmNH\n\n$$$$\nn-Hex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 n-Hex\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Hex\n\n$$$$\nOBz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 OBz\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BzO\nM END\n> \nOBz\n\n> \nBzO\n\n$$$$\nNHBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuNH\nM END\n> \nNHBu\n\n> \nBuNH\n\n$$$$\nAsn\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Asn\nM SAP 1 3 1 0 Al 7 0 Br 5 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADFruct\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADFruct\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADFruct\n\n$$$$\nMgBr\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Mg 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 MgBr\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BrMg\nM END\n> \nMgBr\n\n> \nBrMg\n\n$$$$\nAsp\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Asp\nM SAP 1 3 1 0 Al 7 0 Br 5 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\niAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 iAm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \niAm\n\n$$$$\nFt\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n -1.4534 -0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6284 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1435 -1.3654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3984 -2.1500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1435 -0.0305 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3984 0.7541 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 6 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Ft\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nFt\n\n$$$$\nADIdose\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADIdose\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADIdose\n\n$$$$\nH2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 1.6500 0.0000 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 H2\nM SDS EXP 1 1\nM END\n> \nH2\n\n$$$$\nOTBDMS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTBDMS\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TBDMSO\nM END\n> \nOTBDMS\n\n> \nTBDMSO\n\n$$$$\nOPfp\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 OPfp\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PfpO\nM END\n> \nOPfp\n\n> \nPfpO\n\n$$$$\nt-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 t-C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nt-C4H9\n\n$$$$\nc-C20H39\n Mrv15c7 12111511552D \n\n 20 20 0 0 0 0 999 V2000\n 2.8579 2.0862 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3743 2.7295 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1897 2.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4887 1.8351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9723 1.1917 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2712 0.4228 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7548 -0.2206 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0538 -0.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5374 -1.6329 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8364 -2.4018 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3199 -3.0452 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5045 -2.9197 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2056 -2.1507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3902 -2.0252 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0912 -1.2563 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6076 -0.6129 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3086 0.1560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8251 0.7994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5261 1.5683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0425 2.2117 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 1 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 c-C20H39\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C20H39\n\n$$$$\niBu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 iBu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \niBu\n\n$$$$\nPiv\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Piv\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPiv\n\n$$$$\nProp\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Prop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nProp\n\n$$$$\nAmyl\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Amyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAmyl\n\n$$$$\nPic\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Pic\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPic\n\n$$$$\nPCl5\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.4924 0.4849 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5701 -0.7846 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4924 -0.4849 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5701 0.7846 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 PCl5\nM SDS EXP 1 1\nM END\n> \nPCl5\n\n$$$$\nPiP\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.1105 -2.0625 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6039 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 2 0 0 0 0\nM CHG 3 1 -1 6 -1 7 -1\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PiP\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PPi\nM END\n> \nPiP\n\n> \nPPi\n\n$$$$\nC25H51\n Mrv15c7 12111511552D \n\n 25 24 0 0 0 0 999 V2000\n 12.8980 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6125 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3270 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0414 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7559 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.4704 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.1849 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.8993 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6138 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3283 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.0427 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.7572 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.4717 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.1862 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.9006 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.6151 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.3296 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.0440 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.7585 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 26.4730 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.1874 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.9019 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 28.6164 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 29.3309 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 30.0453 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 C25H51\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H51C25\nM END\n> \nC25H51\n\n> \nH51C25\n\n$$$$\nPCl3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PCl3\nM SDS EXP 1 1\nM END\n> \nPCl3\n\n$$$$\nCOOAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmOOC\nM END\n> \nCOOAm\n\n> \nAmOOC\n\n$$$$\nAIBN\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 2.1434 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.1270 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3020 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -2.1434 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 3 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 AIBN\nM SDS EXP 1 1\nM END\n> \nAIBN\n\n$$$$\nPht\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.4125 -2.8579 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.8579 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Pht\nM SAP 1 2 2 0 1 9 0 2\nM SDS EXP 1 1\nM END\n> \nPht\n\n$$$$\nc-C18H35\n Mrv15c7 12111511552D \n\n 18 18 0 0 0 0 999 V2000\n 2.5006 1.5918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9924 2.2542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 2.1596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1398 1.4025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6480 0.7401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9758 -0.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4841 -0.6794 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 -1.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3202 -2.0989 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5006 -2.0043 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0089 -2.6667 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 -2.5721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8615 -1.8150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3533 -1.1526 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0255 -0.3955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5172 0.2669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 1.0240 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6811 1.6864 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 1 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 c-C18H35\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C18H35\n\n$$$$\nNHAc\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHAc\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AcNH\nM END\n> \nNHAc\n\n> \nAcNH\n\n$$$$\nm-Tol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 m-Tol\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nm-Tol\n\n$$$$\nPhe\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7125 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7125 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7125 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Phe\nM SAP 1 2 1 0 Al 10 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADThreo\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 ADThreo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADThreo\n\n$$$$\nH2SO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 H2SO4\nM SDS EXP 1 1\nM END\n> \nH2SO4\n\n$$$$\nC8\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.0000 -0.3524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4241 -0.4698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1701 -0.1175 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8482 -0.5873 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5942 -0.2349 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2723 -0.7047 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0183 -0.3524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 C8\nM SAP 1 2 1 0 1 8 0 2\nM SDS EXP 1 1\nM END\n> \nC8\n\n$$$$\nC7\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 C7\nM SAP 1 2 1 0 1 7 0 2\nM SDS EXP 1 1\nM END\n> \nC7\n\n$$$$\nC9\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 C9\nM SAP 1 2 1 0 1 9 0 2\nM SDS EXP 1 1\nM END\n> \nC9\n\n$$$$\nC4\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.0000 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7796 -0.5401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4032 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1827 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 C4\nM SAP 1 2 1 0 1 4 0 2\nM SDS EXP 1 1\nM END\n> \nC4\n\n$$$$\nC3\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 C3\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nC3\n\n$$$$\nC6\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.0000 -0.3278 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7571 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4195 -0.4917 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1766 -0.1639 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8390 -0.6556 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5961 -0.3278 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 C6\nM SAP 1 2 1 0 1 6 0 2\nM SDS EXP 1 1\nM END\n> \nC6\n\n$$$$\nC5\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 C5\nM SAP 1 2 1 0 1 5 0 2\nM SDS EXP 1 1\nM END\n> \nC5\n\n$$$$\nNHn-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHn-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuNH\nM END\n> \nNHn-Bu\n\n> \nn-BuNH\n\n$$$$\ni-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 i-C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-C4H9\n\n$$$$\nSO3H\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SO3H\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HO3S\nM END\n> \nSO3H\n\n> \nHO3S\n\n$$$$\nCOOneoAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOneoAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmOOC\nM END\n> \nCOOneoAm\n\n> \nneoAmOOC\n\n$$$$\nBDThreo\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 BDThreo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDThreo\n\n$$$$\nAc\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Ac\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAc\n\n$$$$\nAd\n Mrv15c7 12111511552D \n\n 10 12 0 0 0 0 999 V2000\n 0.1163 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -1.6585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -0.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -0.1208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -1.6156 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5873 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 4 10 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 2 9 1 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 5 6 1 0 0 0 0\n 8 10 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ad\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAd\n\n$$$$\nAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAm\n\n$$$$\nTacm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.1105 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Tacm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nTacm\n\n$$$$\nSuc\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Suc\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nSuc\n\n$$$$\nC2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 C2\nM SAP 1 2 1 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nC2\n\n$$$$\nc-C10H19\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 1.4289 1.5039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2391 1.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7792 1.0361 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5091 0.2566 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6990 0.1007 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.6789 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6188 -0.8348 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0787 -0.2111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3488 0.5684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1589 0.7243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 c-C10H19\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C10H19\n\n$$$$\nOSiME3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OSiME3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SiMe3O\nM END\n> \nOSiME3\n\n> \nSiMe3O\n\n$$$$\nPhF\n Mrv15c7 12111511552D \n\n 19 22 0 0 0 0 999 V2000\n 1.9339 -3.1605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -2.7480 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -1.9230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -1.5105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6484 -1.9230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6484 -2.7480 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -0.6855 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6014 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3464 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8985 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7054 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9604 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4084 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5214 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2665 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4595 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0925 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1624 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9694 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 7 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 PhF\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nPhF\n\n$$$$\n2-Fur\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 2-Fur\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \n2-Fur\n\n$$$$\nHis\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.8625 1.9393 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 2.3518 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.5679 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.6268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9804 -0.1554 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1554 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1018 0.6268 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 3.1768 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8625 3.5893 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 4 8 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 His\nM SAP 1 3 1 0 Al 9 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nBu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBu\n\n$$$$\nBt\n Mrv15c7 12111511552D \n\n 9 10 0 0 0 0 999 V2000\n 1.1387 -1.3654 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 1 9 1 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Bt\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBt\n\n$$$$\nBs\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Bs\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nBs\n\n$$$$\nNHn-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHn-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmNH\nM END\n> \nNHn-Am\n\n> \nn-AmNH\n\n$$$$\nPfp\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Pfp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nPfp\n\n$$$$\nBz\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Bz\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBz\n\n$$$$\nc-C6H11\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 c-C6H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C6H11\n\n$$$$\nBDArabif\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDArabif\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDArabif\n\n$$$$\nSta\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n -1.9393 -2.0250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9339 -1.1946 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.6464 -0.7821 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2214 -0.7875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2214 0.0375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -1.9339 0.4500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5036 0.4500 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.2143 0.0429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5036 1.2750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2143 1.6821 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9268 1.2696 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Sta\nM SAP 1 2 6 0 Al 10 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCO\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CO\nM SAP 1 2 1 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nCO\n\n$$$$\nBn\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Bn\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBn\n\n$$$$\nOn-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 On-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-PrO\nM END\n> \nOn-Pr\n\n> \nn-PrO\n\n$$$$\nBDArabip\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDArabip\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDArabip\n\n$$$$\nCN\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CN\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NC\nM END\n> \nCN\n\n> \nNC\n\n$$$$\nOSiEt3\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 3 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OSiEt3\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SiEt3O\nM END\n> \nOSiEt3\n\n> \nSiEt3O\n\n$$$$\nTMAH\n Mrv15c7 12111511552D \n\n 6 4 0 0 0 0 999 V2000\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM CHG 2 2 1 6 -1\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 TMAH\nM SDS EXP 1 1\nM END\n> \nTMAH\n\n$$$$\nCO2neo-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2neo-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmO2C\nM END\n> \nCO2neo-Am\n\n> \nneo-AmO2C\n\n$$$$\nCOCl\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COCl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ClCO\nM END\n> \nCOCl\n\n> \nClCO\n\n$$$$\nADArabip\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADArabip\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADArabip\n\n$$$$\nH2O2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 H2O2\nM SDS EXP 1 1\nM END\n> \nH2O2\n\n$$$$\nTec\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -4.5375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Tec\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nTec\n\n$$$$\ni-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 i-Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-Am\n\n$$$$\nCOOEt\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 COOEt\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtOOC\nM END\n> \nCOOEt\n\n> \nEtOOC\n\n$$$$\nLev\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Lev\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nLev\n\n$$$$\nLeu\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n -0.1929 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Leu\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADLyxof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADLyxof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADLyxof\n\n$$$$\nTcp\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Tcp\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nTcp\n\n$$$$\nCOCO\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.6500 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COCO\nM SAP 1 2 3 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nCOCO\n\n$$$$\nN3\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 N3\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nN3\n\n$$$$\nCOBr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COBr\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BrCO\nM END\n> \nCOBr\n\n> \nBrCO\n\n$$$$\nN2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 N2\nM SDS EXP 1 1\nM END\n> \nN2\n\n$$$$\nCOBu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuCO\nM END\n> \nCOBu\n\n> \nBuCO\n\n$$$$\nC23H47\n Mrv15c7 12111511552D \n\n 23 22 0 0 0 0 999 V2000\n 11.6605 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.3750 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.0895 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8039 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5184 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2329 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9474 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.6618 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.3763 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.0908 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.8052 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.5197 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.2342 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.9487 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.6631 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.3776 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.0921 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.8065 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.5210 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.2355 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.9499 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 26.6644 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.3789 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 C23H47\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H47C23\nM END\n> \nC23H47\n\n> \nH47C23\n\n$$$$\nHcy\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Hcy\nM SAP 1 3 1 0 Al 6 0 Br 5 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nMe\n Mrv15c7 12111511552D \n\n 1 0 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 1 1\nM SMT 1 Me\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMe\n\n$$$$\nCO2i-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2i-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmO2C\nM END\n> \nCO2i-Am\n\n> \ni-AmO2C\n\n$$$$\nADXylop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADXylop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADXylop\n\n$$$$\nEDC\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n -3.0493 1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3349 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6204 1.5395 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9059 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 EDC\nM SDS EXP 1 1\nM END\n> \nEDC\n\n$$$$\nNC\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NC\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CN\nM END\n> \nNC\n\n> \nCN\n\n$$$$\nCOOBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuOOC\nM END\n> \nCOOBu\n\n> \nBuOOC\n\n$$$$\nCO2n-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2n-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuO2C\nM END\n> \nCO2n-Bu\n\n> \nn-BuO2C\n\n$$$$\nPcb\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Pcb\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPcb\n\n$$$$\n4Abz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 4Abz\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \n4Abz\n\n$$$$\nneo-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 neo-C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nneo-C5H11\n\n$$$$\nADXylof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADXylof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADXylof\n\n$$$$\nMs\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Ms\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nMs\n\n$$$$\nO2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 O2\nM SDS EXP 1 1\nM END\n> \nO2\n\n$$$$\nNO\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NO\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ON\nM END\n> \nNO\n\n> \nON\n\n$$$$\nOK\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 OK\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KO\nM END\n> \nOK\n\n> \nKO\n\n$$$$\nXan\n Mrv15c7 12111511552D \n\n 14 16 0 0 0 0 999 V2000\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 2 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Xan\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nXan\n\n$$$$\nADLyxop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADLyxop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADLyxop\n\n$$$$\nCOOBn\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 COOBn\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnOOC\nM END\n> \nCOOBn\n\n> \nBnOOC\n\n$$$$\nTrisyl\n Mrv15c7 12111511552D \n\n 18 18 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 6 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 4 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\n 10 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 16 18 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Trisyl\nM SAP 1 1 16 0 1\nM SDS EXP 1 1\nM END\n> \nTrisyl\n\n$$$$\nDMAP\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DMAP\nM SDS EXP 1 1\nM END\n> \nDMAP\n\n$$$$\nSiEt3\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 SiEt3\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et3Si\nM END\n> \nSiEt3\n\n> \nEt3Si\n\n$$$$\nDdz\n Mrv15c7 12111511552D \n\n 16 16 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7309 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5559 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 7 10 2 0 0 0 0\n 3 10 1 0 0 0 0\n 5 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 11 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Ddz\nM SAP 1 1 15 0 1\nM SDS EXP 1 1\nM END\n> \nDdz\n\n$$$$\nNs\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Ns\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nNs\n\n$$$$\nDPIPS\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 5 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 DPIPS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDPIPS\n\n$$$$\nCO2n-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2n-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmO2C\nM END\n> \nCO2n-Am\n\n> \nn-AmO2C\n\n$$$$\nDSorbo\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DSorbo\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDSorbo\n\n$$$$\nMEM\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 MEM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMEM\n\n$$$$\nNp\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Np\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nNp\n\n$$$$\nHex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Hex\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nHex\n\n$$$$\nKMnO4\n Mrv15c7 12111511552D \n\n 6 4 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Mn 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 2 0 0 0 0\n 3 6 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 KMnO4\nM SDS EXP 1 1\nM END\n> \nKMnO4\n\n$$$$\nPbp\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Pbp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nPbp\n\n$$$$\nDRibul\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DRibul\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDRibul\n\n$$$$\nC3H7\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 C3H7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H7C3\nM END\n> \nC3H7\n\n> \nH7C3\n\n$$$$\ni-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 i-Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-Bu\n\n$$$$\nVal\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Val\nM SAP 1 2 5 0 Al 6 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nDIAD\n Mrv15c7 12111511552D \n\n 14 13 0 0 0 0 999 V2000\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 9 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 DIAD\nM SDS EXP 1 1\nM END\n> \nDIAD\n\n$$$$\nMe3N\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Me3N\nM SDS EXP 1 1\nM END\n> \nMe3N\n\n$$$$\nPbf\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 3.2789 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2789 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9934 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7079 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9934 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2789 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2789 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5645 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5645 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7798 1.0799 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2949 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6818 0.9645 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6818 -0.1395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7798 -0.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7079 -0.4125 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4223 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7079 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 11 14 1 0 0 0 0\n 8 14 1 0 0 0 0\n 5 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 15 17 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Pbf\nM SAP 1 1 15 0 1\nM SDS EXP 1 1\nM END\n> \nPbf\n\n$$$$\nDde\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Dde\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDde\n\n$$$$\nNHiAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHiAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmNH\nM END\n> \nNHiAm\n\n> \niAmNH\n\n$$$$\nOCN\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 OCN\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NCO\nM END\n> \nOCN\n\n> \nNCO\n\n$$$$\nOBn\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OBn\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnO\nM END\n> \nOBn\n\n> \nBnO\n\n$$$$\nc-C21H41\n Mrv15c7 12111511552D \n\n 21 21 0 0 0 0 999 V2000\n 3.3596 2.4353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9899 2.9676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6909 2.5327 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4939 1.7315 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8853 0.9180 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4504 0.2170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8400 -0.5102 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4050 -1.2112 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7947 -1.9384 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3597 -2.6395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5351 -2.6133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1002 -3.3143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2756 -3.2882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8860 -2.5610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3209 -1.8599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9313 -1.1328 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3662 -0.4317 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9766 0.2955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4115 0.9965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0219 1.7237 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4569 2.4247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 1 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 c-C21H41\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C21H41\n\n$$$$\nDTagat\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DTagat\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDTagat\n\n$$$$\nc-C25H49\n Mrv15c7 12111511552D \n\n 25 25 0 0 0 0 999 V2000\n 4.0795 3.1622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7073 3.6974 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4104 3.2657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2171 2.4637 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6122 1.6520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1806 0.9490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5736 0.2236 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1419 -0.4795 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5349 -1.2048 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1032 -1.9079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4962 -2.6333 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0645 -3.3363 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2398 -3.3140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8081 -4.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9834 -3.9947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5904 -3.2693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0221 -2.5662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6291 -1.8409 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0608 -1.1378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6678 -0.4124 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0995 0.2906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7065 1.0160 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1382 1.7190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7452 2.4444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1769 3.1474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\n 1 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 c-C25H49\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C25H49\n\n$$$$\nI2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 I2\nM SDS EXP 1 1\nM END\n> \nI2\n\n$$$$\nOTIPS\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.5230 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 4 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 OTIPS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TIPSO\nM END\n> \nOTIPS\n\n> \nTIPSO\n\n$$$$\nCO2tAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2tAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmO2C\nM END\n> \nCO2tAm\n\n> \ntAmO2C\n\n$$$$\nPac\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Pac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPac\n\n$$$$\nOH2+\n Mrv15c7 12111511552D \n\n 1 0 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 O 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 1 1 1\nM STY 1 1 SUP\nM SAL 1 1 1\nM SMT 1 OH2+\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 +H2O\nM END\n> \nOH2+\n\n> \n+H2O\n\n$$$$\nOneoAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OneoAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmO\nM END\n> \nOneoAm\n\n> \nneoAmO\n\n$$$$\nCPh3\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 CPh3\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Ph3C\nM END\n> \nCPh3\n\n> \nPh3C\n\n$$$$\nPal\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n 7.9480 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.6625 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.3770 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0914 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.8059 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.5204 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.2349 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.9493 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6638 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3783 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0927 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.8072 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.5217 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.2362 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.9506 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6651 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3796 5.4138 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Pal\nM SAP 1 1 16 0 1\nM SDS EXP 1 1\nM END\n> \nPal\n\n$$$$\nAc2O\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Ac2O\nM SDS EXP 1 1\nM END\n> \nAc2O\n\n$$$$\nBDLyxop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDLyxop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDLyxop\n\n$$$$\nNHt-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHt-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuNH\nM END\n> \nNHt-Bu\n\n> \nt-BuNH\n\n$$$$\nOAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmO\nM END\n> \nOAm\n\n> \nAmO\n\n$$$$\n2ClZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 2ClZ\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \n2ClZ\n\n$$$$\nXaa\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 R 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Xaa\nM SAP 1 2 1 0 Al 4 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nOi-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Oi-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmO\nM END\n> \nOi-Am\n\n> \ni-AmO\n\n$$$$\nBDLyxof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDLyxof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDLyxof\n\n$$$$\nOAc\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OAc\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AcO\nM END\n> \nOAc\n\n> \nAcO\n\n$$$$\nOTos\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 OTos\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TosO\nM END\n> \nOTos\n\n> \nTosO\n\n$$$$\nMCA\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 7 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 12 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 6 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 3 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 MCA\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMCA\n\n$$$$\nDan\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 4 13 1 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 14 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dan\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nDan\n\n$$$$\nIm\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Im\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nIm\n\n$$$$\nBam\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Bam\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBam\n\n$$$$\nFarnesyl\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 6.1875 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7750 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5375 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Farnesyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nFarnesyl\n\n$$$$\nc-C24H47\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 3.5724 2.7715 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0594 3.4374 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8796 3.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2128 2.5939 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7258 1.9279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0590 1.1732 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5720 0.5073 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9052 -0.2474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4182 -0.9133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7514 -1.6681 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2644 -2.3340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5976 -3.0887 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1106 -3.7546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2904 -3.6658 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9572 -2.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1370 -2.8223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8038 -2.0676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2908 -1.4017 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9576 -0.6470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4446 0.0190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1114 0.7737 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5984 1.4396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2651 2.1943 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7521 2.8602 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 1 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 c-C24H47\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C24H47\n\n$$$$\nDRibos\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DRibos\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDRibos\n\n$$$$\nCO2tBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2tBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuO2C\nM END\n> \nCO2tBu\n\n> \ntBuO2C\n\n$$$$\nCO2i-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2i-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-BuO2C\nM END\n> \nCO2i-Bu\n\n> \ni-BuO2C\n\n$$$$\nt-Butyl\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 t-Butyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nt-Butyl\n\n$$$$\nDErythu\n Mrv15c7 12111511552D \n\n 8 7 0 0 1 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DErythu\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDErythu\n\n$$$$\nCOOn-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOn-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmOOC\nM END\n> \nCOOn-Am\n\n> \nn-AmOOC\n\n$$$$\nDEryth\n Mrv15c7 12111511552D \n\n 8 7 0 0 1 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.9520 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DEryth\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDEryth\n\n$$$$\nIBX\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n 0.4243 -1.7779 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -1.3654 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4743 -2.1191 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8838 0.7541 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 2 12 1 0 0 0 0\n 7 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 IBX\nM SDS EXP 1 1\nM END\n> \nIBX\n\n$$$$\nCONEt2\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CONEt2\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et2NCO\nM END\n> \nCONEt2\n\n> \nEt2NCO\n\n$$$$\nOTre\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OTre\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TreO\nM END\n> \nOTre\n\n> \nTreO\n\n$$$$\nt-C6H13\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 t-C6H13\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nt-C6H13\n\n$$$$\nCOsBu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COsBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 sBuCO\nM END\n> \nCOsBu\n\n> \nsBuCO\n\n$$$$\nCOCF3\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COCF3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CF3CO\nM END\n> \nCOCF3\n\n> \nCF3CO\n\n$$$$\nCOOneo-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOneo-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmOOC\nM END\n> \nCOOneo-Am\n\n> \nneo-AmOOC\n\n$$$$\nDdiv\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 6 14 1 0 0 0 0\n 14 15 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Ddiv\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDdiv\n\n$$$$\nTBAF\n Mrv15c7 12111511552D \n\n 18 16 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 F 0 5 0 0 0 0 0 0 0 0 0 0\n 3.4032 2.7692 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 2.3567 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 1.5317 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 1.1192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 0.2942 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 4.8321 -0.5308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 -0.9433 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 -1.7683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 -2.1808 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0071 0.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5946 -0.4203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7696 -0.4203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3571 0.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6571 0.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0696 -0.4203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6571 -1.1347 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 -1.1347 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 6 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\nM CHG 2 1 -1 6 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 TBAF\nM SDS EXP 1 1\nM END\n> \nTBAF\n\n$$$$\nTFMSA\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.6500 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 1 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 2 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 TFMSA\nM SDS EXP 1 1\nM END\n> \nTFMSA\n\n$$$$\ncHx\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 cHx\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncHx\n\n$$$$\nEDCI\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n -3.0493 1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3349 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6204 1.5395 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9059 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 EDCI\nM SDS EXP 1 1\nM END\n> \nEDCI\n\n$$$$\nster\n Mrv15c7 12111511552D \n\n 17 20 0 0 0 0 999 V2000\n 2.8390 -1.6970 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0683 -2.4895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8928 -2.5163 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4247 -3.1470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2368 -3.0018 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5171 -2.2259 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9853 -1.5952 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2655 -0.8192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0777 -0.6740 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.6095 -1.3047 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.4216 -1.1595 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9534 -1.7902 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.6731 -2.5662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.8610 -2.7114 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3292 -2.0807 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1731 -1.7404 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5218 -1.2340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 6 15 1 0 0 0 0\n 10 15 1 0 0 0 0\n 7 16 1 0 0 0 0\n 3 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 1 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 ster\nM SDS EXP 1 1\nM END\n> \nster\n\n$$$$\nDIEA\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DIEA\nM SDS EXP 1 1\nM END\n> \nDIEA\n\n$$$$\nMOM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MOM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMOM\n\n$$$$\nSiMe3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SiMe3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me3Si\nM END\n> \nSiMe3\n\n> \nMe3Si\n\n$$$$\nTosyl\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tosyl\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTosyl\n\n$$$$\ns-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 s-Am\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-Am\n\n$$$$\nCOONa\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COONa\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaOOC\nM END\n> \nCOONa\n\n> \nNaOOC\n\n$$$$\nHSO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 1 3 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 HSO4\nM SDS EXP 1 1\nM END\n> \nHSO4\n\n$$$$\nDmnb\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 8 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\n 3 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Dmnb\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \nDmnb\n\n$$$$\nCOOn-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOn-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuOOC\nM END\n> \nCOOn-Bu\n\n> \nn-BuOOC\n\n$$$$\nCBr3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CBr3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Br3C\nM END\n> \nCBr3\n\n> \nBr3C\n\n$$$$\nDXylos\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DXylos\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDXylos\n\n$$$$\n4-OMe-Bz\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 3 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 4-OMe-Bz\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \n4-OMe-Bz\n\n$$$$\nEDANS\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0329 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6829 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 5 14 1 0 0 0 0\n 10 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 15 17 2 0 0 0 0\n 15 18 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 EDANS\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nEDANS\n\n$$$$\nCOtBu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COtBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuCO\nM END\n> \nCOtBu\n\n> \ntBuCO\n\n$$$$\nHMPA\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 HMPA\nM SDS EXP 1 1\nM END\n> \nHMPA\n\n$$$$\nTs\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ts\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTs\n\n$$$$\nTMP\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.1067 4.7652 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6078 4.3527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6078 3.5277 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 3.1152 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 2.2902 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.6548 1.8053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9097 1.0206 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.4248 0.3532 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.7347 1.0206 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -2.2197 0.3532 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8841 -0.4005 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3690 -1.0679 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8539 -1.7354 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.7016 -1.5528 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.0365 -0.5830 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9897 1.8053 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0367 3.5277 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.7512 3.1152 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0367 4.3527 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 4.7652 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 5.5902 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 5 4 1 1 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 12 14 1 0 0 0 0\n 12 15 2 0 0 0 0\n 9 16 1 0 0 0 0\n 5 16 1 0 0 0 0\n 4 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 17 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 2 20 1 0 0 0 0\n 20 21 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 TMP\nM SDS EXP 1 1\nM END\n> \nTMP\n\n$$$$\nTMT\n Mrv15c7 12111511552D \n\n 25 27 0 0 0 0 999 V2000\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -3.5724 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.5724 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 13 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 10 17 1 0 0 0 0\n 9 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 21 24 1 0 0 0 0\n 24 25 2 0 0 0 0\n 18 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 TMT\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nTMT\n\n$$$$\nTMS\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 TMS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nTMS\n\n$$$$\nm-Phenylene\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.0000 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 m-Phenylene\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nm-Phenylene\n\n$$$$\nTf\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.6500 1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Tf\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTf\n\n$$$$\nAac\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Aac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAac\n\n$$$$\nDmoc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Dmoc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDmoc\n\n$$$$\nNva\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1929 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Nva\nM SAP 1 2 5 0 Al 6 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nN+Me3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM CHG 1 2 1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 N+Me3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me3N+\nM END\n> \nN+Me3\n\n> \nMe3N+\n\n$$$$\nCOOMe\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COOMe\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeOOC\nM END\n> \nCOOMe\n\n> \nMeOOC\n\n$$$$\nSu\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Su\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nSu\n\n$$$$\nAbu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Abu\nM SAP 1 2 4 0 Al 5 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nC5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H11C5\nM END\n> \nC5H11\n\n> \nH11C5\n\n$$$$\nCl2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Cl2\nM SDS EXP 1 1\nM END\n> \nCl2\n\n$$$$\nNaph\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Naph\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nNaph\n\n$$$$\nAbz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Abz\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nAbz\n\n$$$$\nAMCA\n Mrv15c7 12111511552D \n\n 15 16 0 0 0 0 999 V2000\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 2 15 1 0 0 0 0\n 9 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 AMCA\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nAMCA\n\n$$$$\nDMF\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 DMF\nM SDS EXP 1 1\nM END\n> \nDMF\n\n$$$$\nDME\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DME\nM SDS EXP 1 1\nM END\n> \nDME\n\n$$$$\nOSu\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0198 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OSu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SuO\nM END\n> \nOSu\n\n> \nSuO\n\n$$$$\nDMA\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DMA\nM SDS EXP 1 1\nM END\n> \nDMA\n\n$$$$\nAcN\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 AcN\nM SDS EXP 1 1\nM END\n> \nAcN\n\n$$$$\nMMT\n Mrv15c7 12111511552D \n\n 21 23 0 0 0 0 999 V2000\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 MMT\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMMT\n\n$$$$\nBiotinyl\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n -3.8821 0.6357 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n -3.3301 0.0226 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -2.9176 0.7371 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1106 0.5655 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0244 -0.2549 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -1.3099 -0.6674 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5955 -0.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1190 -0.6674 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8335 -0.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5480 -0.6674 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2624 -0.2549 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.7781 -0.5905 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -2.2260 -1.2036 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n -3.1906 -1.3050 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -3.9975 -1.1334 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -4.6106 -1.6855 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -4.0838 -0.3130 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 5 12 1 0 0 0 0\n 2 12 1 0 0 0 0\n 12 13 1 6 0 0 0\n 12 14 1 1 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 15 17 1 0 0 0 0\n 2 17 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Biotinyl\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nBiotinyl\n\n$$$$\nc-C12H23\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 1 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 c-C12H23\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C12H23\n\n$$$$\nDMS\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 DMS\nM SDS EXP 1 1\nM END\n> \nDMS\n\n$$$$\nDMT\n Mrv15c7 12111511552D \n\n 23 25 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 19 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 16 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 DMT\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDMT\n\n$$$$\nOTf\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTf\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TfO\nM END\n> \nOTf\n\n> \nTfO\n\n$$$$\nOTs\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 OTs\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TsO\nM END\n> \nOTs\n\n> \nTsO\n\n$$$$\nEsc\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 4.5375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -2.2539 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 2 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Esc\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nEsc\n\n$$$$\nC4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H9C4\nM END\n> \nC4H9\n\n> \nH9C4\n\n$$$$\nAcm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Acm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAcm\n\n$$$$\nSs-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ss-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmS\nM END\n> \nSs-Am\n\n> \ns-AmS\n\n$$$$\nTHP\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 THP\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nTHP\n\n$$$$\nMTBE\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 MTBE\nM SDS EXP 1 1\nM END\n> \nMTBE\n\n$$$$\ncyclobutyl\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 cyclobutyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclobutyl\n\n$$$$\nCONMe2\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CONMe2\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me2NCO\nM END\n> \nCONMe2\n\n> \nMe2NCO\n\n$$$$\nn-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 n-C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C5H11\n\n$$$$\nTHF\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 THF\nM SDS EXP 1 1\nM END\n> \nTHF\n\n$$$$\nCH2CH2Ph\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CH2CH2Ph\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhCh2CH2\nM END\n> \nCH2CH2Ph\n\n> \nPhCh2CH2\n\n$$$$\nPv\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Pv\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPv\n\n$$$$\nPr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Pr\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPr\n\n$$$$\n2BrZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 2BrZ\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \n2BrZ\n\n$$$$\nSer\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4304 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ser\nM SAP 1 3 1 0 Al 5 0 Br 4 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nAde\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 2.7600 -1.7201 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0673 -1.2720 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3329 -1.6479 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1208 -2.4452 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2970 -2.4898 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.7201 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6402 -1.1998 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6819 -0.3759 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4163 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1090 -0.4481 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 2 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ade\nM SAP 1 2 6 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nAde\n\n$$$$\nNHs-Bu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHs-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuNH\nM END\n> \nNHs-Bu\n\n> \ns-BuNH\n\n$$$$\nDGalac\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DGalac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDGalac\n\n$$$$\nPy\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Py\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPy\n\n$$$$\nGua\n Mrv15c7 12111511552D \n\n 11 12 0 0 0 0 999 V2000\n 3.4524 -2.3946 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7168 -2.0211 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0255 -2.4714 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2899 -2.0979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2455 -1.2741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4484 -1.0617 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.7542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5201 -2.3946 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9368 -0.8238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8925 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6724 -1.1973 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 4 8 1 0 0 0 0\n 5 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Gua\nM SAP 1 2 8 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nGua\n\n$$$$\nSO2Ph\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 SO2Ph\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhSO2\nM END\n> \nSO2Ph\n\n> \nPhSO2\n\n$$$$\nC24H49\n Mrv15c7 12111511552D \n\n 24 23 0 0 0 0 999 V2000\n 10.9461 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.6605 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.3750 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.0895 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8039 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5184 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2329 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9474 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.6618 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.3763 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.0908 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.8052 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.5197 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.2342 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.9487 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.6631 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.3776 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.0921 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.8065 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.5210 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.2355 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.9499 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 26.6644 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.3789 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 C24H49\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H49C24\nM END\n> \nC24H49\n\n> \nH49C24\n\n$$$$\nAlloc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Alloc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nAlloc\n\n$$$$\nCOOPr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COOPr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrOOC\nM END\n> \nCOOPr\n\n> \nPrOOC\n\n$$$$\nCONH2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 CONH2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NH2CO\nM END\n> \nCONH2\n\n> \nNH2CO\n\n$$$$\nPh\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ph\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPh\n\n$$$$\nc-C14H27\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 1.7862 0.8851 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3263 1.5088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 1.3529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4064 0.5733 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8664 -0.0503 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 -0.8299 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5963 -1.4535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7862 -1.2976 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2461 -1.9213 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 -1.7654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1659 -0.9858 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7060 -0.3622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 0.4174 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9760 1.0410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 1 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 c-C14H27\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C14H27\n\n$$$$\nPyl\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 1.6071 -1.6768 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9911 -1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.1875 -1.2964 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2250 -0.5786 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3268 0.0321 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0768 -0.3000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.7946 0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7946 0.9375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5071 -0.3000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2196 0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9375 -0.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6500 0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3625 -0.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0804 0.1125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 6.0804 0.9375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.7929 -0.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.5107 0.1125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 1 1 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 6 0 0 0\n 14 16 1 0 0 0 0\n 16 17 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Pyl\nM SAP 1 2 15 0 Al 16 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nn-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 n-C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C4H9\n\n$$$$\nCO2iPr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2iPr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrO2C\nM END\n> \nCO2iPr\n\n> \niPrO2C\n\n$$$$\nDansyl\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 4 13 1 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 14 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dansyl\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nDansyl\n\n$$$$\nAlCl3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Al 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 AlCl3\nM SDS EXP 1 1\nM END\n> \nAlCl3\n\n$$$$\nDHP\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DHP\nM SDS EXP 1 1\nM END\n> \nDHP\n\n$$$$\nOiPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrO\nM END\n> \nOiPr\n\n> \niPrO\n\n$$$$\nPOCl3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 POCl3\nM SDS EXP 1 1\nM END\n> \nPOCl3\n\n$$$$\nNaNO2\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NaNO2\nM SDS EXP 1 1\nM END\n> \nNaNO2\n\n$$$$\nNaNO3\n Mrv15c7 12111511552D \n\n 5 3 0 0 0 0 999 V2000\n 1.6500 1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 2 0 0 0 0\nM CHG 4 1 1 2 -1 3 1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NaNO3\nM SDS EXP 1 1\nM END\n> \nNaNO3\n\n$$$$\nTFE\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 TFE\nM SDS EXP 1 1\nM END\n> \nTFE\n\n$$$$\nCOOPh\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 COOPh\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhOOC\nM END\n> \nCOOPh\n\n> \nPhOOC\n\n$$$$\nDIC\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.8875 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DIC\nM SDS EXP 1 1\nM END\n> \nDIC\n\n$$$$\nNpys\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 4 10 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Npys\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nNpys\n\n$$$$\nSs-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Ss-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuS\nM END\n> \nSs-Bu\n\n> \ns-BuS\n\n$$$$\nTES\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TES\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nTES\n\n$$$$\nSK\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SK\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KS\nM END\n> \nSK\n\n> \nKS\n\n$$$$\nSec\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4304 0.0000 Se 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Sec\nM SAP 1 3 1 0 Al 5 0 Br 4 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCOEt\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COEt\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtCO\nM END\n> \nCOEt\n\n> \nEtCO\n\n$$$$\nIndole\n Mrv15c7 12111511552D \n\n 9 10 0 0 0 0 999 V2000\n -0.1435 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6284 -0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1435 -1.3654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Indole\nM SDS EXP 1 1\nM END\n> \nIndole\n\n$$$$\nNHs-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHs-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmNH\nM END\n> \nNHs-Am\n\n> \ns-AmNH\n\n$$$$\nCOOtAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOtAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmOOC\nM END\n> \nCOOtAm\n\n> \ntAmOOC\n\n$$$$\nOMs\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OMs\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MsO\nM END\n> \nOMs\n\n> \nMsO\n\n$$$$\nC12H25\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 3.5211 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2355 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6645 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3789 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0934 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8079 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5224 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2368 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9513 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6658 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3802 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 C12H25\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H25C12\nM END\n> \nC12H25\n\n> \nH25C12\n\n$$$$\nKOH\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 KOH\nM SDS EXP 1 1\nM END\n> \nKOH\n\n$$$$\ni-Pr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 i-Pr\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ni-Pr\n\n$$$$\nSO2Cl\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SO2Cl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ClSO2\nM END\n> \nSO2Cl\n\n> \nClSO2\n\n$$$$\ntAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 tAm\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \ntAm\n\n$$$$\nt-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 t-Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nt-Bu\n\n$$$$\nCOSH\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COSH\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HSCO\nM END\n> \nCOSH\n\n> \nHSCO\n\n$$$$\nNle\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7625 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Nle\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nOMe\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 OMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeO\nM END\n> \nOMe\n\n> \nMeO\n\n$$$$\nCpm\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.2382 1.7138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Cpm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCpm\n\n$$$$\nTcboc\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tcboc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTcboc\n\n$$$$\nUra\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 6 8 1 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Ura\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nUra\n\n$$$$\nBenzyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Benzyl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBenzyl\n\n$$$$\nONp\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\nM CHG 2 8 1 9 -1\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ONp\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NpO\nM END\n> \nONp\n\n> \nNpO\n\n$$$$\nSneoAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 SneoAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmS\nM END\n> \nSneoAm\n\n> \nneoAmS\n\n$$$$\nONa\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 ONa\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaO\nM END\n> \nONa\n\n> \nNaO\n\n$$$$\ni-C3H7\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 i-C3H7\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ni-C3H7\n\n$$$$\ntBu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 tBu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ntBu\n\n$$$$\nBDEryth\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 BDEryth\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDEryth\n\n$$$$\nMDPS\n Mrv15c7 12111511552D \n\n 14 15 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 9 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 MDPS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nMDPS\n\n$$$$\nBhoc\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 4 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 11 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Bhoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBhoc\n\n$$$$\nCO2n-Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2n-Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-PrO2C\nM END\n> \nCO2n-Pr\n\n> \nn-PrO2C\n\n$$$$\nt-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 t-Am\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nt-Am\n\n$$$$\nPro\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n -0.1446 2.3518 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2375 0.6268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9804 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1554 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1018 0.6268 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Pro\nM SAP 1 2 7 0 Al 2 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nAcet\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Acet\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAcet\n\n$$$$\nEtOH\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 EtOH\nM SDS EXP 1 1\nM END\n> \nEtOH\n\n$$$$\nOMe3Si\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OMe3Si\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SiMe3O\nM END\n> \nOMe3Si\n\n> \nSiMe3O\n\n$$$$\nTIPS\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 TIPS\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nTIPS\n\n$$$$\nBDGulos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDGulos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDGulos\n\n$$$$\nCOPh\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COPh\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhCO\nM END\n> \nCOPh\n\n> \nPhCO\n\n$$$$\nBDGluco\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDGluco\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDGluco\n\n$$$$\nCOPr\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 COPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrCO\nM END\n> \nCOPr\n\n> \nPrCO\n\n$$$$\nH3PO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 H3PO4\nM SDS EXP 1 1\nM END\n> \nH3PO4\n\n$$$$\nNMe2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NMe2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me2N\nM END\n> \nNMe2\n\n> \nMe2N\n\n$$$$\n4BrZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 2 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 4BrZ\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n4BrZ\n\n$$$$\nDPsico\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DPsico\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDPsico\n\n$$$$\ns-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 s-C5H11\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-C5H11\n\n$$$$\nBDXylof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDXylof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDXylof\n\n$$$$\nC6H5\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 C6H5\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nC6H5\n\n$$$$\nAla\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 6 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Ala\nM SAP 1 2 3 0 Al 4 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nOLi\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Li 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 OLi\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 LiO\nM END\n> \nOLi\n\n> \nLiO\n\n$$$$\nCO2iBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2iBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iBuO2C\nM END\n> \nCO2iBu\n\n> \niBuO2C\n\n$$$$\nC7H15\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 C7H15\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H15C7\nM END\n> \nC7H15\n\n> \nH15C7\n\n$$$$\nBDXylop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDXylop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDXylop\n\n$$$$\nMTM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MTM\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nMTM\n\n$$$$\nc-C17H33\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 2.6371 1.7025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2708 2.2308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9690 1.7914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7669 0.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1531 0.1755 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7137 -0.5227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0987 -1.2524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 -1.9507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8348 -1.9192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3954 -2.6175 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5710 -2.5860 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1860 -1.8564 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6255 -1.1581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2405 -0.4285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6799 0.2698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2949 0.9994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7343 1.6977 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 1 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 c-C17H33\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C17H33\n\n$$$$\nHClO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 HClO4\nM SDS EXP 1 1\nM END\n> \nHClO4\n\n$$$$\nAMP\n Mrv15c7 12111511552D \n\n 23 25 0 0 1 0 999 V2000\n 0.7145 -1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7846 -0.2549 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2695 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7846 1.0799 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.0396 1.8646 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -1.8242 2.1195 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8242 2.9445 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -2.4916 3.4294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4054 4.2499 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.0728 4.7348 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -3.7403 5.2197 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.5879 5.4023 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.5577 4.0674 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.0396 3.1994 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7846 3.9841 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5546 2.5320 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.2704 2.5320 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 7 6 1 6 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 12 14 1 0 0 0 0\n 12 15 2 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 1 1 0 0 0\n 16 18 1 0 0 0 0\n 7 18 1 0 0 0 0\n 18 19 1 1 0 0 0\n 6 20 1 0 0 0 0\n 3 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 2 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 AMP\nM SDS EXP 1 1\nM END\n> \nAMP\n\n$$$$\nAll\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 All\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAll\n\n$$$$\nNps\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Nps\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nNps\n\n$$$$\ns-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 s-C4H9\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-C4H9\n\n$$$$\nCO2iAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2iAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmO2C\nM END\n> \nCO2iAm\n\n> \niAmO2C\n\n$$$$\nOs-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Os-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuO\nM END\n> \nOs-Bu\n\n> \ns-BuO\n\n$$$$\nMSM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MSM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMSM\n\n$$$$\nCOOK\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COOK\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KOOC\nM END\n> \nCOOK\n\n> \nKOOC\n\n$$$$\nCOOH\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COOH\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HOOC\nM END\n> \nCOOH\n\n> \nHOOC\n\n$$$$\nNpe\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\nM CHG 2 9 1 10 -1\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Npe\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nNpe\n\n$$$$\nCOiPr\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 COiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrCO\nM END\n> \nCOiPr\n\n> \niPrCO\n\n$$$$\nDNPS\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 4 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 2 0 0 0 0\nM CHG 4 1 -1 2 1 11 1 12 -1\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 DNPS\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nDNPS\n\n$$$$\nTPP\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM CHG 1 7 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 TPP\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTPP\n\n$$$$\nHippuryl\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Hippuryl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nHippuryl\n\n$$$$\ncycloheptyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.8566 1.3632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5999 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7834 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2691 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4441 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0703 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1133 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 1 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 cycloheptyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncycloheptyl\n\n$$$$\nC16\n Mrv15c7 12111511552D \n\n 16 15 0 0 0 0 999 V2000\n 0.0000 -0.3847 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7298 -0.7694 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4279 -0.3298 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1577 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8558 -0.2748 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5856 -0.6595 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2837 -0.2198 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0135 -0.6046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7115 -0.1649 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4413 -0.5496 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1394 -0.1099 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8692 -0.4946 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5673 -0.0550 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2971 -0.4397 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9952 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7250 -0.3847 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 C16\nM SAP 1 2 1 0 1 16 0 2\nM SDS EXP 1 1\nM END\n> \nC16\n\n$$$$\nC17\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 C17\nM SAP 1 2 1 0 1 17 0 2\nM SDS EXP 1 1\nM END\n> \nC17\n\n$$$$\nC18\n Mrv15c7 12111511552D \n\n 18 17 0 0 0 0 999 V2000\n 0.0000 -0.3880 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7281 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4281 -0.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1562 -0.0485 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8562 -0.4850 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5843 -0.0970 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2844 -0.5335 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0124 -0.1455 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7125 -0.5820 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4405 -0.1940 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1406 -0.6305 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8687 -0.2425 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5687 -0.6790 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2968 -0.2910 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9968 -0.7275 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7249 -0.3395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4249 -0.7760 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1530 -0.3880 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 C18\nM SAP 1 2 1 0 1 18 0 2\nM SDS EXP 1 1\nM END\n> \nC18\n\n$$$$\nC19\n Mrv15c7 12111511552D \n\n 19 18 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 C19\nM SAP 1 2 1 0 1 19 0 2\nM SDS EXP 1 1\nM END\n> \nC19\n\n$$$$\nCoA\n Mrv15c7 12111511552D \n\n 48 50 0 0 1 0 999 V2000\n 5.9065 -7.4227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3190 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.7315 -5.9937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6045 -6.2957 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8900 -6.7082 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1755 -6.2957 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7630 -7.0102 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5880 -5.5812 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4611 -5.8832 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7466 -6.2957 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1591 -7.0102 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3341 -5.5812 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0321 -6.7082 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3177 -6.2957 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6032 -6.7082 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.5169 -7.5287 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2900 -7.7002 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7025 -6.9857 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -1.5230 -6.8995 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1505 -6.3727 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3220 -5.5657 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2911 -5.0136 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8431 -5.6267 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2610 -4.4006 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9042 -4.4616 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6256 -8.4539 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2131 -9.1684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7651 -9.7815 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.5188 -9.4459 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.2725 -9.7815 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3587 -10.6019 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -2.9399 -9.2965 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8537 -8.4761 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1000 -8.1405 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4326 -8.6254 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0334 -7.1207 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 7.0334 -7.9457 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 7.7479 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.7479 -5.8832 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 8.4624 -7.1207 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 9.1768 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.8913 -7.1207 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6058 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6058 -5.8832 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3202 -7.1207 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 12.0347 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.7492 -7.1207 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.4637 -6.7082 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 2 0 0 0 0\n 10 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 15 14 1 1 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 6 0 0 0\n 18 20 1 0 0 0 0\n 15 20 1 0 0 0 0\n 20 21 1 6 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\n 22 25 2 0 0 0 0\n 17 26 1 1 0 0 0\n 26 27 1 0 0 0 0\n 27 28 2 0 0 0 0\n 28 29 1 0 0 0 0\n 29 30 2 0 0 0 0\n 30 31 1 0 0 0 0\n 30 32 1 0 0 0 0\n 32 33 2 0 0 0 0\n 33 34 1 0 0 0 0\n 34 35 2 0 0 0 0\n 26 35 1 0 0 0 0\n 29 35 1 0 0 0 0\n 2 36 1 0 0 0 0\n 36 37 1 6 0 0 0\n 36 38 1 0 0 0 0\n 38 39 2 0 0 0 0\n 38 40 1 0 0 0 0\n 40 41 1 0 0 0 0\n 41 42 1 0 0 0 0\n 42 43 1 0 0 0 0\n 43 44 2 0 0 0 0\n 43 45 1 0 0 0 0\n 45 46 1 0 0 0 0\n 46 47 1 0 0 0 0\n 47 48 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 15 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45\nM SAL 1 3 46 47 48\nM SMT 1 CoA\nM SAP 1 1 48 0 1\nM SDS EXP 1 1\nM END\n> \nCoA\n\n$$$$\ntHex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 tHex\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \ntHex\n\n$$$$\nGln\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Gln\nM SAP 1 3 1 0 Al 8 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nC10\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -0.3659 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7394 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4260 -0.4574 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1654 -0.0915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8520 -0.5489 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5914 -0.1830 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2780 -0.6404 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0174 -0.2744 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7040 -0.7318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4435 -0.3659 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 C10\nM SAP 1 2 1 0 1 10 0 2\nM SDS EXP 1 1\nM END\n> \nC10\n\n$$$$\nGlp\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 1.2804 2.3518 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2375 0.6268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9804 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1554 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3321 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1018 0.6268 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 6 8 1 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Glp\nM SAP 1 2 8 0 Al 1 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nBOP\n Mrv15c7 12111511552D \n\n 27 27 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4792 -1.6610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7342 -0.8764 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 -0.2633 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5411 -0.7049 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 5.3481 -0.5334 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6031 0.2513 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1181 0.9187 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6031 1.5861 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3877 1.3312 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1022 1.7437 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8166 1.3312 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8166 0.5062 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1022 0.0937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3877 0.5062 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7127 -1.5119 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4973 -1.7668 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0996 -2.0639 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3696 0.1021 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9827 0.6541 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5850 0.3570 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 13 21 1 0 0 0 0\n 16 21 1 0 0 0 0\n 11 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\n 11 25 1 0 0 0 0\n 25 26 1 0 0 0 0\n 25 27 1 0 0 0 0\nM CHG 2 2 -1 11 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 12 16 17 18 19 20 21 22 23 24 25 26 27\nM SMT 1 BOP\nM SDS EXP 1 1\nM END\n> \nBOP\n\n$$$$\nC11\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 C11\nM SAP 1 2 1 0 1 11 0 2\nM SDS EXP 1 1\nM END\n> \nC11\n\n$$$$\nOi-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Oi-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrO\nM END\n> \nOi-Pr\n\n> \ni-PrO\n\n$$$$\nC12\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 0.0000 -0.3745 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7351 -0.7490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4270 -0.2996 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1621 -0.6741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8540 -0.2247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5891 -0.5992 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2809 -0.1498 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0160 -0.5243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7079 -0.0749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4430 -0.4494 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1349 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8700 -0.3745 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 C12\nM SAP 1 2 1 0 1 12 0 2\nM SDS EXP 1 1\nM END\n> \nC12\n\n$$$$\nC13\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 C13\nM SAP 1 2 1 0 1 13 0 2\nM SDS EXP 1 1\nM END\n> \nC13\n\n$$$$\nC14\n Mrv15c7 12111511552D \n\n 14 13 0 0 0 0 999 V2000\n 0.0000 -0.3804 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7321 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4275 -0.4438 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1596 -0.0634 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8551 -0.5072 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5871 -0.1268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2826 -0.5706 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0147 -0.1902 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7101 -0.6340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4422 -0.2536 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1377 -0.6974 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8697 -0.3170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5652 -0.7608 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2973 -0.3804 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 C14\nM SAP 1 2 1 0 1 14 0 2\nM SDS EXP 1 1\nM END\n> \nC14\n\n$$$$\nC20H41\n Mrv15c7 12111511552D \n\n 20 19 0 0 0 0 999 V2000\n 8.4711 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.1855 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9000 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6145 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3289 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.0434 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.7579 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.4724 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.1868 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.9013 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.6158 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.3302 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.0447 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.7592 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.4737 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.1881 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.9026 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.6171 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.3315 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.0460 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 C20H41\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H41C20\nM END\n> \nC20H41\n\n> \nH41C20\n\n$$$$\nC15\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 C15\nM SAP 1 2 1 0 1 15 0 2\nM SDS EXP 1 1\nM END\n> \nC15\n\n$$$$\nGlu\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Glu\nM SAP 1 3 1 0 Al 8 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nGlx\n Mrv15c7 12111511552D \n\n 9 8 1 0 0 0 999 V2000\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 L 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 6 F 2 7 8\nM ALS 6 2 F N O \nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Glx\nM SAP 1 2 1 0 Al 8 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADTagat\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADTagat\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADTagat\n\n$$$$\nGly\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Gly\nM SAP 1 2 1 0 Al 3 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nDXylul\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DXylul\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDXylul\n\n$$$$\nCH2CH3\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CH2CH3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CH3CH2\nM END\n> \nCH2CH3\n\n> \nCH3CH2\n\n$$$$\no-Phenylene\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 o-Phenylene\nM SAP 1 2 2 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \no-Phenylene\n\n$$$$\nADAltro\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADAltro\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADAltro\n\n$$$$\nCOOiPr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COOiPr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrOOC\nM END\n> \nCOOiPr\n\n> \niPrOOC\n\n$$$$\nC25\n Mrv15c7 12111511552D \n\n 25 24 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5749 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2894 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0039 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7184 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.4328 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.1473 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 C25\nM SAP 1 2 1 0 1 25 0 2\nM SDS EXP 1 1\nM END\n> \nC25\n\n$$$$\nC23\n Mrv15c7 12111511552D \n\n 23 22 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5749 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2894 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0039 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7184 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 C23\nM SAP 1 2 1 0 1 23 0 2\nM SDS EXP 1 1\nM END\n> \nC23\n\n$$$$\nC24\n Mrv15c7 12111511552D \n\n 24 23 0 0 0 0 999 V2000\n 0.0000 -0.3944 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7246 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4285 -0.4303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1531 -0.0359 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8570 -0.4662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5816 -0.0717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2855 -0.5020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0101 -0.1076 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7140 -0.5379 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4386 -0.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1425 -0.5737 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8671 -0.1793 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5710 -0.6096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2955 -0.2151 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9994 -0.6454 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7240 -0.2510 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4279 -0.6813 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1525 -0.2869 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8564 -0.7172 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5810 -0.3227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2849 -0.7530 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0095 -0.3586 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7134 -0.7889 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.4380 -0.3944 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 C24\nM SAP 1 2 1 0 1 24 0 2\nM SDS EXP 1 1\nM END\n> \nC24\n\n$$$$\nCOMU\n Mrv15c7 12111511552D \n\n 27 26 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 3.4650 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 3.0525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 2.2275 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0218 1.8150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3073 2.2275 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0218 0.9900 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 0.5775 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 -0.2475 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 -0.6600 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 -1.4850 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 -1.8975 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 -2.7225 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 -3.1350 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 -2.7225 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 -1.8975 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 -0.2475 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 6.8797 -0.6600 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 0.5775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3073 0.5775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5929 0.1650 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 17 22 1 0 0 0 0\n 16 23 2 0 0 0 0\n 23 24 1 0 0 0 0\n 23 25 1 0 0 0 0\n 13 26 1 0 0 0 0\n 26 27 3 0 0 0 0\nM CHG 2 2 -1 23 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 12 16 17 18 19 20 21 22 23 24 25 26 27\nM SMT 1 COMU\nM SDS EXP 1 1\nM END\n> \nCOMU\n\n$$$$\nC21\n Mrv15c7 12111511552D \n\n 21 20 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5749 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2894 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 C21\nM SAP 1 2 1 0 1 21 0 2\nM SDS EXP 1 1\nM END\n> \nC21\n\n$$$$\nC22\n Mrv15c7 12111511552D \n\n 22 21 0 0 0 0 999 V2000\n 0.0000 -0.3927 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7255 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4284 -0.4320 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1539 -0.0393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8568 -0.4713 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5823 -0.0785 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2852 -0.5105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0107 -0.1178 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7136 -0.5498 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4391 -0.1571 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1420 -0.5891 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8675 -0.1964 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5704 -0.6283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2960 -0.2356 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9988 -0.6676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7244 -0.2749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4272 -0.7069 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1528 -0.3142 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8556 -0.7461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5812 -0.3534 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2840 -0.7854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0096 -0.3927 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 C22\nM SAP 1 2 1 0 1 22 0 2\nM SDS EXP 1 1\nM END\n> \nC22\n\n$$$$\nC20\n Mrv15c7 12111511552D \n\n 20 19 0 0 0 0 999 V2000\n 0.0000 -0.3906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7267 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4283 -0.4340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1550 -0.0434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8566 -0.4774 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5832 -0.0868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2848 -0.5208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0115 -0.1302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7131 -0.5642 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4398 -0.1736 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1414 -0.6076 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8681 -0.2170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5697 -0.6510 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2964 -0.2604 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9980 -0.6944 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7246 -0.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4263 -0.7378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1529 -0.3472 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8545 -0.7812 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5812 -0.3906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 C20\nM SAP 1 2 1 0 1 20 0 2\nM SDS EXP 1 1\nM END\n> \nC20\n\n$$$$\nCOOtBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOtBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuOOC\nM END\n> \nCOOtBu\n\n> \ntBuOOC\n\n$$$$\np-C6H4\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 p-C6H4\nM SAP 1 2 4 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \np-C6H4\n\n$$$$\nTNP\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 1.4289 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 2 0 0 0 0\n 6 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\nM CHG 6 1 -1 2 1 10 1 11 -1 13 1 14 -1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 TNP\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTNP\n\n$$$$\nAoa\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.0000 -0.5401 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7796 -0.8101 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4032 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1827 -0.5401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8064 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Aoa\nM SAP 1 2 1 0 1 4 0 2\nM SDS EXP 1 1\nM END\n> \nAoa\n\n$$$$\nPoc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Poc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nPoc\n\n$$$$\nHATU\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4792 1.7111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7342 0.9265 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 0.3134 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5411 0.7550 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -0.0297 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3112 -0.6971 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -1.3645 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 4.5411 -2.1492 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 5.5807 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5807 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 0.1279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 -1.5221 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0932 1.3680 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 5.9002 1.1965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8382 2.1527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 14 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\n 11 22 2 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\nM CHG 4 2 -1 14 1 15 -1 22 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 HATU\nM SDS EXP 1 1\nM END\n> \nHATU\n\n$$$$\n2-OHEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 2-OHEt\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \n2-OHEt\n\n$$$$\nCpe\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Cpe\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCpe\n\n$$$$\nOPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrO\nM END\n> \nOPr\n\n> \nPrO\n\n$$$$\nPhacm\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Phacm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPhacm\n\n$$$$\no-Nos\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 o-Nos\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \no-Nos\n\n$$$$\nt-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 t-C5H11\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nt-C5H11\n\n$$$$\nOleoyl\n Mrv15c7 12111511552D \n\n 19 18 0 0 0 0 999 V2000\n -1.2888 7.5059 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5743 7.0934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5743 6.2684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1401 5.8559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1401 5.0309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8546 4.6184 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8546 3.7934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5691 3.3809 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5691 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2836 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9980 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4270 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1414 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8559 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.5704 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2849 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9993 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7138 2.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 Oleoyl\nM SAP 1 1 18 0 1\nM SDS EXP 1 1\nM END\n> \nOleoyl\n\n$$$$\nN2+\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM CHG 1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 N2+\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nN2+\n\n$$$$\nTroc\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Troc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTroc\n\n$$$$\nOPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 OPh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhO\nM END\n> \nOPh\n\n> \nPhO\n\n$$$$\nBDIdose\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDIdose\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDIdose\n\n$$$$\nCOMe\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeCO\nM END\n> \nCOMe\n\n> \nMeCO\n\n$$$$\nMPM\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 MPM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMPM\n\n$$$$\nOs-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Os-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmO\nM END\n> \nOs-Am\n\n> \ns-AmO\n\n$$$$\nN+Et4\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM CHG 1 3 1\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 N+Et4\nM SDS EXP 1 1\nM MJS SAT 1 Et4N+\nM END\n> \nN+Et4\n\n> \nEt4N+\n\n$$$$\nSMPT\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.2700 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5401 -0.7796 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4032 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3502 -0.9355 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6203 -1.7150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4304 -1.8709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9705 -1.2473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7806 -1.4032 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0507 -2.1827 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7004 -0.4677 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8903 -0.3118 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 4 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 SMPT\nM SAP 1 2 3 0 1 8 0 2\nM SDS EXP 1 1\nM END\n> \nSMPT\n\n$$$$\nN+Et3\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM CHG 1 3 1\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 N+Et3\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et3N+\nM END\n> \nN+Et3\n\n> \nEt3N+\n\n$$$$\nNHi-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHi-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrNH\nM END\n> \nNHi-Pr\n\n> \ni-PrNH\n\n$$$$\nCeoc\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 -1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 -1.0164 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Ceoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nCeoc\n\n$$$$\nBum\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Bum\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBum\n\n$$$$\nNHneo-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHneo-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmNH\nM END\n> \nNHneo-Am\n\n> \nneo-AmNH\n\n$$$$\nCOOiAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOiAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmOOC\nM END\n> \nCOOiAm\n\n> \niAmOOC\n\n$$$$\nPF6\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\nM CHG 1 2 -1\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 PF6\nM SDS EXP 1 1\nM END\n> \nPF6\n\n$$$$\nDManno\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DManno\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDManno\n\n$$$$\np-Phenylene\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 p-Phenylene\nM SAP 1 2 4 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \np-Phenylene\n\n$$$$\nBtm\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Btm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBtm\n\n$$$$\nc-C9H17\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 1.1333 1.6186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9086 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3211 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1778 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5458 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7208 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0888 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0544 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3581 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 1 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 c-C9H17\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C9H17\n\n$$$$\nTyr\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n -0.7125 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7125 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7125 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 4 10 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Tyr\nM SAP 1 3 1 0 Al 11 0 Br 8 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCOOiBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOiBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iBuOOC\nM END\n> \nCOOiBu\n\n> \niBuOOC\n\n$$$$\nNpes\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\n 7 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 4 14 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Npes\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nNpes\n\n$$$$\nDTBS\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.6500 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 8 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 DTBS\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nDTBS\n\n$$$$\nIle\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n -0.1929 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Ile\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\n1-Naph\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 1-Naph\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \n1-Naph\n\n$$$$\nPyBOP\n Mrv15c7 12111511552D \n\n 33 36 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3537 -1.3465 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 -0.5396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8966 -0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5097 -0.6791 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1742 -1.4328 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3167 -0.5076 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 6.1237 -0.3360 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3786 0.4486 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8937 1.1160 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3786 1.7835 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1632 1.5285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8777 1.9410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5922 1.5285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5922 0.7035 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8777 0.2910 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1632 0.7035 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4882 -1.3145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2419 -1.6501 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1556 -2.4706 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3487 -2.6421 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9362 -1.9276 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1452 0.2994 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3915 0.6350 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4777 1.4554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2847 1.6270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6972 0.9125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 8 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 15 23 1 0 0 0 0\n 18 23 1 0 0 0 0\n 13 24 1 0 0 0 0\n 24 25 1 0 0 0 0\n 25 26 1 0 0 0 0\n 26 27 1 0 0 0 0\n 27 28 1 0 0 0 0\n 24 28 1 0 0 0 0\n 13 29 1 0 0 0 0\n 29 30 1 0 0 0 0\n 30 31 1 0 0 0 0\n 31 32 1 0 0 0 0\n 32 33 1 0 0 0 0\n 29 33 1 0 0 0 0\nM CHG 2 2 -1 13 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 3 31 32 33\nM SMT 1 PyBOP\nM SDS EXP 1 1\nM END\n> \nPyBOP\n\n$$$$\nPI3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PI3\nM SDS EXP 1 1\nM END\n> \nPI3\n\n$$$$\nADManno\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADManno\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADManno\n\n$$$$\nt-Hex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 t-Hex\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nt-Hex\n\n$$$$\ndA\n Mrv15c7 12111511552D \n\n 21 23 0 0 1 0 999 V2000\n 0.6659 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6979 -0.8244 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4279 -1.2088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2020 -0.9236 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7125 -1.5717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2538 -2.2575 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5390 -3.0316 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.3330 -3.2559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3650 -4.0803 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.0507 -4.5389 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9964 -5.3622 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6822 -5.8208 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2563 -5.7267 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5908 -4.3655 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.3666 -5.1594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5669 -5.3622 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0804 -3.7174 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4599 -2.0332 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7620 -2.4731 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0320 -2.0887 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.2643 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 7 6 1 1 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 2 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 1 1 0 0 0\n 15 16 1 0 0 0 0\n 14 17 1 0 0 0 0\n 7 17 1 0 0 0 0\n 6 18 1 0 0 0 0\n 3 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 2 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 dA\nM SAP 1 2 16 0 1 11 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndA\n\n$$$$\ndC\n Mrv15c7 12111511552D \n\n 19 20 0 0 1 0 999 V2000\n 0.2426 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5278 -0.7741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3408 -0.9142 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6260 -1.6883 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4391 -1.8284 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0982 -2.3224 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2852 -2.1823 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3834 -3.0965 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1774 -3.3208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2094 -4.1452 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.8951 -4.6038 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8408 -5.4271 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5266 -5.8857 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1007 -5.7916 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4353 -4.4304 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2110 -5.2243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4113 -5.4271 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9248 -3.7823 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 9 6 1 1 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\n 11 16 1 0 0 0 0\n 16 17 1 1 0 0 0\n 17 18 1 0 0 0 0\n 16 19 1 0 0 0 0\n 9 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 dC\nM SAP 1 2 18 0 1 13 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndC\n\n$$$$\nOTMS\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OTMS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TMSO\nM END\n> \nOTMS\n\n> \nTMSO\n\n$$$$\nBzh\n Mrv15c7 12111511552D \n\n 13 14 0 0 0 0 999 V2000\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 1 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Bzh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBzh\n\n$$$$\nBzl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Bzl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBzl\n\n$$$$\nBDPsico\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 1 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDPsico\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDPsico\n\n$$$$\nDIPEA\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DIPEA\nM SDS EXP 1 1\nM END\n> \nDIPEA\n\n$$$$\nring25\n Mrv15c7 12111511552D \n\n 25 25 0 0 0 0 999 V2000\n 4.0795 3.1622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7073 3.6974 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4104 3.2657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2171 2.4637 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6122 1.6520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1806 0.9490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5736 0.2236 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1419 -0.4795 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5349 -1.2048 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1032 -1.9079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4962 -2.6333 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0645 -3.3363 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2398 -3.3140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8081 -4.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9834 -3.9947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5904 -3.2693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0221 -2.5662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6291 -1.8409 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0608 -1.1378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6678 -0.4124 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0995 0.2906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7065 1.0160 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1382 1.7190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7452 2.4444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1769 3.1474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\n 1 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 ring25\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring25\n\n$$$$\nring24\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 3.5724 2.7715 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0594 3.4374 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8796 3.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2128 2.5939 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7258 1.9279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0590 1.1732 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5720 0.5073 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9052 -0.2474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4182 -0.9133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7514 -1.6681 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2644 -2.3340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5976 -3.0887 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1106 -3.7546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2904 -3.6658 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9572 -2.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1370 -2.8223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8038 -2.0676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2908 -1.4017 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9576 -0.6470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4446 0.0190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1114 0.7737 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5984 1.4396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2651 2.1943 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7521 2.8602 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 1 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 ring24\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring24\n\n$$$$\nring23\n Mrv15c7 12111511552D \n\n 23 23 0 0 0 0 999 V2000\n 3.7198 2.9119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3672 3.4233 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0536 2.9656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8304 2.1714 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1950 1.3455 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7373 0.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1029 -0.0805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6452 -0.7669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0108 -1.5065 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5531 -2.1929 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9187 -2.9324 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4610 -3.6188 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6377 -3.5657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2721 -2.8261 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4489 -2.7729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0833 -2.0334 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5409 -1.3470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1753 -0.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6330 0.0790 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2674 0.8186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7251 1.5050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3595 2.2445 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8172 2.9309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 1 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 ring23\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring23\n\n$$$$\nring22\n Mrv15c7 12111511552D \n\n 22 22 0 0 0 0 999 V2000\n 3.2151 2.3029 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6850 2.9810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 2.9132 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8595 2.1673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3897 1.4891 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7421 0.7432 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2722 0.0650 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6246 -0.6810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1548 -1.3591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 -2.1051 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0373 -2.7832 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2151 -2.7154 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7453 -3.3935 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 -3.3257 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5707 -2.5798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0405 -1.9016 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6882 -1.1557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1580 -0.4775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8056 0.2685 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2755 0.9466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 1.6926 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3929 2.3707 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 1 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 ring22\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring22\n\n$$$$\nring20\n Mrv15c7 12111511552D \n\n 20 20 0 0 0 0 999 V2000\n 2.8579 2.0862 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3743 2.7295 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1897 2.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4887 1.8351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9723 1.1917 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2712 0.4228 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7548 -0.2206 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0538 -0.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5374 -1.6329 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8364 -2.4018 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3199 -3.0452 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5045 -2.9197 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2056 -2.1507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3902 -2.0252 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0912 -1.2563 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6076 -0.6129 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3086 0.1560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8251 0.7994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5261 1.5683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0425 2.2117 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 1 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 ring20\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring20\n\n$$$$\nCO2i-Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2i-Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrO2C\nM END\n> \nCO2i-Pr\n\n> \ni-PrO2C\n\n$$$$\nring21\n Mrv15c7 12111511552D \n\n 21 21 0 0 0 0 999 V2000\n 3.3596 2.4353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9899 2.9676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6909 2.5327 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4939 1.7315 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8853 0.9180 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4504 0.2170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8400 -0.5102 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4050 -1.2112 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7947 -1.9384 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3597 -2.6395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5351 -2.6133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1002 -3.3143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2756 -3.2882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8860 -2.5610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3209 -1.8599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9313 -1.1328 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3662 -0.4317 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9766 0.2955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4115 0.9965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0219 1.7237 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4569 2.4247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 1 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 ring21\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring21\n\n$$$$\nDPPA\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 2.3645 0.1914 0.0000 N 0 5 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.5230 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 4 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 DPPA\nM SDS EXP 1 1\nM END\n> \nDPPA\n\n$$$$\nCOt-Bu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COt-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuCO\nM END\n> \nCOt-Bu\n\n> \nt-BuCO\n\n$$$$\nc-C4H7\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 c-C4H7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C4H7\n\n$$$$\n3Py\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 3Py\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \n3Py\n\n$$$$\nNHneoAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHneoAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmNH\nM END\n> \nNHneoAm\n\n> \nneoAmNH\n\n$$$$\nCOOi-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOi-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmOOC\nM END\n> \nCOOi-Am\n\n> \ni-AmOOC\n\n$$$$\nC11H23\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 4.2355 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6645 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3789 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0934 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8079 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5224 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2368 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9513 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6658 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3802 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 C11H23\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H23C11\nM END\n> \nC11H23\n\n> \nH23C11\n\n$$$$\nADPsico\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADPsico\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADPsico\n\n$$$$\nring19\n Mrv15c7 12111511552D \n\n 19 19 0 0 0 0 999 V2000\n 2.9988 2.2083 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 2.7027 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3335 2.2273 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0898 1.4391 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4327 0.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9574 -0.0703 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3036 -0.8191 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8283 -1.4934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1745 -2.2422 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6992 -2.9165 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8776 -2.8419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5313 -2.0931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7097 -2.0186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3634 -1.2697 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8388 -0.5955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4925 0.1534 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9679 0.8276 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6216 1.5764 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0970 2.2507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 1 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 ring19\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring19\n\n$$$$\nring16\n Mrv15c7 12111511552D \n\n 16 16 0 0 0 0 999 V2000\n 2.1434 1.4223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7183 2.0140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5182 1.8119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7432 1.0182 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1683 0.4265 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3932 -0.3673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8183 -0.9589 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0433 -1.7527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4684 -2.3444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6685 -2.1423 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4435 -1.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6436 -1.1466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4187 -0.3528 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9936 0.2389 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7686 1.0326 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3435 1.6243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 1 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 ring16\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring16\n\n$$$$\nring15\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 2.2742 1.5127 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9604 1.9708 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6081 1.4598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3222 0.6859 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6197 -0.1665 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1086 -0.8141 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4140 -1.5805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9030 -2.2282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0866 -2.1095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7812 -1.3431 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9648 -1.2244 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6594 -0.4580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1704 0.1897 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8650 0.9561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3760 1.6038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 1 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 ring15\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring15\n\n$$$$\nring18\n Mrv15c7 12111511552D \n\n 18 18 0 0 0 0 999 V2000\n 2.5006 1.5918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9924 2.2542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 2.1596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1398 1.4025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6480 0.7401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9758 -0.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4841 -0.6794 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 -1.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3202 -2.0989 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5006 -2.0043 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0089 -2.6667 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 -2.5721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8615 -1.8150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3533 -1.1526 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0255 -0.3955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5172 0.2669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 1.0240 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6811 1.6864 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 1 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 ring18\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring18\n\n$$$$\nring17\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 2.6371 1.7025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2708 2.2308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9690 1.7914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7669 0.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1531 0.1755 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7137 -0.5227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0987 -1.2524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 -1.9507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8348 -1.9192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3954 -2.6175 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5710 -2.5860 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1860 -1.8564 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6255 -1.1581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2405 -0.4285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6799 0.2698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2949 0.9994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7343 1.6977 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 1 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 ring17\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring17\n\n$$$$\nC18H37\n Mrv15c7 12111511552D \n\n 18 17 0 0 0 0 999 V2000\n 7.2336 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9480 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.6625 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.3770 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0914 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.8059 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.5204 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.2349 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.9493 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6638 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3783 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0927 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.8072 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.5217 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.2362 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.9506 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6651 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3796 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 C18H37\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H37C18\nM END\n> \nC18H37\n\n> \nH37C18\n\n$$$$\nring12\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 1 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ring12\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring12\n\n$$$$\nring11\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 1.5424 0.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2919 1.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8514 0.5812 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4477 -0.1383 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6078 -1.0268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0015 -1.5863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2138 -1.3410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0324 -0.5362 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2447 -0.2909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0633 0.5140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6696 1.0735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 1 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 ring11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring11\n\n$$$$\nring14\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 1.7862 0.8851 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3263 1.5088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 1.3529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4064 0.5733 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8664 -0.0503 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 -0.8299 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5963 -1.4535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7862 -1.2976 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2461 -1.9213 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 -1.7654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1659 -0.9858 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7060 -0.3622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 0.4174 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9760 1.0410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 1 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 ring14\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring14\n\n$$$$\ndT\n Mrv15c7 12111511552D \n\n 20 21 0 0 1 0 999 V2000\n 2.1113 -0.2801 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5834 -0.9142 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8687 -1.6883 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3408 -2.3224 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6260 -3.0965 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4200 -3.3208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4520 -4.1452 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1378 -4.6038 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0834 -5.4271 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7692 -5.8857 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3434 -5.7916 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6779 -4.4304 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4536 -5.2243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6539 -5.4271 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1674 -3.7823 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5278 -2.1823 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.8164 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2426 -1.4082 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7704 -0.7741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4852 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 5 4 1 1 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\n 7 12 1 0 0 0 0\n 12 13 1 1 0 0 0\n 13 14 1 0 0 0 0\n 12 15 1 0 0 0 0\n 5 15 1 0 0 0 0\n 4 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 16 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 2 19 1 0 0 0 0\n 19 20 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 dT\nM SAP 1 2 14 0 1 9 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndT\n\n$$$$\nring13\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 1.9097 0.9582 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5480 1.4809 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2423 1.0353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0331 0.2372 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4121 -0.5822 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9665 -1.2765 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1424 -1.2378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6968 -1.9321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8727 -1.8933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4942 -1.1603 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9398 -0.4660 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5613 0.2671 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0069 0.9614 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 1 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 ring13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring13\n\n$$$$\nring10\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 1.4289 1.5039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2391 1.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7792 1.0361 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5091 0.2566 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6990 0.1007 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.6789 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6188 -0.8348 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0787 -0.2111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3488 0.5684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1589 0.7243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ring10\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring10\n\n$$$$\nCOOi-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOi-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-BuOOC\nM END\n> \nCOOi-Bu\n\n> \ni-BuOOC\n\n$$$$\nBDAltro\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDAltro\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDAltro\n\n$$$$\nCO2neoAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2neoAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmO2C\nM END\n> \nCO2neoAm\n\n> \nneoAmO2C\n\n$$$$\nNaCl\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NaCl\nM SDS EXP 1 1\nM END\n> \nNaCl\n\n$$$$\nNHBoc\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.4125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NHBoc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BocNH\nM END\n> \nNHBoc\n\n> \nBocNH\n\n$$$$\ndG\n Mrv15c7 12111511552D \n\n 22 24 0 0 1 0 999 V2000\n 3.2237 -1.0602 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4072 -1.1782 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1011 -1.9443 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2846 -2.0624 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7741 -1.4142 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6995 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0320 -2.5238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8260 -2.7481 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1112 -3.5222 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.9051 -3.7465 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9371 -4.5709 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.6229 -5.0296 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5686 -5.8528 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2543 -6.3114 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8285 -6.2173 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1630 -4.8561 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.9387 -5.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1390 -5.8528 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6525 -4.2080 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0802 -0.6481 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5697 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8967 -0.5301 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 4 8 1 0 0 0 0\n 9 8 1 1 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\n 11 16 1 0 0 0 0\n 16 17 1 1 0 0 0\n 17 18 1 0 0 0 0\n 16 19 1 0 0 0 0\n 9 19 1 0 0 0 0\n 5 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 20 22 1 0 0 0 0\n 2 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 dG\nM SAP 1 2 18 0 1 13 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndG\n\n$$$$\nPMB\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 PMB\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPMB\n\n$$$$\nMMTr\n Mrv15c7 12111511552D \n\n 21 23 0 0 0 0 999 V2000\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 MMTr\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMMTr\n\n$$$$\nDTalos\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DTalos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDTalos\n\n$$$$\nHOAt\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.8838 -2.1500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -1.3654 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 HOAt\nM SDS EXP 1 1\nM END\n> \nHOAt\n\n$$$$\nCO2sBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2sBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 sBuO2C\nM END\n> \nCO2sBu\n\n> \nsBuO2C\n\n$$$$\nPMP\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PMP\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nPMP\n\n$$$$\np-Tol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 p-Tol\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \np-Tol\n\n$$$$\nBDRibop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDRibop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDRibop\n\n$$$$\nSn-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Sn-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuS\nM END\n> \nSn-Bu\n\n> \nn-BuS\n\n$$$$\nSO2NH2\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SO2NH2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NH2SO2\nM END\n> \nSO2NH2\n\n> \nNH2SO2\n\n$$$$\nLys\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 1.0446 1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Lys\nM SAP 1 3 7 0 Al 8 0 Br 1 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nHOBt\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.8838 -2.1500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -1.3654 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 HOBt\nM SDS EXP 1 1\nM END\n> \nHOBt\n\n$$$$\nBDRibof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDRibof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDRibof\n\n$$$$\nOiAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OiAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmO\nM END\n> \nOiAm\n\n> \niAmO\n\n$$$$\ncHex\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 cHex\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \ncHex\n\n$$$$\nn-C6H13\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 n-C6H13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C6H13\n\n$$$$\nC14H29\n Mrv15c7 12111511552D \n\n 14 13 0 0 0 0 999 V2000\n 4.7586 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4730 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1875 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.9020 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.6164 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.3309 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.0454 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.7599 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.4743 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1888 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.9033 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.6177 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.3322 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.0467 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 C14H29\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H29C14\nM END\n> \nC14H29\n\n> \nH29C14\n\n$$$$\ns-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 s-Bu\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-Bu\n\n$$$$\nMDIPS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 MDIPS\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nMDIPS\n\n$$$$\nTBS\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TBS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nTBS\n\n$$$$\nTBT\n Mrv15c7 12111511552D \n\n 33 33 0 0 0 0 999 V2000\n 2.1434 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0164 3.1895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8414 1.7605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8414 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.0164 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9684 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3184 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2704 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4454 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 1.7605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 3.1895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\n 13 16 1 0 0 0 0\n 12 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 17 19 1 0 0 0 0\n 17 20 1 0 0 0 0\n 8 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\n 22 25 1 0 0 0 0\n 21 26 1 0 0 0 0\n 26 27 1 0 0 0 0\n 26 28 1 0 0 0 0\n 26 29 1 0 0 0 0\n 5 30 1 0 0 0 0\n 30 31 1 0 0 0 0\n 30 32 1 0 0 0 0\n 30 33 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 3 31 32 33\nM SMT 1 TBT\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTBT\n\n$$$$\nDNBZ\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 1.4289 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 8 11 2 0 0 0 0\n 4 11 1 0 0 0 0\n 6 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 12 14 2 0 0 0 0\nM CHG 4 1 -1 2 1 12 1 13 -1\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 DNBZ\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDNBZ\n\n$$$$\ntrans-Cinnamyl\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 trans-Cinnamyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ntrans-Cinnamyl\n\n$$$$\nc-C23H45\n Mrv15c7 12111511552D \n\n 23 23 0 0 0 0 999 V2000\n 3.7198 2.9119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3672 3.4233 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0536 2.9656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8304 2.1714 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1950 1.3455 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7373 0.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1029 -0.0805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6452 -0.7669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0108 -1.5065 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5531 -2.1929 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9187 -2.9324 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4610 -3.6188 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6377 -3.5657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2721 -2.8261 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4489 -2.7729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0833 -2.0334 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5409 -1.3470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1753 -0.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6330 0.0790 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2674 0.8186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7251 1.5050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3595 2.2445 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8172 2.9309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 1 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 c-C23H45\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C23H45\n\n$$$$\nPO3H\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\nM CHG 1 1 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PO3H\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HO3P\nM END\n> \nPO3H\n\n> \nHO3P\n\n$$$$\nH2PO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 H2PO4\nM SDS EXP 1 1\nM END\n> \nH2PO4\n\n$$$$\nOxyma\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 3.3000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Oxyma\nM SDS EXP 1 1\nM END\n> \nOxyma\n\n$$$$\nSn-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Sn-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmS\nM END\n> \nSn-Am\n\n> \nn-AmS\n\n$$$$\nDEAD\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 2.0625 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DEAD\nM SDS EXP 1 1\nM END\n> \nDEAD\n\n$$$$\nMes\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Mes\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nMes\n\n$$$$\nDEAE\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 DEAE\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDEAE\n\n$$$$\nMet\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7625 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Met\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nNEt2\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NEt2\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et2N\nM END\n> \nNEt2\n\n> \nEt2N\n\n$$$$\nNEt3\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 NEt3\nM SDS EXP 1 1\nM MJS SAT 1 Et3N\nM END\n> \nNEt3\n\n> \nEt3N\n\n$$$$\nB2H6\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 B 0 0 0 0 0 4 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 B 0 0 0 0 0 4 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 B2H6\nM SDS EXP 1 1\nM END\n> \nB2H6\n\n$$$$\nPyrim\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Pyrim\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPyrim\n\n$$$$\nMeb\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Meb\nM SDS EXP 1 1\nM END\n> \nMeb\n\n$$$$\nm-C6H4\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.0000 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 m-C6H4\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nm-C6H4\n\n$$$$\nneo-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 neo-Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nneo-Am\n\n$$$$\no-Tolyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 o-Tolyl\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \no-Tolyl\n\n$$$$\nTDS\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 TDS\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTDS\n\n$$$$\nScm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Scm\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nScm\n\n$$$$\nDmab\n Mrv15c7 12111511552D \n\n 23 24 0 0 0 0 999 V2000\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2494 0.0862 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 7 13 1 0 0 0 0\n 5 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 15 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 18 20 1 0 0 0 0\n 18 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 14 22 1 0 0 0 0\n 22 23 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 Dmab\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \nDmab\n\n$$$$\nSiAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 SiAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmS\nM END\n> \nSiAm\n\n> \niAmS\n\n$$$$\n5-TAMRA\n Mrv15c7 12111511552D \n\n 31 34 0 0 0 0 999 V2000\n 5.7158 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0573 -0.5701 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 11 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 6 17 1 0 0 0 0\n 14 18 2 0 0 0 0\n 18 19 1 0 0 0 0\n 18 20 1 0 0 0 0\n 10 21 1 0 0 0 0\n 21 22 2 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 2 0 0 0 0\n 24 25 1 0 0 0 0\n 25 26 2 0 0 0 0\n 24 27 1 0 0 0 0\n 27 28 2 0 0 0 0\n 21 28 1 0 0 0 0\n 22 29 1 0 0 0 0\n 29 30 1 0 0 0 0\n 29 31 2 0 0 0 0\nM CHG 2 18 1 30 -1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 1 31\nM SMT 1 5-TAMRA\nM SAP 1 1 25 0 1\nM SDS EXP 1 1\nM END\n> \n5-TAMRA\n\n$$$$\nTEA\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TEA\nM SDS EXP 1 1\nM END\n> \nTEA\n\n$$$$\nStAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 StAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmS\nM END\n> \nStAm\n\n> \ntAmS\n\n$$$$\nADGalac\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADGalac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADGalac\n\n$$$$\nCCl4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CCl4\nM SDS EXP 1 1\nM END\n> \nCCl4\n\n$$$$\nStBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 StBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuS\nM END\n> \nStBu\n\n> \ntBuS\n\n$$$$\nSar\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Sar\nM SAP 1 2 2 0 Al 4 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCCl3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CCl3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Cl3C\nM END\n> \nCCl3\n\n> \nCl3C\n\n$$$$\nNosyl\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Nosyl\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nNosyl\n\n$$$$\nNIS\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0198 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NIS\nM SDS EXP 1 1\nM END\n> \nNIS\n\n$$$$\nBDSorbo\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 1 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDSorbo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDSorbo\n\n$$$$\nNHZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHZ\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ZNH\nM END\n> \nNHZ\n\n> \nZNH\n\n$$$$\nC2H5\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 C2H5\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H5C2\nM END\n> \nC2H5\n\n> \nH5C2\n\n$$$$\nFpmp\n Mrv15c7 12111511552D \n\n 15 16 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 9 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Fpmp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nFpmp\n\n$$$$\nTEMPO\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2822 -0.7752 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8125 0.1433 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM RAD 1 11 2\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 TEMPO\nM SDS EXP 1 1\nM END\n> \nTEMPO\n\n$$$$\nCOOi-Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COOi-Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrOOC\nM END\n> \nCOOi-Pr\n\n> \ni-PrOOC\n\n$$$$\nPCC\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.0000 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cr 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4252 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1397 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1397 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4252 -0.8250 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 2.7107 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7107 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM CHG 2 1 -1 9 1\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 PCC\nM SDS EXP 1 1\nM END\n> \nPCC\n\n$$$$\nADSorbo\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADSorbo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADSorbo\n\n$$$$\nHCl\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 HCl\nM SDS EXP 1 1\nM END\n> \nHCl\n\n$$$$\nNBS\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0198 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NBS\nM SDS EXP 1 1\nM END\n> \nNBS\n\n$$$$\nEthyl\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Ethyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nEthyl\n\n$$$$\nBDManno\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDManno\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDManno\n\n$$$$\nPipoc\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Pipoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nPipoc\n\n$$$$\nAllyl\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Allyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAllyl\n\n$$$$\nNCO\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NCO\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 OCN\nM END\n> \nNCO\n\n> \nOCN\n\n$$$$\nMal\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Mal\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nMal\n\n$$$$\nNCS\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NCS\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SCN\nM END\n> \nNCS\n\n> \nSCN\n\n$$$$\nDLyxos\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DLyxos\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDLyxos\n\n$$$$\nDDQ\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 3 0 0 0 0\n 7 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 3 0 0 0 0\n 10 13 1 0 0 0 0\n 2 13 1 0 0 0 0\n 13 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 DDQ\nM SDS EXP 1 1\nM END\n> \nDDQ\n\n$$$$\nTBMPS\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8414 1.7605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0164 3.1895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 3 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 TBMPS\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nTBMPS\n\n$$$$\nCbz\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Cbz\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nCbz\n\n$$$$\nDCC\n Mrv15c7 12111511552D \n\n 15 16 0 0 0 0 999 V2000\n 3.5724 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 10 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 DCC\nM SDS EXP 1 1\nM END\n> \nDCC\n\n$$$$\nTrityl\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 Trityl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTrityl\n\n$$$$\nDCE\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 DCE\nM SDS EXP 1 1\nM END\n> \nDCE\n\n$$$$\nMbs\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Mbs\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMbs\n\n$$$$\n2Pip\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 2Pip\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \n2Pip\n\n$$$$\nDCB\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DCB\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDCB\n\n$$$$\nOneo-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Oneo-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmO\nM END\n> \nOneo-Am\n\n> \nneo-AmO\n\n$$$$\nDCM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 DCM\nM SDS EXP 1 1\nM END\n> \nDCM\n\n$$$$\nc-C19H37\n Mrv15c7 12111511552D \n\n 19 19 0 0 0 0 999 V2000\n 2.9988 2.2083 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 2.7027 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3335 2.2273 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0898 1.4391 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4327 0.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9574 -0.0703 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3036 -0.8191 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8283 -1.4934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1745 -2.2422 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6992 -2.9165 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8776 -2.8419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5313 -2.0931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7097 -2.0186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3634 -1.2697 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8388 -0.5955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4925 0.1534 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9679 0.8276 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6216 1.5764 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0970 2.2507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 1 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 c-C19H37\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C19H37\n\n$$$$\nMbh\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 11 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 8 15 1 0 0 0 0\n 6 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 3 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Mbh\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nMbh\n\n$$$$\nSt-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 St-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmS\nM END\n> \nSt-Am\n\n> \nt-AmS\n\n$$$$\nDIdose\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DIdose\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDIdose\n\n$$$$\nDThreo\n Mrv15c7 12111511552D \n\n 8 7 0 0 1 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9520 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DThreo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDThreo\n\n$$$$\nDAllos\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DAllos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDAllos\n\n$$$$\nDAltro\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DAltro\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDAltro\n\n$$$$\nPO3H2\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PO3H2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H2PO3\nM END\n> \nPO3H2\n\n> \nH2PO3\n\n$$$$\nC22H45\n Mrv15c7 12111511552D \n\n 22 21 0 0 0 0 999 V2000\n 9.7086 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.4230 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1375 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.8520 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.5664 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.2809 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.9954 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.7099 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.4243 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.1388 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.8533 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.5677 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.2822 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.9967 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.7112 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.4256 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.1401 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.8546 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.5690 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.2835 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.9980 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.7124 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 C22H45\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H45C22\nM END\n> \nC22H45\n\n> \nH45C22\n\n$$$$\nPdCl2\n Mrv15c7 12111511552D \n\n 3 0 0 0 0 0 999 V2000\n 0.4125 0.0000 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0\n 2.7696 0.0000 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.0000 0.0000 Pd 0 2 0 0 0 0 0 0 0 0 0 0\nM CHG 3 1 -1 2 -1 3 2\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 PdCl2\nM SDS EXP 1 1\nM END\n> \nPdCl2\n\n$$$$\nADAarabif\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADAarabif\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADAarabif\n\n$$$$\nPBr3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PBr3\nM SDS EXP 1 1\nM END\n> \nPBr3\n\n$$$$\nSt-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 St-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuS\nM END\n> \nSt-Bu\n\n> \nt-BuS\n\n$$$$\nSMCC\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 5.1309 -2.2763 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9716 -1.4668 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1909 -1.2000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0316 -0.3906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2510 -0.1238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6296 -0.6665 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8489 -0.3997 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2275 -0.9424 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4233 -0.7587 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0991 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4668 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5427 -2.0882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3014 -1.7641 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0095 -2.1873 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7889 -1.4759 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5696 -1.7427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 8 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 6 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 3 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 SMCC\nM SAP 1 2 11 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nSMCC\n\n$$$$\nNHi-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHi-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmNH\nM END\n> \nNHi-Am\n\n> \ni-AmNH\n\n$$$$\nCO2Bn\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 CO2Bn\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnO2C\nM END\n> \nCO2Bn\n\n> \nBnO2C\n\n$$$$\nTfa\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Tfa\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTfa\n\n$$$$\nOt-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Ot-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuO\nM END\n> \nOt-Bu\n\n> \nt-BuO\n\n$$$$\nPMBM\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 4 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 PMBM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPMBM\n\n$$$$\nCO2Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuO2C\nM END\n> \nCO2Bu\n\n> \nBuO2C\n\n$$$$\nOTBS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTBS\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TBSO\nM END\n> \nOTBS\n\n> \nTBSO\n\n$$$$\nSneo-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Sneo-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmS\nM END\n> \nSneo-Am\n\n> \nneo-AmS\n\n$$$$\nTBDPS\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 5 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 TBDPS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTBDPS\n\n$$$$\nMnO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 Mn 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MnO2\nM SDS EXP 1 1\nM END\n> \nMnO2\n\n$$$$\nNpeoc\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n -2.1434 0.4125 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -2.8579 1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 4 14 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Npeoc\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \nNpeoc\n\n$$$$\nHPO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 2 3 -1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 HPO4\nM SDS EXP 1 1\nM END\n> \nHPO4\n\n$$$$\nDmb\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 8 11 2 0 0 0 0\n 3 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Dmb\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nDmb\n\n$$$$\nPhenyl\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Phenyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPhenyl\n\n$$$$\n2-4DCZ\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 2 0 0 0 0\n 2 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 2-4DCZ\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n2-4DCZ\n\n$$$$\nCO2Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmO2C\nM END\n> \nCO2Am\n\n> \nAmO2C\n\n$$$$\nOt-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ot-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmO\nM END\n> \nOt-Am\n\n> \nt-AmO\n\n$$$$\nBDFruct\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 1 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDFruct\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDFruct\n\n$$$$\ncyclooctyl\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.9959 1.4904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0738 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 -0.6654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0821 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 1 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 cyclooctyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclooctyl\n\n$$$$\nNBu4\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n -1.4289 3.9039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 3.4914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.6664 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 2.2539 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 0.1914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.6336 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.0461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 5 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\nM CHG 1 5 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 NBu4\nM SDS EXP 1 1\nM END\n> \nNBu4\n\n$$$$\nC17H35\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n 7.9480 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.6625 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.3770 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0914 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.8059 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.5204 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.2349 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.9493 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6638 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3783 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0927 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.8072 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.5217 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.2362 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.9506 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6651 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3796 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 C17H35\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H35C17\nM END\n> \nC17H35\n\n> \nH35C17\n\n$$$$\nHNO3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 HNO3\nM SDS EXP 1 1\nM END\n> \nHNO3\n\n$$$$\nNO3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NO3\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 O3N\nM END\n> \nNO3\n\n> \nO3N\n\n$$$$\n4ClZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 2 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 4ClZ\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n4ClZ\n\n$$$$\nHNO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 HNO2\nM SDS EXP 1 1\nM END\n> \nHNO2\n\n$$$$\nNO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.9520 -1.1270 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NO2\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 O2N\nM END\n> \nNO2\n\n> \nO2N\n\n$$$$\nNitroso\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Nitroso\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nNitroso\n\n$$$$\niPr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 iPr\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \niPr\n\n$$$$\nBenzoyl\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Benzoyl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBenzoyl\n\n$$$$\nMob\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 3 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Mob\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nMob\n\n$$$$\nSAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 SAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmS\nM END\n> \nSAm\n\n> \nAmS\n\n$$$$\nCDI\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n 1.8185 0.5823 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5330 0.1698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5330 -0.6552 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2004 -1.1401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9455 -1.9248 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1205 -1.9248 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8655 -1.1401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2475 0.5823 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3337 1.4028 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1407 1.5743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5532 0.8598 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0011 0.2467 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 4 0 0 0 0\n 4 5 4 0 0 0 0\n 5 6 4 0 0 0 0\n 6 7 4 0 0 0 0\n 3 7 4 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 4 0 0 0 0\n 9 10 4 0 0 0 0\n 10 11 4 0 0 0 0\n 11 12 4 0 0 0 0\n 8 12 4 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 CDI\nM SDS EXP 1 1\nM END\n> \nCDI\n\n$$$$\ncyclopentyl\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 cyclopentyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclopentyl\n\n$$$$\nC15H31\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 6.7105 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.4250 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.1395 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.8539 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.5684 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.2829 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.9974 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.7118 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.4263 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.1408 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8552 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5697 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2842 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9987 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.7131 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 C15H31\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H31C15\nM END\n> \nC15H31\n\n> \nH31C15\n\n$$$$\nOtBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OtBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuO\nM END\n> \nOtBu\n\n> \ntBuO\n\n$$$$\nMoz\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 3 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Moz\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nMoz\n\n$$$$\nThr\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 6 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Thr\nM SAP 1 3 5 0 Al 6 0 Br 3 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nc-C13H25\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 1.9097 0.9582 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5480 1.4809 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2423 1.0353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0331 0.2372 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4121 -0.5822 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9665 -1.2765 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1424 -1.2378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6968 -1.9321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8727 -1.8933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4942 -1.1603 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9398 -0.4660 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5613 0.2671 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0069 0.9614 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 1 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 c-C13H25\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C13H25\n\n$$$$\nThy\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Thy\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nThy\n\n$$$$\nCF3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CF3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 F3C\nM END\n> \nCF3\n\n> \nF3C\n\n$$$$\nNvoc\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 9 14 2 0 0 0 0\n 3 14 1 0 0 0 0\n 8 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 15 17 2 0 0 0 0\nM CHG 2 15 1 16 -1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Nvoc\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nNvoc\n\n$$$$\nSCN\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 SCN\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NCS\nM END\n> \nSCN\n\n> \nNCS\n\n$$$$\nCONHMe\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CONHMe\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeNHCO\nM END\n> \nCONHMe\n\n> \nMeNHCO\n\n$$$$\no-Tol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 o-Tol\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \no-Tol\n\n$$$$\nBrosyl\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Brosyl\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nBrosyl\n\n$$$$\nHBTU\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4792 1.7111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7342 0.9265 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 0.3134 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5411 0.7550 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -0.0297 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3112 -0.6971 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -1.3645 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 4.5411 -2.1492 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 5.5807 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5807 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 0.1279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 -1.5221 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0932 1.3680 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 5.9002 1.1965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8382 2.1527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 14 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\n 11 22 2 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\nM CHG 4 2 -1 14 1 15 -1 22 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 HBTU\nM SDS EXP 1 1\nM END\n> \nHBTU\n\n$$$$\nOtAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OtAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmO\nM END\n> \nOtAm\n\n> \ntAmO\n\n$$$$\nNHTs\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHTs\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TsNH\nM END\n> \nNHTs\n\n> \nTsNH\n\n$$$$\nDMIPS\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DMIPS\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nDMIPS\n\n$$$$\nBic\n Mrv15c7 12111511552D \n\n 13 14 0 0 0 0 999 V2000\n 4.7812 4.4104 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7812 3.5854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0668 3.1729 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0668 2.3479 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 0.8555 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 1.5229 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 2.1904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 2.3479 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 8 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 5 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Bic\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBic\n\n$$$$\nOPMB\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 3 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 OPMB\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PMBO\nM END\n> \nOPMB\n\n> \nPMBO\n\n$$$$\nSnBu3\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n 5.3329 5.5539 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 5.1414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 4.3164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 3.9039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 3.0789 0.0000 Sn 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 SnBu3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Bu3Sn\nM END\n> \nSnBu3\n\n> \nBu3Sn\n\n$$$$\nTeoc\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.1250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -2.2539 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Teoc\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTeoc\n\n$$$$\n2OHPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 2OHPh\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \n2OHPh\n\n$$$$\nCOOt-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOt-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuOOC\nM END\n> \nCOOt-Bu\n\n> \nt-BuOOC\n\n$$$$\nSBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 SBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuS\nM END\n> \nSBu\n\n> \nBuS\n\n$$$$\n2-6DCZ\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 2-6DCZ\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \n2-6DCZ\n\n$$$$\nKNO3\n Mrv15c7 12111511552D \n\n 5 3 0 0 0 0 999 V2000\n 1.6500 1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 2 0 0 0 0\nM CHG 4 1 1 2 -1 3 1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 KNO3\nM SDS EXP 1 1\nM END\n> \nKNO3\n\n$$$$\nKNO2\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 KNO2\nM SDS EXP 1 1\nM END\n> \nKNO2\n\n$$$$\nDip\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Dip\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDip\n\n$$$$\nn-Pr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 n-Pr\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Pr\n\n$$$$\nCO2Et\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CO2Et\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtO2C\nM END\n> \nCO2Et\n\n> \nEtO2C\n\n$$$$\nPhOMe\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PhOMe\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeOPh\nM END\n> \nPhOMe\n\n> \nMeOPh\n\n$$$$\ncyclopropyl\n Mrv15c7 12111511552D \n\n 3 3 0 0 0 0 999 V2000\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 1 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 cyclopropyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclopropyl\n\n$$$$\nSEM\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n -0.6039 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 SEM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nSEM\n\n$$$$\nNHOH\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NHOH\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HONH\nM END\n> \nNHOH\n\n> \nHONH\n\n$$$$\nADEryth\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 ADEryth\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADEryth\n\n$$$$\nc-C15H29\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 2.2742 1.5127 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9604 1.9708 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6081 1.4598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3222 0.6859 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6197 -0.1665 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1086 -0.8141 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4140 -1.5805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9030 -2.2282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0866 -2.1095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7812 -1.3431 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9648 -1.2244 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6594 -0.4580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1704 0.1897 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8650 0.9561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3760 1.6038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 1 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 c-C15H29\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C15H29\n\n$$$$\nTBDMS\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TBDMS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nTBDMS\n\n$$$$\nUMP\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.3819 -1.7224 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1665 -1.4675 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 -2.5070 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.3020 -2.5070 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0470 -1.7224 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7376 -1.4675 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9091 -0.6605 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6937 -0.4056 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4784 -0.1506 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9487 -1.1902 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4388 0.3790 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6119 -3.1745 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4324 -3.0882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9173 -3.7557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5817 -4.5094 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0667 -5.1768 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7613 -4.5956 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2763 -3.9282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4559 -4.0144 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 2 0 0 0 0\n 5 14 1 6 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 17 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 14 20 1 0 0 0 0\n 20 21 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 UMP\nM SDS EXP 1 1\nM END\n> \nUMP\n\n$$$$\nDbpoc\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Dbpoc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nDbpoc\n\n$$$$\nADAllos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADAllos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADAllos\n\n$$$$\nPO(OEt)2\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PO(OEt)2\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (EtO)2OP\nM END\n> \nPO(OEt)2\n\n> \n(EtO)2OP\n\n$$$$\nTmob\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 5 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 3 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Tmob\nM SAP 1 1 13 0 1\nM SDS EXP 1 1\nM END\n> \nTmob\n\n$$$$\nONO2\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 ONO2\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NO2O\nM END\n> \nONO2\n\n> \nNO2O\n\n$$$$\nSPDP\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.0000 -0.5401 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7796 -0.8101 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4032 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1827 -0.5401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8064 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 SPDP\nM SAP 1 2 1 0 1 4 0 2\nM SDS EXP 1 1\nM END\n> \nSPDP\n\n$$$$\nn-C3H7\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 n-C3H7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C3H7\n\n$$$$\nEt4N\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM CHG 1 3 1\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Et4N\nM SDS EXP 1 1\nM END\n> \nEt4N\n\n$$$$\nSES\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 1.6500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.7309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 SES\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nSES\n\n$$$$\nC21H43\n Mrv15c7 12111511552D \n\n 21 20 0 0 0 0 999 V2000\n 10.4230 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1375 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.8520 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.5664 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.2809 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.9954 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.7099 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.4243 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.1388 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.8533 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.5677 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.2822 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.9967 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.7112 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.4256 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.1401 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.8546 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.5690 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.2835 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.9980 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.7124 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 C21H43\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H43C21\nM END\n> \nC21H43\n\n> \nH43C21\n\n$$$$\nCHL\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CHL\nM SDS EXP 1 1\nM END\n> \nCHL\n\n$$$$\nPOI3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 POI3\nM SDS EXP 1 1\nM END\n> \nPOI3\n\n$$$$\nNMP\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 NMP\nM SDS EXP 1 1\nM END\n> \nNMP\n\n$$$$\nCHO\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CHO\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 OHC\nM END\n> \nCHO\n\n> \nOHC\n\n$$$$\nDArabi\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DArabi\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDArabi\n\n$$$$\nTmb\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tmb\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTmb\n\n$$$$\nNHCbz\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHCbz\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CbzNH\nM END\n> \nNHCbz\n\n> \nCbzNH\n\n$$$$\nCOOt-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOt-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmOOC\nM END\n> \nCOOt-Am\n\n> \nt-AmOOC\n\n$$$$\nPPh3\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 PPh3\nM SDS EXP 1 1\nM MJS SAT 1 Ph3P\nM END\n> \nPPh3\n\n> \nPh3P\n\n$$$$\nPPh2\n Mrv15c7 12111511552D \n\n 13 14 0 0 0 0 999 V2000\n 2.1434 -0.4125 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 1 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 PPh2\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Ph2P\nM END\n> \nPPh2\n\n> \nPh2P\n\n$$$$\nSEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 SEt\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtS\nM END\n> \nSEt\n\n> \nEtS\n\n$$$$\nADTalos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADTalos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADTalos\n\n$$$$\nMthp\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Mthp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nMthp\n\n$$$$\nNHPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 NHPh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhNH\nM END\n> \nNHPh\n\n> \nPhNH\n\n$$$$\nNHPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrNH\nM END\n> \nNHPr\n\n> \nPrNH\n\n$$$$\nOn-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 On-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmO\nM END\n> \nOn-Am\n\n> \nn-AmO\n\n$$$$\nAcOH\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 AcOH\nM SDS EXP 1 1\nM END\n> \nAcOH\n\n$$$$\ntHexyl\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 tHexyl\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \ntHexyl\n\n$$$$\nC19H39\n Mrv15c7 12111511552D \n\n 19 18 0 0 0 0 999 V2000\n 9.1855 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9000 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6145 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3289 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.0434 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.7579 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.4724 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.1868 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.9013 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.6158 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.3302 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.0447 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.7592 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.4737 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.1881 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.9026 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.6171 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.3315 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.0460 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 C19H39\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H39C19\nM END\n> \nC19H39\n\n> \nH39C19\n\n$$$$\nc-C22H43\n Mrv15c7 12111511552D \n\n 22 22 0 0 0 0 999 V2000\n 3.2151 2.3029 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6850 2.9810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 2.9132 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8595 2.1673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3897 1.4891 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7421 0.7432 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2722 0.0650 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6246 -0.6810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1548 -1.3591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 -2.1051 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0373 -2.7832 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2151 -2.7154 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7453 -3.3935 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 -3.3257 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5707 -2.5798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0405 -1.9016 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6882 -1.1557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1580 -0.4775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8056 0.2685 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2755 0.9466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 1.6926 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3929 2.3707 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 1 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 c-C22H43\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C22H43\n\n$$$$\nDMPS\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DMPS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDMPS\n\n$$$$\nPOBr3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 POBr3\nM SDS EXP 1 1\nM END\n> \nPOBr3\n\n$$$$\nPO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 3 1 -1 3 -1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 PO4\nM SDS EXP 1 1\nM END\n> \nPO4\n\n$$$$\nPO3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\nM CHG 2 1 -1 4 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PO3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 O3P\nM END\n> \nPO3\n\n> \nO3P\n\n$$$$\nDMPM\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 3 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 DMPM\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDMPM\n\n$$$$\nCO2s-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2s-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmO2C\nM END\n> \nCO2s-Am\n\n> \ns-AmO2C\n\n$$$$\nCOF\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COF\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 FCO\nM END\n> \nCOF\n\n> \nFCO\n\n$$$$\ni-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 i-C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-C5H11\n\n$$$$\nBeoc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Beoc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nBeoc\n\n$$$$\nDTBMS\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6039 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3020 -0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DTBMS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDTBMS\n\n$$$$\nPNB\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 4 11 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 PNB\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nPNB\n\n$$$$\nSiPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrS\nM END\n> \nSiPr\n\n> \niPrS\n\n$$$$\nTol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Tol\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTol\n\n$$$$\nBmv\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Bmv\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBmv\n\n$$$$\n2-Abz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 2-Abz\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n2-Abz\n\n$$$$\nSPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 SPh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhS\nM END\n> \nSPh\n\n> \nPhS\n\n$$$$\nTos\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tos\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTos\n\n$$$$\nSPy\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 SPy\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nSPy\n\n$$$$\nMts\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 2 0 0 0 0\n 2 9 1 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Mts\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nMts\n\n$$$$\nSPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrS\nM END\n> \nSPr\n\n> \nPrS\n\n$$$$\nMtt\n Mrv15c7 12111511552D \n\n 20 22 0 0 0 0 999 V2000\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 9 14 1 0 0 0 0\n 8 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 2 0 0 0 0\n 15 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 Mtt\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nMtt\n\n$$$$\nOn-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 On-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuO\nM END\n> \nOn-Bu\n\n> \nn-BuO\n\n$$$$\nMtr\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\n 3 11 1 0 0 0 0\n 8 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 12 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Mtr\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nMtr\n\n$$$$\nBDTalos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDTalos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDTalos\n\n$$$$\nneoAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 neoAm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nneoAm\n\n$$$$\nTpt\n Mrv15c7 12111511552D \n\n 20 24 0 0 0 0 999 V2000\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5664 -1.1000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5664 -0.2750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2809 0.1375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9954 -0.2750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9954 -1.1000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2809 -1.5125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 4 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 1 14 1 0 0 0 0\n 12 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 5 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 2 0 0 0 0\n 15 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 Tpt\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nTpt\n\n$$$$\nPtBu3\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n -0.6039 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3020 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2539 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 PtBu3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPtBu3\n\n$$$$\nP(OMe)2\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 P(OMe)2\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (MeO)2P\nM END\n> \nP(OMe)2\n\n> \n(MeO)2P\n\n$$$$\nNHMe\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NHMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeNH\nM END\n> \nNHMe\n\n> \nMeNH\n\n$$$$\nGMP\n Mrv15c7 12111511552D \n\n 24 26 0 0 1 0 999 V2000\n 4.0668 2.3479 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.1104 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -0.1271 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 2.3479 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 2.1904 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 0.8555 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8838 2.9750 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0992 3.2299 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0992 4.0549 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.5683 4.5399 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4820 5.3603 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.1495 5.8453 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8169 6.3302 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6646 6.5127 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6344 5.1778 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8838 4.3099 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.1387 5.0945 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3687 3.6424 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1937 3.6424 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 2 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 12 9 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 6 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 17 19 1 0 0 0 0\n 17 20 2 0 0 0 0\n 14 21 1 0 0 0 0\n 21 22 1 1 0 0 0\n 21 23 1 0 0 0 0\n 12 23 1 0 0 0 0\n 23 24 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 GMP\nM SDS EXP 1 1\nM END\n> \nGMP\n\n$$$$\nNHiPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrNH\nM END\n> \nNHiPr\n\n> \niPrNH\n\n$$$$\nn-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 n-Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Am\n\n$$$$\nCONHEt\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CONHEt\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtNHCO\nM END\n> \nCONHEt\n\n> \nEtNHCO\n\n$$$$\nNHtBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHtBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuNH\nM END\n> \nNHtBu\n\n> \ntBuNH\n\n$$$$\nCO2K\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CO2K\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KO2C\nM END\n> \nCO2K\n\n> \nKO2C\n\n$$$$\nDGluco\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DGluco\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDGluco\n\n$$$$\nOTHP\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 OTHP\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 THPO\nM END\n> \nOTHP\n\n> \nTHPO\n\n$$$$\nCO2Me\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CO2Me\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeO2C\nM END\n> \nCO2Me\n\n> \nMeO2C\n\n$$$$\nCO2H\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 CO2H\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HO2C\nM END\n> \nCO2H\n\n> \nHO2C\n\n$$$$\nC9H19\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.9980 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4270 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1414 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8559 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.5704 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2849 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9993 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7138 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 C9H19\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H19C9\nM END\n> \nC9H19\n\n> \nH19C9\n\n$$$$\nc-C5H9\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 c-C5H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C5H9\n\n$$$$\nn-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 n-Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Bu\n\n$$$$\nBpoc\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n -0.1105 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\n 10 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 13 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Bpoc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nBpoc\n\n$$$$\nCMP\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.7145 6.7661 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 5.9411 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 5.5286 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 4.7036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 4.2911 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 4.2911 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 4.7036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 5.5286 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 3.4661 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.3819 2.9812 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 2.1965 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.6119 1.5291 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2763 0.7754 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7613 0.1080 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2462 -0.5595 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0938 -0.3769 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4287 0.5929 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3020 2.1965 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.1830 1.5291 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0470 2.9812 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7376 3.2361 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 9 6 1 6 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 14 16 1 0 0 0 0\n 14 17 2 0 0 0 0\n 11 18 1 0 0 0 0\n 18 19 1 1 0 0 0\n 18 20 1 0 0 0 0\n 9 20 1 0 0 0 0\n 20 21 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 CMP\nM SDS EXP 1 1\nM END\n> \nCMP\n\n$$$$\nCO2s-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2s-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuO2C\nM END\n> \nCO2s-Bu\n\n> \ns-BuO2C\n\n$$$$\nAcAc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 AcAc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nAcAc\n\n$$$$\nHse\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Hse\nM SAP 1 2 1 0 Al 6 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nQxc\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 3 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Qxc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nQxc\n\n$$$$\nNHtAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHtAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmNH\nM END\n> \nNHtAm\n\n> \ntAmNH\n\n$$$$\nC8H17\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 C8H17\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H17C8\nM END\n> \nC8H17\n\n> \nH17C8\n\n$$$$\nCOOs-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOs-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmOOC\nM END\n> \nCOOs-Am\n\n> \ns-AmOOC\n\n$$$$\nCS2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 1 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 CS2\nM SDS EXP 1 1\nM END\n> \nCS2\n\n$$$$\nBr2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Br2\nM SDS EXP 1 1\nM END\n> \nBr2\n\n$$$$\nc-C11H21\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 1.5424 0.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2919 1.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8514 0.5812 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4477 -0.1383 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6078 -1.0268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0015 -1.5863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2138 -1.3410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0324 -0.5362 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2447 -0.2909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0633 0.5140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6696 1.0735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 1 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 c-C11H21\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C11H21\n\n$$$$\nC10H21\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 2.2836 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9980 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4270 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1414 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8559 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.5704 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2849 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9993 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7138 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 C10H21\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H21C10\nM END\n> \nC10H21\n\n> \nH21C10\n\n$$$$\nTrt\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 Trt\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTrt\n\n$$$$\nCO2t-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2t-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuO2C\nM END\n> \nCO2t-Bu\n\n> \nt-BuO2C\n\n$$$$\nDEIPS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DEIPS\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nDEIPS\n\n$$$$\nAdoc\n Mrv15c7 12111511552D \n\n 13 15 0 0 0 0 999 V2000\n 0.1373 -3.7210 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1373 -2.8960 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -2.4835 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -1.6585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1163 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -1.6156 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -0.1208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -0.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5873 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 4 13 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 8 13 1 0 0 0 0\n 10 12 1 0 0 0 0\n 4 12 1 0 0 0 0\n 6 11 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Adoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAdoc\n\n$$$$\nTrp\n Mrv15c7 12111511552D \n\n 14 15 0 0 0 0 999 V2000\n -1.7571 0.3107 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2054 0.9268 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3964 0.7554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 -0.0321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6268 -0.6964 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 -1.3661 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6429 -1.1089 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6429 -0.2839 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3554 0.1286 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0679 -0.2839 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0679 -1.1089 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3554 -1.5214 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4625 1.7089 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.2661 1.8804 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\n 2 13 1 0 0 0 0\n 13 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Trp\nM SAP 1 3 1 0 Al 13 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nP(OEt)2\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 P(OEt)2\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (EtO)2P\nM END\n> \nP(OEt)2\n\n> \n(EtO)2P\n\n$$$$\nSi-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Si-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmS\nM END\n> \nSi-Am\n\n> \ni-AmS\n\n$$$$\nTre\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Tre\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nTre\n\n$$$$\nAmoc\n Mrv15c7 12111511552D \n\n 18 20 0 0 0 0 999 V2000\n 0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 5 18 1 0 0 0 0\n 13 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Amoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAmoc\n\n$$$$\nDpp\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 4.2868 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 11 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dpp\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDpp\n\n$$$$\nHFIP\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 HFIP\nM SDS EXP 1 1\nM END\n> \nHFIP\n\n$$$$\nDMTr\n Mrv15c7 12111511552D \n\n 23 25 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 19 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 16 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 DMTr\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDMTr\n\n$$$$\nOTES\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 3 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTES\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TESO\nM END\n> \nOTES\n\n> \nTESO\n\n$$$$\nBDGalac\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDGalac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDGalac\n\n$$$$\nCO2t-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2t-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmO2C\nM END\n> \nCO2t-Am\n\n> \nt-AmO2C\n\n$$$$\nSLi\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Li 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SLi\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 LiS\nM END\n> \nSLi\n\n> \nLiS\n\n$$$$\nFmoc\n Mrv15c7 12111511552D \n\n 17 19 0 0 0 0 999 V2000\n 0.5050 -3.1605 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -2.7480 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -1.9230 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -1.5105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -0.6855 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6014 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4084 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9604 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7054 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8985 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3464 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5214 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2665 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4595 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0925 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1624 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9694 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 5 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Fmoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nFmoc\n\n$$$$\nCO2Na\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CO2Na\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaO2C\nM END\n> \nCO2Na\n\n> \nNaO2C\n\n$$$$\n2-6Clb\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 2-6Clb\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \n2-6Clb\n\n$$$$\nCOOs-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOs-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuOOC\nM END\n> \nCOOs-Bu\n\n> \ns-BuOOC\n\n$$$$\nNHEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NHEt\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtNH\nM END\n> \nNHEt\n\n> \nEtNH\n\n$$$$\nPEG4\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 7.8700 -0.3745 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1349 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4430 -0.4494 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7079 -0.0749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0160 -0.5243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2809 -0.1498 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5891 -0.5992 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8540 -0.2247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1621 -0.6741 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4270 -0.2996 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7351 -0.7490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.3745 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 PEG4\nM SAP 1 2 12 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nPEG4\n\n$$$$\n2-Naph\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 2-Naph\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \n2-Naph\n\n$$$$\nMpc\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Mpc\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nMpc\n\n$$$$\nPEG3\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 PEG3\nM SAP 1 2 9 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nPEG3\n\n$$$$\nCO2Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrO2C\nM END\n> \nCO2Pr\n\n> \nPrO2C\n\n$$$$\nc-C8H15\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.9959 1.4904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0738 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 -0.6654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0821 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 1 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 c-C8H15\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C8H15\n\n$$$$\nPO(OMe)2\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 PO(OMe)2\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (MeO)2OP\nM END\n> \nPO(OMe)2\n\n> \n(MeO)2OP\n\n$$$$\nDoc\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 2.6664 -2.3645 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.3645 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 0.5230 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Doc\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nDoc\n\n$$$$\nm-Tolyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 m-Tolyl\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nm-Tolyl\n\n$$$$\nNHTos\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHTos\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TosNH\nM END\n> \nNHTos\n\n> \nTosNH\n\n$$$$\nSMe\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeS\nM END\n> \nSMe\n\n> \nMeS\n\n$$$$\nDFruct\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DFruct\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDFruct\n\n$$$$\nDns\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 14 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dns\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nDns\n\n$$$$\nring9\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 1.1333 1.6186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9086 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3211 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1778 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5458 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7208 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0888 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0544 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3581 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 1 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 ring9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring9\n\n$$$$\nSO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 0.0000 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 SO2\nM SAP 1 2 2 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nSO2\n\n$$$$\nBoc\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 1 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Boc\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nBoc\n\n$$$$\nring8\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.9959 1.4904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0738 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 -0.6654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0821 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 1 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 ring8\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring8\n\n$$$$\nH2O\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 0.7145 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 H2O\nM SDS EXP 1 1\nM END\n> \nH2O\n\n$$$$\nOrn\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7625 1.8429 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Orn\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nring5\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 ring5\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring5\n\n$$$$\nC6H13\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 C6H13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H13C6\nM END\n> \nC6H13\n\n> \nH13C6\n\n$$$$\nring4\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 ring4\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring4\n\n$$$$\nFor\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 For\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nFor\n\n$$$$\nring7\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.8566 1.3632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5999 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7834 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2691 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4441 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0703 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1133 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 1 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 ring7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring7\n\n$$$$\nSO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 2 1 -1 3 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 SO4\nM SDS EXP 1 1\nM END\n> \nSO4\n\n$$$$\nring6\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 ring6\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring6\n\n$$$$\nDnp\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 2 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\n 7 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 1 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Dnp\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDnp\n\n$$$$\nring3\n Mrv15c7 12111511552D \n\n 3 3 0 0 0 0 999 V2000\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 1 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 ring3\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring3\n\n$$$$\nCOOsBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOsBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 sBuOOC\nM END\n> \nCOOsBu\n\n> \nsBuOOC\n\n$$$$\nBom\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Bom\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBom\n\n$$$$\nDMSO\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 DMSO\nM SDS EXP 1 1\nM END\n> \nDMSO\n\n$$$$\n3-Fur\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 3-Fur\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \n3-Fur\n\n$$$$\nMsc\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.1250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -2.2539 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Msc\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nMsc\n\n$$$$\nSNa\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SNa\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaS\nM END\n> \nSNa\n\n> \nNaS\n\n$$$$\nTIPDS\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 0.0000 -1.5787 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.9912 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8162 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.5787 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.9912 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.5787 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.9912 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.5787 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8162 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.7537 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.3412 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.3412 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.7537 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.3412 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7645 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 4 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 TIPDS\nM SAP 1 2 4 0 1 6 0 2\nM SDS EXP 1 1\nM END\n> \nTIPDS\n\n$$$$\nADGluco\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADGluco\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADGluco\n\n$$$$\nCO2Ph\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 CO2Ph\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhO2C\nM END\n> \nCO2Ph\n\n> \nPhO2C\n\n$$$$\nNaOH\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NaOH\nM SDS EXP 1 1\nM END\n> \nNaOH\n\n$$$$\nP+Ph3\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM CHG 1 7 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 P+Ph3\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Ph3P+\nM END\n> \nP+Ph3\n\n> \nPh3P+\n\n$$$$\nOBoc\n Mrv1722009201714142D \n\n 8 7 0 0 0 0 999 V2000\n 0.4125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OBoc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BocO\nM END\n> \nOBoc\n\n> \nBocO\n\n$$$$\nNBoc\n Mrv1722009201714142D \n\n 8 7 0 0 0 0 999 V2000\n 0.4125 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.8579 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.1434 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NBoc\nM SAP 1 2 7 0 1 7 0 2\nM SDS EXP 1 1\nM MJS SAT 1 BocN\nM END\n> \nNBoc\n\n> \nBocN\n\n$$$$\n"] \ No newline at end of file diff --git a/public/marvinjs/gui/clear.cache.gif b/public/marvinjs/gui/clear.cache.gif new file mode 100644 index 0000000000000000000000000000000000000000..e565824aafafe632011b281cba976baf8b3ba89a GIT binary patch literal 43 qcmZ?wbhEHbWMp7uXkcLY4+e@qSs1y10y+#p0Fq%~V)9{Rum%7ZWeN!Z literal 0 HcmV?d00001 diff --git a/public/marvinjs/gui/css/editor.css b/public/marvinjs/gui/css/editor.css new file mode 100644 index 000000000..457615b34 --- /dev/null +++ b/public/marvinjs/gui/css/editor.css @@ -0,0 +1,61 @@ +@charset "utf-8"; +/* CSS Document */ + +.mjs-body{ + color: black; + margin: 0px; + border: 0px; + padding: 0px; + overflow: hidden; + background-color: white; + height:100vh; + width: 100vw; + direction: ltr; +} + +.mjs-body noscript > div { + width: 442px; + position: absolute; + top: 50%; + left: 50%; + margin: -40px 0 0 -246px; + background-color: white; + border: 1px solid red; + padding: 20px; +} + +.mjs-body noscript > div > p { + font-family: sans-serif; + color: red; + margin: 0; +} + +.mjs-top, +.mjs-top table td, +.mjs-top select, +.mjs-top button { + font-family: Arial Unicode MS, Arial, sans-serif; + font-size: small; +} + +.mjs-top a, +.mjs-top a:visited { + color: #0066cc; + text-decoration:none; +} + +.mjs-top a:hover { + color: #0066cc; + text-decoration:underline; +} + +.mjs-top select { + background: white; +} + +/* UIBinder:InlineBar */ +.mjs-toolbar div.horizontal, .mjs-touchToolbar div.horizontal { + display: -webkit-inline-flex; + display: -ms-inline-flex; + display: inline-flex; +} diff --git a/public/marvinjs/gui/css/editor.min.css b/public/marvinjs/gui/css/editor.min.css new file mode 100644 index 000000000..9f83d34a6 --- /dev/null +++ b/public/marvinjs/gui/css/editor.min.css @@ -0,0 +1 @@ +@charset "utf-8";.mjs-body{color:black;margin:0;border:0;padding:0;overflow:hidden;background-color:white;height:100vh;width:100vw;direction:ltr}.mjs-body noscript>div{width:442px;position:absolute;top:50%;left:50%;margin:-40px 0 0 -246px;background-color:white;border:1px solid red;padding:20px}.mjs-body noscript>div>p{font-family:sans-serif;color:red;margin:0}.mjs-top,.mjs-top table td,.mjs-top select,.mjs-top button{font-family:Arial Unicode MS,Arial,sans-serif;font-size:small}.mjs-top a,.mjs-top a:visited{color:#06c;text-decoration:none}.mjs-top a:hover{color:#06c;text-decoration:underline}.mjs-top select{background:white}.mjs-toolbar div.horizontal,.mjs-touchToolbar div.horizontal{display:-webkit-inline-flex;display:-ms-inline-flex;display:inline-flex} \ No newline at end of file diff --git a/public/marvinjs/gui/gui.nocache.js b/public/marvinjs/gui/gui.nocache.js new file mode 100644 index 000000000..64c213699 --- /dev/null +++ b/public/marvinjs/gui/gui.nocache.js @@ -0,0 +1,25 @@ +function gui(){var N='bootstrap',O='begin',P='gwt.codesvr.gui=',Q='gwt.codesvr=',R='gui',S='startup',T='DUMMY',U=0,V=1,W='iframe',X='position:absolute; width:0; height:0; border:none; left: -1000px;',Y=' top: -1000px;',Z='CSS1Compat',$='',_='',ab='<\/head><\/body><\/html>',bb='undefined',cb='readystatechange',db=10,eb='script',fb='javascript',gb='Failed to load ',hb='moduleStartup',ib='scriptTagAdded',jb='moduleRequested',kb='meta',lb='name',mb='gui::',nb='::',ob='gwt:property',pb='content',qb='=',rb='gwt:onPropertyErrorFn',sb='Bad handler "',tb='" for "gwt:onPropertyErrorFn"',ub='gwt:onLoadErrorFn',vb='" for "gwt:onLoadErrorFn"',wb='#',xb='?',yb='/',zb='img',Ab='clear.cache.gif',Bb='baseUrl',Cb='gui.nocache.js',Db='base',Eb='//',Fb='gecko.variant',Gb='user.agent',Hb='gecko1_8',Ib='none',Jb='trident',Kb='ie11',Lb='std',Mb=2,Nb='onLoad',Ob='default',Pb='webkit',Qb='safari',Rb='msie',Sb=11,Tb='ie10',Ub=9,Vb='ie9',Wb=8,Xb='ie8',Yb='gecko',Zb=3,$b=4,_b='selectingPermutation',ac='gui.devmode.js',bc='5C5DC5E8F823390618266388A9FBC038',cc=':1',dc=':2',ec='foobar',fc=':3',gc=':4',hc=':5',ic=':',jc='.cache.js',kc='loadExternalRefs',lc='end',mc='http:',nc='file:',oc='_gwt_dummy_',pc='__gwtDevModeHook:gui',qc='Ignoring non-whitelisted Dev Mode URL: ',rc=':moduleBase',sc='head';var n=window;var o=document;q(N,O);function p(){var a=n.location.search;return a.indexOf(P)!=-1||a.indexOf(Q)!=-1} +function q(a,b){if(n.__gwtStatsEvent){n.__gwtStatsEvent({moduleName:R,sessionId:n.__gwtStatsSessionId,subSystem:S,evtGroup:a,millis:(new Date).getTime(),type:b})}} +gui.__sendStats=q;gui.__moduleName=R;gui.__errFn=null;gui.__moduleBase=T;gui.__softPermutationId=U;gui.__computePropValue=null;gui.__getPropMap=null;gui.__installRunAsyncCode=function(){};gui.__gwtStartLoadingFragment=function(){return null};gui.__gwt_isKnownPropertyValue=function(){return false};gui.__gwt_getMetaProperty=function(){return null};var r=null;var s=n.__gwt_activeModules=n.__gwt_activeModules||{};s[R]={moduleName:R};gui.__moduleStartupDone=function(e){var f=s[R].bindings;s[R].bindings=function(){var a=f?f():{};var b=e[gui.__softPermutationId];for(var c=U;c=U){continue}if(j==ob){k=i.getAttribute(pb);if(k){var l,m=k.indexOf(qb);if(m>=U){j=k.substring(U,m);l=k.substring(m+V)}else{j=k;l=_}c[j]=l}}else if(j==rb){k=i.getAttribute(pb);if(k){try{d=eval(k)}catch(a){alert(sb+k+tb)}}}else if(j==ub){k=i.getAttribute(pb);if(k){try{e=eval(k)}catch(a){alert(sb+k+vb)}}}}}__gwt_getMetaProperty=function(a){var b=c[a];return b==null?null:b};r=d;gui.__errFn=e} +function B(){function e(a){var b=a.lastIndexOf(wb);if(b==-1){b=a.length}var c=a.indexOf(xb);if(c==-1){c=a.length}var d=a.lastIndexOf(yb,Math.min(c,b));return d>=U?a.substring(U,d+V):_} +function f(a){if(a.match(/^\w+:\/\//)){}else{var b=o.createElement(zb);b.src=a+Ab;a=e(b.src)}return a} +function g(){var a=__gwt_getMetaProperty(Bb);if(a!=null){return a}return _} +function h(){var a=o.getElementsByTagName(eb);for(var b=U;bU){return a[a.length-V].href}return _} +function j(){var a=o.location;return a.href==a.protocol+Eb+a.host+a.pathname+a.search+a.hash} +var k=g();if(k==_){k=h()}if(k==_){k=i()}if(k==_&&j()){k=e(o.location.href)}k=f(k);return k} +function C(a){if(a.match(/^\//)){return a}if(a.match(/^[a-zA-Z]+:\/\//)){return a}return gui.__moduleBase+a} +function D(){var f=[];var g=U;function h(a,b){var c=f;for(var d=U,e=a.length-V;d=db&&b=Ub&&b=Wb&&b=Sb}())return Hb;return Qb};i[Gb]={'gecko1_8':U,'ie10':V,'ie8':Mb,'ie9':Zb,'safari':$b};__gwt_isKnownPropertyValue=function(a,b){return b in i[a]};gui.__getPropMap=function(){var a={};for(var b in i){if(i.hasOwnProperty(b)){a[b]=k(b)}}return a};gui.__computePropValue=k;n.__gwt_activeModules[R].bindings=gui.__getPropMap;q(N,_b);if(p()){return C(ac)}var l;try{h([Kb,Ob,Hb],bc);h([Lb,Ob,Hb],bc+cc);h([Ib,Ob,Qb],bc+dc);h([Kb,ec,Hb],bc+fc);h([Lb,ec,Hb],bc+gc);h([Ib,ec,Qb],bc+hc);l=f[k(Fb)][k(Nb)][k(Gb)];var m=l.indexOf(ic);if(m!=-1){g=parseInt(l.substring(m+V),db);l=l.substring(U,m)}}catch(a){}gui.__softPermutationId=g;return C(l+jc)} +function F(){if(!n.__gwt_stylesLoaded){n.__gwt_stylesLoaded={}}q(kc,O);q(kc,lc)} +A();gui.__moduleBase=B();s[R].moduleBase=gui.__moduleBase;var G=D();if(n){var H=!!(n.location.protocol==mc||n.location.protocol==nc);n.__gwt_activeModules[R].canRedirect=H;function I(){var b=oc;try{n.sessionStorage.setItem(b,b);n.sessionStorage.removeItem(b);return true}catch(a){return false}} +if(H&&I()){var J=pc;var K=n.sessionStorage[J];if(!/^http:\/\/(localhost|127\.0\.0\.1)(:\d+)?\/.*$/.test(K)){if(K&&(window.console&&console.log)){console.log(qc+K)}K=_}if(K&&!n[J]){n[J]=true;n[J+rc]=B();var L=o.createElement(eb);L.src=K;var M=o.getElementsByTagName(sc)[U];M.insertBefore(L,M.firstElementChild||M.children[U]);return false}}}F();q(N,lc);w(G);return true} +gui.succeeded=gui(); \ No newline at end of file diff --git a/public/marvinjs/gui/lib/promise-1.0.0.min.js b/public/marvinjs/gui/lib/promise-1.0.0.min.js new file mode 100644 index 000000000..8c87983f3 --- /dev/null +++ b/public/marvinjs/gui/lib/promise-1.0.0.min.js @@ -0,0 +1 @@ +!function(){var a,b,c,d;!function(){var e={},f={};a=function(a,b,c){e[a]={deps:b,callback:c}},d=c=b=function(a){function c(b){if("."!==b.charAt(0))return b;for(var c=b.split("/"),d=a.split("/").slice(0,-1),e=0,f=c.length;f>e;e++){var g=c[e];if(".."===g)d.pop();else{if("."===g)continue;d.push(g)}}return d.join("/")}if(d._eak_seen=e,f[a])return f[a];if(f[a]={},!e[a])throw new Error("Could not find module "+a);for(var g,h=e[a],i=h.deps,j=h.callback,k=[],l=0,m=i.length;m>l;l++)"exports"===i[l]?k.push(g={}):k.push(b(c(i[l])));var n=j.apply(this,k);return f[a]=g||n}}(),a("promise/all",["./utils","exports"],function(a,b){"use strict";function c(a){var b=this;if(!d(a))throw new TypeError("You must pass an array to all.");return new b(function(b,c){function d(a){return function(b){f(a,b)}}function f(a,c){h[a]=c,0===--i&&b(h)}var g,h=[],i=a.length;0===i&&b([]);for(var j=0;j + + + +Marvin JS - v19.11.0 + + + + + + + + +
    + +
    +
    +

    + Documentation +

    +
    + +
    +

    + Examples +

    +
    + + diff --git a/public/marvinjs/js/lib/jquery-1.9.1.min.js b/public/marvinjs/js/lib/jquery-1.9.1.min.js new file mode 100644 index 000000000..006e95310 --- /dev/null +++ b/public/marvinjs/js/lib/jquery-1.9.1.min.js @@ -0,0 +1,5 @@ +/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license +//@ sourceMappingURL=jquery.min.map +*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="
    a",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="
    t
    ",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="
    ",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj; +return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},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)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="
    ",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}: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},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?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},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===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]||st.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]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(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){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&>(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/\s*$/g,At={option:[1,""],legend:[1,"
    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:b.support.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?""!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l) +}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b(" - -
    -

    Structure Checker configuration

    -
    -

    Structure Errors

    -
    -
    -
    -

    Code comments

    -

    This examples requires molchange.js that defines MolChangeHandler class to aggregate molecule change events.

    -

    First of all, CheckersWS checks which services are availables. It provides a Promise to notify when the list of the available -services arrived (or notify if services are unreachables). -

    After that, the following steps will be executed: -

      -
    • With the add function of the Checkers object, selected structure checkers are initialized.
    • -
    • Retrieves the reference for the sketcher that runs in the iframe and runs the onSketchLoaded function.
    • -
    -
    $(document).ready(function handleDocumentReady (e) {
    -	var config = [ 
    -		{id: "BondLengthChecker", color: "#ffe211", title: "Bond length"},
    -		{id: "BondAngleChecker", color: "#ef6671", title: "Bond angle"},
    -		{id: "AtomMapChecker", color: "#d26ff1", title: "Atom map"}
    -	];
    -	CheckersWS.then(function(services) {
    -		for(var i = 0; i < config.length; i++) {
    -			if($.inArray(config[i].id, services)) {
    -				Checkers.add(config[i].id, config[i].color, config[i].title);
    -			}
    -		}
    -		MarvinJSUtil.getEditor("#sketch").then(onSketchLoaded, function () {
    -			alert("Cannot retrieve sketcher instance from iframe");
    -		});
    -	}, function(error) {
    -		$('#checkers-panel-result').html('structure checker is not available');
    -	});
    -});
    -});
    -

    The onSketchLoaded function instantiates a MolChangeHandler. Its first parameter is the reference of the editor to listen. -The second one is a callback function that is performed at each mol change event.

    -
    function onSketchLoaded(sketcherInstance) {
    -	marvinSketcherInstance = sketcherInstance;
    -	// aggregator for molecule change events
    -	new MolChangeHandler(sketcherInstance, onMolChange);
    -}
    -

    If you take a look at the add function of Checkers, you can see that it creates a CheckerWidget object for each checker.

    -
    	/** Appends a new checker to the document.
    -	* @param id - the name of the checker as referred in JChem WS (see JChem WS documentation)
    -	* @param color - colorizes the result (atoms/bonds) in the editor with this color
    -	* @param title - the short description of the checker that displays in the config panel below.
    -	*/
    -	function add(id, color, title) {
    -		var widget = new CheckerWidget(id, color, title);
    -		$("#checkers-panel-config").append(widget.asWidget());
    -		widgets.push(widget);
    -	}
    -

    Returning to the onMolChange function, you can see that it resets the current highlight on the sketcher, gets the source of the current structure and performs a -structure check on it.

    -
    function reset() {
    -	// reset current highlight
    -	marvinSketcherInstance.setHighlight({});
    -	$('#checkers-panel-result').empty();
    -}
    -
    -var last = null;
    -
    -function onMolChange(e) {
    -	last = e;
    -	reset();
    -	e.target.exportStructure("mrv").then(function(source) {
    -		if(!e.isDeprecated) { // unless a newer molchange event deprecate this event
    -			e.source = source;
    -			Checkers.check(source);
    -		}
    -	},alert);
    -}
    -

    If you take a closer look at the Checkers.check function, you can see those CheckerWidgets are enabled where the checkboxes were previously checked. It creates the input for the Structure Checker web service. -Finally, it calls the send method with the created object.

    -
    	/**
    -	* Performs the structure checking on the given molecule source.
    -	* @param source - the molecule source in MRV format.
    -	*/
    -	function check(source) {
    -		var json = {};
    -		json.structure = source;
    -		json.parameters = {};
    -		json.parameters.checkers = [];
    -		for(var i = 0; i < widgets.length; i++) {
    -			var widget = widgets[i];
    -			if(widget.isEnabled()) {
    -				json.parameters.checkers.push({"checkerId": widget.getId() });
    -			}
    -		}
    -		if(json.parameters.checkers.length == 0) {
    -			return;
    -		}
    -		send(json);
    -	}
    -

    The send invokes the web service, then call onSuccess function when the response of web service is received or onFail if any error occured.

    -
    	/* Sends an async request to Structure checker web service. */
    -	function send(json) {
    -		var wsBase = getDefaultServicesPrefix();
    -		// arrange the input for the Structure Checker web service
    -		$.ajax({
    -			"url": wsBase + "/rest-v0/util/calculate/structureChecker"
    -			,"type": "POST"
    -			,"dataType": "json"
    -			,"contentType": "application/json"
    -			,"data": JSON.stringify(json)
    -		}).done(function (data, textStatus, jqXHR) {
    -			onSuccess(data);
    -		}).fail(onFail);
    -	}
    -

    The onSuccess function gets the response of the web service as a parameter (data). Its header field contains the id of the performed checkers. -Each checker result can be referred with its own id. E.g. data.bondlength describes the result of bondlength checker. -A checker result can contain many fields but only the following one are relevant in this case: -

      -
    • checkerName: the title of the checker
    • -
    • description: the error message
    • -
    • errors: a complex object that also describes which atoms and bonds are affected.
    • -
    -The checkerName and the decription is displayed on the current page in the checkers-panel-result div. -Meanwhile the affected atoms and bonds are highlighted in the sketcher. -
    /* Callback to process web service result. */
    -	function onSuccess(data) {
    -		var highlights = [];
    -		if(typeof data.headers == 'object') {
    -			for(checkerId in data.headers) {
    -				if(data.headers.hasOwnProperty(checkerId) && isCheckerResult(data[checkerId])) {
    -					var widget = getWidget(checkerId);
    -					if(widget) {
    -						// display error message
    -						var message = "("+data[checkerId].checkerName+"): "+data[checkerId].description;
    -						$('#checkers-panel-result').append(widget.createErrorWidget(message));
    -						// calculate context to highlight
    -						if(typeof data[checkerId].errors == 'object') {
    -							var indexes = {};
    -							indexes.atoms = getAtoms(data[checkerId].errors.atoms);
    -							indexes.bonds = getBonds(data[checkerId].errors.bonds);
    -							if(indexes.atoms.length || indexes.bonds.length) { // add highlight unless context is empty
    -								highlights.push({
    -									'style': {
    -										'color': widget.getColor(),
    -										'opacity': 0.25
    -									},
    -									'indexes': indexes
    -								});
    -							}
    -						}
    -					}
    -				}
    -			}	
    -		}
    -		// highlight atoms and bonds
    -		marvinSketcherInstance.setHighlight(highlights);
    -	}
    -

    Changing of the configuration (check/uncheck checkbox or modify checker color) also triggers the checking of the structure -(whose source was already stored in the source property of the last molchange event). -

    function onConfigChange(e) {
    -	// reevaluate last consumed molchange event when congfiguration is changed
    -	if(last && !last.isDeprecated && (typeof last.source == 'string')) {
    -		reset();
    -		Checkers.check(last.source);
    -	}
    -}

    -
    - - - diff --git a/public/marvinjs/examples/checker/molchange.js b/public/marvinjs/examples/checker/molchange.js deleted file mode 100644 index d7994ea48..000000000 --- a/public/marvinjs/examples/checker/molchange.js +++ /dev/null @@ -1,61 +0,0 @@ - -/* Notify about molchange events and provides the mol source of the new structure. */ -var MolChangeHandler = (function() { - - function createEvent(sketcher) { - return { - date: new Date(), - target: sketcher, - isDeprecated: false - } - } - - // purge event queue (deactivate events that found there) - function reset(eventQueue) { - for(var i = 0; i < eventQueue.length; i++) { - eventQueue[i].isDeprecated = true; - } - eventQueue = []; - } - - var DELAY = 1000; - - /* - * Constructor of MolChangeHandler. - * @param bind to this Marvin JS editor instance - * @param triggered function at molchange event. - * */ - function MolChangeHandler(sketcher, onSuccess) { - this.sketcher = sketcher; - this.onSuccess = onSuccess; - this.pending = false; - this.eventQueue = []; - var that = this; - this.sketcher.on('molchange', function() { - onMolChange(that); - }); - } - - // wait to aggregate molchange events - function onMolChange(that) { - if(!that.pending) { - that.pending = true; - setTimeout(function() { - that.pending = false; - fireEvent(that); - }, DELAY); - } - } - - // trigger a new event - function fireEvent(that){ - var e = createEvent(that.sketcher); - reset(that.eventQueue); - that.eventQueue.push(e); - var callback = that.onSuccess; - callback(e); - } - - return MolChangeHandler; -}()); - diff --git a/public/marvinjs/examples/demo.html b/public/marvinjs/examples/demo.html deleted file mode 100644 index 7b0cf635e..000000000 --- a/public/marvinjs/examples/demo.html +++ /dev/null @@ -1,427 +0,0 @@ - - - - - Marvin JS Examples - Demo - - - - - - - - - -

    Marvin JS Examples - Demo

    - -
    -
    - -
    -
    -
    -
    -
      -
    • Display options
    • -
    • -
    • -
    • -
    -
    -
    -
      -
    • - - - text as - -
    • -
    •  
    • -
    • -
    • -
    -
    - - -
    - -
    -
    - -

    In this example, you can import a molecule from MDL molfile or MRV format into the editor with the help of the Import and Paste buttons. While the Import button overwrites the canvas content, submitting of the Paste button preserves the current structure and appends the new one.

    - -

    With the Molfile Export and MRV Export buttons, you can retrieve canvas content in the desired format.

    - -

    In this example, you can also control display settings of the editor with the proper checkboxes.

    - -

    You can find the commented code below:

    -

    The InputControllerClass is responsible for the input form that involves the Import, Paste, Reset, Mol Export, MRV Export buttons, the format selector combo box and the text area for molecule source. - It manages the click events of the buttons and provides functions to get/set text from/to the text box.

    - -
    -		
    -		var InputControllerClass = (function () {
    -
    -			var delay = 5;
    -
    -			function InputControllerClass (importButton, pasteButton, formatDropdown, resetButton,	molExportButton, mrvExportButton, srcTextBox) {
    -
    -				this.importButton		= importButton;
    -				this.pasteButton		= pasteButton;
    -				this.formatDropdown		= formatDropdown;
    -				this.resetButton		= resetButton;
    -				this.molExportButton	= molExportButton;
    -				this.mrvExportButton 	= mrvExportButton;
    -				this.srcTextBox 		= srcTextBox;
    -				this.init();
    -			}
    -
    -			InputControllerClass.prototype.init = function init () {
    -				this.importButton.on("click", $.proxy(this.handleImportBtnClick, this));
    -				this.pasteButton.on("click", $.proxy(this.handlePasteBtnClick, this));
    -				this.resetButton.on("click", $.proxy(this.clearTxt, this));
    -				this.molExportButton.on("click", $.proxy(this.handleMolExportBtnClick, this));
    -				this.mrvExportButton.on("click", $.proxy(this.handleMrvExportBtnClick, this));
    -			};
    -
    -			InputControllerClass.prototype.handleImportBtnClick = function handleImportBtnClick (e) {
    -				this.delayCall(importMolAction, [this.getTxt(), this.getFormat()]);
    -			};
    -
    -			InputControllerClass.prototype.handlePasteBtnClick = function handleImportBtnClick (e) {
    -				this.delayCall(pasteMolAction, [this.getTxt(), this.getFormat()]);
    -			};
    -
    -			InputControllerClass.prototype.handleMolExportBtnClick = function handleMolExportBtnClick (e) {
    -				this.delayCall(exportMolAction, ["mol"]);
    -			};
    -
    -			InputControllerClass.prototype.handleMrvExportBtnClick = function handleMolExportBtnClick (e) {
    -				this.delayCall(exportMolAction, ["mrv"]);
    -			};
    -
    -			InputControllerClass.prototype.delayCall = function delayCall (method, args) {
    -				setTimeout(function () {
    -					method.apply(null, args);
    -				}, delay);
    -			};
    -
    -			InputControllerClass.prototype.getTxt = function getTxt () {
    -				return this.srcTextBox.val();
    -			};
    -
    -			InputControllerClass.prototype.setTxt = function setTxt (txt) {
    -				this.srcTextBox.val(txt);
    -			};
    -
    -			InputControllerClass.prototype.clearTxt = function clearTxt () {
    -				this.setTxt("");
    -			};
    -
    -			InputControllerClass.prototype.getFormat = function getFormat (e) {
    -				return this.formatDropdown.val();
    -			};
    -
    -			return InputControllerClass;
    -
    -		}());
    - -

    The MarvinControllerClass is responsible for updating display settings if the state of the CPK coloring or Carbon label visibility checkboxes are modified on the current page. -

    The MarvinControllerClass also provides a reference to the sketcher instance. It is necessary to be able to call the molecule import / export function of the sketcher.

    -
    
    -		var MarvinControllerClass = (function () {
    -
    -			function MarvinControllerClass ( sketcherInstance, cpkCheckbox, mapCheckbox, carbonCheckbox) {
    -				this.sketcherInstance 	= sketcherInstance;
    -				this.cpkCheckbox 		= cpkCheckbox;
    -				this.mapCheckbox 		= mapCheckbox;
    -				this.carbonCheckbox 	= carbonCheckbox;
    -				this.init();
    -			}
    -
    -			MarvinControllerClass.prototype.init = function init () {
    -				this.carbonCheckbox.on("change", $.proxy(this.handleCarbonCheckBoxChange, this));
    -				this.mapCheckbox.on("change", $.proxy(this.handleMapCheckBoxChange, this));
    -				this.cpkCheckbox.on("change", $.proxy(this.handleCpkCheckBoxChange, this));
    -			};
    -
    -			MarvinControllerClass.prototype.handleCarbonCheckBoxChange = function handleCarbonCheckBoxChange (e) {
    -				this.sketcherInstance.setDisplaySettings({
    -					"carbonLabelVisible" : this.carbonCheckbox.is(':checked')
    -				});
    -			};
    -			
    -			MarvinControllerClass.prototype.handleMapCheckBoxChange = function handleMapCheckBoxChange (e) {
    -				this.sketcherInstance.setDisplaySettings({
    -					"atomMapsVisible" : this.mapCheckbox.is(':checked')
    -				});
    -			};
    -
    -			MarvinControllerClass.prototype.handleCpkCheckBoxChange = function handleCpkCheckBoxChange (e) {
    -				this.sketcherInstance.setDisplaySettings({
    -					"cpkColoring" : this.cpkCheckbox.is(':checked')
    -				});
    -			};
    -
    -			return MarvinControllerClass;
    -
    -		}());
    -

    Both InputControllerClass and MarvinControllerClass are instantiated when the page is loaded and the sketcher is loaded: getMarvinSketchIntstance("#sketch").done(...). - The initial value of the text box is set after page loading is finised.

    -
    
    -		$(document).ready(function handleDocumentReady (e) {
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -
    -				marvinController = new MarvinControllerClass(
    -					sketcherInstance,
    -					$("#chbx-coloring"),
    -					$("#chbx-map"),
    -					$("#chbx-carbonVis")
    -				);
    -
    -				inputController = new InputControllerClass(
    -					$("#btn-setMdlmolfile"),
    -					$("#btn-paste"),
    -					$("#list-inputformat"),
    -					$("#btn-clearTxt"),
    -					$("#btn-molExport"),
    -					$("#btn-mrvExport"),
    -					$("#molsource-box")
    -				);
    -
    -			}, function () {
    -				alert("Cannot retrieve sketcher instance from iframe");
    -			});
    -
    -			$("#molsource-box").val(caffeineSource);
    -		});
    -		
    -

    InputControllerClass calls one of these functions with some delay when Import, Export as Mol or Export As Mrv button is pressed.

    -
    		
    -		function pasteMolAction (txt, format) {
    -			var pastePromise = marvinController.sketcherInstance.pasteStructure(format, txt);
    -			pastePromise.then(function() {}, function(error) {
    -				alert(error);
    -			});
    -		}
    -
    -		function importMolAction (txt, format) {
    -			var importPromise = marvinController.sketcherInstance.importStructure(format, txt);
    -			importPromise.then(function() {}, function(error) {
    -				alert(error);
    -			});
    -		}
    -
    -		function exportMolAction (format) {
    -			var ic = inputController;
    -			
    -			var exportPromise = marvinController.sketcherInstance.exportStructure(format, null);
    -			exportPromise.then(function(source) {
    -				ic.setTxt(source);
    -			}, function(error) {
    -				ic.setTxt(error);
    -			});
    -		}
    - - - - diff --git a/public/marvinjs/examples/eflow/alternative-eflow.html b/public/marvinjs/examples/eflow/alternative-eflow.html deleted file mode 100644 index 275493e07..000000000 --- a/public/marvinjs/examples/eflow/alternative-eflow.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Marvin JS Example - Alternative electron flow arrow - - - - - - - -
    - -
    - - diff --git a/public/marvinjs/examples/example-abbrevs.html b/public/marvinjs/examples/example-abbrevs.html deleted file mode 100644 index 8db841c13..000000000 --- a/public/marvinjs/examples/example-abbrevs.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - Marvin JS Example - Load Custom Abbreviation list - - - - - - - - -

    Marvin JS Example - Load Custom Abbreviation list

    - - In this example, custom abbreviation list is loaded, which contains Ac group abbreviation and a custom abbreviated group, named Custom AA. - Just specify the URL of the custom abbreviation list in the data-abbrevsurl attribute of the iframe that contains the editor.

    - Each group in the abbreviation list is described in MDL molfile V2000 or MRV format. - Each group is a titled compound both in molfile and in MRV format the molecule name has to be specified. The molecule name is parsed - as the label of the menu item in the Abbreviation dialog. - Each compound describes an expanded abbreviated (superatom) S-group. - The abbreviation list can be accepted in the following flavors: - - SD file - MRV file - JSON - -
      -
    • SD file

      - Groups in MDL molfile V2000 format are concatenated into an SDfile ($$$$ is the separator among items). - -
      <div class="resizable">
      -	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" 
      -	data-abbrevsurl="examples/abbreviations/myabbreviations.sdf"></iframe>
      -</div>
      -			
      -
    • -
    • MRV file

      - More MRV sources are merged into a multi-compound MRV file (more MDocument tags are enclosed into the root cml tag). -
      <div class="resizable">
      -	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" 
      -	data-abbrevsurl="examples/abbreviations/myabbreviations.mrv"></iframe>
      -</div>
      -			
      -
    • -
    • JSON

      - By using the JavaScript Object Notation (JSON), you can also pass abbreviations to the editor. - You need a JavaScript object with a templates property whose value is an array. Each array item is a JavaScript object that describes an abbreviated group. - The mandatory property of each JavaScript object is the structure property that specifies the molecule source of the abbreviated group. - It can be in MRV of MolV2000 format. - The JavaScript object can contain a name field optionally. This field determines the label of the item in the Abbreviated groups dialog. - If this field is not specified, the name of the molecule (specified in the molecule source) will be displayed in the list in the dialog. -
      
      -		{
      -			"templates": [
      -				{ "structure": <mol source> },
      -				{ "structure": <mol source>, "name": <title> }
      -			]
      -		}
      -		
      - where <mol source> is the JavaScript escaped molecule source in MRV or MolV2000 format. <title> is the label of the menu item in the dialog. -
      <div class="resizable">
      -	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" 
      -	data-abbrevsurl="examples/abbreviations/demoabbrev.json"></iframe>
      -</div>
      -			
      -

      You can generate your own templates file via the following form: Create abbreviation

      -
    • -
    -
    -
    - -
    -

    Resource file

    - -
    -
    - - - - diff --git a/public/marvinjs/examples/example-addbutton.html b/public/marvinjs/examples/example-addbutton.html deleted file mode 100644 index 5b5321791..000000000 --- a/public/marvinjs/examples/example-addbutton.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - Marvin JS Example - Add custom button to the toolbar - - - - - - - - - -

    Marvin JS Example - Add custom button to the toolbar

    - -
    -
    - -
    -
    -
    -

    Append a custom button to the toolbar at startup (the icon URL is relative to the editor.html document):

    -
    
    -	var marvinSketcherInstance;
    -	var buttonAttributes;
    -		
    -	$(document).ready(function handleDocumentReady (e) {
    -
    -	
    -	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -		marvinSketcherInstance = sketcherInstance;
    -		buttonAttributes = {
    -			"name" : "custom",
    -			"image-url" : "examples/images/custom-icon.png",
    -			"toolbar" : "W"
    -		};
    -		marvinSketcherInstance.addButton(buttonAttributes, function() {
    -			alert('The custom button has been pushed.');
    -		});
    -	}, function () {
    -		alert("Cannot retrieve sketcher instance from iframe");
    -	});
    -});
    -		
    -
    - - - diff --git a/public/marvinjs/examples/example-addtemplate.html b/public/marvinjs/examples/example-addtemplate.html deleted file mode 100644 index 26acb2f32..000000000 --- a/public/marvinjs/examples/example-addtemplate.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - Marvin JS Example - Add custom template button to the toolbar - - - - - - - - - -

    Marvin JS Example - Add custom template button to the toolbar

    - -
    -
    - -
    -
    -
    -

    Append a custom template button to the toolbar at startup:

    -
    $(document).ready(function handleDocumentReady (e) {
    -	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -		var templateAttributes = {
    -						'structure':"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<cml xmlns=\"http://www.chemaxon.com\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.chemaxon.com/marvin/help/formats/schema/mrvSchema_6_1_0.xsd\" version=\"ChemAxon file format v6.1, generated by v6.1.0\">\n<MDocument>\n  <MChemicalStruct>\n    <molecule molID=\"m1\">\n      <atomArray atomID=\"a1 a2 a3 a4 a5 a6 a7 a8 a9 a10 a11 a12\" elementType=\"C C N C C C O C C O C O\" x2=\"3.189999994039537 1.6499999940395358 0.8799999940395326 -0.6600000059604675 -1.4300000059604656 -2.970000005960466 -3.7400000059604674 -0.6600000059604636 -1.4300000059604623 -0.6600000059604607 0.8799999940395365 1.6499999940395358\" y2=\"-0.831839567470531 -0.8318395674705295 -2.165518689298567 -2.1655186892985645 -0.8318395674705278 -0.8318395674705257 -2.16551868929856 0.5018395543575072 1.8355186761855429 3.1691977980135775 0.501839554357506 1.8355186761855407\"/>\n      <bondArray>\n        <bond id=\"b1\" atomRefs2=\"a1 a2\" order=\"1\"/>\n        <bond id=\"b2\" atomRefs2=\"a2 a3\" order=\"2\"/>\n        <bond id=\"b3\" atomRefs2=\"a2 a11\" order=\"1\"/>\n        <bond id=\"b4\" atomRefs2=\"a3 a4\" order=\"1\"/>\n        <bond id=\"b5\" atomRefs2=\"a4 a5\" order=\"2\"/>\n        <bond id=\"b6\" atomRefs2=\"a5 a6\" order=\"1\"/>\n        <bond id=\"b7\" atomRefs2=\"a5 a8\" order=\"1\"/>\n        <bond id=\"b8\" atomRefs2=\"a6 a7\" order=\"1\"/>\n        <bond id=\"b9\" atomRefs2=\"a8 a9\" order=\"1\"/>\n        <bond id=\"b10\" atomRefs2=\"a8 a11\" order=\"2\"/>\n        <bond id=\"b11\" atomRefs2=\"a9 a10\" order=\"1\"/>\n        <bond id=\"b12\" atomRefs2=\"a11 a12\" order=\"1\"/>\n      </bondArray>\n    </molecule>\n  </MChemicalStruct>\n</MDocument>\n</cml>",
    -						'name':"Vitamin B6",
    -						'icon':"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAB/ElEQVRIS82Uv0scQRTHZ7eQK4KxUYxy7AbBRhDOYBnuQhqLEJImpFOwUBslnZVckSpVOpsUh3+ACBo0YHFJETHkjktjYaKsYKGIqElzBPY2n2dm5Vh33d3kDhz43Oy9mff9vjf7w1BtHkab9dXtMfCUGqDbC7gsip+TJN0n7gCDMQRF9B4ckfi1ZQaIF3XVl3OaEdtBl1LWmVIfEc2z+SCNuC4qNuUDO7YgtPq4exPbAcK/4CW8DysFgxniX6LuTRKDCZLH4VHQAHGL2DewEJIn7NpIYiBJZShprkQeKLXCo1RDJPT4kt4D2VeAdXgLde2QYx6F/rDK/VjSDnwDh8Renbyvr1ti4B/RBqIZbXDKvKqP77+OaAIRQboIDptADWQ+b1oc5NqFn8EjyhN8Df45S85DWIRXIQZ3iX2CPm0kW37AMnTDbtDAIfhGFprEFrgehmdQbjbJZHqL9frRLLElWNNr8t5s62t5fP8Onuk5pucECoFKbf7Lh+0Yhvy1XO6dZZrujud51Wp1WroMHQbC0oqIbEqlEd+bImvTMA8lX2lkZHGv0VCTtdpM+SaDJyzeh8+IVyI28s1T3+FONvtC9fQ8Vq7rPTUMs9M0vcNKZco/kmvpSd8DSTShQ07QtseV4xz85gVuRFXux9MYxGmF34N/ykqR1PYO/gD34W6BfraGuwAAAABJRU5ErkJggg=="
    -				};
    -		sketcherInstance.addTemplate(templateAttributes);
    -	}, function () {
    -		alert("Cannot retrieve sketcher instance from iframe");
    -	});
    -});
    -		
    -
    - - - diff --git a/public/marvinjs/examples/example-copyasmrv.html b/public/marvinjs/examples/example-copyasmrv.html deleted file mode 100644 index 55b31d8ed..000000000 --- a/public/marvinjs/examples/example-copyasmrv.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Marvin JS Example - Copy As MRV - - - - - - - - - -

    Marvin JS Example - Copy As MRV

    - -
    - -
    -
      -
    • - MRV as copy format - -
    • -
    • -
    -
    -

    This example demonstrates how to control what is placed to the clipboard at copy. - When MRV as copy format checkbox is checked, the structure is placed as MRV to the clipboard at copy. - When the checkbox is unchecked, the default copy format is MDL molfile. - To see the difference, draw something into the editor, select it and press CTR+C shortcut to copy the structure to the clipboard. - After that, click into the textbox and press CTRL+V to paste the clipboard content into the editor. - The format of the pasted content (MRV or MDL molfile) depend on the state of the above checkbox.

    -

    If you would like to clear the textbox content, press apply the Reset textbox button. - -

    At startup, the copyasmrv parameter of Marvin JS editor is setup.

    -
    <iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-toolbars="reporting" data-copyasmrv=true></iframe>
    -

    First of all, you need a reference for the editor. MarvinJSUtil.getEditor(String) provides a Promise object for you to get it - when the editor is ready.

    -

    After the editor is loaded, run the initcontrol() function to bind actions to the MRV as copy format checkbox and to - the Reset textbox button.

    -
    		var marvinSketcherInstance;
    -
    -		$(document).ready(function handleDocumentReady (e) {
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				marvinSketcherInstance = sketcherInstance;
    -				initControl();
    -			},function (error) {
    -				alert("Cannot retrieve sketcher instance from iframe:"+error);
    -			});
    -		});
    -

    Changing of the checkbox value, trigger update settings of the editor. - In the change event handler, the target of the change event is the checkbox. If the checkbox is checked, setup copyasmrv property to true else false. - You can update settings of the editor with its setDisplaySettings(settings) function. At update, specify also the toolbars property - to preserve current toolbar layout.

    -
    		function initControl () {
    -			$("#chbx-copyasmrv").on("change", function (e) {
    -				var settings = {}
    -				settings.copyasmrv = e.target.checked;
    -				settings.toolbars = "reporting";
    -				marvinSketcherInstance.setDisplaySettings(settings);
    -			});
    -			$("#btn-reset").on("click", function (e) {
    -				$("#txt").val("");
    -			});
    -		}
    -
    - - - diff --git a/public/marvinjs/examples/example-couple-editors.html b/public/marvinjs/examples/example-couple-editors.html deleted file mode 100644 index df1d88cb6..000000000 --- a/public/marvinjs/examples/example-couple-editors.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - Marvin JS Example - Couple of Editors - - - - - - - - - -

    Marvin JS Example - Couple of Editors

    - -

    This example demonstrates that you can embed several editors into the same page without any conflict.

    - - -
    -
      -
    • -
    • -
    • -
    -
    - -
    -
    - -
    -
      -
    • -
    • -
    • -
    -
    - -
    -
    -
    - Identify each IFRAME to be able to distinguish the sketcher instances. -
    -		<iframe src="../editor.html" id="box1_sketch" class="sketcher-frame"></iframe>
    -	
    -
    -		<iframe src="../editor.html" id="box2_sketch" class="sketcher-frame"></iframe>
    -	
    - Create SketchControlClass for each sketcher object. Bind controller to the sketcher when it is ready. The controller also manages checkboxes for display settings. -
    -		
    -		var sk1Controller,
    -			sk2Controller;
    -
    -		$(document).ready(function handleDocumentReady (e) {
    -
    -			MarvinJSUtil.getEditor("#box1_sketch").then(function (sketcherInstance) {
    -				sk1Controller = new SketcherControllerClass(
    -					sketcherInstance,
    -					$("#box1_chbx-carbonVis"),
    -					$("#box1_chbx-coloring"),
    -					$("#box1_btn-setmol")
    -				);
    -			}, function () {
    -				alert("Failed to retrieve sketcher in box 1");
    -			});;
    -
    -			MarvinJSUtil.getEditor("#box2_sketch").then(function (sketcherInstance) {
    -				sk2Controller = new SketcherControllerClass(
    -					sketcherInstance,
    -					$("#box2_chbx-carbonVis"),
    -					$("#box2_chbx-coloring"),
    -					$("#box2_btn-setmol")
    -				);
    -			}, function () {
    -				alert("Failed to retrieve sketcher in box 2");
    -			});
    -
    -		});
    -
    -		var SketcherControllerClass = (function () {
    -
    -			function SketcherControllerClass (sketcherInstance, carbonCheckbox, cpkCheckbox, importButton) {
    -				this.sketcherInstance 	= sketcherInstance;
    -				this.carbonCheckbox 	= carbonCheckbox;
    -				this.cpkCheckbox 		= cpkCheckbox;
    -				this.importButton 		= importButton;
    -
    -				this.init();
    -			}
    -
    -			SketcherControllerClass.prototype.init = function init () {
    -				this.carbonCheckbox.on("change", $.proxy(this.handleCarbonCheckBoxChange, this));
    -				this.cpkCheckbox.on("change", $.proxy(this.handleCpkCheckBoxChange, this));
    -				this.importButton.on("click", $.proxy(this.handleImportButtonClick, this));
    -			};
    -
    -			SketcherControllerClass.prototype.handleCarbonCheckBoxChange = function handleCarbonCheckBoxChange (e) {
    -				this.updateDisplaySettings("carbonLabelVisible", this.carbonCheckbox.is(':checked'));
    -			};
    -
    -			SketcherControllerClass.prototype.handleCpkCheckBoxChange = function handleCpkCheckBoxChange (e) {
    -				this.updateDisplaySettings("cpkColoring", this.cpkCheckbox.is(':checked'));
    -			};
    -
    -			SketcherControllerClass.prototype.handleImportButtonClick = function handleImportButtonClick (e) {
    -				this.sketcherInstance.importStructure("mol", caffeineStr);
    -			};
    -
    -			SketcherControllerClass.prototype.updateDisplaySettings = function updateDisplaySettings (key, value) {
    -				var settings = this.sketcherInstance.getDisplaySettings();
    -				settings[key] = value;
    -				this.sketcherInstance.setDisplaySettings(settings);
    -			};
    -
    -			return SketcherControllerClass;
    -
    -		}());		
    -		
    -	
    -
    - - - diff --git a/public/marvinjs/examples/example-create-abbreviation.html b/public/marvinjs/examples/example-create-abbreviation.html deleted file mode 100644 index a904c0d35..000000000 --- a/public/marvinjs/examples/example-create-abbreviation.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - Create Abbreviation list for Marvin JS - - - - - - - - -

    Create Abbreviation list for Marvin JS

    - -

    You can generate abbreviation group list for Marvin JS with the help of the following form. Just fill the form and push the Add button. -

    By repeating these steps, you can append further and further abbreviation group to the templates object.

    -

    Finally, you can copy the textual result (from the textbox) in a file that you can refer later in Marvin JS.

    - - -

    Input

    -

    In the Structure field, an MRV source is expected that contains only one compound, an abbreviated S-group.

    -

    The Name field specifies the label of the menu item in the Abbreviated group dialog. If you do not specify it, its value will be the name of the abbreviation (specified in the MRV file).

    -
    -
  • -
  • -
  • -
  • -
  • - - - -
  • -
    -

    Result

    -
    -
  • -
    - - - - - \ No newline at end of file diff --git a/public/marvinjs/examples/example-create-image.html b/public/marvinjs/examples/example-create-image.html deleted file mode 100644 index 977983528..000000000 --- a/public/marvinjs/examples/example-create-image.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - Marvin JS Examples - Convert Structure To Image - - - - - - - - - - - -

    Marvin JS Examples - Convert Structure To Image

    - -

    In this example, you can create PNG, JPEG or SVG picture from the given molecule source.

    - -
    -
  • Carbon labels
  • -
  • CPK coloring
  • -
  • Show Stereo Info
  • -
  • Show chiral flag
  • -
  • Show atom maps
  • -
  • Show Lone Pairs - -
  • -
  • Atom Indeces
  • -
  • Implicit Hydrogens - -
  • -
  • Display Mode - -
  • -
  • Zoom Mode - -
  • -
  • Width:
  • -
  • Height:
  • -
  • Background Color:
  • -
    - - - -
    -
    -
    -
    - AUTO - mol - mrv - smiles - smarts -
    - -
    - -
    -

    Create a DIV element where the generated images will be embedded. It is hidden till the image is inserted. -

    <div id="imageContainer" class="left10" style="display: none;">
    -  <img id="image" class="bordered" />
    -</div>

    -

    The following dependencies are used in this example: -

      -
    • jquery-1.9.1.min.js - The example is written in JQuery but the ImageExporter API does not require it.
    • -
    • promise-1.0.0.min.js - Promise overlay (required if the current browser does not provide a Promise implementation).
    • -
    • marvinjslauncher.js - The MarvinJSUtil is a helper API to get the marvin object from the iframe.
    • -
    • webservices.js - Defines the getDefaultServices function that provides the settings of the expected services.
    • -

    -
    	<script src="../js/lib/jquery-1.9.1.min.js"></script>
    -	<script src="../gui/lib/promise-1.0.0.min.js"></script>
    -	<script src="../js/marvinjslauncher.js"></script>	
    -	<script src="../js/webservices.js"></script>
    -

    You need the marvin.ImageExporter class to convert structure to image. Loads this API into a separate iframe to avoid potential css conflicts.

    - Use the marvinpack.html that loads the marvin namespace. - -
    		$(document).ready(function handleDocumentReady (e) {
    -			// load marvin namespace in a separate frame to avoid css conflict
    -			// the display attribute of this iframe cannot be "none", but you can hide it somewhere
    -			$('body').append($('<iframe>', { id: "marvinjs-iframe", src: "../marvinpack.html"}));
    -			// wait for the reference of marvin namespace from the iframe
    -			MarvinJSUtil.getPackage("#marvinjs-iframe").then(function(marvinNameSpace) {
    -				// the reference to the namespace is arrived but there is no guaranty that its initalization has been finished
    -				// because of it, wait till the ready state to be sure the whole API is available
    -				marvinNameSpace.onReady(function() {
    -					marvin = marvinNameSpace;
    -					initControl();
    -				});	
    -			}, function(error) {
    -				alert("Cannot retrieve marvin instance from iframe:"+error);
    -			});
    -		});
    -

    -

    To hide the iframe, the following CSS settings are used:

    -
    	iframe#marvinjs-iframe {
    -		width: 0;
    -		height: 0;
    -		display: initial;
    -		position: absolute;
    -		left: -1000;
    -		top: -1000;
    -		margin: 0;
    -		padding: 0;
    -	}
    -

    The initcontrol function bind click handler for the buttons.

    -
    		function initControl() {
    -			$("#molsource-box").val(source);
    -			$("#createPNG").on("click", function() {
    -				createImage("image/png", applyDataUri);
    -			});
    -			$("#createJPEG").on("click", function() {
    -				createImage("image/jpeg", applyDataUri);
    -			});
    -			$("#createSVG").on("click", function() {
    -				createImage("image/svg", applySvg);
    -			});
    -		}
    -

    The createImage function creates a new instance of ImageExporter class and call its render function to convert the given string to image. - It is an asynchrone exporter, the render function returns with a Promise instance. The given callback function processes the result of the image export. It is automatically evaluated when the export process is completed.

    -
    		function createImage(imageType, callback) {
    -			var exporter = createExporter(imageType);
    -			exporter.render($("#molsource-box").val()).then(callback, alert);
    -		}
    -

    The createExporter function retrieves the current settings to create a new ImageExporter object with these settings.

    -
    		function createExporter(imageType) {
    -			var settings = {
    -				'carbonLabelVisible' : $("#chbx-carbonVis").is(':checked'),
    -				'cpkColoring' : $("#chbx-coloring").is(':checked'),
    -				'chiralFlagVisible': $("#chbx-chiral").is(':checked'),
    -				'atomMapsVisible': $("#chbx-atommaps").is(':checked'),
    -				'lonePairsVisible' : $("#lonepairs").val() != '0',
    -				'lonepaircalculationenabled' : $("#lonepairs").val() == '2',
    -				'atomIndicesVisible': $("#chbx-atomIndeces").is(':checked'),
    -				'implicitHydrogen' : $("#implicittype").val(),
    -				'displayMode' : $("#displayMode").val(),
    -				'background-color': $('#bg').val(),
    -				'zoomMode' : $("#zoommode").val(),
    -				'width' : parseInt($("#w").val(), 10),
    -				'height' : parseInt($("#h").val(), 10)
    -			};
    -
    -			var inputFormat = $("input[type='radio'][name='inputFormat']:checked").val();
    -			if(inputFormat == "") {
    -				inputFormat = null;
    -			}
    -			var defaultServices = getDefaultServices();
    -			var services = {};
    -			services['molconvertws'] = defaultServices['molconvertws'];
    -			if($('#chbx-calcStereo').is(":checked")) {
    -				services['stereoinfows'] = defaultServices['stereoinfows']; // enable stereo calculation
    -			}
    -			var params = {
    -					'imageType': imageType, // type of output image
    -					'settings': settings, // display settings
    -					'inputFormat': inputFormat, // renderer will expect molecule source in this format
    -					'services': services // to resolve any molecule format and be able to calculate stereo info
    -			}
    -			return new marvin.ImageExporter(params);
    -		}
    -

    At PNG and JPEG image generation, ImageExporter generates a base64 based data URI. To display it, create a new img tag and set the result string to its src attribute.

    -
    		function applyDataUri(dataUri) {
    -			$('#imageContainer').empty();
    -			var img = $('', { src: dataUri}).appendTo($("#imageContainer"));
    -			$("#imageContainer").css("display", "inline-block");
    -		}
    -

    At SVG export, ImageExporter generates a serialized SVG tag that includes a scalable vector graphics. To display it, insert the result as raw data into an empty DOM element.

    -
    		function applySvg(svg) {
    -			$("#imageContainer").html(svg);
    -			$("#imageContainer").css("display", "inline-block");
    -		}
    -
    - - - diff --git a/public/marvinjs/examples/example-create-template.html b/public/marvinjs/examples/example-create-template.html deleted file mode 100644 index 145e6a067..000000000 --- a/public/marvinjs/examples/example-create-template.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - Create Templates for Marvin JS - - - - - - - - -

    Create Templates for Marvin JS

    - -

    You can generate templates for Marvin JS with the help of the following form. Just fill the form and push the Add button. - The template source appears in the Result text box, and the generated (24x24 )icon displays above it.

    -

    By repeating these steps, you can append further and further template to the templates object.

    -

    Finally, you can copy the textual result (from the textbox) in a file that you can refer later in Marvin JS.

    - - -

    Input

    -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
  • - - - -
  • -
    -

    Result

    -
    -
  • -
  • -
    - - - - - \ No newline at end of file diff --git a/public/marvinjs/examples/example-customize-service.html b/public/marvinjs/examples/example-customize-service.html deleted file mode 100644 index c6f568a56..000000000 --- a/public/marvinjs/examples/example-customize-service.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - Marvin JS Example to customize service - - - - - - - - - - -

    Marvin JS Example to customize service

    - -

    The Clean2D webservice is not available at startup (its icon is missing from the toolbar). You have an input form where you can specify the location of the Clean2D - webservice. As you apply the form, it disappears and the Clean2D service is registered to the sketcher with the given URL. After that, the Clean icon appears - on the toolbar and you can perform clean operation on the drawn structure.

    - -

    Clean operation can fail in the following cases: -

      -
    • Wrong URL
    • -
    • The server where the URL points is not available.
    • -
    • The webservice is located on different domain than the editor (browser can block the request via the webservice if it harms its same origin policy).
    • -
    • The webservice is not compatible with the current JChem Webservice version that Marvin JS expects (e.g.: unexpected input or output data).
    • -
    -

    -
    - Clean2D Webservice location:
    - - - -
    -
    - -
    - -
    -

    Initialize the input form at startup. When the Apply Service button is submitted, the setServices function of the sketcher - is called to apply the given service to the editor. The function expects a JavaScript object that describes one or more webservices. - Finally, hide the input form to prevent applying further services.

    -
    -			$(document).ready(function handleDocumentReady (e) {
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				marvinSketcherInstance = sketcherInstance;
    -				resetForm();
    -				initControls();
    -			}, function () {
    -				alert("Cannot retrieve sketcher instance from iframe");
    -			});
    -		});
    -
    -		function initControls () {
    -			$("#restoreButton").on("click", resetForm);
    -			$("#applyButton").on("click", function (e) {
    -				submitService($("#clean2dws-location").val());
    -
    -			});
    -		}
    -
    -		function resetForm() {
    -			$("#clean2dws-location").val(getDefaultServices()["clean2dws"]);
    -		}
    -
    -		function submitService(url) {
    -			var services = {
    -				"clean2dws" : (url == "") ? null : url
    -			};
    -			marvinSketcherInstance.setServices(services);
    -			$("#serviceForm").hide();
    -		}
    -			
    -		
    -
    - - - diff --git a/public/marvinjs/examples/example-defaulttool.html b/public/marvinjs/examples/example-defaulttool.html deleted file mode 100644 index b8672677d..000000000 --- a/public/marvinjs/examples/example-defaulttool.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - Marvin JS Example - Change the default tool - - - - - - - - - -

    Marvin JS Example - Change default tool

    - -
    -
    - Rectangle - Lasso -
    -
    - -
    -
    -
    -

    In this example, you can change the default tool of the editor. - Select the default tool. Default tool is not the same as the actual tool of the editor. By contrast the actual tool, default tool has relevance in such situations when it is not clear which tool should be activated. In these cases you can denote a tool which should be selected as the default one. For example after pushing the Esc keyboard button.

    -

    
    -	<div style="padding-bottom: 0.8em;">
    -		<input type="radio" name="defaulttool-group" value="rectangleSelection" checked>Rectangle</input>
    -		<input type="radio" name="defaulttool-group" value="lassoSelection">Lasso</input>
    -	</div>
    -	

    - -

    When you take a look at the source code, you can see that a listener function is bound to the change events of radio buttons. - When a change event is invoked, the updateDefaultTool(value) function is performed. - This function assembles a JavaScript object that describes display settings and call the setDisplaySettings(settings) function of the sketcher. - Only give settings that you would like to overwrite. In this case, this is the defaultTool property.

    - -

    
    -		var marvinSketcherInstance;
    -
    -		$(document).ready(function handleDocumentReady (e) {
    -			// after editor in the sketch iframe is ready store its reference 
    -			// and activate controls
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				marvinSketcherInstance = sketcherInstance;
    -				initControls();
    -			},function (error) {
    -				alert("Cannot retrieve sketcher instance from iframe:"+error);
    -			});
    -		});
    -
    -		function initControls () {
    -			// change layout
    -			$("input[name='defaulttool-group']").change(function(e) {
    -				var s = $(this).val();
    -				updateDefaultTool(s);
    -			});
    -		}
    -
    -		function updateDefaultTool(tool) {
    -			marvinSketcherInstance.setDisplaySettings({
    -				"defaultTool": tool
    -			});
    -		}

    -
    - - - diff --git a/public/marvinjs/examples/example-edit-images.html b/public/marvinjs/examples/example-edit-images.html deleted file mode 100644 index 1f82fa77e..000000000 --- a/public/marvinjs/examples/example-edit-images.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - Marvin JS Examples - Edit images - - - - - - - - - - - - - - -

    Marvin JS Examples - Edit images

    - -

    A molecule table should be displayed as the loading of the page is finished. See below the commented code

    - - -
    -

    Preparation of the page is in progress ...

    -
    - - -
    - -

    There is a DIV where generated images will appear. -

    <div id="imageContainer" class="image-container">
    -<p>Preparation of the page is in progress ...</p>
    -</div>

    - -

    We need a hidden DIV with the highest z-index. It is the popup window with a close button and with the editor iframe. This popup window appears when a picture is edited. -

    <div id="popup" class="popup-window" style="position: fixed; left:0px; top:0px; z-index:100; visibility: hidden; opacity: 0;">
    -	<div class="wrapper">
    -		<div id="title-bar"><input id="close" type="button" class="close-button" value="Done ×"></div>
    -		<div id="sketchContainer">
    -			<iframe id="sketchImg" src="../editor.html" ></iframe>
    -		</div>
    -	</div>
    -</div>

    -

    You will need the following JS libraries for this example. They are bundled to the header of the example page. -The first one is a promise implementation, the second loads MarvinJSUtil. -

      <script src="../gui/lib/promise-1.0.0.min.js"></script>
    -  <script src="../js/marvinjslauncher.js"></script>

    -

    These global variables are also defined in this example: -

      -
    • marvin - reference to the Marvin JS API
    • -
    • marvinSketcherInstance - reference to the editor in the iframe
    • -
    • editorControl - controller to open / close the editor and modify images
    • -
    • molecules - molecule sources
    • -

    -

    Below you can see the code that is embedded into the $(document).ready(function handleDocumentReady (e) { ... }); block.

    -

    To hide the editor when the close button is submit, bind an event handler to the close button. -

    		$("#close").bind("click", function() {
    -			editorControl.close();
    -		});
    -

    -

    For the image export, marvin object is required that encapsulates the whole Marvin JS API into a common namespace.
    -Since you have an editor in an iframe where marvin is already available, you can use this instance.
    -The MarvinJSUtil.getPackage(String) helps to receive its reference. -When marvin is ready, the exportImages() function creates initial molecule images. -

    		MarvinJSUtil.getPackage("sketchImg").then(function (marvinNameSpace) {
    -			marvinNameSpace.onReady(function () {
    -				marvin = marvinNameSpace;
    -				exportImages();
    -			});
    -		}, function () {
    -			alert("Cannot retrieve marvin instance from iframe");
    -		});
    -

    -

    Meanwhile, you can get the reference to the editor with the help of MarvinJSUtil.getEditor(String). -When you received it, save it for later usage and attempt to open the editor with the selected image. -

    		MarvinJSUtil.getEditor("sketchImg").then(function (sketcherInstance) {
    -			marvinSketcherInstance = sketcherInstance;
    -			// open editor if any image is selected
    -			editorControl.open();
    -	  	}, function () {
    -			alert("Cannot retrieve sketcher instance from iframe");
    -		});

    - -

    Thus, that has happened in the document.ready block. -

    As above mentioned, exportImages() function creates inital molecule images and insert them into the proper DIV element on the page. -This function creates a new image tag for each molecule. -The marvin.ImageExporter.mrvToDataUrl(String) function creates a image data URI from an MRV source. -The MRV source is also inserted into the new image tag as the alt attribute. -

    	function exportImages() {
    -		var docFrag = document.createDocumentFragment();
    -		for(i=0; i<molecules.length;i++) {
    -		  var imgData = marvin.ImageExporter.mrvToDataUrl(molecules[i]);
    -		  if(imgData != null) {
    -			var dv = $('<div>', { class: "mol-cell" });
    -			$('<span>', { text: ("Compound #" + (i+1))}).appendTo(dv);
    -			$('<img>', { name: "pict", src: imgData, alt: escape(molecules[i]), onclick:"clickOnImage(this)"}).appendTo(dv);
    -			dv.appendTo(docFrag);
    -		  }
    -	  	}
    -		$('<div>', { class: "table-bottom" }).appendTo(docFrag);
    -	  	$("#imageContainer").append(docFrag);
    -	}

    - -

    The editorControl is responsible to show the editor with the proper structure or hide it and refresh its image. -The currentPict is a reference to the <img> from the DOM that you would like to edit.
    -If it is null, it means that no image has been selected yet to edit. -The molecule source for an image is stored in its alt attribute.

    -
    	var editorControl = (function() {
    -		
    -		var currentPict = null;
    -		
    -		var controlObject = {
    -			"picture" : function picture(pict) {
    -				currentPict = pict;
    -			}
    -			,"open" : function openEditor() {
    -				if(currentPict != null) {
    -					marvinSketcherInstance.importStructure("mrv", unescape(currentPict.alt));
    -					$("#popup").css("visibility", "visible");
    -					$("#popup").css("opacity", 1);
    -				}
    -			}
    -			,"close" : function closeEditor() {
    -				if(marvinSketcherInstance != null) {
    -					var cp = currentPict;
    -					marvinSketcherInstance.exportStructure("mrv").then(function(s) {
    -						cp.alt = escape(s);
    -						cp.src = marvin.ImageExporter.mrvToDataUrl(s);	
    -					}, function(error) {
    -						alert(error);
    -					});
    -				}
    -				$("#popup").css("visibility", "hidden");
    -				$("#popup").css("opacity", 0);
    -			}
    -		};
    -		return controlObject;
    -	}());
    -	
    -

    When a click event is invoked on an <img> tag, the clickOnImage function is performed. -It passes the reference of the current image to the editorControl -and ask it to open the editor.

    -
    -
    	function clickOnImage(pict) {
    -		editorControl.picture(pict);
    -		editorControl.open();
    -	}
    - - - - diff --git a/public/marvinjs/examples/example-get-selection.html b/public/marvinjs/examples/example-get-selection.html deleted file mode 100644 index 4d1278ca9..000000000 --- a/public/marvinjs/examples/example-get-selection.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - Marvin JS Examples - Get Selection - - - - - - - - - -

    Marvin JS Examples - Get Selection

    - -
    -
    - -
    -

    -

    -
    -

    This example demonstrates how to inject selection information into the generated MRV source.

    -

    When Get Selection button is pushed, the getSelection function is called that retrieves the canvas content in MRV format. Since exportStructure is an asynchronous request, we get index of selected atoms when the MRV source received.

    -

    After that, inject selection information into the MRV source with the help of mrvWithSelection function. - Its result displays in the below text box

    -
    	$(document).ready(function handleDocumentReady (e) {
    -		MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -			// initalize sketcher
    -			sketcherInstance.importStructure("mol",caffeineSource);
    -			sketcherInstance.setDisplaySettings({
    -				'carbonLabelVisible' : true,
    -				'atomIndicesVisible' : true
    -			});
    -
    -			getSelection = function () {
    -				sketcherInstance.exportStructure("mrv").then(function(source) {
    -					var selection = sketcherInstance.getSelection();
    -					$("#molsource").val(mrvWithSelection(source, selection));
    -				}, function(error) {
    -					alert("Cannot retrieve the molecule source");
    -				});	
    -			};
    -			
    -			$("#getSelectionButton").on("click", getSelection);
    -
    -
    -		}, function () {
    -			alert("Cannot retrieve sketcher instance from iframe");
    -		});
    -	});
    - -

    The mrvWithSelection function checks whether selection is empty. - If yes, it does nothing just returns with the original MRV source. - - If the selection contains one or more atom indeces, it builds up a DOM object from the MRV source and iterates over the list of indeces to find the appropriate atom tags. Append the "isSelect" attribute to each atom tag that matched. - Finally, it serializes the above DOM object and returns with the generated string

    -
    	function mrvWithSelection(mrv, selection) {
    -		var parser = new DOMParser();
    -		if(selection && selection.atoms) {
    -			var xml = parser.parseFromString(mrv, "text/xml");
    -			var atoms = xml.getElementsByTagName('atom');
    -			var selectedAtoms = selection.atoms.split(",");
    -			for(var i = 0; i < selectedAtoms.length; i++) {
    -				var index = selectedAtoms[i]-1;
    -				if(atoms[index]) {
    -					atoms[index].setAttribute("isSelected", true);
    -				}
    -			}
    -			return new XMLSerializer().serializeToString(xml);
    -		}
    -		return mrv;
    -	}
    - - - diff --git a/public/marvinjs/examples/example-getimage.html b/public/marvinjs/examples/example-getimage.html deleted file mode 100644 index 2577ca6b4..000000000 --- a/public/marvinjs/examples/example-getimage.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - Marvin JS Example - Get The Image - - - - - - - - - -

    Marvin JS Example - Get The Image

    - - -
    - -
    -
      -
    • -
    • - -
    • -
    -
    -

    This example demonstrates how to retrieve the molecule image from the sketcher. When you push the Export - button, the current molecule is exported as a JPEG image. The result is shown next to the editor.

    -

    First of all, you need a reference for the current editor. - MarvinJSUtil.getEditor(String) provides a Promise object for you to get it when the editor is ready.

    -

    After the editor is loaded, run the initcontrol() function to bind action the the Export button.

    -

    When the button is clicked, the exportImage(String) function of the editor is called. It provides a Promise object to access the result - of the export process. Call its then(...) function with the callback function that describes what you would like to do with the export result. - In this case, the src attribute of the <img> tag is updated with the image source.

    -
    		var marvinSketcherInstance;
    -		
    -		$(document).ready(function handleDocumentReady (e) {
    -			// get the reference to the Marvin JS editor
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				marvinSketcherInstance = sketcherInstance;
    -				initControl();
    -			},function (error) {
    -				alert("Cannot retrieve sketcher instance from iframe:"+error);
    -			});
    -		});
    -
    -		function initControl () {
    -
    -			// the export button
    -			$("#btn-export").on("click", function (e) {
    -				var settings = marvinSketcherInstance.getDisplaySettings(); 
    -				settings.width = 420;
    -				settings.height = 420;
    -				settings.backgroundColor = "#ffffff";
    -				marvinSketcherInstance.exportStructure("jpeg", settings).then(function(source) {
    -					exportImage(source);
    -				}, function(error) {
    -					alert("Image export failed:"+error);	
    -				});
    -			});
    -		}
    -
    -		function exportImage(dataUrl) {
    -			// set image source for the existing hidden image tag and display it.
    -			$("#image").attr("src", dataUrl);
    -			$("#imageContainer").css("display", "inline-block");
    -		}
    -
    -	
    -
    - - - diff --git a/public/marvinjs/examples/example-getmol-with-ws.html b/public/marvinjs/examples/example-getmol-with-ws.html deleted file mode 100644 index 0a47f8a3c..000000000 --- a/public/marvinjs/examples/example-getmol-with-ws.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - Marvin JS Example - Get The Molecule via webservices - - - - - - - - - - -

    Marvin JS Example - Get The Molecule

    - - -
    - -
    -
      -
    • -
    • Enable molconvertws
    • -
    • -
    -
    -

    This example demonstrates how to retrieve a structure from Marvin JS editor, using extra export options.

    - -

    JChem Webservices (the web service implementation provided by ChemAxon) can accept special - export options . The exportStructure() API function of Marvin JS gives the chance to specify export parameters for the molExport service.

    -

    In this example, +H export option (adding explicit Hydrogens to the structure) is passed to the molExport service. If the extra option has been specified, the exportStructure passes the request directly to the remote service instead of evaluating it on client side. - If the location of the service has not been specified, an error message is thrown.

    -

    Please, take care that Marvin JS does not check whether the extra export options passed to WS are valid or not.

    - -

    When the Get mol button is pressed, the current molecule is retrieved from the editor in mol format and the result is displayed in the textbox.

    -

    By unchecking the webservice checkbox, you can switch off the molExport web service. After this, pressing the Get mol button results in an error message, saying: "Unsupported format mol:+H".

    -
    var marvinSketcherInstance;
    -
    -$(document).ready(function handleDocumentReady (e) {
    -	var p = MarvinJSUtil.getEditor("#sketch");
    -	p.then(function (sketcherInstance) {
    -		marvinSketcherInstance = sketcherInstance;
    -		initControl();
    -	}, function (error) {
    -		alert("Cannot retrieve sketcher instance from iframe:"+error);
    -	});
    -});
    -
    -function initControl () {
    -
    -	// get mol button
    -	$("#btn-getmol").on("click", function (e) {
    -		marvinSketcherInstance.exportStructure("mol", {"extra": "+H"}).then(function(source) {
    -			$("#molsource").text(source);
    -		}, function(error) {
    -			alert("Molecule export failed:"+error);	
    -		});
    -	});
    -	var molconvertws_value = getDefaultServices()["molconvertws"]
    -	$("#btn-service").change(function(e) {
    -		var services = {
    -			"molconvertws" : (e.target['checked']) ? molconvertws_value : null
    -		};
    -		marvinSketcherInstance.setServices(services);
    -	});
    -}
    -
    -
    -	
    -
    - - - diff --git a/public/marvinjs/examples/example-getmol.html b/public/marvinjs/examples/example-getmol.html deleted file mode 100644 index 4295cca99..000000000 --- a/public/marvinjs/examples/example-getmol.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - Marvin JS Example - Get The Molecule - - - - - - - - - -

    Marvin JS Example - Get The Molecule

    - - -
    - -
    -
      -
    • -
    • -
    -
    -

    This example demonstrates how to retrieve the molecule from the sketcher. When you push the Get mol - button, the current molecule is retrieved from the editor in MRV format and the result is displayed in the textbox.

    -

    First of all, you need a reference for the editor. MarvinJSUtil.getEditor(String) provides a Promise object for you to get it - when the editor is ready.

    -

    After the editor is loaded, run the initcontrol() function to bind action the the Get mol button.

    -

    When the button is clicked, the exportStructure(String) function of the editor is called. Its provides a Promise object to access the result - of the export process. Call its then(...) function with the callback function that describes what you would like to do with the export result. - In this case, it is displayed in the molsource textbox.

    -
    var marvinSketcherInstance;
    -
    -$(document).ready(function handleDocumentReady (e) {
    -	var p = MarvinJSUtil.getEditor("#sketch");
    -	p.then(function (sketcherInstance) {
    -		marvinSketcherInstance = sketcherInstance;
    -		initControl();
    -	}, function (error) {
    -		alert("Cannot retrieve sketcher instance from iframe:"+error);
    -	});
    -});
    -
    -function initControl () {
    -
    -	// get mol button
    -	$("#btn-getmol").on("click", function (e) {
    -		marvinSketcherInstance.exportStructure("mrv").then(function(source) {
    -			$("#molsource").text(source);
    -		}, function(error) {
    -			alert("Molecule export failed:"+error);	
    -		});
    -	});
    -}
    -
    -
    -	
    -
    - - - diff --git a/public/marvinjs/examples/example-highlight-by-index.html b/public/marvinjs/examples/example-highlight-by-index.html deleted file mode 100644 index 44a3d4f8a..000000000 --- a/public/marvinjs/examples/example-highlight-by-index.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - Marvin JS Examples - Highlight By Index - - - - - - - - - -

    Marvin JS Examples - Highlight By Index

    - -
    - -
    -
    - Color: - Opacity (0-100%): - Size (40-200%): - - -
    -

    This example demonstrates how to paint a custom patch for atom and bonds.

    -

    How to try it:

    -

    Draw a structure and select those atoms and bonds that you would like to highlight with colored patch.

    -

    After that, specify the style: select color, setup opacity value between 0.0 and 1.0 - (0 is full transparent, 1 is total opaque). - Then, set the relative size of the patch (relative to the selection feedback). - Finally, apply settings. If you push the Overwrite highlight button, the previously set patches will be deleted. - If you choose Append highlight, the current patches are preserved and new settings are appended to them. -

    Notes: -

      -
    • If several styles are applied to the editor, the patches may overlaps each other.
    • -
    • Reaction converter is switched off to avoid atom index collision (among reaction compounds).
    • -
    -

    - -

    You can see the code comment below.

    -

    First of all, we request a reference to the loaded editor. - Then, we bind click handler for the submit buttons. - We will need an array (highlights)where we cache applied styles. -

    	var marvinSketcherInstance;
    -	var highlights = [];
    -
    -	$(document).ready(function handleDocumentReady (e) {
    -		MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -			// initalize sketcher
    -			marvinSketcherInstance = sketcherInstance;
    -			$('#overwriteButton').click(onButtonClick);
    -			$('#appendButton').click(onButtonClick);
    -		});
    -	});
    - -

    The onButtonClick function, determines the current behaviour: append or overwrite the current style with the new one. - After that, we retrieve the selection from the editor to apply the new style to the desired atoms/bonds. - In the selection, the atoms and bonds are referred by atom indexes.

    -

    If we choose overwrite option, we reset the previously stored highlight history (highlights).

    -

    The createHighlight function is responsible to create the new highlight style from the given data. - The new highlight object is added to the highlights array. - This array is applied to the setHighlight function of the editor.

    -
    	function onButtonClick(e) {
    -		var b = (e.target.id =='overwriteButton');
    -		var selection = marvinSketcherInstance.getSelection();
    -		if(b) {
    -			highlights = [];
    -		}
    -		highlights.push(createHighlight(selection));
    -		marvinSketcherInstance.setHighlight(highlights);
    -	}
    -

    The createHighlight function expects the selection object. - The highlight object has an indexes property. It is an object with an atom and a bond list. - The atom index list of selection object is a string that represents a comma separated list of indexes. Convert it to string array before assign it to the highlight.indexes. - Do the same with the bond index list. -

    After that, you can create highlight.style object. Retrieve the value of the color input field. - Convert value of the opacity field into the 0 - 1 range. Do the same with the size value.

    -

    The created highlight objects defines atoms and bonds by UID and specify style with color, opacity and size properties.

    -
    	function createHighlight(selection) {
    -		var highlight = {};
    -		highlight.indexes = {}
    -		highlight.indexes.atoms = (selection.atoms.length == 0)? [] : selection.atoms.split(',');
    -		highlight.indexes.bonds = (selection.bonds.length == 0)? [] : selection.bonds.split(','); 
    -		highlight.style = {}
    -		highlight.style.color = $('#colorValue').val();
    -		var opacity = $('#opacityValue').val()/100;
    -		highlight.style.opacity = opacity;
    -		var size = $('#sizeValue').val()/100;
    -		highlight.style.size = size;
    -		return highlight;
    -	}
    - - - diff --git a/public/marvinjs/examples/example-highlight.html b/public/marvinjs/examples/example-highlight.html deleted file mode 100644 index 82189b6f6..000000000 --- a/public/marvinjs/examples/example-highlight.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - Marvin JS Examples - Highlight By Unique ID - - - - - - - - - -

    Marvin JS Examples - Highlight By Unique ID

    - -
    - -
    -
    - Color: - Opacity (0-100%): - Size (40-200%): - - -
    -

    This example demonstrates how to paint a custom patch for atoms and bonds.

    -

    How to try it:

    -

    Draw a structure and select those atoms and bonds that you would like to highlight with colored patch.

    -

    After that, specify the style: select color, setup opacity value between 0.0 and 1.0 (0 is full transparent, 1 is total opaque). - Then, set the relative size of the patch (relative to the selection feedback). Finally, apply settings.

    -

    If you push Overwrite highlight button, the previously set patches will be deleted. - If you choose Append highlight, the current patches will be preserved and new settings will be appended to them.

    -

    Notes: -

      -
    • If several styles are applied to the editor, the patches may overlaps each other.
    • -
    • Reaction converter is switched off to avoid atom index collision (among reaction compounds).
    • -
    -

    - -

    You can see the code comment below.

    -

    First of all, we request a reference to the loaded editor. Then, we bind click handler for the submit buttons. - We will need an array (highlights)were we cache the applied styles and a DOM parser (parser) that helps us to seek data in MRV sources.

    -
    	var marvinSketcherInstance;
    -	var highlights = [];
    -	var parser = new DOMParser();
    -	
    -	$(document).ready(function handleDocumentReady (e) {
    -		MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -			// initalize sketcher
    -			marvinSketcherInstance = sketcherInstance;
    -			$('#overwriteButton').click(onButtonClick);
    -			$('#appendButton').click(onButtonClick);
    -		});
    -	});
    - -

    The onButtonClick function, determines the current behavior: append or overwrite the current style with the new one. - After that, we retrieve the selection from the editor to apply the new style to the desired atoms/bonds. - In the selection, the atoms and bonds are referred by atom indexes.

    -

    To retrieve the unique ID (UID) of these atoms, we have to get the molecule source of the structure. - To do that, specify hasUID export option in exportStructure function.

    -

    When the molecule source arrived, we are ready to create the new highlight settings.

    -

    If we choose the overwrite option, we reset the previously stored highlight history (highlights).

    -

    The createHighlight function is responsible to create the new highlight style from the given data. - The new highlight object is added to the highlights array. - This array is applied to the setHighlight function of the editor.

    -
    	function onButtonClick(e) {
    -		var b = (e.target.id =='overwriteButton');
    -		var selection = marvinSketcherInstance.getSelection();
    -		marvinSketcherInstance.exportStructure('mrv', { hasUID: true}).then(function(source) {
    -			if(b) {
    -				highlights = [];
    -			}
    -			highlights.push(createHighlight(source, selection));
    -			marvinSketcherInstance.setHighlight(highlights);
    -		}, alert);
    -	}
    -

    The createHighlight function expects two parameters: the molecule source and the selection object. - First of all, an xml object is created from the MRV source to be able to seek the UID properties. - Atom UID is stored in a child (scalar) tag of the atom tag. - The atoms field of the selection object gives index of selected atoms. - The ID of the scalar tag that describes the UID property of the n-th atom can describe in the following format: - a<index>.prop1 where <index> is the index of the atom. - Get it with the help of the getElementById function, and appends its value to the highlight.uids.atoms array.

    -

    You can get bond UID in a similar way. In this case, the ID of the scalar tag is in the following format: - a<index of begin atom>;a<index of end atom>.prop1. - The bond UIDs are collected into highlight.uids.bond array.

    -

    After that, you can create the highlight.style object. Retrieve the value of the color input field. - Convert value of the opacity field into the 0 - 1 range. Do the same with the size value.

    -

    The created highlight objects define atoms and bonds by UID and specify style with color, opacity and size properties.

    -
    	function createHighlight(source, selection) {
    -		var xml = parser.parseFromString(source, "text/xml");
    -		var highlight = {};
    -		highlight.uids = {};
    -		highlight.uids.atoms = [];
    -		highlight.uids.bonds = [];
    -		var atoms = (selection.atoms.length == 0)? [] : selection.atoms.split(',');
    -		var bonds = (selection.bonds.length == 0)? [] : selection.bonds.split(',');
    -		for(i = 0; i < atoms.length; i++) {
    -			var atom = selectById(xml, 'a'+atoms[i]+'.prop1'); 
    -			if(atom) {
    -				var uid = atom.textContent;
    -				highlight.uids.atoms.push(uid);
    -			} else {
    -				console.log('Cannot find property#a'+atoms[i]+'.prop1');
    -			}
    -		}
    -		for(i = 0; i < bonds.length; i++) {
    -			var edges = bonds[i].split('-');
    -			var bond = selectById(xml, 'a'+edges[0]+'a'+edges[1]+'.prop1');
    -			if(bond) {
    -				var buid = bond.textContent;
    -				highlight.uids.bonds.push(buid);
    -			} else {
    -				console.log('Cannot find property#a'+edges[0]+'a'+edges[1]+'.prop1');
    -			}
    -		}
    -		highlight.style = {}
    -		highlight.style.color = $('#colorValue').val();
    -		var opacity = $('#opacityValue').val()/100;
    -		highlight.style.opacity = opacity;
    -		var size = $('#sizeValue').val()/100;
    -		highlight.style.size = size;
    -		return highlight;
    -	}
    - - - diff --git a/public/marvinjs/examples/example-lazyinit.html b/public/marvinjs/examples/example-lazyinit.html deleted file mode 100644 index 77079b499..000000000 --- a/public/marvinjs/examples/example-lazyinit.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Marvin JS Example - Lazy init - - - - - - - -

    Marvin JS Example - Lazy init

    - -
    - -
    - - - diff --git a/public/marvinjs/examples/example-lonepair.html b/public/marvinjs/examples/example-lonepair.html deleted file mode 100644 index 06be60158..000000000 --- a/public/marvinjs/examples/example-lonepair.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - Marvin JS Example - Set lone pairs manually - - - - - - - - - -

    Marvin JS Example - How to change the editor settings for adding lone pairs manually feature

    - -
    - EDUCATION MODE -
    -
    - -
    -
    -

    This example demonstrates all of the preparations which should be made before applying the manual lone pair usage. - When EDUCATION MODE is activated via its checkbox, the following settings will be applied: -

      -
    • automatic lone pair calculation is disabled, every atom gets 0 lone pairs immediately
    • -
    • 'Increase lone pairs' button is enabled on the toolbar, and becomes ready to use
    • -
    • on copy, any structure is placed in MRV format to the clipboard
    • -
    • implicit hydrogens are hidden
    • -
    • valence errors are hidden.
    • -
    • circled plus / minus sign at charge.
    • -
    - When the checkbox is inactivated, the DEFAULT settings will be applied: -
      -
    • automatic lone pair calculation is enabled, the lone pairs are recalculatedon every atom
    • -
    • 'Increase lone pairs' button is disabled on the toolbar
    • -
    • on copy, any structure is placed as MDL MOL file to the clipboard
    • -
    • implicit hydrogens are visible on terminal and hetero atoms
    • -
    • valence errors are visible.
    • -
    • normal plus / minus sign at charge.
    • -
    - To see the differences between the two settings, some structures are set to the editor. (This example will return to this initial state on page refresh.) - - - In this example, the reporting preset has been set, and the display of lone pairs has been turned on. Please, note that lone pairs are not visible by default in Marvin JS and 'Increase lone pairs' button is only available in the education and the reporting preset. - - -

    At startup, EDUCATION MODE is not set in Marvin JS.

    -
    <iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-toolbars="reporting" ></iframe>
    -

    First of all, a reference is needed for the editor. MarvinJSUtil.getEditor(String) provides a Promise object to get it - when the editor is ready.

    -

    After the editor is loaded and an initial molecule is set, initcontrol() function binds actions to the EDUCATION MODE checkbox. Invoking initcontrol() function ensures that the initial state of the checkbox is consistent with the initial settings of the editor in this example.

    -
    		
    -		var marvinSketcherInstance;
    -
    -		var molecule = "\n\n\n"+
    -		"  6  3  0  0  0  0  0  0  0  0999 V2000\n"+
    -		"    0.0000   -0.0418    0.0000 Cl  0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    2.4274    0.0000    0.0000 Ne  0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    3.1419    0.4125    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    1.7129    0.4125    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    2.4274   -0.8250    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"   -1.7299   -0.0558    0.0000 Kr  0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"  2  3  1  0  0  0  0\n"+
    -		"  2  4  1  0  0  0  0\n"+
    -		"  2  5  1  0  0  0  0\n"+
    -		"M  END\n";
    -		
    -		$(document).ready(function handleDocumentReady (e) {
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				marvinSketcherInstance = sketcherInstance;
    -				marvinSketcherInstance.importStructure("mol",molecule);
    -				initControl();
    -				update($("#chbx-educationmode"));
    -			},function (error) {
    -				alert("Cannot retrieve sketcher instance from iframe:"+error);
    -			});
    -		});
    -

    Changing the checkbox value triggers the update of the editor settings. - In the change event handler, the target of the change event is the checkbox. If the checkbox is checked, the new settings are applied to the editor. - Settings of the editor can be updated with its setDisplaySettings(settings) function.

    -
    		
    -		function initControl () {
    -			$("#chbx-educationmode").on("change", function (e) {
    -				update(e.target);
    -			});
    -		}
    -		
    -		function update(checkBox){
    -			var settings = {};
    -			settings.lonePairsVisible= true;
    -			settings.lonepaircalculationenabled = !(checkBox.checked);
    -			settings.copyasmrv = checkBox.checked;
    -			settings.implicitHydrogen = (checkBox.checked) ? "OFF" : "TERMINAL_AND_HETERO";
    -			settings.valenceErrorVisible = !(checkBox.checked);
    -			settings.circledsign = checkBox.checked;
    -			marvinSketcherInstance.setDisplaySettings(settings);
    -		}
    -		
    -
    - - - diff --git a/public/marvinjs/examples/example-more-images-immediately.html b/public/marvinjs/examples/example-more-images-immediately.html deleted file mode 100644 index bcec5280c..000000000 --- a/public/marvinjs/examples/example-more-images-immediately.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Marvin JS Examples - Display More Images Immediately - - - - - - - - - - - - -

    Marvin JS Examples - Display More Images Immediately

    - -

    A molecule table should be displayed as the loading of the page is finished. See below the commented code

    - - - -
    -

    Preparation of the page is in progress ...

    -
    - -
    - -

    First of all, you need the marvin object that encapsulates the whole Marvin JS API into a common namespace. The MarvinJSUtil loads it asynchronously with the help of an invisible iframe. -After marvin is available, the exportImages function is called automatically.

    -
    	var marvin;
    -	$(document).ready(function handleDocumentReady (e) {
    -		// load marvin namespace in a separate frame to avoid css conflict
    -		// the display attribute of this iframe cannot be "none", but you can hide it somewhere	
    -		$('body').append($('<iframe>', { id: "marvinjs-iframe", src: "../marvinpack.html"}));
    -		// wait for the reference of marvin namespace from the iframe
    -		MarvinJSUtil.getPackage("#marvinjs-iframe").then(function (marvinNameSpace) {
    -			// the reference to the namespace is arrived but there is no guaranty that its initalization has been finished
    -			// because of it, wait till the ready state to be sure the whole API is available
    -			marvinNameSpace.onReady(function() {
    -				marvin = marvinNameSpace;
    -				exportImages();
    -			});
    -		},function (error) {
    -			alert("Cannot retrieve marvin instance from iframe:"+error);
    -		});
    -	});
    -

    The exportImages function converts predefined molecules into images and renders them into a table.

    -
    	function exportImages() {
    -		// initalize table
    -		$("#imageContainer").empty();
    -		// iterate the array of molecule sources to create images
    -		$.each(molecules, function(index, value) {
    -			var imgData = marvin.ImageExporter.molToDataUrl(value);
    -			// create a new cell with the new image and append to the table
    -			if(imgData != null) {
    -				var molCell = $('<div>', { class: "mol-cell"});
    -				$("#imageContainer").append(molCell);
    -				molCell.append($('<span>', { text: (index+1) }));
    -				var img = $('<img>');
    -				img.attr('src', imgData);
    -				img.attr('data-mol', escape(value));
    -				molCell.append(img);
    -			}
    -		});
    -		// close table
    -		$("#imageContainer").append($('<div>', { class: "table-bottom"}));
    -	}
    -
    - - - diff --git a/public/marvinjs/examples/example-qrcode.html b/public/marvinjs/examples/example-qrcode.html deleted file mode 100644 index 341dc1051..000000000 --- a/public/marvinjs/examples/example-qrcode.html +++ /dev/null @@ -1,314 +0,0 @@ - - - - - Marvin JS Example - Create QR Code - - - - - - - - - - - -

    Marvin JS Example - Create QR Code

    - -

    You can create QR Code from the drawn structure. If the MolConvert web service is not available, error message appears on the page when you attempt to convert the structure.

    -

    In the text field above the sketcher, you can specify the target URL encoded into the QR Code.

    -

    Please, press the QR Code button on the left toolbar to generate QR Code image from the current structure. The generated code can be scanned by your mobile phone - (eg. with these apps: iOS , - Android).

    -
    - - - -
    -
    - -
    -
    -
    -

    -
    -
    -

    When the page is loaded, setup a molecule for the sketcher, define a custom button to submit QR Code generation process and provide an option to change - the URL prefix of the generated code by the creating a textbox.

    -
    
    -var marvinSketcherInstance;
    -
    -$(document).ready(function handleDocumentReady (e) {
    -	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -		marvinSketcherInstance = sketcherInstance;
    -			$("#resetButton").on("click", function handlegetQRCodeButton () {
    -			qrCodeControl.reset();
    -		});
    -		var buttonAttributes = {
    -				"name" : "Generate QR Code",
    -				"image-url" : "examples/images/qr.png",
    -				"toolbar" : "W"
    -		};
    -		sketcherInstance.addButton(buttonAttributes, function() {
    -			qrCodeControl.getQRCode();
    -		});
    -		
    -		var s = "\n\n\n"+
    -		" 14 15  0  0  0  0  0  0  0  0999 V2000\n"+
    -		"    0.5089    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    1.2234    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    1.2234    7.4191    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"   -0.2055    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"   -0.9200    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    0.5089    5.3566    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"   -0.2055    7.4191    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    0.5089    6.1816    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"   -0.9200    6.1816    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    0.5089    8.6566    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    2.4929    7.0066    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    2.0080    7.6740    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    2.0080    6.3391    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"    2.2630    8.4586    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -		"  1  7  1  0  0  0  0\n"+
    -		"  8  2  1  0  0  0  0\n"+
    -		"  1  3  1  0  0  0  0\n"+
    -		"  2  3  2  0  0  0  0\n"+
    -		"  7  4  1  0  0  0  0\n"+
    -		"  4  8  1  0  0  0  0\n"+
    -		"  4  9  2  0  0  0  0\n"+
    -		"  7  5  1  0  0  0  0\n"+
    -		"  8  6  1  0  0  0  0\n"+
    -		"  1 10  2  0  0  0  0\n"+
    -		"  3 12  1  0  0  0  0\n"+
    -		"  2 13  1  0  0  0  0\n"+
    -		" 13 11  2  0  0  0  0\n"+
    -		" 12 11  1  0  0  0  0\n"+
    -		" 12 14  1  0  0  0  0\n"+
    -		"M  END\n";
    -		
    -		sketcherInstance.importStructure("mol", s).catch(function(error) {
    -			alert("Import structure failed:"+error);
    -		});
    -	}, function () {
    -		alert("Cannot retrieve sketcher instance from iframe");
    -	});
    -});
    -	
    -

    The qrCodeControl object is responsible to retrieve the structure from the editor. It communicates with the MolConvert webservice via AJAX request - to convert the molecule to SMILES format. It provides the input for the QR Code generator. The QR Code generator expects a DOM object to insert into and a text data to encode.

    -
    
    -var qrCodeControl = (function () {
    -
    -	function getMolConvertURL() {
    -		var ws = getDefaultServices();
    -		return ws['molconvertws'];
    -	};
    -	
    -	function handleRequestError (qXHR, textStatus, errorThrown) {
    -		if (qXHR.status == 0) { // UNSENT request
    -			var errMsg = "ERROR: MolConvert failed.\nThe request has not been sent.\nThe request may violate the cross domain policy.";
    -			errorConsole.print(errMsg);
    -		} else {
    -			errorConsole.print("ERROR: MolConvert failed (status code "+ qXHR.status + ")\n" + qXHR.responseText);
    -		}
    -	};
    -	var controlObject = {
    -		"getQRCode": function getQRCode () {
    -			errorConsole.reset();
    -			var s = marvinSketcherInstance.exportAsMrv();
    -			var data = JSON.stringify({
    -				"structure" : s,
    -				"inputFormat" : "mrv",
    -				"parameters" : "smiles"
    -			});
    -			$.ajax({
    -				"url": getMolConvertURL()
    -				,"type": "POST"
    -				,"dataType": "json"
    -				,"contentType": "application/json"
    -				,"data": data
    -			}).done(function (data, textStatus, jqXHR) {
    -				qrCodeControl.convertsmilesToQRCode(data['structure']);
    -			}).fail(handleRequestError);
    -		}
    -
    -		, "reset": function reset () {
    -			$("#targetField").val("http://www.chemicalize.org/structure/#!mol=");
    -			$("#result").empty();
    -			errorConsole.reset();
    -		}
    -		
    -		, "convertsmilesToQRCode": function convertsmilesToQRCode(smiles) {
    -			$("#result").empty();
    -			var qrCode = new QRCode(document.getElementById("result"), { "width" : 450, "height" : 450 , "correctLevel" : QRCode.CorrectLevel.M });
    -			var s = $("#targetField").val() + escape(smiles);
    -			qrCode.makeCode(s);
    -		}
    -	}
    -	return controlObject;
    -}());
    -	
    -

    The errorConsole object is responsible to display error messages.

    -
    
    -var errorConsole = (function () {
    -	var controlObject = {
    -		"reset" : function() {
    -			$("#error").children("p").html("");
    -		}
    -		, "print" : function(txt) {
    -			$("#error").children("p").html(txt);
    -		}
    -		, "isEmpty" : function() {
    -			return ($("#error").children("p").html() === "");
    -		}
    -	};
    -	return controlObject;
    -}());
    -
    -

    The following additional JavaScript libraries are required:

    -
    
    -	<script src="e;../js/lib/jquery-1.9.1.min.js"e;></script>
    -	<script src="e;../js/webservices.js"e;></script>
    -	<script src="e;../js/util.js"e;></script>
    -	<script src="e;../js/lib/qrcode/qrcode.min.js"e;></script>
    -	
    -	
    -

    The QR Code generation uses a contributed JavaScript library, it is under MIT license.

    - - - diff --git a/public/marvinjs/examples/example-reaction.html b/public/marvinjs/examples/example-reaction.html deleted file mode 100644 index 0471f66da..000000000 --- a/public/marvinjs/examples/example-reaction.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - Marvin JS Example - No reaction - - - - - - - - - -

    Marvin JS Example - Reaction handling

    - - -
    - Create editor where reaction is: - - and ReactionConverter WS is - enabled. - -
    -
    - -
    -
    -
    - - - -
    To control how to handle reactions, specify the data-reaction attribute - in the iframe of the sketcher. - It accepts the following values: -
      -
      OFF
      -
      Canvas content is never applied as reaction. -

      Example:

      <iframe src="../editor.html" data-reaction="OFF" id="sketch" class="sketcher-frame"></iframe>

      - -
      BASIC
      -
      Built-in (native) mechanism to resolve single-step reactions at molecule export. -

      Example:

      <iframe src="../editor.html" data-reaction="BASIC" id="sketch" class="sketcher-frame"></iframe>

      - -
      EXTERNAL
      -
      Legacy behavior. The reactionconvertws webservice is responsible for - resolving reactions. If the webservice is not available, the behavior of the editor is similar than in OFF mode. - If the service is available, the service attempts to convert canvas content to a single step reaction at molecule export. -

      Example:

      <iframe src="../editor.html" data-reaction="EXTERNAL" id="sketch" class="sketcher-frame"></iframe>

      -
    -
    - - - diff --git a/public/marvinjs/examples/example-removedefaultservicefromtoolbar.html b/public/marvinjs/examples/example-removedefaultservicefromtoolbar.html deleted file mode 100644 index f4f38a3a1..000000000 --- a/public/marvinjs/examples/example-removedefaultservicefromtoolbar.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - Marvin JS Example - Configure toolbars and services - - - - - - - - - - - -

    Marvin JS Example - Configure toolbars and services

    - -

    - This example demonstrates how to switch off certain server-side features in an editor that has a specific toolbar setting. New buttons can not be added through this usecase, and only those buttons can be removed which would be available with the toolbar preset. -

    -
    -
    - -
    -
    -
    -

    Embed the Marvin JS editor without the default webservices (editor.html) and specify the search layout: -

    <div class="resizable">
    -    <iframe src="../editor.html" id="sketch" class="sketcher-frame" data-toolbars="search"></iframe>
    -</div>
    - -

    Include webservices.js in order to reach default webservice locations.

    -
    <script src="../js/webservices.js"></script>
    - -

    Bind a listener to the loading of the sketcher. When the sketcher is loaded, the setServices method setups the services.

    -
    
    -$(document).ready(function handleDocumentReady (e) {
    -	MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -		setServices(sketcherInstance);
    -	},function (error) {
    -		//what should happen if marvinjs initiation fails.
    -	});
    -});
    -

    The setServices method receives the reference to the sketcher object as parameter. - The excluded object declares services to switch off. - With the predefined getDefaultServices(), you can get factory settings of services.

    -

    When you merge the above objects, the new one specifies all services (those ones that are not specified in - excluded inherits the default value, the others are overwritten).

    -

    Finally, call setServices function of the sketcher with the above settings. - After then, enabled services are activated (if current layout includes their button) and buttons of disabled - services are removed.

    -
    
    -function setServices(marvinSketcherInstance) {
    -	// set null value for those services that you would like to switch off
    -	var excluded = {
    -		"stereoinfows": null, 
    -		"hydrogenizews": null,
    -	}
    -	// all services
    -	var defaultServices = getDefaultServices();
    -	// merge defaultServices and excluded into an empty object
    -	// the new object contains the result
    -	var services = $.extend({}, defaultServices, excluded);
    -	marvinSketcherInstance.setServices(services);
    -}
    -
    - - - - - - - diff --git a/public/marvinjs/examples/example-selection.html b/public/marvinjs/examples/example-selection.html deleted file mode 100644 index 150c27222..000000000 --- a/public/marvinjs/examples/example-selection.html +++ /dev/null @@ -1,296 +0,0 @@ - - - - - Marvin JS Examples - Demo - - - - - - - - - -

    Marvin JS Examples - Manage selection

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

    Atoms:

    -

    Bonds:

    -
    -
    -

    Get selection automatically: - - -

    -

    Retrieve mol source at mol change: - Mol change counter: 0 - -

    -

    -
    -

    This example demonstrates how to control selection via JavaScript API and how to monitor the changing of the structure.

    -

    When selection information is retrieved from the sketcher, lists of selected atoms and bonds appear in the following textboxes: Atoms and Bonds.

    -

    If the checkbox titled as Get selection automatically is checked in, lists of selected atoms and bonds are retrieved automatically as the selected context is changed on the canvas. - When this functionality is disabled, you can retrieve the selection by submitting the Get selection button.

    - -

    You can edit both the atom list and bond list in the form. - Atoms can be referred to by their atom index. A bond can be described with the atom index of its nodes.

    -

    With the Set selection button, you can update selection in the editor. Those atoms and bonds will be selected that are enumerated on the selection form.

    - -

    To get the molecule source each time when the drawn structure is changed in the sketcher, check in the Retrieve mol source at mol change checkbox. The retrieved data appears in the - textbox beside the sketcher. You can find a counter next to the checkbox, that indicates how many times the mol change event is invoked. You can reset this counter by submitting the Reset counter button.

    - -

    You can see the code comment below.

    - -
    		var marvinSketcherInstance;
    -		var molChangeCounter;
    -
    -		$(document).ready(function handleDocumentReady (e) {
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				// initalize sketcher
    -				marvinSketcherInstance = sketcherInstance;
    -				marvinSketcherInstance.importStructure("mol",caffeineSource).catch(function(error) {
    -					alert("Import failed:"+error);
    -				});
    -				marvinSketcherInstance.setDisplaySettings({
    -					'carbonLabelVisible' : true,
    -					'atomIndicesVisible' : true
    -				});
    -
    -				 
    -				getSelection = function () {
    -					$("#atoms").val("");
    -					$("#bonds").val("");
    -					var selection = marvinSketcherInstance.getSelection();
    -					$("#atoms").val(selection['atoms']);
    -					$("#bonds").val(selection['bonds']);
    -				};
    -				
    -				setSelection = function () {
    -					marvinSketcherInstance.setSelection({
    -						'atoms' : $('#atoms').val(),
    -						'bonds' : $('#bonds').val()
    -					});
    -				};
    -				
    -				$("#getSelectionButton").on("click", getSelection);
    -				
    -				$("#setSelectionButton").on("click", setSelection);
    -				
    -				// true to switch on auto retrieve of selection, false to switch it off
    -				setSelectionChangeListener = function(b) {
    -					if(b) {
    -						// add selection change event listener
    -						marvinSketcherInstance.on("selectionchange", getSelection);
    -						// disable manual retrieve when selection change event listener is active
    -						$("#getSelectionButton").attr("disabled", "disabled");
    -					} else {
    -						// remove selection change event listener					
    -						marvinSketcherInstance.off("selectionchange", getSelection);
    -						// enable Get Selection button when selection change event listener is inactive
    -						$("#getSelectionButton").removeAttr("disabled");
    -					}
    -				};
    -
    -				// when the checkbox is checked in/out by the user
    -				$("#selectionChangeCheckbox").change(function () {
    -					setSelectionChangeListener(this.checked);
    -				});				
    -				// activate the listener at startup if its checkbox is selected
    -				if($("#selectionChangeCheckbox").prop('checked')) {
    -					setSelectionChangeListener(true);
    -				}
    -				
    -				molChangeCounter = 0;
    -				
    -				// update counter and display retrieved molecule source
    -				handleMolChangeEvent = function () {
    -					molChangeCounter = molChangeCounter+1;
    -					$("#molChangeCounterDisplay").text(molChangeCounter);
    -					marvinSketcherInstance.exportStructure("mrv").then(function(molsource) {
    -						$("#molsource").val(molsource);	
    -					}, function () {});
    -				};
    -				
    -				// true to switch on auto retrieve of the molecule, false to switch it off
    -				setMolChangeListener = function(b) {
    -					if(b) {
    -						// add mol change event listener					
    -						marvinSketcherInstance.on("molchange", handleMolChangeEvent);
    -					} else {
    -						// remove mol change event listener					
    -						marvinSketcherInstance.off("molchange", handleMolChangeEvent);
    -					}
    -				};
    -
    -				// when the checkbox is checked in/out by the user
    -				$("#molChangeCheckbox").change(function () {
    -					setMolChangeListener(this.checked);
    -				});
    -				// activate the listener at startup if its checkbox is selected
    -				if($("#molChangeCheckbox").prop('checked')) {
    -					setMolChangeListener(true);
    -				}
    -				
    -				// when reset button is submitted by the user
    -				$("#resetMolChangeCounterButton").on("click", function() {
    -					molChangeCounter = 0;
    -					$("#molChangeCounterDisplay").text(molChangeCounter);
    -				});
    -
    -			}, function () {
    -				alert("Cannot retrieve sketcher instance from iframe");
    -			});
    -		});
    -
    -		
    - - - diff --git a/public/marvinjs/examples/example-setmol.html b/public/marvinjs/examples/example-setmol.html deleted file mode 100644 index d1de05fe0..000000000 --- a/public/marvinjs/examples/example-setmol.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Marvin JS Example - Set a Molecule - - - - - - - - - -

    Marvin JS Example - Set a Molecule

    - -
    -
      -
    • -
    -
    - -
    -
    -
    -

    To be able to embed the Marvin JS editor into a web page, you need one of the following HTML files: -

      -
    • editor.html - the pure editor
    • -
    • editorws.html - the editor extended with default webservices
    • -
    - -

    These HTML files are responsible for loading all resources that the editor component requires.

    - -

    First of all, create an iframe that loads the proper HTML file. - (In this example, the editorws.html file is preferred to be able to use extra functionalities that webservices provide.) - The editor component fills the iframe. As you resize the iframe, the editor follows the changing of the - iframe width and height. In this example, the iframe size is determined by its CSS class, - which is defined in docs.css: sketcher-frame

    - -
    -			<div class="resizable">
    -	<iframe src="../editorws.html" id="sketch" class="sketcher-frame"></iframe>
    -</div>
    -		
    - -

    The host page is where the iframe is inserted.

    - -

    The loading of the editor is not synchronized with the loading of the hosted page. The sketcher object is instantiated inside the iframe. Thus, there is no guaranty that the sketcher is already available - when the loading of the hosted page is finished.

    -

    If you would like to access the sketcher object, use the MarvinJSUtil.getEditor(iframeID) helper function from the js/marvinjslauncher.js. -

    To use it, please include the following script in the header of the HTML document where you would like to use. -

    <script src="../gui/lib/promise-1.0.0.min.js"></script>
    -	<script src="../js/marvinjslauncher.js"></script>
    -

    -

    Below, you can see its usage. - Call MarvinJSUtil.getEditor with the ID of the iframe that contains the editor. It returns with a promise. - After then, call the then method of the promise object. Here, you can specify which code should be evaluated when loading of the sketcher is successful and which one when it fails.

    -
    
    -		MarvinJSUtil.getEditor("#sketch").then(function(sketcherInstance) {
    -			// code performed when the sketcher loaded successful (sketcherInstance is a reference to the editor object)
    -		}, function() {
    -			// code performed when the sketcher loading failed
    -		});
    -

    The fail branch can be evaluated in the following cases:

    -
      -
    • Unable to get iframe with the given ID.
    • -
    • Unable to find sketcherInstance in iframe with the given ID.
    • -
    • Unable to find marvin package
    • -
    • Unable to retrieve sketcher instance.
    • -
    -

    Please, take care that in certain case the browser can reject accessing of the sketcher despite it is loaded into the iframe. It happens when the JavaScript request violates the security concept of the browser - (same origin policy).

    See the Troubleshoot section of the documentation for more details. - -

    In this example, when sketcher is loaded, the initial molecule is setup by calling the importStructure function, and the initControls() function is performed. It binds even handlers - for the checkboxes above the editor (CPK coloring and Carbon label visibility).

    - -
    var marvinSketcherInstance;
    -
    -$(document).ready(function handleDocumentReady (e) {
    -	var p = MarvinJSUtil.getEditor("#sketch");
    -	p.then(function (sketcherInstance) {
    -		marvinSketcherInstance = sketcherInstance;
    -		marvinSketcherInstance.importStructure("mol", s).catch(function(error) {
    -			alert(error);
    -		});
    -		initControls();
    -	}, function (error) {
    -		alert("Cannot retrieve sketcher instance from iframe:"+error);
    -	});
    -});
    -
    -function initControls () {
    -
    -	// Reset mol button
    -	$("#btn-setmol").on("click", function (e) {
    -		marvinSketcherInstance.importStructure("mol", s);
    -	});
    -}
    -
    -var s = "\n\n\n"+
    -	" 14 15  0  0  0  0  0  0  0  0999 V2000\n"+
    -	"    0.5089    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    1.2234    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    1.2234    7.4191    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"   -0.2055    6.5941    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"   -0.9200    7.8316    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    0.5089    5.3566    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"   -0.2055    7.4191    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    0.5089    6.1816    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"   -0.9200    6.1816    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    0.5089    8.6566    0.0000 O   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    2.4929    7.0066    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    2.0080    7.6740    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    2.0080    6.3391    0.0000 N   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"    2.2630    8.4586    0.0000 C   0  0  0  0  0  0  0  0  0  0  0  0\n"+
    -	"  1  7  1  0  0  0  0\n"+
    -	"  8  2  1  0  0  0  0\n"+
    -	"  1  3  1  0  0  0  0\n"+
    -	"  2  3  2  0  0  0  0\n"+
    -	"  7  4  1  0  0  0  0\n"+
    -	"  4  8  1  0  0  0  0\n"+
    -	"  4  9  2  0  0  0  0\n"+
    -	"  7  5  1  0  0  0  0\n"+
    -	"  8  6  1  0  0  0  0\n"+
    -	"  1 10  2  0  0  0  0\n"+
    -	"  3 12  1  0  0  0  0\n"+
    -	"  2 13  1  0  0  0  0\n"+
    -	" 13 11  2  0  0  0  0\n"+
    -	" 12 11  1  0  0  0  0\n"+
    -	" 12 14  1  0  0  0  0\n"+
    -	"M  END\n";
    -	
    -
    - - - diff --git a/public/marvinjs/examples/example-templates-default.html b/public/marvinjs/examples/example-templates-default.html deleted file mode 100644 index 000f156e2..000000000 --- a/public/marvinjs/examples/example-templates-default.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Marvin JS Example - Load Custom Templates (in JSON format) - - - - - - -

    Marvin JS Example - Load Custom Templates (in JSON format)

    - -
    - -
    -
    -

    In this example, custom templates are loaded. These templates are stored in templates/default_templates_with_naphtalane.json (URL is relative to the directory of Marvin JS package). - To display them on custom template toolbar, define the location of their source file in the data-templateurl attribute of the iframe tag of the editor.

    -
    <div class="resizable">
    -	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-templateurl="templates/default_templates_with_naphtalane.json"></iframe>
    -</div>
    -		
    -

    You can generate your own templates file via the following form: Create template

    -
    - - - diff --git a/public/marvinjs/examples/example-templates.html b/public/marvinjs/examples/example-templates.html deleted file mode 100644 index 979cd756b..000000000 --- a/public/marvinjs/examples/example-templates.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - Marvin JS Example - Load Custom Templates - - - - - - -

    Marvin JS Example - Load Custom Templates

    - -
    - -
    -
    -

    In this example, custom templates are loaded. These templates are stored in templates/mytemplates.mrv (URL is relative to the directory of Marvin JS package). - It is an MRV file that contains several molecule structures. - They will appear on custom templates toolbar if location of their source file is defined in the data-templateurl attribute of the iframe tag of the editor.

    -
    <div class="resizable">
    -	<iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-templateurl="templates/mytemplates.mrv"></iframe>
    -</div>
    -		
    -
    - - - diff --git a/public/marvinjs/examples/example-templates_with_displaysettings.html b/public/marvinjs/examples/example-templates_with_displaysettings.html deleted file mode 100644 index 910afe642..000000000 --- a/public/marvinjs/examples/example-templates_with_displaysettings.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - Marvin JS Example - Overwrite custom templates toolbar - - - - - - - - - -

    Marvin JS Example - Overwrite custom templates toolbar

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

    In this example, you can change the content of the custom template toolbar without reloading of the editor. - To do this, type the URL of a template source file into the given input field and submit the Update Templates button.

    -

    When you take a look at the source code, you can see that a listener function is bind to the submit button. - (URLs are relative to the root directory of Marvin JS package.) - When the click event is invoked, the updateToolbars(value) function is performed unless the input field is empty. - This function creates a JavaScript object that contains a templateurl property . To update toolbar pass this object to the setDisplaySettings(settings) function of the sketcher.

    -

    
    -		var marvinSketcherInstance;
    -
    -		$(document).ready(function handleDocumentReady (e) {
    -			// after editor in the sketch iframe is ready store its reference 
    -			// and activate controls
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				marvinSketcherInstance = sketcherInstance;
    -				initControls();
    -			},function (error) {
    -				alert("Cannot retrieve sketcher instance from iframe:"+error);
    -			});
    -		});
    -
    -		function initControls () {
    -			// overwrite custom templates toolbar
    -			$("#updateCustomTemplates").on("click", function(e) {
    -				var s = $("#templateurl").val();
    -				if(typeof s != "undefined" && s.length > 0) {
    -					updateCustomToolbar(s);	
    -				}
    -			});
    -		}
    -
    -		function updateCustomToolbar(url) {
    -			var settings = {
    -					"templateurl": url
    -			};
    -			marvinSketcherInstance.setDisplaySettings(settings);
    -		}

    -
    - - - diff --git a/public/marvinjs/examples/example-toolbars.html b/public/marvinjs/examples/example-toolbars.html deleted file mode 100644 index b0b0b7d0a..000000000 --- a/public/marvinjs/examples/example-toolbars.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - Marvin JS Example - Toolbars - - - - - - - - - -

    Marvin JS Example - Toolbars

    - -
    -
    - Standard - Education - Reaction - Markush - Search - Basic Search - Reporting - View 3D -
    -
    - -
    -
    - -
    -

    In this example, the sketcher is initalized with the standard toolbars.

    -

    This layout setting is defined in the data-toolbars attribute of the iframe, which loads the editor.

    -
    <div class="resizable">
    -<iframe src="../editorws.html" id="sketch" class="sketcher-frame" data-toolbars="standard"></iframe>
    -</div>
    -

    Further presets are enumerated above the sketcher. To switch another layout, select its radio button. - It triggers the reload of the iframe with the new setting. - If you select the Markush layout, the editor will be reloaded with the Markush layout.

    -

    When you take a look at the source code, you can see that a listener function is bind to the change events of radio buttons. - When a change event is invoked, the value of data-toolbars attribute of the iframe tag is overwritten - with the selected value and the reload of the iframe is triggered.

    -

    
    -		$(document).ready(function handleDocumentReady (e) {
    -			initControls();
    -		});
    -
    -		function initControls () {
    -			// bind event listener to all radio buttons from layout-group
    -			$("input[name='layout-group']").change(function(e) {
    -				var s = $(this).val();
    -				reload(s);
    -			});
    -		}
    -		
    -		function reload(layout) {
    -			$("#sketch").attr("data-toolbars", layout);
    -			$("#sketch")[0].contentWindow.location.reload(true);
    -		}
    -

    -
    - - - diff --git a/public/marvinjs/examples/example-toolbars_with_displaysettings.html b/public/marvinjs/examples/example-toolbars_with_displaysettings.html deleted file mode 100644 index eaba42781..000000000 --- a/public/marvinjs/examples/example-toolbars_with_displaysettings.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - Marvin JS Example - Toolbars with display settings - - - - - - - - - -

    Marvin JS Example - Toolbars with display settings

    - -
    -
    - Standard - Education - Reaction - Markush - Search - Basic Search - Reporting - View 3D -
    -
    - -
    -
    -
    -

    In this example, you can change layout without reloading of the editor. - Select the desired layout to rerender editor toolbars.

    -

    When you take a look at the source code, you can see that a listener function is bind to the change events of radio buttons. - When a change event is invoked, the updateToolbars(value) function is performed. - This function assembles a JavaScript object that describes display settings and call the setDisplaySettings(settings) function of the sketcher. - Only give settings that you would like to overwrite. In this case, this is the toolbars property.

    -

    
    -		var marvinSketcherInstance;
    -
    -		$(document).ready(function handleDocumentReady (e) {
    -			// after editor in the sketch iframe is ready store its reference 
    -			// and activate controls
    -			MarvinJSUtil.getEditor("#sketch").then(function (sketcherInstance) {
    -				marvinSketcherInstance = sketcherInstance;
    -				initControls();
    -			},function (error) {
    -				alert("Cannot retrieve sketcher instance from iframe:"+error);
    -			});
    -		});
    -
    -		function initControls () {
    -			// change layout
    -			$("input[name='layout-group']").change(function(e) {
    -				var s = $(this).val();
    -				updateToolbars(s);
    -			});
    -		}
    -
    -		function updateToolbars(layout) {
    -			marvinSketcherInstance.setDisplaySettings({
    -				"toolbars": layout
    -			});
    -		}

    -
    - - - diff --git a/public/marvinjs/examples/form/echo.php b/public/marvinjs/examples/form/echo.php deleted file mode 100644 index 45a21d5a1..000000000 --- a/public/marvinjs/examples/form/echo.php +++ /dev/null @@ -1,12 +0,0 @@ - - - - - -

    mrv field of the posted form

    - - -

    No posted form with mrv field

    - - - \ No newline at end of file diff --git a/public/marvinjs/examples/form/example-submit-form.html b/public/marvinjs/examples/form/example-submit-form.html deleted file mode 100644 index 5689f2a59..000000000 --- a/public/marvinjs/examples/form/example-submit-form.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Marvin JS Example - Get SVG - - - - - - - - - -

    Marvin JS Example - Submit a form

    - -
    - -
    -
    - - -
    - - - \ No newline at end of file diff --git a/public/marvinjs/examples/images/custom-icon.png b/public/marvinjs/examples/images/custom-icon.png deleted file mode 100644 index 399237e95a00fe2ef8ac33ba04b396b938af3acf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 918 zcmV;H18Mw;P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D11m{HK~zXf?Nn(< z6;T*Hg)Nx2Xtt^)8HD7L6xpg)R`$%-Q_G6>Xv#K2!m`y~WmsV=K~WKHP|!j~CKa~t z5%nV~BFiXj!3-2C@67GodDH$B?MFYN1BZ`u=KJn9_kME+|MA!0`MRHMRNh-!vX(e3 zy>P;qi2}V4=S3;5h|jpg_&_hPGQL713bKWPTv3JP#Tj&3kPXOsR`ekiv`(i+$&Tle zrT-;1xs@PW-HVsL4+qO;Pub*Uw3`N@nf}NSZ?K4Oo>i7^xz$1YkpUM+$aXh|t3|(h zzo9--ix*=i7oVpWSssw1ufYaUfo=LKQ}3rfqE{f_(k^I0XHsOqg%LH*zz<_S6=5nH zq{)%Wu-Ro z#`{fJB0gZX?lg5C^$zO2y3?$3q1t2l5n-@#ut{tXEj^Txn3&j3EvlkBT~|aRhLmmL90xVjzSorvp*GseMg1Rz0rB9(EnF#(#miF7{CWL{Q9rmMVmXiY{U;PMQFidX2)Mf#Eh z$zh~}979ebHGXvyi$}Z4>ISuwPQBmo@63qej8W% spF#aSTaul~u4K3sl~%r***_293oD$BxPH&95dZ)H07*qoM6N<$g4t`Z%K!iX diff --git a/public/marvinjs/examples/images/qr.png b/public/marvinjs/examples/images/qr.png deleted file mode 100644 index 78b193f975112e17ce791d247aa1975853bc4076..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 630 zcmV-+0*U>JP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0t-n*K~zXf-H<_R z6Hyd}XK*r6614?gC@6(4gc8IqtduUYXg6K7#A=CR1O;oVm`b&vPC-GW?ZP)xH6)D- ztxH{n{sMnNaG9UrZ^)v@oXNdKLfSX$9yq-F?mgdqnK;K&HK&%Vy7iWEqs~V+MC5)# z-EH8TyBnJ|dz>-DEE&P=iqiGgv(yU|y%KJEi~F~|yLjY1`TH{U>Nm}ry#=orXP6}; zxLqGI+nuG8D_A|Xj`x`m8=22A*{`T(f5c|Z9%sxjOGa?J-VTMRoLNV^-Tsoq%#sn@ zuGi-bXu^d;0czfx&F0Vkp5_I&YwdyotqGTSE_4aeDq9va^dgd#8-yPGw!ibe*W-+tZkCMT$4ZX#50QRvCs07*qoM6N<$g4sAK8UO$Q diff --git a/public/marvinjs/examples/images/search.png b/public/marvinjs/examples/images/search.png deleted file mode 100644 index 02441484df2990247761d8612f5eea915257ed8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1125 zcmV-r1e*JaP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D1NuosK~zXfy;N;X zn^hD(>wu-xWp2wv=eIL%OD1m4ZHYg0%*6QZ_^?@E1klzWO4u^!8W!xEEzktczJderP&AT-cm(HT)11K};Npv_RMp+h7Ylo^yBG&;m9{qQ)0;tz1n=XRW ziFdM8`|+E~VR%!zC68Snf@vwjrEI0`WT4@3xL3L+hh(B(Xs2@ES?QV_%v#vL!d@3z ziY(F8=8SI?0F`u24hXQqatNMFGwr#$6e$}geTNZhTGQb!>6ScpR)Sf76yD}}<6d~Q ztPBoP)fk>X4oaQ@KH%#57+_V?23WIE*?8Xh5^NQY$>JfS`csZlUGwy1odL9GUW4sS z#-!)AL;Ba>HI{!rHvIG0%*^~eB8EbL2j}MIu0$e{_vv%Bq*)$kUxX*qY)AZw&$6bu z8Nc{#gg6kVrlzpFyBpnZH+FP%;K<1B^>8@+3kmI%RLjG$74F}xtZYcNS57hcs-`Bq z>Kj9f6kA$aFgG_Bv$C?{%xE;?`1m-B+$50ua7DvggH4mg23f+k#htyoiCg} z_aLk%ZWZO`8Yen>i{9Q|k#I>DkE~;GWT^U_xE$feJd&Barz+aRXOT{(HuPEc1M_SVIn;qj}VDsbaWJpii*Tu zadELIXS&rT+DehM@vy%IJMK1Z^MKPa&m!Cd+*}0(1u>C|iVAF|=CfEVsL^O*>zu3h z_I4pmB45$4R?;p8{~9U}!vXyTO4t6#gdW|%*)FY&1JP(acF1=eLf$SmX^jus;jHTO~`LZ(%cy&vW>4z z4k9lLL2JK~{lPuL#QaoVub0 - - - - Marvin JS - Examples - - - -

    Marvin JS Examples

    - -

    Sketch

    -

    The pure editor

    -

    The editor extended with default webservices - -

    Import / export structures

    - - -

    Customization

    - - -

    Further examples

    - - -

    ImageExport

    - - - diff --git a/public/marvinjs/examples/jqueryui/dialog.html b/public/marvinjs/examples/jqueryui/dialog.html deleted file mode 100644 index 2ab1eb4c4..000000000 --- a/public/marvinjs/examples/jqueryui/dialog.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - - Marvin JS Editor in jQuery UI Dialog - - - - - - - - - - - - - -
    - -
    - - - - - diff --git a/public/marvinjs/examples/properties/example-set-properties.html b/public/marvinjs/examples/properties/example-set-properties.html deleted file mode 100644 index bc63ebe05..000000000 --- a/public/marvinjs/examples/properties/example-set-properties.html +++ /dev/null @@ -1,298 +0,0 @@ - - - - - Marvin JS Example - Molecule property - - - - - - - - - -

    Marvin JS Example - Molecule property

    - - -
    - -
    - -
      - -
    • Properties (key=value)

    • -
    • - - -
    • -
    • Feadback:

    • -
    -
    -

    This example demonstrates how to insert molecule properties into MRV source.

    -

    Marvin JS can parse molecule properties if they has been bound to the scaffold: -

    		<cml>
    -		  <MDocument>
    -		  	<MChemicalStruct>
    -		  	  <molecule molID="m1">
    -		  	  	<propertyList>
    -		  	  		<property dictRef="my property" title="my property" >
    -		  	  			<scalar>value of my property</scalar>
    -		  	  		</property>
    -		  	  	<propertyList>
    -		  	  	<atomArray> ... </atomArray>
    -		  	  	<bondArray> ... </bondArray>
    -		  	    ...
    -		  	  </molecule>
    -		  	</MChemicalStruct>
    -		  </MDocument>
    -		</cml>  
    -		
    - At single step reaction the canvas content is separated to identical reaction compounds. In this case, molecule properties - does not supported.

    -

    About the example: Draw something and submit the Get properties button. It retrieves the canvas content. The MRV source appears - in the Feadback box. If the scaffold contained molecule properties, they also appears in the Properties box.

    -

    Setup properties: Type key-value pairs (separated by "=" sign) into the Properties box. Each line represents a property (key-value pair). - Pressing the Set properties button trigger a request to retrieve the canvas content (as MRV). - When the mrv export is finished, the content of the Properties box is evaluated. Insert defined molecule properties into - the given MRV source then update the editor with the modified MRV. In the Feadback box, the modified MRV also appears.

    -
    - - - diff --git a/public/marvinjs/examples/properties/xmlindent.js b/public/marvinjs/examples/properties/xmlindent.js deleted file mode 100644 index d3d635fb6..000000000 --- a/public/marvinjs/examples/properties/xmlindent.js +++ /dev/null @@ -1,55 +0,0 @@ -/** -* @author Tamas Vertse -* @Copyright 1998-2017 ChemAxon Ltd. -*/ -(function() { - - var open = /^\s*<\w+/; - var close = /(\/|<\/\w+)\s*>\s*$/; - - function xmlindent(xml) { - var lines = tokenize(xml); - var n = lines.length; - var indent = 0; - var result = ""; - for(var i = 0; i < n; i++) { - var line = lines[i]; - var diff = 0; - if(open.test(line)) { - diff += 1; - } - if(close.test(line)) { - diff -= 1; - } - if(diff == -1) { - result += leftIndent(--indent, line); - } else { - result += leftIndent(indent, line); - indent += diff; - } - } - return result; - } - - function tokenize(xml) { - var reg = /[^\]]><[^\!]/; - var end = xml.search(reg)+2; - var s = xml; - var tokens = new Array(); - while(end > 1) { - var next = s.slice(0, end); - tokens.push(next); - s = s.substring(end); - end = s.search(reg)+2; - } - tokens.push(s); - return tokens; - } - - function leftIndent(n, s) { - var result = s + '\n'; - return (n > 0)? ' '.repeat(n*2)+result : result; - } - - window.xmlindent = xmlindent; -})(); \ No newline at end of file diff --git a/public/marvinjs/examples/query/substructuresearch.html b/public/marvinjs/examples/query/substructuresearch.html deleted file mode 100644 index 0b332616c..000000000 --- a/public/marvinjs/examples/query/substructuresearch.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - -Marvin JS Substructure Search - - - - - - - - - - - -

    Marvin JS Substructure Search

    -

    Draw a query and perform a substructure search with JChem Webservices on an example data base, the target hints will be displayed on the bottom of the page. -Please, take care that Complex Query Search Webservice with valid license is required for this example.

    -

    - -
    - -
    - - -
    -
    - - diff --git a/public/marvinjs/examples/textbox/textbox.html b/public/marvinjs/examples/textbox/textbox.html deleted file mode 100644 index 64d63a463..000000000 --- a/public/marvinjs/examples/textbox/textbox.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - Marvin JS - - - - - -
    -

    -

    - - -

    -
    - - \ No newline at end of file diff --git a/public/marvinjs/gui/5C5DC5E8F823390618266388A9FBC038.cache.js b/public/marvinjs/gui/5C5DC5E8F823390618266388A9FBC038.cache.js deleted file mode 100644 index 67cf688b4..000000000 --- a/public/marvinjs/gui/5C5DC5E8F823390618266388A9FBC038.cache.js +++ /dev/null @@ -1,7878 +0,0 @@ -var $wnd = $wnd || window.parent;var __gwtModuleFunction = $wnd.gui;var $sendStats = __gwtModuleFunction.__sendStats;$sendStats('moduleStartup', 'moduleEvalStart');var $gwt_version = "2.8.2";var $strongName = '5C5DC5E8F823390618266388A9FBC038';var $gwt = {};var $doc = $wnd.document;var $moduleName, $moduleBase;function __gwtStartLoadingFragment(frag) {var fragFile = 'deferredjs/' + $strongName + '/' + frag + '.cache.js';return __gwtModuleFunction.__startLoadingFragment(fragFile);}function __gwtInstallCode(code) {return __gwtModuleFunction.__installRunAsyncCode(code);}function __gwt_isKnownPropertyValue(propName, propValue) {return __gwtModuleFunction.__gwt_isKnownPropertyValue(propName, propValue);}function __gwt_getMetaProperty(name) {return __gwtModuleFunction.__gwt_getMetaProperty(name);}var $stats = $wnd.__gwtStatsEvent ? function(a) {return $wnd.__gwtStatsEvent && $wnd.__gwtStatsEvent(a);} : null;var $sessionId = $wnd.__gwtStatsSessionId ? $wnd.__gwtStatsSessionId : null;function S(){} -function cc(){} -function Ic(){} -function _e(){} -function af(){} -function ff(){} -function gf(){} -function jf(){} -function Df(){} -function Ki(){} -function Ui(){} -function Yi(){} -function Ys(){} -function os(){} -function Uj(){} -function Wj(){} -function qp(){} -function wp(){} -function Rp(){} -function bq(){} -function zt(){} -function Kt(){} -function Vt(){} -function lu(){} -function $u(){} -function _u(){} -function Ev(){} -function Fv(){} -function yz(){} -function Uz(){} -function bA(){} -function lB(){} -function NB(){} -function OB(){} -function pD(){} -function fG(){} -function fM(){} -function aJ(){} -function RJ(){} -function SJ(){} -function FO(){} -function CR(){} -function ER(){} -function rT(){} -function CT(){} -function eU(){} -function ZV(){} -function mX(){} -function yX(){} -function XX(){} -function qZ(){} -function rZ(){} -function b_(){} -function R_(){} -function R3(){} -function P3(){} -function $3(){} -function $4(){} -function l4(){} -function V0(){} -function g2(){} -function h2(){} -function $5(){} -function a6(){} -function c6(){} -function g6(){} -function _6(){} -function o7(){} -function s7(){} -function I7(){} -function J7(){} -function M7(){} -function N7(){} -function q8(){} -function s8(){} -function u8(){} -function z8(){} -function A8(){} -function H8(){} -function L8(){} -function M8(){} -function O8(){} -function t9c(){} -function p9c(){} -function lod(){} -function Hbb(){} -function Ibb(){} -function hcb(){} -function $cb(){} -function $kb(){} -function Bgb(){} -function Dgb(){} -function Egb(){} -function Tgb(){} -function fjb(){} -function gjb(){} -function njb(){} -function gmb(){} -function hmb(){} -function imb(){} -function kmb(){} -function rmb(){} -function _qb(){} -function tub(){} -function txb(){} -function cxb(){} -function lwb(){} -function fzb(){} -function OAb(){} -function aBb(){} -function QBb(){} -function SBb(){} -function ECb(){} -function FCb(){} -function XCb(){} -function YCb(){} -function ZCb(){} -function $Cb(){} -function _Eb(){} -function iFb(){} -function kFb(){} -function DFb(){} -function wGb(){} -function RGb(){} -function jJb(){} -function uKb(){} -function wLb(){} -function wMb(){} -function vMb(){} -function xMb(){} -function yMb(){} -function zMb(){} -function AMb(){} -function BMb(){} -function CMb(){} -function RMb(){} -function SMb(){} -function TMb(){} -function UMb(){} -function VMb(){} -function WMb(){} -function iNb(){} -function jNb(){} -function oNb(){} -function pNb(){} -function uNb(){} -function vNb(){} -function BNb(){} -function CNb(){} -function DNb(){} -function oPb(){} -function pPb(){} -function qPb(){} -function uPb(){} -function ZPb(){} -function rQb(){} -function GQb(){} -function SQb(){} -function UQb(){} -function qSb(){} -function RUb(){} -function $0b(){} -function $9b(){} -function y9b(){} -function P9b(){} -function I7b(){} -function Bdc(){} -function Agc(){} -function yic(){} -function Kic(){} -function _nc(){} -function goc(){} -function ooc(){} -function roc(){} -function woc(){} -function zoc(){} -function Coc(){} -function Foc(){} -function Moc(){} -function Soc(){} -function Voc(){} -function Yoc(){} -function apc(){} -function dpc(){} -function gpc(){} -function jpc(){} -function mpc(){} -function ppc(){} -function spc(){} -function vpc(){} -function ypc(){} -function Hpc(){} -function Kpc(){} -function Opc(){} -function Rpc(){} -function Upc(){} -function Zpc(){} -function aqc(){} -function dqc(){} -function Osc(){} -function mtc(){} -function stc(){} -function utc(){} -function vtc(){} -function Ytc(){} -function aad(){} -function dad(){} -function fad(){} -function had(){} -function hdd(){} -function ndd(){} -function pdd(){} -function Fdd(){} -function Gdd(){} -function Ndd(){} -function Odd(){} -function Vdd(){} -function Abd(){} -function Ebd(){} -function Sbd(){} -function ucd(){} -function uid(){} -function tid(){} -function kfd(){} -function mfd(){} -function Xjd(){} -function dkd(){} -function cmd(){} -function Trd(){} -function esd(){} -function hsd(){} -function isd(){} -function jsd(){} -function Gsd(){} -function vud(){} -function Bud(){} -function Cud(){} -function Dud(){} -function zvd(){} -function Qvd(){} -function Vvd(){} -function Wvd(){} -function Xvd(){} -function vwd(){} -function Fwd(){} -function txd(){} -function tMd(){} -function wMd(a){} -function lOd(a,b){} -function bF(){aF()} -function eF(){dF()} -function hF(){gF()} -function nF(){mF()} -function ae(){_d()} -function Ci(){Bi()} -function Qw(){Pw()} -function J3(){I3()} -function m6(){k6()} -function teb(){reb()} -function HGb(){FGb()} -function u7b(){t7b()} -function ckc(){ujc()} -function okc(){ujc()} -function akd(){Vjd()} -function $jd(){Vjd()} -function Xcd(){Vcd()} -function hcd(){gcd()} -function xcd(){wcd()} -function Ycd(){Icd()} -function gkd(){fkd()} -function iPd(){Ttd()} -function OPd(){Ttd()} -function Hic(a){Gic()} -function DNd(a,b,c){} -function _f(a,b){a.U=b} -function xg(a,b){a.S=b} -function El(a,b){a.i=b} -function Fl(a,b){a.f=b} -function Gl(a,b){a.j=b} -function Jl(a,b){a.p=b} -function Kl(a,b){a.o=b} -function Ll(a,b){a.q=b} -function En(a,b){a.a=b} -function Uo(a,b){a.b=b} -function Vo(a,b){a.d=b} -function Vz(a,b){a.c=b} -function Pu(a,b){a.n=b} -function vH(a,b){a.k=b} -function s5(a,b){a.e=b} -function ENd(a,b,c,d){} -function Lcd(a){jbd(a)} -function Ed(a){this.a=a} -function Fd(a){this.a=a} -function Hd(a){this.a=a} -function Td(a){this.a=a} -function ze(a){this.a=a} -function Me(a){this.a=a} -function Ne(a){this.a=a} -function Ve(a){this.a=a} -function Af(a){this.a=a} -function gh(a){this.a=a} -function Mh(a){this.a=a} -function Oh(a){this.a=a} -function Uh(a){this.a=a} -function Xh(a){this.a=a} -function Yh(a){this.a=a} -function _h(a){this.a=a} -function ei(a){this.a=a} -function si(a){this.a=a} -function Si(a){this.a=a} -function Ti(a){this.a=a} -function Vi(a){this.a=a} -function Xi(a){this.a=a} -function ej(a){this.a=a} -function fj(a){this.a=a} -function qj(a){this.a=a} -function rj(a){this.a=a} -function Mj(a){this.a=a} -function tj(a){this.b=a} -function el(a){this.b=a} -function em(a){this.a=a} -function fm(a){this.a=a} -function lm(a){this.a=a} -function Nm(a){this.a=a} -function Om(a){this.a=a} -function Ok(a){this.a=a} -function hk(a){this.a=a} -function Uk(a){this.a=a} -function Pm(a){this.a=a} -function On(a){this.a=a} -function Qn(a){this.a=a} -function Bo(a){this.a=a} -function Co(a){this.a=a} -function Do(a){this.a=a} -function Eo(a){this.a=a} -function Fo(a){this.a=a} -function Go(a){this.a=a} -function Ho(a){this.a=a} -function Io(a){this.a=a} -function Jo(a){this.a=a} -function Ko(a){this.a=a} -function ap(a){this.a=a} -function bp(a){this.a=a} -function cp(a){this.a=a} -function dp(a){this.a=a} -function ep(a){this.a=a} -function Lp(a){this.a=a} -function kq(a){this.a=a} -function nq(a){this.a=a} -function ks(a){this.a=a} -function $s(a){this.a=a} -function ss(a){this.b=a} -function Uu(a){this.b=a} -function Xu(a){this.a=a} -function Yu(a){this.a=a} -function Yt(a){this.a=a} -function jt(a){this.a=a} -function vt(a){this.a=a} -function Dt(a){this.a=a} -function vv(a){this.a=a} -function ww(a){this.a=a} -function xw(a){this.a=a} -function $w(a){this.a=a} -function Yz(a){this.a=a} -function _B(a){this.a=a} -function QB(a){this.b=a} -function pA(a){this.o=a} -function vC(a){this.a=a} -function VC(a){this.a=a} -function WC(a){this.a=a} -function XC(a){this.a=a} -function yD(a){this.a=a} -function jD(a){this.j=a} -function ID(a){this.c=a} -function IE(a){this.a=a} -function SE(a){this.a=a} -function iF(a){this.a=a} -function JF(a){this.a=a} -function lG(a){this.a=a} -function xG(a){this.a=a} -function iI(a){this.a=a} -function gJ(a){this.a=a} -function GK(a){this.a=a} -function bM(a){this.a=a} -function qN(a){this.a=a} -function rN(a){this.a=a} -function sN(a){this.a=a} -function tN(a){this.a=a} -function wN(a){this.a=a} -function ON(a){this.b=a} -function aO(a){this.a=a} -function qP(a){this.a=a} -function vP(a){this.a=a} -function yP(a){this.a=a} -function cP(a){this.c=a} -function wS(a){this.a=a} -function qT(a){this.a=a} -function TT(a){this.a=a} -function hW(a){this.a=a} -function uW(a){this.a=a} -function lX(a){this.a=a} -function YX(a){this.a=a} -function rX(a){this.b=a} -function pZ(a){this.a=a} -function yZ(a){this.a=a} -function R$(a){this.a=a} -function W$(a){this.a=a} -function c_(a){this.a=a} -function d0(a){this.a=a} -function i2(a){this.a=a} -function r3(a){this.a=a} -function N3(a){this.a=a} -function b6(a){this.a=a} -function w9(a){this.a=a} -function b5(){this.a=''} -function es(){Ur(this)} -function fs(){Ur(this)} -function Nw(){yw(this)} -function By(){kx(this)} -function uMd(){ug(this)} -function XMd(){sB(this)} -function $Md(){aC(this)} -function kNd(){AJ(this)} -function tNd(){PO(this)} -function uNd(){TO(this)} -function vNd(){XO(this)} -function NOd(){return 1} -function ROd(){return 0} -function pab(a){this.a=a} -function Gbb(a){this.a=a} -function xbb(a){this.c=a} -function Ffb(a){this.c=a} -function pfb(a){this.a=a} -function Bcb(a){this.a=a} -function gcb(a){this.b=a} -function edb(a){this.a=a} -function kdb(a){this.a=a} -function ldb(a){this.a=a} -function Peb(a){this.a=a} -function bgb(a){this.a=a} -function fgb(a){this.a=a} -function Agb(a){this.a=a} -function Lhb(a){this.a=a} -function aib(a){this.a=a} -function Mkb(a){this.a=a} -function Nkb(a){this.a=a} -function _kb(a){this.a=a} -function _lb(a){this.a=a} -function Xlb(a){this.a=a} -function Ylb(a){this.a=a} -function Zlb(a){this.a=a} -function $lb(a){this.a=a} -function amb(a){this.a=a} -function bmb(a){this.a=a} -function dmb(a){this.a=a} -function fmb(a){this.a=a} -function omb(a){this.a=a} -function zmb(a){this.a=a} -function Amb(a){this.a=a} -function nnb(a){this.a=a} -function Mnb(a){this.a=a} -function Nnb(a){this.a=a} -function Mob(a){this.a=a} -function Sob(a){this.a=a} -function Yob(a){this.a=a} -function upb(a){this.a=a} -function Jpb(a){this.a=a} -function Kpb(a){this.a=a} -function Lpb(a){this.a=a} -function Mpb(a){this.a=a} -function cqb(a){this.a=a} -function dqb(a){this.a=a} -function lqb(a){this.a=a} -function sqb(a){this.a=a} -function uqb(a){this.a=a} -function Tqb(a){this.a=a} -function Wqb(a){this.a=a} -function Zqb(a){this.a=a} -function arb(a){this.a=a} -function trb(a){this.a=a} -function yub(a){this.a=a} -function Oub(a){this.a=a} -function Vub(a){this.a=a} -function Mvb(a){this.a=a} -function Tvb(a){this.a=a} -function Yvb(a){this.a=a} -function _vb(a){this.a=a} -function cwb(a){this.a=a} -function owb(a){this.a=a} -function sxb(a){this.a=a} -function uxb(a){this.a=a} -function Cxb(a){this.a=a} -function Dxb(a){this.a=a} -function Oxb(a){this.a=a} -function tyb(a){this.a=a} -function Hyb(a){this.a=a} -function szb(a){this.a=a} -function tzb(a){this.a=a} -function Azb(a){this.a=a} -function Dzb(a){this.a=a} -function Izb(a){this.a=a} -function Wzb(a){this.a=a} -function bAb(a){this.a=a} -function cAb(a){this.a=a} -function KAb(a){this.a=a} -function SAb(a){this.a=a} -function uBb(a){this.a=a} -function MBb(a){this.a=a} -function eCb(a){this.a=a} -function lCb(a){this.a=a} -function DCb(a){this.a=a} -function RCb(a){this.a=a} -function cDb(a){this.a=a} -function dDb(a){this.a=a} -function rDb(a){this.a=a} -function uDb(a){this.a=a} -function yDb(a){this.a=a} -function zDb(a){this.a=a} -function ADb(a){this.a=a} -function DDb(a){this.a=a} -function jEb(a){this.a=a} -function qEb(a){this.a=a} -function rEb(a){this.a=a} -function SEb(a){this.a=a} -function XEb(a){this.a=a} -function YEb(a){this.a=a} -function cFb(a){this.a=a} -function nFb(a){this.a=a} -function PFb(a){this.a=a} -function RFb(a){this.a=a} -function dGb(a){this.a=a} -function gGb(a){this.a=a} -function iGb(a){this.a=a} -function jGb(a){this.a=a} -function qGb(a){this.a=a} -function uGb(a){this.a=a} -function yGb(a){this.a=a} -function CGb(a){this.a=a} -function VGb(a){this.a=a} -function WGb(a){this.a=a} -function XGb(a){this.a=a} -function NGb(a){this.b=a} -function fHb(a){this.a=a} -function gHb(a){this.a=a} -function hHb(a){this.a=a} -function iHb(a){this.a=a} -function jHb(a){this.a=a} -function mHb(a){this.a=a} -function pHb(a){this.a=a} -function qHb(a){this.a=a} -function tHb(a){this.a=a} -function CHb(a){this.a=a} -function DHb(a){this.a=a} -function EHb(a){this.a=a} -function CIb(a){this.a=a} -function DIb(a){this.a=a} -function JIb(a){this.a=a} -function tJb(a){this.a=a} -function tKb(a){this.c=a} -function AKb(a){this.a=a} -function BKb(a){this.a=a} -function FKb(a){this.c=a} -function SKb(a){this.c=a} -function WKb(a){this.a=a} -function mLb(a){this.a=a} -function qLb(a){this.a=a} -function rLb(a){this.a=a} -function uLb(a){this.a=a} -function ELb(a){this.a=a} -function RLb(a){this.a=a} -function gLb(a){this.b=a} -function ZNb(a){this.a=a} -function tOb(a){this.a=a} -function OPb(a){this.a=a} -function QPb(a){this.a=a} -function iQb(a){this.a=a} -function kQb(a){this.a=a} -function lQb(a){this.a=a} -function tQb(a){this.a=a} -function vQb(a){this.a=a} -function wQb(a){this.a=a} -function xQb(a){this.a=a} -function yQb(a){this.a=a} -function zQb(a){this.a=a} -function AQb(a){this.a=a} -function BQb(a){this.a=a} -function CQb(a){this.a=a} -function DQb(a){this.a=a} -function EQb(a){this.a=a} -function FQb(a){this.a=a} -function HQb(a){this.a=a} -function IQb(a){this.a=a} -function MQb(a){this.a=a} -function NQb(a){this.a=a} -function OQb(a){this.a=a} -function pRb(a){this.a=a} -function TRb(a){this.a=a} -function _Rb(a){this.a=a} -function dSb(a){this.a=a} -function eSb(a){this.a=a} -function lSb(a){this.a=a} -function mSb(a){this.a=a} -function tSb(a){this.a=a} -function ASb(a){this.a=a} -function GSb(a){this.a=a} -function PSb(a){this.a=a} -function TSb(a){this.a=a} -function ZSb(a){this.a=a} -function hUb(a){this.a=a} -function iUb(a){this.a=a} -function yUb(a){this.a=a} -function zUb(a){this.a=a} -function DUb(a){this.a=a} -function QUb(a){this.a=a} -function UWb(a){this.a=a} -function CXb(a){this.a=a} -function wRb(){this.a=20} -function w$b(a){this.c=a} -function g$b(){d$b(this)} -function jlb(){hlb(this)} -function olb(){mlb(this)} -function Lmb(){Jmb(this)} -function Rmb(){Pmb(this)} -function Zmb(){Wmb(this)} -function _nb(){$nb(this)} -function H1b(a){a.b=null} -function M4b(a){this.a=a} -function b6b(a){this.a=a} -function C6b(a){this.a=a} -function N7b(a){this.a=a} -function Q7b(a){this.a=a} -function Y8b(a){this.a=a} -function rdc(a){this.a=a} -function zdc(a){this.a=a} -function Edc(a){this.a=a} -function Ldc(a){this.a=a} -function Sdc(a){this.a=a} -function Dic(a){this.a=a} -function Eic(a){this.a=a} -function zpc(a){this.a=a} -function Wpc(a){this.a=a} -function gqc(a){this.a=a} -function jqc(a){this.a=a} -function Fqc(a){this.a=a} -function _qc(a){this.a=a} -function _hc(a){this.b=a} -function drc(a){this.a=a} -function duc(a){this.a=a} -function Ptc(a){this.a=a} -function Ttc(a){this.a=a} -function Ztc(a){this.a=a} -function tad(a){this.a=a} -function Cbd(a){this.a=a} -function Pdd(a){this.a=a} -function led(a){this.a=a} -function xed(a){this.a=a} -function Nfd(a){this.a=a} -function rgd(a){this.a=a} -function wgd(a){this.a=a} -function Ygd(a){this.a=a} -function $gd(a){this.a=a} -function _gd(a){this.a=a} -function jgd(a){this.b=a} -function xhd(a){this.a=a} -function Ahd(a){this.a=a} -function Bhd(a){this.a=a} -function Fid(a){this.a=a} -function Gid(a){this.a=a} -function Iid(a){this.a=a} -function Pid(a){this.a=a} -function mjd(a){this.a=a} -function Ljd(a){this.c=a} -function ikd(a){this.a=a} -function Kkd(a){this.a=a} -function Yld(a){this.a=a} -function imd(a){this.a=a} -function umd(a){this.a=a} -function gnd(a){this.a=a} -function Sqd(a){this.a=a} -function Zqd(a){this.d=a} -function ard(a){this.a=a} -function brd(a){this.a=a} -function drd(a){this.a=a} -function erd(a){this.a=a} -function jrd(a){this.a=a} -function krd(a){this.a=a} -function lrd(a){this.a=a} -function Srd(a){this.a=a} -function Frd(a){this.c=a} -function xsd(a){this.c=a} -function ksd(a){this.a=a} -function Bsd(a){this.a=a} -function Csd(a){this.a=a} -function Hsd(a){this.a=a} -function Wsd(a){this.a=a} -function osd(a){this.b=a} -function qsd(a){this.b=a} -function vtd(a){this.a=a} -function gud(a){this.a=a} -function Kwd(a){this.a=a} -function Dpc(){this.a={}} -function hm(a){gm(this,a)} -function GMd(a){fp(this)} -function APd(){Yqd(this)} -function QPd(){return ''} -function HNd(a){return 0} -function zOd(a){return a} -function GOd(a,b,c,d,e){} -function Ag(a,b){yg(b,a)} -function Ww(a){Yw(a,a.d)} -function YMd(){YD(this.a)} -function ZMd(){WD(this.a)} -function _Md(){rC(this.a)} -function DOd(){Lg(this.a)} -function Wp(){this.a=Vp()} -function oW(){this.b=null} -function TW(a){a.b=new is} -function DS(a){a.a=new es} -function iV(a){a.e=new es} -function He(a,b){a.a.nb(b)} -function te(a,b){Hl(a.a,b)} -function we(a,b){fg(a.a,b)} -function Sd(a,b){Jd(a.a,b)} -function zf(a,b){vf(a.a,b)} -function Cf(a,b){wf(a.a,b)} -function Bf(a,b){zf(a.b,b)} -function Ck(a,b){Hk(a.b,b)} -function wk(a,b){Lr(a.a,b)} -function FA(a,b){JA(a.a,b)} -function IL(a,b){ML(a.a,b)} -function mN(a,b){yN(a.e,b)} -function yN(a,b){vN(a.b,b)} -function BN(a,b){kN(a.b,b)} -function iS(a,b){Ji(a.b,b)} -function W_(a,b){lt(a.b,b)} -function V_(a,b){lt(a.a,b)} -function u2(a,b){Gl(a.a,b)} -function Mk(a,b){a.a.Mc(b)} -function Mub(a){a.d=Eub(a)} -function ijc(b,a){b.id=a} -function alc(b,a){b.alt=a} -function clc(b,a){b.src=a} -function pjc(b,a){b.href=a} -function Pgc(b,a){b.font=a} -function hoc(b,a){b.rows=a} -function I8c(a){return a.e} -function EOd(){return RAd} -function JOd(){return mJd} -function KOd(){return pJd} -function BOd(a){return a.o} -function INd(a){return 7.5} -function FNd(){return true} -function WMd(){return this} -function UMd(){return null} -function kuc(){return null} -function Zd(){Yd(this,null)} -function mNd(a){QK(this,a)} -function nNd(a){RK(this,a)} -function xMd(a){Hi(this.a)} -function EPd(){this.a.Tc()} -function nf(){this.a=new xf} -function al(){this.a=new es} -function Ik(){this.b=new Yi} -function is(){es.call(this)} -function mt(){es.call(this)} -function ti(){Tc.call(this)} -function $y(){By.call(this)} -function LA(){KA.call(this)} -function MA(){KA.call(this)} -function NA(){KA.call(this)} -function q2(){M1.call(this)} -function v2(){M1.call(this)} -function LV(){this.a=new is} -function wB(){this.a=new es} -function OJ(){this.a=new es} -function Y6(){this.a=new es} -function E7(){this.a=new es} -function O7(){this.j=new es} -function B4(a){this.a=f2(a)} -function j6(a){this.a=f2(a)} -function ns(a){return ms(a)} -function Ws(a){return Xs(a)} -function zm(a,b){oed(a.d,b)} -function Hr(a,b){Kqd(a.b,b)} -function K1(a,b){wVb(a.a,b)} -function s2(a,b){CWb(a.a,b)} -function Ccb(a,b){Wr(a.a,b)} -function sdb(a,b){Wr(a.r,b)} -function udb(a,b){Wr(a.v,b)} -function Sdb(a,b){_r(a.w,b)} -function K4b(a,b){_r(a.b,b)} -function ERb(a,b){Wr(a.b,b)} -function xwb(a,b){Ht(a.b,b)} -function fDb(a,b){rl(a.a,b)} -function nIb(a,b){zw(a.o,b)} -function Ldd(a,b){Cg(a.p,b)} -function Ged(a,b){Eg(a.b,b)} -function zKb(a,b){a.a.ob(b)} -function jid(a,b){a.a.Mo(b)} -function rjc(b,a){b.width=a} -function aXb(a){_Wb(this,a)} -function K8(){y8.call(this)} -function N8(){y8.call(this)} -function P8(){y8.call(this)} -function LPd(a){wud(this,a)} -function Ihc(a){Hhc=a;eic()} -function Ghc(){this.a=Ohc()} -function Qtd(){this.a=Ltd()} -function Hoc(){this.c=++Goc} -function Sb(){this.a=new ntd} -function ak(){this.a=new ltd} -function It(){this.a=new ltd} -function KA(){this.a=new ltd} -function yu(){this.a=new wtd} -function FQ(a){EQ();this.a=a} -function cf(a){bf();return a} -function aNd(a){return null} -function GNd(a){return true} -function xNd(){return false} -function y8(){this.a=new ltd} -function FR(){this.a=new yod} -function ocb(){this.a=new es} -function Dcb(){this.a=new es} -function $fb(){this.a=new es} -function Wfb(a,b){Zfb(b,a.a)} -function Xfb(a,b){Zfb(b,a.b)} -function Qdb(a,b){Leb(a.a,b)} -function emb(a,b){zub(a.a,b)} -function Kjb(a,b){yqd(a.a,b)} -function _gb(a,b){ptd(a.d,b)} -function xkb(a,b){Bkb(a.c,b)} -function bvb(a,b){ivb(a.b,b)} -function Bxb(a,b){wxb(a.a,b)} -function oH(a,b){yQ(a.o.f,b)} -function lO(a,b){yQ(a.c.f,b)} -function Rn(a,b){a.a.O.Nb(b)} -function gDb(a,b){Ugd(a.a,b)} -function qDb(a,b){nDb(a.a,b)} -function REb(a,b){elc(a.a,b)} -function QHb(a,b){ptd(a.a,b)} -function pLb(a,b){zKb(a.a,b)} -function wSb(a,b){HSb(a.a,b)} -function xSb(a,b){JSb(a.b,b)} -function ySb(a,b){JSb(a.a,b)} -function gD(a){yE(bD(a),a.b)} -function OL(a){a.a&&(a.b=-1)} -function bXb(a,b){odb(a.a,b)} -function M3b(a,b){a.b=mnd(b)} -function Ivb(){this.a=new es} -function m9b(){this.a=new es} -function bDb(){this.a=new tp} -function pDb(){this.c=new is} -function F$b(){this.a=new By} -function bdd(){this.b=new es} -function Bad(){Bad=p9c;Had()} -function Phd(){Phd=p9c;Thd()} -function $yb(){Mn.call(this)} -function CBb(){Mn.call(this)} -function ICb(){Tc.call(this)} -function mQb(){Tc.call(this)} -function LSb(){Tc.call(this)} -function Sjd(){Sjd=p9c;Rjd()} -function vMd(){Ch(this,null)} -function _ud(){this.a=new es} -function Cwd(a,b){a.length=b} -function qjc(b,a){b.height=a} -function Cpc(a,b,c){a.a[b]=c} -function Qdc(a,b){ejc(b,a.a)} -function phd(a,b){Eid(b,a.e)} -function Aid(a,b){HEb(a.a,b)} -function Bid(a,b){IEb(a.a,b)} -function EMd(a){Hi(this.a.f)} -function FMd(a){Hi(this.a.k)} -function gNd(a){Jl(this,a.c)} -function wNd(a){AP(this,a.c)} -function fNd(a){return false} -function CNd(){return this.e} -function LNd(){return this.f} -function NNd(){return this.r} -function AMd(){return this.a} -function BMd(){return this.d} -function IMd(){return this.n} -function JMd(){return this.i} -function KMd(){return this.b} -function VMd(){return this.c} -function aOd(){return this.k} -function FOd(){return this.q} -function OOd(){return this.o} -function POd(){return this.p} -function QOd(){return this.s} -function SOd(){return this.u} -function UOd(){return this.C} -function VOd(){return this.t} -function cPd(){return this.j} -function $hd(a){return ':'+a} -function nOd(a){return a.$()} -function As(a,b){return a?a:b} -function XNd(a){Wr(this.a,a)} -function LOd(a){Bf(this.a,a)} -function oOd(a){Ii(this.a,1)} -function HOd(a){this.a.ob(a)} -function IOd(a){this.a.tb(a)} -function vd(a){this.gb(Cyd,a)} -function AC(a){uVb(a.c.C,a.a)} -function Lt(a,b){mqc(a.b,b,a)} -function KE(a,b){b.vm(a._l())} -function elb(){blb.call(this)} -function xgb(){$fb.call(this)} -function EKb(){qKb.call(this)} -function A1b(){uTb.call(this)} -function dbb(){this.a=new yod} -function ccb(){this.a=new ltd} -function xcb(){this.a=new ltd} -function Tib(){this.a=new ltd} -function Hkb(){this.a=new ltd} -function mub(){this.a=new ltd} -function JKb(){this.a=new ltd} -function eJb(){this.a=new _td} -function I9c(){this.a=new yod} -function Iqc(){this.a=new Cqc} -function Pbd(){this.b=new Rbd} -function Sgc(b,a){b.lineCap=a} -function elc(b,a){b.checked=a} -function hlc(b,a){b.htmlFor=a} -function Mgc(b,a){b.rotate(a)} -function zic(a){return a.Gc()} -function mec(a){En(this,a.id)} -function Ioc(){Hoc.call(this)} -function ged(){wdc.call(this)} -function Ned(){wdc.call(this)} -function rhd(){shd.call(this)} -function wkd(){qkd.call(this)} -function ykd(){qkd.call(this)} -function mmd(){kmd.call(this)} -function mtd(){Oqd.call(this)} -function ntd(){Oqd.call(this)} -function ltd(){Nqd.call(this)} -function kmd(){mQb.call(this)} -function and(){mQb.call(this)} -function dnd(){mQb.call(this)} -function tnd(){mQb.call(this)} -function Fod(){mQb.call(this)} -function Isd(){mQb.call(this)} -function Msd(){mQb.call(this)} -function Eud(){mQb.call(this)} -function wtd(){Nqd.call(this)} -function std(){this.a=new ltd} -function ttd(){this.a=new mtd} -function _vd(){this.a=new ltd} -function Nvd(){this.a=new rvd} -function eNd(a){Oe(a.a.p,a.b)} -function sMd(a){return a.ab()} -function yPd(a){return Nld(a)} -function IPd(a){return this.a} -function PNd(a,b){return null} -function Hnd(a,b){return a===b} -function dg(a,b){hjc(a.xb(),b)} -function _g(a,b){Eg(a,b);Tg(a)} -function Jg(){Jg=p9c;Ig=E8c()} -function Xj(){Xj=p9c;Tj=new Wj} -function rp(){rp=p9c;op=new qp} -function xp(){xp=p9c;up=new wp} -function Up(){Up=p9c;Pp=new Rp} -function dq(){dq=p9c;_p=new bq} -function ct(){this.b=(gt(),ft)} -function ul(a){tl.call(this,a)} -function Uc(a){Rc.call(this,a)} -function Wc(a){Uc.call(this,a)} -function Yc(a){Wc.call(this,a)} -function Ce(a){ze.call(this,a)} -function Ge(a){ze.call(this,a)} -function js(a){gs.call(this,a)} -function $t(a){Yt.call(this,a)} -function mu(a){Mt.call(this,a)} -function Cu(a){Mt.call(this,a)} -function Cy(a){by.call(this,a)} -function mOd(a){xSb(this.a,a)} -function eG(a){a.b=true;a.ic()} -function oA(a){a.Wf();a.n.Uf()} -function oG(a,b){a.a.a.a.kg(b)} -function mG(a,b){a.a.a.a.fg(b)} -function nG(a,b){a.a.a.a.gg(b)} -function pG(a,b){a.a.a.a.hg(b)} -function qG(a,b){a.a.a.a.lg(b)} -function rG(a,b){a.a.a.a.mg(b)} -function uG(a,b){a.a.a.a.ng(b)} -function wG(a,b){a.a.a.a.og(b)} -function Yr(a,b){return a.a[b]} -function YO(a){$G.call(this,a)} -function QO(a){$G.call(this,a)} -function dH(a){$G.call(this,a)} -function dP(a){$G.call(this,a)} -function cJ(a){$G.call(this,a)} -function MK(a){$G.call(this,a)} -function DM(a){$G.call(this,a)} -function KN(a){$G.call(this,a)} -function NW(a){return JW(CW,a)} -function OW(a){return JW(DW,a)} -function PW(a){return JW(EW,a)} -function o6(a,b){!!b&&N2b(a,b)} -function p6(a,b){!!b&&K2b(a,b)} -function $W(a,b){ZW(a,b.a,b.b)} -function F$(a,b){b.uf(a.a,a.b)} -function Xub(a,b){mqc(a.a,b,a)} -function jQ(a,b,c){qQ(a.a,b,c)} -function aGb(a,b){HEb(a.a.a,b)} -function fGb(a,b,c){eGb(a,b,c)} -function yHb(a,b){Ugd(a.e,b.k)} -function RKb(a,b){a.a=b;QKb(a)} -function SVb(a,b){vqc(a.b,b,a)} -function Q2b(a,b){!!b&&(a.k=b)} -function Owb(a){!!a.b&&Lg(a.b)} -function O3b(a,b){a.c=b;vTb(a)} -function Q8(a){S7.call(this,a)} -function i7b(a){h7b();this.a=a} -function l7b(a){k7b();this.a=a} -function o7b(a){n7b();this.a=a} -function r7b(a){q7b();this.a=a} -function x7b(a){w7b();this.a=a} -function A7b(a){z7b();this.a=a} -function D7b(a){C7b();this.a=a} -function dib(a){cib();this.a=a} -function zbc(a){wbc();this.a=a} -function Tgc(b,a){b.lineJoin=a} -function glc(b,a){b.disabled=a} -function ljc(b,a){b.tabIndex=a} -function Fjc(a,b,c){a.add(b,c)} -function Cjd(a,b){Fjd(a,b,a.c)} -function Pud(a){Lud();this.a=a} -function yMd(a){Ii(this.a,500)} -function CMd(a){this.a.c=false} -function dvd(a){a.b=null;a.c=0} -function DMd(){return this.b.a} -function KNd(){return this.c.a} -function MNd(){return this.c.c} -function UNd(){return this.a.a} -function rNd(){return YM(this)} -function BNd(){return pS(this)} -function ZNd(){return 'M RBC'} -function $Nd(){return 'M SUB'} -function _Nd(){return 'M UNS'} -function vOd(){return this.b.b} -function MOd(){return this.a.c} -function _Od(){return !!this.b} -function Ot(){Ot=p9c;Nt=new Vt} -function yt(){yt=p9c;xt=new zt} -function NS(){NS=p9c;MS=new rT} -function lW(){lW=p9c;kW=new oW} -function xX(){xX=p9c;wX=new yX} -function a_(){a_=p9c;_$=new b_} -function _d(){_d=p9c;$d=new Hoc} -function ce(){ce=p9c;be=new Hoc} -function Bi(){Bi=p9c;Ai=new Hoc} -function Pw(){Pw=p9c;Ow=new Ioc} -function aF(){aF=p9c;_E=new Hoc} -function dF(){dF=p9c;cF=new Hoc} -function gF(){gF=p9c;fF=new Ioc} -function mF(){mF=p9c;lF=new Hoc} -function xgd(){xgd=p9c;new ltd} -function EQ(){EQ=p9c;DQ=new Hoc} -function bC(a){this.a=new gs(a)} -function gx(a){Ry(a.b);a.a=null} -function U$(a,b){return a.a=b,a} -function Rf(a){return abd(),a.U} -function LZ(a){return GX(a,a.i)} -function yn(a){return a.b?a.c:0} -function vN(a,b){a.b=true;a.c=b} -function Q1(a,b){a.n=_0b(b,a.n)} -function V1(a,b){a.n=c1b(b,a.n)} -function VNd(a,b){s3(this,a,b)} -function l9(a,b){f9(b)&&m9(a,b)} -function o9(a,b){g9(b)&&p9(a,b)} -function o5(a,b){Wr(a.a,mnd(b))} -function Rb(a,b,c){Hqd(a.a,b,c)} -function Vr(a,b,c){zwd(a.a,b,c)} -function Pt(a,b,c){Ytd(a.c,b,c)} -function aU(a,b,c){Qsd(a.b,b,c)} -function _Fb(a,b){YFb(this,a,b)} -function $Jb(a){Yt.call(this,a)} -function fab(a){S7.call(this,a)} -function nQb(a){Uc.call(this,a)} -function MSb(a){Uc.call(this,a)} -function k0b(a){P1.call(this,a)} -function YPb(a){TPb();Wr(SPb,a)} -function v5b(a){O5b(a.a,r5b(a))} -function pxb(a){Lg(a.a);xm(a.a)} -function BWb(a,b){a.d=b;Rt(b.a)} -function d$b(a){a.b=(p$b(),n$b)} -function o9b(a){!!a&&(this.a=a)} -function Roc(a){!!a.a&&slc(a.a)} -function arc(a){Uc.call(this,a)} -function r7(a){this.c=new ss(a)} -function _5(a){this.a=new H7(a)} -function UEb(){this.a=Nkc($doc)} -function Xhd(){Zhd.call(this,2)} -function bmd(a){Uc.call(this,a)} -function _md(a){Rc.call(this,a)} -function vqd(a){Uc.call(this,a)} -function Ogc(b,a){b.fillStyle=a} -function Ugc(b,a){b.lineWidth=a} -function DPb(b,a){b[b.length]=a} -function qMd(a){return this===a} -function rrd(a){return a.b==a.c} -function jvd(a){return !!a&&a.b} -function WNd(){return kcc(),Wbc} -function YNd(){return kcc(),Tbc} -function uOd(){return kcc(),hcc} -function HPd(){return Xrd(),Wrd} -function rMd(){return Zwd(this)} -function MPd(){return V(this.a)} -function Jnd(a,b){return b.Ep(a)} -function Oe(a,b){Se(a.a,b);Qe(a)} -function $f(a,b){_f(a,(abd(),b))} -function Jad(a,b){qjc(a.Un(),b)} -function Kad(a,b){rjc(a.Un(),b)} -function Lgd(a,b){Tgd(a,b,b,-1)} -function $Qb(a,b,c){Xz(a.b,b,c)} -function mm(a,b){Eg(a.q,b);Tg(a)} -function Bwd(a,b){a.splice(b,1)} -function No(a,b){Oo((abd(),a),b)} -function sOd(a){pxb(new qxb(a))} -function sk(a){this.a=new Srd(a)} -function gi(a){this.a=a;this.b=0} -function kt(a){this.a=a;this.b=0} -function Rm(a){this.b=a;this.a=0} -function Whc(){Whc=p9c;Vhc=$wnd} -function YJ(a){this.b=a;this.a=0} -function Pj(a){a.a.yc()||jj(a.a)} -function GG(a,b){a.c=b;s5(a.c,a)} -function Su(a,b){a.w=b;a.w.If(a)} -function WG(a,b){a.rg(b);a.sg(b)} -function VZ(a,b){a.si(b,a.c,a.a)} -function zQ(a,b){vqc(a.a,b,null)} -function M4(a,b){Jqd(a.a,mnd(b))} -function bcb(a,b,c){Iqd(a.a,b,c)} -function whb(a,b,c){Hqd(a.e,b,c)} -function Tt(a,b,c){St(a,b).Sd(c)} -function vu(a,b,c){xu(a,b).od(c)} -function OU(a,b,c){a.f+=b;a.i+=c} -function Jjb(a,b,c){Psd(a.a,b,c)} -function Hjb(a){a.a=new Tsd(qLc)} -function Vib(a){Ffb.call(this,a)} -function Xib(a){Ffb.call(this,a)} -function flb(a){clb.call(this,a)} -function Lm(){ol();Vl.call(this)} -function Am(){Jg();Bm.call(this)} -function Hj(){hj();Cj.call(this)} -function lzb(a){wyb.call(this,a)} -function zzb(a){wyb.call(this,a)} -function Ymb(a){a.apply(null,[])} -function wmb(a){Slb(a.b,a.a,cHd)} -function rqb(a){tqb(a.a.a,a.a.c)} -function hIb(a,b){cJb(a.i,a.b,b)} -function dwb(a,b){qkc(a.a,tFd,b)} -function XJb(a,b){QJb(b,a.c,a.d)} -function Kdc(a,b){gjc(b,_zd,a.a)} -function DWb(a,b,c){Iqd(a.f,b,c)} -function z0b(a,b,c){Hqd(a.b,b,c)} -function A0b(a,b,c){Hqd(a.c,b,c)} -function Ngc(c,a,b){c.scale(a,b)} -function Nec(a){Sdc.call(this,a)} -function Tdc(a){Sdc.call(this,a)} -function $hc(a,b){a.c=b;return a} -function Ojc(a){ujc();return a|0} -function Xhc(a,b){Whc();a.text=b} -function o8b(a,b){return a*a+b*b} -function ebc(a){return a.b.b+a.a} -function B6(a){return a!=0?4-a:0} -function Eqc(a){Dqc.call(this,a)} -function Lqc(a){Jqc.call(this,a)} -function Prc(a){Lrc.call(this,a)} -function Utc(a){nQb.call(this,a)} -function Vtc(a){pQb.call(this,a)} -function Ddd(a){Lqc.call(this,a)} -function Ccd(a,b){a.__listener=b} -function Qfd(a){Nfd.call(this,a)} -function Xfd(a,b){Cfd(a,b);--a.b} -function ied(a){return abd(),a.a} -function Yhd(a){Zhd.call(this,a)} -function Hkd(a){nQb.call(this,a)} -function Okd(a){Kkd.call(this,a)} -function Qkd(a){Okd.call(this,a)} -function Rkd(a){Okd.call(this,a)} -function Skd(a){Rkd.call(this,a)} -function Tkd(a){Skd.call(this,a)} -function Ukd(a){Rkd.call(this,a)} -function Zkd(a){Okd.call(this,a)} -function bld(a){Okd.call(this,a)} -function gld(a){Okd.call(this,a)} -function jld(a){Kkd.call(this,a)} -function lld(a){jld.call(this,a)} -function mld(a){Okd.call(this,a)} -function fkd(){fkd=p9c;ekd=hkd()} -function abd(){abd=p9c;$ad=A8c()} -function Zbd(){Zbd=p9c;Vbd=B8c()} -function Kdd(){Kdd=p9c;Jdd=C8c()} -function old(){old=p9c;nld=G8c()} -function ujc(){ujc=p9c;tjc=z8c()} -function Khc(){Khc=p9c;Jhc=new S} -function FGb(){FGb=p9c;EGb=IGb()} -function F4(){E4();this.a=new l4} -function z3(){y3();this.a=new $3} -function jmd(a){nQb.call(this,a)} -function lmd(a){nQb.call(this,a)} -function bnd(a){nQb.call(this,a)} -function end(a){nQb.call(this,a)} -function und(a){nQb.call(this,a)} -function cnd(a){pQb.call(this,a)} -function God(a){nQb.call(this,a)} -function Aod(a){imd.call(this,a)} -function Bod(a){lmd.call(this,a)} -function nmd(a){lmd.call(this,a)} -function And(a){bnd.call(this,a)} -function Asd(a){ysd.call(this,a)} -function ysd(a){osd.call(this,a)} -function Dsd(a){vsd.call(this,a)} -function xvd(a){jrd.call(this,a)} -function Lwd(a){Kwd.call(this,a)} -function Fud(a){nQb.call(this,a)} -function ood(){imd.call(this,'')} -function pod(){imd.call(this,'')} -function yod(){imd.call(this,'')} -function zod(){imd.call(this,'')} -function ONd(){return EZ(this.c)} -function lPd(){return ot(this.a)} -function Imd(a){return a.e&&a.e()} -function xc(a){return a<=0||a>111} -function Oj(a,b){return ij(a.a,b)} -function Qj(a,b){return a.a.Bc(b)} -function Rj(a,b){return a.a.Cc(b)} -function Xk(a,b){return Yr(a.a,b)} -function Wg(a,b){!!a.u&&_r(a.u,b)} -function eg(a,b,c){kg(a.xb(),b,c)} -function Gg(a){_f(this,(abd(),a))} -function tl(a){_f(this,(abd(),a))} -function sl(a){nl.Fo((abd(),a.U))} -function pj(a){wic((pic(),oic),a)} -function pNd(a){az(this.o.i.A,a)} -function Jmd(a){Hmd(a);return a.p} -function Htd(){Htd=p9c;Gtd=Jtd()} -function Ttd(){throw I8c(new Fod)} -function _x(a,b){return Or(a.w,b)} -function Yx(a,b){return Or(a.q,b)} -function $x(a,b){return Or(a.u,b)} -function ay(a,b){return Or(a.B,b)} -function ty(a,b){return Or(a.A,b)} -function sy(a,b){return _r(a.A,b)} -function qy(a,b){return _r(a.s,b)} -function ry(a,b){return _r(a.u,b)} -function yy(a,b){return Or(a.C,b)} -function V$(a,b){return U$(a.a,b)} -function _V(a,b){return a.a.Uh(b)} -function GX(a,b){return a.u.ce(b)} -function Veb(a){return a?a.c:null} -function J8(a){return Xtd(I8(),a)} -function Hp(a,b){Ip(a,b,fxb(a.a))} -function DJ(a,b){!!a.c&&(a.b=b.c)} -function Oo(a,b){a.style[JAd]=b.a} -function Vxd(a,b){Sxd();a[lMd]=b} -function dCb(a,b){a.c=b;a.b=false} -function WHb(a,b){vqc(a.e,b,null)} -function HIb(a,b){Pgc(a.a.el(),b)} -function yLb(a,b){this.a=nLb(a,b)} -function ymb(a){this.a=new Ekb(a)} -function tnb(a){this.a=new unb(a)} -function bB(){this.a=new Tsd(RXc)} -function kS(){this.b=new lS(this)} -function ebb(a){this.b=a;this.a=0} -function QRb(a){Lg(a.b);sl(a.f.a)} -function Qyb(a){Pyb(a);return a.j} -function NWb(a,b){PWb(a,OWb(a,b))} -function bPb(b,a){b.cpkColoring=a} -function dPb(b,a){b.circledsign=a} -function ePb(b,a){b.displayMode=a} -function TPb(){TPb=p9c;SPb=new es} -function oub(){oub=p9c;nub=new es} -function co(){eo.call(this,false)} -function cec(){Ldc.call(this,TJd)} -function aec(){Ldc.call(this,RJd)} -function bec(){Ldc.call(this,SJd)} -function Aec(){Ldc.call(this,UJd)} -function Bec(){Ldc.call(this,VJd)} -function Cec(){Ldc.call(this,WJd)} -function Eec(){Ldc.call(this,XJd)} -function Fec(){Ldc.call(this,YJd)} -function Oec(){Ldc.call(this,ZJd)} -function Odc(){Ldc.call(this,NJd)} -function Ndc(){Ldc.call(this,MJd)} -function Ydc(){Ldc.call(this,OJd)} -function Zdc(){Ldc.call(this,PJd)} -function $dc(){Ldc.call(this,QJd)} -function Sec(){Ldc.call(this,$Jd)} -function dec(){Ldc.call(this,rAd)} -function pgc(){Ldc.call(this,aAd)} -function fgc(){Ldc.call(this,nJd)} -function igc(){Ldc.call(this,_Jd)} -function Igc(c,a,b){c.lineTo(a,b)} -function Kgc(c,a,b){c.moveTo(a,b)} -function quc(a,b){return Qmd(a,b)} -function huc(a){return new Ztc(a)} -function juc(a){return new puc(a)} -function ttc(a){return a[4]||a[1]} -function $md(a){return Cnd(),''+a} -function scd(a){!!ocd&&lqc(ocd,a)} -function slc(a){(ujc(),tjc).Bn(a)} -function ojc(a){a=bod(a);return a} -function mod(a,b){a.a+=b;return a} -function sod(a,b){return a.a+=b,a} -function rsd(a,b){return T(a.a,b)} -function Dwd(a,b){return wuc(a,b)} -function Oxd(a,b,c){return b(a,c)} -function HMd(a){return ds(this,a)} -function LMd(a){return mx(this,a)} -function MMd(a){return nx(this,a)} -function NMd(a){return px(this,a)} -function OMd(a){return rx(this,a)} -function PMd(a){return tx(this,a)} -function RMd(a){return zx(this,a)} -function pad(){qad.call(this,0,0)} -function dOd(){return dsd(this.q)} -function eOd(){return dsd(this.r)} -function fOd(){return dsd(this.s)} -function gOd(){return dsd(this.t)} -function hOd(){return dsd(this.u)} -function iOd(){return dsd(this.w)} -function jOd(){return dsd(this.A)} -function TOd(){return dsd(this.n)} -function bPd(){return dsd(this.a)} -function mPd(){return dxd(this.a)} -function xPd(){return zld(this.a)} -function CPd(){return this.a.vd()} -function DPd(){return this.a.Rc()} -function bNd(){f0b(this.b,this.a)} -function cNd(){a0b(this.b,this.a)} -function PPd(){return s9c(this.a)} -function KPd(){return s9c(this.b)} -function GPd(){throw I8c(new Eud)} -function zMd(){throw I8c(new Fod)} -function Pvd(a){this.a=new svd(a)} -function Gd(a,b){this.a=a;this.b=b} -function fe(a,b){this.a=a;this.b=b} -function ge(a,b){this.b=a;this.a=b} -function qe(a,b){this.b=a;this.a=b} -function se(a,b){this.b=a;this.a=b} -function gc(a,b){this.j=a;this.k=b} -function Ke(a,b){this.b=a;this.a=b} -function Le(a,b){this.b=a;this.a=b} -function oc(a,b){gc.call(this,a,b)} -function gg(a,b){mg((abd(),a.U),b)} -function Of(a,b){kg(a.xb(),b,true)} -function iid(a){a.P&&a.a.Lo(true)} -function fdd(a){kdd(a.a);a.a=null} -function Ie(a,b,c){a.a=b;a.a.nb(c)} -function qg(a,b){!!a.R&&oqc(a.R,b)} -function Nh(a,b){this.a=a;this.b=b} -function Ph(a,b){this.a=a;this.b=b} -function Qh(a,b){this.a=a;this.b=b} -function hi(a,b){this.a=a;this.b=b} -function ni(a,b){this.a=a;this.b=b} -function uk(a,b){this.a=a;this.b=b} -function vk(a,b){this.a=a;this.b=b} -function Pk(a,b){this.b=a;this.a=b} -function Sh(a,b){this.b=a;this.a=b} -function ui(a,b){this.b=b;this.a=a} -function bl(a,b){this.a=a;this.b=b} -function yj(a,b){gc.call(this,a,b)} -function Ym(a,b){gc.call(this,a,b)} -function on(a,b){gc.call(this,a,b)} -function Gn(a,b){this.b=a;this.a=b} -function _j(a,b){return Cqd(a.a,b)} -function to(a,b){return Djd(a.i,b)} -function un(a){return a.b?a.f:null} -function Mm(a){Fm(a.a);a.a.c=false} -function Mp(a,b){this.a=a;this.b=b} -function pq(a,b){this.a=a;this.b=b} -function wt(a,b){this.b=a;this.a=b} -function Du(a,b){this.b=a;this.a=b} -function du(a,b){gc.call(this,a,b)} -function ht(a,b){gc.call(this,a,b)} -function ev(a,b){gc.call(this,a,b)} -function jz(a,b){gc.call(this,a,b)} -function tz(a,b){gc.call(this,a,b)} -function Mz(a,b){gc.call(this,a,b)} -function lA(a,b){gc.call(this,a,b)} -function _A(a,b){return Nsd(a.a,b)} -function aB(a,b){return Osd(a.a,b)} -function hw(a,b){return tIb(a.a,b)} -function TB(a,b){this.b=a;this.a=b} -function UC(a,b){this.b=a;this.a=b} -function GE(a,b){this.b=a;this.a=b} -function eE(a,b){this.c=a;this.b=b} -function SB(a,b){this.a=a;this.b=b} -function oF(a,b){this.a=a;this.b=b} -function qF(a,b){oF.call(this,a,b)} -function rF(a,b){oF.call(this,a,b)} -function sF(a,b){oF.call(this,a,b)} -function xF(a,b){oF.call(this,a,b)} -function ZE(a,b){gc.call(this,a,b)} -function BF(a,b){this.a=a;this.b=b} -function IF(a,b){this.a=a;this.b=b} -function hJ(a,b){this.a=a;this.b=b} -function QJ(a,b){this.b=a;this.a=b} -function EF(a,b){this.b=a;this.a=b} -function KL(a,b){this.b=a;this.a=b} -function _I(a,b){this.a=b;this.c=a} -function wM(a,b){this.a=a;this.c=b} -function TN(a,b){this.a=a;this.b=b} -function UK(a,b){TK.call(this,a,b)} -function vM(a,b){TK.call(this,a,b)} -function pO(a,b){this.a=a;this.b=b} -function qO(a,b){this.a=a;this.b=b} -function yO(a,b){this.a=a;this.b=b} -function zO(a,b){this.a=a;this.b=b} -function GL(a,b){Dx(a.a);qx(a.a,b)} -function BO(a,b){return Eqd(a.b,b)} -function hO(a,b){return dtd(a.d,b)} -function ZS(a,b){return Xtd(a.d,b)} -function bT(a,b){return Eqd(a.i,b)} -function iT(a,b){return Eqd(a.u,b)} -function bO(a){return a==43||a==45} -function bW(a,b){this.b=a;this.a=b} -function BW(a,b){this.b=a;this.a=b} -function RW(a,b){this.b=a;this.a=b} -function tQ(a,b){this.a=a;this.b=b} -function $X(a,b){this.a=a;this.b=b} -function jX(a,b){this.c=a;this.b=b} -function wY(a,b){this.e=b;this.c=a} -function AZ(a,b){this.a=a;this.b=b} -function UZ(a,b){this.a=a;this.b=b} -function p$(a,b){this.b=b;this.a=a} -function G$(a,b){this.a=b;this.b=a} -function X$(a,b){this.a=a;this.b=b} -function fQ(a,b){gc.call(this,a,b)} -function B_(a,b){gc.call(this,a,b)} -function R0(a,b){gc.call(this,a,b)} -function xZ(a,b){wY.call(this,a,b)} -function Y_(a,b){this.b=a;this.a=b} -function O1(a,b){this.b=a;this.a=b} -function m3(a,b){this.b=a;this.a=b} -function o3(a,b){this.b=a;this.a=b} -function E3(a,b){this.a=a;this.b=b} -function C4(a,b){this.a=a;this.b=b} -function _4(a,b){this.b=a;this.a=b} -function Y9(a,b){gc.call(this,a,b)} -function T1(a,b){return Eqd(a.p,b)} -function Ddb(a,b){return _r(a.p,b)} -function Fdb(a,b){return _r(a.t,b)} -function ZX(a){return kbc(a.a,a.b)} -function S5(a,b){return Vnd(b,a.a)} -function Kdb(a){Jdb.call(this,a,a)} -function Ghb(a,b){Iib(a.n.c,a.f,b)} -function _hb(a,b,c){eld(a.a.f,b,c)} -function Qgc(b,a){b.globalAlpha=a} -function Vgc(b,a){b.strokeStyle=a} -function Ojb(a){Hjb(this);this.a=a} -function Wgb(){Sgb();this.a=new es} -function Sgb(){Sgb=p9c;Rgb=new Tgb} -function Ucb(){Ucb=p9c;Tcb=new $cb} -function cib(){cib=p9c;bib=new fjb} -function Cnd(){Cnd=p9c;Bnd=new lod} -function axb(){axb=p9c;_wb=new cxb} -function fjd(){fjd=p9c;ol();rjd()} -function i9c(){g9c==null&&(g9c=[])} -function Fib(a){Gib.call(this,a,0)} -function blb(){clb.call(this,null)} -function $mb(a){Wmb(this);this.a=a} -function Pub(a){a.b.qe();Ww(a.a.b)} -function nrb(a){!!a.b.i&&$v(a.b.i)} -function Wvb(a,b){return q3(a.c,b)} -function mDb(a,b){nDb(a,hs(a.c,b))} -function IEb(a,b){HEb(a,a.b.Id(b))} -function AAb(a,b,c){BAb(a,a.b,b,c)} -function eHb(a){this.f=a;aHb(this)} -function wo(){this.i=new Ijd(this)} -function bxb(a){return !a?'':zS(a)} -function aFb(){aFb=p9c;ZEb=new _Eb} -function DMb(){DMb=p9c;nMb=new vMb} -function EMb(){EMb=p9c;oMb=new wMb} -function FMb(){FMb=p9c;pMb=new xMb} -function GMb(){GMb=p9c;qMb=new yMb} -function HMb(){HMb=p9c;rMb=new zMb} -function IMb(){IMb=p9c;sMb=new AMb} -function JMb(){JMb=p9c;tMb=new BMb} -function KMb(){KMb=p9c;uMb=new CMb} -function XMb(){XMb=p9c;LMb=new RMb} -function YMb(){YMb=p9c;MMb=new SMb} -function ZMb(){ZMb=p9c;NMb=new TMb} -function $Mb(){$Mb=p9c;OMb=new UMb} -function _Mb(){_Mb=p9c;PMb=new VMb} -function aNb(){aNb=p9c;QMb=new WMb} -function kNb(){kNb=p9c;gNb=new iNb} -function lNb(){lNb=p9c;hNb=new jNb} -function qNb(){qNb=p9c;mNb=new oNb} -function rNb(){rNb=p9c;nNb=new pNb} -function wNb(){wNb=p9c;sNb=new uNb} -function xNb(){xNb=p9c;tNb=new vNb} -function ENb(){ENb=p9c;yNb=new BNb} -function FNb(){FNb=p9c;zNb=new CNb} -function GNb(){GNb=p9c;ANb=new DNb} -function VQb(){VQb=p9c;PQb=new SQb} -function WQb(){WQb=p9c;QQb=new UQb} -function FUb(){FUb=p9c;EUb=new RUb} -function Z0b(){Z0b=p9c;Y0b=new $0b} -function h7b(){h7b=p9c;g7b=new Hoc} -function k7b(){k7b=p9c;j7b=new Hoc} -function n7b(){n7b=p9c;m7b=new Hoc} -function q7b(){q7b=p9c;p7b=new Hoc} -function t7b(){t7b=p9c;s7b=new Hoc} -function w7b(){w7b=p9c;v7b=new Hoc} -function z7b(){z7b=p9c;y7b=new Hoc} -function C7b(){C7b=p9c;B7b=new Hoc} -function V9b(){U9b(this,0,0,-1,-1)} -function LQb(a,b){kHb(new lHb,a,b)} -function HSb(a,b){a.b.tl(ISb(a,b))} -function JSb(a,b){a.b.ul(ISb(a,b))} -function hWb(a,b){return hs(a.o,b)} -function fXb(a,b){return qy(a.a,b)} -function Y7b(a,b){return Yr(a.b,b)} -function I2b(a,b){Jud(b,yJd);a.c=b} -function L2b(a,b){Jud(b,yJd);a.d=b} -function fPb(b,a){b.eflowmidline=a} -function Wgc(b,a){b.textBaseline=a} -function qkc(c,a,b){c.setData(a,b)} -function xgc(a){_f(this,(abd(),a))} -function Wdc(a){Qdc((kgc(),jgc),a)} -function v9c(b,a){return b.exec(a)} -function x9c(b,a){return b.test(a)} -function Xuc(a){return a.l|a.m<<22} -function Zhc(a){a.a=false;return a} -function krc(){krc=p9c;jrc=new ltd} -function wbc(){wbc=p9c;vbc=new Wud} -function pic(){pic=p9c;oic=new yic} -function boc(){boc=p9c;aoc=new goc} -function Lsc(){Lsc=p9c;Ksc=new Osc} -function Xtc(){Xtc=p9c;Wtc=new Ytc} -function gcd(){gcd=p9c;fcd=new Ioc} -function wcd(){wcd=p9c;vcd=new Ioc} -function rcd(){rcd=p9c;pcd=new hdd} -function Dod(){Dod=p9c;Cod=new cmd} -function ncd(){qqc.call(this,null)} -function ted(a){ued.call(this,a.a)} -function gdd(a){a.a=jdd();idd(a.a)} -function ofd(a){_f(this,(abd(),a))} -function oed(a,b){zed(a.a,b,false)} -function lsd(a,b){return a.b.qd(b)} -function msd(a,b){return a.b.rd(b)} -function nsd(a,b){return a.b.xd(b)} -function ssd(a,b){return a.a.zd(b)} -function tsd(a,b){return a.a.Ad(b)} -function crd(a,b){return a.a.rp(b)} -function qtd(a,b){return a.a.lp(b)} -function _hd(a){return a.substr(1)} -function Mqd(a){return a.d.c+a.e.b} -function Aqd(a){return !a?null:a.d} -function vPd(a){return Uhd(this,a)} -function zPd(){return this.vd()==0} -function rvd(){svd.call(this,null)} -function ktd(a){this.c=a;htd(this)} -function tOd(a){Yyb(this.a,this.b)} -function xOd(a){ABb(this.a,this.b)} -function Vgd(a){(abd(),a.U).size=1} -function ig(a,b){nbd((abd(),a.U),b)} -function Yf(a,b){kg(a.xb(),b,false)} -function $n(a,b){Rn(a.b,b);return a} -function Cp(a){Bp(a);return Kp(a.c)} -function qu(a,b,c){return pu(a,b,c)} -function su(a,b,c){return ru(a,b,c)} -function bh(a,b){a.Yb(new zhd(a,b))} -function JA(a,b){Hqd(a.a,b,a.Yf(b))} -function BB(a,b){this.a=new _D(a,b)} -function UB(a,b){this.a=new _D(a,b)} -function Vn(a){this.a=new Hg(Tn(a))} -function Fu(){this.a=new vc(new Hc)} -function JPd(a){throw I8c(new Fod)} -function gsd(){gsd=p9c;fsd=new hsd} -function Fsd(){Fsd=p9c;Esd=new Gsd} -function Sxd(){Sxd=p9c;Rxd=new Ixd} -function mj(a){a.Dc();a.d=(xj(),uj)} -function gu(a){Ot();Ut.call(this,a)} -function TI(a){wI();$G.call(this,a)} -function Mi(a){$wnd.clearTimeout(a)} -function NJ(a,b){Wr(a.a,b);return a} -function JV(a,b){Xr(a.a,b);return b} -function Jeb(a,b){this.a=a;this.b=b} -function Acb(a,b){this.a=a;this.b=b} -function vbb(a,b){this.b=a;this.a=b} -function jdb(a,b){this.b=a;this.a=b} -function geb(a,b){this.b=a;this.a=b} -function gfb(a,b){this.b=a;this.a=b} -function kgb(a,b){this.b=a;this.a=b} -function QL(){this.b=-1;this.a=true} -function ghb(a,b){this.b=a;this.a=b} -function vgb(a,b){return ald(a.a,b)} -function tgb(a,b){return $kd(a.a,b)} -function Xeb(a,b){return Fqd(a.a,b)} -function Khb(a,b){return Ehb(a.a,b)} -function Cfb(a,b){return Nib(a.c,b)} -function Dfb(a,b){return Pib(a.c,b)} -function Zgb(a,b){return ugb(a.c,b)} -function $gb(a,b){return vgb(a.c,b)} -function Pib(a,b){return ugb(a.b,b)} -function n8(a,b){return Q7(a.a,b)+1} -function SS(a,b,c){return a.s.k?c:b} -function Qib(a,b){this.b=a;this.c=b} -function smb(a,b){this.b=a;this.a=b} -function tmb(a,b){this.b=a;this.a=b} -function umb(a,b){this.b=a;this.a=b} -function vmb(a,b){this.b=a;this.a=b} -function xmb(a,b){this.b=a;this.a=b} -function jmb(a,b){this.a=a;this.b=b} -function lmb(a,b){this.a=a;this.b=b} -function mmb(a,b){this.a=a;this.b=b} -function nmb(a,b){this.a=a;this.b=b} -function Bmb(a,b){this.a=a;this.b=b} -function skb(a,b){this.a=a;this.b=b} -function Jkb(a,b){this.a=a;this.b=b} -function Ckb(a,b){this.c=a;this.b=b} -function knb(a,b){this.a=a;this.b=b} -function Knb(a,b){this.a=a;this.b=b} -function Pnb(a,b){this.a=a;this.b=b} -function pob(a,b){this.a=a;this.b=b} -function tob(a,b){this.a=a;this.b=b} -function bpb(a,b){this.a=a;this.b=b} -function xpb(a,b){this.a=a;this.b=b} -function Upb(a,b){this.a=a;this.b=b} -function Ypb(a,b){this.a=a;this.b=b} -function fqb(a,b){this.a=a;this.b=b} -function Vqb(a,b){this.a=a;this.b=b} -function grb(a,b){this.a=a;this.b=b} -function qrb(a,b){this.a=a;this.b=b} -function jub(a,b){this.a=a;this.b=b} -function uub(a,b){this.a=a;this.b=b} -function Sub(a,b){this.a=a;this.b=b} -function mvb(a,b){this.a=a;this.b=b} -function Rwb(a,b){this.a=a;this.b=b} -function Exb(a,b){this.a=a;this.b=b} -function Nxb(a,b){this.a=a;this.b=b} -function Pxb(a,b){this.a=a;this.b=b} -function Jyb(a,b){this.a=a;this.b=b} -function _yb(a,b){this.a=a;this.b=b} -function azb(a,b){this.a=a;this.b=b} -function bzb(a,b){this.a=a;this.b=b} -function czb(a,b){this.a=a;this.b=b} -function dzb(a,b){this.a=a;this.b=b} -function ezb(a,b){this.a=a;this.b=b} -function qAb(a,b){this.a=a;this.b=b} -function DBb(a,b){this.a=a;this.b=b} -function EBb(a,b){this.a=a;this.b=b} -function FBb(a,b){this.a=a;this.b=b} -function GBb(a,b){this.a=a;this.b=b} -function HBb(a,b){this.a=a;this.b=b} -function IBb(a,b){this.a=a;this.b=b} -function hrb(a,b){this.b=a;this.c=b} -function Qwb(a,b){this.b=a;this.a=b} -function QCb(a,b){this.a=a;this.b=b} -function CDb(a,b){this.a=a;this.b=b} -function fEb(a,b){this.a=a;this.b=b} -function gEb(a,b){this.a=a;this.b=b} -function eFb(a,b){this.a=a;this.b=b} -function Djb(a,b){gc.call(this,a,b)} -function Evb(a,b){gc.call(this,a,b)} -function Fwb(a,b){gc.call(this,a,b)} -function XAb(a,b){gc.call(this,a,b)} -function rFb(a,b){this.a=a;this.b=b} -function oGb(a,b){this.a=a;this.b=b} -function pGb(a,b){this.a=a;this.b=b} -function DGb(a,b){this.a=a;this.b=b} -function mGb(a,b){this.b=a;this.a=b} -function pFb(a,b){a.b=b;gg(a.c,!!b)} -function dBb(a,b){return VBb(a.a,b)} -function gIb(a,b){return bJb(a.i,b)} -function rIb(a,b){return DJb(a.j,b)} -function sIb(a,b){return EJb(a.j,b)} -function uIb(a,b){return FJb(a.j,b)} -function vIb(a,b){return GJb(a.j,b)} -function fIb(a){return aJb(a.i,a.b)} -function nCb(a){return a.c?null:a.f} -function fFb(a){return a==60||a==62} -function Uwb(a){Xwb(a);return !!a.c} -function cIb(a){kJb(a.k);return a.k} -function IIb(a,b){Wgc(a.a.el(),b.a)} -function JHb(a,b,c){Ngc(a.el(),b,c)} -function NIb(a,b){gc.call(this,a,b)} -function NKb(a,b){gc.call(this,a,b)} -function hJb(){iJb.call(this,false)} -function Fmb(){rlb();Tlb.call(this)} -function kEb(a){a.f||a.b.ob(lEb(a))} -function lJb(a,b){mJb(a,_Hb(a.b),b)} -function oOb(a,b){gc.call(this,a,b)} -function xKb(a,b){this.b=a;this.a=b} -function ZKb(a,b){this.b=a;this.a=b} -function _Kb(a,b){this.b=a;this.a=b} -function FLb(a,b){this.b=a;this.a=b} -function MPb(a,b){this.b=a;this.a=b} -function RPb(a,b){this.b=a;this.a=b} -function gQb(a,b){this.b=a;this.a=b} -function KQb(a,b){this.b=a;this.a=b} -function eQb(a,b){this.a=a;this.b=b} -function fQb(a,b){this.a=a;this.b=b} -function fSb(a,b){this.a=a;this.b=b} -function hSb(a,b){this.a=a;this.b=b} -function yKb(a,b){this.a=a;this.b=b} -function HLb(a,b){this.a=a;this.b=b} -function PNb(a,b){this.a=a;this.b=b} -function SNb(a,b){this.a=a;this.b=b} -function $Pb(a,b){this.a=a;this.b=b} -function NRb(a,b){this.a=a;this.b=b} -function CSb(a,b){this.a=a;this.b=b} -function WSb(a,b){this.a=a;this.b=b} -function iSb(a,b){this.b=a;this.a=b} -function rSb(a,b){this.b=a;this.a=b} -function KSb(a,b){this.b=a;this.a=b} -function bTb(a,b){this.b=a;this.a=b} -function _Ub(a,b){this.b=a;this.c=b} -function vSb(a,b){this.b=b;this.a=a} -function oQb(a,b){Vc.call(this,a,b)} -function KTb(a,b){gc.call(this,a,b)} -function wXb(a,b){gc.call(this,a,b)} -function P$b(a,b){gc.call(this,a,b)} -function P1b(a,b){gc.call(this,a,b)} -function V_b(a,b){gc.call(this,a,b)} -function h4b(a,b){gc.call(this,a,b)} -function W4b(a,b){gc.call(this,a,b)} -function j5b(a,b){this.c=a;this.a=b} -function A6b(a,b){this.b=a;this.a=b} -function d6b(a,b){this.b=a;this.c=b} -function O4b(a,b){this.b=a;this.c=b} -function G0b(a,b){this.a=a;this.b=b} -function _3b(a,b){this.b=b;this.a=a} -function Jdc(a,b){this.b=a;this.a=b} -function Pcc(a,b){gc.call(this,a,b)} -function e7b(a,b){gc.call(this,a,b)} -function W8b(a,b){gc.call(this,a,b)} -function Lec(a,b){gc.call(this,a,b)} -function Rac(){Sac.call(this,0,0,0)} -function nec(){Ldc.call(this,'img')} -function sec(){Ldc.call(this,'log')} -function bgc(){Ldc.call(this,'row')} -function mgc(){Ldc.call(this,'tab')} -function Slc(a,b){gc.call(this,a,b)} -function Ulc(){Slc.call(this,wAd,0)} -function pmc(a,b){gc.call(this,a,b)} -function rmc(){pmc.call(this,$Ed,0)} -function smc(){pmc.call(this,BCd,1)} -function zmc(a,b){gc.call(this,a,b)} -function Bmc(){zmc.call(this,$Ed,0)} -function Cmc(){zmc.call(this,ACd,1)} -function Kmc(a,b){gc.call(this,a,b)} -function Vmc(a,b){gc.call(this,a,b)} -function enc(a,b){gc.call(this,a,b)} -function gnc(){enc.call(this,uAd,0)} -function inc(){enc.call(this,iBd,2)} -function jnc(){enc.call(this,hBd,3)} -function unc(a,b){gc.call(this,a,b)} -function Lnc(a,b){gc.call(this,a,b)} -function Nnc(){Lnc.call(this,$Ed,0)} -function Apc(a,b){this.a=a;this.b=b} -function nXb(a,b){a.c.Cm()&&(a.b=b)} -function USb(a,b){return SSb(a.b,b)} -function cXb(a,b){return rdb(a.a,b)} -function eXb(a,b){return Ddb(a.a,b)} -function pqc(a,b){return Bqc(a.a,b)} -function Bqc(a,b){return Cqd(a.d,b)} -function tic(a){return !!a.a||!!a.f} -function Q8c(a,b){return L8c(a,b)>0} -function S8c(a,b){return L8c(a,b)<0} -function Csc(a,b){gc.call(this,a,b)} -function Isc(a,b){gc.call(this,a,b)} -function B9c(a,b){Vc.call(this,a,b)} -function Cqc(){Dqc.call(this,false)} -function $qc(a,b){this.b=a;this.a=b} -function D9c(a,b){this.b=a;this.a=b} -function E9c(a,b){this.a=a;this.b=b} -function qad(a,b){this.a=a;this.b=b} -function ddd(a,b){this.a=a;this.b=b} -function Red(a,b){this.a=a;this.b=b} -function nbd(a,b){abd();$ad.ho(a,b)} -function obd(a,b){abd();$ad.io(a,b)} -function oTb(a,b){a.t=b.b;a.mm(b.a)} -function thd(a,b){this.b=a;this.a=b} -function Fgd(a,b){this.a=a;this.b=b} -function zhd(a,b){this.a=a;this.b=b} -function ggd(a,b){this.a=b;this.b=a} -function Jid(a,b){this.a=a;this.b=b} -function Oid(a,b){this.b=a;this.a=b} -function Ghd(a,b){gc.call(this,a,b)} -function _id(a,b){return cjd(a.a,b)} -function sjd(a,b){gc.call(this,a,b)} -function ujd(){sjd.call(this,uAd,0)} -function wjd(){sjd.call(this,iBd,2)} -function xjd(){sjd.call(this,hBd,3)} -function xad(a){Qic(a.parentNode,a)} -function wld(a){old();return a.data} -function dld(a,b){return tld(a.a,b)} -function Zld(a){a.a.Pn(a.d,a.c,a.b)} -function Tfd(a){Rfd.Fo((abd(),a.U))} -function hjd(a){(abd(),a.U).cols=60} -function Tld(){Sld();Old.call(this)} -function Mbd(){this.a=new qqc(null)} -function Htc(){this.r=new $wnd.Date} -function Ysd(a,b){this.b=a;this.a=b} -function grd(a,b){this.d=a;this.e=b} -function Nsd(a,b){return ctd(a.a,b)} -function emd(a,b){return Dnd(a.a,b)} -function Wtd(a,b){return Cqd(a.c,b)} -function ird(a,b){return !!evd(a,b)} -function Ntd(a,b){return a.a.get(b)} -function Wqd(a){return a.b-1&&b==a.a} -function yTb(a,b){a.o=b;wTb(a);vTb(a)} -function L3b(a,b){a.d=lad(b,a.a.Lh())} -function gvb(a,b,c){Gvb(Eqd(a.a,b),c)} -function Fhb(a,b){b&&eld(a.f,dFd,jzd)} -function Rdc(a,b,c){gjc(b,a.a,Pdc(c))} -function qmb(a){ts(a);pxb(new qxb(a))} -function H3b(){eTb();I3b.call(this,0)} -function xLb(a){yLb.call(this,a,null)} -function M0b(a){N0b.call(this,null,a)} -function Mdc(){Ldc.call(this,'alert')} -function qgc(){Ldc.call(this,'timer')} -function jec(){Ldc.call(this,'group')} -function Rec(){Ldc.call(this,'radio')} -function nic(){aic!=0&&(aic=0);dic=-1} -function TIb(a){a.d=(MIb(),LIb);a.b=1} -function _Ob(b,a){b.atomMapsVisible=a} -function aPb(b,a){b.backgroundColor=a} -function w9b(a,b){return pbc(a)?b-1:b} -function xlc(a,b){return (ujc(),a)[b]} -function Mic(a){return Ajc((ujc(),a))} -function Xic(a){return yjc((ujc(),a))} -function ubd(a){return zcd((abd(),a))} -function Njd(a,b){return new Qjd(b,a)} -function kjc(a,b){(ujc(),tjc).Ln(a,b)} -function Uic(a,b){(ujc(),tjc).vn(a,b)} -function Ftc(a,b){a.r.setTime(c9c(b))} -function nuc(a){throw I8c(new Utc(a))} -function Wld(a){throw I8c(new Wkd(a))} -function Bqd(a){return !a?null:a.Ok()} -function hmd(a,b){return Xnd(a.a,0,b)} -function Qsd(a,b,c){return Psd(a,b,c)} -function zld(a){old();return a.length} -function Mld(a,b){old();a.nodeValue=b} -function vhd(a,b){this.b=a;this.a=a+b} -function Ctd(a){this.a=Ltd();this.b=a} -function mbd(a){abd();_ad=a;$ad.go(a)} -function Hud(a){return a!=null?V(a):0} -function kOd(a,b){return new Hcb(a,b)} -function QMd(a,b){return wx(this,a,b)} -function TMd(a,b){return Xx(this,a,b)} -function fPd(){return dsd(this.a.a.a)} -function ePd(){return Xrd(),Xrd(),Vrd} -function JNd(){return Xrd(),Xrd(),Urd} -function cOd(){return Xrd(),Xrd(),Wrd} -function FPd(){return Xrd(),gsd(),fsd} -function wPd(){return _ic(this.f,OHd)} -function Pf(a){return Vic((abd(),a.U))} -function Qf(a){return Wic((abd(),a.U))} -function pPd(a){ljc((abd(),this.U),a)} -function yOd(a){fjc(Rf(this.a.c),CId)} -function jud(){vtd.call(this,new _td)} -function dmd(){bmd.call(this,'UTF-8')} -function Nwd(){Kwd.call(this,'UTF-8')} -function xnc(){unc.call(this,'PCT',1)} -function Pnc(){Lnc.call(this,'PRE',2)} -function Ek(a){Dk.call(this,new ek(a))} -function Rk(a,b){a.b.a=new Ok(b);Qk(a)} -function Sk(a,b){a.b.a=new Uk(b);Qk(a)} -function tu(a,b){return xu(a.c,b).vd()} -function an(a,b){return un(Osd(a.a,b))} -function AF(a,b){return Bac(b,a.a,a.b)} -function Jt(a){return Jkd(),pld(Ikd,a)} -function RPd(){return this.a.a.length} -function bs(a,b){Prd(a.a,a.a.length,b)} -function vG(a){!!a.a.a.a&&a.a.a.a.Rd()} -function EG(a){FG(a);a.b=false;vG(a.d)} -function EA(a){IA(a.a);IA(a.b);IA(a.c)} -function N$(a,b){b.vf(a.a,a.b,a.d,a.c)} -function E0(a,b){return H0(b,a.b.Yd())} -function qm(a,b){vm((soc(b),toc(b),a))} -function O4(a,b,c){Wr(a.e,new _4(b,c))} -function YC(a,b,c){BA.call(this,a,b,c)} -function BP(a,b,c){nP.call(this,a,b,c)} -function r0(a,b,c){n0.call(this,a,b,c)} -function I0(a,b,c){n0.call(this,a,b,c)} -function Fjb(){Djb.call(this,'FLAG',0)} -function unb(a){Ki.call(this);this.a=a} -function Mt(a){this.b=new Iqc;this.d=a} -function pU(a,b){this.b=qU(a);this.a=b} -function CB(a){this.b=a;this.a=uD(a.C)} -function Akb(a){this.b=a;this.a=new es} -function nxb(){this.a=new Bm;mxb(this)} -function YIb(){Nw.call(this);TIb(this)} -function Hmb(a){rlb();Vlb.call(this,a)} -function TGb(a){QGb(a.d,bod(CEb(a.e)))} -function Uvb(a){return Wvb(a,Pvb(a.a))} -function wjb(a,b){return a.b.Uj(a.a,b)} -function fUb(a,b){return gUb(a.Bm(),b)} -function xdb(a,b){return hs(a.n,b)!=-1} -function mTb(a,b){a.v=b?new js(b):null} -function ZJb(){this.c=null;this.d=null} -function a6b(a){this.c=a;this.b=new is} -function VSb(a){this.b=a;this.a=new es} -function Idc(a){this.a=a;Ki.call(this)} -function xN(a){a.b.b=false;a.a.b=false} -function hPb(b,a){b.lonePairsVisible=a} -function gPb(b,a){b.implicitHydrogen=a} -function ejc(b,a){b.removeAttribute(a)} -function T6b(a,b){S6b.call(this,a,b,b)} -function U6b(a,b){S6b.call(this,a,b,b)} -function qqc(a){rqc.call(this,a,false)} -function lgc(){Ldc.call(this,'status')} -function hgc(){Ldc.call(this,'slider')} -function Vdc(){Ldc.call(this,'banner')} -function Tec(){Ldc.call(this,'region')} -function Pmc(){Kmc.call(this,'AUTO',3)} -function rad(a){qad.call(this,a.a,a.b)} -function Hid(a,b){sl(a.a.a);zid(a.a,b)} -function rdd(a,b){yo(a,!b?null:b.Cb())} -function agd(a,b,c){bgd(a,b,(abd(),c))} -function Yid(a,b,c){Zid(a,b,c,a.a.i.c)} -function G2b(a,b,c,d){B5b(b.a,a,c.a,d)} -function Znc(a){Xnc();DPb(Unc,a);$nc()} -function Gld(a){old();return a.tagName} -function qwd(a,b){if(ewd){return}a.b=b} -function Ohd(a){this.a=a;Ki.call(this)} -function Qqc(a){this.a=a;Ki.call(this)} -function lNd(a){!!this.k&&WG(this.k,a)} -function bvd(a){cvd.call(this,a,'','')} -function Jvd(){Fvd.call(this,'Tail',3)} -function Hvd(){Fvd.call(this,'Head',1)} -function Hg(a){Fg.call(this);this.Ub(a)} -function hh(a){kh(a);ph(a.b);a.d.a.Pb()} -function Wd(a,b,c){!!a.a&&a.a.c.gb(b,c)} -function Zh(a,b,c){a.b=b;a.c=c;return a} -function Mo(a,b){(abd(),a)['align']=b.a} -function pl(a){return !(abd(),a.U)[mAd]} -function ZOd(a){return Xrd(),Xrd(),Wrd} -function $Od(a){return Xrd(),Xrd(),Urd} -function guc(a){return Stc(),a?Rtc:Qtc} -function Jxd(a){return a&&a.g?a.g:null} -function Qt(a,b,c){return St(a,b).Qd(c)} -function wu(a,b,c){return xu(a,b).zd(c)} -function df(a){bf();return new Error(a)} -function VJ(a,b){return UJ(a,b+a.c,a.b)} -function zK(a,b){return iK(b,a.o.i,a.b)} -function MH(a,b){NH.call(this,a,b,true)} -function yJ(a){fJ.call(this,a,'\u2022')} -function GJ(a){$G.call(this,a);EJ(this)} -function VM(a){DM.call(this,a);TM(this)} -function Pv(a){Ov(a,(Lz(),Hz));a.w.Hf()} -function $v(a){Ov(a,(Lz(),Iz));a.w.Hf()} -function WP(a){if(!a.c){return}a.c=null} -function CS(a){return a!=null?bod(a):''} -function Fc(){Fc=p9c;Ec=new Gc(new Ic)} -function VT(){VT=p9c;UT=new YT(new Gdb)} -function PZ(){PZ=p9c;OZ=new UZ(uBd,uBd)} -function Wpb(){Wpb=p9c;Vpb=(s6b(),g6b)} -function ho(){ho=p9c;go=(Os(),Fs);fo=go} -function i_(a){e_();g_.call(this,MBd,a)} -function j_(a){e_();h_.call(this,MBd,a)} -function Y8(a,b){U7();Z7.call(this,a,b)} -function IW(a,b){FW();this.a=a;this.b=b} -function jO(a,b){this.c=a;this.d=$sd(b)} -function Scb(a){this.b=a;this.a=new ltd} -function Udb(a){Gdb.call(this);this.a=a} -function ljb(a){this.c=a;this.a=new njb} -function Gjb(){Djb.call(this,'VALUE',1)} -function Gqb(a){this.f=a;this.a=new jud} -function Lab(a){Kab();return Osd(Iab,a)} -function ugb(a,b){return _kd(a.a,a.b,b)} -function J4(a,b){return Eqd(a.a,mnd(b))} -function K4(a,b){return Eqd(a.b,mnd(b))} -function K3(a,b){return a.substr(7,b-7)} -function S$(a,b){b.wf(a.a,a.c,true,a.b)} -function O$(a,b,c){a.a=b;a.b=c;return a} -function Jwb(a,b,c){Iwb(a,new red(b),c)} -function bhb(a,b,c){c!=null&&eld(a,b,c)} -function tLb(a,b,c){return Cib(a.a,b,c)} -function hwb(a){return new myb(a.a,a.c)} -function Swb(a){return U(a)==PXc?null:a} -function a1b(a){return a?new js(a):null} -function IOb(){this.a=false;this.b=null} -function nwb(a){this.a=a;this.b=new Awb} -function IWb(){Gdb.call(this);rVb(this)} -function $Fb(a){sl(a.a);ZFb()&&FEb(a.a)} -function oEb(a){a.f=true;a.b.pb(lEb(a))} -function bSb(a){Bd(a,a.b.a.a.length!=0)} -function Y1b(a,b){return -a.c<=b&&b<=-1} -function l1b(a){i1b();return h1b[a-1].a} -function ZOb(b,a){b.chiralFlagVisible=a} -function Udc(){Ldc.call(this,'article')} -function uec(){Ldc.call(this,'marquee')} -function yec(){Ldc.call(this,'menubar')} -function rgc(){Ldc.call(this,'toolbar')} -function sgc(){Ldc.call(this,'tooltip')} -function ngc(){Ldc.call(this,'tablist')} -function kec(){Ldc.call(this,'heading')} -function qec(){Ldc.call(this,'listbox')} -function bmc(){Slc.call(this,'FLEX',17)} -function dmc(){Slc.call(this,'BLOCK',1)} -function jmc(){Slc.call(this,'TABLE',7)} -function $mc(){Vmc.call(this,'FIXED',3)} -function W9b(a,b,c,d){U9b(this,a,b,c,d)} -function Lgc(e,a,b,c,d){e.rect(a,b,c,d)} -function Bgc(c,a,b){c.addColorStop(a,b)} -function gjc(c,a,b){c.setAttribute(a,b)} -function sjc(b,a){return b.toDataURL(a)} -function zuc(a){return Auc(a.l,a.m,a.h)} -function Ibd(a){Hbd();return Lbd(Fbd,a)} -function rmd(a){qmd();return Cnd(),''+a} -function Bld(a){old();return a.nodeName} -function itd(a){return a.ab?1:0} -function Wxd(a,b){Sxd();return Gxd(a,b)} -function Xxd(a){Sxd();return Hxd(Rxd,a)} -function Ivd(){Fvd.call(this,'Range',2)} -function Nhd(a){wdc.call(this);this.a=a} -function Dqc(a){this.d=new ltd;this.c=a} -function iud(a){this.c=a;this.b=a.a.b.a} -function qPd(a){this.Ob(!a?null:a.Cb())} -function Ur(a){a.a=suc(_5c,lyd,1,0,5,1)} -function eTb(){eTb=p9c;dTb=new qad(0,0)} -function eo(a){this.a=a;this.b=new Vn(a)} -function lf(a,b){sf(a.a,b,null);return a} -function mf(a,b){sf(a.a,null,b);return a} -function uB(a,b){!!b&&Wr(a.a,b);return a} -function o5b(a,b,c){Wr(a.b,b);Wr(a.c,c)} -function AG(a,b){return !!a.i&&RF(a.i,b)} -function YK(a,b){return Nr(a,b)&&Nr(b,a)} -function Dnd(a,b){return a.charCodeAt(b)} -function RC(a,b){return new QC(b,a,null)} -function Dw(a,b){a.e=b;!!a.f&&eIb(a.f.a)} -function ML(a,b){b.a?(a.c=a.a):(a.c=a.b)} -function QM(a,b){TM(a);Jl(a,b.c);a.b=b.c} -function fp(a){Hi(a.e);a.b=null;a.c=null} -function HB(){HB=p9c;FB=new NB;GB=new OB} -function VL(){VL=p9c;UL=new qad(ZBd,ZBd)} -function WM(a){UK.call(this,a,(QQ(),OQ))} -function oN(a){pN.call(this,a,(Os(),Ns))} -function EN(a){FN.call(this,a,new XM(a))} -function o0(a,b){p0.call(this,a,b,false)} -function rn(){on.call(this,'VERTICAL',1)} -function Gf(){Ff=Yxd(function(a){Kf(a)})} -function ccd(){if(!Ybd){mdd();Ybd=true}} -function bcd(){if(!Tbd){ldd();Tbd=true}} -function IV(a,b){!!b&&Wr(a.a,b);return b} -function N1(a,b){wVb(a.b.a,b);a0b(a.a,b)} -function iO(a,b){return a.Ug(b)&&a.Tg(b)} -function DX(a){return Aac(a.Yh(),a.Zh())} -function Twb(a){return a.c?a.c.Ji():null} -function LGb(a){return Hnd(iyd,a)?null:a} -function yfb(a){zfb.call(this,a,new teb)} -function ibb(){jbb.call(this,new dbb,'')} -function Tlb(){rlb();Vlb.call(this,null)} -function lab(a,b){U7();Z7.call(this,a,b)} -function IY(a,b,c){bU(a.f).Ah(b,a.d,c,c)} -function eZ(a,b,c,d,e,f){a.fl(f,b,c,d,e)} -function cNb(a,b){Iqd(a.b,b.Ic(),b.ld())} -function THb(a){UHb(a,_Ib(a.i,a.b).Vn())} -function _Hb(a){return _Ib(a.i,a.b).Vn()} -function dNb(a){return tPb(Fqd(a.b,a.a))} -function VVb(a,b){return ssd(dsd(a.n),b)} -function YVb(a,b){return ssd(dsd(a.p),b)} -function gWb(a,b){return tsd(dsd(a.p),b)} -function fWb(a,b){return tsd(dsd(a.n),b)} -function fVb(a,b){return Zr(a.a,b,0)!=-1} -function J5b(a,b){return Zr(a.f,b,0)!=-1} -function w6b(a){return ic((z6b(),y6b),a)} -function ucc(a){return a.b==null?'=':a.b} -function Gcc(a){return ic((Jcc(),Icc),a)} -function $cc(a){return ic((bdc(),adc),a)} -function KOb(a){Iud(a);return new JOb(a)} -function u6b(a){s6b();return !!a&&f6b==a} -function KEb(a){(abd(),a.U).maxLength=15} -function pVb(a){qVb.call(this,a,new pad)} -function zec(){Ldc.call(this,'menuitem')} -function rec(){Ldc.call(this,'listitem')} -function fec(){Ldc.call(this,'document')} -function iec(){Ldc.call(this,'gridcell')} -function ogc(){Ldc.call(this,'tabpanel')} -function vgc(){Ldc.call(this,'treeitem')} -function ugc(){Ldc.call(this,'treegrid')} -function cgc(){Ldc.call(this,'rowgroup')} -function _dc(){Ldc.call(this,'combobox')} -function Z3b(a,b){this.d=a;this.c=Y3b(b)} -function jbb(a,b){this.b=a;this.a='\\'+b} -function $Ob(b,a){b.atomIndicesVisible=a} -function cPb(b,a){b.carbonLabelVisible=a} -function xic(a,b){a.c=Aic(a.c,[b,false])} -function Vic(a){return (ujc(),tjc).Cn(a)} -function Wic(a){return (ujc(),tjc).Dn(a)} -function Zic(a){return (ujc(),tjc).Hn(a)} -function ajc(a){return (ujc(),tjc).In(a)} -function bjc(a){return (ujc(),tjc).Mn(a)} -function cjc(a){return (ujc(),tjc).Jn(a)} -function Skc(a){return (ujc(),tjc).En(a)} -function Tkc(a){return (ujc(),tjc).Fn(a)} -function ilc(a){return (ujc(),tjc).wn(a)} -function jlc(a){return (ujc(),tjc).xn(a)} -function rlc(a){return (ujc(),a).touches} -function vlc(a){return (ujc(),a).options} -function Orc(){Orc=p9c;krc();Nrc=new ltd} -function e2(){e2=p9c;c2=new g2;d2=new h2} -function emc(){Slc.call(this,'INLINE',2)} -function imc(){Slc.call(this,'RUN_IN',6)} -function Nmc(){Kmc.call(this,'HIDDEN',1)} -function Dmc(){zmc.call(this,'BOLDER',2)} -function Omc(){Kmc.call(this,'SCROLL',2)} -function Xmc(){Vmc.call(this,'STATIC',0)} -function Onc(){Lnc.call(this,'NOWRAP',1)} -function did(a){this.a=[];aid(this,a,'')} -function dbd(a){abd();return $ad._n(a,0)} -function Dld(a){old();return a.nodeValue} -function ild(a,b){return Pkd(Kld(a.a,b))} -function kld(a,b){return Pkd(Ald(a.a,b))} -function z9c(a,b){return new RegExp(a,b)} -function lgd(a,b){return abd(),a.rows[b]} -function zgd(a){return (abd(),a.U).width} -function kad(a){return qvc(a.a)^qvc(a.b)} -function Lvd(a,b){return Aqd(fvd(a.a,b))} -function Oud(a,b){return a.a!=null?a.a:b} -function rtd(a,b){return a.a.qp(b)!=null} -function Ond(a,b){return a.lastIndexOf(b)} -function Nnd(a,b,c){return a.indexOf(b,c)} -function Auc(a,b,c){return {l:a,m:b,h:c}} -function Ggc(d,a,b,c){d.drawImage(a,b,c)} -function Txd(a,b,c){Sxd();zxd(Rxd,a,b,c)} -function Ztd(a,b){if(a.a){cud(b);bud(b)}} -function Ncd(a){(ujc(),tjc).Bn(a);Ocd(a)} -function Wh(a){xic((pic(),oic),new Yh(a))} -function wl(a){!a.d&&Cl(a,a.o);return a.d} -function ag(a,b){(abd(),a.U).style[czd]=b} -function hg(a,b){(abd(),a.U).style[ezd]=b} -function Dn(a){(abd(),a.U).style[yAd]=ozd} -function am(a){if(a.a){a.a.tc();a.a=null}} -function cs(a){return wwd(a.a,a.a.length)} -function Jn(a){a.d.M&&Lid(a.c,Kid(a.c)+1)} -function vm(a){a.n=false;kbd((abd(),a.U))} -function nA(a){a.n=a.Xf();a.n.eb();a.Vf()} -function dD(a,b){a.a!=b&&(a.i=null);a.a=b} -function Hu(a,b){Mt.call(this,a);this.a=b} -function fJ(a,b){$G.call(this,a);this.e=b} -function zJ(a,b){dH.call(this,a);this.a=b} -function BJ(a,b){$G.call(this,a);this.a=b} -function Nn(a){Mn.call(this);En(this.d,a)} -function lL(a,b){$G.call(this,a);this.b=b} -function HM(a,b){$G.call(this,a);this.b=b} -function Tc(){Jc(this);Lc(this);this.bb()} -function xf(){this.c=new es;this.b=new es} -function nk(){nk=p9c;mk=new ok;lk=new ltd} -function Lud(){Lud=p9c;Kud=new Pud(null)} -function ol(){ol=p9c;nl=(Vjd(),Vjd(),Ujd)} -function HF(a,b,c){return AF(b,kH(c,a.a))} -function tK(a,b,c){return a.o.i.a.o.k?c:b} -function $M(a,b){return b?a.b:a.b-a.b%ZBd} -function pT(a,b){return hV(a,b.s,b.u,b.n)} -function mV(a,b,c){return new oV(a,b,b,c)} -function FX(a,b,c,d){return a.v.Jf(b,c,d)} -function Vu(a,b){this.a=a;Uu.call(this,b)} -function hQ(a,b){iQ.call(this,a,b,new kS)} -function lQ(a,b){$G.call(this,a);this.a=b} -function UO(a,b){$G.call(this,a);this.c=b} -function lV(a,b){PU.call(this,a);this.c=b} -function nbb(a){mbb.call(this,new cbb(a))} -function obb(a){nbb.call(this,new ebb(a))} -function veb(a,b){!!b&&Wr(a.a,new o9b(b))} -function ydb(a,b){return !!b&&Nr(a.n,b.a)} -function Vnb(a,b){return b>=0?a.a[b]:null} -function ucb(a){return a.length==0?null:a} -function $eb(a){return Xrd(),new ysd(a.b)} -function jwb(a){return new sHb(a.c.i,a.b)} -function oBb(a,b){return new HCb(b,a,dyd)} -function qCb(a,b){return !a.c&&vCb(a.f,b)} -function Slb(a,b,c){O8c(b,a.t)&&ew(a.G,c)} -function $Ib(a,b,c){Ytd(a.a,b,new fJb(c))} -function nkb(a,b,c){bcb(a.a,b,c);return c} -function Okb(a,b,c){cn(a.b,b,c,(Os(),Fs))} -function aLb(a,b,c){this.a=new BLb(a,b,c)} -function LVb(a,b,c){return tqc(a.b,b,a,c)} -function TVb(a){return Xrd(),new ysd(a.i)} -function pjb(a){Xrd();a.Fd(null);return a} -function x$b(a,b){wx(a.a,b,null);return a} -function y$b(a,b){wx(a.a,null,b);return a} -function bGb(a,b){gg(a.a.a,b);gg(a.a.c,b)} -function Qub(a,b){a.b.qe();Hub(a.a,a.c,b)} -function myb(a,b){nyb.call(this,oyb(a),b)} -function XZb(a,b){YZb.call(this,a,b,true)} -function eec(){Ldc.call(this,'directory')} -function egc(){Ldc.call(this,'scrollbar')} -function dgc(){Ldc.call(this,'rowheader')} -function ggc(){Ldc.call(this,'separator')} -function vcc(a,b){tcc();this.b=a;this.a=b} -function oRb(a,b){lRb();this.b=a;this.a=b} -function YT(a){VT();this.a=a;this.b=ZT(a)} -function rQ(){this.a=new CR;this.b=new ER} -function iPb(b,a){b.valenceErrorVisible=a} -function Qic(b,a){return b.removeChild(a)} -function Lic(b,a){return b.appendChild(a)} -function Jgc(b,a){return b.measureText(a)} -function $ic(b,a){return parseInt(b[a])|0} -function xkc(a,b){return vjc((ujc(),a),b)} -function Qkc(a){return wjc((ujc(),a),tFd)} -function w9c(c,a,b){return a.replace(c,b)} -function Lfd(a,b,c){return Jfd(a.a.c,b,c)} -function kgd(a,b){return lgd((abd(),a),b)} -function Mxd(a,b){for(p in b){a[p]=b[p]}} -function uld(a){old();return a.attributes} -function vld(a){old();return a.childNodes} -function Fld(a){old();return a.parentNode} -function Old(){old();this.a=new DOMParser} -function qmd(){qmd=p9c;omd=false;pmd=true} -function Vcd(){Vcd=p9c;Icd();Fcd[dLd]=Mcd} -function Acd(a){if(!ycd){a.co();ycd=true}} -function pid(a){vdd.call(this,a);sg(this)} -function vsd(a){osd.call(this,a);this.a=a} -function wsd(a){qsd.call(this,a);this.a=a} -function vjd(){sjd.call(this,'JUSTIFY',1)} -function hnc(){enc.call(this,'JUSTIFY',1)} -function Mmc(){Kmc.call(this,'VISIBLE',0)} -function tmc(){pmc.call(this,'OBLIQUE',2)} -function Emc(){zmc.call(this,'LIGHTER',3)} -function Ovd(a){Nvd.call(this);Lr(this,a)} -function hNd(a){Jl(this,a.c);oI(this,a.c)} -function zNd(a){Jl(this,a.c);VG(this,a.c)} -function kpd(a){Nod();lpd.call(this,a,10)} -function SNd(){return new ibc(this.a,0,0)} -function Zwd(a){return a.$H||(a.$H=++Ywd)} -function ymd(a){return a>=56320&&a<=57343} -function kvc(a,b){return a!=null&&gvc(a,b)} -function fc(a){return a.j!=null?a.j:''+a.k} -function Nud(a){Swd(a.a!=null);return a.a} -function dtd(a,b){return !!b&&a.b[b.k]==b} -function Xnd(a,b,c){return a.substr(b,c-b)} -function Xgc(d,a,b,c){d.strokeText(a,b,c)} -function Xwd(b,c,d){try{b[c]=d}catch(a){}} -function Vf(a){return _ic((abd(),a.U),azd)} -function Sf(a){return $ic((abd(),a.U),$yd)} -function Tf(a){return $ic((abd(),a.U),_yd)} -function sh(a){(Sfd(),Rfd).Fo((abd(),a.U))} -function $(){$=p9c;Z=twd((Hmd(Cvc),Cvc.p))} -function Jc(a){a.k=suc(b6c,lyd,2352,0,0,1)} -function Pl(a){Ol.call(this);Ydd(this.o,a)} -function Ql(a){Ol.call(this);Zdd(this.o,a)} -function qn(){on.call(this,'HORIZONTAL',0)} -function Fn(){Jg();nm.call(this,false,zAd)} -function dz(){$y.call(this);this.a=new Cqc} -function Ue(){this.b=new es;this.a=new std} -function Zj(){this.a=new ltd;this.b=new ak} -function Yk(a,b){this.a=a;this.b=new Nk(b)} -function Hc(){Fc();this.a=true;this.b=true} -function HD(a){this.b=a;this.a=new Yu(a.A)} -function KC(a){return a.a.sd()?a:new js(a)} -function uz(a){sz();return ic((xz(),wz),a)} -function kz(a){iz();return ic((nz(),mz),a)} -function xh(a){if(Bh(a)){return}a.j&&Dh(a)} -function sn(a){if(a.f){throw I8c(new dnd)}} -function iL(a){aL.call(this,a,(s6b(),g6b))} -function ED(a,b,c){FD.call(this,a,a.C,b,c)} -function dS(a,b,c,d){eS.call(this,a,b,c,d)} -function bV(a,b,c){a.k&&a.i.Fh().Ch(b,a,c)} -function kP(a,b,c){WT(a.i,b,a.o.i.j,KBd,c)} -function JY(a,b,c,d){bU(a.f).Ah(b,a.d,c,d)} -function RZ(a,b,c,d){cU(a.d).Dh(b,a.c,c,d)} -function XZ(a,b,c,d){WZ.call(this,b,a,c,d)} -function $Z(a,b,c,d){WZ.call(this,b,a,c,d)} -function eX(a,b,c,d){return b-c.Nh()*a.a-d} -function VQ(a,b){return WQ(a)?0.22*b*0.5:0} -function x$(a){return a!=null&&a.length!=0} -function FG(a){a.k=null;a.j=null;a.a=false} -function YI(a){a.b=null;mIb(a.a,(Ez(),Az))} -function yw(a){a.n=(sz(),rz);a.j=(iz(),hz)} -function nN(a){a.b.b=false;xN(a.e);xN(a.f)} -function wn(a,b,c){sn(a);a.f=b;a.c=c;xn(a)} -function I9(a,b,c,d){p8.call(this,a,b,c,d)} -function Vcb(a,b,c,d){return a.b.Ij(b,c,d)} -function ndb(a,b){hs(a.n,b)!=-1||Wr(a.n,b)} -function odb(a,b){hs(a.p,b)!=-1||Wr(a.p,b)} -function pdb(a,b){hs(a.q,b)!=-1||Wr(a.q,b)} -function vdb(a,b){hs(a.o,b)!=-1||Wr(a.o,b)} -function Vvb(a,b){bt(a.b.nd(b),new Yvb(a))} -function awb(a,b){return Zvb(new _vb(b),a)} -function Nwb(a,b){rm(a.b,false);Wwb(a.a,b)} -function YN(a,b){this.a=new aO(a);this.b=b} -function Yfb(){this.a=new es;this.b=new es} -function kcb(){this.a=new es;this.b=new es} -function Neb(){this.b=new is;this.a=new is} -function JOb(a){DOb();this.a=true;this.b=a} -function zob(a){vd.call(this,oHd);this.a=a} -function xRb(a,b){Uu.call(this,b);this.a=a} -function dOb(a){_Nb();fOb.call(this,a,$Nb)} -function _bb(){_bb=p9c;$bb=new Rs(16,3,28)} -function dyb(a,b,c,d){qd(b,new uyb(a,d,c))} -function ZBb(a,b){return !!a.c&&Cqd(a.c,b)} -function EVb(a,b){sVb(a,dsd(a.o).b.vd(),b)} -function TWb(a,b){PWb(a,Qqd(a.a.i,b.Me()))} -function a5(a,b){a.a=a.a+(''+b.substr(11))} -function f2b(a){this.a=new pad;e2b(this,a)} -function IRb(){this.a=new es;this.b=new es} -function kVb(){this.b=new es;this.a=new es} -function F0b(a){E0b();this.a=a;this.b=null} -function y2b(a){h2b();v2b.call(this,a.k+1)} -function H4b(a,b,c){G4b.call(this,a,b,c,0)} -function Tac(a,b){Sac.call(this,a.a,a.b,b)} -function JWb(a){Hdb.call(this,a);rVb(this)} -function Rxb(a){xg(a,(Vxb(),Txb));return a} -function Sxb(a){xg(a,(Vxb(),Uxb));return a} -function uQb(a){if(a<=0){return 0}return a} -function ulc(a){(ujc(),a).options.length=0} -function nlc(a){return (ujc(),a).keyCode|0} -function olc(a){return !!(ujc(),a).metaKey} -function mlc(a){return !!(ujc(),a).ctrlKey} -function Yic(a){return (ujc(),a).innerHTML} -function Juc(a){return a.l+a.m*vzd+a.h*$Kd} -function Nu(a){!!a.p&&!!a.p.a&&Yv(a,a.p.a)} -function t5b(a){!!a.b&&c5b(new j5b(a,a.b))} -function ebd(a,b){abd();return $ad.bo(a,b)} -function Cad(a,b){return new $wnd.C2S(a,b)} -function Btc(a,b){a.r.setHours(b);ztc(a,b)} -function yld(a,b){old();return nld._o(a,b)} -function $id(a,b){ded(a.a,b);kqc(a,mnd(b))} -function H9c(a,b){nod(a.a,R9c(b));return a} -function Lqd(a){a.d=new Ctd(a);a.e=new Qtd} -function Utd(a){a.b=new dud(a);a.c=new ltd} -function Yqd(a){a.d.Dd(a.c);a.b=a.c;a.c=-1} -function Cid(a){if(_i(a)){a.c=null;yid(a)}} -function Ard(a){if(!a){throw I8c(new Isd)}} -function Swd(a){if(!a){throw I8c(new Eud)}} -function jwd(a,b){if(ewd){return}Wr(a.a,b)} -function Kxd(a,b){return a!=null?a[b]:null} -function dud(a){eud.call(this,a,null,null)} -function amc(){Slc.call(this,'INITIAL',16)} -function Ymc(){Vmc.call(this,'RELATIVE',1)} -function Zmc(){Vmc.call(this,'ABSOLUTE',2)} -function Qnc(){Lnc.call(this,'PRE_LINE',3)} -function Rnc(){Lnc.call(this,'PRE_WRAP',4)} -function xid(a){this.c=a;this.a=!!this.c.O} -function ek(a){this.b=a;this.d=hAd;this.a=0} -function QNd(){return cbc(this.a,this.a.c)} -function oPd(){return 'safe: "'+this.a+'"'} -function xi(a,b){return a.a?b.dataset:yi(b)} -function rt(a,b){return jvc(a)?a.zd(b):a[b]} -function of(a,b){this.a=a;b.ub(a,new Af(a))} -function fx(a){this.a=new jx(this);this.c=a} -function jx(a){this.c=a;this.b=new _y(this)} -function hPd(a){!!L5b(this.a,a)&&hTb(this)} -function PA(a,b,c){QA.call(this,a,b,c,null)} -function nw(a,b,c){ow.call(this,a,b,true,c)} -function DD(a,b){FD.call(this,a,a.C,b,null)} -function aN(a,b){a.c=b;a.d=uN(b.b);a.f=null} -function PL(a,b,c){a.b=b;(b>=0||c)&&(a.a=c)} -function kO(a,b){bt(PGb(a.a,0),new pO(a,b))} -function tO(a,b){bt(Xob(a.b,b),new yO(a,b))} -function AO(a,b,c){Cqd(a.b,b)&&Hqd(a.b,b,c)} -function qQ(a,b,c){LQb(DR(b),new tQ(c,a.a))} -function oC(a,b){return !Zrd(a.Ml(),b.Ml())} -function zh(a){if(Bh(a)){return}!a.j&&Dh(a)} -function pb(a){if(a<=1){return a}return 2-a} -function Hmd(a){if(a.p!=null){return}Smd(a)} -function tn(a){if(!a.f){throw I8c(new dnd)}} -function KR(a){LR.call(this,a,false,new es)} -function wT(a,b){uT.call(this,a,a?0:2,!a,b)} -function xT(a,b){vT.call(this,a,a?0:2,!a,b)} -function L$(a,b){J$();return new K$(H$,a,b)} -function gV(a,b,c){return QW(new RW(b,c),a)} -function bU(a){return Osd(a.b,a.a.a.j).Gh()} -function cU(a){return Osd(a.b,a.a.a.j).Hh()} -function lw(a){zIb(a.a);a.j.c=true;a.w.Hf()} -function mw(a){AIb(a.a);a.j.c=true;a.w.Hf()} -function Z4(a){this.a=a;X4.call(this,a,CDd)} -function Eab(a,b,c,d){p8.call(this,a,b,c,d)} -function zbb(a,b){xbb.call(this,a);this.a=b} -function zfb(a,b){xbb.call(this,a);this.a=b} -function Jfb(a,b){Ffb.call(this,a);this.a=b} -function ggb(a){$fb.call(this);Xr(this.a,a)} -function dU(a){this.b=new Tsd(kAc);this.a=a} -function UR(){this.c=new yod;this.d=new _ud} -function W4(){this.a=new ltd;this.b=new _ud} -function Qgb(){this.a=new es;this.b=new ltd} -function bxd(){bxd=p9c;$wd=new S;axd=new S} -function fib(){fib=p9c;eib=(i1b(),h1b[5].c)} -function Qeb(a,b){return new W0b(b,a.a,a.c)} -function seb(a){return yeb(new Ceb(s9c(a)))} -function eBb(a,b,c){return UBb(a.a,b,a.c,c)} -function zAb(a,b,c){BAb(a,a.a,b,c);a.d=true} -function Mab(a,b){Psd(Iab,a,b);Iqd(Jab,b,a)} -function Mzb(a,b){wyb.call(this,a);this.a=b} -function rzb(a,b){wyb.call(this,a);this.c=b} -function xyb(a,b){wyb.call(this,a);this.b=b} -function Njb(a){Ojb.call(this,new Usd(a.a))} -function nHb(a){rm(a,false);eq(a.a);eq(a.a)} -function oHb(a){Jg();this.a=a;Bm.call(this)} -function syb(a){Jg();this.a=a;Bm.call(this)} -function tEb(a){Jg();this.a=a;Bm.call(this)} -function CEb(a){return _ic((abd(),a.U),OHd)} -function PPb(a,b,c,d){return KPb(a.a,b,c,d)} -function RHb(a,b){tqc(a.e,(aF(),_E),null,b)} -function SHb(a,b){tqc(a.e,(mF(),lF),null,b)} -function MUb(a,b){GUb(a,b);return a.a.Rm(b)} -function pP(a){!a.b&&(a.b=oP(a));return a.b} -function qQb(a,b){nQb.call(this,a);this.a=b} -function iLb(a,b){gLb.call(this,b);this.a=a} -function oLb(a,b){gLb.call(this,b);this.a=a} -function o0b(a,b){l0b.call(this,b);this.a=a} -function n0b(a,b){k0b.call(this,b);this.a=a} -function n9b(a){m9b.call(this);Xr(this.a,a)} -function v2b(a){h2b();w2b.call(this,a,null)} -function I3b(a){eTb();J3b.call(this,a,null)} -function URb(a){Jg();this.a=a;Bm.call(this)} -function _Sb(a,b){this.a=a;this.b=new vt(b)} -function vjc(a,b){return a.createElement(b)} -function Q0b(a){return !a.c.fn()&&!a.a.fn()} -function Y9b(a){return new W9b(a.a,a.b,0,0)} -function tGb(){return typeof $wnd.Blob!=$Id} -function plc(a){return !!(ujc(),a).shiftKey} -function fbd(a){abd();return yjc((ujc(),a))} -function gbd(a){abd();return Ajc((ujc(),a))} -function Rbd(){ol();tl.call(this,skc($doc))} -function Ufd(){Sfd();Gg.call(this,Rfd.Eo())} -function hmc(){Slc.call(this,'LIST_ITEM',5)} -function aPd(a){(!a||a!=this.b)&&(this.b=a)} -function Tkb(a){if(a.a){throw I8c(new dnd)}} -function tlc(a){(ujc(),a).stopPropagation()} -function xe(a,b){Zdd(xl(a.a),b);Zdd(a.a.o,b)} -function Qed(a,b,c){b?Agd(c,a.b):Agd(c,a.a)} -function Gkd(c,a,b){c.setRequestHeader(a,b)} -function Pc(a,b){a.e=b;b!=null&&Xwd(b,ryd,a)} -function Pi(a,b){return $wnd.setTimeout(a,b)} -function mh(a,b){return uh(a,b,a.b.a.length)} -function oh(a,b){return vh(a,b,a.b.a.length)} -function yrd(a){return a.c-a.b&a.a.length-1} -function Vd(a,b){return a.a?a.a.c.fb(b):null} -function ls(a){return a!=null?new ks(a):null} -function st(a){return jvc(a)?a.vd():a.length} -function nj(a){a.d==(xj(),wj)&&a.Fc();a.d=vj} -function Erd(a){a.b=a.a++;return a.c.a[a.b]} -function Yv(a,b){Uo(a.a,(Lz(),Kz));WG(b,a.a)} -function bw(a,b){a.d=b;Ov(a,(Lz(),Iz));Uv(a)} -function Rw(a,b){og(b,a.e,(Loc(),Loc(),Koc))} -function Hk(a,b){og(b,a.b,(lpc(),lpc(),kpc))} -function Nf(a,b){eg(a,jg(a.xb())+'-'+b,true)} -function ih(a,b,c){jh(a,Zh(new _h(a.c),b,c))} -function AT(a,b,c){BT.call(this,a,b,c,false)} -function hI(a){QH();$G.call(this,a);ZH(this)} -function Vl(){ol();Ol.call(this);dg(this,Rl)} -function gs(a){Ur(this);Awd(this.a,0,a.wd())} -function zE(a){return new Tac(a.Lh(),a.Ki())} -function M$(a){J$();return new K$(I$,a,null)} -function Cnb(a,b){return Ikb(new Jkb(a.d,b))} -function U8(a){return a.length>0&&a.length<4} -function Xob(a,b){return JQb(new KQb(b,a.a))} -function spb(a,b){return new qqb(b,a.a,true)} -function Bwb(a,b){return a?mrc(b,a,null):'-'} -function VBb(a,b){return a.c?Eqd(a.c,b):null} -function JH(a,b){a.a=GH(a);a.c=3;yQ(a.o.f,b)} -function ZH(a){a.a=new sud;a.b=new sud;a.j=0} -function bfb(){this.b=new std;this.a=new ltd} -function ecb(a){this.a=a;this.b=new gcb('m')} -function LRb(a,b){this.b=b;this.a=new _Rb(a)} -function kob(a,b,c,d){gob.call(this,a,b,c,d)} -function E9(a,b,c,d){J9(b,a.b,(W9(),N9),c,d)} -function hVb(a,b){return Yr(a.b,Zr(a.a,b,0))} -function gVb(a,b){return Yr(a.a,Zr(a.b,b,0))} -function zOb(a){if(a){return us(a)}return {}} -function c1b(a,b){!!a&&!!b&&b.td(a);return b} -function IJb(a,b){if(!b){zJb(a);return}a.a=b} -function Thc(){!Phc&&(Phc=Uhc());return Phc} -function Kkb(){Lkb.call(this,($e(),$e(),Xe))} -function HNb(){INb.call(this,null,null,null)} -function WFb(){UFb();vFb.call(this,SFb,null)} -function ncc(a,b){mcc.call(this,a,b,'',true)} -function itc(a){Qsc();htc.call(this,a,false)} -function zkc(a){return wjc((ujc(),a),'file')} -function Hkc(a){return (ujc(),tjc).sn(a,OJd)} -function Oic(a,b){return (ujc(),tjc).Kn(a,b)} -function Wkc(b,a){return b.getElementById(a)} -function Eld(a){old();return a.ownerDocument} -function frd(a,b){var c;c=a.e;a.e=b;return c} -function hbd(a,b,c){abd();$ad.eo(a,lbd(b),c)} -function Dgc(e,a,b,c,d){e.clearRect(a,b,c,d)} -function abc(){abc=p9c;_ac=new hbc(0,0,0,0)} -function Sfd(){Sfd=p9c;Rfd=(Vjd(),Vjd(),Tjd)} -function Jkd(){Jkd=p9c;Ikd=(old(),old(),nld)} -function vvd(a){wvd.call(this,a,(Evd(),Avd))} -function _lc(){Slc.call(this,'TABLE_ROW',15)} -function gPd(){return T1(this.a,(O$b(),M$b))} -function ctd(a,b){return kvc(b,10)&&dtd(a,b)} -function etd(a,b){return kvc(b,10)&&ftd(a,b)} -function ywd(a,b){return Dwd(new Array(b),a)} -function ivc(a){return String.fromCharCode(a)} -function Jtc(a){this.r=new $wnd.Date(c9c(a))} -function rqc(a,b){this.a=new Eqc(b);this.b=a} -function Lpc(){this.a='ontouchstart' in $wnd} -function iNd(a){VG(this,a.c);this.o.i.w.Hf()} -function Vtd(a){Lqd(a.c);a.b.b=a.b;a.b.a=a.b} -function Etd(a,b){var c;c=a[QAd];c.call(a,b)} -function Mc(a,b){Pwd(true,qyd);a.f=b;return a} -function vc(a){rc();this.a=(Fc(),Ec);this.a=a} -function kf(a,b,c){this.b=a;this.c=b;this.a=c} -function md(a,b,c){gc.call(this,a,b);this.a=c} -function Fg(){Gg.call(this,(abd(),wkc($doc)))} -function eb(){eb=p9c;db=twd((Hmd(wvc),wvc.p))} -function ib(){ib=p9c;hb=twd((Hmd(xvc),xvc.p))} -function ob(){ob=p9c;nb=twd((Hmd(yvc),yvc.p))} -function wb(){wb=p9c;vb=twd((Hmd(zvc),zvc.p))} -function Cb(){Cb=p9c;Bb=twd((Hmd(Avc),Avc.p))} -function Pb(){Pb=p9c;Ob=twd((Hmd(Dvc),Dvc.p))} -function Ub(){Ub=p9c;Tb=twd((Hmd(Fvc),Fvc.p))} -function rc(){rc=p9c;qc=twd((Hmd(Ivc),Ivc.p))} -function _l(a){bm(a,!!a.b.Uc()&&Ad(a.b.Uc()))} -function lq(a,b){mq(Rf(a.a.i),b)||a.a.b.to(b)} -function Il(a,b){Xdd((!a.d&&Cl(a,a.o),a.d),b)} -function Kg(a,b){!a.u&&(a.u=new es);Wr(a.u,b)} -function Oi(a,b){return $wnd.setInterval(a,b)} -function ao(a,b){bo(b,a.a);return $n(a,b.b.a)} -function nB(a,b){this.a=a;this.c=a.f;this.b=b} -function JD(a,b){this.b=a;this.c=a.e;this.a=b} -function oD(a,b,c){this.a=c;this.b=a;this.c=b} -function Th(a,b,c){this.a=a;this.b=b;this.c=c} -function _k(a,b,c){this.a=a;this.b=b;this.c=c} -function Rs(a,b,c){this.a=a;this.b=b;this.c=c} -function OF(a,b,c){this.a=a;this.b=b;this.c=c} -function WB(a,b,c){this.b=a;this.a=b;this.c=c} -function WJ(a,b,c){this.b=a;this.a=b;this.c=c} -function EB(a,b,c){this.c=a;this.a=b;this.b=c} -function TJ(a,b,c){this.c=a;this.b=b;this.a=c} -function IK(a,b,c){this.b=a;this.c=c;this.a=b} -function nQ(a,b,c){this.c=a;this.a=b;this.b=c} -function vQ(a,b,c){this.c=a;this.a=b;this.b=c} -function vJ(a,b,c){fJ.call(this,a,b);this.a=c} -function Fz(a,b,c){gc.call(this,a,b);this.a=c} -function pL(a,b,c){gc.call(this,a,b);this.a=c} -function eR(a,b,c){gc.call(this,a,b);this.a=c} -function yR(a,b,c){gc.call(this,a,b);this.a=c} -function jU(a,b,c){gc.call(this,a,b);this.a=c} -function sU(a,b,c){this.c=b;this.a=a;this.b=c} -function pV(a,b,c){this.c=a;this.b=b;this.a=c} -function fX(a,b,c){gc.call(this,a,b);this.a=c} -function mD(a,b,c){nD.call(this,a,dsd(b.r),c)} -function xJ(a){fJ.call(this,a,'\u2022\u2022')} -function aZ(a,b,c){gc.call(this,a,b);this.a=c} -function LY(a,b,c){this.b=a;this.c=b;this.a=c} -function HX(a,b,c){this.w=a;this.u=b;this.v=c} -function n$(a,b,c){this.o=a;this.a=b;this.b=c} -function T$(a,b,c){this.a=a;this.c=b;this.b=c} -function a0(a,b,c){this.c=a;this.a=b;this.b=c} -function u0(a,b,c){this.c=a;this.b=b;this.a=c} -function K$(a,b,c){this.c=a;this.b=c;this.a=b} -function A0(a,b,c){gc.call(this,a,b);this.a=c} -function A5(a,b,c){gc.call(this,a,b);this.a=c} -function T5(a,b,c){gc.call(this,a,b);this.a=c} -function h3(a,b,c){gc.call(this,a,b);this.a=c} -function W6(a,b,c){this.a=a;this.c=b;this.b=c} -function Mcb(a,b){this.a=Icb(a);this.b=Icb(b)} -function Lkb(a){this.a=a;this.b=new Mkb(this)} -function HS(a){DS(this);Xr(this.a,new Srd(a))} -function zpb(a,b,c){Apb.call(this,a,b,null,c)} -function US(a,b,c,d){return TS(a,YS(a,b),c,d)} -function cn(a,b,c,d){wn(Osd(a.a,b),c,d);hn(a)} -function GR(a,b){a.b||IR(a.c,b,false);HR(a,b)} -function uN(a){a.b||vN(a,a.a.md());return a.c} -function cM(a){!a.b&&(a.b=new _td);return a.b} -function Gcb(a,b){b.Aj(a.i,a.c.a);return null} -function rfb(a,b){qfb(a,b,null,null);return a} -function HUb(a,b){GUb(a,b.p);return a.a.Mm(b)} -function IUb(a,b){GUb(a,b.p);return a.a.Nm(b)} -function JUb(a,b){GUb(a,b.p);return a.a.Om(b)} -function KUb(a,b){GUb(a,b.p);return a.a.Pm(b)} -function LUb(a,b){GUb(a,b.p);return a.a.Qm(b)} -function NUb(a,b){GUb(a,b.p);return a.a.Sm(b)} -function $ub(a,b){return !a.a.sd()||!b.a.sd()} -function GOb(a,b){return a.a&&a.b!=null?a.b:b} -function NAb(a){return (p$b(),m$b)==a||o$b==a} -function E6b(a){return Aac(a.c.gn(),a.a.gn())} -function kvb(a){this.c=new lh(a);this.a=hvb()} -function $Gb(a){this.b=a;this.c=new eHb(this)} -function tCb(a,b){this.d=a;this.a=b?b:new FCb} -function F8b(a,b){G8b.call(this,a,aJd,null,b)} -function pcc(a,b,c){qcc.call(this,a,b,c,null)} -function lcc(a,b){mcc.call(this,a,b,'',false)} -function Zlc(){Slc.call(this,'TABLE_CELL',13)} -function ZIb(a){yw(this);zw(this,a);TIb(this)} -function E1b(a){eTb();A1b.call(this);this.a=a} -function G1b(a){eTb();A1b.call(this);this.a=a} -function xdc(a){this.k=new zdc(this);this.t=a} -function kjd(){fjd();ljd.call(this,Qkc($doc))} -function Qsc(){Qsc=p9c;Nsc((Lsc(),Lsc(),Ksc))} -function wI(){wI=p9c;vI=UI(true);uI=UI(false)} -function rwd(a,b){if(ewd){return}!!b&&(a.d=b)} -function Ead(a,b){Bad();Fad();return Cad(a,b)} -function Lld(a,b,c){old();a.setAttribute(b,c)} -function hld(a,b,c,d){a.setAttributeNS(b,c,d)} -function KRb(a,b,c){X5b(c.jh(),!b);$Rb(a.a,c)} -function fic(a,b,c){return a.apply(b,c);var d} -function Jfd(a,b,c){return a.rows[b].cells[c]} -function fnd(a,b){return kvc(b,215)&&b.a==a.a} -function Kd(a,b){return tqc(a.b,(Bi(),Ai),a,b)} -function tt(a,b){return jvc(a)?a.xd(b):pt(a,b)} -function lt(a,b){return a.a[a.a.length]=b,true} -function Wr(a,b){a.a[a.a.length]=b;return true} -function rOd(){this.b.a.md().Zb();return true} -function pI(a){var b;b=MWb();FVb(b,a);return b} -function tf(a){var b;b=new es;Xr(b,a);return b} -function dt(a){var b;b=new ct;at(b,a);return b} -function l2b(a){if(a.e){return a.e.a}return 0} -function jod(a){Cnd();return kod(a,0,a.length)} -function tbd(a){return abd(),a.__eventBits||0} -function bz(a,b){return tqc(a.a,(dF(),cF),a,b)} -function q3(a,b){return p3(a.a.a.o).Id(LWb(b))} -function ru(a,b,c){return Gu(wu(a.c,b,c).xm())} -function eJ(a,b,c){yQ(a.o.f,new rB(a.o.i,b,c))} -function Reb(a,b,c){this.b=a;this.a=b;this.c=c} -function cjb(a,b,c){gc.call(this,a,b);this.a=c} -function fnb(a,b,c){gnb.call(this,a,b,c,false)} -function aY(a,b,c,d,e){PX.call(this,a,b,c,d,e)} -function FN(a,b){GN.call(this,a,b,new oN(a.i))} -function Oz(a,b){a.c.b=OOb(b);return Pz(b,a.c)} -function Snb(a,b){if(b.b.a.T){return}ao(a.a,b)} -function tlb(a,b){b.a&&FOb(b)&&mKb(a.B,EOb(b))} -function fkb(a,b){return oob(a.f,jUb(b.b),b.a)} -function hl(a,b){return a.length>b&&a[b]||null} -function Xnb(a,b,c){this.c=a;this.a=b;this.b=c} -function Inb(a,b,c){this.a=a;this.b=b;this.c=c} -function Pqb(a,b,c){this.a=a;this.b=b;this.c=c} -function frb(a,b,c){this.a=a;this.b=b;this.c=c} -function Rub(a,b,c){this.a=a;this.b=b;this.c=c} -function uyb(a,b,c){this.a=a;this.b=b;this.c=c} -function rAb(a,b,c){this.a=a;this.b=b;this.c=c} -function Iyb(a,b,c){this.a=a;this.c=b;this.b=c} -function CCb(a,b,c){this.a=a;this.c=b;this.b=c} -function HCb(a,b,c){this.a=a;this.c=b;this.b=c} -function xFb(a,b,c){this.a=a;this.c=b;this.b=c} -function lxb(a,b,c){this.d=a;this.c=b;this.a=c} -function Xvb(a,b,c){this.b=b;this.c=c;this.a=a} -function oJb(a,b,c){this.a=a;this.b=b;this.c=c} -function PKb(a,b,c){this.c=a;this.b=b;this.a=c} -function CLb(a,b,c){this.a=a;this.c=b;this.b=c} -function DLb(a,b,c){this.a=a;this.c=b;this.b=c} -function NLb(a,b,c){this.b=a;this.a=b;this.c=c} -function INb(a,b,c){this.b=a;this.a=c;this.c=b} -function Aob(a,b,c){wd.call(this,b,c);this.a=a} -function Zob(a,b,c){xd.call(this,a,b);this.a=c} -function iAb(a,b,c){gc.call(this,a,b);this.a=c} -function cQb(a,b,c){gc.call(this,a,b);this.a=c} -function _Qb(a,b,c){this.c=a;this.a=b;this.b=c} -function cTb(a,b,c){this.c=a;this.b=b;this.a=c} -function LEb(a,b,c){JEb.call(this,a,b,c);Lsc()} -function cUb(a,b,c){gc.call(this,a,b);this.a=c} -function ARb(a,b,c,d,e){a.fillEllipse(b,c,d,e)} -function iTb(a,b){if(_r(a.o,b)){hTb(a);a.bm()}} -function PWb(a,b){b&&SVb(a.a,new u7b);return b} -function POb(a){if(a){return us(a)}return null} -function PIb(a){MIb();return ic((SIb(),RIb),a)} -function _Zb(a){WZb();return ic((c$b(),b$b),a)} -function OOb(a){return jvc(a)?a.vi():a.size||1} -function bIb(a){return _Ib(a.i,a.b).Un().width} -function m_b(a,b,c){gc.call(this,a,b);this.a=c} -function C3b(a,b,c){gc.call(this,a,b);this.a=c} -function t6b(a,b,c){gc.call(this,a,b);this.a=c} -function Jac(a,b,c){gc.call(this,a,b);this.a=c} -function Dcc(a,b,c){gc.call(this,a,b);this.a=c} -function Ycc(a,b,c){gc.call(this,a,b);this.a=c} -function Y4b(a,b,c){this.c=b;this.a=a;this.b=c} -function P5b(a,b,c){Q5b.call(this,a,b,cy(a),c)} -function jhc(a,b,c){gc.call(this,a,b);this.a=c} -function phc(a,b,c){gc.call(this,a,b);this.a=c} -function vhc(a,b,c){gc.call(this,a,b);this.a=c} -function Ehc(a,b,c){gc.call(this,a,b);this.a=c} -function E8b(a){G8b.call(this,a.e,a.c,a.a,a.b)} -function P2b(a,b){a.o!=b&&(a.i=false);yTb(a,b)} -function Z5b(a){!a.a&&(a.a=new ltd);return a.a} -function ndc(a){var b;b=kdc(a);return qdc(a,b)} -function nac(a){lac();return ic((qac(),pac),a)} -function Ykc(a){return ajc(xjc((ujc(),tjc),a))} -function qlc(a){return (ujc(),a).targetTouches} -function Nic(c,a,b){return c.insertBefore(a,b)} -function Ric(c,a,b){return c.replaceChild(a,b)} -function sqc(a,b){!a.a&&(a.a=new es);Wr(a.a,b)} -function Msc(a){!a.a&&(a.a=new utc);return a.a} -function Nsc(a){!a.b&&(a.b=new stc);return a.b} -function Cjb(){Cjb=p9c;Ajb=new Fjb;Bjb=new Gjb} -function Cdd(){Cdd=p9c;Add=new Fdd;Bdd=new Gdd} -function h5(){h5=p9c;g5=new RegExp('^-?\\d+$')} -function U_(a){this.b=new _td;this.a=new d0(a)} -function yad(a,b,c){this.b=a;this.c=b;this.a=c} -function gtd(a,b,c){this.a=a;this.b=b;this.c=c} -function Std(a,b,c){this.a=a;this.b=b;this.c=c} -function uud(a,b,c){this.d=a;this.b=c;this.a=b} -function Pad(a,b,c){gc.call(this,a,b);this.a=c} -function oxd(a,b,c){this.a=c;this.b=a;this.c=b} -function Qhd(b,a){Phd();b.__gwt_resolve=Rhd(a)} -function Ild(a){old();return a.hasChildNodes()} -function xld(a){old();return a.documentElement} -function iod(a){Cnd();return a==null?iyd:s9c(a)} -function Ktc(a){return a<10?'0'+a:(Cnd(),''+a)} -function cmc(){Slc.call(this,'INLINE_FLEX',18)} -function fmc(){Slc.call(this,'INLINE_BLOCK',3)} -function gmc(){Slc.call(this,'INLINE_TABLE',4)} -function wd(a,b){vd.call(this,a);this.gb(Dyd,b)} -function xd(a,b){vd.call(this,a);this.gb(Eyd,b)} -function Kj(){hj();Cj.call(this);this.a=new ltd} -function Xl(a){ol();Ql.call(this,a);dg(this,Rl)} -function uvd(a){Yqd(a.a);mvd(a.c,a.b);a.b=null} -function Lv(a,b){YHb(a.a,b);a.j.c=true;a.w.Hf()} -function aw(a,b){kIb(a.a,b);a.j.c=true;a.w.Hf()} -function ew(a,b){a.D=b;Ov(a,(Lz(),Iz));a.w.Hf()} -function Bd(a,b){a.gb(Byd,(qmd(),b?true:false))} -function Bs(a,b){return a?a:Jud(b,'defaultObj')} -function jH(a){return $wnd.Math.atan2(-a.b,a.a)} -function QH(){QH=p9c;OH=$wnd.Math.sqrt(3)*LBd/2} -function g$(){g$=p9c;f$=new vT(true,3,true,hCd)} -function Mu(a){!a.s&&(a.s=new fx(a));return a.s} -function SF(a){!a.e&&(a.e=new lG(a));return a.e} -function _w(a){!a.b&&(a.b=(e_(),d_));return a.b} -function Omd(){var a;a=Lmd(null);a.i=2;return a} -function g_(a,b){this.a=Zsd(b);this.b=new O_(a)} -function Z$(a,b){this.a=a;this.c=b;this.b=nr(a)} -function E$(a,b){this.c=a;this.b=b;this.a=false} -function ejb(a,b){this.b=a;this.c='m1';this.a=b} -function Gib(a,b){this.a=a?a:(g3(),f3);this.b=b} -function irb(a,b,c){hrb.call(this,a,b);this.a=c} -function lrb(a,b,c){hrb.call(this,a,b);this.a=c} -function prb(a,b,c){hrb.call(this,a,b);this.a=c} -function fdb(a){xbb.call(this,a);this.a=new ltd} -function Tz(a){this.c=a;this.b=(iU(),fU)==a?0:1} -function $wb(a,b){Jp.call(this,a,(axb(),_wb),b)} -function Wub(a,b){return Hqc(a.a,(Pw(),Ow),a,b)} -function Ogb(a,b){Nkd(kld(Yr(a.a,b),pFd),'1 1')} -function ywb(a,b){Ft(a.b);zwb(a,b.b);xwb(a,b.a)} -function DA(a){Lqd(a.a.a);Lqd(a.b.a);Lqd(a.c.a)} -function cH(a){a.n=false;a.Rd();!!a.k&&a.k.tg()} -function P7(a){return a.j.a.length+a.a.a.length} -function W7(a){return a.j.a.length+a.c.a.length} -function aIb(a){return _Ib(a.i,a.b).Un().height} -function sLb(a,b){return Cib(a.a,b,(Sgb(),Rgb))} -function vCb(a,b){return a==null?b==null:T(a,b)} -function HEb(a,b){(abd(),a.U)[OHd]=b!=null?b:''} -function ATb(a,b){a.a=b;!!a.A&&SVb(a.A,new u7b)} -function oVb(a,b){a.c=b;!!a.b&&SVb(a.b,new u7b)} -function wlb(a,b){b.a&&FOb(b)&&xkb(a.n,!EOb(b))} -function G3b(a,b){a.b=b;!!a.A&&SVb(a.A,new u7b)} -function pIb(a,b,c){c!=bJb(a.i,b)&&dJb(a.i,b,c)} -function BAb(a,b,c,d){CAb(b,c.Cb(),d);Wr(a.c,c)} -function U9b(a,b,c,d,e){a.c=b;a.a=d;a.d=c;a.b=e} -function NHb(a,b){this.a=b;this.c=a;this.b=true} -function p0b(a,b,c){_Ub.call(this,a,b);this.a=c} -function l8b(a,b,c){g8b.call(this,a,b);this.a=c} -function ETb(a,b){eTb();FTb.call(this,a,b,null)} -function Yyb(a,b){Cic((pic(),new ezb(a,b)),200)} -function wic(a,b){a.a=Aic(a.a,[b,false]);uic(a)} -function GWb(a){!!a.d&&St(a.d.a,(cu(),au)).Nd()} -function Dyb(a){!!a.f&&a.b.a.length!=0&&Lg(a.f)} -function Cdc(a){$wnd.cancelAnimationFrame(a.id)} -function Rgc(b,a){b.globalCompositeOperation=a} -function noc(){noc=p9c;moc=new Joc(Zyd,new ooc)} -function Eoc(){Eoc=p9c;Doc=new Joc(Zzd,new Foc)} -function Boc(){Boc=p9c;Aoc=new Joc($zd,new Coc)} -function voc(){voc=p9c;uoc=new Joc(TId,new woc)} -function yoc(){yoc=p9c;xoc=new Joc(eKd,new zoc)} -function Xoc(){Xoc=p9c;Woc=new Joc(Yyd,new Yoc)} -function _oc(){_oc=p9c;$oc=new Joc(cAd,new apc)} -function cpc(){cpc=p9c;bpc=new Joc(eAd,new dpc)} -function fpc(){fpc=p9c;epc=new Joc(dAd,new gpc)} -function ipc(){ipc=p9c;hpc=new Joc(pKd,new jpc)} -function lpc(){lpc=p9c;kpc=new Joc(qKd,new mpc)} -function opc(){opc=p9c;npc=new Joc(rKd,new ppc)} -function rpc(){rpc=p9c;qpc=new Joc(sKd,new spc)} -function upc(){upc=p9c;tpc=new Joc(tKd,new vpc)} -function Gpc(){Gpc=p9c;Fpc=new Joc(uKd,new Hpc)} -function Qpc(){Qpc=p9c;Ppc=new Joc(vKd,new Rpc)} -function xpc(){xpc=p9c;wpc=new Joc(Yzd,new ypc)} -function usd(a,b,c){return new vsd(a.a.Gd(b,c))} -function oad(a){return 'Point('+a.a+','+a.b+')'} -function irc(){return ['USD','US$',2,'US$','$']} -function RNd(){return dbc(cbc(this.a,this.a.c))} -function qOd(){return !dsd(this.c.i.A.r).a.sd()} -function vid(){pid.call(this,(oid(),$doc.body))} -function $lc(){Slc.call(this,'TABLE_COLUMN',14)} -function kmc(){Slc.call(this,'TABLE_CAPTION',8)} -function Vqc(a,b){frc(rJd,b);return Uqc(a,'',b)} -function qld(a,b){old();return a.appendChild(b)} -function Awd(a,b,c){xwd(c,0,a,b,c.length,false)} -function eud(a,b,c){this.c=a;grd.call(this,b,c)} -function At(a,b){Iud(a);Iud(b);this.a=a;this.b=b} -function ZD(a,b){Ry(a.d.A);Ou(a.d,a.a);Ou(a.d,b)} -function bj(a){if(a.d.a.yc()){return}Oe(a.b,a.c)} -function Xd(a){if(!a.b){return}Xld(a.b);a.b=null} -function dI(a){if(!a.k){return}Zld(a.k);a.k=null} -function eK(a){if(a.b){return fK(a)}return gK(a)} -function Mmd(a){var b;b=Lmd(a);Umd(a,b);return b} -function rf(a){var b;b=new nf;wf(b.a,a);return b} -function PJ(a){var b;b=new OJ;Wr(b.a,a);return b} -function kH(a,b){return new qad(a.a+b.a,a.b+b.b)} -function Ni(a,b){return Yxd(function(){a.hc(b)})} -function h_(a,b){e_();g_.call(this,a,new Srd(b))} -function PC(a,b){QC.call(this,new Idb(b),a,null)} -function p0(a,b,c){q0.call(this,a,b,c,(z0(),y0))} -function eS(a,b,c,d){fS.call(this,a,b,c,d,false)} -function IU(a,b,c,d){JU.call(this,a,b,c,d,false)} -function C9(a,b,c,d){J9(b,a.a,(W9(),L9),c,l8(d))} -function xQ(a){nrd(a.d);nrd(a.c);zQ(a,new FQ(3))} -function xm(a){!a.o&&(a.o=acd(new led(a)));ah(a)} -function TM(a){a.b=null;a.c=null;a.a=false;BM(a)} -function X4(a,b){this.b=new es;Iqd(a.a,b,this.b)} -function uM(a,b){this.a=a;this.b=new es;this.d=b} -function ukb(a,b){this.a=b.a;this.b=b.b;this.c=a} -function u5(a,b){this.i=a;this.p=b;this.a=new es} -function _ab(a,b){return a.b[(a.c+b)%a.b.length]} -function pmb(a){return a!=null?a:'unknown error'} -function Hwb(a,b,c){Iwb(a,new ted(b),new red(c))} -function nJb(a,b,c){Kad(a.a,b);Jad(a.a,c);kJb(a)} -function Mbb(a,b){a.lm(Qbb(b));Wbb(a,b);Vbb(a,b)} -function wKb(a,b,c){b.pb(oKb(a.b,a.b.b,c,a.b.a))} -function yCb(a,b){var c;c=Zr(a.a,b,0);Ugd(a.b,c)} -function Sac(a,b,c){this.a=new qad(a,b);this.b=c} -function Cgc(f,a,b,c,d,e){f.arc(a,b,c,d,e,false)} -function BRb(a,b,c,d,e){a.strokeEllipse(b,c,d,e)} -function uqc(a,b,c,d){var e;e=xqc(a,b,c);e.od(d)} -function bqc(a){var b;if(_pc){b=new aqc;a.Fb(b)}} -function h2b(){h2b=p9c;eTb();g2b=new Du(false,0)} -function Kr(){Kr=p9c;Jr=$wnd.devicePixelRatio||1} -function klc(a){return Ojc((ujc(),a).clientX||0)} -function llc(a){return Ojc((ujc(),a).clientY||0)} -function rbd(a){return abd(),zcd((ujc(),a).type)} -function Qgd(a){return (abd(),a.U).selectedIndex} -function Gad(){Bad();return typeof $wnd.C2S!=$Id} -function Ald(a,b){old();return a.getNamedItem(b)} -function tld(a,b){old();return a.getAttribute(b)} -function _9(a){if(lUb(a)){return 0}return a.Tl()} -function vTb(a){if(!a.p){return}SVb(a.p,new u7b)} -function jtd(a){a.b=a.a;htd(a);return a.c.b[a.b]} -function cdd(a){var b=a[lLd];return b==null?-1:b} -function cud(a){a.a.b=a.b;a.b.a=a.a;a.a=a.b=null} -function lud(a,b){mud(a,b,a.c.b,a.c);return true} -function Prd(a,b,c){Rwd(b,a.length);Nrd(a,0,b,c)} -function ef(a,b,c,d,e){bf();a.nb(new hf(d,b,e,c))} -function Vkb(a,b){bn(a.b,(Xm(),ic((_m(),$m),b)))} -function Xkb(a,b){fn(a.b,(Xm(),ic((_m(),$m),b)))} -function Ov(a,b){if(a.a){Uo(a.a,b);hIb(a.a,true)}} -function Jw(a,b){if(a.f){throw I8c(new dnd)}a.f=b} -function bt(a,b){a.b==(gt(),et)?b.tb(a.c):(a.a=b)} -function qH(a,b){Jl(a,b.c);vH(a,b.d);a.o.i.w.Hf()} -function Jv(a){XHb(a.a,false);a.j.c=true;a.w.Hf()} -function vdd(a){wo.call(this);_f(this,(abd(),a))} -function XM(a){vM.call(this,a,(QQ(),OQ));SK(this)} -function cB(a,b,c){BA.call(this,a,a.C,b);this.a=c} -function wtc(a,b){this.c=a;this.b=b;this.a=false} -function HQ(a,b){a>0&&(this.b=a);b<=0&&(this.a=b)} -function Pdb(a,b){!!b&&(hs(a.w,b)!=-1||Wr(a.w,b))} -function qhb(a,b,c){!!b&&Xr(a.i,b);!!c&&Xr(a.k,c)} -function Skb(a,b,c,d){return Ukb(a,new mo(b,c),d)} -function eV(a,b,c){return cbc(new ibc(a,0,0),b*c)} -function HV(a,b,c){return a.Jf(c,b.b,(z0(),y0)).c} -function Zcb(a,b,c){return (RTb(),MTb)==a?b:b*2+c} -function ZK(a,b){return dL(cWb(a.o.i.C),dsd(b.r))} -function zG(a,b){return !!a.j&&a.a&&sac(b,a.j)<=5} -function Lu(a){return !a.s&&(a.s=new fx(a)),a.s.a} -function xJb(a){return FJb(a,a.a?a.a:(abc(),_ac))} -function snd(a){return a==0||isNaN(a)?a:a<0?-1:1} -function fJb(a){this.a=a;this.b=false;this.c=true} -function nBb(a){this.b=new es;this.a=a;this.c=a.b} -function xDb(a){this.a=new ltd;this.c=a;wDb(this)} -function oeb(a){this.a=a;!!a&&(this.b=ieb(a,ZEd))} -function W0b(a,b,c){V0b.call(this,new nUb(a),b,c)} -function job(a,b,c){vd.call(this,a);fob(this,b,c)} -function z2b(a,b){h2b();y2b.call(this,a);this.e=b} -function K2b(a,b){if(a.j!=b){a.j=b;wTb(a);vTb(a)}} -function N2b(a,b){if(a.e!=b){a.e=b;wTb(a);vTb(a)}} -function RWb(a,b){return !b?a.a.e:QWb(a,dsd(b.r))} -function F9b(a,b){return H9b(a.Lh(),b,K9b(a),LBd)} -function sac(a,b){return rac(a.a,a.b,0,b.a,b.b,0)} -function b1b(a){return !!a&&a.vd()>0?a.zd(0):null} -function iad(a,b){return new qad(a.a/b.a,a.b/b.b)} -function lad(a,b){return new qad(a.a-b.a,a.b-b.b)} -function mad(a,b){return new qad(a.a*b.a,a.b*b.b)} -function mKb(a,b){var c;c=kKb(a,b);!!c&&Xw(a.b,c)} -function C1b(a,b){Y_b();Gqd(X_b,b)&&ATb(a,$_b(b))} -function Ul(a,b){b==null&&(b=(qmd(),omd));Tl(a,b)} -function ehd(a,b){fhd.call(this,a,false);this.b=b} -function ued(a){sed.call(this);zed(this.a,a,true)} -function JCb(){Uc.call(this,'cannot accept null')} -function Q5b(a,b,c,d){R5b.call(this,a,b,c,d,null)} -function EIb(a,b,c,d,e){sJb(a.d,_Hb(a.a),b,c,d,e)} -function cld(a,b,c){return a.createElementNS(b,c)} -function ypd(a,b){return (a.a[b>>5]&1<<(b&31))!=0} -function Osd(a,b){return ctd(a.a,b)?a.b[b.k]:null} -function Qe(a){if(a.c){return}a.c=true;a.b.qb(a.d)} -function Rh(a){a.b.c!=null?Qub(a.a,a.b.c):Pub(a.a)} -function p8b(a){var b;b=n8b(a);_r(a.b,b);return b} -function UVb(a){!a.a&&(a.a=new UWb(a));return a.a} -function kud(a){vtd.call(this,new _td);Lr(this,a)} -function Xsd(a){this.c=a;this.a=new ktd(this.c.a)} -function Hdc(){this.a=new es;this.b=new Idc(this)} -function zk(){this.a=new Pvd((Cnd(),Bnd));this.b=2} -function ee(a,b,c){ce();this.a=a;this.b=c;this.c=b} -function bo(a,b){if(a.a==b){return}a.a=b;Un(a.b,b)} -function Em(a,b){Yd(a.a,b);Gm(a);Cm(a);a.e=jm(a.f)} -function rm(a,b){if(a.o){Zld(a.o.a);a.o=null}Sg(a)} -function IG(a,b){b.length==1?(a.k=b[0]):(a.k=null)} -function VK(a,b){return b.b.vd()<2||aVb(a.o.i.C,b)} -function RL(a,b){yQ(a.o.f,b);Ry(Lu(a.o.i).b);SL(a)} -function Xf(a,b){eg(a,jg((abd(),a.U))+'-'+b,false)} -function ql(a){var b;sg(a);b=a.$c();-1==b&&a._c(0)} -function Zt(a,b){var c;if(Xt){c=new Yt(b);a.Fb(c)}} -function Pz(a,b){var c;c=or(MOb(a));b.a=c;return b} -function Rbb(a,b){var c;c=jUb(a);Mbb(c,b);return c} -function _1(a){var b;b=new Z1(a);b.k=true;return b} -function Dkd(a){a.onreadystatechange=function(){}} -function cN(a,b){DM.call(this,a);this.a=b;_M(this)} -function Kgb(a,b){this.c=a;this.b=b;this.a=new Qgb} -function qKb(){this.e=new tKb(this);this.f=new JKb} -function GD(a,b){this.a=Ndb(new Idb(b),a);this.b=a} -function ewb(a){if(!a){throw I8c(new tnd)}this.a=a} -function qVb(a,b){this.a=new pad;this.c=a;this.a=b} -function jkb(a,b,c){return new Aob(new yub(a),b,c)} -function dN(a,b,c){return uN(b.a)&&jN(a,c,uN(b.b))} -function JNb(a,b){return tqc(a.a,(Bi(),Ai),null,b)} -function hub(a,b){return a.b.gc(b)?Xeb(a.a,b):null} -function MOb(a){return jvc(a)?a.ti():a.color||null} -function E7b(a,b){F7b.call(this,a.d,a.a,a.c,a.b,b)} -function x2b(a,b,c){w2b.call(this,a,b);lTb(this,c)} -function $1b(a,b,c,d,e){_1b.call(this,a,b,c,d,e,e)} -function red(a){ped.call(this);zed(this.a,a,false)} -function zo(){wo.call(this);$f(this,xkc($doc,Nzd))} -function Gv(){Uc.call(this,'Cannot resolve pivot')} -function Ylc(){Slc.call(this,'TABLE_ROW_GROUP',12)} -function Uoc(){Uoc=p9c;Toc=new Joc('drop',new Voc)} -function Nqd(){this.d=new Ctd(this);this.e=new Qtd} -function Oqd(){this.d=new Ctd(this);this.e=new Qtd} -function utd(a){this.a=(a.vd(),new mtd);Lr(this,a)} -function Psd(a,b,c){atd(a.a,b);return Ssd(a,b.k,c)} -function sld(a,b){old();return a.createTextNode(b)} -function Mtd(a,b){return !(a.a.get(b)===undefined)} -function yh(a){if(Bh(a)){return}a.j?Eh(a):undefined} -function Ah(a){if(Bh(a)){return}a.j?undefined:Eh(a)} -function _i(a){if(a.p){return a.p.Gb()}return false} -function ec(){var a;a=new cc;a.b=(nc(),mc);return a} -function _sd(a,b){var c;c=$sd(a);Yrd(c,b);return c} -function Pmd(a){var b;b=Lmd(a);b.o=a;b.i=1;return b} -function Ak(a,b){og(b,a,(_oc(),_oc(),$oc));return a} -function pk(a,b){this.a=aod(a,(Aud(),yud));this.b=b} -function Rc(a){Jc(this);this.i=a;Lc(this);this.bb()} -function ax(a){return (!a.b&&(a.b=(e_(),d_)),a.b).b} -function Iu(a,b){!!a.A&&!!a.B&&Hqd(a.B,b,bz(a.A,b))} -function v8(a,b,c){c!=null&&Hqd(a.a,mnd(b),s9c(c))} -function K6(a,b,c){var d;for(d=0;d0&&(a.a+=',',a);a.a+=b} -function Efd(a,b){!!a.e&&(b.a=a.e.a);a.e=b;hgd(a.e)} -function Aic(a,b){!a&&(a=[]);a[a.length]=b;return a} -function d9c(a){if(mvc(a)){return a|0}return Xuc(a)} -function Qbd(){if(Gad()){return new Pbd}return null} -function Qud(a){Lud();return !a?Kud:new Pud(Iud(a))} -function Hld(a){old();return a.attributes.length!=0} -function Jqd(a,b){return ovc(b)?Kqd(a,b):Btd(a.d,b)} -function rPd(a){return og(this,a,(Gpc(),Gpc(),Fpc))} -function sPd(a){return og(this,a,(Jpc(),Jpc(),Ipc))} -function tPd(a){return og(this,a,(Npc(),Npc(),Mpc))} -function uPd(a){return og(this,a,(Qpc(),Qpc(),Ppc))} -function svd(a){this.b=null;this.a=(Fsd(),!a?Esd:a)} -function A9c(){Uc.call(this,'eval() returned null')} -function jp(a){this.d=a;this.a=5;this.e=new np(this)} -function Vnd(a,b){return Hnd(a.substr(0,b.length),b)} -function Wf(a){return (abd(),a.U).style.display!=bzd} -function dhd(a){eg(a,jg((abd(),a.U))+'-'+Dzd,false)} -function Vx(a,b){if(b){return _r(a.t,b)}return false} -function Zx(a,b){if(b){return Or(a.t,b)}return false} -function $r(a,b){var c;c=a.zd(b);Bwd(a.a,b);return c} -function as(a,b,c){var d;d=a.zd(b);a.a[b]=c;return d} -function dJb(a,b,c){var d;if(b){d=Xtd(a.a,b);d.c=c}} -function dB(a,b,c){return eB(a,b,(Xrd(),new ksd(c)))} -function fB(a,b,c){return gB(a,b,(Xrd(),new ksd(c)))} -function jB(a,b,c){return kB(a,b,(Xrd(),new ksd(c)))} -function jvc(a){return !Array.isArray(a)&&a.Hp===t9c} -function Xw(a,b){var c;c=a.d;a.d=b;c==a.a&&Yw(a,a.d)} -function JE(a,b){LE(a.Me(),b.Me());LE(a.Ne(),b.Ne())} -function qR(a,b){return new qad(dR(a.a,b),xR(a.b,b))} -function BS(a){return a!=null&&!Hnd(a,'=')?bod(a):''} -function RT(a,b,c,d){return new QT(a,c,new qad(b,d))} -function GV(a,b,c){return cbc(new ibc(a,0,0),10/b*c)} -function b$(a,b){this.a=cbc(new ibc(a,0,0),10*b/2.5)} -function b4(a){if(a!=null){return Xmd(a,10)}return 0} -function YM(a){var b;b=new By;qx(b,a.o.i.A);return b} -function d9(a){var b;b=0;lUb(a)||(b=a.Tl());return b} -function TE(a){UE.call(this,a,(YE(),VE),false,false)} -function TA(a,b,c){pA.call(this,a);this.b=b;this.a=c} -function wH(a,b,c){$G.call(this,a);this.e=b;this.n=c} -function yK(a,b,c){$G.call(this,a);this.a=b;this.c=c} -function xjb(a,b,c){yjb.call(this,a,b,c,(Cjb(),Bjb))} -function fOb(a,b){eOb.call(this,a,new YNb,new iOb,b)} -function Xud(a,b){if(a<0||a>=b){throw I8c(new mmd)}} -function AJb(a,b){var c;if(b){c=a.a;zJb(a);IJb(a,c)}} -function Pkb(a,b,c){Zn(Ynb(a.e,As(c,(enb(),bnb))),b)} -function Hgc(d,a,b,c){d.fillText&&d.fillText(a,b,c)} -function Fmd(){Fmd=p9c;Emd=suc(N5c,lyd,392,128,0,1)} -function ond(){ond=p9c;nnd=suc(W5c,lyd,215,256,0,1)} -function DOb(){DOb=p9c;COb=new IOb;BOb=new JOb(null)} -function OUb(){FUb();this.a=EUb;this.c=new QUb(this)} -function jKb(){cKb();this.b=(Os(),Ls);this.a=new Iqc} -function N0b(a,b){this.c=a;this.b=b;this.a=a?a.a+1:0} -function ibc(a,b,c){abc();this.b=a;this.a=c;this.c=b} -function p5b(a){this.b=new es;this.c=new es;this.a=a} -function iXb(a){if(a.a){return a.a.c}return a.d.Bm()} -function Hqc(a,b,c,d){return new Fqc(tqc(a.a,b,c,d))} -function Z8c(a,b){return M8c(Suc(mvc(a)?b9c(a):a,b))} -function $8c(a,b){return M8c(Tuc(mvc(a)?b9c(a):a,b))} -function _8c(a,b){return M8c(Uuc(mvc(a)?b9c(a):a,b))} -function uFb(a){return Yr(a.c,Rf(a.a).selectedIndex)} -function wCb(a){return Yr(a.a,Rf(a.b).selectedIndex)} -function AOb(a){return jvc(a)?a.Pi():a.hasUID||false} -function Mkc(a){return (ujc(),a).createElement('td')} -function Nkc(a){return (ujc(),a).createElement('tr')} -function Fdc(a,b){_r(a.a,b);a.a.a.length==0&&Hi(a.b)} -function Yqc(a,b){Tqc();Zqc.call(this,!a?null:a.a,b)} -function tqd(a){bnd.call(this,(Cnd(),a==null?iyd:a))} -function uqd(a){bnd.call(this,(Cnd(),a==null?iyd:a))} -function Vlc(){Slc.call(this,'TABLE_COLUMN_GROUP',9)} -function fgd(a){this.c=a;this.d=this.c.i.b;dgd(this)} -function gpd(a,b,c){Nod();this.e=a;this.d=b;this.a=c} -function Jld(a,b,c){old();return a.insertBefore(b,c)} -function qid(a){oid();try{a.Jb()}finally{rtd(nid,a)}} -function tud(a){a.c=a.b;a.b=a.b.a;++a.a;return a.c.c} -function ptd(a,b){var c;c=a.a.pp(b,a);return c==null} -function Ssd(a,b,c){var d;d=a.b[b];a.b[b]=c;return d} -function Ap(a,b){var c;Fp(a,b);c=Yr(a.c,b);ixb(a.a,c)} -function fw(a,b){if(!b){return null}return rIb(a.a,b)} -function gw(a,b){if(!b){return null}return sIb(a.a,b)} -function iw(a,b){if(!b){return null}return uIb(a.a,b)} -function jw(a,b){if(!b){return null}return vIb(a.a,b)} -function Gi(a){if(!a){return null}return a.Yc(new Ui)} -function hp(a){if(a.length>0){return a[0]}return null} -function Y(a){X();if(a>=W.length)return 0;return W[a]} -function Yy(a,b){var c;c=_r(a.w,b);c&&a.rf();return c} -function Sy(a,b){var c;c=_r(a.q,b);c&&a.rf();return c} -function Ty(a,b){var c;c=_r(a.r,b);c&&a.rf();return c} -function Wy(a,b){var c;c=_r(a.C,b);c&&a.rf();return c} -function Zy(a,b){var c;c=_r(a.B,b);c&&a.rf();return c} -function ro(a,b){if(b<0||b>a.i.c){throw I8c(new kmd)}} -function BC(a,b){this.a=b;this.c=a;this.b=new Yu(a.A)} -function LR(a,b,c){this.b=b;this.c=a;this.a=new gs(c)} -function JG(a,b,c){this.i=a;this.d=new xG(c);this.f=b} -function _W(a){TW(this);this.a=a?a:(dX(),bX);this.c=0} -function b2(a,b){Z1.call(this,a);this.n=_0b(b,this.n)} -function gob(a,b,c,d){wd.call(this,a,b);fob(this,c,d)} -function hob(a,b,c,d){xd.call(this,a,b);fob(this,c,d)} -function TS(a,b,c,d){return new KY(b,c,d,a.n,a.f,a.f)} -function jN(a,b,c){return !!c&&sac(jw(a.i,c),b)0?1:0} -function dm(a){return a.Uc().fb(Gyd)!=null?new cm(a):a} -function Vs(a){return a==null||a.length==0?0:Xmd(a,10)} -function hx(a){return tF(_w(a.c),a.c.a.b,a.c.c.C).bg()} -function Gx(a,b,c){return hs(a.r,b)!=-1&&hs(a.r,c)!=-1} -function iK(a,b,c){return !!a&&!eK(new hK(a,b,c)).sd()} -function de(a,b,c,d){ce();ee.call(this,b,c,d);this.f=a} -function $G(a){if(!a){throw I8c(new bnd(JBd))}this.o=a} -function qo(a,b){if(b<0||b>=a.i.c){throw I8c(new kmd)}} -function XP(a){if(a.c){return a.c.c}return a.a.a[0][0]} -function OX(a,b,c){return KF(a,b)||sac(dbc(MF(a)),b)=0&&a.Bb(b+dzd);c>=0&&a.zb(c+dzd)} -function Kib(a,b,c){b!=null&&!Hnd(b,'0')&&Otd(c.e,a,b)} -function dM(a){a.a=null;Vtd((!a.b&&(a.b=new _td),a.b))} -function HZ(a){return (O1b(),M1b)==a.n?a.k.e:GX(a,a.i)} -function IZ(a){return (O1b(),M1b)==a.n?GX(a,a.i):a.k.e} -function Znb(a,b){return Fqd(a.a,b.j!=null?b.j:''+b.k)} -function dpb(a,b){yQ(a.b.f,new DD(a.b.i,b));a.b.a.Rd()} -function DRb(a,b){if(b.sd()){return}Xr(a.a,b);GRb(a,b)} -function kTb(a,b){a.p=b;a.bm();!!a.A&&SVb(a.A,new u7b)} -function pTb(a,b){a.s=b;hTb(a);!!a.A&&SVb(a.A,new u7b)} -function Oac(a,b){return new Tac(lad(a.a,b.a),a.b-b.b)} -function Pac(a,b){return new Tac(mad(a.a,b.a),a.b*b.b)} -function s8b(a,b){var c;c=new utd(b);Qqd(c,a);return c} -function xGb(a){var b=URL.createObjectURL(a);return b} -function Jkc(a){return (ujc(),a).createElement('span')} -function Jpc(){Jpc=p9c;Ipc=new Joc('touchend',new Kpc)} -function Loc(){Loc=p9c;Koc=new Joc('dblclick',new Moc)} -function Qoc(){Qoc=p9c;Poc=new Joc('dragover',new Soc)} -function eQ(){eQ=p9c;cQ=new fQ(iBd,0);dQ=new fQ(hBd,1)} -function ffd(a,b){var c;c=a.S;c.b=b.a;!!c.d&&Mo(c.d,b)} -function gfd(a,b){var c;c=a.S;c.e=b.a;!!c.d&&No(c.d,b)} -function hqc(a,b){var c;if(fqc){c=new gqc(b);oqc(a,c)}} -function qod(a,b){a.a+=String.fromCharCode(b);return a} -function rld(a,b){old();return a.createCDATASection(b)} -function kwd(a,b){if(!cwd){return}pwd(a,(Uvd(),Rvd),b)} -function lwd(a,b){if(!cwd){return}pwd(a,(Uvd(),Svd),b)} -function Ewd(a,b){var c;c=console[a];c.call(console,b)} -function wwd(a,b){var c;c=a.slice(0,b);return wuc(c,a)} -function Czb(a,b,c){wyb.call(this,b);this.c=c;this.b=a} -function T2b(a,b,c,d){S2b.call(this,a,b,c);xTb(this,d)} -function sgb(a,b,c){this.b=a;Ffb.call(this,b);this.a=c} -function sNd(a){!!this.k&&this.k.og(a);bH(this,this.a)} -function sud(){this.a=new vud;this.c=new vud;rud(this)} -function kic(a){$wnd.setTimeout(function(){throw a},0)} -function Wlc(){Slc.call(this,'TABLE_HEADER_GROUP',10)} -function Xlc(){Slc.call(this,'TABLE_FOOTER_GROUP',11)} -function iu(a,b){Ot();Ut.call(this,b);this.a=a;Rt(this)} -function vA(a,b){this.b=a;this.a=new Cy(b);Wx(this.a,a)} -function HA(){this.a=new LA;this.b=new NA;this.c=new MA} -function Lk(a){Kk();return Jk.hasOwnProperty(a)?Jk[a]:a} -function jK(a,b,c,d){return !a?null:bK(new hK(a,b,c),d)} -function qt(a,b){return jvc(a)?a.od(b):(a.push(b),true)} -function AV(a,b){return BV(a,new jX((HU(),AU),false),b)} -function Ad(a){return pvc((qmd(),pmd))===pvc(a.fb(Gyd))} -function yd(a){return pvc((qmd(),pmd))===pvc(a.fb(Byd))} -function zd(a){return pvc((qmd(),pmd))===pvc(a.fb(Fyd))} -function l0(a){return new q0(a.c,a.o,false,B0(a.d,a.j))} -function e0(a){return new G$(new vT(true,5,true,gCd),a)} -function UX(a,b){return kH(Bac(b,new qad(0,0),a.e),a.f)} -function Id(a,b){a.c==b?Od(a,Md(a,a.c)):Od(a,Rd(a.c,b))} -function De(a,b){b!=null&&(1&wl(a.a).a)>0!=b&&a.a.dd(b)} -function P4(a,b,c){var d;d=Eqd(a.a,mnd(b));!!d&&d.km(c)} -function ckb(a,b,c,d,e,f){nkb(a,b,new sob(c,d,e,a.f,f))} -function D1(a,b,c,d,e,f){E1.call(this,a,b,c,d,e,true,f)} -function cpb(a,b,c,d,e){kob.call(this,a,b,c,d);this.a=e} -function UV(a,b,c,d,e){this.b=a;this.a=TV(this,b,c,d,e)} -function aQ(a){this.d=a;this.a=UP(this);this.b=VP(this)} -function NL(){this.a=new QL;this.b=new QL;this.c=this.a} -function Pwb(a){if(a){this.a=a;this.b=new Am;Mwb(this)}} -function JPb(a,b,c,d){this.b=a;this.a=b;this.c=nLb(c,d)} -function Zyb(a,b){wyb.call(this,b);this.a=null;this.b=a} -function S3b(a,b,c){R3b.call(this,null,a,b);xTb(this,c)} -function urb(a){trb.call(this,new Agb(O7b(new Q7b(a))))} -function Qkb(a,b){Tkb(a);a.a=new jub(b,Zkb(a.d));Rkb(a)} -function nDb(a,b){if(b!=a.e){a.e=b;!!a.b&&PCb(a.b,a.e)}} -function BTb(a,b){a.b=new gs(b);!!a.A&&SVb(a.A,new u7b)} -function A8b(a,b,c){B8b(a,b,c)&&!!a.d&&SVb(a.d,new u7b)} -function tqb(a,b){yQ(a.a.f.f,oqb(a.a,b));a.a.f.i.w.Hf()} -function T9b(a){return new hbc(a.c,a.d,a.a-a.c,a.b-a.d)} -function dbc(a){return new qad(a.b.a+a.c/2,a.b.b+a.a/2)} -function Ckc(a){return (ujc(),a).createElement('label')} -function Okc(a){return (ujc(),a).createElement('table')} -function Lkc(a){return (ujc(),a).createElement('tbody')} -function RH(a){if(a==(s6b(),m6b)){return h6b}return m6b} -function lcb(a){if(a!=null){return Xmd(a,10)}return dyd} -function Iud(a){if(a==null){throw I8c(new tnd)}return a} -function puc(a){if(a==null){throw I8c(new tnd)}this.a=a} -function Pwd(a,b){if(!a){throw I8c(new bnd((Cnd(),b)))}} -function lvd(a,b){var c;c=new zvd;nvd(a,b,c);return c.d} -function eoc(a,b){var c;c=coc(b);Lic(doc(a),c);return c} -function hq(a){!a.o&&(a.o=jm(oq(new nq(a))));return a.o} -function qNd(a){this.c&&!a.d&&Ry(this.o.i.A);RK(this,a)} -function Xac(a){a?(this.a=a):(this.a=(Xrd(),Xrd(),Wrd))} -function Dgd(a){xgd();Cgd.call(this,(Z9c(),new U9c(a)))} -function Ih(a,b){pg(a.b,new gh(b),_pc?_pc:(_pc=new Ioc))} -function Pn(a){pg(a,new On(a),(!Vpc&&(Vpc=new Ioc),Vpc))} -function Npc(){Npc=p9c;Mpc=new Joc('touchmove',new Opc)} -function Xnc(){Xnc=p9c;Unc=[];Vnc=[];Wnc=[];Snc=new _nc} -function End(a,b){var c,d;c=a;d=b;return c==d?0:c0)&&Ml(a)} -function Dy(a,b){return lsd(dsd(a.r),b)||lsd(dsd(a.s),b)} -function COd(a){return Snd(fc(a),'_',' ').toLowerCase()} -function cod(a){return String.fromCharCode.apply(null,a)} -function ws(a,b,c){return typeof a[b]!==undefined?a[b]:c} -function UE(a,b,c,d){this.c=a;this.a=b;this.d=c;this.b=d} -function zF(a,b,c,d){this.c=a;this.d=b;this.a=c;this.b=d} -function hf(a,b,c,d){this.c=a;this.d=b;this.b=c;this.a=d} -function BT(a,b,c,d){this.d=a;this.c=b;this.b=c;this.a=d} -function LS(a,b,c,d){this.b=a;this.c=d;this.d=b;this.a=c} -function IX(a,b,c,d){this.c=c;this.d=d;this.b=a;this.a=b} -function RX(a,b,c,d){this.b=a;this.d=b;this.a=c;this.c=d} -function WZ(a,b,c,d){this.d=b;this.b=a;this.c=c;this.a=d} -function P$(a,b,c,d){this.a=a;this.b=b;this.c=d;this.d=c} -function $$(a,b,c,d){this.a=a;this.b=d;this.c=b;this.d=c} -function nV(a,b,c,d){this.a=c;this.b=d;lV.call(this,a,b)} -function oV(a,b,c,d){this.b=c;this.a=d;lV.call(this,a,b)} -function lr(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function OT(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function rR(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} -function Y5(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} -function Xcb(a){Ucb();Ycb.call(this,a,(Xrd(),Xrd(),Urd))} -function Vlb(a){rlb();Ulb.call(this,new Dmb(a,null),qlb)} -function CWb(a,b){if(a.e==b){return}a.e=b;SVb(a,new u7b)} -function uVb(a,b){if(!b){return}HVb(a,dsd(a.n).b.vd(),b)} -function XBb(a,b){return new utd(b!=(Kbc(),Jbc)?b.b:a.d)} -function Hqb(a,b){a.a=b;ud(a,Gyd,(qmd(),a.a?true:false))} -function oXb(a,b){a.f=b>0.95?0.95:b<-0.95?-0.95:b;vTb(a)} -function kQ(a,b){jQ(a,new Y8b(''),new nQ(a.o.i,a.o.f,b))} -function L5b(a,b){return kvc(b,63)?jVb(a.a,b):jVb(a.b,b)} -function Q3b(a){R3b.call(this,a,(O1b(),M1b),(s6b(),m6b))} -function Y_b(){Y_b=p9c;X_b=new ltd;Z_b(W_b());Z_b(n_b())} -function MWb(){var a;a=new IWb;BWb(a,new hu(a));return a} -function S0b(a){var b;b=new gs(a.a.a);Wr(b,a.b);return b} -function Z7b(a){this.b=new gs(a);this.a=new es;W7b(this)} -function tfb(){this.b=new es;this.c=new es;this.a=new es} -function Sz(){this.b=new Tz((iU(),fU));this.c=new Tz(hU)} -function Lrc(a){krc();this.b=new es;this.a=a;yrc(this,a)} -function Med(a,b){tdc(a);gg(b.a,b.c);b.c&&b.a.O.Ab(true)} -function zid(a,b){a.c=b.b;Aid(a,a.c);a.d.d.Vb();kqc(a,b)} -function Jed(a){Ied.call(this,(Ved(),Ted),(Ued(),Sed),a)} -function qkd(){this.f=this.vc();this.b=(abd(),wkc($doc))} -function Ekc(a){return (ujc(),tjc).tn(a,dKd,false,false)} -function Akc(a){return (ujc(),a).createElement('iframe')} -function Dkc(a){return (ujc(),a).createElement('legend')} -function Ikc(a){return (ujc(),a).createElement('select')} -function Eqd(a,b){return ovc(b)?Fqd(a,b):Bqd(ztd(a.d,b))} -function Rsd(a,b){return etd(a.a,b)?Ssd(a,b.k,null):null} -function k1b(a){i1b();return a>0&&a<=126?h1b[a-1].c:null} -function n1b(a){i1b();return a>0&&a<=126&&h1b[a-1].a==0} -function sj(a){if(a.a){return}a.a=true;wic((pic(),oic),a)} -function hid(a){if(kvc(a.a,1010)){return a.a}return null} -function AUb(a){if(a!=(s6b(),h6b)){return h6b}return q6b} -function Wod(a){var b;b=a.a[0];return a.e>0||b==EId?b:-b} -function dqd(a,b){hqd(a.a,a.a,a.d,b.a,b.d);Qod(a);a.b=-2} -function fmd(a,b,c,d){a.a=Xnd(a.a,0,b)+(''+d)+Ynd(a.a,c)} -function Aw(a,b){a.o=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Bw(a,b){a.p=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Cw(a,b){a.q=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Ew(a,b){a.r=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Fw(a,b){a.s=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Hw(a,b){a.j=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Iw(a,b){a.k=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Kw(a,b){a.n=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Lw(a,b){a.t=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function Mw(a,b){a.u=b;!!a.f&&cJb(a.f.a.i,(Lz(),Iz),true)} -function cz(a,b){if(a.b!=b){a.b=b;a.b||vqc(a.a,new eF,a)}} -function DB(a){if(a.b){!a.d&&(a.d=vE(a.c.C,a.a));yB(a.d)}} -function Drd(a){this.d=a;this.a=this.d.b;this.b=this.d.c} -function Re(a){this.b=a;this.d=new Ve(this);this.a=new Ue} -function WF(a){a.a=null;QF(a);a.c=null;bG(a);return false} -function LL(a){if(a.c==a.a){return oL(),mL}return oL(),nL} -function p7(a){if(a==2){return X1b(),T1b}return X1b(),U1b} -function KB(a,b){HB();return new JB(new o0b(null,a),b,FB)} -function wJ(a,b,c){return new vJ(a,c,Bs(tJ(b),new gJ(b)))} -function Ju(a,b){return nqc(a.o,(!Xt&&(Xt=new Ioc),Xt),b)} -function pr(a,b){return !Zrd(a,b)&&!a.b.rd(b)&&!b.b.rd(a)} -function $N(a){return a.a!=null&&ZN((Swd(a.a!=null),a.a))} -function m$(a,b){g$();n$.call(this,a,b,(Xrd(),Xrd(),Urd))} -function dY(a,b,c,d,e,f){PX.call(this,a,b,d,e,f);this.a=c} -function Heb(a,b,c,d){gc.call(this,a,b);this.b=d;this.a=c} -function vab(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function yjb(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} -function gnb(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} -function Gnb(a,b,c,d){this.b=a;this.a=b;this.c=c;this.d=d} -function v4(a,b,c){gc.call(this,a,b);this.a=new RegExp(c)} -function hpb(a,b,c){job.call(this,jAd,a,b);ud(this,Dyd,c)} -function mcb(a,b,c){c!=null&&!Hnd(c,'0')&&Wr(a.a,b+'='+c)} -function Vmb(a,b){return b!=null&&kvc(b,395)&&nt(a.a,b.a)} -function gzb(a,b){return !!a&&!!b&&a.a.c==b.vd()&&Nr(a,b)} -function EFb(a){return gJb(a.a,uFb(a.b.d).d,a.d,KFb(a.b))} -function mjb(a){var b;return b=new Xjb,a.Tm(b),s9c(b.c.b)} -function Ovb(a){var b;b=new DD(a.a.i,a.a.i.A);yQ(a.a.f,b)} -function Kwb(a,b){Iwb(a,new red('Build Date'),new red(b))} -function QNb(a){PNb.call(this,new dOb(new Kt),new iQb(a))} -function Tob(a,b,c,d){return new cpb(a,b,c,new sO(c,d),d)} -function Wxb(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function uUb(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function q$b(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function STb(a,b,c,d){gc.call(this,a,b);this.b=d;this.a=c} -function v0b(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} -function w1b(a,b,c,d){gc.call(this,a,b);this.a=d;this.b=c} -function G4b(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} -function R8b(a,b,c,d){gc.call(this,a,b);this.a=c;this.b=d} -function h9b(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function OGb(a,b,c,d){this.a=a;this.d=b;this.b=c;this.c=d} -function XKb(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} -function hGb(a,b,c,d){this.d=a;this.b=d;this.c=c;this.a=b} -function F9c(a,b,c,d){this.b=a;this.a=d;this.d=c;this.c=b} -function mcc(a,b,c,d){gc.call(this,a,b);this.b=c;this.a=d} -function Idd(a){ol();Hdd.call(this);jjc((abd(),this.U),a)} -function $dd(a,b,c,d){this.b=c;this.a=d;this.e=a;this.c=b} -function wgb(a){this.a=a;this.b='http://www.chemaxon.com'} -function iOb(){this.a=(krc(),Mrc(Msc((Lsc(),Lsc(),Ksc))))} -function ned(a){_f(this,(abd(),a));this.a=new Aed(this.U)} -function $ld(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} -function _ld(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} -function amd(a,b,c,d){this.a=a;this.d=b;this.c=c;this.b=d} -function vfd(a,b){var c;c=a.rows[b];return c.cells.length} -function wcc(a,b){var c;c=new vcc(a,b);Wr(scc,c);return c} -function Aac(a,b){return new qad((a.a+b.a)/2,(a.b+b.b)/2)} -function Hqd(a,b,c){return ovc(b)?Iqd(a,b,c):Atd(a.d,b,c)} -function Kqd(a,b){return b==null?Btd(a.d,null):Ptd(a.e,b)} -function Gud(a,b){return pvc(a)===pvc(b)||a!=null&&T(a,b)} -function kbd(a){abd();!!_ad&&a==_ad&&(_ad=null);$ad.fo(a)} -function Lc(a){if(a.o){a.e!==pyd&&a.bb();a.k=null}return a} -function Jbb(a){if(a.b.a.length!=0){return a.b}return a.a} -function Alb(a){if(!Q0((P0(),O0))){return null}return a.i} -function Exd(a,b){var c;c=Eqd(a.b,b);return c?c.Xj():null} -function Te(a){var b;b=a.b;a.b=new es;a.a=new std;return b} -function dc(a){var b;b=new cc;b.b=(nc(),kc);b.a=a;return b} -function Bg(a){var b;b=a.Qb();while(b.Rc()){b.Sc();b.Tc()}} -function bwd(a,b){this.a=a;this.b=b;Dod();P8c(Date.now())} -function UN(a,b,c){this.d=a;this.b=b;this.c=c;this.a=WN(b)} -function ND(a,b){this.a=new ltd;this.c=b;this.b=a;LD(this)} -function Od(a,b){if(a.c==b){return}a.c=b;vqc(a.b,new Ci,a)} -function Vjb(a,b){if(b.length==0){return}Wjb(a);gbb(a.d,b)} -function Lgb(a,b,c){Hqd(a.b,b,mnd(a.a.a.length));Xr(a.a,c)} -function xk(a,b){return Mvd(a.a,b)||b.length>=a.b&&yk(a,b)} -function Lf(a,b){return ((a.__capturedEventBits||0)&b)!==0} -function Blb(a,b){return {importFormats:a,exportFormats:b}} -function JBb(a,b){return !!a&&!!b&&a.vd()==b.vd()&&a.rd(b)} -function lkb(a,b,c,d,e){return new Bob(new yub(a),b,d,e,c)} -function j1b(a,b,c,d,e,f,g){h1b[a-1]=new s1b(b,c,d,e,f,g)} -function KS(a,b,c){uX(new vX(a.b,a.d,c,a.c,$S(a.b),a.a),b)} -function sFb(a,b){return nqc(a.b,(!Xt&&(Xt=new Ioc),Xt),b)} -function yJb(a,b){return aa.a.i.c-2){throw I8c(new kmd)}} -function jh(a,b){if(a.d.a.vd()==0){return}$g(a.c,b);sh(a.b)} -function Se(a,b){if(qtd(a.a,b)){return}Wr(a.b,b);ptd(a.a,b)} -function Nb(a,b,c){if(b==0&&c==0){return dc(-a)}return ec()} -function Nxd(a,b,c,d){var e=b.apply(a,d);return [c?c(e):e]} -function Cld(a){old();var b=a.nodeType;return b==null?-1:b} -function oid(){oid=p9c;lid=new tid;mid=new ltd;nid=new std} -function Xrd(){Xrd=p9c;Urd=new esd;Vrd=new isd;Wrd=new jsd} -function Aud(){Aud=p9c;xud=new Bud;yud=new Cud;zud=new Dud} -function Uvd(){Uvd=p9c;Rvd=new Vvd;Svd=new Wvd;Tvd=new Xvd} -function exd(){if(_wd==256){$wd=axd;axd=new S;_wd=0}++_wd} -function ko(a){wic((pic(),oic),(!a.p&&(a.p=new Ko(a)),a.p))} -function PP(a,b,c){nP.call(this,a,b,c);this.a=new vv(a.i.r)} -function sI(a,b){fD(a.a,dsd(a.b.o.i.C.n));hD(a.a,new JF(b))} -function PB(a){return dsd(a.a.f).b.vd()-dsd(a.a.a.a).b.vd()} -function NF(a){return vuc(quc(T1c,1),tBd,5,0,[a.a,a.b,a.c])} -function gX(){dX();return vuc(quc(RFc,1),nyd,549,0,[cX,bX])} -function gQ(){eQ();return vuc(quc(EEc,1),nyd,569,0,[cQ,dQ])} -function qL(){oL();return vuc(quc(tDc,1),nyd,541,0,[nL,mL])} -function it(){gt();return vuc(quc(mzc,1),nyd,484,0,[ft,et])} -function i3(){g3();return vuc(quc(CHc,1),nyd,477,0,[e3,f3])} -function Z5(){X5();return vuc(quc(fIc,1),nyd,459,0,[W5,V5])} -function o2(){l2();return vuc(quc(yHc,1),pDd,349,0,[k2,j2])} -function hZ(a,b,c,d){HHb(a,d,vuc(quc(T1c,1),tBd,5,0,[b,c]))} -function H6(a,b,c,d){var e;for(e=0;e=0&&Hnd(a.substr(c,b.length),b)} -function Ykd(a){return Xnd(a,0,$wnd.Math.min(a.length,128))} -function Obd(a){return $wnd.decodeURI(a.replace('%23','#'))} -function hu(a){this.a=new iu(a,vuc(quc(Czc,1),lyd,462,0,[]))} -function Jf(){this.a=new std;ptd(this.a,Yyd);ptd(this.a,Zyd)} -function eL(a){return !a.a.sd()&&msd(dsd(Ey(a.a.zd(0)).r),a)} -function VG(a,b){Ry(Lu(a.o.i).b);!!b&&dx(Mu(a.o.i),b);a.pg()} -function Pfd(a,b){(a.a.oo(0,b),abd(),Jfd(a.a.c,0,b))[sLd]=2} -function wod(a,b,c){a.a=Xnd(a.a,0,b)+''+Ynd(a.a,c);return a} -function St(a,b){var c;c=Xtd(a.c,b);if(c){return c}return Nt} -function lgb(a,b){var c;c=Pib(a.c,PEd);eld(c,NEd,b);return c} -function Qc(a,b){var c;c=Jmd(a.Fp);return b==null?c:c+': '+b} -function Uxd(a,b,c,d,e,f){Sxd();return Axd(Rxd,a,b,c,d,e,f)} -function Jvb(a,b){if(Sx(a.a.a.a.i.A)){return}dwb(b,Uvb(a.a))} -function ZF(a,b){if(!b||b.a.length!=2){a.d=null;return}a.d=b} -function yS(a,b){if(a){return b?', '+AS(a):AS(a)}return null} -function F8(a){if(Cqd(a,(kcc(),gcc))){return '*'}return null} -function KBb(a,b){if(a.a.c){return !b}return JBb(b,nCb(a.a))} -function ABb(a,b){zBb(a,false);Cic((pic(),new IBb(a,b)),200)} -function dKb(a,b){return Hqc(a.a,(!Xt&&(Xt=new Ioc),Xt),a,b)} -function Ynb(a,b){return Fqd(a.a,(b.j!=null?b.j:''+b.k)+hHd)} -function tpb(a,b){return a.a?new qqb(b,a.a,false):new Gqb(b)} -function k0(a,b){D0(a.i,new q0(a.c,a.o,false,B0(a.d,a.j)),b)} -function HRb(a,b){a.a.a=suc(_5c,lyd,1,0,5,1);FRb(a);DRb(a,b)} -function kUb(){var a;a=jUb((WZb(),GXb).a);a.gm('*');return a} -function cg(a){(abd(),a.U).style[ezd]=fzd;a.U.style[czd]=fzd} -function xCb(a){return Rf(a.b).selectedIndex==a.a.a.length-1} -function GPb(a,b,c,d){return {north:a,south:b,west:c,east:d}} -function LOb(a){DOb();return a!=null?(Iud(a),new JOb(a)):BOb} -function E0b(){E0b=p9c;C0b=new G0b(2,'D');D0b=new G0b(3,'T')} -function Uqd(a){var b;a.c=a.a;b=a.a.Sc();a.b=Tqd(a);return b} -function uhd(a,b){var c;c=a.b-b.b;c==0&&(c=b.a-a.a);return c} -function zsd(a,b){var c;for(c=0;c=a.a.i.c-2){throw I8c(new kmd)}} -function Jud(a,b){if(a==null){throw I8c(new und(b))}return a} -function J9c(a){if(a==null){throw I8c(new und(bLd))}this.a=a} -function G9c(a){if(a==null){throw I8c(new und(bLd))}this.a=a} -function Jd(a,b){pvc((qmd(),pmd))===pvc(b.a.fb(Byd))&&Od(a,b)} -function Kfd(a,b,c){qfd(a.a,b,c);return abd(),Jfd(a.a.c,b,c)} -function vn(a){tn(a);if(!a.b){return}efd(a.d.c,a.f);a.b=false} -function _s(a){var b;if(!a.a){return}b=a.a;a.a=null;b.tb(a.c)} -function at(a,b){if(a.b==(gt(),et)){return}a.c=b;a.b=et;_s(a)} -function BL(a,b){Ry(Lu(a.o.i).b);cx(Mu(a.o.i),b);a.o.i.w.Hf()} -function pOd(){dx(Mu(this.a.c.i),jw(this.a.c.i,this.b.Lh()))} -function cE(a,b,c){this.d=a;this.b=b;this.a=c;this.c=aE(this)} -function QT(a,b,c){this.b=a;this.c=b;this.d=c;this.a=new ltd} -function _O(a,b){dH.call(this,a);this.f=b;this.e=new cP(this)} -function zN(a,b,c){this.b=new wN(b);this.a=new wN(c);this.c=a} -function jm(a){var b,c;b=new hm(a);c=km(b.a);im(c,a);return c} -function s0(a){var b;b=new r0(a.b,a.d,a.c);m0(b,a.c);return b} -function HN(a){var b;b=LN(a);if(b){return Ey(b)}return new By} -function o8(a,b){var c;c=b.o;if(c){return c}return Eqd(a.i,b)} -function TP(a){var b;b=MWb();wVb(b,a.d);return new aQ(PVb(b))} -function ztd(a,b){return xtd(a,b,ytd(a,b==null?0:a.b.tp(b)))} -function fvb(a,b){return og(b,new mvb(a,b),(yoc(),yoc(),xoc))} -function CX(a,b,c,d,e){return e?new BX(a,b,Tu(c),d):(xX(),wX)} -function Fnd(a,b){return End(a.toLowerCase(),b.toLowerCase())} -function xxb(a,b){return b<0||b>a.b.a.length-1?null:Yr(a.b,b)} -function Lcb(a){return !!a.a&&Mqd(a.a)!=0||!!a.b&&Mqd(a.b)!=0} -function cHb(a,b,c){IEb(a.e,b);!!a.a&&Ugd(a.a,_Gb(c));Lg(a.b)} -function zwb(a,b){oed(a.d,b.b);oed(a.c,b.c);oed(a.a,vwb(b.a))} -function dFb(a,b){rm(a.b,false);yQ(a.a.a.f,new ND(a.a.a.i,b))} -function oSb(a,b,c){bcb(b,'abbreviations',new cSb(a.a,a.b,c))} -function yXb(a,b,c){return new pXb(new hUb(b),new iUb(c),a.a)} -function zXb(a,b,c){return new pXb(new hUb(b),new zUb(c),a.a)} -function BXb(a,b,c){return new pXb(new yUb(b),new zUb(c),a.a)} -function AXb(a,b,c){return new pXb(new yUb(b),new iUb(c),a.a)} -function Oqc(a){if(!a.d){return}Mqc(a);a.a.ql(a,new crc(a.b))} -function PAb(a,b){if(a.b.c&&b==null){return false}return true} -function MZ(a,b){a.j=null;b>0&&(a.j=(Cnd(),''+b));return null} -function ZZ(a,b,c){b.yf(dbc(a.d),a.d.c*0.5,a.d.a*0.5,false,c)} -function Ldb(a,b,c){msd(b,dsd(a.r))&&(c.a[c.a.length]=a,true)} -function a7b(a,b,c){this.a=Z6b(b,c);this.b=$wnd.Math.max(a,0)} -function R3b(a,b,c){this.a=a;this.c=b;this.d=null;yTb(this,c)} -function cGb(a,b){HEb(a.a.a,Fxb(vuc(quc(g6c,1),eyd,2,6,[b])))} -function Ofd(a,b,c){(a.a.oo(b,0),abd(),Jfd(a.a.c,b,0))[Czd]=c} -function ljd(a){gjd.call(this,a);(abd(),this.U).className=rId} -function AOd(a){return qmd(),a.i&&(s6b(),h6b)==a.o?true:false} -function qvc(a){return Math.max(Math.min(a,dyd),-2147483648)|0} -function Bk(a){return a.key||String.fromCharCode(a.keyCode|0)} -function dsd(a){Xrd();return kvc(a,291)?new Dsd(a):new vsd(a)} -function tcd(){rcd();if(!qcd){gdd(pcd);$bd(new ucd);qcd=true}} -function $nc(){Xnc();if(!Tnc){Tnc=true;xic((pic(),oic),Snc)}} -function bc(a){if(a.b!=(nc(),kc)){throw I8c(new Zc)}return a.a} -function r9c(a){function b(){} -;b.prototype=a||{};return new b} -function Rmd(a){if(a.jp()){return null}var b=a.o;return l9c[b]} -function $l(a){if(!a.b.Uc()){return}a.a=a.b.Uc().cb(new fm(a))} -function bud(a){var b;b=a.c.b.b;a.b=b;a.a=a.c.b;b.a=a.c.b.b=a} -function Vk(a,b){var c;if(a.c){return}c=new al;kl(b,c);a.c=c.a} -function Qo(a,b){var c;c=Ro(a);abd();Lic(a.c,lbd(c));oo(a,b,c)} -function Yd(a,b){a.a=b;Xd(a);Ud(a);!!a.a&&sd(a,null,null,null)} -function Vc(a,b){Jc(this);this.f=b;this.i=a;Lc(this);this.bb()} -function Xc(a){Vc.call(this,'Error in valence calculation.',a)} -function tw(a){!!a.a.d&&!a.a.d.sd()&&sw(a);uw(a,a.a.C);Wv(a.a)} -function pkd(b,a){b.f.contentWindow.document.body.innerHTML=a} -function Ckd(b,c,d){try{b.setSelectionRange(c,c+d)}catch(a){}} -function RB(a,b,c){this.a=a;this.c=b;this.b=c;this.d=c?a.c:a.a} -function Ir(){this.a=vuc(quc(_5c,1),lyd,1,5,[]);this.b=new ltd} -function pn(){nn();return vuc(quc(hyc,1),nyd,316,0,[kn,mn,ln])} -function eu(){cu();return vuc(quc(Dzc,1),nyd,351,0,[bu,_t,au])} -function $E(){YE();return vuc(quc(_Bc,1),nyd,451,0,[VE,WE,XE])} -function zj(){xj();return vuc(quc(lxc,1),nyd,429,0,[vj,uj,wj])} -function zR(){wR();return vuc(quc(UEc,1),nyd,416,0,[vR,uR,tR])} -function fR(){cR();return vuc(quc(SEc,1),nyd,415,0,[aR,_Q,bR])} -function fv(){dv();return vuc(quc(Vzc,1),nyd,437,0,[cv,av,bv])} -function kU(){iU();return vuc(quc(tFc,1),nyd,414,0,[fU,gU,hU])} -function x4(){u4();return vuc(quc(PHc,1),nyd,380,0,[r4,s4,t4])} -function Oab(){Oab=p9c;Nab=vuc(quc(g6c,1),eyd,2,6,['cml',UDd])} -function Vjd(){Vjd=p9c;Tjd=D8c();Ujd=kvc(Tjd,500)?new Xjd:Tjd} -function dX(){dX=p9c;cX=new fX('TOP',0,0);bX=new fX(FBd,1,0.5)} -function eB(a,b,c){var d;return iB(a,b,(d=new By,vx(d,c),d),c)} -function kB(a,b,c){var d;return iB(a,b,(d=new By,zx(d,c),d),c)} -function FV(a,b,c,d,e){return new kV(a,sV(a,lbc(b,c),d),b,d,e)} -function heb(a,b){var c;return c=kld(a.So(),b),c?Dld(c.a):null} -function Qnb(a,b){var c;c=hub(a.c.a,b);if(!c){return}Zn(a.a,c)} -function Fob(a,b){return !!b&&Gob(a,dsd(b.r))||Gob(a,dsd(b.s))} -function Hpb(a){return new zpb(a,'Flip vertically',new Mpb(a))} -function hlb(a){if(!glb){glb=true;Sxd();z0b(Rxd,OLc,a);ilb(a)}} -function mlb(a){if(!llb){llb=true;Sxd();z0b(Rxd,QLc,a);nlb(a)}} -function Pmb(a){if(!Omb){Omb=true;Sxd();z0b(Rxd,xMc,a);Qmb(a)}} -function Wmb(a){if(!Umb){Umb=true;Sxd();z0b(Rxd,mMc,a);Xmb(a)}} -function gP(a){if(!a.k){a.k=TP(a.j);a.i=new YT(a.k)}return a.k} -function yOb(a){!a.settings&&(a.settings={});return a.settings} -function Sfb(a,b){this.c=b;this.a=a;this.b=Ix(a);this.d=this.b} -function PU(a){this.f=a.b.a;this.i=a.b.b;this.e=a.c;this.d=a.a} -function Pic(a){while(a.lastChild){a.removeChild(a.lastChild)}} -function Keb(a,b){if(hs(a.a,b)==-1){Wr(a.a,b);T0b(b);b.p=null}} -function B6b(a,b){if(!!a&&!!b){return new A6b(a,b)}return null} -function gBb(a,b,c){return b!=null?new uCb(a,b,c):new tCb(a,c)} -function Egc(e,a,b,c,d){return e.createLinearGradient(a,b,c,d)} -function JVb(a,b,c,d){var e;e=new S2b(b,c,d);vVb(a,e);return e} -function Eub(a){var b;b=new is;Aub(b);Cub(a,b);Bub(b);return b} -function Kid(a){var b;b=a.i;if(b){return Zr(a.f,b,0)}return -1} -function xjc(a,b){var c;c=a.Gn(b);return c?c:b.documentElement} -function tdd(a,b){var c;c=vo(a,b);c&&wdd((abd(),b.U));return c} -function nhd(a,b){b=ohd(a,b);b=Snd(b,'\\s+',' ');return bod(b)} -function urd(a,b){if(ord(a,b)){Crd(a);return true}return false} -function Qmd(a,b){var c=a.a=a.a||[];return c[b]||(c[b]=a.fp(b))} -function Pcd(a){var b;b=(ujc(),tjc).yn(a);b[kLd]=a.type;Ocd(a)} -function jdd(){return Yxd(function(){rcd();qcd&&scd(new xcd)})} -function Fqd(a,b){return b==null?Bqd(ztd(a.d,null)):Ntd(a.e,b)} -function An(a){return $ic((abd(),a.U),$yd)-(a.U.clientHeight|0)} -function hud(a){Swd(a.b!=a.c.a.b);a.a=a.b;a.b=a.b.a;return a.a} -function pt(c,a){for(var b=0;b0){return true}return false} -function Vh(a){Wf(a.a)&&(a.a.d.d.M?Yf(a.a.a,Jzd):Of(a.a.a,Jzd))} -function SK(a){a.c=false;a.e=null;Ry(Lu(a.o.i).b);a.d.Kg(null)} -function lI(a){a.c=null;a.b=null;ex(Mu(a.o.i),a.a);a.o.i.w.Hf()} -function vLb(a,b,c,d){this.a=new JPb(c,(C1(),m1),a,d);this.b=b} -function sS(a,b,c,d){this.a=a;this.c=b;this.d=d1b(c.n);this.e=d} -function mB(a,b){this.a=a;this.b=b;this.c=a.a?a.a.a:(vXb(),uXb)} -function tkb(a){this.c=a.b.a;this.d=a.b.b;this.b=a.c;this.a=a.a} -function Mn(){this.c=new Mid;this.d=this.hd();mm(this.d,this.c)} -function eid(){ol();Ol.call(this);(abd(),this.U).className=yLd} -function WPb(a){TPb();XPb.call(this,a,(Tqc(),Sqc),(bQb(),_Pb))} -function rob(a,b,c,d){kob.call(this,a,b,c,new MH(c,d));this.a=d} -function Tpb(a,b,c,d){kob.call(this,a,b,c,new PK(c,d));this.a=d} -function Fpb(a,b,c){return $B(new _B(a.i),b,new zF(c.a,0,-1,1))} -function Gpb(a,b,c){return $B(new _B(a.i),b,new zF(0,c.b,1,-1))} -function jBb(a,b){return !b?new tCb(a,null):new uCb(a,b.a,null)} -function vB(a,b){return new AB(b,ds(a.a,suc(PEc,ABd,38,0,0,1)))} -function Ejb(){Cjb();return vuc(quc(pLc,1),nyd,366,0,[Ajb,Bjb])} -function OKb(){MKb();return vuc(quc(pTc,1),nyd,486,0,[LKb,KKb])} -function QIb(){MIb();return vuc(quc(TSc,1),nyd,304,0,[LIb,KIb])} -function dQb(){bQb();return vuc(quc(MUc,1),nyd,474,0,[_Pb,aQb])} -function Xxb(){Vxb();return vuc(quc(qPc,1),nyd,547,0,[Uxb,Txb])} -function Gwb(){Ewb();return vuc(quc(VOc,1),nyd,546,0,[Cwb,Dwb])} -function BPb(a,b,c){return {items:a,defaultItem:b,isFloating:c}} -function igb(a,b,c){var d;d=new es;d.a[d.a.length]=b;jgb(a,d,c)} -function TEb(a,b){var c;c=Mkc($doc);c.appendChild(b);Lic(a.a,c)} -function iVb(a,b){var c;c=Zr(a.b,b,0);return c>=0?c:Zr(a.a,b,0)} -function H$b(a){var b;b=new is;I$b(a,b);return Xrd(),new Dsd(b)} -function gkb(a){var b;b=new Zj;pkb(a,b,new ard(a.a.a));return b} -function mPb(a){qJd in a&&!(eJd in a)&&(a[eJd]=a[qJd]);return a} -function X9b(a){return new W9b(a.b.a,a.b.b,a.b.a+a.c,a.b.b+a.a)} -function rVb(a){a.b=new Cqc;a.c=new XUb;a.i=new std;a.f=new ltd} -function Xpc(a,b){var c;if(Vpc){c=new Wpc(b);!!a.R&&oqc(a.R,c)}} -function ix(a,b){var c;c=!a.a?!!b:a.a!=b;if(c){a.a=b;Pv(a.c.c)}} -function Qhc(a,b){var c=Phc[a.charCodeAt(0)];return c==null?a:c} -function Gab(a,b){if(b==null){return ''}return ' '+a+'='+Hab(b)} -function $bd(a){Zbd();bcd();return _bd(_pc?_pc:(_pc=new Ioc),a)} -function f7b(){d7b();return vuc(quc(_Xc,1),nyd,570,0,[c7b,b7b])} -function x0b(){t0b();return vuc(quc(_Wc,1),nyd,508,0,[r0b,s0b])} -function x1b(){v1b();return vuc(quc(iXc,1),nyd,503,0,[t1b,u1b])} -function Q1b(){O1b();return vuc(quc(nXc,1),nyd,501,0,[M1b,N1b])} -function X8b(){V8b();return vuc(quc(AYc,1),nyd,502,0,[U8b,T8b])} -function Iqd(a,b,c){return b==null?Atd(a.d,null,c):Otd(a.e,b,c)} -function Mfd(a,b,c,d){a.a.oo(b,c);Jfd(a.a.c,b,c).style[JAd]=d.a} -function X0b(a,b,c,d){V0b.call(this,new nUb(a),b,c);xTb(this,d)} -function otd(a){this.d=new Ctd(this);this.e=new Qtd;yqd(this,a)} -function tp(){vp((xp(),up));this.a=new zo;Of(this.a,'mjs-obf-B')} -function Cn(a,b){(abd(),a.U).style['maxHeight']=(Cnd(),''+b+dzd)} -function ytd(a,b){var c;c=a.a.get(b);return c==null?new Array:c} -function rx(a,b){if(hs(a.u,b)==-1){return Wr(a.u,b)}return false} -function lx(a,b){if(hs(a.q,b)==-1){return Wr(a.q,b)}return false} -function mx(a,b){if(hs(a.r,b)==-1){return Wr(a.r,b)}return false} -function nx(a,b){if(hs(a.s,b)==-1){return Wr(a.s,b)}return false} -function px(a,b){if(hs(a.C,b)==-1){return Wr(a.C,b)}return false} -function sx(a,b){if(hs(a.w,b)==-1){return Wr(a.w,b)}return false} -function tx(a,b){if(hs(a.A,b)==-1){return Wr(a.A,b)}return false} -function ux(a,b){if(hs(a.B,b)==-1){return Wr(a.B,b)}return false} -function Rqd(a,b){if(kvc(b,185)){return wqd(a.a,b)}return false} -function xod(a,b,c){a.a=Xnd(a.a,0,b)+(''+c)+Ynd(a.a,b);return a} -function VH(a,b){dI(a);yQ(a.o.f,b);dI(a);a.k=wQ(a.o.f,new iI(a))} -function IH(a,b){hy(Lu(a.o.i).b)?LH(a):!Sx(Lu(a.o.i).b)||DH(a,b)} -function aH(a){!!a.k&&a.k.Rd();ex(Mu(a.o.i),a.eg());a.o.i.w.Hf()} -function tm(a,b,c){abd();if(!_ad){a.n=true;mbd(a.U);a.j=b;a.k=c}} -function hK(a,b,c){this.a=a;this.c=this.a.Rl();this.d=b;this.b=c} -function JB(a,b,c){pA.call(this,null);this.b=c;this.d=b;this.c=a} -function Pcb(a,b){xbb.call(this,a);this.a=b;this.b=new Scb(this)} -function JEb(a,b,c){ol();tl.call(this,a);Lsc();this.b=b;this.a=c} -function HL(a){$G.call(this,a);this.d=new JL(this);this.a=new By} -function SGb(a,b){HEb(a.e,b);Lg(a.a);wic((pic(),oic),new XGb(a))} -function Bpb(a){return new zpb(a,'Flip horizontally',new Lpb(a))} -function FIb(a,b,c){this.a=a;this.b=c;this.c=b;this.d=new tJb(c)} -function hjb(a,b,c){c.indexOf(oyd)!=-1?Mib(a.c,b,c):Oib(a.c,b,c)} -function Hab(a){if(a.indexOf(' ')!=-1){return '"'+a+'"'}return a} -function oCb(a){if(a.a.Zk()){return qCb(a,a.a.Yk())}return false} -function tBb(a,b){if(!sBb(a,b)){throw I8c(new ICb)}return rBb(b)} -function BJb(a,b){if(!a.a||a.a.c<=0){return}a.c=kH(a.c,CJb(a,b))} -function f4b(a){if(d4b==a){return ''}return a.j!=null?a.j:''+a.k} -function xcc(a){tcc();var b;b=ycc(a);return b?b:new vcc(a,false)} -function MHb(a,b,c){cj(a.c,b,c);if(a.b){XHb(a.a,true);a.b=false}} -function I6b(a,b,c){this.c=new C6b(a);this.a=new C6b(b);this.d=c} -function NNb(){this.a=new Cqc;MNb(this,'/marvin4js-license.cxl')} -function wed(){sed.call(this);(abd(),this.U).className='Caption'} -function Xgd(){ol();Wgd.call(this);(abd(),this.U).multiple=false} -function qed(a){ned.call(this,(Ind('span',(ujc(),a).tagName),a))} -function gmd(a,b,c){fmd(a,b,b+1,(Cnd(),String.fromCharCode(c)))} -function _qd(a,b,c){Uwd(b,c,a.vd());this.c=a;this.a=b;this.b=c-b} -function pdc(a,b,c){return kH(mad(new qad(a.a-c.a,a.b-c.b),b),c)} -function pc(){nc();return vuc(quc(Gvc,1),nyd,370,0,[kc,jc,mc,lc])} -function E4(){E4=p9c;D4=vuc(quc(g6c,1),eyd,2,6,[uDd,'extindex'])} -function lz(){iz();return vuc(quc(kAc,1),nyd,249,0,[hz,ez,gz,fz])} -function vz(){sz();return vuc(quc(lAc,1),nyd,120,0,[qz,pz,rz,oz])} -function Nz(){Lz();return vuc(quc(oAc,1),nyd,217,0,[Iz,Jz,Hz,Kz])} -function WOd(){return new Srd(vuc(quc(tWc,1),zBd,49,0,[this.a]))} -function bx(a,b){return dtd(btd((!a.b&&(a.b=(e_(),d_)),a.b).a),b)} -function CA(a){return Mqd(a.a.a)==0&&Mqd(a.b.a)==0&&Mqd(a.c.a)==0} -function lH(a,b){return !!Ku(a.o.i,jw(a.o.i,gH(a.f,gw(a.o.i,b))))} -function lbd(a){abd();return a.__gwt_resolve?a.__gwt_resolve():a} -function ah(a){if(a.M){return}else a.P&&vg(a);Mhd(a.L,true,false)} -function HK(a,b){return lad(iad(lad(b,a.b),new qad(a.a,a.a)),a.c)} -function uJ(){rJ();return vuc(quc(VCc,1),nyd,313,0,[nJ,qJ,oJ,pJ])} -function auc(a,b){if(b==null){throw I8c(new tnd)}return buc(a,b)} -function SN(a,b){var c;c=QN(a);if(!c){return b}return new TN(b,c)} -function Dbd(){var a;a=ygc();if(a){return new Cbd(a)}return null} -function Atc(a,b){var c;c=a.r.getHours();a.r.setDate(b);ztc(a,c)} -function LE(a,b){var c;for(c=0;c0&&GEb(a,b)} -function Dtc(a,b){var c;c=a.r.getHours();a.r.setMonth(b);ztc(a,c)} -function yed(a){var b;b=a.c?Xic(a.a):a.a;return (ujc(),tjc).Hn(b)} -function mbc(a,b){if(obc(a,b)){Wr(a.a,b);return true}return false} -function sWb(a,b){if(_r(a.v,b)){xWb(a,b);return true}return false} -function uWb(a,b){if(_r(a.w,b)){xWb(a,b);return true}return false} -function njc(a){if(Sic(a)){return !!a&&a.nodeType==1}return false} -function edd(a,b){for(var c in a){a.hasOwnProperty(c)&&b(c,a[c])}} -function Snd(a,b,c){c=hod(c);return a.replace(new RegExp(b,'g'),c)} -function mrd(a,b){Iud(b);a.b=a.b-1&a.a.length-1;a.a[a.b]=b;qrd(a)} -function pd(a,b){return !a.e&&(a.e=new Cqc),tqc(a.e,(_d(),$d),a,b)} -function Sl(a){return qmd(),!a.d&&Cl(a,a.o),(1&a.d.a)>0?true:false} -function djd(a){wo.call(this);_f(this,(abd(),wkc($doc)));this.a=a} -function Ozb(a,b,c,d){wyb.call(this,b);this.a=a;this.c=d;this.d=c} -function Aed(a){this.a=a;this.c=false;this.b=grc(a);this.d=this.b} -function tI(a,b){this.b=a;this.a=new jD(a.o.i);eD(this.a,dsd(b.r))} -function kI(a,b){Ry(Lu(a.o.i).b);!!b&&cx(Mu(a.o.i),b);a.o.i.w.Hf()} -function _S(a,b){if(pT(b.c,a.s)&&pT(b.d,a.s)){return MS}return a.a} -function Sc(b){if(!('stack' in b)){try{throw b}catch(a){}}return b} -function Fab(a,b){if(b==0){return ''}return ' '+a+'='+(Cnd(),''+b)} -function $qb(a,b){if(a.a=a.c){throw I8c(new kmd)}return a.a[b]} -function lfd(a){this.b=(qgd(),ngd).a;this.e=(vgd(),ugd).a;this.a=a} -function oS(){oS=p9c;mS=(HU(),vU);nS=new p0((pR(),kR),mS.b,mS.b.a)} -function ppb(){ppb=p9c;npb();kpb=new opb((Z9c(),new U9c(mpb)),lpb)} -function O1b(){O1b=p9c;M1b=new P1b('BEGIN',0);N1b=new P1b('END',1)} -function Z9c(){Z9c=p9c;new RegExp('%5B','g');new RegExp('%5D','g')} -function k6(){k6=p9c;new RegExp('^( | \\d| \\d\\d|\\d\\d\\d)+')} -function hj(){hj=p9c;gj=(Q9c(),new J9c(' <\/span>
    '))} -function rid(){oid();try{Edd(nid,lid)}finally{nid.a.Pb();Lqd(mid)}} -function az(a,b){cz(a,true);try{return Ny(a,b)}finally{cz(a,false)}} -function pv(a,b){if(qv(a,b)){return LUb(a.a,b).vd()==1}return false} -function Lo(a,b){if(b.T!=a){return null}return abd(),abd(),Mic(b.U)} -function nt(a,b){return !!a&&!!a.equals?a.equals(b):pvc(a)===pvc(b)} -function le(a,b){b!=null&&(!a.d&&Cl(a,a.o),(1&a.d.a)>0!=b)&&Km(a,b)} -function Qod(a){while(a.d>0&&a.a[--a.d]==0);a.a[a.d++]==0&&(a.e=0)} -function RM(a,b){Jl(a,b.c);a.a=b.b;a.c=lad(a.p,a.b);CM(a,LM(a),a.a)} -function EE(a,b,c){var d;d=_Vb(a.a,b);!d&&(d=YVb(a.a,c));return d.o} -function DE(a,b){var c;c=VVb(a.a,b);if(c){return c.Lh()}return null} -function $D(a,b){var c;c=new Cy(a);Wx(c,UD(b));Wx(c,VD(b));return c} -function xP(a,b,c,d){var e;e=wP(a,c);!!e&&uB(b,new vA(e,new Cy(d)))} -function rd(a){a.f&&a.db()&&(!a.e&&(a.e=new Cqc),vqc(a.e,new ae,a))} -function U4(a,b){if(Hnd(CDd,b)){return new Z4(a)}return new X4(a,b)} -function Beb(a,b){if(a.b==b){return}veb(a,a.b.b);a.b=b;veb(a,a.b.a)} -function hhb(a,b){if(!b.sd()){Nhb(a.a,b);Thb(a.c,b);Xr(a.i,b.Pe())}} -function Mmb(a,b){Mlb(a,(Sxd(),Dxd(b,suc(E$c,lyd,0,b.length,2,1))))} -function Smb(a,b){Mlb(a,(Sxd(),Dxd(b,suc(E$c,lyd,0,b.length,2,1))))} -function Qlb(a,b){b.a&&(a.o=GOb(b,(qmd(),pmd))?(C1(),m1):(C1(),k1))} -function ai(a,b,c,d){return $wnd.Math.max(c,$wnd.Math.min(a,d-b-1))} -function JU(a,b,c,d,e){gc.call(this,a,b);this.b=c;this.a=d;this.c=e} -function Zpb(a,b,c){vd.call(this,a);this.b=b;Wr(c.a,this);this.Gk()} -function zn(a,b,c){this.d=a;this.e=b;this.a=c;this.b=false;this.c=0} -function Dqb(a,b,c,d){gob.call(this,'Smart R-group',a,b,c);this.a=d} -function NEb(a,b){ol();LEb.call(this,a,(!jFb&&(jFb=new kFb),jFb),b)} -function sRb(a,b){return iad(b,new qad(a.a*(lRb(),kRb),-(a.a*kRb)))} -function vRb(a,b){return mad(b,new qad(a.a*(lRb(),kRb),-(a.a*kRb)))} -function iwb(a){return new AFb(a.c.i.a.o,Vw(a.c),a.i,a.e,!!a.c.i.q)} -function _G(a){a.n=true;ex(Mu(a.o.i),a.eg());!!a.k&&a.k.qg();a.Rd()} -function HWb(a){if(a.d){St(a.d.a,(cu(),bu)).Nd();St(a.d.a,_t).Nd()}} -function AIb(a){JJb(a.j,true);cJb(a.i,(Lz(),Iz),true);WHb(a,new nF)} -function kXb(a){var b;b=new es;Wr(b,a.c.Bm());Wr(b,iXb(a));return b} -function j2b(a){var b;if(a.A){b=a.A;HWb(b)}else{Gl(a,g2b);r2b(a,0)}} -function Iob(a){if(!Sx(a.a.i.A)){return Fob(a,a.a.i.A)}return false} -function qXb(a,b){if(T(a,b)){return false}return Zrd(a.Ml(),b.Ml())} -function C8b(a,b){!!b&&!jad(b,a.e.b)&&D8b(a,new ibc(b,a.e.c,a.e.a))} -function Mf(a,b){a.__capturedEventBits=(a.__capturedEventBits||0)|b} -function wab(){tab();return vuc(quc(lJc,1),nyd,306,0,[qab,sab,rab])} -function Ieb(){Geb();return vuc(quc(kKc,1),nyd,445,0,[Deb,Feb,Eeb])} -function Ujb(){Sjb();return vuc(quc(sLc,1),nyd,435,0,[Pjb,Qjb,Rjb])} -function LTb(){JTb();return vuc(quc(mWc,1),nyd,425,0,[GTb,HTb,ITb])} -function YAb(){WAb();return vuc(quc(kQc,1),nyd,289,0,[VAb,TAb,UAb])} -function j4b(){e4b();return vuc(quc(zXc,1),nyd,281,0,[d4b,c4b,b4b])} -function Hcc(){Ccc();return vuc(quc(XYc,1),nyd,236,0,[zcc,Bcc,Acc])} -function qmc(){omc();return vuc(quc(n_c,1),nyd,277,0,[mmc,lmc,nmc])} -function qhc(){ohc();return vuc(quc(z$c,1),nyd,412,0,[lhc,mhc,nhc])} -function whc(){uhc();return vuc(quc(A$c,1),nyd,413,0,[rhc,shc,thc])} -function Hhd(){Fhd();return vuc(quc(X3c,1),nyd,410,0,[Chd,Dhd,Ehd])} -function Rad(){Oad();return vuc(quc(X1c,1),nyd,352,0,[Lad,Mad,Nad])} -function Jsc(){Hsc();return vuc(quc(l1c,1),nyd,405,0,[Gsc,Fsc,Esc])} -function xtc(a,b){return Q8c(P8c(a.r.getTime()),P8c(b.r.getTime()))} -function ytc(a,b){return S8c(P8c(a.r.getTime()),P8c(b.r.getTime()))} -function Sic(b){try{return !!b&&!!b.nodeType}catch(a){return false}} -function Ded(a,b){if(b==a.a.O){Eed(a,null);return true}return false} -function Hf(a,b){if(!a.a.a.lp(Yyd)){return}!Ff&&Gf();If((abd(),b.U))} -function Bcd(a){var b=a.__listener;return !nvc(b)&&kvc(b,35)?b:null} -function km(a){var b;b=new fh;Of(b,(Os(),Hs));Eg(b,a);Tg(b);return b} -function Ml(a){var b,c;c=(!a.d&&Cl(a,a.o),a.d.a^1);b=yl(a,c);Cl(a,b)} -function Ct(a,b){var c;c=yed(a.a.a);Of(a.a,cBd);oed(a.a,b);fg(a.a,c)} -function Bu(a,b){var c;c=$wnd.Math.max(0,$wnd.Math.min(b,4));a.nm(c)} -function ou(a,b,c){var d;d=wu(a.c,b,c);return kvc(d,63)?E2b(d,b):a.a} -function bsd(a){Xrd();var b;b=new ttd;b.a.pp(a,b);return new ysd(b)} -function Kbd(){Hbd();var a;a=Jbd();if(!Hnd(a,Gbd)){Gbd=a;Zt(Fbd,a)}} -function Zm(){Xm();return vuc(quc(eyc,1),nyd,273,0,[Um,Tm,Vm,Wm,Sm])} -function Gz(){Ez();return vuc(quc(nAc,1),nyd,302,0,[Bz,zz,Az,Cz,Dz])} -function yF(a,b){return new qad((b.a-a.c)*a.a+a.c,(b.b-a.d)*a.b+a.d)} -function iW(a,b){if(!Hnd(UBd,b)&&!!a&&a.a!=null){return a.a}return b} -function S1(a){if(a.k){return null}!a.j&&(a.j=new DUb(a));return a.j} -function _8(a){switch(a.k){case 1:return 1;case 2:return 2;}return 0} -function Dtd(a){this.e=a;this.b=this.e.a.entries();this.a=new Array} -function tT(a,b,c,d){this.c=a;this.e=b;this.d=c;this.a=d;this.b=null} -function sT(a,b,c,d){this.c=a;this.e=b;this.d=c;this.a=null;this.b=d} -function Zab(a,b,c,d,e){gc.call(this,a,b);this.a=c;this.b=d;this.c=e} -function yr(a,b,c,d){gc.call(this,a,b);this.b=new RegExp(c);this.a=d} -function TK(a,b){$G.call(this,a);this.d=this.Gg(a);this.b=b;SK(this)} -function Sqb(a,b,c,d,e){this.a=a;this.d=b;this.b=c;this.c=d;this.e=e} -function AD(a){var b;this.a=a;b=new F$b;B$b(b,dsd(a.C.t));this.b=b.a} -function Lib(a,b){var c;if(kvc(a,93)){c=a.b;Iqd(b,pEd,(Cnd(),''+c))}} -function Ipb(a,b){return new Apb(a,'Mirror vertically',b,new Kpb(a))} -function gwb(a){return new zxb(new Mxb,new BLb(a.c,a.i,a.d),new lwb)} -function qub(a){oub();nub?Wr(nub,a):(Rlb(a.a),JNb(a.a.u,new Zlb(a)))} -function lob(a,b){if(Hnd(lHd,b)){return $Zb(a.a.Hl())}return td(a,b)} -function vwb(a){if(!!a&&xtc(a,rwb)){return 'Never'}return Bwb(a,pwb)} -function _cb(a,b,c,d){if(c==0){return -(d+1)}return Zcb(b,c-a.b.d,d)} -function Ezb(a){if(!a.a){return}og(a.a,new Izb(a),(voc(),voc(),uoc))} -function dXb(a){if(a.b){return new Cy(a.a)}return x$b(new F$b,a.c).a} -function xTb(a,b){if(b==null&&a.n==null||a.n==b){return}a.n=b;vTb(a)} -function iDb(a){if(a.a==-1){a.a=a.c.a.length;Wr(a.c,null)}return a.a} -function c9c(a){var b;if(mvc(a)){b=a;return b==-0.?0:b}return Wuc(a)} -function Kld(a,b){old();if(b>=a.length){return null}return a.item(b)} -function Lid(a,b){var c;c=a.f;b>-1&&b=0&&a=_Jb){return 1}if(a.b<=aKb){return -1}return 0} -function cyb(a){var b;b=Yxb(a,THd);if(kvc(b,78)){return b}return null} -function Zcd(a,b){var c;c=cdd(b);if(c<0){return null}return Yr(a.b,c)} -function mcd(a){var b;lcd();b=jcd.np(a);return !b?null:b.zd(b.vd()-1)} -function btd(a){var b;b=wwd(a.b,a.b.length);return new gtd(a.a,b,a.c)} -function Knd(a,b,c){Vwd(0,b,a.length);Vwd(0,b,c.length);Lnd(a,0,b,c,0)} -function gxd(a){var b;a.j=0;a.n=0;for(b=0;b0){++a.e;return true}return false} -function In(a){var b;if(!a.d.M){return null}b=a.c.i;return !b?null:b.a} -function FE(a,b,c){var d;d=WVb(a.a,b);!d&&(d=VVb(a.a,c));return d.Ol()} -function CE(a,b,c){var d;d=WVb(a.a,b);!d&&(d=VVb(a.a,c));return d.Lh()} -function ZI(a,b){if(b.a==(YE(),XE)){return}mIb(a.a,(Ez(),Az));a.b=null} -function tk(a,b){if(gk(b)){return false}return xk(a.a,fod('',kk(b.a)))} -function qK(a,b){mK(a.Kf(),a.Pf());a.Lf(true);nK(a.Kf(),b);a.Lf(false)} -function Yl(a,b){!!a.b&&Xld(a.b);a.b=null;a.a=b;!!a.a&&(a.b=Dd(a,a.a))} -function iH(a,b){this.a=a;this.b=b;this.c=new qad(-this.a.a,-this.a.b)} -function Hdb(a){Jdb.call(this,a,a);Xr(this.v,a.ih());Xr(this.r,a.hh())} -function xib(a,b){var c;kjb(new ljb(a),b);c=new Xib(a);return Wib(c,b)} -function Cpb(a,b){return new Apb(a,'Mirror horizontally',b,new Jpb(a))} -function oqb(a,b){return a.d?new UB(a.c,a.f.i):new rE(Vw(a.f),b,a.f.i)} -function xR(a,b){return (new qad(b.b.a+b.c/2,b.b.b+b.a/2)).b+b.a/2*a.a} -function dR(a,b){return (new qad(b.b.a+b.c/2,b.b.b+b.a/2)).a+b.c/2*a.a} -function _kc(a){return Hnd(a.compatMode,bKd)?a.documentElement:a.body} -function jPd(a){return Hnd(a.compatMode,bKd)?a.documentElement:a.body} -function yxb(a,b,c){rm(Ixb(a.d),false);ALb(a.c,b,a.a,new FLb(c,false))} -function rdb(a,b){if(hs(a.s,b)==-1){Wr(a.s,b);return true}return false} -function vJb(a,b){if(!!a.a&&a.a.c>=0&&a.a.a>=0){AJb(a,b);wJb(a,a.a,b)}} -function jRb(a,b){this.c=a;this.b=b;Gad()&&(this.a=new zRb(new Sbd,a))} -function gXb(a){this.b=a.kh();this.c=new utd(a.eh());this.a=new Hdb(a)} -function Jqb(a,b,c){wd.call(this,'Zoom in',c);this.a=a;dKb(b.j.e,this)} -function odc(a,b,c){return Qac(Pac(new Tac(lad(a.a,c.a),a.b-c.b),b),c)} -function Fgc(g,a,b,c,d,e,f){return g.createRadialGradient(a,b,c,d,e,f)} -function Jm(a,b,c,d){return a>=c&&a<=c+(Os(),Gs)&&b>=d&&b<=c+(Os(),Gs)} -function Bjc(a,b){var c;return ajc((c=Qjc(a,b),c?c:b.documentElement))} -function djc(a,b){var c;b=ojc(b);c=mjc(a.className||'',b);return c!=-1} -function O2b(a,b){var c;c=b&&(s6b(),h6b)==a.o;if(a.i!=c){a.i=c;vTb(a)}} -function foc(a,b){var c;c=coc(b);Nic(doc(a),c,a.a.firstChild);return c} -function frc(a,b){if(null==b){throw I8c(new und(a+' cannot be null'))}} -function T9c(a,b){if(!kvc(b,2236)){return false}return Hnd(a.a,b.Qc())} -function U9c(a){if(a==null){throw I8c(new und('uri is null'))}this.a=a} -function Umc(){Umc=p9c;Tmc=new Xmc;Smc=new Ymc;Qmc=new Zmc;Rmc=new $mc} -function ymc(){ymc=p9c;xmc=new Bmc;umc=new Cmc;vmc=new Dmc;wmc=new Emc} -function Jmc(){Jmc=p9c;Imc=new Mmc;Gmc=new Nmc;Hmc=new Omc;Fmc=new Pmc} -function dnc(){dnc=p9c;_mc=new gnc;anc=new hnc;bnc=new inc;cnc=new jnc} -function WCb(){WCb=p9c;VCb=new $Cb;UCb=new ZCb;SCb=new YCb;TCb=new XCb} -function rjd(){rjd=p9c;njd=new ujd;ojd=new vjd;pjd=new wjd;qjd=new xjd} -function Ewb(){Ewb=p9c;Cwb=new Fwb('DATE',0);Dwb=new Fwb('LICENSEE',1)} -function oL(){oL=p9c;nL=new pL('GROUP',0,false);mL=new pL(YBd,1,true)} -function s$(){s$=p9c;q$=new xT(false,KCd);r$=new vT(true,1.5,true,uBd)} -function I3(){I3=p9c;H3=vuc(quc(g6c,1),eyd,2,6,[uDd,'atom1','atom2'])} -function jNd(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)]))} -function ANd(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),z_)]))} -function zqd(a,b){return b===a?'(this Map)':(Cnd(),b==null?iyd:s9c(b))} -function Jgd(a,b,c,d){Igd.call(this,a,b);rjc((abd(),a.U),c);qjc(a.U,d)} -function sfd(a,b,c,d){var e;e=Lfd(a.d,b,c);Afd(a,(abd(),e),d);return e} -function csd(a,b){Xrd();var c;c=new mtd;Atd(c.d,a,b);return new xsd(c)} -function twd(a){hwd();if(ewd){return new swd(null)}return $vd(awd(),a)} -function G8c(){switch(x8c){case 2:case 5:return new Tld;}return new Old} -function F8c(){switch(x8c){case 2:case 5:return new ykd;}return new wkd} -function E8c(){switch(x8c){case 2:case 5:return new dkd;}return new gkd} -function D8c(){switch(x8c){case 2:case 5:return new akd;}return new $jd} -function C8c(){switch(x8c){case 2:case 5:return new Odd;}return new Ndd} -function B8c(){switch(x8c){case 2:case 5:return new ndd;}return new pdd} -function A8c(){switch(x8c){case 2:case 5:return new Ycd;}return new Xcd} -function z8c(){switch(x8c){case 2:case 5:return new okc;}return new ckc} -function Wad(){var a;if(!Tad||Yad()){a=new ltd;Xad(a);Tad=a}return Tad} -function Ojd(a){++a.a;while(a.a$wnd.Math.abs(hw(a.o.i,0.77))} -function zT(a,b){AT.call(this,a.d,a.c,new ibc(kH(a.b.b,b),a.b.c,a.b.a))} -function tB(a,b){BA.call(this,a,a.C,C$b(new F$b,new Srd(b)).a);this.a=b} -function cgd(a){wo.call(this);$f(this,wkc($doc));jjc((abd(),this.U),a)} -function okd(b,a){a?b.f.contentWindow.focus():b.f.contentWindow.blur()} -function nO(a,b,c){if(c.a!=0){XN(b,c.a);yQ(a.c.f,new EB(a.c.i,b,true))}} -function adb(a,b,c,d){if(c=0&&a.a[c]===b[c];c--);return c<0} -function bJb(a,b){var c;if(b){c=Xtd(a.a,b);return !!c&&c.c}return false} -function KWb(a){var b;if(kvc(a,275)){return a}b=MWb();wVb(b,a);return b} -function Kvb(a,b){if(Sx(a.a.a.a.i.A)){return}dwb(b,Uvb(a.a));Ovb(a.a.a)} -function ydc(a,b){vdc(a.a,b)?(a.a.r=a.a.t.nn(a.a.k,a.a.o)):(a.a.r=null)} -function Fkd(c,a){var b=c;c.onreadystatechange=Yxd(function(){a.Qn(b)})} -function nPd(a){if(!kvc(a,1009)){return false}return Hnd(this.a,a.Qc())} -function swd(a){hwd();if(ewd){return}this.c=a;this.e=true;this.a=new es} -function Cj(){hj();this.b=this.vc();this.d=(xj(),vj);this.c=new tj(this)} -function hwd(){hwd=p9c;ewd=true;cwd=false;dwd=false;gwd=false;fwd=false} -function vl(a){if(a.k||a.n){kbd((abd(),a.U));a.k=false;a.n=false;a.bd()}} -function ll(a,b){a.a=b;!!a.b&&Xld(a.b);a.b=null;!!a.a&&(a.b=Cd(a.p,a.a))} -function Gp(a,b){b>-1&&b0&&a<=VZb.length){return VZb[a-1]}return null} -function Anb(a){if(Cnb(a,(kA(),eA))!=null){return new Mnb(a)}return null} -function Sbb(a){if(a.Fj(xEd)){return Und(a.Cj(xEd),':',0)[0]}return null} -function Aib(a){var b;b=new Yfb;Wfb(b,dsd(a.n));Xfb(b,dsd(a.p));return b} -function t7(a,b){var c,d;d=(c=O6(a,b),r2(N6(b,c)));u7(b)&&q7(b);return d} -function u8b(a,b){var c,d;d=lad(b,a.b);c=t8b(a,d);return c*a.a<0?a.c:a.d} -function VFb(a,b){if(b){gg(a.a,true)}else{tFb(a,SFb.a[1]);gg(a.a,false)}} -function Bp(a){var b;if(a.e!=-1){Hp(a,a.e)}else{b=fxb(a.a);!!b&&yp(a,b)}} -function Gtc(a,b){var c;c=a.r.getHours();a.r.setFullYear(b+KKd);ztc(a,c)} -function Hjd(a,b){var c;c=Ejd(a,b);if(c==-1){throw I8c(new Eud)}Gjd(a,c)} -function Kjd(a){if(!a.a){throw I8c(new dnd)}a.c.b.Rb(a.a);--a.b;a.a=null} -function U3b(a,b){if(!b){throw I8c(new tnd)}return a.c.length-b.c.length} -function $td(a,b){var c;c=Jqd(a.c,b);if(c){cud(c);return c.e}return null} -function yxd(a,b){var c=a[b];var d=0;for(k in c)d=Math.max(d,k);return d} -function Gxd(a,b){var c=[a];for(i=0;i0&&Whd(a,b,'',d,c);return d} -function Nmd(a,b,c){var d;d=Lmd(a);Umd(a,d);d.i=c?8:0;d.f=b;d.e=c;return d} -function Grd(a,b){var c,d;c=(d=a.slice(0,b),wuc(d,a));c.length=b;return c} -function hrd(a,b){var c,d;c=b.yp();d=evd(a,c);return !!d&&Gud(d.e,b.Ok())} -function Lh(a,b){var c,d;c=new Uh(b);d=pg(a,c,_pc?_pc:(_pc=new Ioc));c.b=d} -function acd(a){Zbd();bcd();ccd();return _bd((!fqc&&(fqc=new Ioc),fqc),a)} -function _n(a,b,c){if(b.a.length==0){return a}return $n(a,Im(new Qd(b,c)))} -function cpd(a,b){if(b==0||a.e==0){return a}return b>0?tpd(a,b):wpd(a,-b)} -function dpd(a,b){if(b==0||a.e==0){return a}return b>0?wpd(a,b):tpd(a,-b)} -function Ku(a,b){if(dsd(a.C.n).b.vd()==0||!b){return null}return hT(a.j,b)} -function Mgd(a,b){if(b<0||b>=vlc((abd(),a.U)).length){throw I8c(new kmd)}} -function Yo(a){if(pl(a.a.e)){lo(a.a,a.a.o+(ho(),fo));Ji(a,200)}else{Hi(a)}} -function $o(a){if(pl(a.a.j)){lo(a.a,a.a.o-(ho(),fo));Ji(a,200)}else{Hi(a)}} -function dL(a,b){if(a.a.length==0||b.a.sd()){return false}return !Zrd(a,b)} -function XJ(a,b){var c;c=b!=null&&kvc(b,215)?b.a:a.a;return mnd(VJ(a.b,c))} -function Ip(a,b,c){var d;if(b!=-1){as(a.c,b,c);d=xfd(a.b,b);oed(d,bxb(c))}} -function po(a,b,c){var d;ro(a,c);if(b.T==a){d=Ejd(a.i,b);d=0&&b!=a.d){a.d=b;a.j=null;!!a.A&&SVb(a.A,new u7b)}} -function WU(a){i1b();if(a>0&&a<=126){return YU(),Eqd(XU,mnd(a))}return uBd} -function Ydd(a,b){a.d=(abd(),b.U);!!a.e.d&&Wdd(a.e.d)==Wdd(a)&&Dl(a.e,a.d)} -function efd(a,b){var c;c=vo(a,b);if(c){b==a.a&&(a.a=null);dfd(a)}return c} -function Xtd(a,b){var c;c=Eqd(a.c,b);if(c){Ztd(a,c);return c.e}return null} -function avd(a,b){!a.a?(a.a=new Aod(a.d)):nod(a.a,a.b);nod(a.a,b);return a} -function H6b(a,b,c){I6b.call(this,a.gn(),b.gn(),c);F6b(this,a);G6b(this,b)} -function kPd(a,b,c){this.b>0?sqc(this,new amd(this,a,b,c)):wqc(this,a,b,c)} -function idd(a){$wnd.addEventListener&&$wnd.addEventListener(mLd,a,false)} -function ZZb(a){return ivc(Cmd(a.charCodeAt(0)))+a.substr(1).toLowerCase()} -function n7(){l7();return vuc(quc(xIc,1),nyd,241,0,[k7,g7,e7,h7,i7,f7,j7])} -function PHb(){PHb=p9c;OHb=vuc(quc(oAc,1),nyd,217,0,[(Lz(),Iz),Jz,Hz,Kz])} -function nz(){nz=p9c;mz=hc((iz(),vuc(quc(kAc,1),nyd,249,0,[hz,ez,gz,fz])))} -function xz(){xz=p9c;wz=hc((sz(),vuc(quc(lAc,1),nyd,120,0,[qz,pz,rz,oz])))} -function SIb(){SIb=p9c;RIb=hc((MIb(),vuc(quc(TSc,1),nyd,304,0,[LIb,KIb])))} -function V8b(){V8b=p9c;U8b=new W8b('RECTANGLE',0);T8b=new W8b('ELLIPSE',1)} -function Ts(){Ts=p9c;Ss=new RegExp('^(\\d+)(?:\\.(\\d+))?(?:\\.(\\d+))?.*')} -function pu(a,b,c){var d;return (d=wu(a.c,b,c),kvc(d,63)?E2b(d,b):a.a).Hl()} -function gB(a,b,c){var d;Jud(b,BBd);return hB(a,c,(d=new lB,new fE(d,b,c)))} -function hdb(a,b,c,d){if(Wtd(a.c,c)){return gdb(a,b,c,d)!=null}return false} -function DR(a){var b;if(a){b=new FR;a.Tm(b);return X9c(b.a.a).a}return null} -function _r(a,b){var c;c=a.Ad(b);if(c==-1){return false}$r(a,c);return true} -function Fk(a,b){var c,d;c=a.a-b.a;d=a.b-b.b;return $wnd.Math.sqrt(c*c+d*d)} -function Lvb(a,b){var c;c=b.a.getData(tFd);c!=null&&c.length!=0&&Vvb(a.a,c)} -function Tg(a){var b;b=a.O;if(b){a.v!=null&&b.zb(a.v);a.w!=null&&b.Bb(a.w)}} -function dx(a,b){if(!!b&&!!a.c.j&&!!a.c.C){PS(a.c.j,a.a,b);zy(a.a.b,a.c.C)}} -function PCb(a,b){fDb(a.b,pvc((s6b(),h6b))===pvc(jDb(a.a.j))||kDb(a.a.j,b))} -function Mqb(a,b,c,d){this.b=new es;this.c=c;this.d=a;this.a=b;Xr(this.b,d)} -function cbb(a){this.a=a;this.b=suc(uvc,jyd,23,6,15,1);this.c=0;bbb(this,6)} -function lnb(a){this.b=a;this.a='Cannot drop file: unsupported file format'} -function XVb(a){var b;for(b=0;b0){return a.files[0]}return null} -function X7b(a,b){var c;c=Zr(a.b,b,0);if(c>-1){return Yr(a.a,c)}return null} -function d2b(a){var b;b=new is;if(a){Xr(b,a.d);Xr(b,a.a);Xr(b,a.c)}return b} -function v8b(a,b){var c;c=new qad(b.a-a.a,b.b-a.b);return new qad(-c.b,c.a)} -function bbc(a,b){return b.a>a.b.a&&b.b>a.b.b&&b.a3||a.Nl()<-3){return 0}return a.Nl()!=0?4-a.Nl():0} -function od(a){if(a==9||a==17||a==35||a==53||a==85)return true;return false} -function Im(a){if(a.a.a.length==0||!a.c){throw I8c(new and)}return new Hm(a)} -function uu(a){this.a=new y2b((WZb(),DXb));this.c=new yu;nu(this,new w$b(a))} -function To(a,b){var c,d;d=gbd((abd(),b.U));c=vo(a,b);c&&Qic(a.c,d);return c} -function TOb(a,b){var c,d;d=(c=us({}),c);d['atoms']=a;d['bonds']=b;return d} -function Tid(a,b){var c;Rid(a,b);c=to(a.a,b+1);c==a.b&&(a.b=null);To(a.a,c)} -function Bl(a,b){var c;c=(b.a&1)==1;agc();Xdc((abd(),a.U),(Kec(),c?Iec:Gec))} -function yuc(a){var b,c,d;b=a&XKd;c=a>>22&XKd;d=a<0?YKd:0;return Auc(b,c,d)} -function QR(a,b){a.b=true;a.a=true;a.c=new yod;return Q9c(),new J9c(RR(a,b))} -function uH(a){a.d=null;a.j=null;a.k=false;ex(Mu(a.o.i),a.eg());a.o.i.w.Hf()} -function _M(a){a.a.a=null;a.a.c=false;a.b=0;a.d=null;a.c=null;a.e=null;BM(a)} -function GQ(a,b){return kvc(b,657)&&a.a!=null&&a.b!=null&&a.a==b.a&&a.b==b.b} -function gn(a,b,c,d){return $wnd.Math.max(b-yn(Osd(a.a,c))-yn(Osd(a.a,d)),0)} -function uV(a,b,c,d,e){var f;f=new UV(a,b,c,d,e);return new QV(c,d,a.Yd(),f)} -function fT(a,b){var c;c=Xtd(a.d,b);return c?c:new dV(b,a.n,a.f,a.f,a.f,a.s)} -function Nbd(){var a;a=Yxd(Kbd);$wnd.addEventListener('hashchange',a,false)} -function g3(){g3=p9c;e3=new h3('HAS_UID',0,true);f3=new h3('NO_UID',1,false)} -function J$(){J$=p9c;H$=new vT(true,1.5,true,ECd);I$=new vT(true,3,true,ECd)} -function FAb(a){var b;b=new Kgd;kg((abd(),b.U),rId,true);return new RAb(b,a)} -function hab(a){var b,c;c=Tr(T7,a);c<0?(b=a.a/2|0):(b=4+c);return Cnd(),''+b} -function Tw(a,b){RE(b,a.e);QE(b,a.e);NE(b,a.e);ME(b,a.e);OE(b,a.e);PE(b,a.e)} -function Lnb(a,b,c){return Enb(a.a,(kA(),eA),vPb(b,false,xPb(znb(c))),a.a.c)} -function RRb(a){if(PRb(a)==-1){return}rm(a.b,false);JRb(a.a,PRb(a),Qdd(a.c))} -function QKb(a){if(!(!!a.b&&!!a.a)){return}rrb(new urb(a.b),a.a);a.c.tb(a.b)} -function KZ(a){if(!JZ(a)){return Xrd(),Xrd(),Urd}return Xrd(),new ksd(JZ(a))} -function v6b(a){s6b();if(a!=null){if(U(a)==RXc){return a}}return w6b(s9c(a))} -function Fcc(a){Ccc();if(a!=null){if(U(a)==XYc){return a}}return Gcc(s9c(a))} -function Zcc(a){Xcc();if(a!=null){if(U(a)==ZYc){return a}}return $cc(s9c(a))} -function $pc(a,b){var c;if(Ypc){c=new Zpc;c.b=b;a.Fb(c);return c}return null} -function nVb(a,b){var c;if(b){c=a.a;a.a=b;jad(b,c)||!!a.b&&SVb(a.b,new u7b)}} -function Iwb(a,b,c){Vfd(a.a,a.a.b);Ffd(a.a,a.a.b-1,0,b);Ffd(a.a,a.a.b-1,1,c)} -function Bab(a,b,c,d,e){b.a+=c;b.a+=' 0';nod(b,zab(a,l8(d)));nod(b,Aab(a,e))} -function VKb(a,b){var c;WKb.call(this,(c=new MPb(new Jkb(a,(kA(),hA)),b),c))} -function KJ(a,b,c,d){IJ();$G.call(this,a);this.c=new i_(c);this.b=d;this.a=b} -function Ifd(){Gfd.call(this);Vo(this,new Qfd(this));Efd(this,new jgd(this))} -function sed(){qed.call(this,wkc($doc));(abd(),this.U).className='gwt-HTML'} -function ped(){ned.call(this,wkc($doc));(abd(),this.U).className='gwt-Label'} -function Crd(a){if(vrd(a.d,a.c)<0){a.a=a.a-1&a.d.a.length-1;a.b=a.d.c}a.c=-1} -function q7(a){if(ps(a.c)){++a.b;a.a=qs(a.c);return a.a}a.a=null;return null} -function Src(a){switch(a.k){case 0:case 1:return true;default:return false;}} -function Zi(a){if(!a.p){throw I8c(new end('initWidget() is not called yet'))}} -function Vwd(a,b,c){if(a<0||b>c||b0&&a.jm(d)}} -function cx(a,b){if(!!b&&!!a.c.j&&!!a.c.C){RS(a.c.j,a.a.b,b);zy(a.a.b,a.c.C)}} -function aA(a,b){if(!!a.a&&a.a!=b||!b){a.a=null;throw I8c(new Gv)}else{a.a=b}} -function C6(a){switch(a){case 3:return s6b(),i6b;default:throw I8c(new and);}} -function WL(a){if(a.c){$L(a)}else{a.c=true;a.b=new pad;ZL(a,a.d);iS(a.j,100)}} -function Rfb(a,b){this.c=b;this.a=a.a;this.b=dsd(a.a.a.b);this.d=dsd(a.a.a.a)} -function Ekb(a){this.a=a;this.b=true;this.b?Of(this.a.T,PGd):Yf(this.a.T,PGd)} -function fh(){Jg();eh.call(this,true);kg(Ig.Ho(fbd((abd(),this.U))),Azd,true)} -function feb(){geb.call(this,Q0((P0(),M0))?new kdb(new Kt):new Kt,f2(Q0(K0)))} -function bqb(a,b){this.a=new is;Wub(a,new cqb(this));!!b&&Iu(b,new dqb(this))} -function Yqb(a,b){var c,d;c=new _qb;d=Xqb(a,b);Prd(d.a,d.a.length,c);return d} -function ffb(a,b){var c;c=efb(a,b);b.a.length==0&&Xr(b,cfb(a,a.a.k));return c} -function Cob(a){var b;return b=Dob(a),qmd(),(b?Eob(a,b):Vw(a.a).e)?true:false} -function jjb(a,b,c){var d;hjb(a,(d=Pib(a.c,oFd),eld(d,tDd,tFd),Lkd(b,d),d),c)} -function fhb(a,b,c){bhb(c,'topology',b.j.a);bhb(c,HEd,Vfb(b.e));a.a.Nj(b.n,c)} -function UHb(a,b){Dgc(b,0,0,_Ib(a.i,a.b).Un().width,_Ib(a.i,a.b).Un().height)} -function uCb(a,b,c){tCb.call(this,a,c);this.f=b;this.c=false;this.e=new $s(b)} -function Hzb(a,b,c,d){wyb.call(this,b);this.a=null;this.e=d;this.b=a;this.c=c} -function crc(a){arc.call(this,'A request timeout has expired after '+a+' ms')} -function EOb(a){if(!FOb(a)){throw I8c(new Fud('No value present'))}return a.b} -function E2b(a,b){if(b!=a.c&&b!=a.d){throw I8c(new and)}return b==a.d?a.c:a.d} -function Uod(a){var b;if(a.e==0){return -1}b=Tod(a);return (b<<5)+knd(a.a[b])} -function Mqc(a){var b;if(!a.d){return}Hi(a.c);b=a.d;a.d=null;Dkd(b);b.abort()} -function qS(a){if(!a.b){a.b=new vS(a);!!a.d&&!a.d.sd()&&xS(a.d,a.b)}return a.b} -function yV(a,b,c){if(b!=null){return xV(a,new jX((HU(),GU),!c),b)}return null} -function WOb(b){var a=b.backgroundColor||null;if(a==WId){return null}return a} -function F3(a,b){var c;c=a.exec(b);if(c){return Und(c[0],'=',0)[1]}return null} -function y6(a){if(a==1){return Ccc(),Bcc}if(a==2){return Ccc(),Acc}return null} -function cab(a){switch(a.k){case 3:return 1;case 1:return 2;default:return 0;}} -function Leb(a,b){var c;if(b){c=Meb(a,b.b);if(c){Keb(a,Qeb(c,b.a));_r(a.b,c)}}} -function Bt(a){if(djc(Rf(a.a),cBd)){Yf(a.a,cBd);oed(a.a,Vf(a.a));fg(a.a,null)}} -function _m(){_m=p9c;$m=hc((Xm(),vuc(quc(eyc,1),nyd,273,0,[Um,Tm,Vm,Wm,Sm])))} -function mA(){kA();return vuc(quc(yAc,1),nyd,218,0,[eA,fA,hA,jA,iA,gA,dA,cA])} -function gH(a,b){return hH(a,$wnd.Math.ceil(jH(kH(b,a.c))*30/jBd-0.5)/30*jBd)} -function nob(a,b){return oob(a,new v2b(b),(i1b(),b>0&&b<=126?h1b[b-1].d:null))} -function ihb(a,b,c){var d;d=lhb(a,b,(bjb(),Yib));Yhb(d,b1b(d1b(b.n)),b.Lh(),c)} -function b3(a,b,c,d,e,f){gc.call(this,a,b);this.d=c;this.a=f;this.b=d;this.c=e} -function kJ(a,b,c,d,e,f){fJ.call(this,a,f);this.a=b;this.d=c;this.c=d;this.b=e} -function ZAb(a,b,c){this.a=a;this.b=new zCb(b,c);a.c||yCb(this.b,a.c?null:a.f)} -function Ixb(a){if(!a.b){a.b=new Bm;zm(a.b,'Import');mm(a.b,Gxb(a))}return a.b} -function onb(a){if(!a){throw I8c(new und('Indicator cannot be null'))}this.a=a} -function Jmb(a){if(!Imb){Imb=true;Sxd();z0b(Rxd,uMc,a);new Zmb;new Rmb;Kmb(a)}} -function UKb(a,b){var c;c=new JPb(a.a,null,(C1(),m1),null);return new ZKb(c,b)} -function Yxb(a,b){if(Hnd(THd,b)){return !a.a&&(a.a=new Nvd),a.a}return td(a,b)} -function __b(a,b){if(mx(a,b)){!!a.v&&SVb(a.v,new u7b);return true}return false} -function K0b(a,b){var c;c=a;while(c){if(c.b==b){return true}c=c.c}return false} -function lUb(a){var b;if(kvc(a,68)){b=a.e;if(b){return b.b!=null}}return false} -function L7b(a,b,c){if(b.a.length>1){return new l8b(a,b,c)}return new r8b(a,b)} -function qRb(a){this.a=a;this.c=new JIb(new pRb(Rf(Dbd().a).getContext('2d')))} -function vAb(a,b){var c;AAb(a,(c=new SBb,new RAb(MEb(Rf(new kjd),c,c),b)),iId)} -function _cd(a,b){var c;c=cdd(b);b[lLd]=null;as(a.b,c,null);a.a=new ddd(c,a.a)} -function Etc(a,b){var c;c=a.r.getHours()+(b/3600|0);a.r.setSeconds(b);ztc(a,c)} -function Z_b(a){var b,c,d;for(c=0,d=a.length;c=c||b<0){throw I8c(new lmd(vLd+b+wLd+c))}} -function Ocd(a){var b;b=Tcd(a);if(!b){return}cbd(a,b.nodeType!=1?null:b,Bcd(b))} -function c2b(){X1b();return vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b])} -function _cc(){Xcc();return vuc(quc(ZYc,1),nyd,206,0,[Wcc,Rcc,Ucc,Scc,Tcc,Vcc])} -function Fhc(){Dhc();return vuc(quc(B$c,1),nyd,278,0,[xhc,yhc,zhc,Ahc,Bhc,Chc])} -function yNd(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_]))} -function Pnd(a){return (new RegExp('^([a-z]+|#[0-9]+|#x[0-9a-fA-F]+)$')).test(a)} -function kdd(a){$wnd.removeEventListener&&$wnd.removeEventListener(mLd,a,false)} -function Qm(a,b){a.a=$wnd.Math.max(0,a.a+(b?1:-1));Wf(a.b)!=a.a>0&&gg(a.b,a.a>0)} -function gp(a){!!a.b&&!!a.c&&mp(a.d,qvc(a.c.a),qvc(a.c.b),qvc(a.b.a),qvc(a.b.b))} -function je(a,b){if(b){Ydd(a.o,b);Ydd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f),b)}} -function wad(){if(!uad){uad=wkc($doc);mg(uad,false);Lic((oid(),$doc.body),uad)}} -function Evd(){Evd=p9c;Avd=new Fvd('All',0);Bvd=new Hvd;Cvd=new Ivd;Dvd=new Jvd} -function _1b(a,b,c,d,e,f){gc.call(this,a,b);this.a=c;this.b=d;this.c=e;this.d=f} -function mac(a,b,c,d,e,f){gc.call(this,a,b);this.d=c;this.c=d;this.a=e;this.b=f} -function yc(a,b,c){var d,e;e=0;for(d=0;d4} -function sY(a,b){if(b){return 1.5}if(1.5*a.c.Yd()<1){return 1/a.c.Yd()}return 1.5} -function zkb(a,b){var c,d,e;for(d=0,e=b.length;d0&&dsd(a.k).a.sd()&&!b.c.fn()&&!b.a.fn()} -function lGb(a,b){var c;c=b?b.ab():'';pFb(a.b.a,null);cGb(a.b.d,a.a.Ic()+':\n'+c)} -function wuc(a,b){ruc(b)!=10&&vuc(U(b),b.Gp,b.__elementTypeId$,ruc(b),a);return a} -function bbd(a,b){abd();var c;c=Bcd(b);if(!c){return false}cbd(a,b,c);return true} -function dob(a){Yw(a.c,a.d);ud(a,Fyd,(qmd(),T(a.d,a.c.a)?true:false));return true} -function Vfd(a,b){var c,d;d=zfd(a,b);++a.b;for(c=0;c=a.c.c){throw I8c(new Eud)}a.a=a.c.a[a.b];++a.b;return a.a} -function atd(a,b){var c;c=b.k;if(!a.b[c]){a.b[c]=b;++a.c;return true}return false} -function Lwb(){this.a=new $fd(0,2);this.a.f[MAd]=3;Of(this.a,'mjs-padded-header')} -function _D(a,b){this.d=b;this.b=new gs(a);this.c=XD(this,a);this.a=$D(this.d.A,a)} -function VX(a,b,c,d,e){$wnd.Math.abs(d)$wnd.Math.max(a.o.i.a.j.e.b*10,1)} -function Br(a,b,c){if(!c){return}Iqd(a.b,b,Cr(a,Gqd(a.b,b)?hvc(Fqd(a.b,b)):a.a,c))} -function VI(a,b){if(b.a==(YE(),XE)){return}if(a.b){aw(a.c,lad(b.c,a.b));Uo(a,b.c)}} -function Tv(a){Uo(a.a,(Lz(),Hz));if(fIb(a.a)&&gIb(a.a,Hz)){hIb(a.a,false);qw(a.e)}} -function Xv(a){Uo(a.a,(Lz(),Jz));if(fIb(a.a)&&gIb(a.a,Jz)){hIb(a.a,false);vw(a.e)}} -function Kn(a){a.d.M&&(Kid(a.c)==-1?Lid(a.c,a.c.f.a.length-1):Lid(a.c,Kid(a.c)-1))} -function W0(a){var b;this.a=(b=Imd(pHc),new gtd(b,ywd(b,b.length),0));Lr(this.a,a)} -function YP(a){var b;if(a.c){b=new gs(a.d.Ne());Wr(b,a.c);return b}return a.d.Ne()} -function XW(a){if(a.b.a.length==0||a.a==(dX(),cX)){return a.c}return a.b.a[0].Qh()} -function Gub(a){if(a.f.a.a.length!=0){Qm(a.e,true);bt(a.f.a.a[0].xl(),new Vub(a))}} -function Gvb(a,b){if(b.a.length==0){return}a.a.a.length==0||Wr(a.a,null);Xr(a.a,b)} -function qfb(a,b,c,d){if(b){Wr(a.b,b);Wr(a.c,c);Wr(a.a,d);return true}return false} -function B$(a,b,c,d,e){s$();var f;f=new z$(a,b,c,d,false);f.c=tS(c,d,e,f);return f} -function bbb(a,b){var c;for(c=0;c0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))} -function d1b(a){return a?(Xrd(),kvc(a,291)?new Dsd(a):new vsd(a)):(Xrd(),Xrd(),Urd)} -function APb(a){return ys(BPb(CPb(zPb(a)),a.defaultItem||null,a.isFloating||false))} -function f$b(a){if(a.b.a==null){return null}return a.b.a+(''+(a.a==-1?'':mnd(a.a)))} -function $od(a,b){if(b.e==0){return Mod}if(a.e==0){return Mod}return lqd(),mqd(a,b)} -function ftd(a,b){if(!!b&&a.b[b.k]==b){a.b[b.k]=null;--a.c;return true}return false} -function zgc(a){ol();!wgc&&(wgc=new Agc);if(!a.getContext){return false}return true} -function kw(a,b,c,d){if(yIb(a.a,b,c,d)){a.j.c=true;a.w.Hf();return true}return false} -function Bj(c,a){var b=c.b.contentWindow.document;return b.queryCommandSupported(a)} -function zjc(a){var b=a.nextSibling;while(b&&b.nodeType!=1)b=b.nextSibling;return b} -function hvc(a){var b;a==null||Array.isArray(a)&&(b=ruc(a),!(b>=14&&b<=16));return a} -function htd(a){var b;++a.a;for(b=a.c.a.length;a.aa.b+a.j&&emd(b,a.b+a.j)>=53){c=a.b+a.j-1;ftc(a,b,c)}} -function RK(a,b){var c;if(a.c){Jl(a,b.c);c=hx(Lu(a.o.i));a.Fg(c);SK(a);a.o.i.w.Hf()}} -function bK(a,b){var c;c=eK(a);if(c.sd()){return null}return a.b?cK(a,b,c):dK(a,b,c)} -function i5(a,b){h5();var c;return c=bod(a.substr(b,b+3-b)),c.length==0?0:Xmd(c,10)} -function t2(a,b){var c,d;for(d=b.mp().Qb();d.Rc();){c=d.Sc();DWb(a.a,c.yp(),c.Ok())}} -function CH(a,b){return a.Gl()==null&&b.Gl()==null||a.Gl()!=null&&Hnd(a.Gl(),b.Gl())} -function pQ(a,b){dH.call(this,a);this.a=new lQ(a,b);this.c=new VM(a);bH(this,this.a)} -function CQ(){this.a=new Cqc;this.d=new zrd(this.b);this.c=new zrd(this.b);this.b=40} -function uC(a,b,c){this.o=a;this.j=new _td;this.b=new _td;this.e=b;this.a=lC(this,c)} -function Cgd(a){xgd();En(this,new Igd(this,a));(abd(),this.U).className='gwt-Image'} -function gjd(a){JEb.call(this,a,(!gad&&(gad=new had),gad),(!ead&&(ead=new fad),ead))} -function aud(a){ltd.call(this);Utd(this);this.b.b=this.b;this.b.a=this.b;yqd(this,a)} -function hxd(a,b){a.k[a.n++]=b;if(a.n==a.k.length){lxd(a,a.k,0);a.n=0}a.j=J8c(a.j,1)} -function vyb(a,b){if(b!=a.j){if(b){Yf(a.i,YHd);a.j=true}else{Of(a.i,YHd);a.j=false}}} -function xn(a){tn(a);if(a.b){return}cfd(a.d.c,a.f,a.e);a.a.gd(a.d.c,a.f,a.c);a.b=true} -function A2b(a){var b;b=new T2b(a.o,a.c,a.d,a.n);b.b=a1b(a.b);M2b(b,F2b(a));return b} -function QF(a){var b;b=false;b=b|dG(a.f);b=b|dG(a.k);b=b|dG(a.i);b=b|dG(a.j);return b} -function Z9b(a){var b,c,d;b=new V9b;for(d=a.Qb();d.Rc();){c=d.Sc();Q9b(b,c)}return b} -function zB(a){var b;b=new $qd(a.a,a.a.a.length);while(b.b>0){b.a.zd(b.c=--b.b).Uf()}} -function bG(a){if(a.b.c){a.b.c.c=false;a.n.w.Hf()}if(a.b.d){a.b.d.c=false;a.n.w.Hf()}} -function LK(a,b){a.b=false;VG(a,b.c);jy(Lu(a.o.i).b)?(a.a=new NK(a,NG(a))):(a.a=null)} -function sQ(b,c){try{b.a.lh(AR(b.b,c))}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}} -function pW(a,b,c){lW();this.a=b;Mqd(b.c)==0?(this.b=null):(this.b=xW(new yW(a,b,c)))} -function z$(a,b,c,d,e){this.o=a;this.e=new es;this.b=c;this.k=d;this.d=e;Xr(this.e,b)} -function dkb(a,b,c,d,e,f){nkb(a,b,new Aob(c,d+Es((Cnd(),String.fromCharCode(f))),e))} -function WN(a){if(P4b(a)!=(V4b(),S4b)){throw I8c(new and)}return Xmd(Nud(VN(a).d),10)} -function Q6(a){if(q7(a)==null){throw I8c(new vqd('Space of meta data is missing.'))}} -function IS(a){if(a.a.length==0){return a_(),_$}return a.a.length==1?a.a[0]:new GS(a)} -function tib(a){switch(a.k){case 4:return 'W';case 5:return 'H';default:return null;}} -function $xb(a,b){if(Hnd(Fyd,b)&&(zd(a.b)||zd(a.c))){return td(a,b)}return lob(a.a,b)} -function Hlb(a,b){a.F=vlb(a,!(b.a&&FOb(b)));b.a&&FOb(b)&&bt(jQb(EOb(b)),new bmb(a.F))} -function g8(a,b){var c,d;for(d=a.e.nj(b).Qb();d.Rc();){c=d.Sc();Wr(a.j,c);ptd(a.d,c)}} -function qxb(a){var b;b=a.indexOf(oyd);b>0&&(this.c=a.substr(0,b));this.b=a;oxb(this)} -function PRb(a){var b;b=CEb(a.f.a);if(b==null||b.length==0){return -1}return ORb(a,b)} -function RBb(a){var b;if(a!=null){b=bod(s9c(a));if(b.length!=0){return b}}return null} -function ROb(b,c){try{var d=JSON.parse(b);if(d[c]){return d[c]}}catch(a){}return null} -function yVb(a,b){if(tx(a,b)){a!=b.b&&(b.b=a);SVb(a,new u7b);return true}return false} -function GVb(a,b){if(rx(a,b)){a!=b.d&&(b.d=a);SVb(a,new u7b);return true}return false} -function m1b(a,b){i1b();if(b){return Ind((E0b(),C0b).b,a)}return Hnd((E0b(),C0b).b,a)} -function o1b(a,b){i1b();if(b){return Ind((E0b(),D0b).b,a)}return Hnd((E0b(),D0b).b,a)} -function sdc(a){if(a){if(dsd(a.p).a.sd()){return a}return ndc(new rdc(a))}return null} -function MNb(a,b){if(b==null||b.length==0){return}a.b=new Je(new QNb(b));zQ(a,new Ci)} -function lTb(a,b){if(b==null&&a.q==null||a.q==b){return}a.q=b;!!a.A&&SVb(a.A,new u7b)} -function F9(a,b,c){if(c!=null){X9((W9(),U9),a);a.a+=''+b;a.a+=' ';a.a+=''+c;a.a+=oyd}} -function ric(a){var b,c;if(a.c){c=null;do{b=a.c;a.c=null;c=Bic(b,c)}while(a.c);a.c=c}} -function qic(a){var b,c;if(a.b){c=null;do{b=a.b;a.b=null;c=Bic(b,c)}while(a.b);a.b=c}} -function $Ub(a){var b,c;b=a.b.Lh();c=a.c.Lh();return new qad((b.a+c.a)/2,(b.b+c.b)/2)} -function Tcd(a){var b;b=(ujc(),tjc).yn(a);while(!!b&&!Bcd(b)){b=b.parentNode}return b} -function Lmd(a){var b;b=new Kmd;b.p='Class$'+(a?'S'+a:''+b.k);b.b=b.p;b.n=b.p;return b} -function zfd(a,b){var c;b!=a.no()&&rfd(a,b);c=(abd(),Nkc($doc));hbd(a.c,c,b);return b} -function Zf(a,b){var c=a.parentNode;if(!c){return}c.insertBefore(b,a);c.removeChild(a)} -function Jj(c){var a=c.b;var b=c;a.onload=Yxd(function(){a.onload=null;b.Hc();b.Ac()})} -function Aj(a){return $doc.activeElement===a.b&&a.b.contentWindow.document.hasFocus()} -function Vkc(a){return (Hnd(a.compatMode,bKd)?a.documentElement:a.body).clientWidth|0} -function Dl(a,b){if(a.e!=b){!!a.e&&Qic((abd(),a.U),a.e);a.e=b;abd();Lic(a.U,lbd(a.e))}} -function Lr(a,b){var c,d,e;c=false;for(e=b.Qb();e.Rc();){d=e.Sc();c=c|a.od(d)}return c} -function zx(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.He(c)}return e} -function Cx(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.Ge(c)}return e} -function Ax(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.df(c)}return e} -function Bx(a,b){var c,d,e;e=false;for(d=b.Qb();d.Rc();){c=d.Sc();e=e|a.ef(c)}return e} -function Jp(a,b,c){this.c=new is;Qp((Up(),Pp));this.d=b;Xr(this.c,c);this.a=a;Dp(this)} -function QC(a,b,c){this.o=b;this.b=new std;this.c=new gXb(a);IC(this);this.d=c?c:zD(b)} -function eH(a,b){dH.call(this,a);this.a=new BH(a,b);this.b=new qI(a,b);bH(this,this.a)} -function OC(a,b){PC.call(this,a,y$b(new F$b,new Srd(vuc(quc(xWc,1),lyd,715,0,[b]))).a)} -function e_(){e_=p9c;d_=new h_(MBd,(A_(),vuc(quc(UGc,1),nyd,34,0,[l_,n_,r_,x_,t_])))} -function SQ(){SQ=p9c;RQ=new RegExp('rgb *\\( *([0-9]+), *([0-9]+), *([0-9]+) *\\)')} -function wR(){wR=p9c;vR=new yR('TOP',0,-1);uR=new yR(FBd,1,0);tR=new yR('BOTTOM',2,1)} -function Hsc(){Hsc=p9c;Gsc=new Isc('RTL',0);Fsc=new Isc('LTR',1);Esc=new Isc(sBd,2)} -function AR(a,b){var c,d;return c=Rf(new ted(QR(new UR,s9c(b)))),d=new m9b,BR(a,c,d),d} -function lhb(a,b,c){var d,e;d=new Jhb(a.n,a,false);e=shb(d,c);return Ahb(a,e,b,c,null)} -function Xgb(a,b,c){var d,e;d=new Jhb(a,c,false);e=b.a;hhb(d,e);thb(d);uhb(d);return d} -function zlb(a,b){var c,d,e,f;f=Dr(a.v,b);for(d=0,e=f.length;d'+zl(a.a)+Uyd):Rnd(zl(a.a),c,b))} -function BX(a,b,c,d){this.c=b;this.a=d.Jf(YCd,(NT(),ET),(z0(),y0));this.b=zX(this,a,c)} -function Iqb(a,b){wd.call(this,a,b);this.a=null;ud(this,Gyd,(qmd(),this.a?true:false))} -function MJb(a){this.b=new ZJb;this.d=a;this.e=new jKb;this.c=new qad(0,0);this.a=null} -function wOb(a){var b;b=a.p;this.a=fWb(b,a.c);this.c=fWb(b,a.d);this.b=tsd(dsd(b.p),a)} -function ZGb(a){var b;a.a=new ct;b=a.b;cHb(a.c,BO(b,(O$b(),N$b)),BO(b,K$b));return a.a} -function sSb(a){var b,c,d;b=new es;for(d=a.Qb();d.Rc();){c=d.Sc();Wr(b,c.$())}return b} -function iWb(a){var b,c;for(c=new qsd(dsd(a.o).b.Qb());c.b.Rc();){b=c.b.Sc();b.d=null}} -function jWb(a){var b,c;for(c=new qsd(dsd(a.o).b.Qb());c.b.Rc();){b=c.b.Sc();b.b=null}} -function WAb(){WAb=p9c;VAb=new XAb('OFF',0);TAb=new XAb(syd,1);UAb=new XAb('NUMBER',2)} -function d7b(){d7b=p9c;c7b=new e7b('SINGLE_ELECTRON',0);b7b=new e7b('ELECTRON_PAIR',1)} -function jjd(){fjd();gjd.call(this,Pkc($doc));(abd(),this.U).className='gwt-TextArea'} -function dcd(){Zbd();var a;if(Tbd){a=new hcd;!!Ubd&&oqc(Ubd,a);return null}return null} -function tVb(a,b){if(mdb(a,b)){a!=b.b&&(b.b=a);SVb(a,new u7b);return true}return false} -function CVb(a,b){if(tdb(a,b)){a!=b.b&&(b.b=a);SVb(a,new u7b);return true}return false} -function cjd(a,b){var c;c=Ejd(a.i,b);if(c!=-1){Tid(a.a,c);return ced(a,b)}return false} -function qud(a,b){var c;c=b.c;b.a.b=b.b;b.b.a=b.a;b.a=b.b=null;b.c=null;--a.b;return c} -function q9c(a,b,c){var d=function(){return a.apply(d,arguments)};b.apply(d,c);return d} -function Er(a,b){var c;for(c=a.length-1;c>=0;c=c-1){if(Vmb(b,a[c])){return c}}return -1} -function doc(a){var b;if(!a.a){b=$doc.getElementsByTagName('head')[0];a.a=b}return a.a} -function aP(a){if(a.c.o.i.q){return qmd(),O0b(Vw(a.c.o))?true:false}return qmd(),false} -function mbb(a){if(a.b.length<6){throw I8c(new bnd('LA must be at least 6!'))}this.a=a} -function Zl(a){ol();Vl.call(this);Yl(this,a);kg((abd(),this.U),'mjs-toggleButton',true)} -function nfd(){ol();ofd.call(this,zkc($doc));(abd(),this.U).className='gwt-FileUpload'} -function nM(a){ex(Mu(a.o.i),(e_(),d_));a.o.i.w.Hf();a.a=null;a.p=null;a.e=null;a.f=null} -function EJ(a){a.p=null;a.b=null;a.c=null;a.a=null;ex(Mu(a.o.i),(e_(),d_));a.o.i.w.Hf()} -function xI(a,b){a.e=true;a.a=a.i;a.i=b.Lh();OI(a,b.Lh(),H9b(b.Lh(),false,K9b(b),LBd))} -function k$(a,b,c){var d,e;for(e=a.b.Qb();e.Rc();){d=e.Sc();d.zh(b,c,(pR(),nR),d.yh())}} -function p5(a,b){var c,d;c=(!a.b&&(a.b=new ltd),a.b);d=c.d.c+c.e.b;Hqd(c,mnd(d),mnd(b))} -function Tub(a,b){var c,d;d=new Frd(b);c=Uub(a,d);return c!=null&&Uub(a,d)==null?c:null} -function Hhb(a,b){var c;if(b){c=b.a.Ad(a);return c>-1?(Cnd(),''+(c+1)):null}return null} -function Wkb(a,b,c){if(nt(a.c,b)&&Ird(a.d,c)){return}a.c=b;Uo(a.a,Zkb(c));!!a.a&&Rkb(a)} -function ynb(a,b,c,d){var e;e=c?(kA(),fA):(kA(),eA);return Dnb(a,e,vPb(b,c,xPb(d)),a.c)} -function iB(a,b,c,d){var e,f;Jud(b,BBd);f=(e=new lB,new fE(e,b,d));return new cB(a,c,f)} -function zGb(a,b){var c;c=RId in document.createElement('a')?b:null;this.a=new lFb(a,c)} -function JM(a,b){if(kvc(b,49)){mx(a,b)}else if(kvc(b,63)){nx(a,b);mx(a,b.c);mx(a,b.d)}} -function XRb(a){var b;if(a.fh()==1){b=a.Me().zd(0);if(kvc(b,167)){return b}}return null} -function NVb(a,b,c){if(!c||c==b||hs(a.n,b)==-1||hs(a.n,c)!=-1){return false}return true} -function Jxb(a){if(!a.c){a.c=new red('Unsupported file format.');Of(a.c,cBd)}return a.c} -function xbc(a,b){if(a===b){return true}if(kvc(b,307)){return Hrd(a.a,b.a)}return false} -function Ntc(d,a){var b=d.a[a];var c=(fuc(),euc)[typeof b];return c?c(b):ouc(typeof b)} -function t8b(a,b){var c,d;c=-a.e.b;d=a.e.a;return (c*b.a+d*b.b)/$wnd.Math.sqrt(c*c+d*d)} -function udc(a,b){tdc(a);a.p=true;a.q=false;a.n=200;a.u=b;a.o=null;++a.s;ydc(a.k,Ohc())} -function Nqc(a,b){var c,d;if(!a.d){return}Hi(a.c);d=a.d;a.d=null;c=new drc(d);b.rl(a,c)} -function coc(a){var b;b=Kkc($doc);b['language']='text/css';(ujc(),tjc).Ln(b,a);return b} -function Had(){var a;if(!Gad()){a=(rp(),op,pp());Yhc($hc(Zhc((Whc(),new _hc(a))),Vhc))}} -function oac(){lac();return vuc(quc(MYc,1),nyd,183,0,[hac,eac,kac,dac,jac,iac,gac,fac])} -function Mbc(){Kbc();return vuc(quc(TYc,1),nyd,191,0,[Cbc,Gbc,Hbc,Ebc,Fbc,Dbc,Ibc,Jbc])} -function S8b(){P8b();return vuc(quc(zYc,1),nyd,155,0,[N8b,O8b,J8b,I8b,M8b,L8b,H8b,K8b])} -function eUb(){aUb();return vuc(quc(pWc,1),nyd,201,0,[ZTb,_Tb,XTb,YTb,WTb,UTb,$Tb,VTb])} -function _Nb(){_Nb=p9c;$Nb=vuc(quc(g6c,1),eyd,2,6,['Marvin for JavaScript','BioEddie'])} -function MKb(){MKb=p9c;LKb=new NKb('KILL_PLUS_SIGNS',0);KKb=new NKb('ADD_LONE_PAIRS',1)} -function Jwd(){Jwd=p9c;Iwd=new Nwd;Hwd=new Lwd('ISO-LATIN-1');Gwd=new Lwd('ISO-8859-1')} -function l0b(a){P1.call(this,A$b(y$b(x$b(new F$b,a),cy(a)),m0b(a)).a);vx(this,Hx(this))} -function JO(a,b){if(!a){throw I8c(new bnd('cannot accept null value'))}this.a=a;this.b=b} -function QK(a,b){if(!!a.e&&sac(a.e,b.c)>10){a.c=true;Jl(a,b.c);a.d.Lg(b.c);a.o.i.w.Hf()}} -function Wuc(a){if(Nuc(a,(cvc(),bvc))<0){return -Juc(Quc(a))}return a.l+a.m*vzd+a.h*$Kd} -function Ukc(a){return (Hnd(a.compatMode,bKd)?a.documentElement:a.body).clientHeight|0} -function TNd(){return dbc(cbc(this.a,$wnd.Math.max(2,$wnd.Math.min(10,5*this.b.Yd()))))} -function $j(a,b){var c;c=(Cqd(a.a,b)?Eqd(a.a,b).a:0)+1;c<=0?Jqd(a.a,b):Hqd(a.a,b,mnd(c))} -function OR(a,b,c){var d;d=b.substr(c+1);nod(a.c,d);if(d.length!=0){a.a=false;a.b=false}} -function D_(a,b,c){var d,e;if(!a){return a_(),_$}e=dT(b.j,c);d=L$(e.oh(),zS(a));return d} -function Umd(a,b){var c;if(!a){return}b.o=a;var d=Rmd(b);if(!d){l9c[a]=[b];return}d.Fp=b} -function RSb(a,b){var c;if(!QSb(a,b)){throw I8c(new LSb)}c=new VSb(a);kl(b,c);return c.a} -function jSb(a){var b,c;c=new es;for(b=0;b0?d:0.77;this.b=e;this.e=f} -function i$b(a,b){h$b.call(this,a);(a==(p$b(),o$b)||a==m$b)&&(b>0?(this.a=b):(this.a=1))} -function o9c(a,b){for(var c in b){b[c]['configurable']=true}Object.defineProperties(a,b)} -function lkd(b){var a=b.f;return a.contentWindow.document.designMode.toUpperCase()=='ON'} -function pfd(a,b,c){var d,e,f;e=a.rows[b];for(d=0;dc&&c>=0){return a.a.e}return null} -function IHb(a,b,c){if(!b){return}Ygc(a.el(),b.a,b.b);Mgc(a.el(),-c);Ygc(a.el(),-b.a,-b.b)} -function Llb(a,b){if(b.a&&FOb(b)){ySb(a.b,(Xrd(),Xrd(),Urd));bt(jQb(EOb(b)),new Xlb(a.b))}} -function pyb(a){var b;b=Yxb(a,THd);return pvc((qmd(),pmd))===pvc(Yxb(a,Fyd))&&!!b&&!b.sd()} -function hTb(a){var b,c,d;d=a.Re();for(c=new qsd(d.b.Qb());c.b.Rc();){b=c.b.Sc();b.d=null}} -function BVb(a,b){if(!b){return}if(hs(a.r,b)==-1){Wr(a.r,b);KVb(a,b);b.v=a;SVb(a,new u7b)}} -function BUb(a,b){switch(b.k){case 0:return CUb(a);case 1:return AUb(a);default:return a;}} -function zjd(a,b){var c,d;d=gbd((abd(),b.U));c=vo(a,b);c&&Qic(a.e,Ajc((ujc(),d)));return c} -function k5(a,b,c,d,e){var f;f=(Cnd(),''+c);f=b&&c==0?'-'+f:f;n5(a,d-f.length,e);a.a+=''+f} -function zxd(a,b,c,d){var e,f;f=d?a.c:a.a;e=Bqd(ztd(f.d,b));!e?(e=c):Mxd(e,c);Atd(f.d,b,e)} -function kwb(a,b,c,d,e,f,g){this.c=a;this.f=b;this.b=c;this.a=d;this.i=e;this.d=f;this.e=g} -function TL(a){dH.call(this,a);this.d=new VM(this.o);this.a=new HL(this.o);bH(this,this.a)} -function mg(a,b){a.style.display=b?'':bzd;b?a.removeAttribute(izd):a.setAttribute(izd,jzd)} -function k9c(a,b){typeof window===Zxd&&typeof window['$gwt']===Zxd&&(window['$gwt'][a]=b)} -function Arc(a,b){while(b[0]=0){++b[0]}} -function Zvd(a,b){((hwd(),ewd)?null:b.c).length==0&&jwd(b,new vwd);Iqd(a.a,ewd?null:b.c,b)} -function h6(a,b){var c;return c=new r7(s9c(b)),a.a.Oi(sdc(l6((!a.b&&(a.b=new m6),null),c)))} -function HP(a,b){var c,d;for(d=gP(a).d.Me().Qb();d.Rc();){c=d.Sc();c.lm(new Tac(c.Lh(),b))}} -function Sn(a){var b,c;for(c=a.a.O.Qb();c.Rc();){b=c.Sc();kvc(b,714)&&b.Vc(null)}a.a.O.Pb()} -function iq(a){if(a.b){Tl(a.a,a.b.uo());Tl(a.d,a.b.vo());Tl(a.j,a.b.wo());Tl(a.k,a.b.xo())}} -function Ri(a,b){return new Xi(vuc(quc(W0c,1),Iyd,340,0,[b.Zc(a),b.Yc(a),b.Xc(a),b.Wc(a)]))} -function Qzb(){Qzb=p9c;Pzb=new Srd(vuc(quc(UYc,1),nyd,69,0,[(kcc(),Xbc),Qbc,Rbc,Sbc,Vbc]))} -function bdc(){bdc=p9c;adc=hc((Xcc(),vuc(quc(ZYc,1),nyd,206,0,[Wcc,Rcc,Ucc,Scc,Tcc,Vcc])))} -function $ab(){Yab();return vuc(quc(oJc,1),nyd,184,0,[Wab,Qab,Tab,Rab,Uab,Sab,Vab,Xab,Pab])} -function $kc(a){return ((Hnd(a.compatMode,bKd)?a.documentElement:a.body).scrollWidth||0)|0} -function Wjb(a){if(a.b!=a.a){gbb(a.c,ojb(pjb(Ljb(Ijb(a.b,a.a)))));a.b=a.a;a.a=new Njb(a.b)}} -function zxb(a,b,c){this.d=a;this.c=b;this.b=G1(false,jLb(b.b));this.a=c;Kxb(a,Axb(this.b))} -function SZ(a,b,c,d,e,f){PZ();this.d=b;this.b=c;this.c=new NZ(a,b,c,d,e,f);this.a=TZ(a,f.r)} -function Lub(a,b,c){var d;d=Dub(a,c);if(d){bt(d.xl(),new Sub(a,b));return true}return false} -function Nib(a,b){var c;if(b){c='o'+$md(++a.a);eld(b,WDd,c);Lkd(a.c,b);return c}return null} -function pib(a){fib();var b;b=Eqd(a.Vl(),(kcc(),Qbc));if(b!=null){return s9c(b)}return null} -function Efb(a,b){var c;c=Pib(a.c,eEd);eld(c,'x',(Cnd(),''+b.a));eld(c,'y',''+b.b);return c} -function y8b(a,b){var c;if(Cqd(b.c,a)){return Eqd(b.c,a)}c=new E8b(a);Hqd(b.c,a,c);return c} -function cRb(a,b){var c;c=new qad(20,-20);return iad(lad(b,kH(new qad(a.b/2,a.a/2),a.d)),c)} -function Ptd(a,b){var c;c=a.a.get(b);if(c===undefined){++a.c}else{Etd(a.a,b);--a.b}return c} -function Ng(a,b){var c;c=(ujc(),tjc).An(b);if(njc(c)){return Oic((abd(),a.U),c)}return false} -function _H(a){a.d=false;(!hy(Lu(a.o.i).b)||a.i!=LG(a))&&ZH(a);iy(Lu(a.o.i).b)||(a.f=false)} -function bH(a,b){if(b!=a&&b!=a.k){Jl(b,a.p);!!a.k&&a.n&&a.k.tg();a.k=b;!!a.k&&a.n&&a.k.qg()}} -function O6(a,b){k6();var c;c=a!=null?a.length==0?null:a:R6(b);Q6(b);M6(b);return new b6(c)} -function OM(a,b){if(Ex(b,a.c)){if(!Ex(b,a.d)){return 0}}else if(Ex(b,a.d)){return 1}return 2} -function OFb(){var a;a=new Kgd;kg((abd(),a.U),GHd,true);a.U.size=4;a.U.maxLength=4;return a} -function rPb(a){var b,c,d;d=new es;b=a[aGd]||[];for(c=0;c2.31){SP(gP(a));a.a=true}else a.a&&WP(gP(a))} -function rM(a,b){dH.call(this,a);this.c=b;bH(this,(!this.b&&(this.b=new qM(this.o)),this.b))} -function kV(a,b,c,d,e){iV(this);Xr(this.e,a);this.b=b;this.a=lbc(this.b,e);this.d=c;this.c=d} -function wcb(a,b,c){var d;Lqd(a.a);Bfb(b,a.a);if(Gqd(a.a,tEd)){d=Fqd(a.a,tEd);Q2b(c,Abc(d))}} -function Zhb(a,b,c){var d,e;while(b.Rc()){d=b.Sc();e=xhb(a.a,(bjb(),Yib),'');Yhb(e,d,c,iFd)}} -function Ihb(a,b){var c,d;for(d=new Vqd((new Sqd(b)).a);d.b;){c=Uqd(d);_hb(a,c.yp(),c.Ok())}} -function Ofb(a,b){var c,d;for(d=new Vqd((new Sqd(a)).a);d.b;){c=Uqd(d);eld(b,c.yp(),c.Ok())}} -function Bhb(a,b){var c,d;return d=(c=Eqd(a.e,b),!c&&!!a.j?Dhb(a.j,b):c),d?tld(d.a,WDd):null} -function Ehb(a,b){var c,d;d=(c=Eqd(a.e,b),!c&&!!a.j?Dhb(a.j,b):c);return d?tld(d.a,WDd):null} -function Rqb(a,b,c){var d;d=ynb(a.e,b,a.c,c);if(d){bt(d,new Wqb(a));return true}return false} -function ORb(a,b){var c;for(c=0;c0;--d){IR(Yr(a.a,d-1),b,true)}c||IR(a.c,b,true)} -function UU(a,b,c){var d,e;return VU((d=uBd,e=p1b(a),e!=-1&&(d=(YU(),Eqd(XU,mnd(e)))),d),b,c)} -function t8(a,b,c){var d,e;d=a.wg();e=Bqd(ztd(b.d,d));if(e!=null){nod(c,a.oj(s9c(e)));return}} -function T_(a){var b;b=a[RAd]||{};if(!!b&&(b.color||null)!=null){return new Y$(b)}return null} -function Mgb(a,b,c){var d,e;d=Eqd(a.b,b);if(d){e=b.Xl().d+c;Ogb(a,d.a+e);return e*2}return -1} -function znb(a){var b,c,d,e;b=new is;for(d=0,e=a.length;d=0&&a.a.b.c.vd()>b){return dbc(a.a.b.c.zd(b))}return tW(a,b)} -function pJb(a,b){var c;c=new jRb(a.b,false);return 'data:image/svg+xml;base64,'+Ws(iRb(c,b))} -function Fnb(a,b){var c;return Dnb(a,(kA(),jA),(c={'structure':b},JSON.stringify(c)),new uPb)} -function aTb(a,b){var c,d,e;c=new es;for(e=b.Qb();e.Rc();){d=e.Sc();Wr(c,new mSb(d))}return c} -function AEb(a,b){this.c=new es;this.e=VEb(new WEb(this));this.b=new iFb;this.d=b;xEb(this,a)} -function pqb(a,b,c,d){this.f=a;this.c=new jud;this.d=d;this.e=b;this.b=c;this.a=new uqb(this)} -function Wz(a,b,c,d,e){this.e=a;this.a=c;this.f=b;this.d=d;this.i=e;this.b=lbc(this.e,this.f)} -function Bgd(a){xgd();En(this,new Jgd(this,a.c,a.d,a.a));(abd(),this.U).className='gwt-Image'} -function Pod(a){var b;b=suc(uvc,jyd,23,a.d,15,1);Eod(a.a,0,b,0,a.d);return new gpd(a.e,a.d,b)} -function Xod(a,b){var c;if(b.e<=0){throw I8c(new jmd(PLd))}c=bpd(a,b);return c.e<0?Xpd(c,b):c} -function O9b(a,b){var c,d;return c=a,d=b,Zmd(a,0)<0&&(c=kBd+a),Zmd(b,0)<0&&(d=kBd+b),Zmd(c,d)} -function mJb(a,b,c){var d;d=b.globalAlpha;b.globalAlpha=c;Ggc(b,a.a.Un(),0,0);b.globalAlpha=d} -function vpd(a,b,c){var d,e,f;d=0;for(e=0;e>>31}d!=0&&(a[c]=d)} -function Nr(a,b){var c,d;for(d=b.Qb();d.Rc();){c=d.Sc();if(!a.qd(c)){return false}}return true} -function FWb(a,b){if(_r(a.w,b)||_r(a.v,b)||_r(a.r,b)){SVb(a,new u7b);return true}return false} -function td(a,b){if(b==Byd){return qmd(),a.f?true:false}if(!a.i){return null}return Fqd(a.i,b)} -function cad(a){if(!a){return ''}return Vsc((Qsc(),!Psc&&(Psc=new itc(irc())),Qsc(),Psc),a.a)} -function l$(a,b,c,d){g$();var e;n$.call(this,b,c,(e=e$(b),Xrd(),new ksd(o$(new p$(c,d),a,e))))} -function P1(a){by.call(this,A$b(C$b(y$b(x$b(new F$b,dsd(a.r)),dsd(a.s)),dsd(a.A)),dsd(a.u)).a)} -function FPb(a){return ys(GPb(EPb(a['north']),EPb(a['south']),EPb(a['west']),EPb(a['east'])))} -function Xkc(a){return ((Hnd(a.compatMode,bKd)?a.documentElement:a.body).scrollHeight||0)|0} -function CP(a){return (kBd+$wnd.Math.ceil($wnd.Math.atan2(a.b,a.a)*30/jBd-0.5)/30*jBd%kBd)%kBd} -function mdd(){var b=$wnd.onresize;$wnd.onresize=Yxd(function(a){try{ecd()}finally{b&&b(a)}})} -function aqb(a){var b,c;for(c=new Frd(a.a);c.a=a.c.length){throw I8c(new Eud)}a.b=a.a;b=a.c[a.a];Ojd(a);return b} -function Tod(a){var b;if(a.b==-2){if(a.e==0){b=-1}else{for(b=0;a.a[b]==0;b++);}a.b=b}return a.b} -function ptc(a){var b;if(a==0){return 'UTC'}if(a<0){a=-a;b='UTC+'}else{b='UTC-'}return b+rtc(a)} -function rtc(a){var b,c;b=a/60|0;c=a%60;if(c==0){return Cnd(),''+b}return Cnd(),''+b+':'+(''+c)} -function jg(a){var b,c;b=a.className||'';c=Mnd(b,dod(32));if(c>=0){return b.substr(0,c)}return b} -function SD(a){var b,c;if(a.d){for(c=new iud(new gud(a.d));c.b!=c.c.a.b;){b=hud(c);b.d.lm(b.e)}}} -function Ifb(a,b){var c,d;for(d=new qsd(dsd(b.k).b.Qb());d.b.Rc();){c=d.b.Sc();Cfb(a,Hfb(a,c))}} -function Ht(a,b){var c,d;for(d=b.Jd().Qb();d.Rc();){c=d.Sc();Cqd(a.a,c)&&Ct(Eqd(a.a,c),b.Kd(c))}} -function eyb(a,b){var c,d;for(d=new Frd(b);d.a0){for(b=0;b0&&b<=126?h1b[b-1].c:null),nob(a.f,b))}} -function DEb(b){try{return EEb(b)}catch(a){a=H8c(a);if(kvc(a,46)){return null}else throw I8c(a)}} -function xfb(b,c,d){try{yVb(b.c,new qVb(seb(d),c))}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}} -function YRb(a){var b,c;for(c=a.jh().Qb();c.Rc();){b=c.Sc();if(kvc(b,189)){return b}}return null} -function m0b(a){var b,c,d;d=new std;for(c=a.Qb();c.Rc();){b=c.Sc();Lr(d,b.Ul())}return new gs(d)} -function cbc(a,b){var c,d,e;d=new qad(a.b.a-b,a.b.b-b);e=a.c+2*b;c=a.a+2*b;return new ibc(d,e,c)} -function uP(a,b){this.c=new es;this.d=new xT(true,eCd);this.f=a;this.e=b;En(this.e,new vP(this))} -function PEb(a,b,c,d,e){this.a=b;this.b=new NEb(d,a.b);KEb(this.b);this.c=new SEb(e);OEb(this,c)} -function aob(a,b){vd.call(this,'+ R-group attachment');this.a=b;Hqc(a.a,(Pw(),Ow),a,this)} -function mqb(a,b){vd.call(this,'- R-group attachment');this.a=b;Hqc(a.a,(Pw(),Ow),a,this)} -function Kgd(){ol();LEb.call(this,Qkc($doc),(!bad&&(bad=new dad),bad),(!$9c&&($9c=new aad),$9c))} -function SL(a){!!a.k&&a.k.Rd();ex(Mu(a.o.i),(e_(),d_));a.o.i.w.Hf();a.b=null;a.c=false;bH(a,a.a)} -function Rgd(a){var b;b=(abd(),a.U).selectedIndex;return b==-1?null:(Mgd(a,b),vlc(a.U)[b].value)} -function xmd(a){smd==null&&(smd=new RegExp(sCd));return smd.test((Cnd(),String.fromCharCode(a)))} -function ihd(a,b){var c,d;for(d=new Frd(b);d.a0&&a.a-1&&b0&&a<=126&&h1b[a-1].a==0){return eib}return a>0&&a<=126?h1b[a-1].c:null} -function KU(){HU();return vuc(quc(wFc,1),nyd,141,0,[tU,BU,zU,AU,xU,yU,CU,uU,GU,vU,DU,EU,wU,FU])} -function U5(){R5();return vuc(quc(eIc,1),nyd,151,0,[Q5,P5,O5,F5,G5,H5,L5,M5,N5,I5,E5,K5,J5,D5])} -function cZ(){_Y();return vuc(quc(oGc,1),nyd,140,0,[VY,PY,ZY,NY,$Y,TY,YY,QY,RY,XY,WY,SY,MY,OY,UY])} -function qac(){qac=p9c;pac=hc((lac(),vuc(quc(MYc,1),nyd,183,0,[hac,eac,kac,dac,jac,iac,gac,fac])))} -function Egd(a,b){var c;c=_ic((abd(),b.U),kLd);Hnd(dKd,c)&&(a.a=new Fgd(a,b),wic((pic(),oic),a.a))} -function he(a,b){var c;pe(a,b);c=new qe(a,b);return !b.e&&(b.e=new Cqc),tqc(b.e,(ce(),ce(),be),b,c)} -function wvd(a,b){var c;this.c=a;c=new es;gvd(a,c,b,a.b,null,false,null,false);this.a=new $qd(c,0)} -function Mud(a,b){var c;if(b===a){return true}if(!kvc(b,309)){return false}c=b;return Gud(a.a,c.a)} -function h4(a,b){var c,d;d=1;c=K4(a,d++);while(c){if(Nr(C2b(c),b)){return c}c=K4(a,d++)}return null} -function W3(a){var b;b=Xmd(a,10);switch(b){case -1:return '0';case 0:return null;default:return a;}} -function Y3(a){switch(a){case 1:return X1b(),S1b;case 2:return X1b(),T1b;default:return X1b(),U1b;}} -function AGb(){var a;if(tGb()){a=(FGb(),new HGb);if(EGb){return new CGb(a)}}return new uGb(new wGb)} -function lEb(a){var b,c;c=DEb(a.e);!c&&(c=mnd(0));b=Wf(a.a)?Qdd(a.a):null;return new KL(mnd(c.a),b)} -function QWb(a,b){var c,d;for(d=b.Qb();d.Rc();){c=d.Sc();if(qtd(a.a.i,c)){return true}}return false} -function Cgb(a,b){var c,d;c=new ltd;d=b.Lh();Iqd(c,a.Pj(),$md(d.a));Iqd(c,a.Qj(),$md(d.b));return c} -function xEb(a,b){var c,d;for(d=new Vqd((new Sqd(wEb(b))).a);d.b;){c=Uqd(d);uEb(a,c.yp().a,c.Ok())}} -function DSb(a){var b;b=auc(a,'templates');if(!b||!b.Rn()){throw I8c(new vqd(cuc(a)))}return b.Rn()} -function jbd(a){abd();var b;b=Bbd(qbd,a);if(!b&&!!a){(ujc(),a).stopPropagation();tjc.Bn(a)}return b} -function ded(a,b){var c;qo(a,b);c=a.b;a.b=Djd(a.i,b);if(a.b!=c){!_dd&&(_dd=new ged);fed(_dd,c,a.b)}} -function D8b(a,b){if(!!b&&(!jad(b.b,a.e.b)||b.c!=a.e.c||b.a!=a.e.a)){a.e=b;!!a.d&&SVb(a.d,new u7b)}} -function T(a,b){return ovc(a)?Hnd(a,b):mvc(a)?a===b:lvc(a)?a===b:jvc(a)?a.V(b):uuc(a)?a===b:nt(a,b)} -function V(a){return ovc(a)?dxd(a):mvc(a)?qvc(a):lvc(a)?a?1231:1237:jvc(a)?a.X():uuc(a)?Zwd(a):ot(a)} -function ij(b,c){try{return b.wc(c)}catch(a){a=H8c(a);if(kvc(a,109)){return false}else throw I8c(a)}} -function Xr(a,b){var c,d;c=b.wd();d=c.length;if(d==0){return false}Awd(a.a,a.a.length,c);return true} -function Yrd(a,b){Xrd();var c,d,e,f;f=false;for(d=0,e=b.length;d=0||a.b-a.d>=0)){U9b(a,b.a,b.b,b.a,b.b);return}S9b(a,b.a,b.b,b.a,b.b)} -function mCb(a,b){b.Pd()&&(b._k()||(b.md(),false)?(a.c=true):sCb(a,b.md()));Uo(a,b.Pd());return true} -function gTb(a){var b;b=new ltd;yqd(b,a.Wl());Hqd(b,(kcc(),_bc),a.Ji());Hqd(b,Obc,mnd(a.u));return b} -function y1b(a){var b;b=gTb(a);Hqd(b,(kcc(),$bc),mnd(a.p));Hqd(b,acc,a.r);Hqd(b,gcc,a.bn());return b} -function egd(a){var b;if(a.b>=a.d.a.length){throw I8c(new Eud)}b=Yr(a.d,a.b);a.a=a.b;dgd(a);return b} -function N9b(a,b,c){var d,e,f,g;g=(c-b)/(a+1);d=new es;e=b;for(f=0;f>>24<<24>>24;b[++c]=a>>>16<<24>>24;b[++c]=a>>>8<<24>>24;b[++c]=a<<24>>24} -function dVb(a,b,c){if(Zr(a.b,b,0)==-1&&Zr(a.a,c,0)==-1){Wr(a.b,b);Wr(a.a,c);return true}return false} -function $3b(a,b){if(b){if(a.b==b.b){if(a.a!=null){return Hnd(a.a,b.a)}return b.a==null}}return false} -function Tqd(a){if(a.a.Rc()){return true}if(a.a!=a.d){return false}a.a=new Dtd(a.e.d);return a.a.Rc()} -function GI(a){switch(a.k){case 0:return s6b(),h6b;case 1:return s6b(),q6b;default:return s6b(),m6b;}} -function kab(a){switch(a.k){case 4:return 1;case 5:return 3;case 6:case 7:return 2;default:return 0;}} -function sm(a,b){var c;c=(ujc(),tjc).An(b);if(njc(c)){return Oic(Mic((abd(),hed(a.q))),c)}return false} -function Pr(a,b){var c,d,e;c=false;for(d=a.Qb();d.Rc();){e=d.Sc();if(!b.qd(e)){d.Tc();c=true}}return c} -function yH(a,b){var c,d;for(d=b.Ml().Qb();d.Rc();){c=d.Sc();if(E2b(c,b)==a){return true}}return false} -function rk(a){nk();var b;for(b=0;b0){return r2(a.a.Oi(ceb(Pkd(Kld(c.a,0)))))}return MWb()} -function nZ(a,b,c){var d;d=(b?b.k+1:0)*lZ+(c?c.k+1:0);!a.a[d]&&(a.a[d]=new p0(b,c,true));return a.a[d]} -function V4(a,b,c,d){var e,f,g;g=Fqd(a.a,b);if(g){for(f=g.Qb();f.Rc();){e=f.Sc();d.Ui(e,c)}}Kqd(a.a,b)} -function LD(a){var b,c;for(c=new qsd(dsd(a.b.C.v).b.Qb());c.b.Rc();){b=c.b.Sc();Hqd(a.a,mnd(b.a),b.b)}} -function Ugb(a,b){var c,d;for(d=new Frd(b);d.ab){return 1}if(a==b){return 0}return isNaN(a)?isNaN(b)?0:1:-1} -function lib(a){if(a==119){return (WZb(),DXb).a+':'}else if(a==120){return (WZb(),gZb).a+':'}return '0'} -function nwd(a){if(ewd){return suc(_7c,dMd,536,0,0,1)}return ds(a.a,suc(_7c,dMd,536,a.a.a.length,0,1))} -function Fkc(a,b,c,d,e){return (ujc(),tjc).un(a,eKd,true,true,0,b,c,d,e,false,false,false,false,2,null)} -function Hgd(a,b,c,d){!!a.a&&((abd(),a.U)[kLd]='',undefined);clc((abd(),a.U),b.a);rjc(a.U,c);qjc(a.U,d)} -function cbd(a,b,c){abd();var d;d=Zad;Zad=a;b==_ad&&zcd((ujc(),a).type)==8192&&(_ad=null);c.Ib(a);Zad=d} -function rpd(a,b){var c;c=b>>5;a.d+=c+(jnd(a.a[a.d-1])-(b&31)>=0?0:1);upd(a.a,a.a,c,b&31);Qod(a);a.b=-2} -function t9b(a,b){var c;c=b!=(Iac(),Fac)?nac(b.j!=null?b.j:''+b.k):null;!!c&&Wr(a,(c.d+c.c)/2);return a} -function Vid(a,b){var c,d;d=a.a.i.c-1;for(c=1;c>22);e=a.h+b.h+(d>>22);return Auc(c&XKd,d&XKd,e&YKd)} -function Vuc(a,b){var c,d,e;c=a.l-b.l;d=a.m-b.m+(c>>22);e=a.h-b.h+(d>>22);return Auc(c&XKd,d&XKd,e&YKd)} -function kl(a,b){var c,d,e;d=new el(a);while(d.a<=d.b.length){e=cl(d);c=new Aod(e);jl(d,c)&&b.Pc(e,c.a)}} -function lg(a,b){if(!a){throw I8c(new nQb(gzd))}b=bod(b);if(b.length==0){throw I8c(new bnd(hzd))}ng(a,b)} -function Cg(a,b){if(a.Tb()){throw I8c(new end('SimplePanel can only contain one child widget'))}a.Ub(b)} -function $fd(a,b){Gfd.call(this);Vo(this,new Nfd(this));Efd(this,new jgd(this));Yfd(this,b);Zfd(this,a)} -function zdd(){ol();ydd.call(this);zed(this.a,nLd,false);(abd(),this.U).href=nLd;this.U.target='_blank'} -function BI(a,b){var c,d;c=Ku(a.o.i,b);d=OBd;if(!c){d=DI(a,b);c=CI(a,d)}!!c&&c.Lh()!=a.i?KI(a,c):LI(a,d)} -function h8(a,b){var c,d;if(b1b(d1b(b.b))){for(d=a.e.mj(b).Qb();d.Rc();){c=d.Sc();Wr(a.j,c);ptd(a.d,c)}}} -function QP(a,b,c){if(!b){return}_P(a,b.Lh(),lad(b.Lh(),XP(a).Lh()),c);if(a.c){I2b(a.c,b);a.c.d.zl(a.c)}} -function LU(a,b,c){return $wnd.Math.max(c?d9c(P8c($wnd.Math.round(b))):d9c(P8c($wnd.Math.round(a*b))),1)} -function vxb(a,b){ALb(a.c,xxb(a,Rf(b.a.d).selectedIndex),a.a,new FLb(CEb(b.a.f),b.b));rm(Ixb(a.d),false)} -function Fbb(a,b){var c;if(Lcb(a.a.f)){if(b.Fj(qEd)){c=b.Cj(qEd);return J4(a.a.f,Xmd(c,10))}}return null} -function krb(a){var b,c;b=new std;c=a.b.i;if(!Sx(c.A)){Lr(b,dsd(c.A.r));Qqd(b,cWb(c.C))}return new gs(b)} -function bZ(a){_Y();var b,c,d,e;for(c=cZ(),d=0,e=c.length;d1&&(b=Xnd(b,1,b.length-1));return b} -function ind(a){var b;if(a<0){return EId}else if(a==0){return 0}else{for(b=OLd;(b&a)==0;b>>=1);return b}} -function cl(a){var b;b=dl(a);a.aa.b&&(d=trd(a.d),d);zQ(a,new FQ(0))} -function S_(a,b){var c,d;if(b){d=T_(b);if(d){c=b0(a.a,b);c.a.a.length==0&&c.b.a.length==0||Ytd(a.b,d,c)}}} -function nbc(a){var b,c,d;d=new es;b=a.e;if(b>0){c=a.a.a.length;Xr(d,c>b?z9b(b,a.a,a.d,a.f):a.a)}return d} -function Zsc(a,b){var c,d,e;e=a.a.length;for(d=0;d=48&&c<=57&&gmd(a,d,c-48+b&hyd)}} -function fg(a,b){b==null||b.length==0?((abd(),a.U).removeAttribute(azd),undefined):gjc((abd(),a.U),azd,b)} -function kGb(a,b){aGb(a.b.d,a.a.Di()?'':b.b);En(a.b.a,'marvinjs_untitled_file.'+a.a.Ai()[0]);pFb(a.b.a,b)} -function Xld(a){var b,c,d,e;if(a.a==null){return}for(c=a.a,d=0,e=c.length;d-1&&d==b.a)){e=jDb(b);return new fE(c,e,a.a)}return null} -function Chb(a,b){var c,d;d=Eqd(a.e,b);if(d){c=tld(d.a,GEd);if(c!=null){return Und(c,' ',0)[0]}}return null} -function BG(a,b){var c;if(a.k){for(c=0;c3||b.Nl()<-3){return true}}return false} -function jrb(a){var b,c;for(c=a.Qb();c.Rc();){b=c.Sc();if(b.Hl()==1&&b.Zl()=='H'){return false}}return true} -function w0b(a,b){var c,d;if(!b.sd()){d=b.Ad(a)+1;c=d0)&&Ml(a);b?kg((abd(),a.U),tAd,true):kg((abd(),a.U),tAd,false)} -function qIb(a,b,c){c!=null&&c.length!=0?ZHb(a,c):Vnd(b.toLowerCase(),rDd)||ZHb(a,XCd);return a.p.Xn(Qad(b))} -function Cdb(a){return a.n.a.length==0&&a.k.a.length==0&&a.t.a.length==0&&a.u.a.length==0&&a.A.a.length==0} -function Zjd(){return function(a){var b=this.parentNode;b.onfocus&&$wnd.setTimeout(function(){b.focus()},0)}} -function Mcd(a){Icd();var b;b=!jbd(a);if(b||!Ecd){return}bbd(a,Ecd)&&((ujc(),a).stopPropagation(),undefined)} -function yv(a,b){var c,d;c=a.c;d=a.d;if(b.c==c||b.d==c){return c}else if(b.c==d||b.d==d){return d}return null} -function M3(a){var b;if(ps(a.a.c)){b=q7(a.a);if(Hnd(b.substr(0,7),vDd)){return L3(b,a.a)}return b}return null} -function DAb(a){var b;b=new ajd;Yid(b,a.b,'Basic');a.d&&Yid(b,a.a,'Advanced');Uid(b.b,0);Nf(b.b,eId);return b} -function kk(a){var b,c,d,e;b=new es;for(d=0,e=a.length;d0&&b<=126?h1b[b-1].c:null)))}return c} -function wEb(a){var b,c,d;d=new ltd;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();Hqd(d,mnd(b.a),b.b)}return d} -function Ffd(a,b,c,d){var e;a.oo(b,c);e=sfd(a,b,c,true);if(d){vg(d);$cd(a.i,d);abd();Lic(e,lbd(d.U));yg(d,a)}} -function Qfb(a,b,c,d){var e;e=ugb(a.c,oEd);eld(e,uEd,b);eld(e,IEd,(Cnd(),''+c));d!=null&&eld(e,FEd,d);return e} -function sCb(a,b){var c;c=b;!!a.a&&(c=a.a.$k(b));if(!a.c&&vCb(a.f,c)){return false}a.f=c;a.c=false;return true} -function Kpd(a,b){var c,d;c=b>>5;if(a.d>>d:0;Qod(a)} -function $pd(a,b,c){var d;for(d=c-1;d>=0&&a[d]===b[d];d--);return d<0?0:S8c(K8c(a[d],SLd),K8c(b[d],SLd))?-1:1} -function sd(a,b,c,d){if(b!=null&&c!=null&&d!=null&&T(c,d)){return}!a.e&&(a.e=new Cqc);vqc(a.e,new ee(b,c,d),a)} -function zC(a,b){if(!!a&&!!a.C&&!dsd(a.C.q).a.sd()){return vB(uB(uB(new wB,new HD(a)),new yC(a,b)),a)}return b} -function vGb(a){if(window.URL&&window.URL.createObjectURL&&(!a||tGb())){return new uGb(new yGb(a))}return null} -function $Ab(a,b){if((WAb(),UAb)==a){if(!b){throw I8c(new vqd(AId))}return Cnd(),''+b.a}return TAb==a?'*':null} -function $_b(a){Y_b();if(Gqd(X_b,a)){return Fqd(X_b,a)}throw I8c(new bnd('No enum constant HomologyGroup.'+a))} -function Yud(a){var b;b=a.a.a.length;if(b>0){return Xud(b-1,a.a.a.length),Yr(a.a,b-1)}else{throw I8c(new Msd)}} -function Zud(a){var b;b=a.a.a.length;if(b>0){return Xud(b-1,a.a.a.length),$r(a.a,b-1)}else{throw I8c(new Msd)}} -function b8b(a){var b,c,d;d=0;c=a.a.a[0];for(b=1;bc){c=Yr(a.a,b);d=b}}return d} -function tfd(a){var b,c,d;for(c=0;cc&&b.a.length!=0&&(b.a.length==1?Pr(a,z9b(c,a,b.a[0],kBd)):u9b(a,c,b))} -function qgb(a,b){var c,d,e;for(d=new Frd(b);d.a-1){Ugd(a.a,c);Zt(a,b)}else{throw I8c(new bnd('No item to select'))}} -function BH(a,b){wH.call(this,a,(s6b(),m6b),true);if(!b){throw I8c(new und('Prototype cannot be null'))}this.a=b} -function Ooc(){var a;this.a=(a=document.createElement(Nzd),'draggable' in a||'ondragstart' in a&&'ondrop' in a)} -function e9(a){var b,c,d;d=0;for(c=new Frd(a);c.a=0&&Wr(e,mnd(zgb(a.a,c)))}return e} -function WNb(a){var b,c,d;Xrd();a.Fd(null);b=new yod;for(d=a.Qb();d.Rc();){c=d.Sc();b.a+=''+c;b.a+=oyd}return b.a} -function zEb(a){var b,c;gg(a.a,false);for(c=new Frd(a.c);c.a=a.c){throw I8c(new kmd)}--a.c;for(c=b;c1&&OX(a.c.c[1],b,c)){return true}return JX(a,b,c)&&sac(a.f,b)=0&&b<=127?Mnd(a.a,dod(b))!=-1?a.b.qj('\\'+String.fromCharCode(b)):a.b.pj(b):a.b.qj(hbb(b))} -function XSb(b,c){try{return YSb(n3(b.a,c))}catch(a){a=H8c(a);if(kvc(a,46)){throw I8c(new LSb)}else throw I8c(a)}} -function Hnb(b,c){var d;try{at(b.b,b.c.Hd(c))}catch(a){a=H8c(a);if(kvc(a,46)){d=a;b.a.a.uk(d.i)}else throw I8c(a)}} -function ozb(b){var c;try{c=Xmd(CEb(b.b),10);return c}catch(a){a=H8c(a);if(kvc(a,65)){return -1}else throw I8c(a)}} -function LAb(a,b){if((p$b(),m$b)==a||o$b==a){if(!b)throw I8c(new vqd(AId));return new i$b(a,b.a)}return new h$b(a)} -function cG(a,b){this.b=b;this.n=a;this.k=new gG(this);this.f=new hG(this);this.i=new iG(this);this.j=new jG(this)} -function RAb(a,b){this.a=a;this.b=b;this.c=QAb(this.a,b);this.c.Bb(nId);og(this.a,new SAb(this),(cpc(),cpc(),bpc))} -function $ob(a){vd.call(this,'R\u2423');ud(this,Lyd,'R\u2423');ud(this,zGd,new hk(jk(Und('R, ',',',0))));this.a=a} -function Fxb(a){var b,c;c='Cannot load renderer module for %s';for(b=0;b1||b>=0&&a.b<3} -function dl(a){var b;b=a.a;while(a.a1&&Wr(a.d,new W0b(d,Cqd(a.a,c)?Eqd(a.a,c):c,b.o))}} -function AM(a,b){var c,d;d=b.Kf();d.Pb();a.Mg(b,a.Ng());d.gl();a.Sg(d);c=a.Qg();i0(a.o.i,b.Kf(),c);a.Rg(c,b);d.qe()} -function AL(a,b){var c,d;c=gH(new iH(a.f.Lh(),LBd),gw(a.o.i,b));d=E9b(a.f);return rac(c.a,c.b,0,d.a,d.b,0)<0.77?d:c} -function xS(a,b){var c,d,e;if(a){for(d=a.Qb();d.Rc();){c=d.Sc();e=Hnd(BS(c.b.b),'')?'= ':'';uS(b,c.a+' '+e,AS(c))}}} -function Lpd(a,b){var c,d;d=b>>5==a.d-1&&a.a[a.d-1]==1<<(b&31);if(d){for(c=0;d&&cc.b.a&&b.b>c.b.b&&b.aa.a.length){throw I8c(new bnd('too much delimiters'))}this.b=new Z7b(a);this.c=b} -function Ii(a,b){if(b<0){throw I8c(new bnd('must be non-negative'))}!!a.e&&Hi(a);a.d=false;a.e=mnd(Pi(Ni(a,a.c),b))} -function jY(a,b,c,d){var e,f;e=new p0((pR(),jR),(NT(),KT),true);f=tY(a,d,c);f!=null&&b.tf(new qad(d*0.5,0),f,a.i,e)} -function C$(a,b,c,d,e){s$();var f;f=new z$(a,new es,c,d,false);f.f=T1(e,(O$b(),M$b));f.c=tS(c,d,e,f);f.a=b;return f} -function Xbb(a){var b,c,d,e;e=new es;for(c=0,d=a.length;c0){c=b.Ml().Qb();while(c.Rc()&&d>0){hs(a.s,c.Sc())!=-1||--d}}return d>0} -function Brd(a){var b;Swd(a.a!=a.b);b=a.d.a[a.a];Ard(a.b==a.d.c&&b!=null);a.c=a.a;a.a=a.a+1&a.d.a.length-1;return b} -function Vod(a){var b;if(a.c!=0){return a.c}for(b=0;b0&&a<=126&&h1b[a-1].a==0&&a!=119&&a!=120){return a>0&&a<=126?h1b[a-1].c:null}return '0'} -function ZFb(){if(typeof $wnd.MSInputMethodContext!=$Id||typeof $wnd.msIsStaticHTML!=$Id){return false}return true} -function eod(){Cnd();try{return sqd('UTF-8')}catch(a){a=H8c(a);if(kvc(a,580)){throw I8c(new dmd)}else throw I8c(a)}} -function uhc(){uhc=p9c;rhc=new vhc('BEVEL',0,'bevel');shc=new vhc('MITER',1,'miter');thc=new vhc('ROUND',2,'round')} -function ohc(){ohc=p9c;lhc=new phc('BUTT',0,'butt');mhc=new phc('ROUND',1,'round');nhc=new phc('SQUARE',2,'square')} -function n4(){n4=p9c;m4=new RegExp('\\w+=((\\w+|-?\\d+.?\\d*|[<>=]+)|\\(\\d+( (\\w+|-?\\d+\\.?\\d*))+\\)|\\".*\\")')} -function Hv(a,b,c){var d,e,f;for(f=new qsd(c.b.Qb());f.b.Rc();){e=f.b.Sc();d=dT(a.j,e);!!d&&!!d.gh()&&Q9b(b,d.gh())}} -function rhb(a,b){var c,d;c=new ltd;Iqd(c,azd,T1(b,(O$b(),M$b)));d=T1(b,L$b);d!=null&&Otd(c.e,'leftName',d);Ihb(a,c)} -function bm(a,b){var c;mg((abd(),a.U),b);c=Mic(a.U);!!c&&(Ind((ujc(),c).tagName,'td')||Ind(c.tagName,'th'))&&mg(c,b)} -function yib(a,b){var c;eld(b,'rgroupID',$md(a.a));if(a.b){c=a.b;c.b&&eld(b,'restH','on');c.a!=null&&eld(b,REd,c.a)}} -function Ysc(a,b,c,d){var e;if(d>0){for(e=d;e=d||b>24}return b} -function $J(a){var b,c,d,e;b=-a.a.Xl().c;e=a.d.a.o.t&&a.c>0?a.c*2:0;d=new std;for(c=b;c$wnd.Math.abs(hw(a.o.i,LBd))} -function TO(a){a.p=null;a.b=null;a.a=true;ex(Mu(a.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));a.o.i.w.Hf()} -function VP(a){var b,c,d;d=new es;if(Tx(new Cy(a.d))){for(c=a.d.Ne().Qb();c.Rc();){b=c.Sc();Wr(d,new qP(b))}}return d} -function Z_(a,b){var c,d,e;e=new es;for(d=0;d=0&&HEb(a.e,''+c);Sdd(a.a,(qmd(),pmd==b.a?true:false));gg(a.a,b.a!=null)} -function Axb(a){var b,c,d;d=new es;for(c=new Frd(a);c.a=((kcc(),Vbc)==a.b?3:-1)){return ''+b}}return null} -function SOb(b,a){if(b[a]){if(typeof b[a]==cyd){return b[a].split(',')}if(Array.isArray(b[a])){return b[a]}}return []} -function trd(a){var b;b=a.a[a.c-1&a.a.length-1];if(b==null){return null}a.c=a.c-1&a.a.length-1;a.a[a.c]=null;return b} -function Dxd(a,b){var c,d,e,f;f=a;d=f.length;for(c=0;c=a.p||eb&&d.Wg(a[f-1],a[f])>0;--f){g=a[f];a[f]=a[f-1];a[f-1]=g}}} -function lxd(a,b,c){var d;d=b[c]<<24;d|=(b[++c]&255)<<16;d|=(b[++c]&255)<<8;d|=b[++c]&255;a.f[a.i]=d;++a.i==16&&kxd(a)} -function kh(a){var b,c;for(c=new Frd(a.a);c.a180&&(d=-180+(d-180));if(a.a.a!=null){e=ZM(c,d);a.e=e+UAd}else{a.e=null}} -function HO(a,b){var c,d;c=cbc(a.a.e,a.b);d=cbc(a.a.e,-a.b);if(GO(b,a.a.b,c)&&!GO(b,a.a.b,d)){return IO(a,b)}return null} -function SWb(a,b){var c,d,e;for(d=new Frd(b);d.ae){f=c;d=a.a[c];e=d.f}}return f} -function Bbc(a){var b,c,d,e;b=(d=a>>>0,d.toString(16));e=new yod;for(c=0;c<8-b.length;c++){e.a+='0'}e.a+=''+b;return e.a} -function Oc(a){var b,c,d,e;for(b=(a.k==null&&(a.k=(Gic(),e=suc(b6c,lyd,2352,0,0,1),Iic(e))),a.k),c=0,d=b.length;c-129&&a<128){b=a+128;c=(ond(),nnd)[b];!c&&(c=nnd[b]=new gnd(a));return c}return new gnd(a)} -function nh(a,b,c){var d;if(a.j){d=(abd(),Nkc($doc));hbd(a.d,d,b);Lic(d,lbd(c))}else{d=dbd(a.d);abd();$ad.eo(d,lbd(c),b)}} -function DG(a,b){if(a.d.a.a.a){nG(a.d,new UE(new qad(soc(b),toc(b)),yG(ilc(b.a)),plc(b.a),mlc(b.a)||olc(b.a)));a.o=true}} -function DY(a){if(a.k==null){if(!a.j.b.d){a.k=Lac(a.j.e,a.c.Lh(),fV(a.j));a.k=a.k+(a.k>0?EX(a):0)}else{a.k=0}}return a.k} -function MJ(a,b){var c,d;for(d=new Frd(a.a);d.a=0&&a.a.b.c.vd()>b+1){return Aac(dbc(a.a.b.c.zd(b)),dbc(a.a.b.c.zd(b+1)))}return tW(a,b)} -function AY(a){if(a.d==null){if(!a.c.th()){a.d=Lac(a.c.Lh(),a.j.e,fV(a.c));a.d=a.d+(a.d>0?EX(a):0)}else{a.d=0}}return a.d} -function EY(a){if(!a.e){AY(a);a.e=tac(a.c.Lh(),a.j.e,AY(a)*(a.w.a==(s6b(),r6b)||a.w.a==l6b||a.w.a==p6b?0.8:1))}return a.e} -function Hn(){var a;a=new nm(false,zAd);(Jg(),Ig).Ho(fbd((abd(),a.U))).className=AAd;a.K=true;Xg(a,(Fhd(),Ehd));return a} -function vF(a){var b;b=new Cy(a.a);Xx(b,null,Lx(a.a));Xx(b,null,Ix(b));$x(b,Nx(b));Zx(b,Mx(a.a));wF(b);zy(b,a.b);return b} -function wV(a,b,c){var d,e;d=xV(a,new jX((HU(),tU),false),b);e=lad(c,new qad(d.f+d.e/2,d.i+d.d/2));OU(d,e.a,e.b);return d} -function hRb(a,b,c){this.a=a;this.c=new xRb(b,c);this.d=new oT(a,a.e,new vv(new OUb));this.b=new LS(this.d,a.e,a,this.c)} -function mob(a,b,c,d){job.call(this,c,a,new BH(a,b));ud(this,Lyd,b.Zl());ud(this,Nyd,WU(b.Hl()));ud(this,zGd,d);this.a=b} -function Mfb(a,b,c){eld(c,lEd,'*');Ofb(a.b.Oj(b),c);eld(c,iEd,(Cnd(),!b.b&&(b.p?GWb(b.p):(b.b=mnd(0))),''+(b.b?b.b.a:0)))} -function PV(a,b){var c;if(b){c=a.a.b.a-b.e-a.f;OU(b,c,a.a.b.b-b.d/2);RV(a.b,b);Wr(a.d,new ibc(new qad(b.f,b.i),b.e,b.d))}} -function X5b(a,b){var c,d;for(d=U5b(a).Qb();d.Rc();){c=d.Sc();b?!!c.e&&lsd(dsd(c.e.w),c)&&Z4b(new j5b(c.i,c.e)):t5b(c.i)}} -function T6(a,b){var c,d,e;for(d=new Frd(b);d.a=17){if(c<7&&c%2==0){if(Hb(a)==c){return -a.f-a.b.Xl().c}}}return -b-a.b.Xl().c} -function jC(a,b){var c,d;for(d=new Vqd((new Sqd(a.a)).a);d.b;){c=Uqd(d);if(pvc(c.Ok())===pvc(b)){return c.yp()}}return null} -function jl(a,b){var c;while(a.a<=a.b.length){c=cl(a);b.a+=oyd;b.a+=c;if(Hnd(c.substr(0,6),kAd)){return il(a)}}return false} -function zD(a){var b;if(a){b=a.C;if(!!a.q||b.e||(!b.a&&(b.a=new UWb(b)),b.a).a.i.a.vd()!=0){return new yD(a)}}return new pD} -function BV(a,b,c){var d,e;if(c!=null){e=a.Jf(c,b.c.b,(z0(),y0));d=VQ(c,e.a)+e.a/2;b.a=d;return new nV(e,b,b,c)}return null} -function D$(a){var b,c;if(P4b(a)==(V4b(),S4b)&&!!VN(a)){return eO(WN(a))}b=i4b(T1(a,(O$b(),K$b)));c=!b?null:f4b(b);return c} -function Kf(a){var b,c,d;b=(ujc(),tjc).yn(a);if(!njc(b)){return}d=b;if(Lf(d,(abd(),zcd(a.type)))){c=Bcd(d);!!c&&cbd(a,d,c)}} -function s9c(a){var b;if(Array.isArray(a)&&a.Hp===t9c){return Jmd(U(a))+'@'+(b=V(a)>>>0,b.toString(16))}return a.toString()} -function hL(a,b){return !a.d.Ig().sd()&&b.b.vd()==2&&Zrd(b.a.zd(0).Ml(),b.a.zd(1).Ml())&&Zrd(b.a.zd(0).Ul(),b.a.zd(1).Ul())} -function owd(a,b){return cwd?b.Dp()>=(mwd(a),800):dwd?b.Dp()>=(Uvd(),800):gwd?b.Dp()>=(Uvd(),900):fwd&&b.Dp()>=(Uvd(),hAd)} -function nqd(a,b,c,d,e){lqd();if(b==0||d==0){return}b==1?(e[d]=pqd(e,c,d,a[0])):d==1?(e[b]=pqd(e,a,b,c[0])):oqd(a,c,e,b,d)} -function I4(a){var b,c,d;for(c=new Frd(a.e);c.a0){return true}}return false} -function H4(a,b,c){var d,e;d=new Srd(vuc(quc(tWc,1),zBd,49,0,[b]));e=new Z1(d);Y1(e,(O$b(),N$b),c);Y1(e,K$b,'ht');Wr(a.i,e)} -function J4b(){F4b();return vuc(quc(AXc,1),nyd,94,0,[o4b,p4b,q4b,r4b,s4b,t4b,u4b,v4b,w4b,x4b,y4b,z4b,A4b,B4b,C4b,D4b,E4b])} -function wdc(){xdc.call(this,(!Adc&&(Adc=!!$wnd.requestAnimationFrame&&!!$wnd.cancelAnimationFrame?new Bdc:new Hdc),Adc))} -function SA(a,b){BA.call(this,b,b.C,y$b(new F$b,new Srd(vuc(quc(xWc,1),lyd,715,0,[a]))).a);this.a=a;this.b=new Yu(this.o.A)} -function V0b(a,b,c){if(!b||!a){throw I8c(new bnd('End atom or Begin atomset cannot be null'))}this.a=a;this.b=b;yTb(this,c)} -function S9b(a,b,c,d,e){a.c=$wnd.Math.min(a.c,b);a.d=$wnd.Math.min(a.d,c);a.a=$wnd.Math.max(a.a,d);a.b=$wnd.Math.max(a.b,e)} -function eIb(a){a.o.e!=null?!!Rf(a.p.Tn())&&!!Mic(Rf(a.p.Tn()))&&(Mic(Rf(a.p.Tn())).style[eJd]=a.o.e,undefined):Dw(a.o,qBd)} -function cdc(a){var b,c;c=new std;if(a.a.length!=0){Lr(c,a.a[0].op());for(b=1;b0?(Hsc(),Fsc):(Hsc(),Gsc)}return Hsc(),Gsc} -function xB(a){var b,c;for(c=new Frd(a.a);c.a0&&(d.a+=',',d);nod(d,Ntc(a,c))}d.a+=']';return d.a} -function d$(a,b){var c,d;for(d=new Frd(a.o);d.a1?b.c.a[1]:null;!!c&&(a.e=c.xh())}} -function v9(a,b){var c,d;this.a=a;O7.call(this);for(d=new qsd(dsd(b.n).b.Qb());d.b.Rc();){c=d.b.Sc();U(c)==lWc&&Wr(this.j,c)}} -function Meb(a,b){var c,d;for(d=new Frd(a.b);d.a=0;f--){g=Ppd(g,g,d,e);(c.a[f>>5]&1<<(f&31))!=0&&(g=Ppd(g,b,d,e))}return g} -function I4b(){F4b();var a,b,c,d,e;a=new es;for(c=J4b(),d=0,e=c.length;de){d=b.yp();e=b.Ok().a}}return d} -function Ecb(a){var b,c,d,e,f;d=a.c;for(c=(f=(new drd(d.a)).a.mp().Qb(),new erd(f));c.a.Rc();){b=(e=c.a.Sc(),e.Ok());ndb(a.k,b)}} -function Dmb(a,b){var c,d,e,f;this.b=sid(a);d=(e={},Cmb(e,Emb()),Cmb(e,Rf(this.b)),e);c=(f=zOb(b),vs(yOb(f),d,false),f);this.a=c} -function Joc(a,b){var c;Ioc.call(this);this.a=b;!ioc&&(ioc=new Dpc);c=Yr(ioc,a);if(!c){c=new es;Cpc(ioc,a,c)}c.od(this);this.b=a} -function Tjb(a,b,c){gc.call(this,a,b);this.a=new Tsd(qLc);Psd(this.a,(vjb(),ujb),c[0]);Psd(this.a,tjb,c[1]);Psd(this.a,rjb,c[2])} -function pld(b,c){var d;try{return Pkd(b.ap(c))}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new Xkd(c,d))}else throw I8c(a)}} -function ms(b){var c;try{return fuc(),muc(s9c(b))}catch(a){a=H8c(a);if(kvc(a,452)){c=a;throw I8c(new vqd(c.i))}else throw I8c(a)}} -function mwd(a){var b,c;if(a.b){return a.b}c=ewd?null:a.d;while(c){b=ewd?null:c.b;if(b){return b}c=ewd?null:c.d}return Uvd(),Tvd} -function iab(a){switch(a.k){case 5:return -1;case 1:return 1;case 2:return 4;case 3:return 8;case 4:return 12;default:return 0;}} -function nUb(a){this.a=new jud;if(!a||a.vd()<2){throw I8c(new bnd('Atoms must contain at least 2 different atoms'))}Lr(this.a,a)} -function aW(a,b,c,d){var e,f;if(!c||c.sd()){return}for(f=c.Qb();f.Rc();){e=f.Sc();$V(a,b,new qad(e.b.a+e.c/2,e.b.b+e.a/2),1.2,d)}} -function d6(a,b,c){var d;d=new Z1((Xrd(),new ksd(ssd(dsd(a.n),b-1))));Y1(d,(O$b(),K$b),fc((e4b(),d4b)));Y1(d,N$b,'1-'+c);FVb(a,d)} -function Uw(a,b){og(b,a.e,(Qpc(),Qpc(),Ppc));og(b,a.e,(Npc(),Npc(),Mpc));og(b,a.e,(Jpc(),Jpc(),Ipc));og(b,a.e,(Gpc(),Gpc(),Fpc))} -function Vv(a){var b,c;Uo(a.a,(Lz(),Iz));if(fIb(a.a)&&gIb(a.a,Iz)){hIb(a.a,false);c=a.C;nT(a.j,c);b=JS(a.b,c);xIb(a.a,b);tw(a.e)}} -function Ac(a){var b,c;a.i=true;for(c=0;c=0;d--){g=J8c(Z8c(f,32),K8c(a[d],SLd));e=Gpd(g,c);f=d9c($8c(e,32))}return d9c(f)} -function Dub(a,b){var c,d;for(d=new Frd(a.f.a);d.a0){d[--b]=Dnd(a,--c)}return Cnd(),kod(d,0,d.length)} -function DJb(a,b){var c,d;if(!b){return null}c=EJb(a,b.b);d=EJb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} -function FJb(a,b){var c,d;if(!b){return null}c=GJb(a,b.b);d=GJb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} -function bRb(a,b){var c,d;if(!b){return null}c=cRb(a,b.b);d=cRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} -function eRb(a,b){var c,d;if(!b){return null}c=fRb(a,b.b);d=fRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} -function rRb(a,b){var c,d;if(!b){return null}c=sRb(a,b.b);d=sRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} -function uRb(a,b){var c,d;if(!b){return null}c=vRb(a,b.b);d=vRb(a,new qad(b.b.a+b.c,b.b.b+b.a));return abc(),jbc(c.a,c.b,d.a,d.b)} -function $sc(a,b){var c,d;c=vuc(quc(uvc,1),jyd,23,15,[0]);d=_sc(a,b,c);if(c[0]==0||c[0]!=b.length){throw I8c(new And(b))}return d} -function qpd(a){var b,c,d;if(a.e==0){return 0}b=a.d<<5;c=a.a[a.d-1];if(a.e<0){d=Tod(a);if(d==a.d-1){--c;c=c|0}}b-=jnd(c);return b} -function fvd(a,b){var c,d,e;d=null;e=a.b;while(e){c=a.a.Wg(b,e.d);if(c==0){return e}if(c>=0){e=e.a[1]}else{d=e;e=e.a[0]}}return d} -function bWb(a,b,c){var d,e;for(e=new qsd(dsd(a.q).b.Qb());e.b.Rc();){d=e.b.Sc();if(d.c.Bm()==b&&iXb(d)==c){return d}}return null} -function IVb(a,b,c,d){var e;e=new Q3b(b);if(!lsd(dsd(a.n),b)){return null}yTb(e,c);e.c=d;vTb(e);sVb(a,dsd(a.o).b.vd(),e);return e} -function hbb(a){var b,c,d,e;b=new zod;b.a+='\\u';e=(d=a>>>0,d.toString(16));for(c=e.length;c<4;c++){b.a+='0'}b.a+=''+e;return b.a} -function CK(a,b,c,d){dH.call(this,a);this.b=c;this.f=d?(t0b(),s0b):(t0b(),r0b);this.a=new yK(a,c,this.f);bH(this,this.a);this.i=b} -function cob(a,b){vd.call(this,'Add to this group');ud(this,Lyd,'R[+]');this.a=b;this.b=a;Wub(this.a,this);Iu(a.i,this);bob(this)} -function ipd(a){Nod();if(a.length==0){this.e=0;this.d=1;this.a=vuc(quc(uvc,1),jyd,23,15,[0])}else{this.e=1;apd(this,a);Qod(this)}} -function rP(a){if(a.c.a.length!=0){if(a.a>=0.5){a.b=-0.1}else if(a.a<=0){Hi(a.e.b);a.c.a=suc(_5c,lyd,1,0,5,1)}a.a+=a.b;a.f.w.Hf()}} -function rib(a){switch(a.k){case 9:return 'SD';case 10:return 'SA';case 11:return 'DA';case 12:return 'Any';default:return null;}} -function Uwd(a,b,c){if(a<0||b>c){throw I8c(new lmd(fMd+a+gMd+b+', size: '+c))}if(a>b){throw I8c(new bnd(fMd+a+' > toIndex: '+b))}} -function Us(a){var b;b=v9c(Ss,a);if(!b){throw I8c(new vqd('Invalid version string: '+a))}return new Rs(Vs(b[1]),Vs(b[2]),Vs(b[3]))} -function dK(a,b,c){var d;d=ZJ(a,b);if(d<0){return null}d+=-a.a.Xl().c;if(d<0&&!b2b(d)){return null}return c.qd(mnd(d))?mnd(d):null} -function KCb(a,b,c){var d;if(b!=null){for(d=1;d=0&&((abd(),a.U).style[ezd]=b+dzd,undefined),c>=0&&((abd(),a.U).style[czd]=c+dzd,undefined))} -function en(a,b,c){b>=0&&((abd(),a.U).style[ezd]=b+dzd,undefined);c>=0&&((abd(),a.U).style[czd]=c+dzd,undefined);a.d=b;a.b=c;hn(a)} -function Hgb(a,b,c,d){var e;e=Pib(a.c,VEd);eld(e,pFd,c?'0 0':'0');eld(e,DEd,d?'1':'0');Lkd(e,Ggb(a,b));c&&Lkd(e,Ggb(a,b));return e} -function Erc(a,b,c,d){var e,f;f=c-b;if(f<3){while(f<3){a*=10;++f}}else{e=1;while(f>3){e*=10;--f}a=(a+(e>>1))/e|0}d.j=a;return true} -function nud(a,b){var c,d;if(b>=a.b>>1){d=a.c;for(c=a.b;c>b;--c){d=d.b}}else{d=a.a.a;for(c=0;c0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))&&Xz(new Yz(a),b,Tu(a.v))}} -function qh(a,b,c){var d;if(!b.c){return}Ch(a,b);if(c&&!!b.b){a._b();(Sfd(),Rfd).Do((abd(),a.U));d=b.b;xic((pic(),oic),new $gd(d))}} -function $kd(b,c){var d;try{return Pkd(rld(b.a,c))}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new Vkd(d,b))}else throw I8c(a)}} -function ald(b,c){var d;try{return Pkd(sld(b.a,c))}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new Vkd(d,b))}else throw I8c(a)}} -function Tlc(){Rlc();return vuc(quc(j_c,1),nyd,67,0,[Glc,ylc,Blc,Clc,Elc,Flc,Hlc,Ilc,Jlc,Mlc,Olc,Nlc,Qlc,Klc,Llc,Plc,Alc,zlc,Dlc])} -function mpd(a){Nod();if(a.length==0){throw I8c(new And(RLd))}if(a[0]<0){this.e=-1;_od(this,a)}else{this.e=1;apd(this,a)}Qod(this)} -function cV(a,b){this.i=a.i;this.a=a.a;this.e=kH(a.e,b);this.b=new jV(a.b,b);this.j=a.j;this.n=a.n;this.c=a.c;this.d=a.d;this.f=a.f} -function Wud(){Uud();var a,b,c;c=Tud+++Date.now();a=qvc($wnd.Math.floor(c*bMd))&16777215;b=qvc(c-a*gLd);this.a=a^1502;this.b=b^aMd} -function Ind(a,b){if(b==null){return false}if(Hnd(a,b)){return true}return a.length==b.length&&Hnd(a.toLowerCase(),b.toLowerCase())} -function cK(a,b,c){var d,e;d=ZJ(a,b);if(d<0){return null}d+=-a.a.Xl().c;if(d<0){return null}e=d/2|0;return c.qd(mnd(e))?mnd(e):null} -function bab(a,b,c){var d,e;if(ztd(a.d,b)){d=s9c(Bqd(ztd(a.d,b)));e=Hnd('*',d)?-2:Hnd('0',d)?-1:Xmd(d,10);return Fab(c,e)}return ''} -function jeb(a,b){var c,d,e;e=new es;c=a.To();for(d=0;d1){return e}}}return null} -function M6b(a,b){var c,d,e;e=dsd(a.r);for(d=new qsd(dsd(b.r).b.Qb());d.b.Rc();){c=d.b.Sc();if(e.b.qd(c)){return true}}return false} -function cqd(a,b,c){var d,e;d=K8c(c,SLd);for(e=0;L8c(d,0)!=0&&ed.a){return 1}if(c.bd.b){return 1}return 0} -function tbc(a){var b,c,d,e;c=a.a.length;if(c<2){return a}d=0;while(d<=c-1){b=ubc(a,d++);e=a.a[b];$r(a,b);a.a[a.a.length]=e}return a} -function Zsd(a){var b,c,d,e;if(kvc(a,272)){return btd(a)}!a.sd();d=a.Qb();c=d.Sc();e=$sd(c);while(d.Rc()){b=d.Sc();atd(e,b)}return e} -function soc(a){var b,c;c=a.b;if(c){return b=a.a,Ojc((ujc(),b).clientX||0)-tjc.Cn(c)+tjc.In(c)+Ykc(c.ownerDocument)}return klc(a.a)} -function Bn(a){var b,c,d,e;return $wnd.Math.max((b=Qf(a.a),c=(Zbd(),Zkc($doc)),b-c),(d=Qf(a.a),e=Zkc($doc)+Ukc($doc),e-(d+Sf(a.a))))} -function $h(a,b){if(b=Zkc($doc)+Ukc($doc)-a.c){return a.c-b}return ai(a.c,b,Zkc($doc),Zkc($doc)+Ukc($doc))} -function mMb(){jMb();return vuc(quc(TTc,1),nyd,114,0,[aMb,_Lb,VLb,iMb,hMb,fMb,TLb,YLb,dMb,ZLb,ULb,eMb,SLb,WLb,XLb,gMb,$Lb,cMb,bMb])} -function l5(a,b){var c,d;if(b.length>3){nod(a,b.substr(0,3))}else{d=$wnd.Math.max(0,3-b.length);for(c=0;c36){throw I8c(new And('Radix out of range'))}if(a.length==0){throw I8c(new And(RLd))}opd(this,a,b)} -function Yg(a){a.G=true;if(!a.A){a.A=wkc($doc);hjc(a.A,a.C);a.A.style[xzd]=(Umc(),yzd);a.A.style[pzd]=(tnc(),qzd);a.A.style[rzd]=qzd}} -function Xs(c){return $wnd.btoa(encodeURIComponent(c).replace(/%([0-9A-F]{2})/g,function d(a,b){return String.fromCharCode('0x'+b)}))} -function TZ(a,b){var c,d;if(!b){return OZ}d=a.a.Cf()!=null?uBd:WU(a.a.Hl());c=new UZ(d,uBd);return (O1b(),M1b)==a.c?c:new UZ(c.b,c.a)} -function J1(){C1();return vuc(quc(qHc,1),pDd,87,0,[m1,k1,t1,r1,q1,z1,d1,y1,c1,g1,h1,e1,f1,n1,_0,l1,u1,s1,v1,w1,a1,b1,Z0,$0,x1,p1,o1])} -function m5(a,b){k5(a,b<0,(h5(),qvc(b)),5,32);a.a+='.';k5(a,false,qvc($wnd.Math.abs(b*$wnd.Math.pow(10,4)%$wnd.Math.pow(10,4))),4,48)} -function E8(a){var b;if(!a.a){b=new es;Wr(b,new z8);Wr(b,new A8);Wr(b,new L8);Wr(b,new M8);Wr(b,new O8);Wr(b,new u8);a.a=b}return a.a} -function WUb(a,b){var c,d,e;c=new es;if(b!=null){for(e=new Vqd((new Sqd(a.a)).a);e.b;){d=Uqd(e);Hnd(b,d.Ok())&&Wr(c,d.yp())}}return c} -function idc(a){var b,c,d,e,f;f=new otd(a.Vl());for(c=occ(),d=0,e=c.length;d',-1);if(c.length==1){return c}for(b=0;b'+c[b+1]}return c} -function _fb(b,c){var d;d=agb(b,c);if(d!=null){try{return new ggb(cgb(d))}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}}return new xgb} -function yEb(b){var c;gg(b.a,false);c=null;try{c=vEb(b)}catch(a){a=H8c(a);if(kvc(a,20)){gg(b.a,true)}else throw I8c(a)}!!c&&dFb(b.d,c)} -function Yw(a,b){var c;if(a.a==b){return}c=null;if(a.a){c=a.a.p;a.a.tg()}a.a=b;if(a.a){Jl(a.a,c);a.a.qg()}mqc(a.b,new hF,a);a.i.w.Hf()} -function K5b(a,b){var c;a.f.a.length==0&&a.r.a.length!=0&&Wr(a.f,a.r.a[0]);c=$5b((!a.d&&(a.d=new a6b(a)),a.d),b);return c?c:F5b(a,a.i)} -function Cuc(a,b){if(a.h==ZKd&&a.m==0&&a.l==0){b&&(xuc=Auc(0,0,0));return zuc((cvc(),avc))}b&&(xuc=Auc(a.l,a.m,a.h));return Auc(0,0,0)} -function OWb(a,b){var c;c=dsd(b.r);if(msd(dsd(a.a.n),c)){if(!Tx(b)){return Lr(a.a.i,dsd(Bdb(a.a,b).n))}return Lr(a.a.i,c)}return false} -function ced(a,b){var c,d;c=(abd(),abd(),Mic(b.U));d=vo(a,b);if(d){b.Bb('');b.zb('');b.Ab(true);Qic(a.U,c);a.b==b&&(a.b=null)}return d} -function k5b(a){var b,c,d,e;e=new std;for(d=new qsd(dsd(a.a.a.a).b.Qb());d.b.Rc();){c=d.b.Sc();b=E2b(c,a);U(b)==PXc&&ptd(e,b)}return e} -function L4b(a){var b,c,d;this.b=new is;this.a=new is;for(d=a.Qb();d.Rc();){c=d.Sc();b=c.o;!b?Wr(this.a,new O4b(this,c)):Wr(this.b,c)}} -function iqb(a,b){vd.call(this,'Remove from this group');ud(this,Lyd,'R[-]');this.a=b;this.b=a;Wub(this.a,this);Iu(a.i,this);hqb(this)} -function qpb(a,b){var c;wd.call(this,'Zoom all (\u21B2)',b);ud(this,HFd,(nk(),c=Und('ENTER',iAd,0),qk(c[c.length-1],rk(c))));this.a=a} -function P4b(a){if(a.k){return V4b(),R4b}if(a.Fp==OXc){return V4b(),U4b}if(T1(a,(O$b(),N$b))!=null){return V4b(),T4b}return V4b(),S4b} -function z0(){z0=p9c;v0=new A0(ACd,0,'bold ');x0=new A0(BCd,1,'italic ');w0=new A0('BOLD_ITALIC',2,'bold italic ');y0=new A0(wAd,3,'')} -function xnb(a,b){var c;return Dnb(a,(kA(),dA),(c={'structure':b,'parameters':{'autoMappingStyle':'COMPLETE'}},JSON.stringify(c)),a.c)} -function Jic(){if(Error.stackTraceLimit>0){$wnd.Error.stackTraceLimit=Error.stackTraceLimit=64;return true}return 'stack' in new Error} -function aed(){var a;a=(abd(),wkc($doc));a.style[ezd]=fzd;a.style[czd]='0px';a.style['padding']='0px';a.style['margin']='0px';return a} -function _kd(b,c,d){var e;try{return Pkd(cld(b.a,c,d))}catch(a){a=H8c(a);if(kvc(a,109)){e=a;throw I8c(new Vkd(e,b))}else throw I8c(a)}} -function Jpd(a,b){var c;c=b-1;if(a.e>0){while(!epd(a,c)){--c}return b-1-c}else{while(epd(a,c)){--c}return b-1-$wnd.Math.max(c,Uod(a))}} -function kib(a){fib();if(Hnd((WZb(),GXb).a,a.Il())&&Hnd('*',a.Gl())){return jib(6)}else if(kvc(a,261)){return a.bn()}return jib(a.Hl())} -function GH(a){if(iy(Lu(a.o.i).b)){return MG(a)}else if(my(Lu(a.o.i).b)){return SG(a)}else if(ky(Lu(a.o.i).b)){return PG(a)}return null} -function vo(a,b){var c;if(b.T!=a){return false}try{yg(b,null)}finally{c=(abd(),b.U);Qic((null,Ajc((ujc(),c))),c);Hjd(a.i,b)}return true} -function nib(a){fib();var b,c;if(kvc(a,177)){return mib(a)}b=lib(a.Hl());c=oib(a.Vl());if(c.length!=0){return Hnd(b,'0')?c:b+c}return b} -function u2b(a){var b,c,d;if(n2b(a)||o2b(a)){b=Y6b(new a7b(a.f,dsd(a.a),a));if(!!a.A&&!!a.A&&!b.sd()){d=a.A;c=new By;yx(c,b);xWb(d,c)}}} -function PR(a,b){var c,d;if(SR(a,b)){d=false;while(!d&&a.d.a.a.length!=0){c=Zud(a.d);d=c.c==b;JR(c,a.c,d&&((cS(),XR)==b||$R==b)&&a.a)}}} -function y5b(a,b){var c,d;c=G5b(a,b);d=E2b(b,a.i);c.c!=d&&c.d!=d&&(Ex(a,c.c)?(Jud(d,yJd),c.d=d):(Jud(d,yJd),c.c=d));return dVb(a.a,c,b)} -function d0b(a,b){var c,d;for(d=new Frd(S0b(b));d.ad&&(b[d]=null);return b} -function aeb(a,b){var c,d,e,f;f=new es;c=eeb(a,b);for(d=0;db.e){return 1}if(a.eb.d){return a.e}if(a.d0?mnd(c):''))}catch(a){a=H8c(a);if(kvc(a,65)){HEb(b.b,'1')}else throw I8c(a)}} -function KLb(a,b){var c,d,e,f,g;c=JLb(a);if(c!=null){for(e=b.Ai(),f=0,g=e.length;f>5;b&=31;e=a.d+c+(b==0?0:1);d=suc(uvc,jyd,23,e,15,1);upd(d,a.a,c,b);f=new gpd(a.e,e,d);Qod(f);return f} -function wPb(a,b,c){var d={'structure':a,'parameters':{method:b?vBd:'DEHYDROGENIZE'}};c&&(d.parameters.atoms=c);return JSON.stringify(d)} -function Mrc(a){krc();var b,c;b=Msc((Lsc(),Lsc(),Ksc));c=null;a==b&&(c=Fqd(jrc,CHd));if(!c){c=new Lrc(CHd);a==b&&Iqd(jrc,CHd,c)}return c} -function vmd(a,b,c){var d,e;d=Dnd(a,b++);if(d>=55296&&d<=56319&&ba.length||c>b.length){return false}d=a.substr(0,c);e=b.substr(0,c);return Ind(d,e)} -function Bfd(a,b){var c;if(b.T!=a){return false}try{yg(b,null)}finally{c=(abd(),b.U);Qic((null,Ajc((ujc(),c))),c);_cd(a.i,c)}return true} -function nLb(a,b){var c,d;d=new yod;c=a?a.Ic():'';d.a+=''+c;if(b!=null){c.indexOf(':')!=-1?(d.a+=',',d):(d.a+=':',d);d.a+=''+b}return d.a} -function uOb(a){var b,c,d;d=new es;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();Wr(d,new wOb(b))}Xrd();Prd(d.a,d.a.length,null);return d} -function $Vb(a,b,c){var d,e;for(e=new qsd(dsd(a.p).b.Qb());e.b.Rc();){d=e.b.Sc();if(d.c==b&&d.d==c||d.c==c&&d.d==b){return d}}return null} -function Q8b(a,b,c){var d,e,f,g;d=a.a==-1?c.a:b.b.a;e=a.a==1?c.a:b.b.a+b.c;f=a.b==-1?c.b:b.b.b;g=a.b==1?c.b:b.b.b+b.a;return jbc(d,f,e,g)} -function vrd(a,b){var c,d,e,f;d=a.a.length-1;c=b-a.b&d;f=a.c-b&d;e=a.c-a.b&d;Ard(c=f){wrd(a,b);return -1}else{xrd(a,b);return 1}} -function xA(a,b,c){if(!b){throw I8c(new bnd(yBd))}this.e=a;this.c=a.C;new Yu(a.A);this.b=new GE(this.c,b);this.d=c?c:this.c;this.a=new HA} -function Rwd(a,b){if(0>a){throw I8c(new bnd('fromIndex: 0 > toIndex: '+a))}if(a>b){throw I8c(new nmd('fromIndex: 0, toIndex: '+a+eMd+b))}} -function kL(a,b){var c;c=new f2b(a.b.a);e2b(c,gw(a.o.i,b));yQ(a.o.f,new PC(a.o.i,B$b(new F$b,new Srd(vuc(quc(jXc,1),lyd,1005,0,[c]))).a))} -function XN(a,b){if(P4b(a)!=(V4b(),S4b)){throw I8c(new and)}P4b(a)==S4b&&!!VN(a)&&V1(a,VN(a));Q1(a,new pcc(cCd,(Cnd(),''+b),(tcc(),rcc)))} -function vh(a,b,c){if(c<0||c>a.b.a.length){throw I8c(new kmd)}a.j&&((abd(),b.U)[Czd]=2,undefined);nh(a,c,(abd(),b.U));Vr(a.b,c,b);return b} -function $U(a){if(a.a.Cf()!=null){return a.a.Cf()}else if(U(a.a)!=sXc||!a.d){return VU(uBd,a.a.Ki(),a.c)}return UU(a.a.Il(),a.a.Ki(),a.c)} -function D8(a){var b;if(U(a)==lWc){return C8(a)}b=J8(mnd(a.Hl()));if(b!=null){return b}b=F8(a.Vl());if(b!=null){return b}return '#'+a.Hl()} -function RG(a){var b,c;if(YG(a)){for(c=new qsd(dsd(a.o.i.C.v).b.Qb());c.b.Rc();){b=c.b.Sc();if(fy(Mu(a.o.i).a.b,b)){return b}}}return null} -function yL(a){var b,c,d;d=new es;for(c=new qsd(dsd(a.o.i.C.v).b.Qb());c.b.Rc();){b=c.b.Sc();Zr(d,mnd(b.a),0)!=-1||Wr(d,mnd(b.a))}return d} -function e8b(a){var b,c,d,e;b=dyd;c=null;for(e=new Frd(a);e.ad.vd()){b=d.vd();c=d}}return c} -function jpb(a,b){var c,d,e,f;c=new es;f=cWb(a.C);for(e=new Frd(f);e.a>5;b=a&31;d=suc(uvc,jyd,23,c+1,15,1);d[c]=1<14&&kxd(a);a.f[14]=d9c(_8c(b,32));a.f[15]=d9c(K8c(b,-1));kxd(a)} -function b9(a,b){this.b=new Q8(a);this.c=new Y8(this.b,a);this.a=new v9(this,a);this.d=new I9(this.b,this.c,a,b);Fl(this,a.j);s5(this,a.e)} -function qI(a,b){var c,d;$G.call(this,a);this.d=s5b(b,new B0b);d=this.d.a;this.a=new tI(this,d);c=pI(d);this.c=new YT(c);this.b=dbc(Adb(c))} -function enb(){enb=p9c;bnb=new fnb('NORTH',0,'N');anb=new gnb('EAST',1,'E',true);cnb=new fnb('SOUTH',2,'S');dnb=new gnb('WEST',3,'W',true)} -function Occ(){Occ=p9c;Kcc=new Pcc('EDGETYPE',0);Ncc=new Pcc('TOPOLOGY',1);Lcc=new Pcc('REACTING_CENTER',2);Mcc=new Pcc('STEREO_SEARCH',3)} -function RNb(b,c){try{b.b.pb(cOb(b.a.a,c))}catch(a){a=H8c(a);if(kvc(a,46)){b.b.ob(null)}else if(kvc(a,42)){b.b.ob(null)}else throw I8c(a)}} -function mH(a,b){a.j=a.ug();a.j.mm(b);if(!a.i){a.i=new S2b(a.e,a.d,a.j)}else{I2b(a.i,a.d);L2b(a.i,a.j)}lsd(dsd(a.o.i.C.n),a.d)&&a.d.dm(a.i)} -function s6(a,b){var c;if(!a||!b){return}c=b.Lh();b.lm(new Sac(c.a,c.b,b.Ki()));b.hm(a.Nl());b.rm((kcc(),Qbc),Eqd(a.Vl(),Qbc));b.om(a.Sl())} -function s$b(a){var b,c;if(!a.a){a.a=new is;for(c=new qsd(dsd(a.c.n).b.Qb());c.b.Rc();){b=c.b.Sc();U(b)==PXc?Xr(a.a,dsd(b.a.r)):Wr(a.a,b)}}} -function PUb(a){FUb();var b,c;for(c=new qsd(dsd(a.p).b.Qb());c.b.Rc();){b=c.b.Sc();if(b.o==(s6b(),h6b)||b.o==f6b){return true}}return false} -function YUb(a,b){var c,d,e;e=a.Me();for(d=new Frd(b);d.a0?(Cnd(),''+a):''));c.a+=' ';if(b){nod(c,b.a!=null?b.a:'*');b.b&&(c.a+=', Rest H',c)}else{c.a+='*'}c.a+=oyd} -function DZ(a){if(a.b==null){if((O1b(),M1b)==a.n&&!a.k.b.d){a.b=Lac(a.k.e,GX(a,a.i),fV(a.k));a.b=a.b+(a.b>0?EX(a):0)}else{a.b=0}}return a.b} -function FZ(a){if(a.f==null){if((O1b(),M1b)!=a.n&&!a.k.b.d){a.f=Lac(a.k.e,GX(a,a.i),fV(a.k));a.f=a.f+(a.f>0?EX(a):0)}else{a.f=0}}return a.f} -function Pbb(a,b){var c,d,e;e=a.charCodeAt(0);c=Und(a.substr(1),(Cnd(),String.fromCharCode(e)),0);d=new ETb(e!=33,Xbb(c));Mbb(d,b);return d} -function dy(a,b){var c,d,e;e=new es;for(d=new qsd(dsd(a.s).b.Qb());d.b.Rc();){c=d.b.Sc();(c.c==b||c.d==b)&&(e.a[e.a.length]=c,true)}return e} -function zA(a,b,c){var d,e,f;f=Bdb(b,y$b(new F$b,c).a);for(e=new qsd(dsd(f.w).b.Qb());e.b.Rc();){d=e.b.Sc();!!d&&Zr(a.e,d,0)==-1&&Wr(a.e,d)}} -function AA(a,b,c){var d,e,f;f=Bdb(b,C$b(new F$b,c).a);for(e=new qsd(dsd(f.w).b.Qb());e.b.Rc();){d=e.b.Sc();!!d&&Zr(a.e,d,0)==-1&&Wr(a.e,d)}} -function Ngb(a,b,c){var d,e;e=Und(Dld(kld(Yr(a.a,b),pFd).a),' ',0);d='1';if(e.length==2){e[c]='1';d=e[0]+' '+e[1]}Nkd(kld(Yr(a.a,b),pFd),d)} -function $B(a,b,c){var d,e;d=new nD(a.a,dsd(b.r),c);e=ZB(dsd(b.s));return e.a.length==0?d:new AB(a.a,vuc(quc(PEc,1),ABd,38,0,[d,new bC(e)]))} -function RD(a,b,c){var d,e,f;if(0==c){d=new qad(a.a.b,a.a.a.b);e=a.b}else{d=new qad(a.a.a.a,a.a.b);e=a.c}f=Cac(OD(b,c),d,e);return QD(f,b,c)} -function iE(a){var b,c,d,e;e=Cac(gE(new drd(a.o)),a.b,a.j);d=0;for(c=new iud(new gud(a.o));c.b!=c.c.a.b;){b=hud(c);b.d.mm(kH(e[d],a.n));++d}} -function fbc(a,b){if(a.c<=0||a.a<0||b.c<=0||b.a<0){return false}return b.b.a<=a.b.a+a.c&&a.b.a=a.b){throw I8c(new lmd(vLd+b+wLd+a.b))}} -function R1(a,b){var c;c=a.o;if(c){if(b.qd(c)){throw I8c(new bnd('Cannot append twice an s-group to the chain of parents'))}b.od(c);R1(c,b)}} -function Jhd(a){if(!a.j){Ihd(a);a.c||tdd((oid(),sid(null)),a.a)}(Jg(),Ig).Io(Rf(a.a),'rect(auto, auto, auto, auto)');Rf(a.a).style[yAd]=tzd} -function Cc(a,b,c){var d;a.b=c;a.k=b;a.a=a.b.Hl();a.j=tu(a.k,a.b);a.i=false;for(d=0;d0.0154){return false}}return !d.sd()} -function yqb(a){var b,c;for(c=new qsd(dsd(a.r).b.Qb());c.b.Rc();){b=c.b.Sc();if(edc(vuc(quc(tWc,1),zBd,49,0,[b]))){return true}}return false} -function dWb(a,b){var c,d,e;e=new es;for(d=new Frd(b);d.a=0&&a.b>=0)){return}b=an(a,(Xm(),Sm));kvc(b,990)&&(c=gn(a,a.d,Wm,Tm),d=gn(a,a.b,Um,Vm),b.uc(c,d),undefined)} -function FL(a,b){var c,d,e;e=new I3b(uL(a,0));c=new S2b((s6b(),m6b),a.f,e);pTb(e,AL(a,b));d=new By;mx(d,e);nx(d,c);yQ(a.o.f,new PC(a.o.i,d))} -function ZQ(a){return Hnd(iCd,a)||Hnd(jCd,a)||Hnd(kCd,a)||Hnd(lCd,a)||Hnd(mCd,a)||Hnd(nCd,a)||Hnd(oCd,a)||Hnd(pCd,a)||Hnd(qCd,a)||Hnd(rCd,a)} -function hxb(){var a,b,c;b=(tcc(),ds(scc,suc(VYc,IHd,282,0,0,1)));c=suc(g6c,eyd,2,b.length,6,1);for(a=0;a=0;--e,c=c.c){f[e]=c.b}return new Z3b(b,f)} -function QLb(e,f){if(e){var g=new FileReader;g.onload=function(c,d){return function(a){var b=a.target.result;d.nl(b)}}(e,f);g.readAsText(e)}} -function ppd(a){Nod();if(L8c(a,0)<0){if(L8c(a,-1)!=0){return new hpd(-1,W8c(a))}return Hod}else return L8c(a,10)<=0?Jod[d9c(a)]:new hpd(1,a)} -function kod(a,b,c){Cnd();var d,e,f,g;f=b+c;Vwd(b,f,a.length);g='';for(e=b;e0-gv){if(gv>b.b&&b.a<0){return false}return true}return false} -function ey(a,b){var c,d,e;e=new es;for(d=new qsd(dsd(a.u).b.Qb());d.b.Rc();){c=d.b.Sc();Zr(S0b(c),b,0)!=-1&&(e.a[e.a.length]=c,true)}return e} -function v$b(a){var b,c;if(!a.e){a.e=new is;for(c=new qsd(dsd(a.c.n).b.Qb());c.b.Rc();){b=c.b.Sc();U(b)==PXc&&Wr(a.e,b.a)}Xr(a.e,dsd(a.c.w))}} -function vS(a){var b;this.d=a;this.c=new is;this.b=new is;this.a=(oS(),mS).b.b*a.a.Yd();b=e$(a.e.o);this.e=b.b.a+b.c/2;this.f=b.b.b+b.a+this.a} -function cac(a,b,c){var d;this.a=a;d=a.Rl();this.b=b;if(a.Xl()==(X1b(),S1b)){this.c=(c?d:0)+S1b.d;this.d=0}else{this.c=c?d:0;this.d=a.Xl().c}} -function tUb(){tUb=p9c;pUb=new uUb('E',0,'E','(E)');sUb=new uUb('Z',1,'Z','(Z)');qUb=new uUb('EZ',2,'E/Z','(?)');rUb=new uUb(wAd,3,null,null)} -function xUb(a,b,c){if(Zr(C2b(a.a),c,0)!=-1){return true}if((vXb(),sXb)==b){return !qXb(a.a.c,c)}if(tXb==b){return !qXb(a.a.d,c)}return false} -function Qr(a,b){var c,d,e;e=a.vd();b.lengthe&&(b[e]=null);return b} -function Uy(a,b){var c;c=false;kvc(b,63)?(c=_r(a.s,b)):kvc(b,210)?(c=_r(a.A,b)):kvc(b,118)&&(c=_r(a.u,b));c&&(a.b||vqc(a.a,new eF,a));return c} -function BM(a){ex(Mu(a.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_])));a.o.i.w.Hf();a.f=null;Ry(Lu(a.o.i).b)} -function w4(a){u4();var b,c,d,e;for(c=vuc(quc(PHc,1),nyd,380,0,[r4,s4,t4]),d=0,e=c.length;d=f&&d<=e} -function toc(a){var b,c;c=a.b;if(c){return b=a.a,Ojc((ujc(),b).clientY||0)-tjc.Dn(c)+((c.scrollTop||0)|0)+Zkc(c.ownerDocument)}return llc(a.a)} -function jpd(a){Nod();if(a.length==0){this.e=0;this.d=1;this.a=vuc(quc(uvc,1),jyd,23,15,[0])}else{this.e=1;this.d=a.length;this.a=a;Qod(this)}} -function Kc(a,b){Pwd(b!=a,'Exception can not suppress itself.');if(a.j){return}a.n==null?(a.n=vuc(quc(h6c,1),lyd,42,0,[b])):(a.n[a.n.length]=b)} -function bi(a,b){var c,d,e;e=new es;c=new ei(new hi(a.a,b));while((d=ci(c))!=null){e.a[e.a.length]=d}return ds(e,suc(_5c,lyd,1,e.a.length,5,1))} -function Qob(a){var b,c,d,e;e=new es;c=new gs(dsd(a.r));while(c.a.length!=0){b=c.a[0];d=Ey(b);_r(c,b);Or(c,dsd(d.r));e.a[e.a.length]=d}return e} -function ZB(a){var b,c,d;d=new es;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();(b.o==(s6b(),r6b)||b.o==l6b)&&(d.a[d.a.length]=b,true)}return d} -function ik(a){var b,c;c=suc(zxc,gAd,187,a.length,0,1);for(b=0;b0');dAb=new iAb('AS_DRAWN',2,vId);eAb=new iAb('EXACTLY',3,wId)} -function n_b(){l_b();return vuc(quc(WWc,1),zJd,101,0,[W$b,V$b,X$b,U$b,c_b,$$b,a_b,b_b,Y$b,_$b,Z$b,f_b,h_b,S$b,d_b,R$b,e_b,g_b,T$b,j_b,k_b,i_b])} -function Iic(a){var b,c;c=$wnd.Math.min(a.length,5);for(b=c-1;b>=0;b--){if(null.Ip()||null.Ip()){a.length>=b+1&&a.splice(0,b+1);break}}return a} -function Krd(a){var b,c,d,e;if(a==null){return 0}e=1;for(c=0,d=a.length;c2000){cic=a;dic=$wnd.setTimeout(nic,10)}}if(aic++==0){qic((pic(),oic));return true}return false} -function sD(a,b,c){if(!b){throw I8c(new bnd(yBd))}this.i=a;this.e=b;this.d=a.C;this.c=new Yu(a.A);this.b=new GE(this.d,b);this.f=c;this.a=new HA} -function Apb(a,b,c,d){vd.call(this,b);this.gb(Myd,c);this.a=a;this.b=d;Iu(a.i,this);this.c=$z(this.a.i.A);ud(this,Byd,(qmd(),this.c?true:false))} -function OS(a,b){var c,d,e,f;for(e=(f=(new ard((new kud(new drd(a))).a)).a.mp().Qb(),new brd(f));e.a.Rc();){d=(c=e.a.Sc(),c.yp());Q9b(b,d.gh())}} -function Yj(a,b,c){var d,e;if(!c||!b){throw I8c(new tnd)}Hqd(a.a,b,c);for(e=new Frd(fk(b));e.a=b.length*8){return new ipd(b)}else{c=suc(rvc,Kzd,23,qpd(a)/8|0,15,1);Eod(b,0,c,0,c.length);return new ipd(c)}} -function xb(a,b,c){var d;if(a>4){d=6-a-c}else if(a>2){c+a>4?(d=6-a-c):(d=4-a-c)}else{c-=b;c+a>4?(d=6-a-c):c+a>2?(d=4-a-c):(d=2-a-c);d-=b}return d} -function gl(a){var b=!/[^,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]/.test(a.replace(/"(\\.|[^"\\])*"/g,''));if(!b){return null}return eval('('+a+')')||null} -function ex(a,b){if(!b){throw I8c(new bnd('HighlightRenderer cannot be null in Highlight'))}if(!f_((!a.b&&(a.b=(e_(),d_)),a.b),b)){a.b=b;Pv(a.c)}} -function dE(a,b,c){var d,e;BA.call(this,a,a.C,x$b(new F$b,c).a);this.b=b;this.a=new ltd;for(e=c.Qb();e.Rc();){d=e.Sc();Hqd(this.a,d,mnd(d.Nl()))}} -function pS(a){var b,c,d;b=new V9b;for(d=new qsd(dsd(qS(a).c).b.Qb());d.b.Rc();){c=d.b.Sc();Q9b(b,c.xh())}return new hbc(b.c,b.d,b.a-b.c,b.b-b.d)} -function G3(a){D3();var b,c,d;if(x9c(C3,a)){c=F3(B3,a);if(c!=null){b=F3(A3,a);if(b!=null){d=v3(c);return new E3(Xmd(u3(b)[0],10),d)}}}return null} -function B5(a){z5();var b,c,d,e;for(c=vuc(quc(dIc,1),nyd,329,0,[y5,w5,v5,x5]),d=0,e=c.length;d-1){return Ynd(a.name||null,b+1).toLowerCase()}}return null} -function rOb(a,b){var c,d;d=suc(uvc,jyd,23,b.vd(),15,1);for(c=0;c0){Wr(a.b,new wtc(b.a,c));d=b.a.length;0d&&(b.a+=jod(suc(svc,fyd,23,-d,15,1)))}} -function Eod(a,b,c,d,e){Dod();var f,g;U(a);U(c);g=a.length;f=c.length;if(b<0||d<0||e<0||b+e>g||d+e>f){throw I8c(new kmd)}e>0&&xwd(a,b,c,d,e,true)} -function Sj(){var a,b;this.a=y8c();a=this.a.b;_f(this,(abd(),a));this.U.tabIndex=0;b=(!Nj&&(Nj=new Uj),Xj(),Tj);Vj(b);this.U.className='mjs-obf-A'} -function XB(a){var b,c,d;d=new F$b;for(c=new Vqd((new Sqd(a.a)).a);c.b;){b=Uqd(c);nXb(b.yp(),b.Ok().a)}z$b(d,new ard(a.a));Sx(d.a)||zVb(a.b.C,d.a)} -function SI(a,b,c){var d,e;for(e=new qsd(dsd(a.o.i.C.p).b.Qb());e.b.Rc();){d=e.b.Sc();if(d.c==b&&d.d==c||d.c==c&&d.d==b){return false}}return true} -function ojb(a){var b,c,d;if(a.sd()){return ''}b=new Aod('{');for(d=a.Qb();d.Rc();){c=d.Sc();b.a+=''+c;b.a+=','}gmd(b,b.a.length-1,125);return b.a} -function W3b(a){var b;if(!a.b){a.b=new es;for(b=0;b=0&&d>5]|=1<<(c&31))}return d} -function Ep(a,b,c){var d;d=new red(bxb(c));Of(d,(Up(),'mjs-obf-E'));Ffd(a.b,b,0,d);Ffd(a.b,b,1,new Cgd((Tp(),Op).c));Ffd(a.b,b,2,new Cgd((Sp(),Np).c))} -function Fr(a,b,c){var d,e;if(!c){return}e=Gqd(a.b,b)?hvc(Fqd(a.b,b)):a.a;d=Er(e,c);if(d==-1){return}Iqd(a.b,b,Gr(a,Gqd(a.b,b)?hvc(Fqd(a.b,b)):a.a,d))} -function dw(a,b){!!b&&dsd(b.p).a.sd()&&HWb(b);nT(a.j,b);xIb(a.a,JS(a.b,b));XHb(a.a,a.f);Ov(a,(Lz(),Iz));a.v.d=false;Ru(a,b);Ry(a.A);a.w.Hf();Zt(a,a.C)} -function EM(a,b){var c,d;d=jw(a.o.i,FM(a));if(rac(d.a,d.b,0,b.a,b.b,0)<(a.b.d+4)*1.5){return gw(a.o.i,d)}c=Ku(a.o.i,b);if(c){return c.Lh()}return null} -function wE(a,b){var c,d,e;for(d=new Frd(a.$m());d.a11){Wr(b,c.substr(0,11));c=c.substr(11)}b.a[b.a.length]=c;return ds(b,suc(g6c,eyd,2,b.a.length,6,1))} -function H7(a){if(a==null||a.length==0){throw I8c(new bnd('empty line'))}if(a.length<3){throw I8c(new bnd('too short line'))}this.b=a;this.a=7;this.c=3} -function yeb(a){while(_ab(a.c,0)!=-1){_ab(a.c,0)==123?xeb(a):_ab(a.c,0)==10?(bbb(a.c,1),ueb(a,(g9b(),b9b))):Wr(a.a,new Y8b(Aeb(a)))}return new n9b(a.a)} -function wqb(a){var b,c;b=0;c=0;Hnd('ARROWDOWN',a)&&(c=-50);Hnd('ARROWUP',a)&&(c=50);Hnd('ARROWLEFT',a)&&(b=50);Hnd(WFd,a)&&(b=-50);return new qad(b,c)} -function Zvb(a,b){return new Yld(vuc(quc(w5c,1),Iyd,293,0,[og(b,a,(Boc(),Aoc)),og(b,a,(Eoc(),Doc)),og(b,(xpc(),$wnd.clipboardData?new zpc(a):a),wpc)]))} -function Jzb(a){var b,c;c=(X1b(),vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b]));for(b=0;bd&&a.charCodeAt(b-1)<=32){--b}return d>0||b=(mwd(a),800):dwd?b.Dp()>=(Uvd(),800):gwd?b.Dp()>=(Uvd(),900):fwd&&b.Dp()>=(Uvd(),hAd))&&(d=new bwd(b,c),iwd(a,d))} -function lp(a){var b;if((Os(),Ns)&&kvc(a,95)){b=$wnd.navigator.platform;(b.indexOf('iPad')!=-1||b.indexOf(Ozd)!=-1)&&kg(a.xb(),Pzd,true);Ri(new jp(a),a)}} -function gq(a,b,c){var d;d=new Xl(b);og(d,a.c,(voc(),voc(),uoc));c.length==0?((abd(),d.U).removeAttribute(azd),undefined):gjc((abd(),d.U),azd,c);return d} -function PK(a,b){dH.call(this,a);this.d=b;this.c=(s6b(),g6b)==b?new iL(a):new aL(this.o,b);this.a=new NH(a,b,false);this.b=new VM(this.o);bH(this,this.a)} -function ZO(a){if(aP(a.e)){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),k_,v_]))}return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),k_,v_,u_]))} -function fP(a,b){var c,d,e;if(!!a&&!!b&&a!=b&&a.Kl()*b.Kl()>0){e=new utd(a.Ml());for(d=b.Ml().Qb();d.Rc();){c=d.Sc();if(e.a.lp(c)){return c}}}return null} -function j8b(a,b){var c,d,e;if(b.vd()>a.c.a.length+1){return true}e=new std;for(d=b.Qb();d.Rc();){c=d.Sc();if(!Zrd(e,c)){return true}Lr(e,c)}return false} -function L4(a,b){var c,d,e,f;for(d=(f=(new ard(a.f.a)).a.mp().Qb(),new brd(f));d.a.Rc();){c=(e=d.a.Sc(),e.yp());if(rsd(dsd(c.r),b)){return c}}return null} -function Vfb(a){Ufb();if(a==(Xcc(),Vcc)){return '-1'}if(a==Rcc){return '1'}if(a==Ucc){return '4'}if(a==Scc){return '8'}if(a==Tcc){return '12'}return null} -function HAb(){var a,b,c,d,e;e=new es;for(b=(X1b(),vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b])),c=0,d=b.length;c1&&c.Ni(new Srd(vuc(quc(WYc,1),lyd,176,0,[b.zd(0)])))}}} -function Nac(a){var b,c,d,e;e=OBd;d=LJd;for(c=new qsd(dsd(a.n).b.Qb());c.b.Rc();){b=c.b.Sc();e>b.Ki()&&(e=b.Ki());d=2&&a.d.Ml().vd()<2){return a.c.Ml().vd()>2}else if(a.d.Ml().vd()>=2&&a.c.Ml().vd()<2){return a.d.Ml().vd()>2}return false} -function VN(a){var b,c;for(c=d1b(a.n).Qb();c.Rc();){b=c.Sc();if(Hnd(cCd,b.a)&&(tcc(),rcc)==b.b&&(b.c==null||b.c.length==0)&&$N(b.d)){return b}}return null} -function $P(a){var b,c,d;d=false;if(a.a.a.length>1){d=true;b=$r(a.a,0);Wr(a.a,b)}if(a.b.a.length>1){d=true;c=$r(a.b,0);Wr(a.b,c)}if(d&&!!a.c){WP(a);SP(a)}} -function Ohb(a,b,c){var d;if(U(b)==PXc){d=b;Kfb(a.c.n.a,b,'R',c);a.c.n.f.Tj(b,tld(c.a,WDd),'atomprop',c);_gb(a.c.n,d);Wr(a.c.k,d);return true}return false} -function ayb(a,b){var c;if(!b){return false}c=lob(a.a,lHd);if(c){if(pvc((qmd(),pmd))===pvc($xb(a,Fyd))){b.od(c)}else{b.td(c);_xb(a,Fyd,false)}}return true} -function izb(a){var b,c,d,e,f;f=0;b='';for(d=a.Qb();d.Rc();){c=d.Sc();e=jzb(c);b+=(i1b(),(e>0&&e<=126?h1b[e-1].c:null)+(f==a.vd()-1?'':' ,'));++f}return b} -function occ(){kcc();return vuc(quc(UYc,1),nyd,69,0,[jcc,gcc,bcc,icc,dcc,ccc,Nbc,fcc,$bc,acc,_bc,hcc,ecc,Obc,Zbc,Xbc,Sbc,Qbc,Rbc,Ubc,Vbc,Tbc,Wbc,Ybc,Pbc])} -function Fuc(a,b){var c,d,e;if(b<=22){c=a.l&(1<c+3&&(d=d.substr(0,c+2))}else{d=d+d9c(P8c($wnd.Math.round((b-b%6)%360)))}return d} -function MP(a){var b;if(!gP(a).c){b=new By;!eP(a.b,gP(a).b.a[0].a)&&nx(b,gP(a).b.a[0].a);mx(b,gP(a).b.a[0].a.c);mx(b,gP(a).b.a[0].a.d);return b}return null} -function beb(b,c){var d,e;try{return b.b.Ld(s9c(c))}catch(a){a=H8c(a);if(kvc(a,310)){d=a;e=new vqd(d.i);Pwd(d!=e,qyd);e.f=d;throw I8c(e)}else throw I8c(a)}} -function kyb(a){if(Yxb(a.d,Fyd)){jyb(a,a.d)}else if(Yxb(a.e,Fyd)){jyb(a,a.e)}else{ud(a.d,Fyd,(qmd(),false));ud(a.e,Fyd,false);gg(a.c,false);ryb(a.a,false)}} -function oKb(a,b,c,d){HKb(a.f,c);return (b==RGd?d.c==-1&&d.a==-1?new oRb(d,_j(a.f,(MKb(),LKb))):new jRb(d,_j(a.f,(MKb(),LKb))):new PKb(b,d,sKb(a.e))).Id(c)} -function aOb(a,b){var c,d,e;e=new jld(yld(b.a,'License'));for(d=0;d$wnd.Math.max(a.o.i.a.j.e.b*10,1)} -function OK(a){var b,c,d;if(hy(Lu(a.o.i).b)){d=LG(a);for(c=d.Ul().Qb();c.Rc();){b=c.Sc();if(b.b==d&&(s6b(),g6b)==b.o==(g6b==a.d)){return true}}}return false} -function bL(a,b){var c,d,e,f;if(a.b.vd()>1){f=new nUb(a);c=new y2b((WZb(),UXb));oTb(c,D9b(f));d=new By;mx(d,c);e=new V0b(f,c,b);rx(d,e);return d}return null} -function CM(a,b,c){var d,e;if(!a.f){a.f=new jD(a.o.i);e=new gs(dsd(Vw(a.o).n));d=dsd(a.o.i.A.r);Or(e,d);fD(a.f,e);eD(a.f,d)}dD(a.f,c);!!b&&hD(a.f,b);iD(a.f)} -function mU(a,b){var c,d,e,f;c=new es;f=0;for(d=0;d=0||a.b-a.d>=0)){U9b(a,b.b.a,b.b.b,b.b.a+b.c,b.b.b+b.a);return}if(b.c<0||b.a<0){return}S9b(a,b.b.a,b.b.b,b.b.a+b.c,b.b.b+b.a)} -function zac(a,b,c,d,e,f,g){var h,j,l,m,n,o,q,r;j=c-a;l=d-b;o=g-e;q=0-f;h=j*q-l*o;if(h==0){return null}m=e-a;n=f-b;r=(m*q-n*o)/h;return new qad(a+r*j,b+r*l)} -function rrc(a){var b,c,d;b=false;d=a.b.a.length;for(c=0;cbKb[b]*(Os(),Ls)&&a.b<=bKb[b+1]*Ls){a.b=bKb[b]*Ls;Xub(a,new $Jb(mnd(fKb(a))));return}}}} -function f0b(a,b){var c;c=ty(a,b.Re());c=c|$x(a,b.Pe());c=c|Zx(a,b.Oe());c=c|Yx(a,b.Le());c=c|_x(a,b.Qe());c=c|ay(a,b.Se());c=c|i0b(a,b.Me(),b.Ne());return c} -function Y6b(a){var b,c,d;if(!a.a||a.a.a.length==0){return Xrd(),Xrd(),Wrd}d=new std;for(c=a.b;c<4;++c){b=Yr(a.a,c);b.sd()||$6b(a,b)||Lr(d,b)}_6b(a);return d} -function iqd(a,b,c,d){var e;if(c>d){return 1}else if(c=0&&a[e]===b[e];e--);return e<0?0:S8c(K8c(a[e],SLd),K8c(b[e],SLd))?-1:1}} -function hvd(a,b,c,d,e,f,g){var h,j;if(b.Bp()&&(j=a.a.Wg(c,d),j<0||!e&&j==0)){return false}if(b.Cp()&&(h=a.a.Wg(c,f),h>0||!g&&h==0)){return false}return true} -function Dm(a,b,c){if(a.c){if(!(Os(),Ns)&&Jm(b,c,Tf(a.b)-Gs,Sf(a.b)-Gs)){Fm(a)}else{Vd(a.a,Fyd)!=null&&Wd(a.a,Fyd,(qmd(),pmd));Km(a.b,true);rd(a.a)}a.c=false}} -function jJ(a,b){var c,d;d=iJ(a,Eqd(b.Vl(),a.a));c=d+a.d;if(a.a.a&&(ca.b)){if(a.a.a&&(da.b)){return ''+(a.d>0?a.c:a.b)}return null}return ''+c} -function ifb(a){var b,c,d,e;b=heb(a.j,'connect');c=heb(a.j,azd);if(b==null||c==null){return null}return d=mfb(a),e=new Z1(d),Y1(e,(O$b(),K$b),b),Y1(e,N$b,c),e} -function bjb(){bjb=p9c;Zib=new cjb(HDd,0,mFd);Yib=new cjb('DATA',1,gFd);$ib=new cjb('MULTICENTER',2,lFd);_ib=new cjb(zDd,3,'SruSgroup');ajb=new cjb(GDd,4,kFd)} -function Jlb(a){var b,c,d,e;e=new es;for(c=0,d=a.length;c0&&b<=126){return b>0&&b<=126?h1b[b-1].c:null}return null} -function gKb(a){var b;if(fKb(a)!=1){for(b=0;b=bKb[b]*(Os(),Ls)&&a.b>22);e+=d>>22;if(e<0){return false}a.l=c&XKd;a.m=d&XKd;a.h=e&YKd;return true} -function QD(a,b,c){var d,e,f,g,h;h=new es;d=0;for(f=b.Qb();f.Rc();){e=f.Sc();g=a[d];0==c?Wr(h,new Sac(e.a.a,g.b,g.a)):Wr(h,new Sac(g.a,e.a.b,g.b));++d}return h} -function k8b(a,b){var c,d,e,f,g,h;h=new is;for(f=b.Qb();f.Rc();){e=f.Sc();g=new is;for(d=e.Qb();d.Rc();){c=d.Sc();Wr(g,Y7b(a.b,c.a))}h.a[h.a.length]=g}return h} -function wL(a,b){var c,d,e,f,g;g=-1;c=Ndb(a.o.i.C,b);if(!dsd(c.v).a.sd()){f=dyd;for(e=new qsd(dsd(c.v).b.Qb());e.b.Rc();){d=e.b.Sc();d.ac.Wh()+c.Xh())){return}a.d=c;fY(a,d,e,!!a.c.pe());iY(a,b);for(g=c.ph().Qb();g.Rc();){f=g.Sc();vY(b,f,d)}} -function uAb(a,b){var c,d;c=new Srd(vuc(quc(L5c,1),lyd,583,8,[(qmd(),pmd),omd]));d=new Srd(vuc(quc(g6c,1),eyd,2,6,[UHd,VHd]));AAb(a,new ZAb(b,c,d),'List type')} -function ve(a,b){var c;c=null;b.fb(Myd)!=null?(c=new Bgd(b.fb(Myd))):b.fb(Eyd)!=null?(c=new Dgd(s9c(b.fb(Eyd)))):b.fb(Dyd)!=null&&(c=new Cgd(b.fb(Dyd)));ue(a,c)} -function u4(){u4=p9c;r4=new v4('LIST',0,'^\\(\\d+( (\\w+|-?\\d+\\.?\\d*))*\\)');s4=new v4('QUATED',1,'^\\".*\\"');t4=new v4(tyd,2,'^(\\w+|-?\\d+.?\\d*|[<>=]+)')} -function Ubb(a,b){var c,d;if(b.Gj(yEd,'-')){d=b.Dj(yEd,'-');if(!Hnd(d,'-')){c=new ltd;Hqd(c,(kcc(),Qbc),d);a.qm(c)}}if(b.Fj(xEd)){c=Zbb(b.Cj(xEd));!!c&&a.qm(c)}} -function gib(a,b){var c;c=a.a;if((kcc(),Pbc)==c){return Hnd('a',b)?'a1':'a0'}if(Ybc==c){return 'u1'}if(Ubc==c){if(Hnd('',b)){return a.b+'256'}}return a.b+(''+b)} -function _Gb(a){var b,c,d,e,f,g;c=0;b=i4b(a);for(e=(e4b(),vuc(quc(zXc,1),nyd,281,0,[d4b,c4b,b4b])),f=0,g=e.length;f1){return ec()}d=a==0&&b==0&&c==0?0:1-a-c-b;return dc(d)} -function Bc(a){var b,c;a.e=false;a.f=a.b.Ol();for(c=0;c1){return new Xac(d)}return new Xac(null)} -function xE(a,b,c){var d,e;for(e=new Frd(a.$m());e.a1){return Kbc(),Jbc}else if(d.a.vd()==1){return c=(new ard(d.a)).a.mp().Qb(),b=(new brd(c)).a.Sc(),b.yp()}return null} -function Pqc(a,b,c){this.c=new Qqc(this);if(!a){throw I8c(new tnd)}if(!c){throw I8c(new tnd)}if(b<0){throw I8c(new and)}this.a=c;this.b=b;this.d=a;b>0&&Ii(this.c,b)} -function wrc(a,b){var c,d,e;d=new Htc;e=new Itc(d.r.getFullYear()-KKd,d.r.getMonth(),d.r.getDate());c=vrc(a,b,e);if(c==0||c>19;l=b.h>>19;if(j!=l){return l-j}e=a.h;h=b.h;if(e!=h){return e-h}d=a.m;g=b.m;if(d!=g){return d-g}c=a.l;f=b.l;return c-f} -function NC(a){var b;if(a.e){CWb(a,false);b=new WWb((!a.a&&(a.a=new UWb(a)),a.a));NWb((!a.a&&(a.a=new UWb(a)),a.a),new Cy(new Q7b(a)));return new UC(b,a)}return null} -function GF(a,b,c,d,e,f){var g,h,j;c-=a;d-=b;e-=a;f-=b;g=e*c+f*d;if(g<=0){j=0}else{e=c-e;f=d-f;g=e*c+f*d;g<=0?(j=0):(j=g*g/(c*c+d*d))}h=e*e+f*f-j;h<0&&(h=0);return h} -function fO(a,b){var c,d;for(d=new qsd(dsd(Vw(a.c).w).b.Qb());d.b.Rc();){c=d.b.Sc();if(msd(dsd(b.r),dsd(c.r))&&msd(dsd(c.r),dsd(b.r))&&a.Ug(c)){return c}}return null} -function RR(a,b){var c,d,e,f;e=Und(b,'<',-1);nod(a.c,e[0]);a.b=a.c.a.length==0;for(c=1;c',zCd);return TR(f)} -function MW(a,b){var c,d,e,f;if(LW(a)==2){d=b.ce(a.Lh());c=KW(a);e=b.ce(c.a[0]);f=b.ce(c.a[1]);return $wnd.Math.abs(d.b-e.b)<1&&$wnd.Math.abs(d.b-f.b)<1}return false} -function j$(a){var b,c,d;b=new V9b;for(d=a.b.Qb();d.Rc();){c=d.Sc();Q9b(b,cbc(c.xh(),4*a.a.Yd()))}return b.a-b.c>=0||b.b-b.d>=0?new hbc(b.c,b.d,b.a-b.c,b.b-b.d):null} -function d8(a){var b;if(a!=null){b=Und(a,'\\.',0);return b.length==3&&b[0].length==2&&(b[1].length==1||b[1].length==2)&&(b[2].length==1||b[2].length==2)}return false} -function k9(a,b){var c,d,e;for(d=0;d0?Pkd(Kld(c.a,0)):null);if(!b){return 'ChemAxon file format v0.0.0, generated by v0.0.0.0'}return leb(b)} -function Gfb(a,b,c){var d,e,f;if(b){e=Eqd(a.a,b.b);d=Lab(b.a);if(e!=null&&d!=null){f=Pib(a.c,fEd);eld(f,'rectRef',e);eld(f,'pos',d);Lkd(c,f);return true}}return false} -function KFb(a){var b,c,d;c=new YIb;zHb(a.b,c);WIb(c,(d=DEb(a.i),!d?IFb:d.a));UIb(c,(b=DEb(a.e),!b?HFb:b.a));Dw(c,uFb(a.a));XIb(c,fc(uFb(a.j)).toLowerCase());return c} -function lPb(){return {toolbars:oJd,templateurl:null,lonepaircalculationenabled:true,copyasmrv:false,autoreaction:false,allowreaction:true,prefernativereaction:false}} -function qs(a){var b;if(a.a>a.b.length){throw I8c(new Eud)}b=dl(a);a.a=a.a+(a.a')){while(ps(a.c)&&q7(a).length>0);}else{break}}return b} -function z7(a,b){var c,d,e,f,g;g=Ynd(b,(R5(),J5).a.length);c=(h5(),f=bod(g.substr(0,3)),f.length==0?0:Xmd(f,10));e=g.substr(3);for(d=0;d0&&(d=e)}return d} -function xxd(a){var b,c,d,e,f;f=Und(a,'\\.',0);e=$wnd;b=0;for(c=f.length-1;bd&&(b.a+=jod(suc(svc,fyd,23,-d,15,1)))} -function x6(a){switch(a){case 1:return Xcc(),Rcc;case -1:return Xcc(),Vcc;case 4:return Xcc(),Ucc;case 8:return Xcc(),Scc;case 12:return Xcc(),Tcc;default:return null;}} -function G9(a,b,c,d){var e,f;F9(b,d,T1(c,(O$b(),M$b)));e=qtd(a.c,c);f=e?k8(c.i):Ix(c);J9(b,a.b,(W9(),N9),d,f);D9(a,b,d,c);if(!e){X9(R9,b);b.a+=' 1 ';b.a+=''+d;b.a+=oyd}} -function mfb(a){var b,c,d,e,f,g;c=a.c;g=heb(a.j,NEd);f=new es;if(g!=null){d=Und(g,' ',0);for(e=0;ea.d&&(d=a.d);while(d>c&&Dnd(b.a,d-1)==48){--d}if(d5){e=d9c(W8c(P8c($wnd.Math.round((b.a-a.f.a)/c))));d=d9c(W8c(P8c($wnd.Math.round((b.b-a.f.b)/c))));a.i=mad(UL,new qad(d,e))}} -function P0(){P0=p9c;L0=new R0('CUSTOMIZE',0);M0=new R0('ENCODING',1);O0=new R0('VIEWPORT',2);N0=new R0(kDd,3);K0=new R0('ATTACHEDDATA',4);J0=new R0('ATOM_PROPERTIES',5)} -function l2(){l2=p9c;k2=new m2('PNG',0,'png','PNG',rDd,true,vuc(quc(g6c,1),eyd,2,6,['png']));j2=new m2('JPEG',1,'jpeg','JPEG',sDd,false,vuc(quc(g6c,1),eyd,2,6,['jpeg']))} -function dcb(a){var b,c,d,e,f,g;g=new ltd;d=new gcb('a');for(c=(f=(new drd(a)).a.mp().Qb(),new erd(f));c.a.Rc();){b=(e=c.a.Sc(),e.Ok());Iqd(g,(++d.a,d.b+d.a),b)}return g} -function L9b(a,b){var c,d,e,f,g;c=new es;for(g=(e=(new ard(b.a)).a.mp().Qb(),new brd(e));g.a.Rc();){f=(d=g.a.Sc(),d.yp());Wr(c,$wnd.Math.atan2(f.b-a.b,f.a-a.a))}return c} -function vjb(){vjb=p9c;qjb=new yjb(ACd,0,SAd,(Cjb(),Ajb));rjb=new xjb('DY',1,'dy');sjb=new yjb(BCd,2,TAd,Ajb);tjb=new xjb('SCALE',3,'scale');ujb=new xjb('SUBL',4,'subL')} -function mkb(a,b){var c;return lkb(a,'Import'+(Ds().length==0||'O'.length==0?'':' ('+Ds()+'+'+'O'+')'),'Open',b,(nk(),c=Und('SHORTCUT+O',iAd,0),qk(c[c.length-1],rk(c))))} -function ylb(a,b,c,d){var e,f,g,h;e=a.G.C;h=eLb(a.r,b,c,d);f=h.Qi(e);g=new $lb(f);return bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[new umb(a,g),new Qvd,new ff])))} -function Kxb(a,b){var c,d;ulc(Rf(a.d));for(d=new Frd(b);d.a');Ugd(a.d,vlc(Rf(a.d)).length-1)} -function Qx(a){var b,c,d,e;for(c=new Frd(a.r);c.ae){e=f;g=h;d=false}else f==e&&(d=true)}if(d){return null}return g} -function o2b(a){var b,c;if(dsd(a.a).a.sd()){return false}for(c=new qsd(dsd(a.a).b.Qb());c.b.Rc();){b=c.b.Sc();if(b.c.Bm()==a&&b.b<0&&!b2b(b.b)){return true}}return false} -function N8c(a,b){var c;if(mvc(a)&&mvc(b)){c=a/b;if(aLdf;e--){Bwd(d.a,e)}j=jhd(a,g,d);h=new Pid(j);Eid(c,h)} -function Mkd(b,c,d){var e,f,g,h;try{g=c.a;d?(h=d.a):(h=null);f=Jld(b.a,g,h);return Pkd(f)}catch(a){a=H8c(a);if(kvc(a,109)){e=a;throw I8c(new Vkd(e,b))}else throw I8c(a)}} -function Eh(a){var b,c,d;if(!a.i){return}c=Zr(a.f,a.i,0);b=c;while(true){c=c-1;c<0&&(c=a.f.a.length-1);if(c==b){d=Yr(a.f,b);break}else{d=Yr(a.f,c);if(d.c){break}}}Ch(a,d)} -function di(a){var b;b=a.a.fc();if(b<0){throw I8c(new bmd('EOF'))}if(b==128){throw I8c(new bmd('Indefinite form'))}if((b&128)!=0){throw I8c(new bmd('Long form'))}return b} -function Ru(a,b){!!a.t&&Xld(a.t);!!a.q&&dsd(b.n).b.vd()>0&&dsd(b.k).b.vd()==1&&Q0b(dsd(b.k).a.zd(0))&&!dsd(b.t).a.sd()&&xWb(b,B$b(new F$b,dsd(b.t)).a);a.C=b;a.t=Wu(a.u,b)} -function NO(a,b){var c,d,e;PO(a);VG(a,b.c);if(gy(Lu(a.o.i).b)){c=KG(a);d=dT(a.o.i.j,c);e=d.di(b.c);if(0==e){a.c=true;a.a=c;a.b=b.c}else if(1==e){a.c=false;a.a=c;a.b=b.c}}} -function AX(a,b){var c,d,e,f;e=new V9b;for(d=new Frd(b);d.a=52){d=(h5(),c=bod(b.substr(49,3)),c.length==0?0:Xmd(c,10));if(d>0){a.rm((kcc(),Qbc),(Cnd(),''+(d==15?0:d)));return true}}return false} -function S7(a){var b,c;O7.call(this);this.b=new es;this.a=new es;Xr(this.b,cWb(a));Xr(this.j,this.cj(a));for(c=new qsd(dsd(a.s).b.Qb());c.b.Rc();){b=c.b.Sc();this.bj(b.a)}} -function ncb(a){var b,c,d;for(c=new Frd(a.a);c.a36){return -1}if(a>=48&&a<48+$wnd.Math.min(b,10)){return a-48}if(a>=97&&a=65&&a=15){c=a.b.Nl();f=a.b.Xl().c;if(c==-1&&f==0){d=zc(a.k,a.b,17,(ld(),gd));e=zc(a.k,a.b,9,gd);if(d==6||e==6){return true}}}return false} -function xv(a,b){var c,d,e,f,g,h;e=yv(a,b);c=E2b(a,e);d=E2b(b,e);f=lad(c.Lh(),e.Lh());g=lad(d.Lh(),e.Lh());h=zv(g,-$wnd.Math.atan2(f.b,f.a));return $wnd.Math.atan2(h.b,h.a)} -function qx(a,b){var c;c=a.Je(b.Me(),b.Ne());c=c|a.ff(b.Re());c=c|a.hf(b.Oe());c=c|a.gf(b.Le());c=c|a.jf(b.Qe());c=c|a.lf(b.Te());c=c|a.kf(b.Se());c=c|zx(a,b.Pe());return c} -function PF(a,b){var c;c=new _td;if(sac(a.a[0],b.a[0])jBd?1:-1)} -function e8(a){var b,c,d;c=p9b;if(d8(c)){a.a+=' MJ';b=Und(c,'\\.',0);d=b[0]+(b[1].length==1?'0':'')+b[1]+(b[2].length==1?'0':'')+b[2];a.a+=d;a.a+=' '}} -function Szb(a){if(!a.a||!a.c){a.c=new Kgd;hg(a.c,nId);a.a=new Wl(new Cgd((dub(),Osb)),new Cgd((Ctb(),lsb)));Of(a.a,qId);og(a.a,new Wzb(a),(voc(),voc(),uoc));Uzb(a);Tzb(a)}} -function wAb(a,b){var c;zAb(a,(c=new zCb(new Srd((WAb(),vuc(quc(kQc,1),nyd,289,0,[VAb,TAb,UAb]))),new Srd(vuc(quc(g6c,1),eyd,2,6,[sId,vId,wId]))),new BCb(b,c,new aBb)),xId)} -function yAb(a,b){var c;zAb(a,(c=new zCb(new Srd((WAb(),vuc(quc(kQc,1),nyd,289,0,[VAb,TAb,UAb]))),new Srd(vuc(quc(g6c,1),eyd,2,6,[sId,vId,wId]))),new BCb(b,c,new aBb)),zId)} -function NSb(a,b){var c,d,e;e=new es;for(d=b.Qb();d.Rc();){c=d.Sc();Wr(e,$Sb(c[tDd]||c.name||c.tooltip,ls(nSb(c,(Kr(),Jr>=2))),OSb(a,c['structure']||c.structure)))}return e} -function lXb(a){var b,c,d;d=new es;Xr(d,a.c.Me());for(c=new Zqd(a.d.Me());c.b1){return ec()}e=1-a-c-d;if(e==1){return ec()}return dc(e)} -function _v(a){var b,c,d,e;for(c=new qsd(dsd(a.C.n).b.Qb());c.b.Rc();){b=c.b.Sc();b.um((aUb(),VTb))}for(e=new qsd(dsd(a.C.p).b.Qb());e.b.Rc();){d=e.b.Sc();Fl(d,(tUb(),rUb))}} -function UI(a){var b,c,d,e;d=a?6:5;e=suc(T1c,tBd,5,d,0,1);b=kBd/d;for(c=0;c0',wId]))),new BCb(b,c,new aBb)),yId)} -function OIb(a){MIb();var b,c,d,e;if(a!=null){for(c=vuc(quc(TSc,1),nyd,304,0,[LIb,KIb]),d=0,e=c.length;db){Xfd(a,a.b-1)}}} -function Jtd(){function b(){try{return (new Map).entries().next().done}catch(a){return false}} -if(typeof Map===byd&&Map.prototype.entries&&b()){return Map}else{return Ktd()}} -function GY(a,b,c,d,e){HX.call(this,a.c,d,e);this.i=b1b(a.b.Ji());this.n=a.b.Lh();this.p=a.b.Wm();this.c=b;this.j=c;this.a=a.a;this.t=a.b.Xm();this.o=a.b.Ym();this.r=a.b.Zm()} -function sZ(a,b){var c,d,e;c=sac(a.e.pi(a.d),a.e.qi(a.d));d=new qad(0,0);e=new qad(c,0);HHb(b,new tT((iU(),hU),1.5,true,'rgba(0,255,255, 0.5)'),vuc(quc(T1c,1),tBd,5,0,[d,e]))} -function F_(a,b,c){var d,e,f,g;if(!b||b.sd()){return a_(),_$}e=new es;for(g=b.Qb();g.Rc();){f=g.Sc();d=G_(a,f,c);e.a[e.a.length]=d}return new HS(ds(e,suc(nFc,nBd,106,0,0,1)))} -function G7(a,b){var c,d,e;if(0<=b&&b=d){e=Xnd(a.b,c,d);return Hnd(e,' ')?0:Xmd(bod(e),10)}return 0}throw I8c(new lmd((Cnd(),''+b)))} -function zab(a,b){var c,d,e;e=new yod;e.a+=' ';e.a+=xDd;e.a+='=(';nod(e,(Cnd(),''+b.vd()));for(d=b.Qb();d.Rc();){c=d.Sc();e.a+=' ';nod(e,''+(Q7(a.a,c)+1))}e.a+=')';return e.a} -function mzb(a){var b,c;c=Sgd(a.a,Rf(a.a).selectedIndex);b=Hnd((p$b(),o$b).b,c)||Hnd(m$b.b,c);rl(a.b,b);CEb(a.b).length==0&&b?HEb(a.b,'1'):CEb(a.b).length!=0&&!b&&HEb(a.b,'')} -function oDb(a,b){var c,d,e,f;f=new is;for(d=new Frd(a.c);d.a=0){e=Dnd(b.a,c);if(e==57){gmd(b,c--,48)}else{gmd(b,c,e+1&hyd);d=false}}if(d){b.a=b.a.substr(0,0)+'1'+b.a.substr(0);++a.b;++a.d}} -function Hl(a,b){var c,d;if(!(abd(),a.U)[mAd]!=b){c=(!a.d&&Cl(a,a.o),a.d.a^4);c&=-3;d=yl(a,c);Cl(a,d);a.U[mAd]=!b;if(b){Bl(a,(!a.d&&Cl(a,a.o),a.d))}else{vl(a);agc();Wdc(a.U)}}} -function eI(a){a.n=0;a.i=null;a.f=false;rud(a.a);rud(a.b);a.j=0;a.e=false;a.d=false;a.c=false;ex(Mu(a.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_])));a.o.i.w.Hf()} -function fN(a,b){var c,d,e,f;if(!uN(a.f.b)){return}e=new xT(true,'#00ee00');f=new vT(false,2,false,uBd);c=b.ce(uN(a.f.b));d=a.d;GHb(b.Kf(),c,d,false,e);GHb(b.Kf(),c,d,false,f)} -function zS(a){var b;if(a){b=new yod;nod(b,a.a);b.a+=' ';nod(b,ucc(a.b));if(a.d.a!=null){b.a+=' ';nod(b,bod(Snd(Oud(a.d,''),'\\s+',' ')));nod(b,CS(a.c))}return b.a}return null} -function iX(a,b,c){var d,e;if(!a){return b}if(!b){return a}d=a.f+a.e+c-b.f;e=(new qad(a.f+a.e/2,a.i+a.d/2)).b-(new qad(b.f+b.e/2,b.i+b.d/2)).b;b.f+=d;b.i+=e;return new hX(a,b)} -function wbb(a,b){this.b=a;if(b.a.length!=2){throw I8c(new bnd('only 2 atoms are expected'))}this.a=tbb(b.a[0],b.a[1]);if(!this.a){throw I8c(new bnd('source cannot be null'))}} -function Kyb(a,b,c,d){var e,f,g;e=new ped;jjc((abd(),e.U),b);f=d.c.rows.length;Ffd(d,f,0,e);Ffd(d,f,1,Ryb((g=new gs(c.Mk()),Wr(g,c.i),ds(g,suc(D3c,_Hd,21,0,0,1)))));ptd(a.d,c)} -function _Bb(a){this.a=a;this.b=edc(ds(a,suc(tWc,zBd,49,0,0,1)));this.d=fdc(hdc(ds(a,suc(tWc,zBd,49,0,0,1))));this.c=a.a.length==1?idc(a.a[0]):ddc(ds(a,suc(tWc,zBd,49,0,0,1)))} -function cJb(a,b,c){var d,e,f;f=false;if(c){for(e=new iud(new gud(a.a));e.b!=e.c.a.b;){d=hud(e);pvc(d.d)===pvc(b)&&(f=true);f&&(d.e.b=true,undefined)}}else{Xtd(a.a,b).b=false}} -function kPb(a){var b;b={};ZOb(b,a.o);$Ob(b,a.p);cPb(b,a.s);bPb(b,a.r);gPb(b,fc(a.n));iPb(b,a.u);hPb(b,a.t);aPb(b,a.e);ePb(b,fc(a.j));_Ob(b,a.q);fPb(b,a.k);dPb(b,a.i);return b} -function Tic(a,b){var c,d;b=ojc(b);d=a.className||'';c=mjc(d,b);if(c==-1){d.length>0?(a.className=d+' '+b||'',undefined):(a.className=b||'',undefined);return true}return false} -function ixd(a,b,c,d){while(a.n!=0&&d>0){hxd(a,b[c]);++c;--d}while(d>a.k.length){lxd(a,b,c);c+=a.k.length;d-=a.k.length;a.j=J8c(a.j,a.k.length)}while(d>0){hxd(a,b[c]);++c;--d}} -function H_(a,b,c){var d,e,f;if(kvc(b,100)){d=eT(c.j,b);return v$(d,a.a)}else if(kvc(b,168)){e=b;d=eT(c.j,e);return f=new es,h$(d,f),Wr(f,L$(e$(d.o),null)),IS(f)}return a_(),_$} -function rnb(a,b,c,d){bcb(a,NGd,qnb('Expand and Clean',(qtb(),_rb),d,new qqb(b,c.a,true)));bcb(a,OGd,qnb('Ungroup and Clean',(cub(),Nsb),d,c.a?new qqb(b,c.a,false):new Gqb(b)))} -function oxb(a){var b,c;a.a=new Bm;zm(a.a,'Error');if(a.c!=null){b=new Jed(a.c);kg((abd(),b.U),'mjs-errorpanel',true);Ced(b,rxb(a.b));Cg(a.a,b)}else{Cg(a.a,(c=new red(a.b),c))}} -function pzb(b){var c,d,e;d=null;e=Sgd(b.a,Rf(b.a).selectedIndex);try{c=k$b(e);!!c&&(d=new i$b(c,ozb(b)))}catch(a){a=H8c(a);if(kvc(a,20)){return null}else throw I8c(a)}return d} -function CTb(a,b){rTb(a,b);b.lp((kcc(),Nbc))&&jTb(a,b.np(Nbc));b.lp($bc)&&kTb(a,b.np($bc).a);b.lp(acc)&&nTb(a,b.np(acc));b.lp(dcc)&&ATb(a,b.np(dcc));b.lp(ccc)&&BTb(a,b.np(ccc))} -function igd(a,b,c){var d,e;b=$wnd.Math.max(b,1);e=a.a.childNodes.length;if(eb){for(d=e;d>b;d--){Qic(a.a,a.a.lastChild)}}} -function Uid(a,b){var c;Rid(a,b);c=$pc(a,mnd(b));if(!!c&&c.a){return false}Wid(a.b,false);if(b==-1){a.b=null;return true}a.b=to(a.a,b+1);Wid(a.b,true);kqc(a,mnd(b));return true} -function $g(a,b){(abd(),a.U).style[nzd]=ozd;!!a.A&&(a.A.style[nzd]=ozd,undefined);a.Zb();b.ec($ic(a.U,_yd),$ic(a.U,$yd));a.U.style[nzd]=tzd;!!a.A&&(a.A.style[nzd]=tzd,undefined)} -function VO(a,b){if(!a.a){return 0}if(a.a.Sl()==0&&b.Sl()==0){return WO(a)}if(a.a.Sl()>0&&b.Sl()!=a.a.Sl()){return a.a.Sl()}if(b.Sl()>0&&b.Sl()!=a.a.Sl()){return b.Sl()}return 0} -function l3(c,d){var e;try{return c.b.Hd(d)}catch(b){b=H8c(b);if(kvc(b,46)){e=b;try{return c.a.Hd(d)}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}throw I8c(e)}else throw I8c(b)}} -function n3(c,d){var e;try{return aeb(c.b,d)}catch(b){b=H8c(b);if(kvc(b,46)){e=b;try{return i6(c.a,d)}catch(a){a=H8c(a);if(!kvc(a,46))throw I8c(a)}throw I8c(e)}else throw I8c(b)}} -function cgb(a){var b,c,d,e,f;e=new es;if(a!=null){f=Und(a,',',0);b=a.charCodeAt(0)==48?1:0;for(d=b;d=900?'warn':d>=800?'info':'log');Ewd(c,a.b)} -function m9c(){l9c={};!Array.isArray&&(Array.isArray=function(a){return Object.prototype.toString.call(a)===$xd});function b(){return (new Date).getTime()} -!Date.now&&(Date.now=b)} -function Nv(a){var b,c,d,e,f;b=false;for(d=(Lz(),vuc(quc(oAc,1),nyd,217,0,[Iz,Jz,Hz,Kz])),e=0,f=d.length;e0){return lgb(a,g.a.substr(1))}return null} -function NFb(a,b){this.d=new wFb;this.a=new WFb;this.j=new QFb(new Srd((MIb(),vuc(quc(TSc,1),nyd,304,0,[LIb,KIb]))));this.b=new BHb(b);sFb(this.d,new PFb(this));this.c=a;LFb(this)} -function kKb(a,b){if(Hnd(jJd,b)){return a.d}else if(Hnd(kJd,b)){return a.c}else if(Hnd(yHd,b)){return a.f}else if(Hnd(xHd,b)){return a.a}else if(Hnd(zHd,b)){return a.e}return null} -function RVb(a,b){var c,d,e,f,g,h,j;j=new std;for(d=(h=(new ard(a.i.a)).a.mp().Qb(),new brd(h));d.a.Rc();){c=(f=d.a.Sc(),f.yp());e=Eqd(b.b,c);!!e&&(g=j.a.pp(e,j),g==null)}return j} -function b5b(a,b){var c,d,e;e=a.c.a;for(d=new qsd(b.b.Qb());d.b.Rc();){c=d.b.Sc();if(Ex(c,E5b(e))&&c!=e){c.Ze(dsd(e.r),dsd(e.s));c.Ye((Xrd(),Xrd(),Urd));c.$e(dsd(e.u));c.Ee(a.c)}}} -function hpd(a,b){this.e=a;if(O8c(K8c(b,-4294967296),0)){this.d=1;this.a=vuc(quc(uvc,1),jyd,23,15,[d9c(b)])}else{this.d=2;this.a=vuc(quc(uvc,1),jyd,23,15,[d9c(b),d9c($8c(b,32))])}} -function Cpd(a){var b,c,d;if(L8c(a,0)>=0){c=N8c(a,_Kd);d=U8c(a,_Kd)}else{b=_8c(a,1);c=N8c(b,500000000);d=U8c(b,500000000);d=J8c(Z8c(d,1),K8c(a,1))}return Y8c(Z8c(d,32),K8c(c,SLd))} -function F1(){C1();var a,b,c,d,e;if(A1==null){e=new es;for(b=J1(),c=0,d=b.length;c\'"]');K9c=new RegExp('&','g');L9c=new RegExp('>','g');N9c=new RegExp('<','g');P9c=new RegExp("'",'g');O9c=new RegExp('"','g')} -function god(a,b){Cnd();var c,d,e,f;f=new bvd(a);for(d=0,e=b.length;d0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))){c=J7b(new N7b(false),a);B$b(b,tD(Uac(Zac(c.d))));B$b(b,tD(Uac(Zac(c.c))))}return b.a} -function CV(a,b,c,d,e,f){var g,h,j;h=new _W((dX(),bX));if(d){g=vV(a,b,c,e,f);VW(h,g)}UW(h,IV(e,xV(a,new jX((HU(),CU),true),(j=qV(c),j.a.length==0?null:'('+fod(',',j)+')'))));return h} -function Gdb(){this.n=new is;this.p=new is;this.w=new is;this.v=new is;this.r=new is;this.o=new is;this.q=new is;this.k=new is;this.t=new is;this.u=new is;this.s=new is;this.A=new is} -function orb(a){var b,c,d,e,f;f=Vw(a.b);for(c=new qsd(dsd(f.n).b.Qb());c.b.Rc();){b=c.b.Sc();b.um((aUb(),VTb))}for(e=new qsd(dsd(f.p).b.Qb());e.b.Rc();){d=e.b.Sc();Fl(d,(tUb(),rUb))}} -function kdc(a){var b,c,d,e;d=new ltd;for(c=new qsd(dsd(a.a.p).b.Qb());c.b.Rc();){b=c.b.Sc();jdc(d,new Tac(b.c.Lh(),b.c.Ki()),new Tac(b.d.Lh(),b.d.Ki()))}e=mdc(d);return e!=0?LBd/e:1} -function zCb(a,b){var c,d,e;this.b=new Wgd;this.a=new es;Xr(this.a,a);Wr(this.a,null);c=0;for(e=b.Qb();e.Rc();){d=e.Sc();Lgd(this.b,d);++c}Lgd(this.b,'');hg(this.b,$Hd);Ugd(this.b,c)} -function iIb(a){var b,c,d,e;for(d=(e=(new ard(a.a.a)).a.mp().Qb(),new brd(e));d.a.Rc();){c=(b=d.a.Sc(),b.yp());(!c.C||dsd(c.C.n).b.vd()==0)&&IJb(c.a.j,null);Ov(c,(Lz(),Iz));c.w.Hf()}} -function a2b(a){X1b();var b,c,d,e;if(a==null){return U1b}for(c=vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b]),d=0,e=c.length;d>5;a.d-=d;if(!xpd(a.a,a.d,a.a,d,b&31)&&e<0){for(c=0;cc;f--){a[f]|=b[f-c-1]>>>g;a[f-1]=b[f-c-1]<4||c==50?(d=4-e):(d=e%2);return dc(d)} -function ub(a,b,c,d){var e,f;owd(nb,(Uvd(),Svd))&&lwd(nb,'SetValenceOfNWithDoubleBondO method called.');f=d.b?5:3;if(a==2){e=b+c==4||b+c==f?0:f-b-c;return dc(e)}else{return dc(f-b-c)}} -function HE(a){var b,c,d;b=MWb();wVb(b,PVb(a.a));JE(a.a,b);d=new Frd(cWb(a.a));c=new Frd(cWb(b));while(d.af&&Vnd(l,_nd(c[h],xud))){e=h;f=j}}e>=0&&(d[0]=b+f);return e} -function Uud(){Uud=p9c;var a,b,c,d;Rud=suc(tvc,fyd,23,25,15,1);Sud=suc(tvc,fyd,23,33,15,1);d=1.52587890625E-5;for(b=32;b>=0;b--){Sud[b]=d;d*=0.5}c=1;for(a=24;a>=0;a--){Rud[a]=c;c*=0.5}} -function Px(a){var b,c,d,e;for(c=new Frd(a.r);c.a1&&!dsd(a.u).a.sd()){d=new utd(dsd(a.r));for(c=new qsd(dsd(a.u).b.Qb());c.b.Rc();){b=c.b.Sc();rtd(d,b.b)}if(d.a.vd()>1){return d}}return null} -function by(a){kx(this);Xr(this.r,a.Me());Xr(this.s,a.Ne());Xr(this.A,a.Re());Xr(this.t,a.Oe());Xr(this.q,a.Le());Xr(this.w,a.Qe());Xr(this.C,a.Te());Xr(this.B,a.Se());Xr(this.u,a.Pe())} -function ZL(a,b){var c,d;for(d=new qsd(dsd(a.o.i.C.n).b.Qb());d.b.Rc();){c=d.b.Sc();Ytd((!b.b&&(b.b=new _td),b.b),c,new Tac(c.Lh(),c.Ki()))}En(b,uac((!b.b&&(b.b=new _td),new drd(b.b))))} -function nW(a,b){var c,d,e;if(!a.b||!Wtd(a.a,b)){return Xrd(),Xrd(),Urd}e=new es;for(d=new Frd(a.b);d.a0&&Hld(a.a)){d=kld(new lld(uld(a.a)),b);if(d){e=Dld(d.a);if(e!=null&&bod(e).length>0){Nkd(d,e+' '+c);chb(Pkd(Fld(a.a)),b,c)}}}} -function rub(a){if(!('console' in window)){var b=function(){};window.console={log:b,info:b,warn:b,error:b,assert:b,trace:b,time:b,timeEnd:b}}console.log('[marvin UncaughtException]:'+a)} -function PBb(a){var b,c,d,e;if(!a){return null}b=new yod;for(d=a.Qb();d.Rc();){c=d.Sc();e=jzb(c);b.a+=',';nod(b,(i1b(),e>0&&e<=126?h1b[e-1].c:null))}return b.a.length>0?b.a.substr(1):''} -function gFb(a){var b,c,d,e,f;if(a!=null){f=Und(bod((Cnd(),a==null?iyd:s9c(a))),',',0);b=new yod;for(d=0,e=f.length;d=0&&Hnd(a.substr(b,'GMT'.length),'GMT')){c[0]=b+3;return zrc(a,c,d)}if(b>=0&&Hnd(a.substr(b,'UTC'.length),'UTC')){c[0]=b+3;return zrc(a,c,d)}return zrc(a,c,d)} -function Cd(a,b){var c,d,e,f;f=new Ce(a);e=new Ed(b);(Sfd(),abd(),a.U).tabIndex=-1;Be(f,b);d=(c=new Fd(f),c);return new Yld(vuc(quc(w5c,1),Iyd,293,0,[b.cb(d),og(a,e,(voc(),voc(),uoc))]))} -function Pe(b){var c,d,e;for(d=new Frd(b);d.a=rac(e.a,e.b,0,f.a,f.b,0)?d:e} -function lbc(a,b){abc();var c,d,e,f;c=$wnd.Math.min(a.b.a,b.b.a);e=$wnd.Math.min(a.b.b,b.b.b);d=$wnd.Math.max(a.b.a+a.c,b.b.a+b.c);f=$wnd.Math.max(a.b.b+a.a,b.b.b+b.a);return jbc(c,e,d,f)} -function ovd(a,b,c,d){var e,f;f=b;e=f.d==null||a.a.Wg(c.d,f.d)>0?1:0;while(f.a[e]!=c){f=f.a[e];e=a.a.Wg(c.d,f.d)>0?1:0}f.a[e]=d;d.b=c.b;d.a[0]=c.a[0];d.a[1]=c.a[1];c.a[0]=null;c.a[1]=null} -function Dp(a){var b,c;c=a.c.a.length;a.b=new $fd(c,3);Of(a.b,(Up(),'mjs-obf-F'));for(b=0;b'+Yic(Wdd(a.a.o))+Uyd);Xdd(xl(a.a),Tyd+b+';">'+Yic(Wdd(xl(a.a)))+Uyd)}else{Rnd(Yic(Wdd(a.a.o)),c,b);Rnd(Yic(Wdd(xl(a.a))),c,b)}}} -function tE(a,b){var c,d,e,f,g;this.c=new ltd;this.a=a;this.b=b;for(d=(O$b(),vuc(quc(VWc,1),nyd,311,0,[M$b,L$b,N$b,K$b])),e=0,f=d.length;ea.c.a?(c=a.c.a):(c=b.c.a);b.c.b>a.c.b?(d=a.c.b):(d=b.c.b);a.b=new ibc(new qad(c,d),$wnd.Math.abs(b.c.a-a.c.a),$wnd.Math.abs(b.c.b-a.c.b));kI(a,a.b);a.o.i.w.Hf()} -function Aab(a,b){var c,d,e;e=new yod;if(!b.sd()){e.a+=' ';e.a+='XBONDS';e.a+='=(';nod(e,(Cnd(),''+b.vd()));for(d=b.Qb();d.Rc();){c=d.Sc();e.a+=' ';nod(e,''+(Y7(a.b,c)+1))}e.a+=')'}return e.a} -function Uzb(b){var c,d;if(!b.d&&!!b.f){Ul(b.a,(qmd(),false));d=Eqd(b.f,b.b);c=null;if(d!=null){try{c=mnd(Xmd(d,10))}catch(a){a=H8c(a);if(kvc(a,65)){c=null}else throw I8c(a)}}!!c&&IEb(b.c,c)}} -function uEb(a,b,c){var d,e,f,g,h;g=new UEb;f=b!=0?(Cnd(),'R'+(''+b)):'R';TEb(g,Rf(new red(f)));h=Rf(new kjd);d=(abd(),tkc($doc));TEb(g,h);TEb(g,d);Lic(a.f,g.a);e=new PEb(a,b,c,h,d);Wr(a.c,e)} -function ZVb(a,b,c){var d,e,f,g;if(hs(a.n,b)!=-1&&hs(a.n,c)!=-1){for(e=new qsd(dsd(a.p).b.Qb());e.b.Rc();){d=e.b.Sc();f=d.c;g=d.d;if((T(b,f)||T(c,f))&&(T(b,g)||T(c,g))){return d}}}return null} -function w2b(a,b){uTb.call(this);this.i=(aUb(),VTb);this.a=new es;i1b();if(!(a>0&&a<=126)){throw I8c(new bnd('There is no element in the periodic table with this index:'+a))}this.b=a;this.e=b} -function _5b(a){var b,c,d,e,f;c=Y5b(a);if(!c.sd()){f=a.b.a.length;for(d=0;d=gyd){b=55296+(a-gyd>>10&1023)&hyd;c=56320+(a-gyd&1023)&hyd;return String.fromCharCode(b)+(''+String.fromCharCode(c))}else{return String.fromCharCode(a&hyd)}} -function Ei(a,b){var c,d;if(!a){return null}d=null;(Os(),Ns)&&!!a&&(d=Fi(a,b));!!a&&(c=$wnd.navigator.platform,!(c.indexOf('iPad')!=-1||c.indexOf(Ozd)!=-1))&&(d=Wi(d,Di(a,new Qi(b))));return d} -function gC(a,b,c){var d,e,f,g,h,j;f=new By;for(e=c.Qb();e.Rc();){d=e.Sc();g=Ey(d);for(j=new Frd(cVb(Bdb(a.e,g)));j.a1&&bO(Dnd(a,a.length-1))?ivc(Dnd(a,a.length-1))+Xnd(a,0,a.length-1):a;switch(b){case '+':return 1;case '-':return -1;case '':return 0;default:return Xmd(b,10);}} -function nU(a,b,c){var d,e,f,g,h;if(a.b.length!=0){g=Und(a.b,oyd,0);d=mU(a,g);h=lU(d).c;f=new o0((pR(),nR),(NT(),ET));for(e=0;e0){return '0:N'+e.a}return null} -function UBb(a,b,c,d){var e,f;e=WBb(a,d);if(e.d.c+e.e.b!=0){if((Kbc(),Jbc)==c||Ibc==c||a.b==c&&!Cqd(e,(kcc(),jcc))){return new rB(b,a.a,e)}else{f=bCb(c,e);return new QA(b,f,a.a,e)}}return null} -function KPb(a,b,c,d){var e,f;e=new Df;if(Ikb(a.b)!=null){a.a.pl(Ikb(a.b)).ol((f={'structure':b,'parameters':c},d&&(f.inputFormat=d),JSON.stringify(f)),new OPb(e));return new pf(e)}return null} -function xrc(a,b){var c,d,e;e=0;d=b[0];if(d>=a.length){return -1}c=a.charCodeAt(d);while(c>=48&&c<=57){e=e*10+(c-48);++d;if(d>=a.length){break}c=a.charCodeAt(d)}d>b[0]?(b[0]=d):(e=-1);return e} -function Bbd(a,b){var c,d,e,f,g;if(!!wbd&&!!a&&pqc(a,wbd)){c=xbd.a;d=xbd.b;e=xbd.c;f=xbd.d;ybd(xbd);Vo(xbd,b);oqc(a,xbd);g=!(xbd.a&&!xbd.b);xbd.a=c;xbd.b=d;xbd.c=e;xbd.d=f;return g}return true} -function dV(a,b,c,d,e,f){this.i=b;this.a=a;this.e=c.ce(a.Lh());this.b=tV(c,d,f,a,eV(this.e,Osd(b.b,b.a.a.j).Fh().Bh(a.Hl()),c.Yd()));this.j=f.u;this.d=f.r;this.f=f.t;this.n=c.Yd();this.c=e.pe()} -function $7(a,b,c){var d;d=Eqd(a.a,b);if(d==null){d=suc(g6c,eyd,2,2,6,1);d[0]=V7(a.b,c.c);d[1]=V7(a.b,c.d);Hqd(a.a,b,d)}else{Hnd('0',d[0])&&(d[0]=V7(a.b,c.c));Hnd('0',d[1])&&(d[1]=V7(a.b,c.d))}} -function Bub(a){var b,c,d,e,f,g,h,j;for(c=E3b(),d=0,e=c.length;d0&&nX(this,d,false)} -function uZ(a,b,c,d,e){var f,g;g=2.8*((s6b(),q6b)==a.d.w.a||o6b==a.d.w.a?0.6:m6b==a.d.w.a?1.5:1);f=wZ(e,g);HHb(b,f,vuc(quc(T1c,1),tBd,5,0,[c,d]));HHb(b,vZ(a,f,c,d),vuc(quc(T1c,1),tBd,5,0,[c,d]))} -function o4(a){var b,c,d;if(a.a.a.length>0&&x9c(m4,a.a.a)){d=a.a.a.indexOf('=');if(d!=-1){b=hmd(a.a,d);c=d+1}else{b=a.a.a;c=a.a.a.length}wod(a.a,0,c);return new C4(bod(b),bod(p4(a)))}return null} -function J9(a,b,c,d,e){var f,g,h,j,l;l=0;j=e.vd();while(j>0){g=$wnd.Math.min(j,15);j=j-g;X9(c,a);a.a+=''+d;nod(a,W8(g));for(h=0;h0&&dsd(e.k).b.vd()==1&&Q0b(dsd(e.k).a.zd(0))){if(!dsd(d.n).a.sd()&&!dsd(d.k).a.sd()){c=uD(d);zVb(d,c)}}return d} -function E3b(){B3b();return vuc(quc(uXc,1),MId,57,0,[c3b,d3b,f3b,e3b,A3b,U2b,V2b,i3b,j3b,a3b,b3b,$2b,_2b,W2b,X2b,s3b,t3b,Y2b,Z2b,m3b,n3b,k3b,l3b,g3b,h3b,q3b,r3b,o3b,p3b,w3b,x3b,u3b,v3b,y3b,z3b])} -function n5b(a){var b,c,d,e,f,g;f=new gs(a.c);e=new gs(a.c);Xrd();bs(e,a.a);d=new es;for(c=new Frd(e);c.a0)){return Xrd(),Xrd(),Wrd}d=_J(a);for(c=a.a.Oe().Qb();c.Rc();){b=c.Sc();T(b.c.Bm(),a.a)&&rtd(d,mnd((JTb(),HTb)==b.e.a?b.b:b.b<0?b.b:b.b/2|0))}return d} -function iQ(a,b,c){dH.call(this,a);this.d=new uP(a.i,c);this.e=new aQ(b);this.a=new JP(this.o,this.e,this.d);this.b=new PP(this.o,this.e,this.d);this.c=new BP(this.o,this.e,this.d);bH(this,this.c)} -function Kzb(a){var b,c,d,e,f;f=Sgd(a.b,Rf(a.b).selectedIndex);for(c=(X1b(),vuc(quc(qXc,1),nyd,137,0,[U1b,T1b,R1b,S1b,W1b,V1b])),d=0,e=c.length;d>22-b;e=a.h<>22-b}else if(b<44){c=0;d=a.l<>44-b}else{c=0;d=0;e=a.l<>>e|c[g+d+1]<>>e;++g}return f} -function rC(a){var b,c,d,e,f,g;for(g=(e=(new ard(a.j)).a.mp().Qb(),new brd(e));g.a.Rc();){f=(b=g.a.Sc(),b.yp());tWb(a.e,f)}for(d=new qsd(dsd(a.e.v).b.Qb());d.b.Rc();){c=d.b.Sc();ty(c,new ard(a.j))}} -function r5(a){var b,c;if(a.e){if(Hnd('MRV_IMPLICIT_H',a.e.b)){c=(!a.d&&(a.d=new b5),a.d).a;b=new RegExp('^IMPL_H[1-9]$');if(c!=null&&b.test(c)){return mnd(Xmd(Tnd(c,'IMPL_H',''),10))}}}return null} -function V8(a){var b,c,d;if(a.length==3){return a}b=new yod;b.a+=''+a;d=$wnd.Math.max(0,3-a.length);c=suc(svc,fyd,23,d,15,1);Jrd(c,c.length,32);b.a+=(Cnd(),kod(c,0,c.length));return b.a.substr(0,3)} -function z9(a,b,c){var d,e,f,g;if(c.a.length!=0){d=c.a.length;f=new Frd(c);while(d>0){a.a+=b;g=$wnd.Math.min(8,d);nod(a,W8(g));for(e=0;eh){j=h;g=c}}return g} -function Uyb(a,b,c){this.d=new jud;this.j=new ltd;if(!a){throw I8c(new bnd('Type must not be null, and properties must not be null or empty if type is VARIOUS'))}this.n=a;this.i=c;this.c=b;Nyb(this)} -function iBb(b,c,d){var e,f,g;e=oBb(d,mnd(0));g=new tCb(c,e);if(ZBb(b.a,c)){try{g=new uCb(c,GCb(e,VBb(b.a,c)),e)}catch(a){a=H8c(a);if(!kvc(a,268))throw I8c(a)}}f=oCb(g)||$Bb(b.a,g.d);g.b=!f;return g} -function tcc(){tcc=p9c;scc=new is;rcc=wcc(null,false);wcc('=',true);wcc('<>',true);wcc('<',true);wcc('<=',true);wcc('>',true);wcc('>=',true);wcc('between',true);wcc('like',true);wcc('contains',true)} -function oqc(b,c){var d,e;!c.e||c.Xd();e=c.f;Fl(c,b.b);try{vqc(b.a,c,null)}catch(a){a=H8c(a);if(kvc(a,274)){d=a;throw I8c(new Lqc(d.a))}else throw I8c(a)}finally{e==null?(c.e=true,c.f=null):(c.f=e)}} -function Dsc(){Bsc();return vuc(quc(i1c,1),nyd,70,0,[esc,msc,Trc,Urc,Vrc,Wrc,nsc,osc,psc,qsc,Xrc,Yrc,Zrc,$rc,_rc,csc,dsc,asc,bsc,fsc,gsc,hsc,isc,jsc,ksc,lsc,rsc,ssc,tsc,usc,vsc,wsc,xsc,ysc,zsc,Asc])} -function y$(a,b){var c,d;c=a.e.a.length%2==0?'rgba(70,130,180, 0.3)':'rgba(255,0,0, 0.3)';d=u$(a,b,c);!!a.c&&rS(a.c,b);if(a.d){d&&b.sf(e$(a.o),a.n,a.j,new vT(true,3,true,c));b.sf(e$(a.o),a.n,a.j,r$)}} -function jcb(a,b,c){var d;if(a.b.a.length==0||c>=Yr(a.b,a.b.a.length-1).a){Wr(a.a,b);Wr(a.b,mnd(c))}else{d=a.b.a.length-1;while(d>=0){if(c=0){return a.d.a.c.b}c=(Xrd(),Xrd(),Urd);d=(null,Urd);if(0==b){c=yL(a);d=rL(a,zL(a))}else if(1==b){c=zL(a);d=sL(a,yL(a))}d.Fd(null);e=vL(c,d);return e?e.a:xL(d)} -function c4(a){var b,c,d;c=b4(a);d=vuc(quc(uvc,1),jyd,23,15,[0,1,4,8,12,-1]);for(b=0;b0)&&IEb(a.d,b)}} -function dUb(a){aUb();var b,c,d,e;if(a==null){return VTb}for(c=vuc(quc(pWc,1),nyd,201,0,[ZTb,_Tb,XTb,YTb,WTb,UTb,$Tb,VTb]),d=0,e=c.length;df)&&(d=f);if(d==f){Fjc(h,g,null)}else{e=h.options[d];Fjc(h,g,e)}} -function $b(a,b){var c,d,e,f,g;g=a.k;c=a.b;for(d=0;d111){return true}for(e=0;eOH/2&&b=0;d--){if(a[d]!==e[d]){c=a[d]!=0&&Q8c(K8c(a[d],SLd),K8c(e[d],SLd));break}}}g=new gpd(1,f+1,a);c&&dqd(g,b);Qod(g);return g} -function Atd(a,b,c){var d,e,f,g;g=b==null?0:a.b.tp(b);e=(d=a.a.get(g),d==null?new Array:d);if(e.length==0){a.a.set(g,e)}else{f=xtd(a,b,e);if(f){return f.zp(c)}}e[e.length]=new grd(b,c);++a.c;return null} -function fb(a,b,c){var d,e,f;owd(db,(Uvd(),Svd))&&lwd(db,'Checking valence for the Boron.');d=(b>0?(f=b):b<0?(f=$wnd.Math.abs(b)-2):(f=0),f);if(d>3){return ec()}if(c>3){return ec()}e=3-a-d-c;return dc(e)} -function pe(a,b){me(a,b.a?b.a.c.fb(Lyd):null);fg(a,b.a?b.a.c.fb(Cyd):null);le(a,b.a?b.a.c.fb(Fyd):null);ie(a,b.a?b.a.c.fb(Byd):null);oe(a,b.a?b.a.c.fb(Nyd):null,null);ne(a,b.a?b.a.c.fb(Oyd):null);ke(a,b)} -function uh(a,b,c){var d,e;if(c<0||c>a.b.a.length){throw I8c(new kmd)}Vr(a.b,c,b);e=0;for(d=0;d>>b;e=a.m>>b|c<<22-b;d=a.l>>b|a.m<<22-b}else if(b<44){f=0;e=c>>>b-22;d=a.m>>b-22|a.h<<44-b}else{f=0;e=0;d=c>>>b-44}return Auc(d&XKd,e&XKd,f&YKd)} -function u6(a){if(a.length==0){throw I8c(new bnd(MDd+a))}return i1b(),m1b(a,false)||o1b(a,false)||Hnd(a,'R#')||Hnd(a,'L')||Hnd(a,'*')||p1b(a)!=-1?jUb(a):(eTb(),Y_b(),Gqd(X_b,a)?new E1b($_b(a)):new G1b(a))} -function Bfb(a,b){var c,d,e,f,g;if(a.Wo()){g=a.To();for(c=0;c=0||c.b-c.d>=0)&&Lv(a,rIb(a.a,new hbc(c.c,c.d,c.a-c.c,c.b-c.d)))} -function sC(a,b){var c,d,e,f;f=cVb(Bdb(a.e,x$b(new F$b,b).a));e=new es;for(d=new Frd(f);d.a=2147483648&&(c-=4294967296);return c} -function XF(a,b){var c;c=false;if(a.a){QF(a);a.a=null;a.c=null;c=true}if(Os(),Ns){bG(a);return c}if(!c&&!!a.b.c){Vz(a.b.c,bbc(a.b.c.b,b));a.n.w.Hf()}if(!c&&!!a.b.d){Vz(a.b.d,bbc(a.b.d.b,b));a.n.w.Hf()}return c} -function jV(a,b){var c,d,e;iV(this);e=new es;for(d=new Frd(a.e);d.a1&&(b=T1(a,(O$b(),K$b)),b==null||(e4b(),d4b)==i4b(b))){return x9c(new RegExp('^1-([2-9]|[1-9]\\d{1,2})$'),T1(a,(O$b(),N$b)))}return false} -function oi(b){var c,d,e;try{e=hvc(ci(new ei(new gi(b))));d=suc(j6c,lyd,50,e.length,0,1);for(c=0;c>1);Ord(b,a,j,l,-e,f);Ord(b,a,l,h,-e,f);if(f.Wg(a[l-1],a[l])<=0){while(c0&&(b=b.substring(c+'base64,'.length));e.nl(b)}}(f,g);h.readAsDataURL(f)}} -function Ked(a){var b;this.a=a;Gg.call(this,(abd(),rkc($doc)));b=this.U;b['href']='javascript:void(0);';b.style[pLd]='block';this.Q==-1?obd(this.U,1|(this.U.__eventBits||0)):(this.Q|=1);this.U.className='header'} -function wxd(a,b){var c=[];for(i=0;i=a&&Object.prototype.toString.apply(b[e])===$xd){c.push(b[e])}else{var f=[];for(i=e;id.b.a&&c.b>d.b.b&&c.a=0&&b.a<255){return ''+b}}return uId} -function yPb(a){var b,c,d,e,f,g;g=[];for(f=new kt((new jt(a.categories)).a);f.b0&&a.Mb(b);a.Db();a.Kb();Xpc(a,true)} -function qM(a){jM();$G.call(this,a);this.j=new vT(false,2,false,_Bd);this.i=new vT(false,1,false,_Bd);this.c=new xT(true,_Bd);this.k=new vT(false,4,false,aCd);this.b=new vT(false,4,false,'firebrick');this.d=new fM} -function UP(a){var b,c,d,e,f,g;g=new es;c=a.d.Me();for(f=0;f0&&e<=2){d=new y2b((WZb(),UXb));pTb(d,H9b(b.Lh(),false,K9b(b),LBd));Wr(g,vuc(quc(tWc,1),zBd,49,0,[b,d]))}}return g} -function sV(a,b,c){var d,e,f,g,h;f=new V9b;Q9b(f,b);for(h=new Frd(a);h.a0&&Ii(a.b,$wnd.Math.max(5,16-(Ohc()-c.a)))} -function _9c(b){var c;if(Hnd('',s9c(b))){return null}try{return mnd(qvc(rnd($sc((Qsc(),!Psc&&(Psc=new itc(irc())),Qsc(),Psc),s9c(b)))))}catch(a){a=H8c(a);if(kvc(a,65)){c=a;throw I8c(new vqd(c.i))}else throw I8c(a)}} -function Fjd(a,b,c){var d,e,f;if(c<0||c>a.c){throw I8c(new kmd)}if(a.c==a.a.length){f=suc(R4c,_Hd,29,a.a.length*2,0,1);for(e=0;ec;--d){a.a[d]=a.a[d-1]}a.a[c]=b} -function kC(a,b){var c,d,e,f,g,h;e=b.a.a;g=new es;for(d=(h=(new ard(e.a)).a.mp().Qb(),new brd(h));d.a.Rc();){c=(f=d.a.Sc(),f.yp());Cqd(a.a,c)?qtd(b.a.a,Eqd(a.a,c))||Wr(g,Eqd(a.a,c)):(g.a[g.a.length]=c,true)}return g} -function lC(a,b){var c,d,e,f,g;a.k=new es;f=new _td;for(d=new Vqd((new Sqd(b)).a);d.b;){c=Uqd(d);g=c.Ok();e=c.yp();if(kvc(g,167)){if(PB(g)2&&b<13||b<1){throw I8c(new bnd('Element with atom num:'+a+' is not in a Main Group Of Elements (This is a metal or pseudo element)'))}return b-10} -function M5b(a,b){var c,d,e,f,g,h;g=new Tac((f=E5b(a),f?f.Lh():new pad),(e=E5b(a),e?e.Ki():0));h=new Tac(lad(b.a,g.a),b.b-g.b);for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){c=d.b.Sc();c.lm(Qac(new Tac(c.Lh(),c.Ki()),h))}} -function J9b(a,b,c){var d,e,f,g,h;g=new es;d=B9b(c);for(f=new Frd(N9b(b,d.a,d.b));f.a=0;f--){h=Pod(g);Kpd(h,c);g=$od(g,h);if((e.a[f>>5]&1<<(f&31))!=0){g=$od(g,d);Kpd(g,c)}}Kpd(g,c);return g} -function OO(a,b){var c,d,e,f;d=lad(gw(a.o.i,b),gw(a.o.i,a.b));e=jw(a.o.i,kH(a.a.c.gn(),a.c?d:new qad(0,0)));f=jw(a.o.i,kH(a.a.a.gn(),a.c?new qad(0,0):d));c=$wnd.Math.abs(hw(a.o.i,LBd));return rac(e.a,e.b,0,f.a,f.b,0)>c} -function NU(a){var b,c,d,e,f;if(a==null){return null}f=Und(a.toLowerCase(),' ',0);for(d=0,e=f.length;da.d*2&&(a.d=(a.c+1)/2|0);if((RTb(),MTb)==b){c=a.d++}else if(NTb==b){a.c%2==0&&(a.c=a.d*2);c=a.c++}return c} -function pXb(a,b,c){var d;this.e=c?(RTb(),MTb):(RTb(),NTb);this.c=a;this.d=b;sac(this.c.Bm().Lh(),jXb(this))<3.08&&(this.f=0.75,vTb(this));if(a.Dm()){this.b=-100}else if(!c){d=a.Bm().Xl();(X1b(),U1b)==d||(this.b=-d.c)}} -function xwd(a,b,c,d,e,f){var g,h,j,l,m;if(pvc(a)===pvc(c)){a=a.slice(b,b+e);b=0}j=c;for(h=b,l=b+e;hMarvin<\/font> JS<\/font><\/b>'));qwb=Qrc((Bsc(),$rc));pwb=Qrc(Wrc);rwb=wrc((Orc(),Rrc(CHd,Msc((Lsc(),Lsc(),Ksc)))),'2099-12-31')} -function bac(a,b){var c,d,e,f;f=new _td;e=new Frd(b);for(d=0;e.ac[1]+d[0]?(eQ(),cQ):(eQ(),dQ)} -function D0(a,b,c){var d,e,f;d=a.f.Jf(c,b.e,b.c);a.e=kH(a.e,new qad(d.c,0));f=a.e;if((wR(),tR)==b.b.b){e=E0(a,b.e);f=kH(f,new qad(0,-e))}else if(vR==b.b.b){e=E0(a,b.e);f=kH(f,new qad(0,e))}R9b(a.a,a.e);R9b(a.a,f);a.d=b.e} -function oIb(a,b,c){Kad(a.p,b);Jad(a.p,c);Kad(_Ib(a.i,(Lz(),Iz)),b);Jad(_Ib(a.i,Iz),c);Kad(_Ib(a.i,Jz),b);Jad(_Ib(a.i,Jz),c);Kad(_Ib(a.i,Hz),b);Jad(_Ib(a.i,Hz),c);Kad(_Ib(a.i,Kz),b);Jad(_Ib(a.i,Kz),c);nJb(a.k,b,c);iIb(a)} -function a5b(a){var b,c,d,e;for(d=new qsd(dsd(a.a.w).b.Qb());d.b.Rc();){b=d.b.Sc();$4b(a,b)}for(e=new qsd(dsd(a.a.v).b.Qb());e.b.Rc();){b=e.b.Sc();$4b(a,b)}for(c=new qsd(dsd(a.a.r).b.Qb());c.b.Rc();){b=c.b.Sc();$4b(a,b)}} -function f5b(a){var b,c,d,e;for(d=new qsd(dsd(a.a.w).b.Qb());d.b.Rc();){b=d.b.Sc();d5b(a,b)}for(e=new qsd(dsd(a.a.v).b.Qb());e.b.Rc();){b=e.b.Sc();d5b(a,b)}for(c=new qsd(dsd(a.a.r).b.Qb());c.b.Rc();){b=c.b.Sc();d5b(a,b)}} -function Shc(b){var c=Thc();var d=b.replace(/[\x00-\x1f\xad\u0600-\u0603\u06dd\u070f\u17b4\u17b5\u200b-\u200f\u2028-\u202e\u2060-\u2064\u206a-\u206f\ufeff\ufff9-\ufffb"\\]/g,function(a){return Qhc(a,c)});return '"'+d+'"'} -function Tdd(a){var b;ul.call(this,(abd(),Jkc($doc)));this.b=a;this.c=Ckc($doc);Lic(this.U,this.b);Lic(this.U,this.c);b=Rkc($doc);this.b[WDd]=b;hlc(this.c,b);this.a=new Aed(this.c);!!this.b&&(this.b.tabIndex=0,undefined)} -function TV(a,b,c,d,e){var f,g,h,j,l;h=e&&b.Rl()>0&&b.Ue();if(b.Xl().c+(h?b.Rl():0)==0){return lW(),kW}f=cbc(c,2*a.b.Yd());j=1.2*a.b.Yd();l=new pW(f,aac((g=new cac(b,d,h),!_9b&&(_9b=new y9b),g)),j);return !l.b?(lW(),kW):l} -function HW(a,b,c,d){var e,f;e=a.a.ce(b.Lh()).a;f=a.a.ce(KW(b).a[0]).a;if(e>=f+0.5){return Iac(),Gac}else if(f>=e+0.5){return Iac(),Eac}return JW(CW,c)||d>1&&JW(EW,c)?(Iac(),Eac):JW(DW,c)||JW(EW,c)?(Iac(),Gac):(Iac(),Fac)} -function Hvb(a,b){var c,d,e,f,g;for(d=new Frd(a.a);d.ag.a){e=-1;f=a.e.qi(a.d);g=a.e.pi(a.d)}c=g.a-f.a;d=g.b-f.b;b.gl();Ygc(b.el(),f.a,f.b);IHb(b,new pad,-$wnd.Math.atan2(d,c));a.ki(b,e,a.d.bi());a.mi(b);b.qe()} -function Vgb(a,b){var c,d,e,f,g;e=new gs(a.a);for(d=new Frd(b);d.a-1){_r(e,c);f=dsd(c.a.r);if(f.b.vd()>0){Vr(e,g,f.a.zd(0));Xr(e,usd(f,1,f.b.vd()))}}}return new Agb(e)} -function alb(){var a,b,c,d,e;for(b=(P0(),vuc(quc(pHc,1),nyd,199,0,[L0,M0,O0,N0,K0,J0])),c=0,d=b.length;ctr>td{padding:5px;}'));return true}return false} -function cb(a){$();var b,c,d,e;owd(Z,(Uvd(),Rvd))&&kwd(Z,'Checking valence for the 1st group.');b=a.a;if(Y(b)==1){d=a.d;e=a.b.Xl().c;if(e>1){return ec()}c=a.b.Nl();return b==1?bb(d,c,e):ab(d,c,e)}else{throw I8c(new Yc(kyd+b))}} -function XA(){var a;XA=p9c;WA=(a=new bB,$A(a,vuc(quc(RXc,1),nyd,112,0,[(s6b(),m6b),h6b,q6b])),$A(a,vuc(quc(RXc,1),nyd,112,0,[e6b,o6b])),$A(a,vuc(quc(RXc,1),nyd,112,0,[n6b,k6b,f6b])),$A(a,vuc(quc(RXc,1),nyd,112,0,[i6b,j6b])),a)} -function EC(a,b){var c,d,e,f,g,h;f=a.o.C;for(d=new Frd(LC(a));d.a>2)+(d==0?0:1);a.a=suc(uvc,jyd,23,a.d,15,1);e=0;while(c>d){a.a[e++]=b[--c]&255|(b[--c]&255)<<8|(b[--c]&255)<<16|(b[--c]&255)<<24}for(f=0;f=3){var b=parseInt(a[1])*1000000+parseInt(a[2])*hAd+parseInt(a.length>=5&&!isNaN(a[4])?a[4]:0);return b}return -1} -function tc(b,c){var d;if(c.d<0){owd(qc,(Uvd(),Rvd))&&kwd(qc,'Electrons in bonds < 0');return ec()}if(c.c[4]>0){return Zb(c,b.a)}else{try{return uc(b,c)}catch(a){a=H8c(a);if(kvc(a,239)){d=a;throw I8c(new Xc(d))}else throw I8c(a)}}} -function LP(a){var b,c,d,e,f,g;c=NP(a);if(a.p){b=a.b.c.Lh();f=lad(a.b.d.Lh(),b);e=(kBd+(kBd-$wnd.Math.atan2(f.b,f.a))%kBd)%kBd;g=Bac(lad(gw(a.o.i,a.p),b),new pad,e);d=c;g.b>0?(d=(eQ(),cQ)):g.b<0&&(d=(eQ(),dQ));d!=c&&(c=d)}return c} -function fY(a,b,c,d){var e,f,g,h,j,l,m;j=a.e.pi(a.d);l=a.e.qi(a.d);f=b;m=c;if(j.a>l.a){f=c;m=b}g=new qad(0,0);h=new qad(rac(j.a,j.b,0,l.a,l.b,0),0);a.f=eY(a,g,h,f,m,(iU(),hU),d);a.i=(e=Hnd(UBd,f)&&Hnd(f,m)?f:uBd,e);a.ji(g,h,f,m,d)} -function B7(a,b){var c,d,e,f,g,h,j;j=Ynd(b,(R5(),L5).a.length);c=(h5(),g=bod(j.substr(0,3)),g.length==0?0:Xmd(g,10));h=j.substr(3);for(d=0;d0){if(Gqd(a.c,UEd)){b=Xtd(a,UEd);this.a=b.length>0?Und(Xtd(a,UEd),' ',0):suc(g6c,eyd,2,0,6,1)}else{throw I8c(new bnd('atomID is missing'))}}else{this.a=suc(g6c,eyd,2,0,6,1)}} -function sib(a){var b;b=new ltd;if((s6b(),p6b)==a){Otd(b.e,KEd,'MDL');Otd(b.e,MEd,'4')}else if(i6b==a){Otd(b.e,KEd,'MDL');Otd(b.e,MEd,'3')}else if(j6b==a){Otd(b.e,KEd,'ChemAxon');Otd(b.e,MEd,'CTUnspec')}return b.d.c+b.e.b==0?null:b} -function xlb(a,b,c){var d,e,f;d=!c?{}:mPb(us(c));e=new hJb;return bf(),cf($wnd.Promise.resolve(gJb(e,b.d,a.G.C,(f=new ZIb(d),WIb(f,d.width||200),UIb(f,d.height||200),Dw(f,WOb(d)),Uo(f,d.svgScaling||1),XIb(f,d.zoomMode||'fit'),f))))} -function kgc(){kgc=p9c;new Nec('aria-busy');new Tdc('aria-checked');new Nec('aria-disabled');new Tdc('aria-expanded');new Tdc('aria-grabbed');new Nec(izd);new Tdc('aria-invalid');jgc=new Tdc('aria-pressed');new Tdc('aria-selected')} -function tqc(a,b,c,d){var e;if(!b){throw I8c(new und('Cannot add a handler with a null type'))}if(d==null){throw I8c(new und('Cannot add a null handler'))}a.b>0?sqc(a,new _ld(a,b,c,d)):(e=xqc(a,b,c),e.od(d));return new $ld(a,b,c,d)} -function ktc(a){var b,c;c=-a.a;b=vuc(quc(svc,1),fyd,23,15,[43,48,48,58,48,48]);if(c<0){b[0]=45;c=-c}b[1]=b[1]+((c/60|0)/10|0)&hyd;b[2]=b[2]+(c/60|0)%10&hyd;b[4]=b[4]+(c%60/10|0)&hyd;b[5]=b[5]+c%10&hyd;return Cnd(),kod(b,0,b.length)} -function ntc(a){var b;b=vuc(quc(svc,1),fyd,23,15,[71,77,84,45,48,48,58,48,48]);if(a<=0){b[3]=43;a=-a}b[4]=b[4]+((a/60|0)/10|0)&hyd;b[5]=b[5]+(a/60|0)%10&hyd;b[7]=b[7]+(a%60/10|0)&hyd;b[8]=b[8]+a%10&hyd;return Cnd(),kod(b,0,b.length)} -function zad(){if(x9c(new RegExp('(iPad|iPhone|iPod)'),$wnd.navigator.userAgent)&&Aad()){return $wnd.Math.min($wnd.Math.max(0,((oid(),$doc.body).offsetWidth||0)|0),5000)}return $wnd.Math.min($wnd.Math.max(0,parent.innerWidth),5000)} -function _fd(a,b,c){var d=$doc.createElement('td');d.innerHTML=dJd;var e=$doc.createElement('tr');for(var f=0;f>16);b=d>>16&16;c=16-b;a=a>>b;d=a-256;b=d>>16&8;c+=b;a<<=b;d=a-4096;b=d>>16&4;c+=b;a<<=b;d=a-16384;b=d>>16&2;c+=b;a<<=b;d=a>>14;b=d&~(d>>1);return c+2-b}} -function $i(a,b){var c;if(a.p){throw I8c(new end('Composite.initWidget() may only be called once.'))}if(!b){throw I8c(new und('widget cannot be null'))}kvc(b,174)&&b;vg(b);c=(abd(),b.U);_f(a,c);(Phd(),ibd(c))&&Qhd(c,a);a.p=b;yg(b,a)} -function Sp(){Sp=p9c;Np=new F9c(QAd,(Z9c(),new U9c('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAOCAYAAAD5YeaVAAAANElEQVR42mNgQAMBAQH/YZgBnyQhzEAyIMnUUcV0U/yTgOIfcMWBgYGteDT89Pf3bwGpAwAW+9lyZeWNbwAAAABJRU5ErkJggg==')),11,14)} -function Sr(a,b){var c,d,e,f,g;if(b===a){return true}if(!kvc(b,160)){return false}g=b;if(a.vd()!=g.vd()){return false}f=g.Qb();for(d=a.Qb();d.Rc();){c=d.Sc();e=f.Sc();if(!(pvc(c)===pvc(e)||c!=null&&T(c,e))){return false}}return true} -function nv(a){var b,c,d,e,f;d=new std;Lr(d,a.c.Ml());Lr(d,a.d.Ml());d.a.qp(a)!=null;for(c=(f=(new ard(d.a)).a.mp().Qb(),new brd(f));c.a.Rc();){b=(e=c.a.Sc(),e.yp());if(b.o==(s6b(),h6b)||b.o==i6b||b.o==j6b){return true}}return false} -function QZ(a,b){var c,d,e;c=$wnd.Math.max(a.b.Yd()*10,1);if(FF(HZ(a.c),IZ(a.c),b)<=c/2){return true}for(e=KZ(a.c).Qb();e.Rc();){d=e.Sc();if(bbc(d.xh(),b)){return true}}if(bbc(cbc(new ibc(LZ(a.c),0,0),c),b)){return true}return false} -function ogb(a,b){var c,d,e;d=Pib(a.c,'MEFlow');eld(d,'arcAngle',$md(360*b.f));(RTb(),NTb)==b.e&&eld(d,ZDd,b.c.Bm().Lh().a-iXb(b).Lh().a>0?'4':'2');c=pgb(a,b);if(c){Lkd(d,c);e=ngb(a,b);if(e){Lkd(d,e);rgb(a,d,b);return d}}return null} -function ohd(a,b){var c,d,e,f,g,h;b=_nd(b,(Aud(),xud));if(a.d!=null){for(c=0;c>>0,f.toString(16)),g='\\u'+Ynd('0000',e.length)+e,h=String.fromCharCode(32),b.replace(new RegExp(g,'g'),h))}}return b} -function sid(a){oid();var b,c;c=Fqd(mid,a);b=null;if(a!=null){if(!(b=Wkc($doc,a))){return null}}if(c){if(!b||(abd(),c.U==b)){return c}}if(Mqd(mid)==0){$bd(new uid);Lsc()}!b?(c=new vid):(c=new pid(b));Iqd(mid,a,c);ptd(nid,c);return c} -function Btd(a,b){var c,d,e,f,g;f=b==null?0:a.b.tp(b);d=(c=a.a.get(f),c==null?new Array:c);for(g=0;g0?b.c:b.b)-b.d}if(kvc(c,215)){return c.a}else if(ovc(c)){try{d=Xmd(c,10);return d}catch(a){a=H8c(a);if(kvc(a,65)){return (b.d>0?b.c:b.b)-b.d}else throw I8c(a)}}return (b.d>0?b.c:b.b)-b.d} -function XQ(a){var b,c,d,e;if(Hnd('\u25CF',a)||Hnd('\u207A',a)){return true}for(c=$nd(a),d=0,e=c.length;d'+b+Uyd);return b} -function Vp(){var a='Webkit Moz O ms Khtml'.split(' ');var b=$doc.createElement(Nzd);if(b.style.animationName!==undefined){return true}for(var c=0;c0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))){if(b.Le().sd()&&!b.Qe().sd()){return Svb(b)}}else if(dsd(c.k).a.sd()&&b.Le().vd()==1&&!b.Qe().sd()){return Svb(b)}}return b} -function WEb(a){this.j=new XEb(this);this.k=new YEb(this);this.n=a;this.o=(aFb(),ZEb);$Eb(this.o);this.a=Rkc($doc);this.b=Rkc($doc);this.d=Rkc($doc);this.f=Rkc($doc);this.c=new tad(this.b);this.e=new tad(this.d);this.i=new tad(this.f)} -function sbc(a,b){var c,d,e,f,g;f=new es;e=new gs(b);d=a.a.length;if(d>1){g=ds(a,suc(P5c,{3:1,2398:1,4:1},725,0,7,1));Nrd(g,0,g.length,null);for(c=0;c0&&b<=126){return b>0&&b<=126?h1b[b-1].c:null}return null} -function xBb(a){var b,c;c=CEb(a.b.a);if(c==null||c.length==0||bod(c).length==0){return null}c=bod(c);if(m1b(c,true)){return 'D'}else if(o1b(c,true)){return 'T'}b=Vyb(c);i1b();if(b>0&&b<=126){return b>0&&b<=126?h1b[b-1].c:null}return null} -function yb(a,b,c){var d;owd(vb,(Uvd(),Svd))&&lwd(vb,'Checking valence for the Oxygen.');d=2-a-c;if(b==0||b==6){return dc(d)}if(b<-2||b>6){return ec()}if(b<0){return dc(b+d)}if(b==5){return dc(d-1)}if(b==2){return dc(d+2)}return dc(d+b%2)} -function ng(a,b){var c=(a.className||'').split(/\s+/);if(!c){return}var d=c[0];var e=d.length;c[0]=b;for(var f=1,g=c.length;fe&&h.charAt(e)=='-'&&h.indexOf(d)==0&&(c[f]=b+h.substring(e))}a.className=c.join(' ')} -function rL(a,b){var c,d,e,f;if(hy(a.a)||!!a.f){f=hy(a.a)?dsd(a.a.r).a.zd(0):a.f;c=null;for(e=new qsd(dsd(a.o.i.C.v).b.Qb());e.b.Rc();){d=e.b.Sc();if(lsd(dsd(d.r),f)){c=mnd(d.a);break}}!!c&&Zr(b,c,0)==-1&&(b.a[b.a.length]=c,true)}return b} -function oP(a){var b,c,d,e,f,g,h;c=0;g=0;for(e=(f=(new ard((h=new std,Lr(h,a.a.c.Ml()),Lr(h,a.a.d.Ml()),rtd(h,a.a),h).a)).a.mp().Qb(),new brd(f));e.a.Rc();){d=(b=e.a.Sc(),b.yp());wv(a.a,d)==(dv(),av)?++c:++g}return c>g?(eQ(),cQ):(eQ(),dQ)} -function l8(a){var b,c,d,e,f,g;g=new is;for(c=new qsd(a.b.Qb());c.b.Rc();){b=c.b.Sc();U(b)==PXc&&Wr(g,b)}if(g.a.length!=0){d=new js(a);Or(d,g);for(f=new Frd(g);f.a0){d.a+='M MRV SMA ';k5(d,false,b,3,32);d.a+=' [';nod(d,D8(c));d.a+=';';d.a+=h;d.a+=']';d.a+=oyd}} -function lAb(a,b){var c,d,e,f,g;g=new pDb;for(d=(Kbc(),vuc(quc(TYc,1),nyd,191,0,[Cbc,Gbc,Hbc,Ebc,Fbc,Dbc,Ibc,Jbc])),e=0,f=d.length;eg&&e0?f.a.substr(1):''} -function Rvb(a,b){var c,d;if(!b||b.n.a.length==0&&b.k.a.length==0&&b.t.a.length==0&&b.u.a.length==0&&b.A.a.length==0){return}c=PVb(b);d=lad($Hb(a.a.i.a),dbc(c.gh()));Gy(c,d);c=Qvb(a,c);yQ(a.a.f,RC(a.a.i,c));Ry(a.a.i.A);az(a.a.i.A,c);Ww(a.a)} -function qJb(a){var b;this.a=a;this.b=(b=new YIb,b.a=24,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),b.c=24,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),b.r=true,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),b.u=false,!!b.f&&cJb(b.f.a.i,(Lz(),Iz),true),Hw(b,(iz(),hz)),b)} -function nPb(){return {atomIndicesVisible:false,atomMapsVisible:true,carbonLabelVisible:false,chiralFlagVisible:true,cpkColoring:true,implicitHydrogen:oBd,lonePairsVisible:false,valenceErrorVisible:true,displayMode:pBd,height:200,width:200}} -function bgd(a,b,c){var d,e,f;if(c==(abd(),b.U)){return}vg(b);f=null;d=new Ljd(a.i);while(d.b>5;if(e>=a.d){return a.e<0}c=a.a[e];b=1<<(b&31);if(a.e<0){d=Tod(a);if(e0){Qic(b,$ad._n(b,0))}for(d=new Frd(a.b);d.a$wnd.Math.abs(e)?(e=0):(d=0));return new qad(d,e)} -function _eb(a,b,c){var d,e,f,g,h;if(a){g=(e=kld(a.So(),_zd),e?Dld(e.a):null);if(Hnd(gFd,g)){if(Hnd(b,(f=kld(a.So(),hFd),f?Dld(f.a):null))){return c==null||(h=(d=kld(a.So(),NEd),d?Dld(d.a):null),Hnd(c,h)||h==null||h.length==0)}}}return false} -function fxb(a){var b,c,d,e,f,g,h;b=(d=DEb(a.a),d==null?'':d);h=(e=DEb(a.d),e==null?'':e);g=jxb((c=DEb(a.c),c==null?'':c));f=Rf(a.b).selectedIndex;return b==null||bod(b).length==0?null:new qcc(b,h,(tcc(),ds(scc,suc(VYc,IHd,282,0,0,1)))[f],g)} -function K7b(a,b){var c,d,e,f;if(dsd(b.k).b.vd()!=1){throw I8c(new bnd(''))}d=new Q7b(b);e=new V7b(d,dsd(b.k).a.zd(0));c=dsd(b.k).a.zd(0);if(a.a){f=new S7b(c,dsd(b.t));return new F7b(M7b(e.d,f.c,c),e.a,M7b(e.c,f.b,c),c,d)}return new E7b(e,d)} -function f8b(a){var b,c,d;d=new es;if(a.c.a.length==0){Wr(d,a.b.b);return d}if(a.c.a.length+1==a.b.b.a.length){for(c=new Frd(a.b.b);c.a0)&&(X1b(),U1b)==a.a.Xl()){return Xrd(),Xrd(),Wrd}d=$J(a);for(c=a.a.Oe().Qb();c.Rc();){b=c.Sc();if(T(b.c.Bm(),a.a)){rtd(d,mnd((JTb(),HTb)==b.e.a?b.b*2:b.b));HTb==b.e.a&&rtd(d,mnd(b.b*2+1))}}return d} -function zX(a,b,c){var d,e,f,g,h,j,l;h=new es;g=d2b(c);for(e=new Frd(g);e.a1){f=iDb(c);KCb(a,g,d)||nDb(c,f)}c.d=c.e;e=_Cb(a.d,b,oDb(c,d));gDb(e,c.e);Uo(e,new rDb(c));return e} -function eed(a,b){var c,d;a.d||(b=1-b);if(a.c==-1){c=qvc(b*$ic(a.a,qLd));d=qvc((1-b)*$ic(a.b,qLd))}else{c=qvc(b*a.c);d=a.c-c}if(c==0){c=1;d=$wnd.Math.max(1,d-1)}else if(d==0){d=1;c=$wnd.Math.max(1,c-1)}a.a.style[czd]=c+dzd;a.b.style[czd]=d+dzd} -function kF(a,b){var c,d;if(!!a&&!!b){c=Ojc((ujc(),a).clientX||0)-tjc.Cn(b)+tjc.In(b)+Ykc(b.ownerDocument);d=Ojc(a.clientY||0)-tjc.Dn(b)+((b.scrollTop||0)|0)+Zkc(b.ownerDocument);return new iF(vuc(quc(T1c,1),tBd,5,0,[new qad(c,d)]))}return null} -function CI(a,b){var c,d,e,f;if(b<=0.385){f=kH(a.i,a.b[a.c]);for(e=dsd(Vw(a.o).n).b.vd();e>0;--e){c=ssd(dsd(Vw(a.o).n),e-1);d=c.Lh();if($wnd.Math.abs(f.a-d.a)_ic((abd(),a.U),OHd).length){throw I8c(new lmd('From Index: 0 To Index: '+b+' Text Length: '+_ic(a.U,OHd).length))}Ckd(a.U,0,b)} -function xVb(a,b){if(Zrd(kXb(b),dsd(a.n))&&Zrd(kXb(b),dsd(a.p))){throw I8c(new bnd('Nodes of ElectronFlowArrow should be contained in the molecule'))}if(hs(a.q,b)==-1){hs(a.q,b)!=-1||Wr(a.q,b);b.c.Bm().bf(b);b.d.Bm().bf(b);b.p=a;SVb(a,new u7b)}} -function Tuc(a,b){var c,d,e,f,g;b&=63;c=a.h;d=(c&ZKd)!=0;d&&(c|=-1048576);if(b<22){g=c>>b;f=a.m>>b|c<<22-b;e=a.l>>b|a.m<<22-b}else if(b<44){g=d?YKd:0;f=c>>b-22;e=a.m>>b-22|c<<44-b}else{g=d?YKd:0;f=d?XKd:0;e=c>>b-44}return Auc(e&XKd,f&XKd,g&YKd)} -function VB(a,b){var c,d;this.a=new es;this.a.a=suc(_5c,lyd,1,0,5,1);for(d=new qsd(dsd(a.k).b.Qb());d.b.Rc();){c=d.b.Sc();!!c.c.fn()&&lsd(b,c.c.fn().b)&&Wr(this.a,new WB(true,c,c.c));!!c.a.fn()&&lsd(b,c.a.fn().b)&&Wr(this.a,new WB(false,c,c.a))}} -function aI(a){var b,c,d,e;if(a.a.b<=1){bI(a)}else{b=new y2b((WZb(),UXb));oTb(b,new Tac(SH(a,a.a.b%2==1),a.n));c=new std;c.a.pp(b,c);e=new std;d=new S2b((s6b(),m6b),a.a.c.b.c,b);e.a.pp(d,e);VH(a,new PC(a.o.i,y$b(x$b(new F$b,c),e).a));lud(a.a,b)}} -function KI(a,b){var c,d,e;if(a.i){e=Ku(a.o.i,jw(a.o.i,a.i));c=vuc(quc(tWc,1),zBd,49,0,[b,e]);if(!!e&&SI(a,e,b)&&aVb(a.o.i.C,new Srd(c))){d=new S2b((s6b(),m6b),e,b);II(a,d);Jl(a,jw(a.o.i,b.Lh()));a.a=d.c.Lh()}else b.Lh()==a.a&&zI(a,b)}a.i=b.Lh()} -function VPb(b,c,d){var e,f,g;if(!d){throw I8c(new tnd)}e=new Yqc(b.b,b.c);UPb(e);Wqc(e,'content-type',b.a.a);f=new $Pb(b,d);frc(rJd,f);e.a=f;e.e=c;try{frc(rJd,e.a);Uqc(e,e.e,e.a)}catch(a){a=H8c(a);if(kvc(a,229)){g=a;f.b.ob(g)}else throw I8c(a)}} -function OA(a,b,c){BA.call(this,a,a.C,x$b(new F$b,new Srd(vuc(quc(tWc,1),zBd,49,0,[b]))).a);if(!b){throw I8c(new bnd('Old atom cannot be null!'))}else if(!c){throw I8c(new bnd('New atom cannot be null!'))}this.c=b;this.b=c;this.a=new Yu(this.o.A)} -function nK(a,b){var c,d,e;d=qnd(b.a,b.c)*0.5;c=RT(new qad(b.b.a+b.c/2,b.b.b+b.a/2),d,new qad(b.b.a+b.c/2,b.b.b+b.a/2),1.3*d);Hqd(c.a,0,'rgba(255,255,255,0.9)');Hqd(c.a,1,qBd);e=new wT(true,c);GHb(a,new qad(b.b.a+b.c/2,b.b.b+b.a/2),1.3*d,false,e)} -function AHb(a){Sdd(a.p,(qmd(),a.q.r?true:false));Sdd(a.k,a.q.s?true:false);Sdd(a.a,a.q.p?true:false);Sdd(a.i,a.q.o?true:false);Sdd(a.j,a.q.q?true:false);Sdd(a.o,a.q.u?true:false);Sdd(a.n,a.q.t?true:false);Ugd(a.e,a.q.n.k);Ugd(a.c,a.q.j.k);vHb(a)} -function Yod(a,b){var c;if(b.e<=0){throw I8c(new jmd(PLd))}if(!(epd(a,0)||epd(b,0))){throw I8c(new jmd(QLd))}if(b.d==1&&b.a[0]==1){return Mod}c=Npd(Xod(a.e<0?new gpd(1,a.d,a.a):a,b),b);if(c.e==0){throw I8c(new jmd(QLd))}c=a.e<0?fqd(b,c):c;return c} -function jL(a){var b,c,d;d=new gs(a);if(d.a.length<3){return null}c=d.a[0];b=new utd(dsd(Ey(c).r));b.a.qp(c)!=null;if(Zrd(b,d)){c=d.a[1];b=new utd(dsd(Ey(c).r));b.a.qp(c)!=null}b.a.pp(c,b);Pr(b,d);Or(d,b);if(d.a.length==1){return d.a[0]}return null} -function $V(a,b,c,d,e){var f,g;if(Hnd(UBd,e)){g=new xT(true,UBd);GHb(b,c,d,true,g)}else{g=new xT(true,e);GHb(b,c,d,true,g);f=RT(c,1,c,$wnd.Math.max(d*a.b.Yd(),2));Hqd(f.a,0,'rgba(255,255,255,0.6)');Hqd(f.a,1,qBd);g=new wT(true,f);GHb(b,c,d,true,g)}} -function e4(a,b){var c,d,e,f;f=a.e.a.get(uDd);c=u3(a.e.a.get(xDd));e=null;Hnd('DAT',f)?(e=g4(a,b,c)):Hnd('GEN',f)?(e=new Z1(i4(b,c))):Hnd(zDd,f)?(e=j4(a,b,c)):Hnd(ADd,f)&&(e=k4(a,b,c));if(e){d=a.e.a.get('PARENT');d!=null&&Q4(b,e,Xmd(d,10))}return e} -function Jhb(a,b,c){this.n=a;this.b=new is;this.i=new is;this.k=new is;this.e=new ltd;this.f=ugb(a.c,VDd);eld(this.f,'molID','m'+$md(++a.e));if(b){Lkd(b.f,this.f);this.d=b.d}else{this.d=new Bgb}this.j=b;this.a=new Rhb(this,c);this.c=new Xhb(this,c)} -function t$b(a){var b,c,d,e;if(!a.b){a.b=new is;for(e=new qsd(dsd(a.c.p).b.Qb());e.b.Rc();){d=e.b.Sc();U(d.c)!=PXc&&U(d.d)!=PXc&&Wr(a.b,d)}for(c=new Frd(cWb(a.c));c.a0?a[j-1]:a[a.length-1];f=j118){return false}}else if(a.a==Gbc){c=qBb(b);i1b();if(!(c>0&&c<=126&&h1b[c-1].a==0)){return false}}return true} -function wF(a){var b,c,d;d=new is;for(c=new qsd(dsd(a.q).b.Qb());c.b.Rc();){b=c.b.Sc();!!b.c.fn()&&!lsd(dsd(a.B),b.c.fn().b)&&hs(d,b)==-1&&(d.a[d.a.length]=b,true);!!b.a.fn()&&!lsd(dsd(a.B),b.a.fn().b)&&hs(d,b)==-1&&(d.a[d.a.length]=b,true)}Or(a.q,d)} -function Elb(a){var b,c,d,e;b=new tmb(a,'molchange');d=new tmb(a,'selectionchange');e=new tmb(a,'zoom');c=new tmb(a,'scroll');Ju(a.G,new jmb(a,b));Iu(a.G,new lmb(a,d));if(Q0((P0(),O0))){RHb(a.f,new mmb(a,c));SHb(a.f,new nmb(a,e))}wQ(a.q.f,new omb(a))} -function r5b(a){var b,c,d,e,f,g,h;g=new is;h=dsd(a.a.f);c=nsd(h,suc(tWc,zBd,49,0,0,1));for(e=new qsd(dsd(a.a.a.b).b.Qb());e.b.Rc();){d=e.b.Sc();b=lsd(h,d.c)?d.c:d.d;for(f=0;f=a.u+a.n;if(a.q&&!d){e=(b-a.u)/a.n;a.ln((1+$wnd.Math.cos(jBd+e*jBd))/2);return a.p&&a.s==c}if(!a.q&&b>=a.u){a.q=true;a.kn();if(!(a.p&&a.s==c)){return false}}if(d){a.p=false;a.q=false;a.jn();return false}return true} -function xr(){xr=p9c;rr=new yr('HEX',0,'#[0-9a-zA-z]{3,6}',false);vr=new yr('RGB',1,'rgb\\(.*\\)',false);wr=new yr('RGBA',2,'rgba\\(.*\\)',true);sr=new yr('HSL',3,'hsl\\(.*\\)',false);tr=new yr('HSLA',4,'hsla\\(.*\\)',true);ur=new yr(XAd,5,'\\w+',false)} -function gZ(a,b,c,d){var e,f,g,h,j,l,m,n,o,q;e=sac(a.e.pi(a.d),a.e.qi(a.d));h=fDd*a.c.Yd();m=qvc(e/h)+1;if(m>1){l=(e-m*h)/2;f=(c>0?1:d)*a.c.Yd();g=(c<0?1:d)*a.c.Yd();o=l;q=f;n=(g-f)/(m-1);for(j=0;j6?(g=4-c):f>4?(g=f-c):f>2?(g=4-c):(g=2-c),dc(g))} -function x2(a){var b,c,d,e,f,g,h,j;j=new ltd;for(g=new Frd(a);g.ae.a&&(f-=c.a-e.a+d);c.b+d>e.b&&(g-=c.b-e.b+d);return new qad(f,g)} -function gS(a){cS();var b,c,d,e;if(a!=null){if(Hnd(a.substr(0,3),'br/')){return WR}for(c=vuc(quc($Ec,1),nyd,173,0,[VR,WR,XR,_R,YR,ZR,$R,bS,aS]),d=0,e=c.length;d=0){Hl(a.j,false);a.o=LBd){d=!a.i?new y2b((WZb(),UXb)):Ku(a.o.i,jw(a.o.i,a.i));d=!d?new y2b((WZb(),UXb)):d;c=new S2b((s6b(),m6b),d,new y2b((WZb(),UXb)));c.c.mm(a.i);c.d.lm(new Tac(e,d.Ki()));II(a,c);Jl(a,jw(a.o.i,c.d.Lh()))}} -function pX(a,b){var c;while(a.a118){return false}}else if(a.c==Gbc){b=Vyb(c);i1b();if(!(b>0&&b<=126&&h1b[b-1].a==0)){return false}}return true} -function t9(a,b,c){var d,e,f,g;k5(a,false,b,3,32);nod(a,c.a?' F':' T');a.a+=' ';f=(Xrd(),new osd(c.b));g=$wnd.Math.min(f.b.vd(),5);nod(a,(Cnd(),''+g));for(e=new qsd(f.b.Qb());e.b.Rc();){d=e.b.Sc();if(g==0){break}--g;a.a+=' ';k5(a,false,d.k+1,3,32)}a.a+=oyd} -function Unb(a,b){var c,d,e,f,g,h;Sn(a.a.b);for(d=new kt((new jt(b)).a);d.b1?''+c.Ql():null;g=xV(a,new jX((HU(),zU),false),'H');Wr(this.c,g);if(f!=null){h=BV(a,new jX(AU,false),f);this.a=h.c.a;Wr(this.c,h);e=g.d+this.a-h.d;h.f+=0;h.i+=e}this.d=RU(0,this.c)} -function p2(a,b,c){var d,e;MVb(a.a,b);if(c){d=b.b;e=new o0b(b.c,dsd(d.n));!(dsd(e.r).a.sd()&&dsd(e.s).a.sd()&&dsd(e.A).a.sd()&&(Xrd(),true)&&(Xrd(),true)&&(Xrd(),true)&&(Xrd(),true)&&dsd(e.u).a.sd()&&(Xrd(),true))&&Q6b(e,dsd(d.w),new es).a.length>1&&BVb(a.a,e)}} -function IGb(){var a=navigator.saveBlob||navigator.msSaveBlob||navigator.mozSaveBlob||navigator.webkitSaveBlob;if(a){return {func:a,owner:navigator}}var b=$wnd.saveAs||$wnd.webkitSaveAs||$wnd.mozSaveAs||$wnd.msSaveAs;if(b){return {func:b,owner:$wnd}}return null} -function Lhd(a,b){var c,d,e,f,g,h;a.j||(b=1-b);g=0;e=0;f=0;c=0;d=qvc(b*a.d);h=qvc(b*a.e);switch(a.a.r.k){case 2:f=a.e;c=d;break;case 0:g=a.d-d>>1;e=a.e-h>>1;f=e+h;c=g+d;break;case 1:Lsc();f=h;c=d;}(Jg(),Ig).Io(Rf(a.a),'rect('+g+'px, '+f+'px, '+c+'px, '+e+'px)')} -function JZ(a){var b,c,d,e,f;if(!a.o&&a.j!=null&&a.j.length!=0){b=FX(a,a.j,(HU(),DU).b,(z0(),y0));c=tac(a.k.e,GX(a,a.i),sac(a.k.e,GX(a,a.i))+$wnd.Math.max(10*a.u.Yd(),b.c/2));e=c.a-b.c/2;f=c.b-b.a/2;d=new ibc(new qad(e,f),b.c,b.a);a.o=new AT(DU,a.j,d)}return a.o} -function X8(a,b,c){var d;d=Eqd(a.b.a,c);if(d==null){d=suc(g6c,eyd,2,2,6,1);d[0]=V7(a,c.c);d[1]=V7(a,c.d)}l5(b,d[0]);l5(b,d[1]);k5(b,false,a9(c.o),3,32);k5(b,false,$8(c.o),3,32);k5(b,false,0,3,32);k5(b,false,_8(c.j),3,32);k5(b,false,Z8(c.e),3,32);b.a+='';b.a+=oyd} -function ctc(a,b){var c,d;d=0;c=new yod;d+=atc(a,b,0,c,false);a.u=c.a;d+=dtc(a,b,d,false);d+=atc(a,b,d,c,false);a.v=c.a;if(d0){b.a=b.a.substr(0,0)+''+Ynd(b.a,d);a.d-=d;a.e-=d}if(a.k>a.p&&a.k>0){a.e+=a.b-1;c=a.e%a.k;c<0&&(c+=a.k);a.b=c+1;a.e-=c}else{a.e+=a.b-a.p;a.b=a.p}if(a.d==1&&b.a.charCodeAt(0)==48){a.e=0;a.b=a.p}} -function MU(a,b){var c,d,e,f,g;c=NU(a);if(c){return UQ(b,c.a)}return d=document.getElementsByTagName('body')[0],e=document.createElement('span'),f=document.createTextNode(b),e.appendChild(f),e.setAttribute(RAd,a),d.appendChild(e),g=e.offsetHeight,d.removeChild(e),g} -function Nhb(a,b){var c,d,e,f,g,h,j,l;for(d=b.Me().Qb();d.Rc();){c=d.Sc();Phb(a,c)}for(f=b.Re().Qb();f.Rc();){e=f.Sc();g=Mhb(a,e);Mfb(a.c.n.a,e,g)}for(j=b.Pe().Qb();j.Rc();){h=j.Sc();l=Mhb(a,h);Wr(a.b,l);Lfb(a.c.n.a,h,l)}Ild(a.a.a)&&!Pkd(Fld(a.a.a))&&Lkd(a.c.f,a.a)} -function QAb(a,b){var c,d,e;c=b.b;d=new Wl(new Cgd((dub(),Osb)),new Cgd((Ctb(),lsb)));kg((abd(),d.U),qId,true);Ul(d,(qmd(),c?false:true));a.U[mAd]=!c;!a.U[mAd]&&!b.c&&IEb(a,b.c?null:b.f);return d?(e=JAb(),Qo(e,a),Qo(e,d),pg(d,new KAb(a),(!Xt&&(Xt=new Ioc),Xt)),e):a} -function _pd(a,b){var c;if(a.e==0){Eod(b.a,0,a.a,0,b.d)}else if(b.e==0){return}else if(a.e==b.e){Zpd(a.a,a.a,a.d,b.a,b.d)}else{c=iqd(a.a,b.a,a.d,b.d);if(c>0){hqd(a.a,a.a,a.d,b.a,b.d)}else{eqd(a.a,a.a,a.d,b.a,b.d);a.e=-a.e}}a.d=$wnd.Math.max(a.d,b.d)+1;Qod(a);a.b=-2} -function jE(a){var b,c,d,e,f,g,h,j;j=new es;for(h=(f=(new drd(a.e)).a.mp().Qb(),new erd(f));h.a.Rc();){g=(b=h.a.Sc(),b.Ok());j.a[j.a.length]=g}e=Cac(ds(j,suc(T1c,tBd,5,0,0,1)),a.b,a.j);d=0;for(c=new iud(new gud(a.e));c.b!=c.c.a.b;){b=hud(c);b.d.mm(kH(e[d],a.n));++d}} -function lE(a){var b,c,d,e,f,g,h,j;j=new es;for(h=(f=(new drd(a.k)).a.mp().Qb(),new erd(f));h.a.Rc();){g=(b=h.a.Sc(),b.Ok());j.a[j.a.length]=g}e=Cac(ds(j,suc(T1c,tBd,5,0,0,1)),a.b,a.j);d=0;for(c=new iud(new gud(a.k));c.b!=c.c.a.b;){b=hud(c);b.d.mm(kH(e[d],a.n));++d}} -function LH(a){var b,c,d,e,f;f=F9b(LG(a),a.k);if(!f){return}e=xH(f,LG(a),a.o.i);d=new S2b(a.e,LG(a),e);c=new wB;b=vuc(quc(tWc,1),zBd,49,0,[LG(a),e]);if(aVb(a.o.i.C,new Srd(b))){lsd(dsd(a.o.i.C.n),e)||uB(c,new BC(a.o.i,e));uB(c,new OC(a.o.i,d));yQ(a.o.f,vB(c,a.o.i))}} -function NCb(a){var b,c,d;d=a.c.i;b=new wB;c=LCb(a,a.j,(WCb(),VCb));if(c){uB(b,new KD(a.a));!!c&&Wr(b.a,c)}uB(b,LCb(a,a.i,UCb));uB(b,LCb(a,a.e,SCb));uB(b,LCb(a,a.f,TCb));rm(a.b.a,false);b.a.a.length==0||yQ(a.c.f,new TA(d,new AB(d,ds(b.a,suc(PEc,ABd,38,0,0,1))),a.a))} -function Rpd(a,b,c,d,e){var f,g,h;f=0;g=0;for(h=0;h')!=-1&&(a=w9c(L9c,a,'>'));a.indexOf('"')!=-1&&(a=w9c(O9c,a,'"'));a.indexOf("'")!=-1&&(a=w9c(P9c,a,'''));return a} -function sp(a,b,c,d){var e,f,g,h,j,l;j=new zo;Of(j,(xp(),'mjs-obf-C'));if(d!=null){e=Und(d,' ',0);for(g=0,h=e.length;g0){hqd(a.a,a.a,a.d,b.a,b.d)}else{eqd(a.a,a.a,a.d,b.a,b.d);a.e=-a.e}}a.d=$wnd.Math.max(a.d,b.d)+1;Qod(a);a.b=-2} -function A7(a,b){var c,d,e,f,g,h,j;c=new RegExp('(\\d+)( +\\w{2})');f=c.exec(b);if(!!f&&f.length==3){e=Xmd(f[1],10);h=bod(f[2]);g=Yr(a.a,e-1);if(g){d=i4b(h);Kl(g,d?(d.j!=null?d.j:''+d.k).toLowerCase():null)}j=f.index+f[0].length;return j0){f=a.b.Mj(b);c=new es;if((X1b(),S1b)==h){Wr(c,Fgb(a,Hgb(a,f,true,true)))}else if(h.c>0){for(e=0;e0){for(f=new Vqd((new Sqd(b.b)).a);f.b;){e=Uqd(f);try{Gkd(c,e.yp(),e.Ok())}catch(a){a=H8c(a);if(kvc(a,109)){d=a;throw I8c(new arc(d.ab()))}else throw I8c(a)}}}else{c.setRequestHeader('Content-Type','text/plain; charset=utf-8')}} -function Y5b(a){var b,c,d,e,f;if(a.c.f.a.length!=0){f=new gs(dsd(a.c.a.b));Xr(f,dsd(a.c.c.b));Xr(f,dsd(a.c.b.b));d=new gs(a.c.f);c=new Frd(a.c.f);while(c.a3&&Krc(a,0,b-3)}} -function vFb(a,b){var c,d,e;this.c=new es;this.b=new qqc(null);Xr(this.c,a);this.a=new Wgd;Vgd(this.a);e=Zr(this.c,b,0);e=e>-1?e:0;for(d=new Frd(this.c);d.ac||ef&&hc?1:-1:$pd(a.a,b.a,g))==-1){return a}e=suc(uvc,jyd,23,c,15,1);if(c==1){e[0]=Upd(a.a,g,b.a[0])}else{d=g-c+1;e=Fpd(d,a.a,g,b.a,c)}f=new gpd(a.e,c,e);Qod(f);return f} -function Wwd(a,b){var c,d,e,f;a=(Cnd(),a);c=new zod;f=0;d=0;while(d'+Yic(Wdd((!a.d&&Cl(a,a.o),a.d)))+Uyd);Xdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f),Tyd+b+';">'+Yic(Wdd((!a.d&&Cl(a,a.o),a.d)))+Uyd)}else{Rnd(Yic(Wdd(a.o)),c,b);Rnd(Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))),c,b)}}} -function ki(){ki=p9c;var a,b,c,d,e,f;ii=suc(svc,fyd,23,64,15,1);e=0;for(b=65;b<=90;b++){ii[e++]=b}for(c=97;c<=122;c++){ii[e++]=c}for(a=48;a<=57;a++){ii[e++]=a}ii[e++]=43;ii[e]=47;ji=suc(rvc,Kzd,23,128,15,1);for(f=0;f>24}} -function Gu(a){switch(a.k){case 4:case 5:case 6:case 0:return ld(),gd;case 7:case 8:case 1:return ld(),cd;case 2:return ld(),kd;case 3:return ld(),_c;case 9:return ld(),jd;case 10:return ld(),hd;case 11:return ld(),dd;case 12:return ld(),$c;case 13:return ld(),bd;}return ld(),gd} -function brb(a,b){var c,d,e,f,g,h,j;h=new es;if(b.a.vd()!=dsd(a.n).b.vd()){f=0;for(d=new qsd(dsd(a.n).b.Qb());d.b.Rc();){c=d.b.Sc();b.a.lp(c)||Wr(h,mnd(f));++f}}e=suc(uvc,jyd,23,h.a.length,15,1);j=0;for(g=new Frd(h);g.a0){r=(Zbd(),Vkc($doc)+Ykc($doc));q=Ykc($doc);h=r-j;e=j-q;h=l&&(j-=l)}n=Wic(b.U);s=(Zbd(),Zkc($doc));o=Zkc($doc)+Ukc($doc);f=n-s;g=o-(n+b.vb());g=d?(n-=d):(n+=b.vb());Zg(a,j,n)} -function H9(a,b,c){var d,e;if(b.length>69){e=b.length/69|0;for(d=0;da.d){h=a;a=b;b=h}if(b.d<63){return qqd(a,b)}g=(a.d&-2)<<4;l=dpd(a,g);m=dpd(b,g);d=fqd(a,cpd(l,g));e=fqd(b,cpd(m,g));j=mqd(l,m);c=mqd(d,e);f=mqd(fqd(l,d),fqd(e,m));f=Xpd(Xpd(f,j),c);f=cpd(f,g);j=cpd(j,g<<1);return Xpd(Xpd(j,f),c)} -function z6(a){switch(a){case 1:return s6b(),m6b;case 2:return s6b(),h6b;case 3:return s6b(),q6b;case 4:return s6b(),f6b;case 5:return s6b(),o6b;case 6:return s6b(),n6b;case 7:return s6b(),k6b;case 8:return s6b(),e6b;default:throw I8c(new bnd((Cnd(),'Invalid bond type:'+(''+a))));}} -function l7(){l7=p9c;k7=new m7('TOTAL_H',0,(kcc(),Xbc),'H[0-9]+');g7=new m7(NDd,1,Sbc,'h[0-9]+');e7=new m7(ODd,2,Rbc,'X[0-9]+');h7=new m7(PDd,3,Ubc,'(R(\\*|[0-9]+){0,1})');i7=new m7(QDd,4,Vbc,'r[0-9]+');f7=new m7('DEGREE',5,Wbc,'D[0-9]+');j7=new m7(SBd,6,Wbc,'(s(\\*|[0-9]+){0,1})')} -function u9b(a,b,c){var d,e,f,g,h,j;if(c.a.length==0||b>=a.a.length){return}j=sbc(c,a);if(j.a.length!=0){f=new es;d=b;j.a[0].f>jBd&&(d=w9b(j.a[0],b));while(d>0){e=x9b(new Frd(j),d);if(e==d){break}d=e}for(h=new Frd(j);h.a2){return ec()}d=a.b.Nl();b==8?(e=yb(c,d,f)):(e=zb(a,c,d,f,a.f));return e}else{throw I8c(new Yc('Calling column 16 for atom number: '+b))}} -function Dib(a,b,c){var d,e,f;if(!b){return null}if(b.n.a.length==0&&b.k.a.length==0&&b.t.a.length==0&&b.u.a.length==0&&b.A.a.length==0){return '<\/MDocument><\/cml>'}d=(Jkd(),Pkd(Ikd.$o()));e=new wgb(d);f=zib(e);Lkd(d,f);vib(a,e,f,b,c);return (old(),old(),nld).bp(d)} -function Spb(a,b,c){var d,e;if(!YK(b.a.a,c)){e=new W0b(c,b.b,a.a);d=vB(uB(uB(new wB,new DD(a.c.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[b]))).a)),new PC(a.c.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[e]))).a)),a.c.i);xic((pic(),oic),new Upb(a,d));return true}return false} -function I9b(a){var b,c,d,e,f,g,h,j;f=new std;for(c=a.Ml().Qb();c.Rc();){b=c.Sc();ptd(f,E2b(b,a).Lh())}for(e=a.Ul().Qb();e.Rc();){d=e.Sc();T(d.b,a)&&ptd(f,(g=mUb(d.a),g.a))}for(j=new qsd(a.Re().b.Qb());j.b.Rc();){h=j.b.Sc();ptd(f,(!h.d&&P3b(h),kH(h.a.Lh(),h.d)))}return L9b(a.Lh(),f)} -function Uac(a){var b,c,d,e,f,g,h;g=new es;if(!!a.a&&a.a.vd()>1){h=new jud;f=new kud(a.a);b=(e=(new ard(f.a)).a.mp().Qb(),c=(new brd(e)).a.Sc(),c.yp());f.a.qp(b)!=null;h.a.pp(b,h);while(f.a.vd()!=0){b=Wac(f,T9b(Z9b(h)));d=Wac(h,b);Wr(g,Vac(b,d));h.a.pp(b,h);f.a.qp(b)!=null}}return g} -function rE(a,b,c){var d,e,f;this.a=new _td;this.c=new ltd;this.b=a;this.e=c;if(!!c&&!Sx(c.A)){this.d=new Cy(c.A);for(f=b.Qb();f.Rc();){d=f.Sc();Xx(this.d,d.Me(),d.Ne())}}for(e=b.Qb();e.Rc();){d=e.Sc();Ytd(this.a,d,(qmd(),!!this.e&&U(d)==OXc&&Zr(cWb(this.e.C),d.i,0)!=-1?true:false))}} -function Zbb(a){var b,c,d,e,f,g;if(a!=null&&!Hnd(a,'0')){g=Und(a,':',0);c=g.length>1?Und(g[1],';',0):Und(g[0],';',0);f=new ltd;d=null;for(e=0;eh.c){for(f=b.Oe().Qb();f.Rc();){e=f.Sc();T(b,e.c.Bm())&&b2b(e.b)&&!Y1b(h,e.b)&&(d.a[d.a.length]=e,true)}}}return d} -function eEb(a){var b,c,d;this.b=a;this.a=new Am;zm(this.a,MGd);Of(this.a,LId);b=new ajd;Yid(b,bEb(this,false),'Acyclic');Yid(b,bEb(this,true),'Cyclic');Uid(b.b,0);c=aEb(this,vuc(quc(uXc,1),MId,57,0,[(B3b(),c3b),d3b,f3b,e3b,A3b]));d=new Bjd;En(d,(qgd(),mgd));yjd(d,b);yjd(d,c);Cg(this.a,d)} -function QW(a,b){if(b.Gl()!=null){return false}if(a.a&&b.Hl()==6&&a.b!=(sz(),qz)){return true}if(b.Ql()==0||a.b==(sz(),qz)){return false}if(a.b==(sz(),pz)&&(b.Hl()==p1b('H')||b.Hl()==p1b('C'))){return false}if(a.b==rz&&(b.Hl()==p1b('H')||b.Hl()==p1b('C'))&&LW(b)>1){return false}return true} -function w7(a,b){var c,d,e,f,g,h,j,l,m,n;n=Ynd(b,(R5(),F5).a.length);e=(h5(),h=bod(n.substr(1,3)),h.length==0?0:Xmd(h,10));m=Yr(a.a,e-1);if(m){c=(j=bod(n.substr(5,3)),j.length==0?0:Xmd(j,10));l=n.substr(8);f=0;for(d=0;d=9223372036854775807){return cvc(),$uc}e=false;if(a<0){e=true;a=-a}d=0;if(a>=$Kd){d=qvc(a/$Kd);a-=d*$Kd}c=0;if(a>=vzd){c=qvc(a/vzd);a-=c*vzd}b=qvc(a);f=Auc(b,c,d);e&&Guc(f);return f} -function Zw(a,b,c){var d;this.b=new Iqc;this.c=(Ot(),d=vuc(quc(Czc,1),lyd,462,0,[]),new gu(d));this.f=new CQ;this.e=new JG(b,c,new $w(this));this.i=a;Pu(this.e,Mv(this.i));this.i.p=this;Tw(this,new SE(this.i.k.b));Sw(this,this.i.k.a);Rw(this,this.i.k.b);Uw(this,this.i.k.b);fu(this.c,this.i)} -function cC(a,b,c){var d,e,f,g,h,j;j=new By;for(e=(h=(new drd(a.a)).a.mp().Qb(),new erd(h));e.a.Rc();){d=(f=e.a.Sc(),f.Ok());g=Ey(d);qx(j,g)}uB(b,new GD(c.zd(0),j));msd(dsd(j.r),dsd(c.zd(0).r))&&msd(dsd(j.s),dsd(c.zd(0).s))&&uB(b,new rE(a.e,new Srd(vuc(quc(LXc,1),lyd,168,0,[c.zd(0)])),a.o))} -function NK(a,b){var c,d,e;this.i=a;this.a=b;c=this.i.o.i.j;this.e=dT(c,this.a).fi();d=this.a.a?tK(this.i,this.a.a.c.Lh(),$Ub(this.a.a)):jXb(this.a);this.f=jw(this.i.o.i,d);this.c=sac(this.e,this.f);this.d=Aac(this.e,this.f);e=lad(this.f,this.e);this.b=(kBd+$wnd.Math.atan2(e.b,e.a)%kBd)%kBd} -function aab(a){var b,c,d;c=a.Vl();b=new yod;if(Cqd(c,(kcc(),icc))){b.a+=' RGROUPS=(1 ';nod(b,s9c(Eqd(c,icc)));b.a+=')'}if(Cqd(c,Ybc)){d=Hnd('u',Eqd(c,Ybc))?1:0;nod(b,Fab('UNSAT',d))}nod(b,bab(c,Wbc,'SUBST'));nod(b,bab(c,Tbc,'RBCNT'));nod(b,bab(c,Sbc,yDd));nod(b,bab(c,Qbc,'VAL'));return b.a} -function Kbb(a){var b,c,d;if(!a||!Hnd(hEd,Bld(a.a))){throw I8c(new bnd('this is not an atomArray node'))}this.b=new idb(Lbb(new lld(uld(a.a))));c=new jld(vld(a.a));this.a=new Dcb;for(d=0;de:g.d<=e&&g.c>e){l=g;break}}if(l){m.a[m.a.length]=l;_r(n,l)}}return m} -function etc(a,b){var c,d,e;if(a.b>a.d){while(a.da.p){e=a.b-a.p;for(c=0;c0){b.a=b.a.substr(0,0)+''+Ynd(b.a,e);a.d-=e;a.b-=e}}}} -function sxd(a,b,c,d){var e,f,g,h,j,l,m;f=a.a.b;e=qxd(f.c,b);m=ppd(0);if(Ood(m,c)>=0||Ood(f.c,c)<=0){return false}if(Ood(m,d)>=0||Ood(f.c,d)<=0){return false}l=Yod(d,f.c);g=Xod($od(e,l),f.c);h=Xod($od(c,l),f.c);g=Zod(f.a,g,f.b);h=Zod(a.a.a,h,f.b);j=Xod(Xod($od(g,h),f.b),f.c);return Rod(j,c)} -function qzb(a,b){var c,d,e;if(!b){rl(a.b,false);Ugd(a.a,(p$b(),vuc(quc(QWc,1),nyd,204,0,[n$b,l$b,m$b,o$b])).length);return}c=b.a!=-1;c&&HEb(a.b,''+b.a);rl(a.b,c);e=(p$b(),vuc(quc(QWc,1),nyd,204,0,[n$b,l$b,m$b,o$b]));for(d=0;d0&&c<119&&kvd(e.a,b,(qmd(),omd))==null}}if(e.a.c==0){return null}return e} -function Ync(){Xnc();var a,b,c;c=null;if(Wnc.length!=0){a=Wnc.join('');b=foc((boc(),aoc),a);!Wnc&&(c=b);Wnc.length=0}if(Unc.length!=0){a=Unc.join('');b=eoc((boc(),aoc),a);!Unc&&(c=b);Unc.length=0}if(Vnc.length!=0){a=Vnc.join('');b=eoc((boc(),aoc),a);!Vnc&&(c=b);Vnc.length=0}Tnc=false;return c} -function MV(a,b,c,d){var e,f;NV(a,b);e=Z9b(a.d);f=e.a+a.f;if(c.b.a.length!=0){ZW(c,f-(c.b.a.length==0?0:c.b.a[0].Ph()),a.a.b.b-WW(c));$W(c,SV(a.b,c.b.a.length==0?null:c.b.a[0].xh(),false))}if(!!d&&d.b.a.length!=0){!!a.e&&Q9b(e,a.e);f=e.a+a.f;ZW(d,f-(d.b.a.length==0?0:d.b.a[0].Ph()),e.b-WW(d))}} -function iRb(a,b){var c,d,e,f,g;if(a.c.a*a.c.c==0){return null}if(a.a){d=new hRb(a.a,b,a.b);e=d.c.a;nT(d.d,e);yRb(d.a,JS(d.b,e));f=d.a.c;g=new _Qb(d.d,d.b,new Yz(d.a));XQb(g,f,e,d.c.b&&O0b(d.c.a)?(Lud(),new Pud(Iud(Tu(d.c)))):(Lud(),Lud(),Kud),!!d.a.b);return (c=a.a,Oad(),c).f.Wn()}return null} -function LX(a){var b,c,d,e,f;f=new V9b;for(c=a.c.c,d=0,e=c.length;d0&&Pnd(e.substr(0,b))){nod((c.a+='&',c),e.substr(0,b+1));nod(c,R9c(e.substr(b+1)))}else{nod((c.a+='&',c),R9c(e))}}return c.a} -function Ln(a,b,c,d,e){var f,g,h,j;f=!!c&&c.a.length>0;if(!f&&a.a){a.d.Vb();return}a.d.P&&a.d.Vb();ph(a.c);for(h=new Frd(c);h.ac:f.d<=c&&f.c>c)&&Zr(a,f,0)!=-1){_r(a,f);break}}}} -function fed(a,b,c){var d,e,f,g;tdc(a);d=(abd(),abd(),Mic(c.U));e=ebd(Ajc((ujc(),d)),d);if(!b){mg(d,true);c.Ab(true);return}a.e=b;f=(null,Mic(b.U));g=ebd(Ajc(f),f);if(e>g){a.a=f;a.b=d;a.d=false}else{a.a=d;a.b=f;a.d=true}mg(a.a,a.d);mg(a.b,!a.d);a.a=null;a.b=null;a.e.Ab(false);a.e=null;c.Ab(true)} -function _jd(a){var b=$doc.createElement(Nzd);b.tabIndex=0;var c=$doc.createElement('input');c.type=tFd;c.tabIndex=-1;c.setAttribute(izd,jzd);var d=c.style;d.opacity=0;d.height='1px';d.width='1px';d.zIndex=-1;d.overflow=ozd;d.position=yzd;c.addEventListener(Yyd,a,false);b.appendChild(c);return b} -function lHb(){var a,b;this.d=new kid;a=new jq(this.d);this.b=new oHb(a);zm(this.b,'Text');this.c=new Idd(qHd);Of(this.c,FHd);pg(this.d,new pHb(this),(!Vpc&&(Vpc=new Ioc),Vpc));b=new Bjd;En(b,(qgd(),mgd));yjd(b,a);yjd(b,this.d);yjd(b,this.c);Cg(this.b,b);og(this.c,new mHb(this),(voc(),voc(),uoc))} -function Xad(b){var c=$doc.cookie;if(c&&c!=''){var d=c.split('; ');for(var e=d.length-1;e>=0;--e){var f,g;var h=d[e].indexOf('=');if(h==-1){f=d[e];g=''}else{f=d[e].substring(0,h);g=d[e].substring(h+1)}if(Vad){try{f=decodeURIComponent(f)}catch(a){}try{g=decodeURIComponent(g)}catch(a){}}b.pp(f,g)}}} -function sb(a,b){ob();var c,d,e,f,g,h;owd(nb,(Uvd(),Rvd))&&kwd(nb,'Checking valence for the 15th group.');c=a.a;if(Y(c)==15){d=a.d;e=a.b.Nl();h=a.b.Xl().c;g=a.f;if(d==6&&tb(a)){return dc(-g)}c==7?(f=qb(a,d,e,h,g,b)):(f=rb(c,d,e,h,g));return f}else{throw I8c(new Yc('Calling column 15 for atom'+c))}} -function uw(a,b){var c,d,e;d=a.a.a.f;c=(e=new es,Xr(e,dsd(b.u)),Xr(e,dsd(b.p)),Xr(e,dsd(b.s)),Xr(e,dsd(b.n)),Xr(e,dsd(b.o)),e);!!a.a.a.d&&(Xrd(),bs(c,new $9b));Rv(a.a,d,c);Rv(a.a,d,dsd(b.q));Rv(a.a,d,dsd(b.k));Rv(a.a,d,dsd(b.t));Rv(a.a,d,dsd(b.A));Sv(a.a,d,dsd(b.w));Sv(a.a,d,dsd(b.v));KS(a.a.b,d,b)} -function dab(a){var b;if(Hnd((WZb(),GXb).a,a.Il())&&Hnd('*',a.Gl())){return '*'}b=a.Il();if(n1b(a.Hl())){if(qtd((yab(),xab),b)){return 'C'}}else{if(Hnd(b,'L')){b=Rnd(a.Zl(),', ',',');if(Hnd(b.substr(0,4),'NOT[')){return Rnd(b,'NOT[','"NOT [')+'"'}return b}else if(Hnd(b,'A')){return a.Zl()}}return b} -function wpd(a,b){var c,d,e,f,g;d=b>>5;b&=31;if(d>=a.d){return a.e<0?(Nod(),Hod):(Nod(),Mod)}f=a.d-d;e=suc(uvc,jyd,23,f+1,15,1);xpd(e,f,a.a,d,b);if(a.e<0){for(c=0;c0&&a.a[c]<<32-b!=0){for(c=0;ce){d=lad(a.d.Lh(),a.c.Lh());e=$wnd.Math.atan2(d.b,d.a);if(e>=0){if(lBde){return dv(),av}return dv(),cv}return dv(),av}if(Zmd(e,0)>0){if(c==0){return dv(),av}return dv(),cv}else{if(c==0){return dv(),cv}return dv(),av}} -function nI(a,b){var c,d,e,f,g,h,j;h=lad(a.b,b);f=s5b(a.d,new B0b).a;for(d=new qsd(dsd(f.r).b.Qb());d.b.Rc();){c=d.b.Sc();c.mm(lad(c.Lh(),h))}g=(j=new jD(a.o.i),fD(j,dsd(a.o.i.C.n)),eD(j,dsd(f.r)),j);yE(bD(g),g.b);e=new wB;uB(e,RC(a.o.i,pI(f)));uB(e,new uC(a.o.i,a.o.i.C,bD(g)));yQ(a.o.f,vB(e,a.o.i))} -function cS(){cS=p9c;VR=new dS(ACd,0,'b','b');WR=new eS('BR',1,'br','br/');XR=new fS('DIV',2,Nzd,'br/',true);_R=new dS('STRONG',3,'strong','b');YR=new dS('EMPHASIZE',4,'em','i');ZR=new dS(BCd,5,'i','i');$R=new fS('P',6,'p','br/',true);bS=new dS(CCd,7,'sup','sup');aS=new dS('SUBSCRIPT',8,'sub','sub')} -function Web(a,b,c){var d,e;this.b=new q2;this.a=(_bb(),!!c&&Qs(c,$bb)?new ecb(new ccb):new ccb);e=new By;Teb(this,ieb(a,eFd),e,b,false);Teb(this,ieb(a,'agentList'),null,b,true);Teb(this,ieb(a,fFd),e,b,false);d=ieb(a,'arrow');!!d&&Ueb(this,new lld(uld(d.a)));zVb(this.b.a,e);cdb(this,Pkd(Fld(a.a)),b)} -function V7b(a,b){var c,d,e,f,g;this.d=new es;this.a=new es;this.c=new es;this.b=b;f=Q6b(a,P7b(a,dsd(a.a.w)),P7b(a,dsd(a.a.r)));for(d=new Frd(f);d.a0&&a.Hl()<119){return Kbc(),Cbc}else if(kvc(a,68)){return Kbc(),Gbc}else if(kvc(a,177)){return Kbc(),Ebc}else if(kvc(a,93)){return Kbc(),Hbc}else if(kvc(a,207)){return Kbc(),Dbc}else if(kvc(a,261)){return Kbc(),Fbc}else if(kvc(a,167)){return Kbc(),Ibc}return null} -function ye(a,b){if(b!=null){if(b){Yic(Wdd(a.a.o)).indexOf(Ryd)!=-1||Xdd(a.a.o,Ryd+Yic(Wdd(a.a.o))+Syd);Yic(Wdd(xl(a.a))).indexOf(Ryd)!=-1||Xdd(xl(a.a),Ryd+Yic(Wdd(xl(a.a)))+Syd)}else{Snd(Yic(Wdd(a.a.o)),Syd,'');Snd(Yic(Wdd(a.a.o)),Ryd,'');Rnd(Yic(Wdd(xl(a.a))),Syd,'');Rnd(Yic(Wdd(xl(a.a))),Ryd,'')}}} -function CD(a){var b,c,d,e,f;c=new wB;b=Bdb(a.c,a.b);uB(c,new rE(a.c,dsd(b.w),a.o));uB(c,new rE(a.c,cVb(Ndb(a.c,a.b)),a.o));for(e=new Frd(cVb(b));e.a1?(Cnd(),''+$wnd.Math.abs(f)):'');h=f>0;e||(j.a+=String.fromCharCode(h?43:8211),j);j.a.length>0&&Wr(g,IV(d,xV(a,new jX((HU(),xU),true),j.a)));e&&Wr(g,IV(d,mV(kX(a,b.Yd()),new jX((HU(),xU),true),h)))}return g} -function Thb(a,b){var c,d,e,f,g,h,j,l;for(f=b.Ne().Qb();f.Rc();){e=f.Sc();Uhb(a,e)}for(d=b.Re().Qb();d.Rc();){c=d.Sc();j=(O1b(),M1b)==c.c?Whb(a,c.a,c):Whb(a,c,c.a);l=Shb(a,c);eld(l,GEd,j);ehb(a.b.n.b,c.o,false,l)}for(h=b.Pe().Qb();h.Rc();){g=h.Sc();Vhb(a,g)}Ild(a.a.a)&&!Pkd(Fld(a.a.a))&&Lkd(a.b.f,a.a)} -function BCb(a,b,c){var d,e;this.a=a;this.e=b;this.b=c;a.c||yCb(b,c.Vk(a));this.c=(d=new Kgd,(abd(),d.U).style[ezd]='26px',e=this.b.Uk(this.a),HEb(d,d.b.Id(e)),d.U[mAd]=!e,og(d,new DCb(this),(cpc(),cpc(),bpc)),d);this.d=JAb();Qo(this.d,b.b);Qo(this.d,this.c);og(b.b,new CCb(this,b,c),(qoc(),qoc(),poc))} -function Phb(a,b){var c,d,e,f;e=Mhb(a,b);if(!Ohb(a,b,e)){Kfb(a.c.n.a,b,U(b)==PXc?'R':iib(b),e);a.c.n.f.Tj(b,tld(e.a,WDd),'atomprop',e);for(d=(f=b.Ji(),f.sd()||Q0((P0(),K0))?f:new Srd(vuc(quc(WYc,1),lyd,176,0,[f.zd(0)]))).Qb();d.Rc();){c=d.Sc();Wr(a.c.b,new b2(new Srd(vuc(quc(tWc,1),zBd,49,0,[b])),c))}}} -function eh(a){Fg.call(this);this.B=new xhd(this);this.r=(Fhd(),Chd);this.C='gwt-PopupPanelGlass';this.F=false;this.H=-1;this.L=new Nhd(this);this.N=-1;Lic((abd(),this.U),Ig.vc());Zg(this,0,0);Ig.Ho(fbd(this.U)).className='gwt-PopupPanel';Ig.Go(fbd(this.U)).className=zzd;this.s=true;this.t=true;this.I=a} -function IB(a,b){var c,d,e,f;c=Bdb(a.d,a.c);for(e=new Frd(cVb(c));e.a=0){d=e+1;d=0){a.a=Xnd(a.a,0,c)+''+Ynd(a.a,c+1);f-=a.a.length-c}return f} -function Yfd(a,b){var c,d,e,f;if(a.a==b){return}if(b<0){throw I8c(new lmd('Cannot set number of columns to '+b))}if(a.a>b){for(c=0;c=b;d--){qfd(a,c,d);e=sfd(a,c,d,false);f=kgd(a.c,c);f.removeChild(e)}}}else{for(c=0;c13&&f<17))){return false}b=true}}else{if(c!=8){return false}}}return true} -function nu(a,b){var c,d,e,f,g,h;a.b=(s$b(b),b.a);for(f=new Frd((t$b(b),b.b));f.aOH/2&&b>g&&WH(a,b)} -function tDb(a){var b,c,d;this.b=a;this.a=new Bm;zm(this.a,oHd);this.c=new Idd(qHd);Of(this.c,FHd);this.d=new kjd;b=new red(iId);kg((abd(),b.U),GHd,true);c=new Wo;Vo(c,(vgd(),tgd));Qo(c,b);Qo(c,this.d);d=new Bjd;En(d,(qgd(),mgd));yjd(d,c);yjd(d,this.c);Cg(this.a,d);og(this.c,new uDb(this),(voc(),voc(),uoc))} -function ST(a,b){var c,d,e,f;c=new dU(b);aU(c,(iz(),hz),(d=new jZ(a),new sU(new hW(new TT(a)),d,new AZ(d,a))));aU(c,ez,(e=new xZ(a,new pZ(a)),new sU(new bW(a,new ZV),e,new yZ(e))));aU(c,gz,(f=new xZ(a,new rZ),new sU(new bW(a,new mX),f,new AZ(f,a))));aU(c,fz,new sU(new bW(a,new lX(a)),new CT,new CT));return c} -function aV(a){var b,c,d,e;if(a.b.e.a.length==0&&a.a.Ml().vd()==2){c=a.a.Ml().Qb();d=lad(E2b(c.Sc(),a.a).Lh(),a.a.Lh());e=lad(E2b(c.Sc(),a.a).Lh(),a.a.Lh());b=$wnd.Math.abs((kBd+$wnd.Math.atan2(d.b,d.a)%kBd)%kBd-(kBd+$wnd.Math.atan2(e.b,e.a)%kBd)%kBd);if($wnd.Math.abs(jBd-b)<0.1746){return true}}return false} -function VUb(a,b){var c,d,e,f,g,h,j,l,m;h=new ltd;if(Mqd(a.a)!=0){l=new gs(b);for(g=new Frd((m=n5b(a.b),Pr(m,new drd(a.a)),m));g.a0&&dsd(b.k).b.vd()==1&&Q0b(dsd(b.k).a.zd(0))){h=J7b(new N7b(c),b);if(h){g=VUb(b.c,(l=new es,Xr(l,h.d),Xr(l,h.a),Xr(l,h.c),l));e=(Jkd(),Pkd(Ikd.$o()));f=new wgb(e);j=zib(f);Lkd(e,j);wib(a,f,j,b,h,g,d);return (old(),old(),nld).bp(e)}}return Dib(a,b,d)} -function iEb(a,b){var c,d,e,f;c=b.b;!c&&(c=mnd(0));f=new tQb(c.a);if(!Sx(a.a.i.A)&&!dsd(a.a.i.A.r).a.sd()&&Tx(a.a.i.A)){sQb(f,a.a)}else if(dsd(a.a.i.A.r).b.vd()==1){hEb(a,f,dsd(a.a.i.A.r).a.zd(0))}else if(hy(Lu(a.a.i).b)){hEb(a,f,dsd(Lu(a.a.i).b.r).a.zd(0))}else{e=(d=new I3b(uQb(f.a)),d);Yw(a.a,new BH(a.a,e))}} -function vic(a){var b,c,d,e,f,g,h;f=a.length;if(f==0){return null}b=false;c=new Ghc;while(Ohc()-c.a<16){d=false;for(e=0;ec.b.a&&b.b>c.b.b&&b.a-1){d=new yod;nod(d,f.substr(0,h));d.a+='.';c=$wnd.Math.min(h+1+4,f.length);b=f.substr(h+1,c-(h+1));d.a+=''+b;e=4-b.length;if(e>0){g=suc(svc,fyd,23,e,15,1);Jrd(g,g.length,48);d.a+=kod(g,0,g.length)}return d.a}return f+'.0000'} -function rxb(a){var b,c;b=new Bjd;kg((abd(),b.U),'mjs-details',true);yjd(b,new red('Details'));yjd(b,(c=new jjd,c.U[OHd]=a!=null?a:'',undefined,c.U.rows=4,undefined,c.U.cols=60,undefined,GEb(c,0),c.U['readOnly']=true,undefined,eg(c,jg(c.U)+'-'+'readonly',true),pg(c,new sxb(c),(!Vpc&&(Vpc=new Ioc),Vpc)),c));return b} -function Ykb(a,b,c){var d;this.c=b;this.d=c;this.e=new _nb;this.b=(d=new jn,kg((abd(),d.U),'mjs-main',true),kg(d.U,'mjs-focused',true),d);Okb(this,(Xm(),Um),Skb(this,false,true,(enb(),bnb)));Okb(this,Wm,Skb(this,true,true,dnb));Okb(this,Tm,Skb(this,true,false,anb));Okb(this,Vm,Skb(this,false,false,cnb));dn(this.b,a)} -function Nqb(a,b){var c,d,e,f,g,h,j;e=new std;j=new es;for(h=new Frd(cWb(a));h.a0||c&&d==0}}return false} -function Wyb(a){var b,c,d,e,f;f=new rhd;if(a.b!=(Kbc(),Gbc)){for(b=1;b<119;++b){hhd(f,(i1b(),b>0&&b<=126?h1b[b-1].c:null))}hhd(f,(v1b(),t1b).b);hhd(f,u1b.b)}if(a.b!=Cbc){for(c=(i1b(),vuc(quc(uvc,1),jyd,23,15,[119,120,121,122,123,124,125,126])),d=0,e=c.length;d0&&b<=126?h1b[b-1].c:null)}}return f} -function wBb(a){var b,c,d,e,f;f=new rhd;if(a.c!=(Kbc(),Gbc)){for(b=1;b<119;++b){hhd(f,(i1b(),b>0&&b<=126?h1b[b-1].c:null))}hhd(f,(v1b(),t1b).b);hhd(f,u1b.b)}if(a.c!=Cbc){for(c=(i1b(),vuc(quc(uvc,1),jyd,23,15,[119,120,121,122,123,124,125,126])),d=0,e=c.length;d0&&b<=126?h1b[b-1].c:null)}}return f} -function D5b(a,b){var c,d,e,f,g,h,j,l,m;e=new es;m=new es;for(l=new qsd(dsd(a.s).b.Qb());l.b.Rc();){j=l.b.Sc();Wr(m,B2b(j,b))}for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){c=d.b.Sc();Wr(e,c.El(b))}h=new es;for(g=new qsd(dsd(a.f).b.Qb());g.b.Rc();){f=g.b.Sc();Wr(h,f.El(b))}return new R5b(e,h,m,T1(a,(O$b(),M$b)),new b6b(a))} -function Frc(a,b,c,d,e){if(d<0){d=urc(a,e,vuc(quc(g6c,1),eyd,2,6,[yKd,zKd,AKd,BKd,CKd,DKd,EKd,FKd,GKd,HKd,IKd,JKd]),b);d<0&&(d=urc(a,e,vuc(quc(g6c,1),eyd,2,6,['Jan','Feb','Mar','Apr',CKd,'Jun','Jul','Aug','Sep','Oct','Nov','Dec']),b));if(d<0){return false}c.n=d;return true}else if(d>0){c.n=d-1;return true}return false} -function lb(a,b,c,d,e){var f;owd(hb,(Uvd(),Svd))&&lwd(hb,'Checking valence for the Sn.');if(c<0){return ec()}if(b<=0){return jb(c,d,50)}else{if(e>4&&(b==5||b==6)){return dc(0)}else if(e==0&&c==2&&b==2){return dc(0)}else if(e==0&&c==2){return dc(2-b)}f=yc(a.k,a.b,(ld(),bd));if(e==2&&f>=2){return dc(-a.f)}return dc(4-b)}} -function AI(a,b,c){var d,e,f,g,h,j,l,m;g=c>0.25666666666666665&&c<2.31;for(h=0;h=a.length){return false}h=a.charCodeAt(b[0]);if(h!=43&&h!=45){return false}++b[0];d=xrc(a,b);if(d<0){return false}h==45&&(d=-d)}if(h==32&&b[0]-c==2&&e.b==2){j=new Htc;l=j.r.getFullYear()-KKd+KKd-80;g=l%100;f.a=d==g;d+=(l/100|0)*100+(d'+Ds()+'+C'+'<\/b> ')+NHd)+'to copy the selected source above.')+NHd:YId+('Use '+(ZId+(''+Ds()+'+A<\/b>')+NHd)+', '+(ZId+(''+Ds()+'+C<\/b>')+NHd)+' to select and copy')+NHd} -function Itd(){if(!Object.create||!Object.getOwnPropertyNames){return false}var a='__proto__';var b=Object.create(null);if(b[a]!==undefined){return false}var c=Object.getOwnPropertyNames(b);if(c.length!=0){return false}b[a]=42;if(b[a]!==42){return false}if(Object.getOwnPropertyNames(b).length==0){return false}return true} -function KF(a,b){var c,d,e,f;if(jad(a.a,a.b)||jad(a.b,a.c)||jad(a.a,a.c)){return false}c=(b.b-a.a.b)*(a.b.a-a.a.a)-(b.a-a.a.a)*(a.b.b-a.a.b);e=(b.b-a.c.b)*(a.a.a-a.c.a)-(b.a-a.c.a)*(a.a.b-a.c.b);d=(b.b-a.b.b)*(a.c.a-a.b.a)-(b.a-a.b.a)*(a.c.b-a.b.b);f=c*d>0&&d*e>0;f||(f=LF(a.a,a.b,b)||LF(a.c,a.b,b)||LF(a.a,a.c,b));return f} -function byb(a,b,c){vd.call(this,lob(a,Cyd));ud(this,Fyd,lob(a,Fyd));this.a=a;this.b=b;this.c=c;!b.e&&(b.e=new Cqc);tqc(b.e,(_d(),$d),b,this);!c.e&&(c.e=new Cqc);tqc(c.e,$d,c,this);!a.e&&(a.e=new Cqc);tqc(a.e,(ce(),ce(),be),a,this);!b.e&&(b.e=new Cqc);tqc(b.e,(null,be),b,this);!c.e&&(c.e=new Cqc);tqc(c.e,(null,be),c,this)} -function L6b(a,b){var c,d,e;e=new es;for(d=new qsd(b.b.Qb());d.b.Rc();){c=d.b.Sc();Nr(a.r,dsd(c.r))&&Nr(a.s,dsd(c.s))&&Nr(a.A,dsd(c.A))&&Nr(a.t,(Xrd(),Xrd(),Urd))&&Nr(a.q,(Xrd(),Xrd(),Urd))&&Nr(a.w,(Xrd(),Xrd(),Urd))&&Nr(a.C,(Xrd(),Xrd(),Urd))&&Nr(a.u,dsd(c.u))&&Nr(a.B,(Xrd(),Xrd(),Urd))&&(e.a[e.a.length]=c,true)}return e} -function uac(a){var b,c,d,e,f,g,h,j,l,m;if(a.a.vd()==0){return null}f=OBd;c=LJd;g=OBd;d=LJd;h=OBd;e=LJd;for(m=(j=a.a.mp().Qb(),new erd(j));m.a.Rc();){l=(b=m.a.Sc(),b.Ok());l.a.ac&&(c=l.a.a);l.a.bd&&(d=l.a.b);l.be&&(e=l.b)}return new Sac((f+c)*0.5,(g+d)*0.5,(h+e)*0.5)} -function Icd(){Icd=p9c;Dcd={_default_:Ocd,dragenter:Ncd,dragover:Ncd};Fcd={click:Mcd,dblclick:Mcd,mousedown:Mcd,mouseup:Mcd,mousemove:Mcd,mouseover:Mcd,mouseout:Mcd,mousewheel:Mcd,keydown:Lcd,keyup:Lcd,keypress:Lcd,touchstart:Mcd,touchend:Mcd,touchmove:Mcd,touchcancel:Mcd,gesturestart:Mcd,gestureend:Mcd,gesturechange:Mcd}} -function w2(a,b){var c,d,e,f,g,h,j,l,m;e=new ltd;l=new is;g=new js(a);for(d=new Frd(b);d.a1){e=A9b(c);if(e.a.length==0){return null}g=(Xrd(),asd(e,new Hsd(new P9b)))+(b?jBd:0)}h=new qad(d*$wnd.Math.cos(g),d*$wnd.Math.sin(g));return new qad(h.a+a.a,h.b+a.b)} -function Gpd(a,b){var c,d,e,f,g;d=K8c(b,SLd);if(L8c(a,0)>=0){f=N8c(a,d);g=U8c(a,d)}else{c=_8c(a,1);e=b>>>1;f=N8c(c,e);g=U8c(c,e);g=J8c(Z8c(g,1),K8c(a,1));if((b&1)!=0){if(L8c(f,g)<=0){g=a9c(g,f)}else{if(T8c(a9c(f,g),d)){g=J8c(g,a9c(d,f));f=a9c(f,1)}else{g=J8c(g,a9c(Z8c(d,1),f));f=a9c(f,2)}}}}return Y8c(Z8c(g,32),K8c(f,SLd))} -function zY(a){var b,c,d,e,f;if(!a.p||a.p.a==null){return new ibc(GX(a,a.n),0,0)}b=FX(a,a.p.a,(HU(),GU).b,(z0(),y0));c=VQ(a.p.a,b.a);d=kH(EY(a),(!a.f&&(a.f=tac(a.j.e,a.c.Lh(),DY(a)*(a.w.a==(s6b(),r6b)||a.w.a==l6b||a.w.a==p6b?0.8:1))),a.f));d=new qad(d.a/2,d.b/2);e=d.a-b.c/2;f=d.b-b.a/2-c;return new ibc(new qad(e,f),b.c,b.a)} -function s6b(){s6b=p9c;m6b=new t6b(tyd,0,2);h6b=new t6b(uyd,1,4);q6b=new t6b(vyd,2,6);f6b=new t6b(wyd,3,3);r6b=new t6b('UP',4,2);l6b=new t6b(bDd,5,2);p6b=new t6b(cDd,6,2);i6b=new t6b(dDd,7,4);j6b=new t6b(eDd,8,4);o6b=new t6b(xyd,9,-1);n6b=new t6b(yyd,10,-1);k6b=new t6b(zyd,11,-1);e6b=new t6b(syd,12,-1);g6b=new t6b(Ayd,13,0)} -function khb(a,b){var c,d,e,f,g,h,j;if(n4b(b)){c=dsd(b.r).a.zd(0);d=(e=Eqd(a.e,c),!e&&!!a.j?Dhb(a.j,c):e);tld(d.a,xEd)!=null||eld(d,xEd,'0');j=Und(T1(b,(O$b(),N$b)),'-',0)[1];eld(d,gEd,j);f=c.Ml().Qb();g=Dhb(a,E2b(f.Sc(),c));h=Dhb(a,E2b(f.Sc(),c));eld(d,'mrvLinkNodeOut',tld(g.a,WDd)+','+tld(h.a,WDd));return true}return false} -function Vsc(a,b){var c,d,e,f;if(isNaN(b)){return 'NaN'}d=b<0||b==0&&1/b<0;d&&(b=-b);c=new yod;if(!isNaN(b)&&!isFinite(b)){nod(c,d?a.r:a.u);c.a+=WAd;nod(c,d?a.s:a.v);return c.a}b*=a.q;f=jtc(c,b);e=c.a.length+f+a.j+3;if(e>0&&e0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0));h=dsd(a.n).b.vd()>0&&!dsd(a.v).a.sd()&&!dsd(a.o).a.sd();if(_j(b,(kA(),hA))){for(d=F1(),e=0,f=d.length;e>19!=0){return '-'+Yuc(Quc(a))}c=a;d='';while(!(c.l==0&&c.m==0&&c.h==0)){e=yuc(_Kd);c=Buc(c,e,true);b=''+Xuc(xuc);if(!(c.l==0&&c.m==0&&c.h==0)){f=9-b.length;for(;f>0;f--){b='0'+b}}d=b+d}return d} -function Obb(a,b){var c,d,e;if(b.Fj(pEd)){e=new I3b(Xmd(b.Cj(pEd),10));Mbb(e,b)}else if(b.Fj(vEd)){d=b.Cj(vEd);if(b.Fj(wEd)){if(Hnd('2',d)){e=(c=new z2b((WZb(),sYb),(E0b(),C0b)),c)}else if(Hnd('3',d)){e=(c=new z2b((WZb(),sYb),(E0b(),D0b)),c)}else{throw I8c(new and)}}else{e=jUb(a);e.pm(Xmd(d,10))}}else{e=jUb(a)}Mbb(e,b);return e} -function afb(a,b){var c,d,e,f,g,h,j;if(Hnd(VDd,b.Uo())){if(qtd(a.b,b)){return true}if(_eb(b,iFd,null)){e=(h=kld(b.So(),hFd),h?Dld(h.a):null);c=(g=kld(b.So(),NEd),g?Dld(g.a):null);j=new is;d=Zeb(a,b,e,c,j);f=d?Yeb(d):Yeb(b.Vo());if(f!=null){Wr(j,(new icb(b)).a);Fqd(a.a,f)==null&&Iqd(a.a,f,j);ptd(a.b,b);return true}}}return false} -function Hib(a,b,c){var d,e,f,g,h,j,l,m;if(c.d.c+c.e.b!=0){h=_kd(a.a,a.b,cFd);for(f=new Vqd((new Sqd(c)).a);f.b;){e=Uqd(f);g=e.yp();j=e.Ok();d=(l=_kd(a.a,a.b,'property'),eld(l,'dictRef',g),bhb(l,azd,j.b),m=_kd(a.a,a.b,_Ed),bhb(m,aFd,j.a),Lkd(m,vgb(a,j.c)),Lkd(l,m),l);Lkd(h,d)}Ild(b.a)?Mkd(b,h,ild(new jld(vld(b.a)),0)):Lkd(b,h)}} -function Eyb(a){var b,c,d,e;e=Tf(a.f);b=Sf(a.f);if(!!a.d&&Syb(a.d)){c=Qyb(a.d);if(a.d.n==(Kbc(),Jbc)||a.d.n==Ibc||a.e==a.d.n&&!Cqd(c,(kcc(),jcc))){yQ(a.i.f,new rB(a.i.i,a.b,c));rm(a.f,false);a.i.i.w.Hf();return}else{d=Gyb(a.d.n,c);yQ(a.i.f,new QA(a.i.i,d,a.b,c));rm(a.f,false);a.i.i.w.Hf();return}}wic((pic(),oic),new Iyb(a,e,b))} -function us(a){var b,c,d;if(a==null||typeof a!=Zxd||a instanceof Boolean||a instanceof Date||a instanceof Number||a instanceof String||a instanceof RegExp){return a}if(a instanceof Array){b=[]}else if(a instanceof Object){b={}}else{return a}for(d in a){a.hasOwnProperty(d)&&(typeof a[d]===Zxd?(b[d]=us(a[d])):(b[d]=a[d]))}return b} -function lKb(a,b){bcb(b,jJd,new gob('Rectangle selection',(Ptb(),ysb),a.b,a.d));bcb(b,kJd,new gob('Freehand selection',(utb(),dsb),a.b,a.c));bcb(b,yHd,new gob('Electron flow single arrow',(ntb(),Yrb),a.b,a.f));bcb(b,xHd,new gob('Electron flow double arrow',(mtb(),Xrb),a.b,a.a));bcb(b,zHd,new gob('3D rotate',(Ntb(),wsb),a.b,a.e))} -function QVb(a,b){var c,d,e,f;if(Nr(b.r,dsd(a.n))&&Nr(b.s,dsd(a.p))&&Nr(b.A,dsd(a.o))&&Nr(b.t,dsd(a.q))&&Nr(b.q,dsd(a.k))&&Nr(b.w,dsd(a.t))&&Nr(b.C,dsd(a.A))&&Nr(b.u,dsd(a.s))&&Nr(b.B,dsd(a.u))){return PVb(a)}f=a.e||a.i.a.vd()!=0&&Nr(a.i,dsd(b.r));e=new B0b;c=zdb(Ndb(a,b),e);d=new JWb(c);wVb(d,c);d.e=f;f||(d.i=RVb(a,e));return d} -function Kb(){Kb=p9c;Jb=twd((Hmd(Bvc),Bvc.p));Ib=vuc(quc(uvc,2),lyd,44,0,[vuc(quc(uvc,1),jyd,23,15,[0,3]),vuc(quc(uvc,1),jyd,23,15,[0,4]),vuc(quc(uvc,1),jyd,23,15,[2,0]),vuc(quc(uvc,1),jyd,23,15,[2,2]),vuc(quc(uvc,1),jyd,23,15,[2,3]),vuc(quc(uvc,1),jyd,23,15,[4,0]),vuc(quc(uvc,1),jyd,23,15,[4,1]),vuc(quc(uvc,1),jyd,23,15,[6,0])])} -function kG(a,b){var c;if((b.a.deltaY<0?-3:3)==0){return}c=new qad(soc(b),toc(b));tlc(b.a);!!b.a&&slc(b.a);if(!!a.a.b.d&&bbc(a.a.b.d.b,c)){aw(a.a.n,new qad(0,-(b.a.deltaY<0?-3:3)*10));return}if(!!a.a.b.c&&bbc(a.a.b.c.b,c)){aw(a.a.n,new qad(-(b.a.deltaY<0?-3:3)*10,0));return}kw(a.a.n,b.a.deltaY<0?-3:3,false,new qad(soc(b),toc(b)))} -function sH(a,b){var c,d;if(!a.j||(c=vuc(quc(tWc,1),zBd,49,0,[a.d,LG(a)]),!!a.i&&!aVb(a.o.i.C,C2b(a.i))||!!a.d&&hy(Lu(a.o.i).b)&&a.d!=LG(a)&&!aVb(a.o.i.C,new Srd(c)))){return}d=b.Kf();dT(a.o.i.j,a.i).rh(d,KBd);if(!!a.d&&!lsd(dsd(a.o.i.C.n),a.d)){dT(a.o.i.j,a.d).rh(d,KBd);!!a.j&&!lsd(dsd(a.o.i.C.n),a.j)&&dT(a.o.i.j,a.j).rh(d,KBd)}} -function Nob(a){var b,c,d,e;c=false;a.c.a.Pb();if(Sx(a.b.i.A)){if(Lu(a.b.i).b){b=Bdb(Vw(a.b),Lu(a.b.i).b);for(e=new qsd(dsd(b.w).b.Qb());e.b.Rc();){d=e.b.Sc();kvc(d,189)&&(c=c|ptd(a.c,d))}}}else{b=Ndb(Vw(a.b),a.b.i.A);for(e=new qsd(dsd(b.w).b.Qb());e.b.Rc();){d=e.b.Sc();kvc(d,189)&&(c=c|ptd(a.c,d))}}ud(a,Byd,(qmd(),c?true:false))} -function Wcd(){$wnd.addEventListener(rKd,Yxd(function(a){var b=(Icd(),Ecd);if(b&&!a.relatedTarget){if('html'==a.target.tagName.toLowerCase()){var c=$doc.createEvent(SId);c.initMouseEvent(tKd,true,true,$wnd,0,a.screenX,a.screenY,a.clientX,a.clientY,a.ctrlKey,a.altKey,a.shiftKey,a.metaKey,a.button,null);b.dispatchEvent(c)}}}),true)} -function opd(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;q=b.length;l=q;if(b.charCodeAt(0)==45){n=-1;o=1;--q}else{n=1;o=0}g=(Bpd(),Apd)[c];f=q/g|0;t=q%g;t!=0&&++f;j=suc(uvc,jyd,23,f,15,1);d=zpd[c-2];h=0;r=o+(t==0?g:t);for(s=o;s1024&&(h=true);h&&Usc(a,c);etc(a,c);gtc(a,c);Ysc(a,c,g,e);Tsc(a,c);Ssc(a,c,f);h&&Rsc(a,c);j='0'.charCodeAt(0);j!=48&&Zsc(c,j);xod(c,0,b?a.r:a.u);nod(c,b?a.s:a.v)} -function ci(a){var b,c,d;b=a.a.fc();if(b<0){return null}if((b&192)!=0||(b&31)==31){throw I8c(new bmd('Longform or not universal class'))}c=di(a);d=b&31;if((b&32)!=0){switch(d){case 16:return bi(a,c);default:throw I8c(new bmd('tag: '+d));}}else{switch(d){case 2:return fi(a.a,suc(rvc,Kzd,23,c,15,1));default:throw I8c(new bmd('tag: '+d));}}} -function tC(a){var b,c,d,e,f,g,h,j;j=new std;Lr(j,a.k);e=x$b(new F$b,new ard(a.a)).a;Lr(j,dsd(Bdb(a.e,e).w));for(c=(f=(new drd(a.a)).a.mp().Qb(),new erd(f));c.a.Rc();){b=(d=c.a.Sc(),d.Ok());for(h=new qsd(dsd(a.e.w).b.Qb());h.b.Rc();){g=h.b.Sc();if(Ex(g,b)){if(!W5b(g)||!S5b(g,b)){j.a.pp(g,j);break}if(qC(a,b)){j.a.pp(g,j);break}}}}return j} -function eqd(a,b,c,d,e){var f,g;f=0;if(c$wnd.Math.abs(j)+gv){l.a.Pb();l.a.pp(b,l);f=$wnd.Math.abs(j)}else $wnd.Math.abs(f-$wnd.Math.abs(j))0){e=0;for(f=0;f1){d=e8b(f);_r(f,d);if(Zr(g,d,0)==-1){g.a[g.a.length]=d;e=false;h.a=suc(_5c,lyd,1,0,5,1);for(c=new Frd(f);c.a0&&c<=8&&c%2==0){for(m=0;m0?g.a.substr(1):null);eld(o.a.f,KAd,d);chb(a.a.f,NEd,d);return dld(o.a.f,WDd)} -function eeb(a,b){var c,d;d=beb(a,b);c=new jld(yld(d.a,UDd));if(zld(c.a)==0){if(!(Ild(d.a)&&Tr(new Srd((Oab(),Nab)),Gld(Pkd(xld(d.a)).a))!=-1)){throw I8c(new vqd("One of '{MDocument, cml}' is expected."))}if($db(d,vuc(quc(g6c,1),eyd,2,6,[VDd,WEd]))){throw I8c(new vqd('The given source may be a CML. MRV importer does not support it.'))}}return c} -function vhb(a){var b,c,d,e,f,g,h,j,l,m;for(l=new Frd(a.k);l.ac-b){b=j;c=l}j=l}j=j-kBd;if(g-j>c-b){b=j;c=g}return new qad(b,c)} -function Qz(a,b,c,d){var e,f,g,h,j,l,m,n,o,q;if(!!a.a&&!(dsd(d.r).a.sd()&&dsd(d.s).a.sd())){l=dsd(d.s);for(j=new qsd(l.b.Qb());j.b.Rc();){h=j.b.Sc();n=jw(b,h.c.Lh());o=jw(b,h.d.Lh());HHb(c,Oz(a,a.a),vuc(quc(T1c,1),tBd,5,0,[n,o]))}g=dsd(d.r);q=b.j;for(f=new qsd(g.b.Qb());f.b.Rc();){e=f.b.Sc();m=dT(q,e).Jh();GHb(c,m,OOb(a.a)*10,true,Pz(a.a,a.b))}}} -function Axd(a,b,c,d,e,f,g){var h,j,l,m,n;j=f?a.c:a.a;if(g){for(m=yxd(Bqd(ztd(j.d,c)),d),l=m;l>=1;l--){h=wxd(l,e);n=Bxd(b,j,c,d,h);if(!n){h=Gxd(b,h);n=Bxd(b,j,c,d,h)}if(n){return n}}}else{n=Bxd(b,j,c,d,e);if(!n){e=Gxd(b,e);n=Bxd(b,j,c,d,e)}if(n){return n}}throw I8c(new nQb("Can't find exported method for given arguments: "+d+':'+e.length+oyd+''))} -function N_(a,b,c,d){var e,f,g,h,j,l,m,n;j=new vT(false,10*c*a.a,true,d);b.ci()?(e=new X$(b.ci(),j)):(e=new P$(b.ei().a,b.ei().b,10*c*a.a,new xT(true,d)));f=b.gi();h=new HS(vuc(quc(nFc,1),nBd,106,0,[e]));for(m=0,n=f.length;m3){return ec()}if(c+d>5){return ec()}if(c<=0&&$wnd.Math.abs(c)+d>3){return ec()}if(c==0&&b-e+d>=4){h=(a.i||Ac(a),a.n);if(h>=1){return ub(h,b,d,f)}}return owd(nb,Svd)&&lwd(nb,'SetValenceOfN method called.'),dc(3-b+g-d)} -function Qb(a){Pb();var b,c,d,e,f;owd(Ob,(Uvd(),Rvd))&&kwd(Ob,'Checking valence for the 2nd group.');b=a.a;if(Y(b)==2){c=a.d;d=a.b.Nl();f=a.b.Xl().c;if(c==0&&d==0&&f==0){e=0}else if(d<0){return ec()}else if(c==0||c==2){e=2-c-f-d}else if(c==1&&d==1){e=1-f-1}else{return ec()}return dc(e)}else{throw I8c(new Yc('Calling column 2 for atom number: '+b))}} -function MC(a){var b,c,d,e,f,g;b=new es;for(d=new qsd(dsd(a.c.a.p).b.Qb());d.b.Rc();){c=d.b.Sc();for(f=new qsd(dsd(a.o.C.q).b.Qb());f.b.Rc();){e=f.b.Sc();g=lXb(e);Zr(g,c.c,0)!=-1&&Zr(g,c.d,0)!=-1&&((e.a?e.a.a:(vXb(),uXb))==(vXb(),rXb)?(b.a[b.a.length]=e,true):!!e.a&&Zr(C2b(c),e.a.b,0)!=-1&&Zr(C2b(c),e.a.c,0)!=-1&&(b.a[b.a.length]=e,true))}}return b} -function aK(a){var b,c,d,e,f,g,h,j,l,m;d=dT(a.d.j,a.a).b.c;if(!d||d.sd()){return Xrd(),Xrd(),Urd}l=new gs(d);b=eK(a);m=new std;c=a.a.Xl().c;for(h=b.Qb();h.Rc();){f=h.Sc();if(a.b){ptd(m,mnd(f.a*2+c));ptd(m,mnd(f.a*2+1+c))}else{ptd(m,mnd(f.a+c))}}for(g=(j=(new ard(m.a)).a.mp().Qb(),new brd(j));g.a.Rc();){f=(e=g.a.Sc(),e.yp());_r(l,d.zd(f.a))}return l} -function S6(a,b){var c,d,e;e=new E7;while((c=q7(b))!=null){if(Hnd(c.substr(0,3),'A ')){n6(a,(h5(),d=bod(c.substr(3,3)),d.length==0?0:Xmd(d,10)),q7(b))}else{!b7&&(b7=new d7);if(c7(b7,a,c)||F6(a,c)||E6(a,c));else if(Hnd(c.substr(0,4),'M S')||Hnd(c.substr(0,10),IDd)||Hnd(c.substr(0,10),JDd)){v7(e,c)}else if(Hnd(c.substr(0,6),kAd)){break}}}return e.a} -function T8(a){var b,c,d,e;c=a.Vl();if(Eqd(c,(kcc(),bcc))!=null){return 'A'}if(U8(a.Zl())&&(b=a.Vl(),Eqd(b,bcc)==null&&Eqd(b,gcc)!=null)){return a.Zl()}if(Eqd(c,gcc)!=null){return 'C'}e=a.Il();U(a)==sXc&&n1b(a.Hl())&&(Hnd(e,'M')||(d='H'.length,Hnd(e.substr(e.length-d,d),'H')))&&(Hnd((WZb(),GXb).a,a.Il())&&Hnd('*',a.Gl())?(e='*'):(e=UXb.a));return e} -function s9(a,b){var c,d,e,f,g,h,j,l,m;l=new yod;e=0;g=0;for(d=new Frd(b);d.a0){m=Und(l.a,oyd,0);for(h=0;h1){d[4]==2&&d[2]==1&&e==5?(g=-j):(g=4-e-j)}else{f=e-h;f==1?(g=2-j-h):f==2?(g=1-j-h):f==3?d[1]==2?(g=-j-h):d[2]==1?(g=1-j-h):(g=-j-h):d[4]==1&&d[2]==2&&f==5?(g=-j-h):d[2]>0?(g=4-j-e):(g=3-j-e)}return dc(g)} -function aDb(a,b){var c,d,e,f,g;f=new Am;g=new Idd(qHd);og(g,new cDb(b),(voc(),voc(),uoc));d=new zo;yo(d,a.a.a);e=new Wo;(abd(),e.U).style[ezd]=fzd;Uo(e,(qgd(),mgd));kg(g.U,FHd,true);Qo(e,g);oo(d,e,d.U);Cg(f,d);c=(Jg(),Ig).Go(fbd(f.U));vHd.length==0?(c.removeAttribute(azd),undefined):(c.setAttribute(azd,vHd),undefined);oed(f.d,vHd);return new dDb(f)} -function ow(a,b,c,d){this.q=d?new yz:null;this.B=new ltd;this.o=new Iqc;this.u=new Xu(this);Ru(this,MWb());this.A=new dz;bz(this.A,this);this.r=new OUb;Su(this,new Uz);this.v=new Vu(this,d);this.e=new ww(this);this.c=new Sz;this.i=new h0;this.a=b;this.j=new oT(b,b.o,new vv(this.r));this.b=new LS(this.j,b.o,b,this.v);QHb(this.a,this);this.k=a;this.f=c} -function Bm(){Jg();var a;ym.call(this,new wed);this.c=new ued('  ×');this.d=new ued('');this.b=new Wo;a=(abd(),hed(this.q));Qic(a,yjc((ujc(),a)));Lic(a,Rf(this.b));Vo(this.b,(vgd(),tgd));dg(this.b,'Caption');Qo(this.b,this.d);Of(this.c,sAd);Qo(this.b,this.c);Yg(this);!!this.A&&Tic(this.A,Azd);this.F=false;kg(Ig.Ho(fbd(this.U)),Azd,true)} -function eP(a,b){var c,d,e,f,g,h,j,l;if(!!b&&b.o==(s6b(),h6b)){if(!!a&&a.o==(s6b(),m6b)){c=0;h=0;for(f=(g=(new ard((l=new std,Lr(l,a.c.Ml()),Lr(l,a.d.Ml()),l.a.qp(a)!=null,l).a)).a.mp().Qb(),new brd(g));f.a.Rc();){e=(d=f.a.Sc(),d.yp());j=e.o;if(j==(s6b(),h6b)){++c;if(c>1){return null}}else if(j==m6b){++h}else{return null}}return c<2?a:null}}return null} -function _Y(){_Y=p9c;VY=new aZ(tyd,0,(s6b(),m6b));PY=new aZ(uyd,1,h6b);ZY=new aZ(vyd,2,q6b);NY=new aZ(wyd,3,f6b);$Y=new aZ('UP',4,r6b);TY=new aZ(bDd,5,l6b);YY=new aZ(cDd,6,p6b);QY=new aZ(dDd,7,i6b);RY=new aZ(eDd,8,j6b);XY=new aZ(xyd,9,o6b);WY=new aZ(yyd,10,n6b);SY=new aZ(zyd,11,k6b);MY=new aZ(syd,12,e6b);OY=new aZ(Ayd,13,g6b);UY=new aZ('HASHED',14,g6b)} -function Ybb(a,b){var c,d,e,f,g;if(Vnd(b,(Yab(),Pab).b)){Hqd(a,Pab.a,Hnd('a0',b)?'A':'a');return}if(Vnd(b,Xab.b)){Hqd(a,Xab.a,'u');return}if(Hnd(b,'R256')){Hqd(a,Tab.a,'');return}for(d=vuc(quc(oJc,1),nyd,184,0,[Wab,Qab,Tab,Rab,Uab,Sab,Vab,Xab,Pab]),e=0,f=d.length;ed.b.a&&b.b>d.b.b&&b.a0&&c<119&&kvd(h.a,b,(qmd(),omd))==null}if(h.a.c==0){return null}return h} -function WK(a,b,c,d){var e,f,g,h,j,l,m,n;g=new utd(b.a.a);Qqd(g,c);m=(new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_]))).b;j=new By;l=d.Kf();FS(L_(m,a.o.i,b),l);rx(j,b);for(f=(n=(new ard(c.a)).a.mp().Qb(),new brd(n));f.a.Rc();){e=(h=f.a.Sc(),h.yp());FS(J_(m,a.o.i,e),l);wx(j,new Srd(vuc(quc(tWc,1),zBd,49,0,[e])),e.Ml())}VT();$T(l,a.o.i.j,j,null,!!d.pe(),null)} -function p4(a){var b,c,d,e,f,g,h,j,l,m,n,o;e=null;n=w4(a.a.a);if(n){d=v9c(n.a,a.a.a);c=d.index;wod(a.a,0,c);o=d[0];b=o.length;if(n==(u4(),s4)){m=Und(o.substr(1),'"',0);f=new yod;f.a+='"';for(j=0,l=m.length;j=1||KJb(a,a.e.b*g,new qad(b.b.a+b.c/2,b.b.b+b.a/2)))&&(a.c=lad(a.c,lad(GJb(a,new qad(b.b.a+b.c/2,b.b.b+b.a/2)),new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2))))} -function GIb(a,b,c,d,e){var f,g,h,j,l,m;if(b==null){return new ibc(new pad,0,d9c(P8c($wnd.Math.round(c.b*(c.a?1:e)))))}g=a.a.el().textBaseline;h=a.a.el().font;IIb(a,(Dhc(),xhc));c.a?(l=LU(e,c.b,c.a)):(l=500);HIb(a,d.a+l+fJd);f=MU(a.a.el().font,b);m=Jgc(a.a.el(),b).width;Wgc(a.a.el(),g);Pgc(a.a.el(),h);if(!c.a){j=c.b*e;m=j*m/500;f=j*f/500}return new ibc(new pad,m,f)} -function sc(a,b){var c,d,e,f,g;owd(qc,(Uvd(),Rvd))&&kwd(qc,'Calculating valence for molecule.');f=b.b;g=new Sb;e=new $qd(f,0);d=new Dc;while(e.b=c.c&&a.a>=c.a;!a.c||!d?(e=$wnd.Math.min(a.b/c.c,a.a/c.a),f=new qad(-c.b.a*e,-c.b.b*e),f=kH(f,lad(new qad(a.b/2,a.a/2),new qad(c.c/2*e,c.a/2*e))),Ygc(b.a.el(),f.a,f.b),Ngc(b.a.el(),e,e),undefined):(g=new qad(-c.b.a,-c.b.b),g=kH(g,lad(new qad(a.b/2,a.a/2),new qad(c.c/2,c.a/2))),Ygc(b.a.el(),g.a,g.b),undefined)} -function hE(a){var b,c,d,e,f,g,h,j,l,m,n;n=new es;for(m=(f=(new drd(a.a)).a.mp().Qb(),new erd(f));m.a.Rc();){l=(b=m.a.Sc(),b.Ok());for(h=0,j=l.length;h0){b.charCodeAt(0)==47&&(f=1);d=b.substr(f,e-f);g=gS(d);if(!g){OR(a,b,e);return}else if((cS(),WR)==g){if(f==0){c=new KR(g);GR(c,a.c);a.a=true}}else if(f==1&&(XR==g||$R==g)){PR(a,g);a.b=true;a.a=false}else if(f==0&&(XR==g||$R==g)){NR(a,g,d,a.b);a.b=false;a.a=false}else{f==0?NR(a,g,d,false):PR(a,g);a.a=false}OR(a,b,e)}} -function Av(a,b,c){var d,e,f,g,h,j,l,m,n;if(a.a<=2){return false}f=0;h=a.b[a.a-1];j=a.c[a.a-1];for(g=0;g=h){continue}l=d}else{if(b>=d){continue}l=h}if(e=j){continue}if(b=e){continue}if(b0&&f){n='['+$md(c.Sl())+']';m=IV(e,xV(a,new jX((HU(),uU),d),j!=null?n+',':n))}j!=null&&(h=IV(e,xV(a,new jX((HU(),yU),d),j)));UW(l,iX(m,h,$wnd.Math.min(2,b.Yd())));g=IV(e,xV(a,new jX((HU(),vU),d),yS(b1b(c.Ji()),l.b.a.length!=0)));if(g){l=l.b.a.length==0?l:YW(l);UW(l,g)}return l} -function mhb(a,b,c,d,e){var f,g,h,j,l,m,n;h=new Jhb(a.n,e,false);m=b.Ok();qhb(h,c.np(m),d.np(b.Ok()));yhb(a,h,m);for(g=new Frd(b.$m());g.ab.length){throw I8c(new bmd('Wrong syntax. Expected: '+(j=new yod,j.a+='KEY',j.a+=' POSVALS{',mod(j,a.Ti().length),j.a+='}',j.a+=' KEYWORD=[VALUE|(n VALUE{n})]*',j.a)))}for(d=0;d0&&x9c((n4(),m4),h.a.a)){f=o4(h);a.Ri(f.a,f.b,g)}}return g} -function Wib(a,b){var c,d,e,f,g,h;d=new ltd;for(f=new qsd(dsd(b.u).b.Qb());f.b.Rc();){e=f.b.Sc();if(yYc==yYc){c=Cfb(a,(g=Dfb(a,(V8b(),U8b)==e.b?SEd:'MEllipse'),e.a!=null&&eld(g,TEd,e.a),e.c!=null&&eld(g,'lineColor',e.c),h=e.e,Lkd(g,Efb(a,h.b)),Lkd(g,Efb(a,kH(h.b,new qad(h.c,0)))),Lkd(g,Efb(a,kH(h.b,new qad(h.c,h.a)))),Lkd(g,Efb(a,kH(h.b,new qad(0,h.a)))),g));Atd(d.d,e,c)}}return d} -function zrb(){zrb=p9c;wrb=new F9c(nGd,(Z9c(),new U9c('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAo0lEQVR42u2POwqAMBBEU3gvc4J8WguvaGHvgsdQxINYaAIGQoi6iSsoOE3S7Lw3jP35TLTWpfsrpfgTgM4DALm9KZ09wEq6QgjRmsI+AAClfWMgUwCgWWFNpZSVeZcIACjsR855YQsjgHsrdvvalR4A4Lb9BSBvhW+PAECO/eDsEYC0FaE9EgDZ9kgAbkXMPgEAWfYJgPMV1uDsGAkA9udV2QAGs9U2b10I3gAAAABJRU5ErkJggg==')),24,24)} -function zW(a,b,c){var d,e,f,g,h,j,l,m,n,o;m=a;n=0;o=0;for(h=nW(b,(lac(),eac)).Qb();h.Rc();){f=h.Sc();l=a.b;if(fbc(f.a,a)){e=f.a.b.b-a.a-c-l.b;o+=e}}for(j=nW(b,gac).Qb();j.Rc();){f=j.Sc();m=gbc(m,new qad(n,o));l=m.b;if(fbc(f.a,m)){d=f.a.b.a-m.c-c-l.a;n+=d}}for(g=nW(b,kac).Qb();g.Rc();){f=g.Sc();m=gbc(m,new qad(n,o));l=m.b;if(fbc(f.a,m)){d=f.a.b.a-m.c-c-l.a;n+=d}}return new qad(n,o)} -function Ltb(){Ltb=p9c;usb=new bl(sGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMjAgOS41bC0yLTYtMS4xOCAxLjc3QTggOCAwIDEgMCAxMi41IDIwdi0yYTYgNiAwIDEgMSAzLjIxLTExLjA3TDE0IDkuNXoiIGZpbGw9IiM1MDUwNTAiLz48L3N2Zz4=')))} -function vKb(a,b,c,d){var e,f,g;qKb.call(this);this.b=a!=null?a:rDd;this.c=c!=null?H1(c):null;e=!b?{}:mPb(us(b));this.a=rKb(e);(DOb(),GOb(lJd in e?LOb((qmd(),e[lJd]?true:false)):(null,COb),(qmd(),false)))&&GKb(this.f,(MKb(),LKb));!!e.lonePairsVisible&&GOb(UGd in e?LOb(e[UGd]?true:false):(null,COb),false)&&GKb(this.f,(MKb(),KKb));this.d=!d?new Hkb:(f=new Hkb,g=new FKb(f),$jb(g,d),f)} -function B9(a,b){var c,d,e,f,g,h,j,l,m;g=a.f;if(g.a.length!=0){l=g.a.length;m=0;h=a.f;while(l>0){d=$wnd.Math.min(l,4);l=l-d;b.a+=LDd;nod(b,W8(d));for(e=0;e0){e.charCodeAt(0)==47&&(m=1);j=e.substr(m,l-m);qtd(V9c,j)&&(c=true)}if(c){m==0?(d.a+='<',d):(d.a+='<\/',d);qod((d.a+=''+j,d),62);nod(d,S9c(e.substr(l+1)))}else{nod((d.a+='<',d),S9c(e))}}return d.a} -function Pob(a,b,c){var d,e,f,g,h,j;d=new Cy(b);for(g=new Frd(cVb(c));g.a0){l[e]=m;break}else{h=j.index;l[e]=m.substr(0,h);m=Xnd(m,h+j[0].length,m.length);d.lastIndex=0;if(g==m){l[e]=m.substr(0,1);m=m.substr(1)}g=m;++e}}if(c==0&&a.length>0){f=l.length;while(f>0&&l[f-1]==''){--f}fb+d){return null}if(g<$wnd.Math.abs(b-d)){return null}f=(b*b-d*d+g*g)/(2*g);r=s+h*f/g;u=v+j*f/g;l=$wnd.Math.sqrt(b*b-f*f);o=-j*(l/g);q=h*(l/g);m=new qad(r+o,u+q);n=new qad(r-o,u-q);if(e==m.b>=n.b){return m}return n} -function cEb(a,b){var c,d,e,f,g,h,j,l,m;j=new Bjd;En(j,(qgd(),mgd));for(g=0,h=b.length;g1){return new Xac(d)}}return new Xac(null)} -function rqd(a,b,c){var d,e,f,g,h;for(f=0;f1){if(fFb(c.charCodeAt(0))){if(Xmd(bod(c.substr(1)),10)>=0){return c}}else if(fFb(Dnd(c,c.length-1))){if(Xmd(bod(Xnd(c,0,c.length-1)),10)>=0){return c}}b=Und(c,'-',0);if(b.length==2&&Xmd(bod(b[0]),10)>=0&&Xmd(bod(b[1]),10)>=0){return c}}if(Xmd(bod(c),10)>=0){return c}throw I8c(new bnd('wrong input:'+c))}return c} -function $tb(){$tb=p9c;Jsb=new bl('textBox',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMjAgNVY0aC01djFoMnYxNGgtMnYxaDV2LTFoLTJWNWgyem0tNSA0VjZINHYzaDFWN2gzdjExSDd2MWg1di0xaC0xVjdoM3YyaDF6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} -function f0(a,b){var c,d,e,f,g,h;g=new es;h=iw(a,b.e);Wr(g,(V8b(),U8b)==b.b?new G$(new vT(false,13,true,gCd),h):new $$(new qad(h.b.a+h.c/2,h.b.b+h.a/2),h.c*0.5,h.a*0.5,new vT(false,13,true,gCd)));for(d=(P8b(),vuc(quc(zYc,1),nyd,155,0,[N8b,O8b,J8b,I8b,M8b,L8b,H8b,K8b])),e=0,f=d.length;e36){throw I8c(new And('radix '+b+' out of range'))}e=a.length;f=e>0&&(a.charCodeAt(0)==45||a.charCodeAt(0)==43)?1:0;for(c=f;cdyd){throw I8c(new And(MLd+a+'"'))}return g} -function Vpd(a,b,c,d,e){var f,g,h,j,l,m,n,o,q;n=suc(j6c,lyd,50,8,0,1);o=a;n[0]=b;q=Ppd(b,b,d,e);for(h=1;h<=7;h++){n[h]=Ppd(n[h-1],q,d,e)}for(g=qpd(c)-1;g>=0;g--){if((c.a[g>>5]&1<<(g&31))!=0){m=1;f=g;for(l=$wnd.Math.max(g-3,0);l<=g-1;l++){if((c.a[l>>5]&1<<(l&31))!=0){if(l>1],o,d,e);g=f}else{o=Ppd(o,o,d,e)}}return o} -function mb(a){ib();var b,c,d,e,f,g,h,j;owd(hb,(Uvd(),Rvd))&&kwd(hb,'Checking valence for the 14th group.');c=a.a;if(Y(c)==14){d=a.d;h=a.b.Xl().c;e=a.b.Nl();b=$wnd.Math.abs(e);if(b>4||h>3){return ec()}j=d+b+h;f=4-j;switch(c){case 6:case 14:case 32:return dc(f);case 50:return lb(a,j,e,h,d-a.f);default:g=a.f;return kb(e,h,j,d==0,g);}}else{throw I8c(new Yc('Calling column 14 for atom number: '+c))}} -function vcb(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;l=(f=kld(a.So(),IEd),f?Dld(f.a):null);m=(g=kld(a.So(),JEd),g?Dld(g.a):null);c=(h=kld(a.So(),KEd),h?Dld(h.a):null);o=null;d=null;b=ieb(a,LEd);if(b){o=ucb(meb(b));c=(j=kld(new lld(uld(b.a)),KEd),j?Dld(j.a):null);d=(e=kld(new lld(uld(b.a)),MEd),e?Dld(e.a):null)}n=ycb(new zcb,l,m,o,c,d);q=(s6b(),h6b)==n&&d!=null&&d.indexOf('CARE')!=-1;return new Acb(n,q)} -function U3(b){var c,d,e;if(Hnd(b.substr(0,6),'"NOT [')&&(e=']"'.length,Hnd(b.substr(b.length-e,e),']"'))){c=new ETb(false,T3(Xnd(b,6,b.length-2)))}else if(Hnd(b.substr(0,1),'[')&&(d=']'.length,Hnd(b.substr(b.length-d,d),']'))){c=new ETb(true,T3(Xnd(b,1,b.length-1)))}else{try{c=jUb(b)}catch(a){a=H8c(a);if(kvc(a,20)){c=(eTb(),Y_b(),Gqd(X_b,b)?new E1b($_b(b)):new G1b(b))}else throw I8c(a)}}return c} -function I8(){if(!B8){B8=new _td;Ytd(B8,mnd(119),'*');Ytd(B8,mnd(120),'!#1!#6');Ytd(B8,mnd(122),'F,Cl,Br,I');Ytd(B8,mnd(121),'!#1!#2!#5!#6!#7!#8!#9!#10!#14!#15!#16!#17!#18!#33!#34!#35!#36!#52!#53!#54!#85!#86');Ytd(B8,mnd(123),'*,#1');Ytd(B8,mnd(124),'#1,!#6');Ytd(B8,mnd(125),'!#2!#5!#6!#7!#8!#9!#10!#14!#15!#16!#17!#18!#33!#34!#35!#36!#52!#53!#54!#85!#86');Ytd(B8,mnd(126),'F,Cl,Br,I,#1')}return B8} -function Euc(a,b,c,d,e,f){var g,h,j,l,m,n,o;l=Huc(b)-Huc(a);g=Suc(b,l);j=Auc(0,0,0);while(l>=0){h=Kuc(a,g);if(h){l<22?(j.l|=1<>>1;g.m=m>>>1|(n&1)<<21;g.l=o>>>1|(m&1)<<21;--l}c&&Guc(j);if(f){if(d){xuc=Quc(a);e&&(xuc=Vuc(xuc,(cvc(),avc)))}else{xuc=Auc(a.l,a.m,a.h)}}return j} -function $jb(a,b){Zjb(a,(kA(),eA),(DOb(),'clean2dws' in b?LOb(b['clean2dws']):(null,COb)));Zjb(a,fA,'clean3dws' in b?LOb(b['clean3dws']):(null,COb));Zjb(a,hA,vFd in b?LOb(b[vFd]):(null,COb));Zjb(a,iA,wFd in b?LOb(b[wFd]):(null,COb));Zjb(a,jA,xFd in b?LOb(b[xFd]):(null,COb));Zjb(a,gA,yFd in b?LOb(b[yFd]):(null,COb));Zjb(a,dA,zFd in b?LOb(b[zFd]):(null,COb));Zjb(a,cA,AFd in b?LOb(b[AFd]):(null,COb))} -function IM(a){var b,c,d,e,f,g,h,j;for(c=new Frd(Ix(a));c.a0?le){HHb(b.Kf(),a.j,vuc(quc(T1c,1),tBd,5,0,[new qad(l,0),new qad(l,5)]));g=new p0((pR(),mR),(NT(),HT),true);b.Kf().tf(new qad(l,10),''+e9c(P8c($wnd.Math.round(j%kBd*$Bd)))+UAd,_Bd,g);h=d>0?1:-1;f=h*15;while($wnd.Math.abs(d*15)>$wnd.Math.abs(f)){HHb(b.Kf(),a.i,vuc(quc(T1c,1),tBd,5,0,[new qad(l+f,0),new qad(l+f,2.5)]));f+=h*15}l+=d*15;j+=ZBd*d}} -function lM(a,b,c,d,e){var f,g,h,j,l;j=0;l=c;while(d>0?le){HHb(b.Kf(),a.j,vuc(quc(T1c,1),tBd,5,0,[new qad(0,l),new qad(5,l)]));g=new p0((pR(),kR),(NT(),HT),true);b.Kf().tf(new qad(10,l),''+e9c(P8c($wnd.Math.round(j%kBd*$Bd)))+UAd,_Bd,g);h=d>0?1:-1;f=h*15;while($wnd.Math.abs(d*15)>$wnd.Math.abs(f)){HHb(b.Kf(),a.i,vuc(quc(T1c,1),tBd,5,0,[new qad(0,l+f),new qad(2.5,l+f)]));f+=h*15}l+=d*15;j+=ZBd*d}} -function DP(a){var b,c,d,e;c=a.b.Kl()==1?CP(lad(kH(a.b.Lh(),lad(a.b.Lh(),E2b(a.b.Jl(0),a.b).Lh())),a.b.Lh())):CP(lad(E9b(a.b),a.b.Lh()));if(!a.p||dT(a.o.i.j,a.b).dg(a.p)){return c}b=CP(lad(tac(a.b.Lh(),gw(a.o.i,a.p),LBd),a.b.Lh()));if((d=(kBd+c%kBd)%kBd,e=(kBd+b%kBd)%kBd,$wnd.Math.min($wnd.Math.abs(d-e),$wnd.Math.abs($wnd.Math.max(d,e)-($wnd.Math.min(d,e)+kBd))))<0.20943951023931953){return c}return b} -function Ped(a,b,c){var d,e,f,g;this.d=a;this.b=b;this.a=new Bgd(b.a);e=(abd(),Okc($doc));f=Lkc($doc);g=Nkc($doc);d=Mkc($doc);this.c=Mkc($doc);_f(this,e);Lic(e,lbd(f));Lic(f,lbd(g));Lic(g,lbd(d));Lic(g,lbd(this.c));d['align']=KAd;d[sFd]=LAd;d.style[ezd]=zgd(this.a)+dzd;Lic(d,lbd(Rf(this.a)));kjc(this.c,c);pg(a,this,(!cqc&&(cqc=new Ioc),cqc));pg(a,this,_pc?_pc:(_pc=new Ioc));Qed(this.b,this.d.c,this.a)} -function Db(a){var b,c,d,e,f,g,h;owd(Bb,(Uvd(),Svd))&&lwd(Bb,'Checking valence for the halogens without radical and charge.');h=-1;c=a.a;b=a.d;g=b-a.f;if(g==0){h=1-a.f}else if(g==1){h=-a.f}else if((g==3||g==5)&&Gb(a)){h=-a.f}else if(g==7){if(c==53){d=zc(a.k,a.b,9,(ld(),gd));d==7&&(h=-a.f)}if(c>9){f=(a.i||Ac(a),a.o);e=(a.i||Ac(a),a.n);f==1&&e==3&&(h=-a.f);c==53&&f==5&&e==1&&(h=-a.f)}}else{h=1-b}return h} -function tA(a){var b,c,d,e,f,g,h,j,l;Lqd(a.d);for(h=new qsd(dsd(a.c.C.v).b.Qb());h.b.Rc();){g=h.b.Sc();if(g!=a.b){f=new By;for(c=new qsd(dsd(a.a.r).b.Qb());c.b.Rc();){b=c.b.Sc();Ex(g,b)&&mx(f,b)}for(e=new qsd(dsd(a.a.s).b.Qb());e.b.Rc();){d=e.b.Sc();Ex(g,d)&&nx(f,d)}for(l=new qsd(dsd(a.a.A).b.Qb());l.b.Rc();){j=l.b.Sc();Ex(g,j)&&tx(f,j)}dsd(f.A).b.vd()+dsd(f.r).b.vd()+dsd(f.s).b.vd()!=0&&Hqd(a.d,g,f)}}} -function hC(a,b){var c,d,e,f,g;c=b.c;d=b.d;if(Cqd(a.a,c)&&Cqd(a.a,d)){e=Eqd(a.a,c);g=Eqd(a.a,d);if(Zrd(e.Ml(),g.Ml())){f=new S2b(b.o,e,g);M2b(f,F2b(b));Wr(a.c,f)}}else if(Cqd(a.a,c)){if(!oC(d,Eqd(a.a,c))&&pvc(d)!==pvc(Eqd(a.a,c))){f=new S2b(b.o,Eqd(a.a,c),d);M2b(f,F2b(b));Wr(a.c,f)}}else if(Cqd(a.a,d)){if(!oC(c,Eqd(a.a,d))&&pvc(c)!==pvc(Eqd(a.a,d))){f=new S2b(b.o,c,Eqd(a.a,d));M2b(f,F2b(b));Wr(a.c,f)}}} -function g4(a,b,c){var d,e,f,g,h,j,l;f=f4(a);if(c.length==0){j=a.e.a.get('PARENT');j!=null&&O4(b,f,Xmd(j,10))}else if(c.length>2){g=i4(b,c);l=L4(b,g);if(l){l.n=_0b(f,l.n);return null}l=_1(g);l.n=_0b(f,l.n);return l}else if(c.length==1){J4(b,Xmd(c[0],10)).Hi(f)}else if(c.length==2){d=J4(b,Xmd(c[0],10));h=J4(b,Xmd(c[1],10));e=h4(b,new Srd(vuc(quc(tWc,1),zBd,49,0,[d,h])));!!e&&(e.b=_0b(f,e.b))}return null} -function Yab(){Yab=p9c;Wab=new Zab('TOTAL_H',0,(kcc(),Xbc),'H','^H[0-9]+$');Qab=new Zab(ODd,1,Rbc,'X','^X[0-9]+$');Tab=new Zab(PDd,2,Ubc,'R','^R[0-9]+$');Rab=new Zab(NDd,3,Sbc,'h','^h[0-9]+$');Uab=new Zab(QDd,4,Vbc,'r','^r[0-9]+$');Sab=new Zab('RING_BOND',5,Tbc,'rb','^rb(\\*|[0-9]+)$');Vab=new Zab(SBd,6,Wbc,'s','^(s)(\\*|[0-9]+)$');Xab=new Zab(RBd,7,Ybc,'u','^u1$');Pab=new Zab(wyd,8,Pbc,'a','^a[0-1]$')} -function zrc(a,b,c){var d,e,f,g;if(b[0]>=a.length){c.p=0;return true}switch(a.charCodeAt(b[0])){case 43:e=1;break;case 45:e=-1;break;default:c.p=0;return true;}++b[0];f=b[0];g=xrc(a,b);if(g==0&&b[0]==f){return false}if(b[0]=49&&(h5(),g=bod(f.substr(46,3)),1==(g.length==0?0:Xmd(g,10)))&&Wr(c.a,d);return d}catch(a){a=H8c(a);if(kvc(a,469)){throw I8c(new vqd('Too short line in atom block: '+f))}else if(kvc(a,20)){e=a;throw I8c(new vqd('Parsing atom line failed ['+f+']:'+e.i))}else throw I8c(a)}} -function KJb(a,b,c){var d,e,f,g;e=(g=new qad(20*a.e.b,-(20*a.e.b)),kH(new qad(c.a*g.a,c.b*g.b),kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)));d=a.e.b;iKb(a.e,b);a.c=mad(iad(a.c,new qad(d,d)),new qad(a.e.b,a.e.b));if(a.e.b!=d){a.c=kH(a.c,lad(e,(f=new qad(20*a.e.b,-(20*a.e.b)),kH(new qad(c.a*f.a,c.b*f.b),kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)))));return true}return false} -function $K(a,b){var c,d,e,f,g,h,j;h=hx(Lu(a.o.i));if(dL(cWb(a.o.i.C),dsd(h.r))){j=new gs(cWb(a.o.i.C));Pr(j,dsd(hx(Lu(a.o.i)).r));_K(a,b,j);return}if(!VK(a,dsd(h.r))||!eL(dsd(h.r))){_K(a,b,dsd(h.r));return}if(dsd(h.r).b.vd()>1&&!dsd(h.u).a.sd()){g=cL(h);if(g){WK(a,dsd(h.u).a.zd(0),g,b);return}}e=bL(dsd(h.r),a.a);f=b.Kf();if(e){for(d=new qsd(dsd(e.u).b.Qb());d.b.Rc();){c=d.b.Sc();dT(a.o.i.j,c).rh(f,KBd)}}} -function M_(a,b,c){var d,e,f,g,h,j;h=new es;j=iw(b,c.e);Wr(h,(V8b(),U8b)==c.b?new G$(new vT(false,10*a.a,true,a.b),j):new $$(new qad(j.b.a+j.c/2,j.b.b+j.a/2),j.c*0.5,j.a*0.5,new vT(false,10*a.a,true,a.b)));for(e=(P8b(),vuc(quc(zYc,1),nyd,155,0,[N8b,O8b,J8b,I8b,M8b,L8b,H8b,K8b])),f=0,g=e.length;f3||f+d>3?ec():d==0&&f==0?dc(0):d!=0&&f==0?d!=2?dc(0):ec():f!=0?dc(3-f-d):ec():d>=-1?dc(3-c-d-f):ec()));return e}else{throw I8c(new Yc('Calling column 13 for atom'+b))}} -function c0b(a,b){var c,d,e,f,g,h,j,l,m,n;l=new es;j=new es;m=new es;for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){c=d.b.Sc();n=c.El(b);Zr(j,n,0)!=-1||(j.a[j.a.length]=n,true)}for(h=new qsd(dsd(a.s).b.Qb());h.b.Rc();){g=h.b.Sc();n=B2b(g,b);Zr(l,n,0)!=-1||(l.a[l.a.length]=n,true)}for(f=new qsd(dsd(a.A).b.Qb());f.b.Rc();){e=f.b.Sc();n=K3b(e,b);Zr(m,n,0)!=-1||(m.a[m.a.length]=n,true)}return C$b(y$b(x$b(new F$b,j),l),m).a} -function zub(a,b){var c,d,e,f,g;Gub(a);d=Tub(b,a.d);g=a.b.i;f=hx((!g.s&&(g.s=new fx(g)),g.s.a));c=dsd(f.r).b.vd()+dsd(f.s).b.vd()+dsd(f.A).b.vd()+dsd(f.t).b.vd()+dsd(f.q).b.vd()+dsd(f.w).b.vd()+dsd(f.C).b.vd()+dsd(f.B).b.vd()+dsd(f.u).b.vd()==1&&!dsd(f.r).a.sd()?dsd(f.r).a.zd(0):null;if(d!=null){Hub(a,c,d)}else{if(c){e=dT(g.j,c);if(e){Fub(a,b,e.Jh(),c,(Nv(g)&&Uv(g),pw(g.e,c)));return}}Fub(a,b,a.b.a.p,c,(Z0b(),Y0b))}} -function Vwb(a,b){var c,d;if(!a.a&&!Sx(a.b.i.A)){d=a.b.i.A;if(Nr(d.r,dsd(b.r))&&Nr(d.s,dsd(b.s))&&Nr(d.A,dsd(b.A))&&Nr(d.t,dsd(b.t))&&Nr(d.q,dsd(b.q))&&Nr(d.w,dsd(b.w))&&Nr(d.C,dsd(b.C))&&Nr(d.u,dsd(b.u))&&Nr(d.B,dsd(b.B))){c=new Cy(d);Wx(c,b);return !(dsd(c.r).a.sd()&&dsd(c.s).a.sd()&&dsd(c.A).a.sd()&&dsd(c.t).a.sd()&&dsd(c.q).a.sd()&&dsd(c.w).a.sd()&&dsd(c.B).a.sd()&&dsd(c.u).a.sd()&&dsd(c.C).a.sd())}}return false} -function Nbb(a){var b,c,d,e;d=Sbb(a);if(d!=null){if(Hnd(d.substr(0,1),'L')){return Pbb(d.substr(1),a)}if(Hnd(d,'A')||Hnd(d,'Q')){return Rbb(d,a)}}if(a.Fj(mEd)){c=a.Cj(mEd);if(Tbb(c,vuc(quc(PWc,1),nyd,18,0,[(WZb(),IYb),OZb,GXb,hZb,LYb,QZb]))){if(Tbb(c,vuc(quc(PWc,1),nyd,18,0,[IYb,OZb,GXb,hZb,LYb,QZb]))){return Rbb(c,a)}}b=(eTb(),Y_b(),Gqd(X_b,c)?new E1b($_b(c)):new G1b(c));Mbb(b,a);return b}e=a.Cj(lEd);return Obb(e,a)} -function bub(){bub=p9c;Msb=new bl(rGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTEuNzUgNC41YTcuOTMgNy45MyAwIDAgMC00LjA4IDEuMTNMNi4yNSAzLjVsLTIgNmg2TDguNzggNy4yOWE2IDYgMCAxIDEgMyAxMS4yMXYyYTggOCAwIDAgMCAwLTE2eiIgZmlsbD0iIzUwNTA1MCIvPjwvc3ZnPg==')))} -function RP(a,b,c){var d,e,f,g,h,j,l;!!a.c&&WP(a);d=b.c.Lh();if(pP(a.b.a[0])==c){l=lad(b.c.Lh(),a.b.a[0].a.c.Lh());g=lad(b.d.Lh(),b.c.Lh());h=lad(a.b.a[0].a.d.Lh(),a.b.a[0].a.c.Lh());e=$wnd.Math.atan2(g.b,g.a);f=$wnd.Math.atan2(h.b,h.a);j=e-f}else{l=lad(b.c.Lh(),a.b.a[0].a.d.Lh());g=lad(b.d.Lh(),b.c.Lh());h=lad(a.b.a[0].a.c.Lh(),a.b.a[0].a.d.Lh());e=$wnd.Math.atan2(g.b,g.a);f=$wnd.Math.atan2(h.b,h.a);j=e-f}_P(a,d,l,j)} -function NT(){NT=p9c;DT=new OT('DEFAULT_ABSOLUTE',0,12,true);ET=new OT('DEFAULT_RELATIVE',1,12,false);JT=new OT('SMALLER_ABSOLUTE',2,8,true);KT=new OT('SMALLER_RELATIVE',3,8,false);LT=new OT('SMALL_ABSOLUTE',4,9.2,true);MT=new OT('SMALL_RELATIVE',5,9.2,false);IT=new OT('MIDDLE_RELATIVE',6,10.49,false);HT=new OT('MIDDLE_ABSOLUTE',7,10.49,true);FT=new OT('LARGE_ABSOLUTE',8,20,true);GT=new OT('LARGE_RELATIVE',9,20,false)} -function znd(){znd=p9c;var a;vnd=vuc(quc(uvc,1),jyd,23,15,[-1,-1,30,19,15,13,11,11,10,9,9,8,8,8,8,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5]);wnd=suc(uvc,jyd,23,37,15,1);xnd=vuc(quc(uvc,1),jyd,23,15,[-1,-1,63,40,32,28,25,23,21,20,19,19,18,18,17,17,16,16,16,15,15,15,15,14,14,14,14,14,14,13,13,13,13,13,13,13,13]);ynd=suc(vvc,fyd,23,37,14,1);for(a=2;a<=36;a++){wnd[a]=qvc($wnd.Math.pow(a,vnd[a]));ynd[a]=N8c(IBd,wnd[a])}} -function Zpd(a,b,c,d,e){var f,g;f=J8c(K8c(b[0],SLd),K8c(d[0],SLd));a[0]=d9c(f);f=$8c(f,32);if(c>=e){for(g=1;g0||ckBd)&&R9b(b,kH(a.b,new qad(a.d,0))),cQBd&&R9b(b,kH(a.b,new qad(0,a.d))),cjBd&&R9b(b,kH(a.b,new qad(-a.d,0))),c<$Cd&&e>$Cd&&R9b(b,kH(a.b,new qad(0,-a.d))),R9b(b,kH(a.b,new qad($wnd.Math.cos(c)*a.d,$wnd.Math.sin(c)*a.d))),R9b(b,kH(a.b,new qad($wnd.Math.cos(e)*a.d,$wnd.Math.sin(e)*a.d))),b} -function yrb(){yrb=p9c;vrb=new F9c('chiralFlag',(Z9c(),new U9c('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAvUlEQVR42u1TwQ2EMAxjgFvgFmCBLsAEp7ZSf2zABrcCKzADS7AFy3CJZKOoV3jxjKUqUdrYbqp2ncPhaCLnvMQYd1kDa5IHrT0iAPJdhR4XEJIR5F9LSIGU0oq4cY811OdbAW2kczRMFJD8kL1PKeVFMgojBp6/Iu9BsvAGdFqPSOvcQ37UY20JzCQ1SxsH69TeFLcZ1RzHyzPNx61nSFccEQ0g9iA+TeH8+0ogtMbGuo2WRHO+gX9yh+MfPzb3jw/PHFrCAAAAAElFTkSuQmCC')),24,24)} -function Lac(a,b,c){var d,e,f,h,j,l,m;f=0;if(!!a&&!!b&&!c.sd()){for(e=c.Qb();e.Rc();){d=e.Sc();if(b.a>d.b.a&&b.b>d.b.b&&b.aPlease select at least one element.<\/b>';yjd(d,c);yjd(d,(e=new Idd(qHd),og(e,new tyb(a),(voc(),voc(),uoc)),dyb(a,a.d,a.e,e),dyb(a,a.e,a.d,e),kg(e.U,FHd,true),gg(e,(qmd(),pmd)==Yxb(a.d,Fyd)||pmd==Yxb(a.e,Fyd)),e));yjd(d,a.c);return d} -function pEb(a){var b,c,d;this.e=new Kgd;this.a=new Udd('auto numbering');this.b=a;this.c=new tEb(this);zm(this.c,'R-group');this.d=new Idd(qHd);Of(this.d,FHd);hg(this.e,'50px');b=new red('R');kg((abd(),b.U),GHd,true);c=new Wo;Vo(c,(vgd(),tgd));Qo(c,b);Qo(c,this.e);d=new Bjd;En(d,(qgd(),mgd));yjd(d,c);yjd(d,this.a);yjd(d,this.d);Cg(this.c,d);og(this.e,new qEb(this),(_oc(),_oc(),$oc));og(this.d,new rEb(this),(voc(),voc(),uoc))} -function g0(a){var b,c,d,e,f,g,h;e=new vT(false,13,true,gCd);a.ci()?(b=new X$(a.ci(),e)):(b=new P$(a.ei().a,a.ei().b,13,(QQ(),PQ)));c=a.gi();d=new HS(vuc(quc(nFc,1),nBd,106,0,[b]));for(g=0,h=c.length;g0&&_hb(b,NEd,j.a.substr(1));d!=(bjb(),Yib)&&!d1b(c.n).sd()&&Zhb(b,(o=d1b(c.n),o.sd()||Q0((P0(),K0))?o:new Srd(vuc(quc(WYc,1),lyd,176,0,[o.zd(0)]))).Qb(),c.Lh());return b} -function fy(a,b){return b.Me().vd()==dsd(a.r).b.vd()&&b.Ne().vd()==dsd(a.s).b.vd()&&b.Re().vd()==dsd(a.A).b.vd()&&b.Oe().vd()==dsd(a.t).b.vd()&&b.Le().vd()==dsd(a.q).b.vd()&&b.Qe().vd()==dsd(a.w).b.vd()&&b.Te().vd()==dsd(a.C).b.vd()&&dsd(a.u).b.vd()==b.Pe().vd()&&b.Se().vd()==dsd(a.B).b.vd()&&Nr(a.r,b.Me())&&Nr(a.s,b.Ne())&&Nr(a.A,b.Re())&&Nr(a.t,b.Oe())&&Nr(a.q,b.Le())&&Nr(a.w,b.Qe())&&Nr(a.C,b.Te())&&Nr(a.u,b.Pe())&&Nr(a.B,b.Se())} -function tP(a,b){var c,d,e,f,g,h,j,l,m,n;a.c.a=suc(_5c,lyd,1,0,5,1);j=new jud;for(d=(n=b.a.mp().Qb(),new erd(n));d.a.Rc();){c=(l=d.a.Sc(),l.Ok());e=false;for(h=c.Ml().Qb();h.Rc();){f=h.Sc();if(crd(b,E2b(f,c))){j.a.pp(f,j);e=true}}e||Wr(a.c,new T$(jw(a.f,c.Lh()),6,a.d))}for(g=(m=(new ard(j.a)).a.mp().Qb(),new brd(m));g.a.Rc();){f=(l=g.a.Sc(),l.yp());Wr(a.c,new P$(jw(a.f,f.c.Lh()),jw(a.f,f.d.Lh()),10,a.d))}a.a=2.001;a.b=0.1;iS(a.e,50)} -function Xb(a){var b,c,d,e,f,g,h,j,l,m;d=a.b;h=a.f;j=d.Xl().c;l=a.c[1];e=a.c[2];m=a.c[3];c=a.c[4];f=(b=a.c[4],a.d+b+(b/2|0)+j-h);owd(Tb,(Uvd(),Rvd))&&kwd(Tb,'Nitrogenlike atom.');if(j>1||m!=0||f>5){return ec()}if(c==2){if(f==3){g=h>1?-h:0;return dc(g)}else if(f==4||f==5&&l==0){return dc(-h)}}else if(c==3&&f==4){g=-h;return dc(g)}else if(c==1){if(f==1){return dc(2-h)}else if(f>1&&f<4||f==4&&e==1||f==5&&l==0){return dc(-h)}}return ec()} -function Cab(a,b,c){var d,e,f,g,h,j,l,m;l=new yod;g=j8(a,c);j=0;for(h=0;h0;break;case 2:++a.k;a.j=true;break;case 3:a.k=$wnd.Math.max(0,a.k-1);a.j=a.k>0;break;case 4:++a.p;a.c=(pR(),nR);break;case 5:a.p=$wnd.Math.max(0,a.p-1);a.c=a.p>0?(pR(),nR):a.q>0?(pR(),hR):(pR(),kR);break;case 6:++a.q;a.c=(pR(),hR);break;case 7:a.q=$wnd.Math.max(0,a.q-1);a.c=a.q>0?(pR(),hR):a.p>0?(pR(),nR):(pR(),kR);break;case 8:a.xi();}} -function otb(){otb=p9c;Zrb=new bl(OFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgMTdjLTMuOTMgMC03LTIuMi03LTVzMy4wNy01IDctNSA3IDIuMiA3IDUtMy4wNyA1LTcgNXptMC04Yy0yLjcxIDAtNSAxLjM3LTUgM3MyLjI5IDMgNSAzIDUtMS4zNyA1LTMtMi4yOS0zLTUtM3oiIGZpbGw9IiM1MDUwNTAiLz48L3N2Zz4=')))} -function Uib(a,b){var c,d,e,f,g;for(d=new qsd(dsd(b.t).b.Qb());d.b.Rc();){c=d.b.Sc();rXc==rXc&&Cfb(a,(e=Pib(a.c,nFd),eld(e,'toption','NOROT'),eld(e,'fontScale','14.0'),eld(e,'halign',uAd),eld(e,sFd,uAd),eld(e,'autoSize',Mzd),Lkd(e,(f=Pib(a.c,oFd),eld(f,tDd,tFd),Oib(a.c,f,'+'),f)),g=cbc(new ibc(c.a,0,0),PBd),Lkd(e,Efb(a,g.b)),Lkd(e,Efb(a,kH(g.b,new qad(g.c,0)))),Lkd(e,Efb(a,kH(g.b,new qad(g.c,g.a)))),Lkd(e,Efb(a,kH(g.b,new qad(0,g.a)))),e))}} -function mq(a,b){var c,d;var e=a.contentWindow.document;if(e.execCommandShowHelp&&e.getSelection){c=e.getSelection();if(c.getRangeAt&&c.rangeCount){d=c.getRangeAt(0);d.deleteContents();var f=e.createElement('mainedit');f.innerHTML=b;var g=e.createDocumentFragment(),h,j;while(h=f.firstChild){j=g.appendChild(h)}d.insertNode(g);if(j){d=d.cloneRange();d.setStartAfter(j);d.collapse(true);c.removeAllRanges();c.addRange(d)}}return true}return false} -function mAb(a,b){var c,d,e,f,g,h;a.c=new Am;zm(a.c,uHd);Of(a.c,aId);c=new Wo;Vo(c,(vgd(),tgd));g=new ped;(abd(),g.U).innerHTML=bId;kg(g.U,GHd,true);f=new Wgd;f.U.multiple=false;Qo(c,g);Qo(c,f);kg(c.U,cId,true);h=new Fg;kg(h.U,dId,true);Cg(h,c);a.f=lAb(a,f);e=new Bjd;En(e,(qgd(),mgd));yjd(e,h);a.b=new Fg;yjd(e,a.b);a.d=new Fg;dg(a.d,cBd);yjd(e,a.d);d=new Idd(qHd);og(d,new qAb(a,b),(voc(),voc(),uoc));kg(d.U,FHd,true);yjd(e,d);Cg(a.c,e);oAb(a)} -function KGb(a){var b,c,d,e,f,g,h,j;j=new Bjd;En(j,(qgd(),mgd));d=new red('Both values can not be NONE.');(abd(),d.U).style[PFd]='red';mg(d.U,false);g=JGb();b=JGb();h=new Idd(qHd);kg(h.U,FHd,true);og(h,new OGb(a,g,b,d),(voc(),voc(),uoc));f=new ped;f.U.innerHTML='Line  ';c=new ped;c.U.innerHTML=VId;kg(f.U,GHd,true);kg(c.U,GHd,true);e=new $fd(2,2);Ffd(e,0,0,f);Ffd(e,0,1,g);Ffd(e,1,0,c);Ffd(e,1,1,b);yjd(j,e);yjd(j,d);yjd(j,h);return j} -function fqd(a,b){var c,d,e,f,g,h,j,l,m,n;g=a.e;j=b.e;if(j==0){return a}if(g==0){return b.e==0?b:new gpd(-b.e,b.d,b.a)}f=a.d;h=b.d;if(f+h==2){c=K8c(a.a[0],SLd);d=K8c(b.a[0],SLd);g<0&&(c=W8c(c));j<0&&(d=W8c(d));return ppd(a9c(c,d))}e=f!=h?f>h?1:-1:$pd(a.a,b.a,f);if(e==-1){n=-j;m=g==j?gqd(b.a,h,a.a,f):Ypd(b.a,h,a.a,f)}else{n=g;if(g==j){if(e==0){return Nod(),Mod}m=gqd(a.a,f,b.a,h)}else{m=Ypd(a.a,f,b.a,h)}}l=new gpd(n,m.length,m);Qod(l);return l} -function rb(a,b,c,d,e){var f,g,h,j;owd(nb,(Uvd(),Svd))&&lwd(nb,'Checking valence for the P, As, Sb, Bi.');if(c>5||c<-3){return ec()}if(d>3){return ec()}else if(c>0&&c+d>5){return ec()}else if(c<=0&&$wnd.Math.abs(c)+d>3){return ec()}if(a==83&&b==0&&c==0&&d==0&&e==0){return dc(0)}else if(c==3&&a!=15&&b==0&&d==0&&e==0){return dc(0)}g=(b+d<=3||c==0&&b+d-e<=3?(f=b+d+2):(f=b+d),f);j=c==0?0:(b<=3&&c>0?(h=c-2):(h=$wnd.Math.abs(c)),h);return dc(5-g-j)} -function ne(a,b){if(b!=null){if(b){Yic(Wdd(a.o)).indexOf(Ryd)!=-1||Xdd(a.o,Ryd+Yic(Wdd(a.o))+Syd);Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))).indexOf(Ryd)!=-1||Xdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f),Ryd+Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f)))+Syd)}else{Snd(Yic(Wdd(a.o)),Syd,'');Snd(Yic(Wdd(a.o)),Ryd,'');Rnd(Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))),Syd,'');Rnd(Yic(Wdd((!a.f&&Fl(a,new $dd(a,a.o,Qyd,1)),a.f))),Ryd,'')}}} -function rI(a,b){var c,d,e,f,g,h,j,l;if(a.b.p){f=b.Kf();f.gl();e=jw(a.b.o.i,a.b.b);for(l=new qsd(aD(a.a).b.Qb());l.b.Rc();){h=l.b.Sc();GHb(f,jw(a.b.o.i,h[0].Lh()),8,true,(QQ(),NQ))}KHb(f,lad(a.b.p,e));for(j=new qsd(aD(a.a).b.Qb());j.b.Rc();){h=j.b.Sc();GHb(f,jw(a.b.o.i,h[1].Lh()),10,true,(QQ(),MQ))}WT(a.b.c,f,a.b.o.i.j,null,null);g=a.b.d.a;for(d=new qsd(dsd(g.f).b.Qb());d.b.Rc();){c=d.b.Sc();GHb(f,jw(a.b.o.i,c.Lh()),10,true,(QQ(),MQ))}f.qe()}} -function zcb(){var a,b,c,d;this.a=new Srd(vuc(quc(J7c,1),lyd,212,0,[(a=new ltd,Iqd(a,'MDL/4',(s6b(),p6b)),Iqd(a,'MDL/3',i6b),Iqd(a,'ChemAxon/C,T,CARE',i6b),Iqd(a,'ChemAxon/CTUnspec',j6b),Iqd(a,'ChemAxon/CTUnspec,CARE',j6b),Iqd(a,'cxn:coord',g6b),a),(b=new ltd,Iqd(b,'W',r6b),Iqd(b,'H',l6b),b),(c=new ltd,Iqd(c,'SD',o6b),Iqd(c,'SA',n6b),Iqd(c,'DA',k6b),Iqd(c,'Any',e6b),c),(d=new ltd,Iqd(d,'1',m6b),Iqd(d,'2',h6b),Iqd(d,'3',q6b),Iqd(d,'A',f6b),d)]))} -function DV(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;r=c.$l(TU(c));l=b.ce(c.Lh());m=new oX(r);s=m.a;f=m.b;j=m.a.a.length;h=0;q=new is;for(e=0;e0){j=h/60|0;l=h%60;e=a.r.getDate();c=a.r.getHours();c+j>=24&&++e;f=new $wnd.Date(a.r.getFullYear(),a.r.getMonth(),e,b+j,a.r.getMinutes()+l,a.r.getSeconds(),a.r.getMilliseconds());a.r.setTime(f.getTime())}}g=a.r.getTime();a.r.setTime(g+3600000);a.r.getHours()!=b&&a.r.setTime(g)} -function cid(l,a){var b=l.a;var c=$hd;var d=_hd;while(b.length>0){var e=b.pop();if(e.index1&&!dsd(b.u).a.sd()){g=dsd(b.u).a.zd(0);f=cL(b);if(f){if(!YK(g.a.a,f)){d=new W0b(f,g.b,g.o);c=vB(uB(uB(new wB,new DD(a.o.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[g]))).a)),new PC(a.o.i,A$b(new F$b,new Srd(vuc(quc(ZWc,1),lyd,718,0,[d]))).a)),a.o.i);yQ(a.o.f,c)}return}}e=bL(dsd(b.r),a.a);!!e&&yQ(a.o.f,new PC(a.o.i,e))} -function $4b(a,b){var c,d,e,f,g,h;for(d=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).c.b).b.Qb());d.b.Rc();){c=d.b.Sc();b.We(c)&&b.Fe(gVb((!a.b&&(a.b=new l5b(a.c)),a.b).c,c))}for(h=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).b.b).b.Qb());h.b.Rc();){g=h.b.Sc();b.Xe(g)&&b.Ie(gVb((!a.b&&(a.b=new l5b(a.c)),a.b).b,g))}for(f=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).d.b).b.Qb());f.b.Rc();){e=f.b.Sc();_r(b.u,e)&&rx(b,gVb((!a.b&&(a.b=new l5b(a.c)),a.b).d,e))}} -function d5b(a,b){var c,d,e,f,g,h;for(d=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).c.a).b.Qb());d.b.Rc();){c=d.b.Sc();b.We(c)&&b.Fe(hVb((!a.b&&(a.b=new l5b(a.c)),a.b).c,c))}for(h=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).b.a).b.Qb());h.b.Rc();){g=h.b.Sc();b.Xe(g)&&b.Ie(hVb((!a.b&&(a.b=new l5b(a.c)),a.b).b,g))}for(f=new qsd(dsd((!a.b&&(a.b=new l5b(a.c)),a.b).d.a).b.Qb());f.b.Rc();){e=f.b.Sc();_r(b.u,e)&&rx(b,hVb((!a.b&&(a.b=new l5b(a.c)),a.b).d,e))}} -function Job(a,b){var c,d,e,f,g;g=a.a.i;f=(!g.s&&(g.s=new fx(g)),g.s.a).b;c=null;dsd(f.r).a.sd()?dsd(f.r).b.vd()+dsd(f.s).b.vd()+dsd(f.A).b.vd()+dsd(f.t).b.vd()+dsd(f.q).b.vd()+dsd(f.w).b.vd()+dsd(f.C).b.vd()+dsd(f.B).b.vd()+dsd(f.u).b.vd()==1&&!dsd(f.s).a.sd()&&(c=dsd(f.s).a.zd(0).c):(c=dsd(f.r).a.zd(0));if(c){for(e=new Frd(b);e.ad){c=b-j;e.a=suc(_5c,lyd,1,0,5,1);Wr(e,(b+j)/2)}}}f=a.a[0];h=Yr(a,a.a.length-1);if(Zmd(c,kBd-(h-f))<0){if($wnd.Math.abs(kBd-(h-f)-c)>d){l=(f+h)/2;Zmd(l,0)<0?(l=l-jBd):(l=l+jBd);e.a=suc(_5c,lyd,1,0,5,1);e.a[e.a.length]=l}else{l=(f+h)/2;Zmd(l,0)<0&&l-jBd}}return e} -function GW(a,b){var c,d,e;d=b.Hl();c=b.Ql();if(!QW(a.b,b)||!(b.Ql()>0&&(NW(b.Hl())||OW(b.Hl())||PW(b.Hl())))){return Iac(),Fac}if(LW(b)==0){return JW(CW,d)||c>1&&JW(EW,d)?(Iac(),Eac):JW(DW,d)||JW(EW,d)?(Iac(),Gac):(Iac(),Fac)}if(LW(b)==1){return HW(a,b,d,c)}if(MW(b,a.a)){return Iac(),Dac}return e=lad(a.a.ce(H9b(b.Lh(),false,I9b(b),LBd)),a.a.ce(b.Lh())),$wnd.Math.abs(e.a)+0.5>=$wnd.Math.abs(e.b)?e.a>0?(Iac(),Gac):(Iac(),Eac):e.b>0?(Iac(),Dac):(Iac(),Hac)} -function sJb(a,b,c,d,e,f){var g,h,j,l,m,n;f.d&&(l=!f.e.a,l&&Rgc(b,(ihc(),ahc).a),m=b.lineWidth,Ugc(b,$wnd.Math.min(5,3*a.a.Yd())),Wgc(b,(Dhc(),xhc).a),b.strokeStyle=XCd,undefined,Pgc(b,f.c.a+LU(a.a.Yd(),f.e.b,f.e.a)+fJd),n=rJb(b,c,d,f),Xgc(b,d,n.a,n.b),b.lineWidth=m,undefined,Rgc(b,(ihc(),ghc).a),undefined);h=f.c.a+LU(a.a.Yd(),f.e.b,f.e.a)+fJd;g=e==null?uBd:e;b.save();Wgc(b,(Dhc(),xhc).a);b.fillStyle=g;b.font=h;j=rJb(b,c,d,f);Hgc(b,d,j.a,j.b);b.restore()} -function Pfb(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s,t;h=dsd(a.a.f);if(h.a.sd()){return}g=ugb(a.c,jFd);f=new js(h);t=a.d.Qb();s=f.a.length;for(m=a.b.Qb();m.Rc();){l=m.Sc();e=J5b(a.a,l.c)?l.c:l.d;r=hs(f,e);r>-1?as(f,r,null):(r=s++);j=Khb(c,t.Sc());Lkd(g,Qfb(a,(o=(n=Eqd(b.e,e),!n&&!!b.j?Dhb(b.j,e):n),o?tld(o.a,WDd):null),r+1,j))}for(q=0;q0){return new i$b(o$b,c)}}catch(a){a=H8c(a);if(!kvc(a,65))throw I8c(a)}return new h$b(o$b)}else if(Vnd(b,m$b.a)){try{c=Xmd(Snd(b,m$b.a,''),10);if(c>0){return new i$b(m$b,c)}}catch(a){a=H8c(a);if(!kvc(a,65))throw I8c(a)}return new h$b(m$b)}throw I8c(new bnd('Unrecognizable value'))} -function P6b(a){var b,c,d,e,f;c=new gs(dsd(a.r));f=new By;while(c.a.length!=0){b=c.a[0];d=Ey(b);Or(c,dsd(d.r));Nr(a.r,dsd(d.r))&&Nr(a.s,dsd(d.s))&&Nr(a.A,dsd(d.A))&&Nr(a.t,dsd(d.t))&&Nr(a.q,dsd(d.q))&&Nr(a.w,dsd(d.w))&&Nr(a.C,dsd(d.C))&&Nr(a.u,dsd(d.u))&&Nr(a.B,dsd(d.B))||qx(f,d)}e=new Cy(a);dsd(f.r).a.sd()&&dsd(f.s).a.sd()&&dsd(f.A).a.sd()&&dsd(f.t).a.sd()&&dsd(f.q).a.sd()&&dsd(f.w).a.sd()&&dsd(f.B).a.sd()&&dsd(f.u).a.sd()&&dsd(f.C).a.sd()||Wx(e,f);return e} -function Tx(a){var b,c,d;for(d=new qsd(dsd(a.r).b.Qb());d.b.Rc();){b=d.b.Sc();if(!a.Re().rd(b.Re())){return false}}if(Kx(a).a.length!=0||Nx(a).a.length!=0){return false}if(Qx(a)||Lx(a).a.length!=0){return false}if(Px(a)){return false}if(Jx(a).a.length!=0||Mx(a).a.length!=0){return false}if(Rx(a)){return false}for(c=a.Le().Qb();c.Rc();){b=c.Sc();if(!!b.c.fn()&&!a.Se().qd(b.c.fn().b)){return false}if(!!b.a.fn()&&!a.Se().qd(b.a.fn().b)){return false}}return true} -function A_(){A_=p9c;l_=new B_(YBd,0);n_=new B_('BOND',1);o_=new B_('BOND_WITH_EFLOWS',2);w_=new B_(jDd,3);y_=new B_('SGROUP_BRACKET',4);r_=new B_('ELECTRONFLOWARROW',5);k_=new B_('ARROW',6);u_=new B_('POINTOBJECT',7);z_=new B_('TEXT',8);t_=new B_('MULTIEDGE',9);v_=new B_('RECTANGULAROBJECT',10);x_=new B_('RGROUP_ATTACHMENT',11);m_=new B_('ATOM_WITH_EDGES',12);q_=new B_('DEFAULT_SHAPE',13);s_=new B_('INNER_EDGES_SHAPE',14);p_=new B_('CROSSING_EDGES_SHAPE',15)} -function lfb(a,b){var c,d;for(d=new Frd(a.a);d.a1){n=b.substr(1);for(h=Und(n,'&',0),j=0,l=h.length;j1?f[1]:'';try{o=(frc('encodedURLComponent',o),r=/\+/g,decodeURIComponent(o.replace(r,'%20')))}catch(a){a=H8c(a);if(!kvc(a,109))throw I8c(a)}q=m.np(e);if(!q){q=new es;m.pp(e,q)}q.od(o)}}for(d=m.mp().Qb();d.Rc();){c=d.Sc();c.zp(dsd(c.Ok()))}m=(Xrd(),new xsd(m));return m} -function Pxd(a,b){var c,d,e,f,g,h,j,l,m,n;for(e=0,m=b.length;e0){if(e<0&&m.a){e=j;f=l[0];d=0}if(e>=0){h=m.b;if(j==e){h-=d++;if(h==0){return 0}}if(!Crc(b,l,m,h,g)){j=e-1;l[0]=f;continue}}else{e=-1;if(!Crc(b,l,m,0,g)){return 0}}}else{e=-1;if(m.c.charCodeAt(0)==32){n=l[0];Arc(b,l);if(l[0]>n){continue}}else if(Wnd(b,m.c,l[0])){l[0]+=m.c.length;continue}return 0}}if(!Ltc(g,c)){return 0}return l[0]} -function t6(a){var b,c,d,e,f,g,h;b=bod(a.substr(31,3));Hnd(b,'R')&&(b='R#');e=u6(b);e.lm(new Sac((h5(),Wmd(bod(a.substr(0,10)))/FDd),Wmd(bod(a.substr(10,10)))/FDd,Wmd(bod(a.substr(20,10)))/FDd));a.length>=40&&e.hm(B6((g=bod(a.substr(37,3)),g.length==0?0:Xmd(g,10))));!K7&&(K7=new M7);L7(e,a);a.length>=64&&e.om((h=bod(a.substr(61,3)),h.length==0?0:Xmd(h,10)));if(e.Tl()==0){d=(f=bod(a.substr(34,3)),f.length==0?0:Xmd(f,10));if(d!=0&&-3<=d&&d<=4){c=l1b(e.Hl());e.pm(c+d)}}return e} -function CJb(a,b){var c,d,e;c=FJb(a,a.a);d=b.a;e=b.b;if(b.a>0&&c.b.a+d>=0){d=$wnd.Math.max(0,-c.b.a);c.b.a<=0&&(d+=1)}else if(b.a<0&&c.b.a+c.c+d<=a.d.a.p.Un().width){d=$wnd.Math.min(0,-(c.b.a+c.c-a.d.a.p.Un().width));c.b.a+c.c>=a.d.a.p.Un().width&&(d-=1)}if(b.b>0&&c.b.b+e>=0){e=$wnd.Math.max(0,-c.b.b);c.b.b<=0&&(e+=1)}else if(b.b<0&&c.b.b+c.a+e<=a.d.a.p.Un().height){e=$wnd.Math.min(0,-(c.b.b+c.a-a.d.a.p.Un().height));c.b.b+c.a>=a.d.a.p.Un().height&&(e-=1)}return new qad(d,e)} -function ztb(){ztb=p9c;isb=new bl(TFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxjaXJjbGUgY2xhc3M9ImNscy0yIiBjeD0iOCIgY3k9IjEyIiByPSIzIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIxNiIgY3k9IjEyIiByPSIzIi8+PC9nPjwvc3ZnPg==')))} -function iZ(a,b,c){var d,e,f,g,h,j,l,m,n,o,q;d=sac(a.e.pi(a.d),a.e.qi(a.d));g=fDd*a.c.Yd();l=qvc(d/g)+1;if(l>1){j=(d-l*g)/2;e=(c>0?1:3.5)*a.c.Yd();f=(c<0?1:3.5)*a.c.Yd();n=(f-e)/(l-1);m=suc(T1c,tBd,5,l,0,1);if(c>0){o=j;m[0]=new qad(j,0);o+=g;q=e;for(h=1;h>1);f=Ukc($doc)-$ic(a.U,$yd)>>1;Zg(a,$wnd.Math.max(Ykc($doc)+e,0),$wnd.Math.max(Zkc($doc)+f,0));if(!d){a.F=c;if(c){Ig.Io(a.U,szd);a.U.style[nzd]=tzd;!!a.A&&(a.A.style[nzd]=tzd,undefined);udc(a.L,Ohc())}else{a.U.style[nzd]=tzd;!!a.A&&(a.A.style[nzd]=tzd,undefined)}}} -function nGb(a,b,c,d,e){var f,g,h,j;this.a=new Wo;Of(this.a,'mjs-thumbPanel');Vo(this.a,(vgd(),tgd));Uo(this.a,(qgd(),mgd));g=new Dgd(a);bg(g,JFb,JFb);h='type: '+d+', size: '+(Cnd(),''+b)+'x'+(''+c);alc((abd(),g.U),h);h.length==0?(g.U.removeAttribute(azd),undefined):gjc(g.U,azd,h);Qo(this.a,g);j=new ped;zed(j.a,'\u21E6 Right click on this picture to save',false);j.U.className=QHd;Qo(this.a,j);f=new ued('  ×  ');kg(f.U,sAd,true);og(f,new oGb(this,e),(voc(),voc(),uoc));Qo(this.a,f)} -function SRb(a,b){var c,d,e,f,g;this.a=new LRb(a,b);this.d=MRb(this.a.b);c=new kjd;d=new Nn(c);Of(d.d,Azd);this.f=new Did((e=new rhd,ihd(e,this.d),e),c,d);Rf(this.f.a).setAttribute(Gzd,'search group');this.e=new Idd(qHd);Of(this.e,FHd);this.c=new Udd('Expand');Sdd(this.c,(qmd(),omd));Of(this.c,'mjs-expandCheckbox');f=new Wo;Vo(f,(vgd(),tgd));Qo(f,this.f);Qo(f,this.c);g=new Bjd;En(g,(qgd(),mgd));yjd(g,f);yjd(g,this.e);this.b=new URb(this);zm(this.b,tJd);Cg(this.b,g);og(this.e,new TRb(this),(voc(),voc(),uoc))} -function gT(a,b){var c,d,e,f,g,h,j,l,m,n,o,q;q=new es;for(m=new qsd(dsd(b.r).b.Qb());m.b.Rc();){l=m.b.Sc();Wr(q,(c=Xtd(a.d,l),c?c:new dV(l,a.n,a.f,a.f,a.f,a.s)))}for(o=new qsd(dsd(b.s).b.Qb());o.b.Rc();){n=o.b.Sc();Wr(q,(f=Xtd(a.e,n),f?f:US(a,n,fT(a,n.c),fT(a,n.d))))}for(d=new qsd(dsd(b.A).b.Qb());d.b.Rc();){e=d.b.Sc();Wr(q,(c=Eqd(a.p,e),c?c:new SZ(e,a.n,a.f,a.f,a.f,a.s)))}for(h=new qsd(dsd(b.u).b.Qb());h.b.Rc();){g=h.b.Sc();Wr(q,(f=Xtd(a.k,g),f?f:US(a,g,new c_(a.f.ce((j=mUb(g.a),j.a))),fT(a,g.b))))}return q} -function jqb(a,b){var c,d,e,f,g;g=a.a.i;e=(!g.s&&(g.s=new fx(g)),g.s.a).b;if(!!e&&!(dsd(e.r).a.sd()&&dsd(e.s).a.sd()&&dsd(e.A).a.sd()&&dsd(e.t).a.sd()&&dsd(e.q).a.sd()&&dsd(e.w).a.sd()&&dsd(e.B).a.sd()&&dsd(e.u).a.sd()&&dsd(e.C).a.sd())){for(d=new qsd(dsd(g.C.r).b.Qb());d.b.Rc();){c=d.b.Sc();if(Nr(c.r,dsd(e.r))&&Nr(c.s,dsd(e.s))&&Nr(c.A,dsd(e.A))&&Nr(c.t,dsd(e.t))&&Nr(c.q,dsd(e.q))&&Nr(c.w,dsd(e.w))&&Nr(c.C,dsd(e.C))&&Nr(c.u,dsd(e.u))&&Nr(c.B,dsd(e.B))){!!b&&(f=b.a.pp(c,b),f==null);return true}}}return false} -function efb(b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;j=ieb(b.b,jFd);o=new ltd;if(j){f=b.a.a;l=jeb(j,oEd);d=suc(tWc,zBd,49,l.a.length,0,1);for(h=new Frd(l);h.a1){try{Hqd(o,mnd(Xmd(n.substr(1),10)),mnd(t))}catch(a){a=H8c(a);if(!kvc(a,65))throw I8c(a)}}}Xr(c,new Srd(d));return dfb(o)}return Xrd(),Xrd(),Urd} -function erb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t;En(c,(qmd(),false));t=MUb(a.a.i.r,Vw(a.a)).Qb();h=new utd(dsd(b.s));r=new utd(h);l=new std;m=new std;while(r.a.vd()!=0&&t.Rc()){s=t.Sc();q=new std;for(g=(o=(new ard(r.a)).a.mp().Qb(),new brd(o));g.a.Rc();){e=(j=g.a.Sc(),j.yp());if(s.qd(e)){if(Nr(h,s)){Lr(m,s);Lr(q,s);!c.a&&drb(s)&&En(c,true);break}Lr(l,s)}}Qqd(r,q)}Qqd(h,l);Lr(h,m);d=new std;for(f=(n=(new ard(h.a)).a.mp().Qb(),new brd(n));f.a.Rc();){e=(j=f.a.Sc(),j.yp());Lr(d,C2b(e))}return y$b(x$b(new F$b,d),h).a} -function Mac(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s;g=a.a;n=a.b;h=b.a;o=b.b;j=c.a;q=c.b;l=d.a;r=d.b;e=(g-h)*(q-r)-(n-o)*(j-l);if(e==0){return 0}m=((j-l)*(g*o-n*h)-(g-h)*(j*r-q*l))/e;s=((q-r)*(g*o-n*h)-(n-o)*(j*r-q*l))/e;f=new qad(m,s);if(m+0.1<$wnd.Math.min(g,h)||m-0.1>$wnd.Math.max(g,h)){return 0}if(m+0.1<$wnd.Math.min(j,l)||m-0.1>$wnd.Math.max(j,l)){return 0}if(s+0.1<$wnd.Math.min(n,o)||s-0.1>$wnd.Math.max(n,o)){return 0}if(s+0.1<$wnd.Math.min(q,r)||s-0.1>$wnd.Math.max(q,r)){return 0}return rac(a.a,a.b,0,f.a,f.b,0)} -function $C(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;o=new es;b=new _td;n=$wnd.Math.max(a.j.a.j.e.b*10,1);l=0;for(j=new Frd(a.e);j.a=h?Ypd(a.a,f,b.a,h):Ypd(b.a,h,a.a,f)}else{e=f!=h?f>h?1:-1:$pd(a.a,b.a,f);if(e==0){return Nod(),Mod}if(e==1){o=g;n=gqd(a.a,f,b.a,h)}else{o=j;n=gqd(b.a,h,a.a,f)}}l=new gpd(o,n.length,n);Qod(l);return l} -function F6(a,b){var c,d,e,f,g,h,j,l;if(Hnd(b.substr(0,6),'M RGP')){e=(h5(),j=bod(b.substr(6,3)),j.length==0?0:Xmd(j,10));if(e>8){throw I8c(new vqd('Rgroup Label Location (M RGPnn{count}): count > 8'))}for(f=0;f3&&(e[1]!=1||e[4]!=2||e[2]!=0||h!=0)&&(e[1]!=0||e[2]!=0||e[4]!=2||h!=1)&&(e[1]!=0||e[2]!=0||e[4]!=3||h!=0)){return ec()}if(g>1){j<=2?(f=3-d-h):j==3&&e[4]==2?(f=4-d-h):(f=-g)}else if(g==1){if(j==2&&e[1]==1||j==3&&e[4]==2){return dc(0)}else j<=2&&e[1]==0?(f=3-d-h):(f=-1)}else{if(j==2&&e[1]==1||j==3&&(e[4]==2||h==1)||j==4&&h==1){return dc(0)}else j<=2&&e[1]==0&&(f=3-d-h)}return dc(f)} -function bFb(a,b,c,d){var e;e=new yod;e.a+="
    <\/span> <\/div>
    <\/span> <\/span> <\/div>";return new G9c(e.a)} -function X1(a,b){var c;if(b){if(T(b,a.o)){return}if(T(a,b)){throw I8c(new bnd('The parent s-group cannot be itself.'))}c=new is;R1(b,c);if(hs(c,a)!=-1){throw I8c(new bnd('This s-group cannot be in the parent hierarchy of its new parent'))}if(!(Nr(b.r,dsd(a.r))&&Nr(b.s,dsd(a.s))&&Nr(b.A,(Xrd(),Xrd(),Urd))&&Nr(b.t,(Xrd(),Xrd(),Urd))&&Nr(b.q,(Xrd(),Xrd(),Urd))&&Nr(b.w,(Xrd(),Xrd(),Urd))&&Nr(b.C,(Xrd(),Xrd(),Urd))&&Nr(b.u,dsd(a.u))&&Nr(b.B,(Xrd(),Xrd(),Urd)))){throw I8c(new bnd('The whole s-group is not in the new parent s-group'))}}a.o=b} -function zb(a,b,c,d,e){var f,g,h,j;owd(vb,(Uvd(),Svd))&&lwd(vb,'Checking valence for the S, Se, Te, Po.');j=b+d;h=j-e;if(c==0){j==0?(f=2):j>6?h>4?(f=6-j):h>2?(f=4-j):(f=2-j):j==3?(f=-1):j==5?e>0?(f=-1):(f=1):d>0&&h==2?(f=2-j):h<3?(f=2-j):(f=j%2)}else if(c<0){if(c<-2){return ec()}else{f=c==-2?0:1;f-=j;if(f==-2){g=(a.i||Ac(a),a.n);g==1&&c==-1&&j==3&&(f+=2)}else if(f<=-4){g=(a.i||Ac(a),a.n);g==2?(f+=4):c==-1&&(j==5||j==6)?(f+=4):c==-2&&j==4&&(f+=4)}}}else{if(c>6){return ec()}a.a==16?c==1&&h<4?(f=4-j-1):(f=6-j-c):(f=xb(c,e,j))}return dc(f)} -function li(a){ki();var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;l=a.length;if(l%4!=0){throw I8c(new bnd('Length of Base64 encoded input string is not a multiple of 4.'))}while(l>0&&a[l-1]==61){--l}r=l*3/4|0;t=suc(rvc,Kzd,23,r,15,1);m=0;s=0;while(m127||g>127||h>127||j>127){throw I8c(new bnd(Lzd))}b=ji[f];c=ji[g];d=ji[h];e=ji[j];if(b<0||c<0||d<0||e<0){throw I8c(new bnd(Lzd))}n=b<<2|c>>>4;o=(c&15)<<4|d>>>2;q=(d&3)<<6|e;t[s++]=n<<24>>24;s>24);s>24)}return t} -function HU(){HU=p9c;tU=new JU('ATOMLABEL',0,(NT(),ET),null,true);BU=new JU(GCd,1,KT,null,true);zU=new JU('IMPLICITH_LABEL',2,ET,null,true);AU=new JU('IMPLICITH_VALUE',3,KT,null,true);xU=new JU(HCd,4,MT,null,true);yU=new IU(ICd,5,KT,JCd);CU=new IU('QUERY_PROPERY',6,KT,JCd);uU=new IU('ATOM_MAP',7,KT,JCd);GU=new IU('STEREO',8,KT,uBd);vU=new IU('ATTACHED_DATA',9,IT,'rgb(105,105,105)');DU=new IU('RGROUP_ATTACHMENT_ORDER',10,KT,KCd);EU=new IU('RGROUP_LIGAND_ORDER',11,ET,uBd);wU=new IU('BOND_LABEL',12,KT,uBd);FU=new IU('RGROUP_TITLE',13,IT,uBd)} -function wDb(a){var b;Lqd(a.a);a.b=new Bm;zm(a.b,KGd);Of(a.b,LId);b=new $fd(5,4);vDb(a,(YDb(),UDb),0,0,b);vDb(a,PDb,0,1,b);vDb(a,NDb,0,2,b);vDb(a,ODb,0,3,b);vDb(a,MDb,1,0,b);vDb(a,HDb,1,1,b);vDb(a,FDb,1,2,b);vDb(a,GDb,1,3,b);vDb(a,RDb,2,0,b);vDb(a,SDb,2,1,b);vDb(a,QDb,2,2,b);vDb(a,TDb,2,3,b);vDb(a,JDb,3,0,b);vDb(a,KDb,3,1,b);vDb(a,IDb,3,2,b);vDb(a,LDb,3,3,b);vDb(a,XDb,4,0,b);vDb(a,EDb,4,1,b);vDb(a,VDb,4,2,b);vDb(a,WDb,4,3,b);a.d=new Ufd;Cg(a.d,b);og(a.d,new ADb(a),(cpc(),cpc(),bpc));pg(a.d,new yDb(a),(!Vpc&&(Vpc=new Ioc),Vpc));Cg(a.b,a.d)} -function Vg(a,b){var c,d,e,f;if(b.a||!a.K&&b.b){a.I&&(b.a=true);return}a.Xb(b);if(b.a){return}d=b.d;c=Ng(a,d)||Mg(a,d);c&&(b.b=true);a.I&&(b.a=true);f=(abd(),zcd((ujc(),d).type));switch(f){case 512:case 256:case 128:{(d.keyCode|0)&hyd;(d.shiftKey?1:0)|(d.metaKey?8:0)|(d.ctrlKey?2:0)|(d.altKey?4:0);return}case 4:case uzd:{if(_ad){b.b=true;return}}if(!c&&a.s){a.Wb(true);return}break;case 8:case 64:case 1:case 2:case vzd:{if(_ad){b.b=true;return}break}case wzd:{e=tjc.An(d);if(a.I&&!c&&!!e){e.blur&&e!=$doc.body&&e.blur();b.a=true;return}break}}} -function fNb(){this.b=new ltd;this.a=(JMb(),oJd);cNb(this,tMb);cNb(this,(EMb(),oMb));cNb(this,(GMb(),qMb));cNb(this,(FMb(),pMb));cNb(this,(IMb(),sMb));cNb(this,(DMb(),nMb));cNb(this,(HMb(),rMb));cNb(this,(KMb(),uMb));cNb(this,(YMb(),MMb));cNb(this,($Mb(),OMb));cNb(this,(_Mb(),PMb));cNb(this,(aNb(),QMb));cNb(this,(ZMb(),NMb));cNb(this,(XMb(),LMb));cNb(this,(ENb(),yNb));cNb(this,(FNb(),zNb));cNb(this,(GNb(),ANb));cNb(this,(lNb(),hNb));cNb(this,(kNb(),gNb));cNb(this,(wNb(),sNb));cNb(this,(xNb(),tNb));cNb(this,(qNb(),mNb));cNb(this,(rNb(),nNb))} -function nab(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u;n=new ltd;for(c=new Frd(a.a);c.a');nod(d.a,R9c(o));nod(d.a,'<\/strong>')}m=w.a}if(f==0){continue}H9c(d,j.substr(f));u=new thd(j,(new J9c(d.a.a)).a);v.a[v.a.length]=u}}return v} -function ejd(){var a,b,c,d;this.a=new Wo;$i(this,this.a);this.Q==-1?obd((abd(),this.U),1|(this.U.__eventBits||0)):(this.Q|=1);(abd(),this.U).className='gwt-TabBar';agc();Kdc(Tfc,Rf(this.a));Vo(this.a,(vgd(),sgd));a=new ved;b=new ved;a.U.className='gwt-TabBarFirst';b.U.className='gwt-TabBarRest';a.U.style[czd]=fzd;b.U.style[czd]=fzd;Qo(this.a,a);Qo(this.a,b);a.U.style[czd]=fzd;c=Lo(this.a,a);!!c&&(c[czd]=fzd,undefined);d=Lo(this.a,b);!!d&&(d[ezd]=fzd,undefined);Mic(a.U).className='gwt-TabBarFirst-wrapper';Mic(b.U).className='gwt-TabBarRest-wrapper'} -function YWb(a,b,c){var d,e,f,g,h,j,l;if(qtd(a.a,c)||Zr(W3b(b),c,0)==-1){return 0}if(Zr(W3b(b),c,0)==0){h=new _qd(W3b(b),1,W3b(b).a.length)}else if(Zr(W3b(b),c,0)==W3b(b).a.length-1){h=new _qd(W3b(b),0,W3b(b).a.length-1)}else{h=new _qd(W3b(b),Zr(W3b(b),c,0)+1,W3b(b).a.length);Lr(h,new _qd(W3b(b),0,Zr(W3b(b),c,0)))}l=0;f=true;e=new $qd(h,0);d=c;while(e.b0&&f){j=e.a.zd(e.c=--e.b);ZWb(d,j)?++g:(f=false);d=j}l<2&&(l=0);g<2&&(g=0);return l+g} -function a$b(){WZb();return vuc(quc(PWc,1),nyd,18,0,[sYb,tYb,EYb,PXb,NXb,UXb,PYb,XYb,kYb,TYb,QYb,KYb,HXb,vZb,ZYb,qZb,ZXb,JXb,BYb,VXb,sZb,EZb,MZb,bYb,MYb,lYb,aYb,UYb,dYb,TZb,pYb,rYb,KXb,tZb,TXb,CYb,jZb,yZb,RZb,UZb,RYb,NYb,BZb,pZb,nZb,aZb,FXb,WXb,zYb,xZb,rZb,CZb,yYb,PZb,cYb,OXb,DYb,XXb,dZb,SYb,bZb,wZb,jYb,qYb,AZb,gYb,wYb,hYb,GZb,SZb,GYb,uYb,zZb,NZb,kZb,YYb,AYb,eZb,MXb,vYb,FZb,_Yb,RXb,cZb,LXb,oZb,oYb,iZb,EXb,DZb,$Yb,HZb,WYb,fZb,IXb,$Xb,SXb,YXb,iYb,nYb,JYb,VYb,FYb,lZb,eYb,uZb,QXb,xYb,OYb,fYb,mZb,_Xb,LZb,mYb,JZb,HYb,KZb,IZb,DXb,gZb,IYb,OZb,GXb,hZb,LYb,QZb])} -function yrc(a,b){var c,d,e,f,g;c=new zod;g=false;for(f=0;f0){lrc(a,c,0);c.a+=String.fromCharCode(d);e=qrc(b,f);lrc(a,c,e);f+=e-1;continue}if(d==39){if(f+13 or <5',false),a.n.a=e,e),sad(a.c));agd(c,(f=new Hdd,kg(f.U,FHd,true),mg(f.U,true),kjc(f.U,qHd),og(f,a.j,(voc(),voc(),uoc)),f),sad(a.e));agd(c,(g=new Hdd,kg(g.U,FHd,true),mg(g.U,true),kjc(g.U,'Delete All'),og(g,a.k,(null,uoc)),g),sad(a.i));return c} -function Puc(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J;c=a.l&8191;d=a.l>>13|(a.m&15)<<9;e=a.m>>4&8191;f=a.m>>17|(a.h&255)<<5;g=(a.h&1048320)>>8;h=b.l&8191;j=b.l>>13|(b.m&15)<<9;l=b.m>>4&8191;m=b.m>>17|(b.h&255)<<5;n=(b.h&1048320)>>8;F=c*h;G=d*h;H=e*h;I=f*h;J=g*h;if(j!=0){G+=c*j;H+=d*j;I+=e*j;J+=f*j}if(l!=0){H+=c*l;I+=d*l;J+=e*l}if(m!=0){I+=c*m;J+=d*m}n!=0&&(J+=c*n);q=F&XKd;r=(G&511)<<13;o=q+r;t=F>>22;u=G>>9;v=(H&262143)<<4;w=(I&31)<<17;s=t+u+v+w;B=H>>18;C=I>>5;D=(J&4095)<<8;A=B+C+D;s+=o>>22;o&=XKd;A+=s>>22;s&=XKd;A&=YKd;return Auc(o,s,A)} -function mC(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;a.f=new std;a.i=new std;for(q=new qsd(dsd(a.e.o).b.Qb());q.b.Rc();){n=q.b.Sc();Ytd(a.b,n,mnd((!n.b&&(n.p?GWb(n.p):(n.b=mnd(0))),n.b?n.b.a:0)))}for(c=(l=(new ard(a.a)).a.mp().Qb(),new brd(l));c.a.Rc();){b=(f=c.a.Sc(),f.yp());Lr(a.f,b.Ml());Lr(a.i,b.Ul());for(o=new qsd(b.Re().b.Qb());o.b.Rc();){n=o.b.Sc();Ytd(a.j,n,b)}}a.c=new es;for(e=(m=(new ard(a.f.a)).a.mp().Qb(),new brd(m));e.a.Rc();){d=(f=e.a.Sc(),f.yp());hC(a,d)}a.d=new es;for(h=(j=(new ard(a.i.a)).a.mp().Qb(),new brd(j));h.a.Rc();){g=(f=h.a.Sc(),f.yp());iC(a,g)}} -function Dtb(){Dtb=p9c;msb=new bl(YFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmV9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjwvZz48cGF0aCBkPSJNOCAxMmg2djFIOHptNi0xbDMgMS41LTMgMS41TTQgOS4xOWwtMSAuODgtLjYtLjY5TDQgOGgxdjhINHptMTYgMGwtMSAuODgtLjYtLjY5TDIwIDhoMXY4aC0xeiIgZmlsbD0iIzUwNTA1MCIgaWQ9Ikljb25zIi8+PC9zdmc+')))} -function Whd(o,a,b,c,d){var e=o.d;var f=o.c;var g=o.a;if(a.length>b.length+g){var h=':'+a.slice(b.length,b.length+g);if(f.hasOwnProperty(h)){var j=f[h];var l=b+h.substr(1);j.ro(a,l,c,d)}}else{for(var m in e){if(m.indexOf(':')!=0){continue}var l=b+m.substr(1);l.indexOf(a)==0&&c.od(l);if(c.vd()>=d){return}}for(var h in f){if(h.indexOf(':')!=0){continue}var l=b+h.substr(1);var j=f[h];if(l.indexOf(a)==0){if(j.b<=d-c.vd()||j.b==1){j.qo(c,l)}else{for(var m in j.d){m.indexOf(':')==0&&c.od(l+m.substr(1))}for(var n in j.c){n.indexOf(':')==0&&c.od(l+n.substr(1)+'...')}}}}}} -function TF(a,b){a.a=null;if(a.b.c){if(bbc(a.b.c.e,b)){a.b.c.c=true;eG(a.i);a.a=b;return true}else if(bbc(a.b.c.f,b)){a.b.c.c=true;eG(a.j);a.a=b;return true}else if(bbc(a.b.c.d,b)){a.b.c.c=true;a.a=b;return true}else if(bbc(a.b.c.a,b)){a.b.c.c=true;aw(a.n,WJb(a.b,b,false));a.a=b;return true}}if(a.b.d){if(bbc(a.b.d.e,b)){a.b.d.c=true;eG(a.k);a.a=b;return true}else if(bbc(a.b.d.f,b)){a.b.d.c=true;eG(a.f);a.a=b;return true}else if(bbc(a.b.d.d,b)){a.b.d.c=true;a.a=b;return true}else if(bbc(a.b.d.a,b)){a.b.d.c=true;aw(a.n,WJb(a.b,b,true));a.a=b;return true}}return false} -function lyb(a){var b,c,d,e,f,g,h,j,l;b=$wnd.Math.min($wnd.Math.min($wnd.Math.max(0,parent.innerHeight),5000),zad());Qxb=$wnd.Math.max(1,b/500);for(d=new Frd(a.f);d.a0?''+b.Ol():null);m!=null&&Otd(e.e,zEd,m);n=b.Rl();n!=0&&Iqd(e,sEd,''+n);Ofb(e,d);a.a.Nj(b.Cf(),d)} -function hyb(a,b,c){var d,e,f,g,h,j,l,m,n,o;g=new Frd(b);e=0;h=(i1b(),f1b);d=e1b;while(g.a=57&&e<=71){++h;Ffd(c,9,h,Rxb(gyb(a,(g.b=g.a++,g.c.a[g.b]))));Kfd(c.d,9,h).className=WHd}else{if(e>=89&&e<=103){++d;Ffd(c,10,d,Rxb(gyb(a,(g.b=g.a++,g.c.a[g.b]))));Kfd(c.d,10,d).className=WHd}}}else{j=h1b[e-1].e;Ffd(c,j,f,Rxb(gyb(a,(g.b=g.a++,g.c.a[g.b]))));Kfd(c.d,j,f).className=WHd}}l=Sxb(gyb(a,a.d));m=Sxb(gyb(a,a.e));n=new Fg;o=new Fg;kg((abd(),n.U),XHd,true);kg(o.U,XHd,true);Cg(n,l);Cg(o,m);Ofd(c.d,9,3);Ofd(c.d,10,3);Ffd(c,9,0,n);Ffd(c,10,0,o)} -function ehb(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s,t;e=(q=new ltd,r=(s6b(),g6b)==b?'cxn:coord':null,r!=null&&Otd(q.e,KEd,r),s=qib(b),s!=null&&Otd(q.e,IEd,s),t=rib(b),t!=null&&Otd(q.e,JEd,t),q.d.c+q.e.b==0?null:q);if(e){l=(m=(new ard(e)).a.mp().Qb(),new brd(m));while(l.a.Rc()){j=(h=l.a.Sc(),h.yp());eld(d,j,j==null?Bqd(ztd(e.d,null)):Ntd(e.e,j))}}f=tib(b);g=c?(Ufb(),Tfb):sib(b);if(f!=null||!!g){n=Zgb(a.b,LEd);if(f!=null){o=$gb(a.b,f);Lkd(n,o)}if(g){l=(m=(new ard(g)).a.mp().Qb(),new brd(m));while(l.a.Rc()){j=(h=l.a.Sc(),h.yp());eld(n,j,j==null?Bqd(ztd(g.d,null)):Ntd(g.e,j))}}Lkd(d,n)}} -function uF(a,b){var c,d;for(d=new qsd(dsd(b.v).b.Qb());d.b.Rc();){c=d.b.Sc();if(dsd(c.r).b.vd()==dsd(a.r).b.vd()&&dsd(c.s).b.vd()==dsd(a.s).b.vd()&&dsd(c.A).b.vd()==dsd(a.A).b.vd()&&(Xrd(),0==dsd(a.t).b.vd())&&(Xrd(),0==dsd(a.q).b.vd())&&(Xrd(),0==dsd(a.w).b.vd())&&(Xrd(),0==dsd(a.C).b.vd())&&dsd(a.u).b.vd()==dsd(c.u).b.vd()&&(Xrd(),0==dsd(a.B).b.vd())&&Nr(a.r,dsd(c.r))&&Nr(a.s,dsd(c.s))&&Nr(a.A,dsd(c.A))&&Nr(a.t,(Xrd(),Xrd(),Urd))&&Nr(a.q,(Xrd(),Xrd(),Urd))&&Nr(a.w,(Xrd(),Xrd(),Urd))&&Nr(a.C,(Xrd(),Xrd(),Urd))&&Nr(a.u,dsd(c.u))&&Nr(a.B,(Xrd(),Xrd(),Urd))){return true}}return false} -function R4(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r;CWb(b,a.c);for(f=(l=(new drd(a.a)).a.mp().Qb(),new erd(l));f.a.Rc();){d=(c=f.a.Sc(),c.Ok());uVb(b,d)}for(g=(m=(new drd(a.b)).a.mp().Qb(),new erd(m));g.a.Rc();){d=(c=g.a.Sc(),c.Ok());vVb(b,d)}for(h=(j=(new drd(a.j)).a.mp().Qb(),new erd(j));h.a.Rc();){d=(c=h.a.Sc(),c.Ok());AVb(b,d)}for(e=new Frd((r=new es,Xr(r,new drd(a.n)),Xr(r,a.i),r));e.a>24;return 1}else if(c>6&31|192)<<24>>24;a[b]=(c&63|128)<<24>>24;return 2}else if(c>12&15|224)<<24>>24;a[b++]=(c>>6&63|128)<<24>>24;a[b]=(c&63|128)<<24>>24;return 3}else if(c>18&7|240)<<24>>24;a[b++]=(c>>12&63|128)<<24>>24;a[b++]=(c>>6&63|128)<<24>>24;a[b]=(c&63|128)<<24>>24;return 4}else if(c>24&3|248)<<24>>24;a[b++]=(c>>18&63|128)<<24>>24;a[b++]=(c>>12&63|128)<<24>>24;a[b++]=(c>>6&63|128)<<24>>24;a[b]=(c&63|128)<<24>>24;return 5}throw I8c(new bnd('Character out of range: '+c))} -function nlb(g){var d=(Sxd(),xxd(QGd));var e,f=g;$wnd.marvin.ImageExporter=Yxd(function(){var a,b=this,c=arguments;c.length==1&&f.Yj(c[0])?(a=c[0]):c.length==1?(a=new clb(c[0])):c.length==0&&(a=new blb);b.g=a;Vxd(a,b);return b});e=$wnd.marvin.ImageExporter.prototype=new Object;$wnd.marvin.ImageExporter.molToDataUrl=Yxd(function(a,b,c){return dlb(a,b,c,(C1(),k1))});$wnd.marvin.ImageExporter.mrvToDataUrl=Yxd(function(a,b,c){return dlb(a,b,c,(C1(),m1))});e.render=Yxd(function(a){return this.g.Wj(a)});if(d)for(p in d)$wnd.marvin.ImageExporter[p]===undefined&&($wnd.marvin.ImageExporter[p]=d[p])} -function A9(a,b,c){var d,e,f,g;d=b1b(d1b(b.n));if(d){X9((W9(),S9),a);a.a+=''+c;a.a+=' ';x9(a,d.a,30);x9(a,null,2);x9(a,d.c,20);g=d.b;nod(a,(tcc(),!!g&&g.a?'mQ':' '));g.b!=null&&nod(a,g.b);a.a+=oyd;X9(Q9,a);a.a+=''+c;a.a+=' 0.0000 0.0000 DRU ALL 0 0 ';a.a+=oyd;d.d.a!=null&&H9(a,Nud(d.d),c)}else{f=dsd(b.r);if(f.b.vd()==1){e=f.a.zd(0).Ol();if(e!=0){X9((W9(),S9),a);a.a+=''+c;a.a+=' MRV_IMPLICIT_H \n';X9(Q9,a);a.a+=''+c;a.a+=' 0.0000 0.0000 DR ALL 0 0\n';X9(T9,a);a.a+=''+c;a.a+=' IMPL_H';nod(a,(Cnd(),''+e));a.a+=oyd}}}} -function mtb(){mtb=p9c;Xrb=new bl(xHd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxjaXJjbGUgY2xhc3M9ImNscy0yIiBjeD0iNiIgY3k9IjE1IiByPSIxIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSI2IiBjeT0iMTkiIHI9IjEiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xNiA0bC0zIDZoMi41QTYuNTEgNi41MSAwIDAgMSA5IDE2LjV2MWE3LjUgNy41IDAgMCAwIDcuNS03LjVIMTl6Ii8+PC9nPjwvc3ZnPg==')))} -function Itb(){Itb=p9c;rsb=new bl(EFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE3LjE0IDExLjVIMTF2MWg4di0xaC0xLjg2eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjE0IDE1bC01IDIuODktNS0yLjg5VjkuMjNsNS0yLjg5IDUgMi44OXYxLjI3aDFWOC42NWwtNi0zLjQ3LTYgMy40N3Y2LjkzbDYgMy40NiA2LTMuNDZWMTMuNWgtMVYxNXoiLz48L2c+PC9zdmc+')))} -function Vac(a,b){var c,d,e,f;if(bbc(a,new qad(b.b.a+b.c/2,b.b.b+b.a/2))||bbc(b,new qad(a.b.a+a.c/2,a.b.b+a.a/2))){return Aac(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(b.b.a+b.c/2,b.b.b+b.a/2))}c=Lac(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(b.b.a+b.c/2,b.b.b+b.a/2),new Srd(vuc(quc(QYc,1),lyd,25,0,[a])));d=Lac(new qad(b.b.a+b.c/2,b.b.b+b.a/2),new qad(a.b.a+a.c/2,a.b.b+a.a/2),new Srd(vuc(quc(QYc,1),lyd,25,0,[b])));e=tac(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(b.b.a+b.c/2,b.b.b+b.a/2),c);f=tac(new qad(b.b.a+b.c/2,b.b.b+b.a/2),new qad(a.b.a+a.c/2,a.b.b+a.a/2),d);return new qad((e.a+f.a)/2,(e.b+f.b)/2)} -function p8(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r;O7.call(this);this.c=new std;this.d=new std;this.f=new es;this.i=new ltd;this.a=a;this.b=b;this.e=d?new s8:new q8;j=new es;Xr(j,dsd(c.w));for(h=new qsd(dsd(c.p).b.Qb());h.b.Rc();){g=h.b.Sc();h8(this,g)}q=new gs(dsd(c.n));Or(q,cWb(c));for(f=new Frd(q);f.a0||a==Cbc&&e>0&&e<119||a==Gbc&&(i1b(),e>0&&e<=126&&h1b[e-1].a==0)){Bid(this.b,d);a==Cbc&&(zBb(this,false),Cic((pic(),new IBb(this,c)),200))}}}this.d=f} -function mo(a,b){ho();this.d=a;this.a=b;jo(this);this.f=new Zo(this);this.k=new _o(this);acd(new ap(this));og(this.i,new bp(this),(Tpc(),Tpc(),Spc));og(this.e,new cp(this),(ipc(),ipc(),hpc));og(this.e,new dp(this),(Qpc(),Qpc(),Ppc));og(this.e,new ep(this),(opc(),opc(),npc));og(this.e,new Bo(this),(upc(),upc(),tpc));og(this.e,new Co(this),(Gpc(),Gpc(),Fpc));og(this.e,new Do(this),(Jpc(),Jpc(),Ipc));og(this.j,new Eo(this),(null,hpc));og(this.j,new Fo(this),(null,Ppc));og(this.j,new Go(this),(null,npc));og(this.j,new Ho(this),(null,tpc));og(this.j,new Io(this),(null,Fpc));og(this.j,new Jo(this),(null,Ipc))} -function JJb(a,b){var c,d,e,f,g,h,j,l;f=new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2);d=a.e.b;e=!a.a||bbc(a.a,(h=new qad(20*a.e.b,-(20*a.e.b)),iad(lad(f,kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)),h)))?f:GJb(a,dbc(a.a));c=(j=new qad(20*a.e.b,-(20*a.e.b)),iad(lad(e,kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)),j));l=a.e.b;b?hKb(a.e):gKb(a.e);a.c=mad(iad(a.c,new qad(l,l)),new qad(a.e.b,a.e.b));if(a.e.b!=d){a.c=kH(a.c,lad(e,(g=new qad(20*a.e.b,-(20*a.e.b)),kH(new qad(c.a*g.a,c.b*g.b),kH(new qad(a.d.a.p.Un().width/2,a.d.a.p.Un().height/2),a.c)))));return true}return false} -function l_b(){l_b=p9c;W$b=new m_b('CHK',0,(T_b(),r_b));V$b=new m_b('CHE',1,q_b);X$b=new m_b('CHY',2,s_b);U$b=new m_b('ARY',3,x_b);c_b=new m_b('Heterocycle',4,I_b);$$b=new m_b('HEA',5,K_b);a_b=new m_b('HET',6,J_b);b_b=new m_b('HSA',7,F_b);Y$b=new m_b('CYC',8,w_b);_$b=new m_b('HEF',9,A_b);Z$b=new m_b('HAL',10,E_b);f_b=new m_b('PRT',11,P_b);h_b=new m_b('UNK',12,S_b);S$b=new m_b('ACT',13,o_b);d_b=new m_b('LAN',14,M_b);R$b=new m_b('A35',15,O_b);e_b=new m_b('MX',16,N_b);g_b=new m_b('TRM',17,R_b);T$b=new m_b('AMX',18,p_b);j_b=new m_b('acyclicCarbon',19,y_b);k_b=new m_b('anyring',20,z_b);i_b=new m_b('XX',21,u_b)} -function YNb(){ZNb.call(this,new si(new pxd(new kpd('10328400754623195006538232250445646173234515198616849995947710377130869330924088628017619811358599344440291439192721234623603691213749518356778136132486588'),new oxd(new kpd('13232376895198612407547930718267435757728527029623408872245156039757713029036368719146452186041204237350521785240337048752071462798273003935646236777459223'),new kpd('857393771208094202104259627990318636601332086981'),new kpd('5421644057436475141609648488325705128047428394380474376834667300766108262613900542681289080713724597310673074119355136085795982097390670890367185141189796')))))} -function F4b(){F4b=p9c;o4b=new H4b(syd,0,'any');p4b=new G4b('COMPONENT',1,'c',1);q4b=new H4b('COPOLYMER',2,'co');r4b=new H4b('COPOLYMER_ALTERNATING',3,'alt');s4b=new H4b('COPOLYMER_BLOCK',4,'blk');t4b=new H4b('COPOLYMER_RANDOM',5,'ran');u4b=new H4b('CROSSLINK',6,'xl');v4b=new H4b(HDd,7,'');w4b=new H4b('GRAFT',8,'grf');x4b=new H4b('MER',9,'mer');y4b=new H4b('MODIFICATION',10,'mod');z4b=new H4b('MONOMER',11,'mon');A4b=new G4b('MULTIPLE_GROUP',12,'',1);B4b=new H4b('ORDERED_MIXTURE',13,'f');C4b=new G4b('REPEATING_UNIT_WITH_RANGE',14,'',2);D4b=new H4b('SRU_POLYMER',15,'n');E4b=new H4b('UNORDERED_MIXTURE',16,'mix')} -function Ay(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;c=new std;g=new std;o=new std;s=new sud;mud(s,b,s.c.b,s.c);c.a.pp(b,c);while(s.b>0){r=s.b==0?null:qud(s,s.a.a);for(f=new Frd(dy(a,r));f.a>19!=0){b=Quc(b);j=true}g=Iuc(b);f=false;e=false;d=false;if(a.h==ZKd&&a.m==0&&a.l==0){e=true;f=true;if(g==-1){a=zuc((cvc(),$uc));d=true;j=!j}else{h=Tuc(a,g);j&&Guc(h);c&&(xuc=Auc(0,0,0));return h}}else if(a.h>>19!=0){f=true;a=Quc(a);d=true;j=!j}if(g!=-1){return Duc(a,g,j,f,c)}if(Nuc(a,b)<0){c&&(f?(xuc=Quc(a)):(xuc=Auc(a.l,a.m,a.h)));return Auc(0,0,0)}return Euc(d?a:Auc(a.l,a.m,a.h),b,j,f,e,c)} -function jfb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;g=heb(a.j,_zd);j=null;if(g==null){return}if(Hnd(g,gFd)){l=(m=(new icb(a.j)).a,n=_1(mfb(a)),n.n=_0b(m,n.n),n);if(!nfb(l)){j=l;!!b&&Wr(b.a.a,l);Pdb(a.k,j)}return}Hnd(g,kFd)?(j=(o=vfb(a.j),q=mfb(a),q.a.length==0&&(q=kfb(a)),r=new is,ffb(new gfb(a.j,a.c),r),s=new P5b(q,r,o),t=ufb(a.j),t!=null&&Y1(s,(O$b(),L$b),t),s)):Hnd(g,lFd)?(f=heb(a.j,KAd),a.b=new Jeb(mfb(a),f)):Hnd(g,mFd)?(j=(h=mfb(a),new Z1(h))):(j=ifb(a));if(j){c=lfb(a,j);if(c){Q1(j,b1b(d1b(c.n)));Sdb(a.k,c)}else{W1(j,Xeb(a.d,a.f))}for(e=new qsd(dsd(a.k.w).b.Qb());e.b.Rc();){d=e.b.Sc();!d.o&&X1(d,j)}}Pdb(a.k,j)} -function Fqb(a){var b,c,d;d=new jud;if(!Sx(a.A)){Lr(d,ipb(a));c=Ndb(a.C,a.A);Lr(d,dsd(c.v));Lr(d,dsd(c.r));Lr(d,dsd(c.w))}b=(!a.s&&(a.s=new fx(a)),a.s).a.a;if(b){ptd(d,b.a)}else if((!a.s&&(a.s=new fx(a)),a.s.a).b){if(hy((!a.s&&(a.s=new fx(a)),a.s.a).b)||iy((!a.s&&(a.s=new fx(a)),a.s.a).b)||my((!a.s&&(a.s=new fx(a)),a.s.a).b)){Lr(d,jpb(a,(!a.s&&(a.s=new fx(a)),a.s.a).b));c=Bdb(a.C,(!a.s&&(a.s=new fx(a)),a.s.a).b);Lr(d,dsd(c.w))}else{c=Bdb(a.C,(!a.s&&(a.s=new fx(a)),a.s.a).b);if(dsd(c.v).b.vd()==1){Lr(d,dsd(c.v));return d}else if(dsd(c.r).b.vd()==1){Lr(d,dsd(c.r));return d}Lr(d,dsd(c.v));Lr(d,dsd(c.r));Lr(d,dsd(c.w))}}return d} -function mE(a,b,c,d,e,f){var g,h,j,l,m,n,o,q,r;this.p=a;this.j=c;this.b=b;this.n=d;this.o=new _td;this.a=new _td;this.e=new _td;this.k=new _td;this.i=new _td;this.d=new Yu(a.A);for(j=new qsd(dsd(e.r).b.Qb());j.b.Rc();){g=j.b.Sc();Ytd(this.o,g,new Tac(g.Lh(),g.Ki()))}for(h=new qsd(dsd(e.q).b.Qb());h.b.Rc();){g=h.b.Sc();Ytd(this.a,g,vuc(quc(VXc,1),{2396:1,3:1,4:1},2237,0,[g.c,g.a]))}for(m=new qsd(dsd(e.w).b.Qb());m.b.Rc();){l=m.b.Sc();Ytd(this.e,l,l.a)}for(r=new qsd(dsd(e.C).b.Qb());r.b.Rc();){q=r.b.Sc();Ytd(this.k,q,q.a)}for(o=new qsd(dsd(e.B).b.Qb());o.b.Rc();){n=o.b.Sc();Ytd(this.i,n,dbc(n.e))}this.f=f;this.c=new uC(a,a.C,f)} -function WJb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q;if(a.e<0||a.b<0||!a.a){return null}if(!!a.c&&!c){o=b.a;l=a.c.d.b.a+a.c.d.c/2;m=a.c.d.b.a+(o-l);g=m-(m+a.c.d.c-(a.c.f.b.a+a.c.f.c-16));n=o-l>0?$wnd.Math.min(g,m):$wnd.Math.max(m,16);f=n-a.c.d.b.a;j=$wnd.Math.max(a.e,a.a.b.a+a.a.c)-$wnd.Math.min(a.a.b.a,0);e=a.c.f.b.a+a.c.f.c-16-16;return new qad(-f*j/e,0)}if(!!a.d&&c){q=b.b;l=a.d.d.b.b+a.d.d.a/2;m=a.d.d.b.b+(q-l);g=m-(m+a.d.d.a-(a.d.f.b.b+a.d.f.a-16));n=q-l>0?$wnd.Math.min(g,m):$wnd.Math.max(m,16);f=n-a.d.d.b.b;h=$wnd.Math.max(a.b,a.a.b.b+a.a.a)-$wnd.Math.min(a.a.b.b,0);d=a.d.f.b.b+a.d.f.a-16-16;return new qad(0,-f*h/d)}return null} -function zWb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s;if(!NVb(a,b,c)){return}c.lm(new Tac(b.Lh(),b.Ki()));q=new gs(b.Ml());o=new gs(b.Re());r=new gs(b.Ul());n=dWb(b,(s=new es,Xr(s,dsd(a.v)),Xr(s,dsd(a.r)),s));HVb(a,tsd(dsd(a.n),b),c);rtd(a.i,b)&&ptd(a.i,c);mWb(a,b);for(m=new Frd(n);m.a=17&&(d==0&&c==4&&(a.i||Ac(a),a.n==2)||d==1&&c==2||d==2&&c==2&&(a.i||Ac(a),a.o==2)||d==4&&c==0)){e=-a.f}else if(d==0){e=-c}else return d==1&&c==1?dc(0):ec()}else if(d<0){if(d==-1){e=Eb(a)}else{return ec()}}else if(d==0){if(g==0){e=Db(a)}else{return ec()}}else if(d==1){if(g!=0){return g==2&&c<=2?dc(-c):ec()}f=a.f;if(c-f==2){e=-f}else if(c<=2){e=2-c}else{return ec()}}else if(d>1){return ec()}return dc(e)}else{throw I8c(new Yc('Calling column 17 for atom number: '+b))}} -function zVb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v;for(g=new qsd(dsd(b.r).b.Qb());g.b.Rc();){f=g.b.Sc();uVb(a,f)}for(m=new qsd(dsd(b.s).b.Qb());m.b.Rc();){l=m.b.Sc();vVb(a,l)}for(t=new qsd(dsd(b.u).b.Qb());t.b.Rc();){s=t.b.Sc();AVb(a,s)}for(j=new qsd(dsd(b.A).b.Qb());j.b.Rc();){h=j.b.Sc();sVb(a,dsd(a.o).b.vd(),h)}for(o=new qsd(dsd(b.t).b.Qb());o.b.Rc();){n=o.b.Sc();xVb(a,n)}for(e=new qsd(dsd(b.q).b.Qb());e.b.Rc();){c=e.b.Sc();tVb(a,c)}for(d=new qsd(dsd(b.w).b.Qb());d.b.Rc();){c=d.b.Sc();CVb(a,c)}for(r=new qsd(dsd(b.C).b.Qb());r.b.Rc();){q=r.b.Sc();yVb(a,q)}for(v=new qsd(dsd(b.B).b.Qb());v.b.Rc();){u=v.b.Sc();GVb(a,u)}SVb(a,new u7b)} -function jq(a){this.c=new kq(this);this.e=new Wo;Uo(this.e,(qgd(),mgd));Of(this.e,(Os(),Js));this.i=a;this.b=hid(a);$i(this,this.e);kg((abd(),this.U),'gwt-RichTextToolbar',true);kg(a.U,'hasRichTextToolbar',true);if(this.b){Qo(this.e,this.a=gq(this,'B',SAd));Qo(this.e,this.d=gq(this,'I',TAd));Qo(this.e,this.j=gq(this,'X\u2082','subscript'));Qo(this.e,this.k=gq(this,'X\xB2','superscript'));Qo(this.e,this.f=fq(this,'\xD8','remove format from selection'));Qo(this.e,this.n=fq(this,'\u03A9','symbol'));Rf(this.a).style['fontWeight']=(ymc(),SAd);Rf(this.d).style['fontStyle']=(omc(),TAd);og(a,this.c,(fpc(),fpc(),epc));og(a,this.c,(voc(),voc(),uoc))}} -function Vsb(){Vsb=p9c;Erb=new bl(cGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUuMiAxNy4yMkwzLjc4IDE1LjhsMy41NC0zLjUzIDEuNDEgMS40MXpNOS40NCAxM0w4IDExLjU2IDExLjU2IDggMTMgOS40NHptNC4yNC00LjI0bC0xLjQxLTEuNDQgMy41My0zLjU0IDEuNDIgMS40MnoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMy41IDEzLjQ5OCkiIGQ9Ik01IDEyLjVoMTd2Mkg1eiIvPjwvZz48L3N2Zz4=')))} -function btb(){btb=p9c;Mrb=new bl('clear',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmV9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjwvZz48cGF0aCBkPSJNMTMuOTEgM0g2YTIgMiAwIDAgMC0yIDJ2MTRhMiAyIDAgMCAwIDIgMmgxMmEyIDIgMCAwIDAgMi0yVjkuMDl6TTE4IDE5SDZWNWg2djMuNWEyLjUgMi41IDAgMCAwIDIuNSAyLjVIMTh6bTAtOWgtMy41QTEuNSAxLjUgMCAwIDEgMTMgOC41VjVoLjA5TDE4IDkuOTF6IiBmaWxsPSIjNTA1MDUwIiBpZD0iSWNvbnMiLz48L3N2Zz4=')))} -function fub(){fub=p9c;Qsb=new bl(UFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjY0IDE1YTguMjIgOC4yMiAwIDAgMS0yLjEyIDIuMTJsNC4zMyA0LjMzIDIuMTUtMi4xek0xNyA5LjUzYTcgNyAwIDEgMC03IDcgNyA3IDAgMCAwIDctN3ptLTcgNmE2IDYgMCAxIDEgNi02IDYgNiAwIDAgMS02IDZ6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTEuMDMgNS41M2gtMnYzaC0zdjJoM3YzaDJ2LTNoM3YtMmgtM3YtM3oiLz48L2c+PC9zdmc+')))} -function Fi(a,b){var c,d,e,f,g,h;if(!a||!(Os(),Ns)){return null}c=new Ti(b);g=og(a,c,(yoc(),yoc(),xoc));f=$wnd.navigator.platform;if(f.indexOf('iPad')!=-1||f.indexOf(Ozd)!=-1){kg((abd(),a.U),Pzd,true);if(b){h=new Qi(b);!!a&&(g=new Xi(vuc(quc(W0c,1),Iyd,340,0,[g,(e=new Vi(h),new Xi(vuc(quc(W0c,1),Iyd,340,0,[og(a,e,(ipc(),ipc(),hpc)),og(a,e,(lpc(),lpc(),kpc)),og(a,e,(upc(),upc(),tpc)),og(a,e,(opc(),opc(),npc)),og(a,e,(rpc(),rpc(),qpc))])))])));!!a&&(g=new Xi(vuc(quc(W0c,1),Iyd,340,0,[(d=new Si(h),new Xi(vuc(quc(W0c,1),Iyd,340,0,[og(a,d,(Qpc(),Qpc(),Ppc)),og(a,d,(Npc(),Npc(),Mpc)),og(a,d,(Jpc(),Jpc(),Ipc)),og(a,d,(Gpc(),Gpc(),Fpc))])))])))}}return g} -function $Q(a){var b,c,d,e;if(a==null||a.length==0){return a}d='';e=true;for(c=0;c0){o=new es;for(c=0,d=a.length;ca.r.length?(d=false):a.u.lengtha.s.length?(d=false):a.v.length=0&&g<=9){qod(j,g+48&hyd);n=true}else if(e==f.charCodeAt(0)){if(m||o){break}j.a+='.';m=true}else if(e==h.charCodeAt(0)){if(m||o){break}continue}else if(e=='E'.charCodeAt(0)){if(o){break}j.a+='E';o=true}else if(e==43||e==45){j.a+=String.fromCharCode(e)}else if(e=='%'.charCodeAt(0)){if(q!=1){break}q=100;if(n){++d[0];break}}else if(e==VAd.charCodeAt(0)){if(q!=1){break}q=hAd;if(n){++d[0];break}}else{break}}try{l=Wmd(j.a)}catch(a){a=H8c(a);if(kvc(a,65)){throw I8c(new And(c))}else throw I8c(a)}l=l/q;return l} -function Ftb(){Ftb=p9c;osb=new bl(BGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMSA1LjVWMjBoMThsMy44My03LjY2QTEuNTYgMS41NiAwIDAgMCAyMS4zNSAxMEg3YTIuNzggMi43OCAwIDAgMC0yLjM0IDEuNDVMMiAxNy40OVY1LjVhLjUuNSAwIDAgMSAuNS0uNWgzLjc1YTEuMjcgMS4yNyAwIDAgMSAxIC42Mkw4LjQ0IDhIMThhLjUuNSAwIDAgMSAuNS41VjloMXYtLjVBMS41IDEuNSAwIDAgMCAxOCA3SDkuMDZsLS45Mi0xLjgzQTIuMjcgMi4yNyAwIDAgMCA2LjI1IDRIMi41QTEuNSAxLjUgMCAwIDAgMSA1LjV6TTQuMTIgMThsMi4zMy01LjY2QS44MS44MSAwIDAgMSA3IDEyaDEzLjczbC0zIDZ6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} -function Zb(a,b){Ub();var c,d,e,f,g;e=a.b.Nl();d=a.c;c=a.a;f=Y(c);owd(Tb,(Uvd(),Rvd))&&kwd(Tb,'Local aromatic valence check.');if(e*e>1){owd(Tb,Svd)&&lwd(Tb,'Valence error.\nCause: abs(charge) > 1');return ec()}if(e==0){if(d[2]==1&&a.j>2){if(!_b(a,b)){owd(Tb,Svd)&&lwd(Tb,'Valence error.\nCause: charge == 0\n1 double bond\nLigandCount > 2\nhasValidDoubleBondedLigand == false');return ec()}}}else{if(d[2]>0&&!ac(a)){owd(Tb,Svd)&&lwd(Tb,'Valence error.\nCause: charge == 0\nDouble bond count > 0isNorPwithAllowedDoubleBondedLigand == false');return ec()}f-=e}switch(f){case 13:g=Vb(a);break;case 14:g=Wb(a);break;case 15:g=Xb(a);break;case 16:g=Yb(a);break;default:g=ec();}return g} -function wib(a,b,c,d,e,f,g){var h,j,l,m,n,o,q,r,s,t,u,v,w,A;t=_kd(b.a,b.b,UDd);Lkd(c,t);v=_kd(b.a,b.b,ZEd);Lkd(t,v);l=Aib(d);egb(new fgb(XEd),l.a,t);egb(new fgb(YEd),l.b,t);r=Lkd(v,_kd(b.a,b.b,WEd));Lkd(r,Bib(e.b,b));m=new ahb(b,new bgb(b),kWb(d),AOb(a.a));g.Rj(e);j=new Tib;h=(!d.a&&(d.a=new UWb(d)),d.a);Lkd(r,uib(e.d,m,_kd(b.a,b.b,eFd),j,f,h));Lkd(r,uib(e.a,m,_kd(b.a,b.b,'agentList'),j,f,h));Lkd(r,uib(e.c,m,_kd(b.a,b.b,fFd),j,f,h));for(o=new qsd(dsd(d.v).b.Qb());o.b.Rc();){n=o.b.Sc();s=_kd(b.a,b.b,QEd);yib(n,s);Lkd(v,s);for(A=new Frd(R6b(n,d));A.ae){spd(n,d);spd(o,e);rpd(j,e);c+=d-e}else{spd(n,d);spd(o,e);rpd(l,d);c+=e-d}j.e=1;while(o.e>0){while(Ood(n,o)>0){dqd(n,o);m=Uod(n);spd(n,m);bqd(j,l);rpd(l,m);c+=m}while(Ood(n,o)<=0){dqd(o,n);if(o.e==0){break}m=Uod(o);spd(o,m);bqd(l,j);rpd(j,m);c+=m}}if(!(n.d==1&&n.a[0]==1)){throw I8c(new jmd(QLd))}Ood(j,b)>=0&&dqd(j,b);j=fqd(b,j);h=Epd(b);if(c>f){j=Ppd(j,(Nod(),Iod),b,h);c=c-f}j=Ppd(j,npd(f-c),b,h);return j} -function _tb(){_tb=p9c;Ksb=new bl(bGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDEyIDEyKSIgZD0iTTMuOTMgMTFoMTYuMTR2MkgzLjkzeiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDE1LjAwMiAxNC45OTYpIiBkPSJNNi45MyAxNGgxNi4xNHYySDYuOTN6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiB0cmFuc2Zvcm09InJvdGF0ZSgtNDUgOC45OTkgOS4wMDMpIiBkPSJNLjkzIDhoMTYuMTR2MkguOTN6Ii8+PC9nPjwvc3ZnPg==')))} -function rcb(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F;l=ieb(c,'bondArray');if(!l){return}m=jeb(l,FEd);A=b.f;for(t=new Frd(m);t.a0?(e-=86400000):(e+=86400000);j=new Jtc(J8c(P8c(b.r.getTime()),e))}m=new zod;l=a.a.length;for(f=0;f=97&&d<=122||d>=65&&d<=90){for(g=f+1;g=l){throw I8c(new bnd("Missing trailing '"))}g+1*{vertical-align:top;}div.mjs-obf-C.mjs-marginTop{border-top:solid 5px transparent;}div.mjs-obf-C.mjs-inline.mjs-marginTop{border:none;}div.mjs-obf-C>div.mjs-obf-D,div.mjs-obf-C>select,div.mjs-obf-C>input{display:table-cell;}div.mjs-obf-C.mjs-inline{display:inline-block;}div.mjs-obf-C.mjs-inline>div.mjs-obf-D,div.mjs-obf-C.mjs-inline>select,div.mjs-obf-C.mjs-inline>input{display:initial;}'));return true}return false} -function Ktb(){Ktb=p9c;tsb=new bl(LGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNOCAyMUg2VjNoNS41MmE3IDcgMCAwIDEgNC4zMiAxLjIgNC4yMyA0LjIzIDAgMCAxIDEuNTggMy42MUE0LjQ3IDQuNDcgMCAwIDEgMTYuMjQgMTFhNSA1IDAgMCAxLTMuNDEgMS40OUwxOCAyMWgtMi4yM2wtNC45MS04LjM2SDh6bTAtMTBoMy4wNmE3LjMgNy4zIDAgMCAwIDIuMDctLjI2IDMuNzEgMy43MSAwIDAgMCAxLjM1LS43NCAyLjQxIDIuNDEgMCAwIDAgLjczLTEgMy4xMyAzLjEzIDAgMCAwIC4yMy0xLjIzIDMuMDcgMy4wNyAwIDAgMC0uMjMtMS4yMSAyLjU0IDIuNTQgMCAwIDAtLjczLTEgMy41NiAzLjU2IDAgMCAwLTEuMzUtLjY3IDcuNzUgNy43NSAwIDAgMC0yLjA3LS4yNEg4eiIgZmlsbD0iI2U5NzExYyIvPjwvc3ZnPg==')))} -function Gtb(){Gtb=p9c;psb=new bl(Yzd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTkgNC41aC0uNXYxaC41YS41LjUgMCAwIDEgLjUuNXYxM2EuNS41IDAgMCAxLS41LjVoLTJ2MWgyYTEuNSAxLjUgMCAwIDAgMS41LTEuNVY2QTEuNSAxLjUgMCAwIDAgMTkgNC41ek04LjUgNmEuNS41IDAgMCAxIC41LS41aC41di0xSDlBMS41IDEuNSAwIDAgMCA3LjUgNnYuNWgxem05LTIuNWgtMnYtMWgtM3YxaC0ydjNoN3YtM3ptLTEyIDRhMiAyIDAgMCAwLTIgMnYxMGEyIDIgMCAwIDAgMiAyaDhhMiAyIDAgMCAwIDItMnYtNy40MUwxMC45MSA3LjV6bTUgMi40MWwyLjU5IDIuNTlIMTFhLjUuNSAwIDAgMS0uNS0uNXptLTUgOS41OXYtMTBoNFYxMmExLjUgMS41IDAgMCAwIDEuNSAxLjVoMi41djZ6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} -function WS(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w;t=new es;q=new es;Xr(q,dsd(b.r));for(o=new Frd(q);o.a1){g=new RegExp('^[0-9]+(-[0-9]+){0,1}$');f=true;for(c=0,d=e.length;c=0){if(s[n]==j){l=-1}else{u=J8c(Z8c(K8c(s[n],SLd),32),K8c(s[n-1],SLd));A=Gpd(u,j);l=d9c(A);w=d9c($8c(A,32));if(l!=0){v=false;++l;do{--l;if(v){break}q=V8c(K8c(l,SLd),K8c(t[e-2],SLd));B=J8c(Z8c(w,32),K8c(s[n-2],SLd));r=J8c(K8c(w,SLd),K8c(j,SLd));jnd(d9c(_8c(r,32)))<32?(v=true):(w=d9c(r))}while(Q8c(f9c(q,TLd),f9c(B,TLd)))}}if(l!=0){f=Rpd(s,n-e,t,e,l);if(f!=0){--l;g=0;for(o=0;o0){b=a.charCodeAt(0);if(b==45||b==43){a=a.substr(1);--f;j=b==45}}if(f==0){throw I8c(new And(MLd+l+'"'))}while(a.length>0&&a.charCodeAt(0)==48){a=a.substr(1);--f}if(f>(znd(),xnd)[10]){throw I8c(new And(MLd+l+'"'))}for(e=0;e0){n=-parseInt(a.substr(0,d),10);a=a.substr(d);f-=d;c=false}while(f>=g){d=parseInt(a.substr(0,g),10);a=a.substr(g);f-=g;if(c){c=false}else{if(L8c(n,h)<0){throw I8c(new And(MLd+l+'"'))}n=V8c(n,m)}n=a9c(n,d)}if(L8c(n,0)>0){throw I8c(new And(MLd+l+'"'))}if(!j){n=W8c(n);if(L8c(n,0)<0){throw I8c(new And(MLd+l+'"'))}}return n} -function snb(a,b,c,d,e,f){var g,h,j,l,m,n,o;this.c=b;this.a=new ltd;pnb(this,a,(kA(),eA),'clean2d','Clean',(_sb(),Krb));pnb(this,a,fA,'clean3d','Clean 3D',(atb(),Lrb));pnb(this,a,jA,'calculateStereo','Calculate stereo',(Ztb(),Isb));pnb(this,a,gA,fHd,'Add/Remove explicit H',(xtb(),gsb));pnb(this,a,dA,'automapper','Auto Map',(Ysb(),Hrb));pnb(this,a,cA,gHd,'Aromatize/dearomatize',(Wsb(),Frb));g=(this.b=new ltd,h=new txb,j=new feb,l=new Gnb(d,h,j,this.c),m=new Gib((g3(),e3),0),n=dLb(e,(C1(),m1),e3),o=new uLb(e.jl(true,e3)),Hqd(this.b,eA,new Sqb(c,m,n,false,l)),Hqd(this.b,fA,new Sqb(c,m,n,true,l)),Hqd(this.b,jA,new prb(c,l,new uLb(e.jl(false,e3)))),Hqd(this.b,gA,new lrb(c,l,o)),Hqd(this.b,dA,new irb(c,l,o)),Hqd(this.b,cA,new frb(c,m,l)),l);rnb(a,c,new upb(g),new bqb(f,c.i))} -function Cbb(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r;c=new Kbb(ieb(a.d,hEd));j=(q=new es,Wr(q,new Gbb(a)),Wr(q,new Hbb),Wr(q,new hcb),Wr(q,new Ibb),q);for(e=0;e0){Qic(b,$ad._n(b,0))}r=1;e=1;for(j=new Ljd(a.i);j.b=b.length)return {done:true};var a=b[d++];return {value:[a,c.get(a)],done:false}}}};if(!Itd()){e.prototype.createObject=function(){return {}};e.prototype.get=function(a){return this.obj[':'+a]};e.prototype.set=function(a,b){this.obj[':'+a]=b};e.prototype[QAd]=function(a){delete this.obj[':'+a]};e.prototype.keys=function(){var a=[];for(var b in this.obj){b.charCodeAt(0)==58&&a.push(b.substring(1))}return a}}return e} -function rtb(){rtb=p9c;asb=new bl('fit',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjY0IDE1YTguMjIgOC4yMiAwIDAgMS0yLjEyIDIuMTJsNC4zMyA0LjMzIDIuMTUtMi4xek0xMCAxNi41M2E3IDcgMCAxIDEgNy03IDcgNyAwIDAgMS03IDd6bTAtMTNhNiA2IDAgMSAwIDYgNiA2IDYgMCAwIDAtNi02eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEzLjczIDcuMjNsLTEuNDEtMS40MS0xLjcxIDEuNzEtLjU4IDEuNTgtLjU5LTEuNTktMS43MS0xLjctMS40MSAxLjQxIDEuNyAxLjcxIDEuNTkuNTktMS41OC41OC0xLjcxIDEuNzEgMS40MSAxLjQxIDEuNzEtMS43LjU5LTEuNTkuNTggMS41OSAxLjcxIDEuNyAxLjQxLTEuNDEtMS43MS0xLjcxLTEuNTgtLjU4IDEuNTktLjU5IDEuNy0xLjcxeiIvPjwvZz48L3N2Zz4=')))} -function etb(){etb=p9c;Prb=new bl($zd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE2LjIxIDNIMTFhMS41IDEuNSAwIDAgMC0xLjUgMS41djJoMXYtMkEuNS41IDAgMCAxIDExIDRoNC41djIuNUExLjUgMS41IDAgMCAwIDE3IDhoMi41djguNWEuNS41IDAgMCAxLS41LjVoLTIuNXYxSDE5YTEuNSAxLjUgMCAwIDAgMS41LTEuNVY3LjI5ek0xNyA3YS41LjUgMCAwIDEtLjUtLjVWNC43MUwxOC43OSA3eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUuNSA3YTIgMiAwIDAgMC0yIDJ2MTBhMiAyIDAgMCAwIDIgMmg4YTIgMiAwIDAgMCAyLTJ2LTcuNDFMMTAuOTEgN3ptOCAxMmgtOFY5aDR2Mi41QTEuNSAxLjUgMCAwIDAgMTEgMTNoMi41ek0xMSAxMmEuNS41IDAgMCAxLS41LS41VjkuNDFMMTMuMDkgMTJ6Ii8+PC9nPjwvc3ZnPg==')))} -function Ltc(a,b){var c,d,e,f,g,h,j;a.e==0&&a.q>0&&(a.q=-(a.q-1));a.q>EId&&Gtc(b,a.q-KKd);g=b.r.getDate();Atc(b,1);a.n>=0&&Dtc(b,a.n);if(a.c>=0){Atc(b,a.c)}else if(a.n>=0){j=new Itc(b.r.getFullYear()-KKd,b.r.getMonth(),35);d=35-j.r.getDate();Atc(b,$wnd.Math.min(d,g))}else{Atc(b,g)}a.f<0&&(a.f=b.r.getHours());a.b>0&&a.f<12&&(a.f+=12);Btc(b,a.f==24&&a.i?0:a.f);a.k>=0&&Ctc(b,a.k);a.o>=0&&Etc(b,a.o);a.j>=0&&Ftc(b,J8c(V8c(N8c(P8c(b.r.getTime()),hAd),hAd),a.j));if(a.a){e=new Htc;Gtc(e,e.r.getFullYear()-KKd-80);S8c(P8c(b.r.getTime()),P8c(e.r.getTime()))&&Gtc(b,e.r.getFullYear()-KKd+100)}if(a.d>=0){if(a.c==-1){c=(7+a.d-b.r.getDay())%7;c>3&&(c-=7);h=b.r.getMonth();Atc(b,b.r.getDate()+c);b.r.getMonth()!=h&&Atc(b,b.r.getDate()+(c>0?-7:7))}else{if(b.r.getDay()!=a.d){return false}}}if(a.p>EId){f=b.r.getTimezoneOffset();Ftc(b,J8c(P8c(b.r.getTime()),(a.p-f)*60*hAd))}return true} -function Mpd(a,b){var c,d,e,f,g,h,j,l,m,n,o;f=$wnd.Math.max(a.d,b.d);m=suc(uvc,jyd,23,f+1,15,1);o=suc(uvc,jyd,23,f+1,15,1);Eod(b.a,0,m,0,b.d);Eod(a.a,0,o,0,a.d);l=new gpd(b.e,b.d,m);n=new gpd(a.e,a.d,o);h=new gpd(0,1,suc(uvc,jyd,23,f+1,15,1));j=new gpd(1,1,suc(uvc,jyd,23,f+1,15,1));j.a[0]=1;c=0;d=0;g=qpd(b);while(!Lpd(l,c)&&!Lpd(n,d)){e=Jpd(l,g);if(e!=0){rpd(l,e);if(c>=d){rpd(h,e)}else{spd(j,$wnd.Math.min(d-c,e));e-(d-c)>0&&rpd(h,e-d+c)}c+=e}e=Jpd(n,g);if(e!=0){rpd(n,e);if(d>=c){rpd(j,e)}else{spd(h,$wnd.Math.min(c-d,e));e-(c-d)>0&&rpd(j,e-c+d)}d+=e}if(l.e==n.e){if(c<=d){aqd(l,n);aqd(h,j)}else{aqd(n,l);aqd(j,h)}}else{if(c<=d){_pd(l,n);_pd(h,j)}else{_pd(n,l);_pd(j,h)}}if(n.e==0||l.e==0){throw I8c(new jmd(QLd))}}if(Lpd(n,d)){h=j;n.e!=l.e&&(l=l.e==0?l:new gpd(-l.e,l.d,l.a))}epd(l,g)&&(h.e<0?(h=h.e==0?h:new gpd(-h.e,h.d,h.a)):(h=fqd(b,h)));h.e<0&&(h=Xpd(h,b));return h} -function PS(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w;m=b.b;if(!c||!m){return}ix(b,jT(a,c));for(f=new iud(new gud(a.d));f.b!=f.c.a.b;){d=hud(f);if(ZU(d.e,c)){Jy(m,d.d);return}}for(o=new iud(new gud(a.k));o.b!=o.c.a.b;){n=hud(o);if(HY(n.e,c)){rx(m,n.d);return}}for(h=new iud(new gud(a.e));h.b!=h.c.a.b;){g=hud(h);if(HY(g.e,c)){Ky(m,g.d);return}}for(u=new Vqd((new Sqd(a.p)).a);u.b;){t=Uqd(u);if(QZ(t.Ok(),c)){Py(m,t.yp());return}}QS(m,c,a.r);QS(m,c,a.j);for(l=new Vqd((new Sqd(a.i)).a);l.b;){j=Uqd(l);if(j.Ok().dg(c)){Ly(m,j.yp());return}}for(e=new Vqd((new Sqd(a.u)).a);e.b;){d=Uqd(e);if(d.Ok().dg(c)){Iy(m,d.yp());return}}for(s=new Vqd((new Sqd(a.o)).a);s.b;){q=Uqd(s);if(q.Ok().dg(c)){Oy(m,q.yp());return}}for(w=new Vqd((new Sqd(a.v)).a);w.b;){v=Uqd(w);if(v.Ok().dg(c)){My(m,v.yp());return}}for(r=new Vqd((new Sqd(a.q)).a);r.b;){q=Uqd(r);if(q.Ok().dg(c)){Qy(m,q.yp());return}}} -function ltb(){ltb=p9c;Wrb=new bl(kGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTMgOWgxbC0yIDZoLTF6bTIuNDQgMGgxbDIuNDcgNmgtMS4zOEwxNyAxMy43M2gtMi4yTDE0LjM3IDE1SDEzem0uNDggMS43NWwtLjY5IDEuODZoMS4zOXpNNiA5aDEuODRhNC43MyA0LjczIDAgMCAxIDEuMjYuMTYgMi43NSAyLjc1IDAgMCAxIDEgLjUyIDIuNDIgMi40MiAwIDAgMSAuNzEuOTQgMy4yNyAzLjI3IDAgMCAxIC4yNiAxLjQgMyAzIDAgMCAxLS4yNSAxLjI4IDIuOCAyLjggMCAwIDEtLjY4LjkzIDMgMyAwIDAgMS0xIC41OEEzLjU2IDMuNTYgMCAwIDEgOCAxNUg2em0xLjIzIDQuNzhoLjYzYTMuMzUgMy4zNSAwIDAgMCAuNzktLjA5IDEuODYgMS44NiAwIDAgMCAuNjMtLjMxIDEuNjEgMS42MSAwIDAgMCAuNDEtLjU3IDIgMiAwIDAgMCAuMTYtLjgxIDEuNzEgMS43MSAwIDAgMC0uMTYtLjc3IDEuNjggMS42OCAwIDAgMC0uNDEtLjU0IDEuNzEgMS43MSAwIDAgMC0uNi0uMzEgMi42IDIuNiAwIDAgMC0uNzQtLjExaC0uNzF6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} -function Ey(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B;e=new std;j=new std;r=new std;q=new std;A=new sud;mud(A,a,A.c.b,A.c);e.a.pp(a,e);while(A.b>0){w=A.b==0?null:qud(A,A.a.a);for(h=w.Ml().Qb();h.Rc();){g=h.Sc();j.a.pp(g,j);u=E2b(g,w);if(!e.a.lp(u)){e.a.pp(u,e);mud(A,u,A.c.b,A.c)}for(d=new qsd(dsd(g.a).b.Qb());d.b.Rc();){b=d.b.Sc();q.a.pp(b,q);for(t=new Frd(lXb(b));t.a0){if(g+d>a.length){return false}h=xrc(a.substr(0,g+d),b)}else{h=xrc(a,b)}}switch(f){case 71:h=urc(a,g,vuc(quc(g6c,1),eyd,2,6,[LKd,MKd]),b);e.e=h;return true;case 77:return Frc(a,b,e,h,g);case 76:return Frc(a,b,e,h,g);case 69:return Drc(a,b,g,e);case 99:return Drc(a,b,g,e);case 97:h=urc(a,g,vuc(quc(g6c,1),eyd,2,6,['AM','PM']),b);e.b=h;return true;case 121:return Jrc(a,b,g,h,c,e);case 100:if(h<=0){return false}e.c=h;return true;case 83:if(h<0){return false}return Erc(h,g,b[0],e);case 104:h==12&&(h=0);case 75:case 72:if(h<0){return false}e.f=h;e.i=false;return true;case 107:if(h<0){return false}e.f=h;e.i=true;return true;case 109:if(h<0){return false}e.k=h;return true;case 115:if(h<0){return false}e.o=h;return true;case 90:if(gMake sure your application's host HTML page has a Standards Mode (document.compatMode=' CSS1Compat') doctype,
    e.g. by using <!doctype html> at the start of your application's HTML page.

    To continue using this unsupported rendering mode and risk layout problems, suppress this message by adding
    the following line to your*.gwt.xml module file:
      <extend-configuration-property name=\"document.compatMode\" value=\""+b+'"/>':"Your *.gwt.xml module configuration prohibits the use of the current document rendering mode (document.compatMode=' "+b+"').
    Modify your application's host HTML page doctype, or update your custom "+"'document.compatMode' configuration property settings."} -function qkb(a,b,c,d,e,f,g,h){this.a=new mub;this.f=a;this.b=b;this.d=c;this.j=e;this.c=f;this.i=g;akb(this);this.e=new vQb(new kwb(this.f,d,this.b,this.a,this.j,this.i,h));nkb(this,'about',jkb(new OQb(new EQb(this.e.a)),AGd,(Tsb(),Crb)));nkb(this,BGd,mkb(new OQb(new AQb(this.e.a)),(Ftb(),osb)));nkb(this,'save',kkb(new OQb(new BQb(this.e.a)),(Otb(),xsb)));nkb(this,'settings',jkb(new OQb(new DQb(this.e.a)),CGd,(Qtb(),zsb)));nkb(this,DGd,jkb(new OQb(new vt(new CQb(this.e.a))),EGd,(Htb(),qsb)));nkb(this,FGd,new zqb(this.f,new OQb(new wQb(this.e.a)),this.d));nkb(this,GGd,new Bqb(this.f,new OQb(new IQb(this.e.a)),this.d));nkb(this,'customRGroupAtom',new $ob(new MQb(new jEb(this.f))));nkb(this,HGd,hkb(new OQb(new FQb(this.e.a))));nkb(this,IGd,new Aqb(this.f,this.d));nkb(this,JGd,lkb(new OQb(new yQb(this.e.a)),KGd,null,(Xsb(),Grb),(nk(),qk((Cnd(),String.fromCharCode(46)),false))));nkb(this,LGd,jkb(new OQb(new xQb(this.e.a)),MGd,(Ktb(),tsb)));_jb(this);ekb(this)} -function mxb(a){var b,c,d,e,f,g,h,j,l,m,n;zm(a.a,'Copy/Paste');c=new ped;(abd(),c.U).innerHTML='This action is unavailable via toolbars or menus,
    but you can still use:';c.U.style[KHd]=(Knc(),LHd);f=new Fg;Eg(f,c);f.U.style[CAd]=(tnc(),'5.0px');f.U.style['marginBottom']='5.0px';b=new ped;d=new ped;l=new ped;jjc(b.U,MHd+(Ds().length==0||'C'.length==0?'':''+Ds()+'+'+'C'+'')+NHd);jjc(d.U,MHd+(Ds().length==0||'X'.length==0?'':''+Ds()+'+'+'X'+'')+NHd);jjc(l.U,MHd+(Ds().length==0||'V'.length==0?'':''+Ds()+'+'+'V'+'')+NHd);g=new red('\xA0for Copy');h=new red('\xA0for Cut');j=new red('\xA0for Paste');n=new ped;n.U.innerHTML="You can also copy the molecule source from Export Dialog
    or paste one into Import Dialog.<\/font>";n.U.style[KHd]=LHd;e=new Fg;Eg(e,n);e.U.style[CAd]='10.0px';m=new Ifd;Ofd(m.d,0,3);Ffd(m,0,0,f);Ffd(m,1,0,b);Ffd(m,1,1,d);Ffd(m,1,2,l);Ffd(m,2,0,g);Ffd(m,2,1,h);Ffd(m,2,2,j);Ofd(m.d,3,3);Ffd(m,3,0,e);m.U.style[PFd]='#444';Cg(a.a,m)} -function dtc(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r,s;f=-1;g=0;s=0;h=0;l=-1;m=b.length;q=c;n=true;for(;q0?++h:++g;l>=0&&f<0&&++l;break;case 48:if(h>0){throw I8c(new bnd("Unexpected '0' in pattern \""+b+'"'))}++s;l>=0&&f<0&&++l;break;case 44:l=0;break;case 46:if(f>=0){throw I8c(new bnd('Multiple decimal separators in pattern "'+b+'"'))}f=g+s+h;break;case 69:if(!d){if(a.w){throw I8c(new bnd('Multiple exponential symbols in pattern "'+b+'"'))}a.w=true;a.n=0}while(q+10&&f>=0){o=f;f==0&&++o;h=g-o;g=o-1;s=1}if(f<0&&h>0||f>=0&&(fg+s)||l==0){throw I8c(new bnd('Malformed pattern "'+b+'"'))}if(d){return q-c}r=g+s+h;a.j=f>=0?r-f:0;if(f>=0){a.o=g+s-f;a.o<0&&(a.o=0)}j=f>=0?f:r;a.p=j-g;if(a.w){a.k=g+a.p;a.j==0&&a.p==0&&(a.p=1)}a.f=l>0?l:0;a.c=f==0||f==r;return q-c} -function Ytb(){Ytb=p9c;Hsb=new bl(vGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTMgNWgydjFoLTJ6TTUgOWgxdjJINXptMCA0aDF2Mkg1em00LThoMnYxSDl6TTYgN1Y2aDFWNUg1djJoMXptMiAxMWgydjFIOHptLTEgMEg2di0xSDV2Mmgydi0xek0xNyA2aDF2MWgxVjVoLTJ2MXptLTUgMmg0YTQuMzQgNC4zNCAwIDAgMSAxLjc4LjMxIDMuMDYgMy4wNiAwIDAgMSAxLjExLjggMi43NiAyLjc2IDAgMCAxIC41NiAxLjA5IDQuMzIgNC4zMiAwIDAgMSAuMTYgMS4xNiAzLjI0IDMuMjQgMCAwIDEtLjE5IDEuMTFBMy4yIDMuMiAwIDAgMSAxOCAxNC4xNmEzIDMgMCAwIDEtMS4xNi4zN0wyMCAyMGgtMS45MWwtMi44Ni01LjI5aC0xLjdWMjBIMTJ6bTEuNTMgNS4yOWgyYTUuMTQgNS4xNCAwIDAgMCAuODgtLjA4IDIuMiAyLjIgMCAwIDAgLjc4LS4yOCAxLjQ3IDEuNDcgMCAwIDAgLjU1LS41OCAyLjA3IDIuMDcgMCAwIDAgLjIxLTEgMi4wOSAyLjA5IDAgMCAwLS4yMS0xIDEuNTQgMS41NCAwIDAgMC0uNTUtLjU4IDIuMiAyLjIgMCAwIDAtLjc4LS4yOCA1LjE0IDUuMTQgMCAwIDAtLjg4LS4wOGgtMnoiIGZpbGw9IiM1MDUwNTAiLz48L3N2Zz4=')))} -function Utb(){Utb=p9c;Dsb=new bl(iGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcuMiAxOC4yMkw1Ljc4IDE2LjhsMy41NC0zLjUzIDEuNDEgMS40MXpNMTEuNDQgMTRMMTAgMTIuNTYgMTMuNTYgOSAxNSAxMC40NHptNC4yNC00LjI0bC0xLjQxLTEuNDQgMy41My0zLjU0IDEuNDIgMS40MnoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMy4yNjIgMTUuNzQ3KSIgZD0iTTEwLjc2IDE0Ljc0aDV2MmgtNXoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxNy40OTUgMTEuNTAzKSIgZD0iTTE1IDEwLjVoNXYyaC01eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDcuNzU4IDExLjI0NikiIGQ9Ik01LjI2IDEwLjI0aDV2MmgtNXoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMi4wMDMgNy4wMDgpIiBkPSJNOS41IDZoNXYyaC01eiIvPjwvZz48L3N2Zz4=')))} -function i0(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I;A=a.i;for(f=new qsd(dsd(c.r).b.Qb());f.b.Rc();){d=f.b.Sc();S$((m=jw(a,d.Lh()),V$(A.b,m)),b)}for(l=new qsd(dsd(c.s).b.Qb());l.b.Rc();){j=l.b.Sc();N$((B=jw(a,j.c.Lh()),C=jw(a,j.d.Lh()),Q$(A.a,B,C)),b)}for(s=new qsd(dsd(c.u).b.Qb());s.b.Rc();){r=s.b.Sc();N$((D=jw(a,(F=mUb(r.a),F.a)),G=jw(a,r.b.Lh()),Q$(A.a,D,G)),b)}for(h=new qsd(dsd(c.A).b.Qb());h.b.Rc();){g=h.b.Sc();FS((H=jw(a,(!g.d&&P3b(g),kH(g.a.Lh(),g.d))),I=jw(a,g.a.Lh()),new HS(vuc(quc(nFc,1),nBd,106,0,[V$(A.b,H),Q$(A.a,I,H)]))),b)}for(o=new qsd(dsd(c.t).b.Qb());o.b.Rc();){n=o.b.Sc();(q=bT(a.j,n),!q||q.sd()?(a_(),_$):g0(q)).qh(b)}for(e=new qsd(dsd(c.q).b.Qb());e.b.Rc();){d=e.b.Sc();(q=iT(a.j,d),!q||q.sd()?(a_(),_$):g0(q)).qh(b)}for(v=new qsd(dsd(c.w).b.Qb());v.b.Rc();){t=v.b.Sc();S$(new T$(jw(a,t.a),10,(QQ(),PQ)),b)}for(w=new qsd(dsd(c.C).b.Qb());w.b.Rc();){t=w.b.Sc();F$(e0(dT(a.j,t).gh()),b)}for(u=new qsd(dsd(c.B).b.Qb());u.b.Rc();){t=u.b.Sc();FS(f0(a,t),b)}} -function RS(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C;h=new By;if(!c||!b){return}for(e=new iud(new gud(a.d));e.b!=e.c.a.b;){d=hud(e);c.dg(d.e.Lh())&&mx(h,d.d)}for(g=new iud(new gud(a.e));g.b!=g.c.a.b;){f=hud(g);c.dg(f.e.Lh())&&nx(h,f.d)}for(q=(r=(new ard(a.k)).a.mp().Qb(),new brd(r));q.a.Rc();){o=(n=q.a.Sc(),n.yp());c.dg(a.f.ce((s=mUb(o.a),s.a)))&&rx(h,o)}for(A=new Vqd((new Sqd(a.p)).a);A.b;){w=Uqd(A);c.dg(w.Ok().Lh())&&tx(h,w.yp())}for(m=new Vqd((new Sqd(a.i)).a);m.b;){j=Uqd(m);c.dg(j.Ok().Jh())&&ox(h,j.yp())}for(l=new Vqd((new Sqd(a.u)).a);l.b;){j=Uqd(l);c.dg(j.Ok().Jh())&&lx(h,j.yp())}for(u=new Vqd((new Sqd(a.o)).a);u.b;){s=Uqd(u);c.dg(s.Ok().Jh())&&sx(h,s.yp())}for(C=new Vqd((new Sqd(a.v)).a);C.b;){B=Uqd(C);c.dg(B.Ok().Jh())&&px(h,B.yp())}for(t=new Vqd((new Sqd(a.q)).a);t.b;){s=Uqd(t);v=s.Ok().gh();kvc(c,237)&&c.dg(kH(v.b,new qad(v.c*0.5,0)))?ux(h,s.yp()):c.dg(v.b)&&c.dg(kH(v.b,new qad(0,v.a)))&&c.dg(kH(v.b,new qad(v.c,0)))&&c.dg(kH(v.b,new qad(v.c,v.a)))&&ux(h,s.yp())}b.cf(h)} -function Uhc(){var a=['\\u0000','\\u0001','\\u0002','\\u0003','\\u0004','\\u0005','\\u0006','\\u0007','\\b','\\t','\\n','\\u000B','\\f','\\r','\\u000E','\\u000F','\\u0010','\\u0011','\\u0012','\\u0013','\\u0014','\\u0015','\\u0016','\\u0017','\\u0018','\\u0019','\\u001A','\\u001B','\\u001C','\\u001D','\\u001E','\\u001F'];a[34]='\\"';a[92]='\\\\';a[173]='\\u00ad';a[1536]='\\u0600';a[1537]='\\u0601';a[1538]='\\u0602';a[1539]='\\u0603';a[1757]='\\u06dd';a[1807]='\\u070f';a[6068]='\\u17b4';a[6069]='\\u17b5';a[8203]='\\u200b';a[8204]='\\u200c';a[8205]='\\u200d';a[8206]='\\u200e';a[8207]='\\u200f';a[8232]='\\u2028';a[8233]='\\u2029';a[8234]='\\u202a';a[8235]='\\u202b';a[8236]='\\u202c';a[8237]='\\u202d';a[8238]='\\u202e';a[8288]='\\u2060';a[8289]='\\u2061';a[8290]='\\u2062';a[8291]='\\u2063';a[8292]='\\u2064';a[8298]='\\u206a';a[8299]='\\u206b';a[8300]='\\u206c';a[8301]='\\u206d';a[8302]='\\u206e';a[8303]='\\u206f';a[65279]='\\ufeff';a[65529]='\\ufff9';a[65530]='\\ufffa';a[65531]='\\ufffb';return a} -function tV(a,b,c,d,e){var f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J,K,L,M;if(!(U(d)==sXc&&d.Gl()==null)){return g=new LV,h=JV(g,DV(b,a,d)),j=IV(g,yV(b,bUb(d.Yl()),true)),l=CV(b,a,d,d.Gl()==null||Hnd('*',d.Zl()),g,c.i),m=zV(b,a,d,true,g,c.q),n=uV(a,d,rV(h),(Iac(),Fac),c.t),MV(n,j,l,m),EV(KV(g),(o=a.ce(d.Lh()),GV(o,1,a.Yd())),mW(n.b.a),e,true)}f=hV(d,c.s,c.u,c.n);return f?(q=new LV,r=IV(q,wV(b,d.Zl(),a.ce(d.Lh()))),s=IV(q,(t=d.Zl(),BV(b,new jX((HU(),BU),false),d.Tl()>0&&Hnd(k1b(d.Hl()),t)?''+d.Tl():null))),u=GW(new IW(a,new RW(c.n,c.s)),d),v=YV(b,c,d,u,q),w=IV(q,yV(b,bUb(d.Yl()),true)),A=CV(b,a,d,d.Gl()==null,q,c.i),B=zV(b,a,d,true,q,c.q),C=uV(a,d,new ibc(new qad(r.f,r.i),r.e,r.d),u,c.t),PV(C,s),OV(C,v),MV(C,w,A,B),EV(KV(q),(D=a.ce(d.Lh()),GV(D,1,a.Yd())),mW(C.b.a),e,false)):(F=new LV,G=IV(F,yV(b,bUb(d.Yl()),false)),H=CV(b,a,d,d.Gl()==null,F,c.i),I=zV(b,a,d,false,F,c.q),J=(K=a.ce(d.Lh()),GV(K,3,a.Yd())),L=uV(a,d,J,(Iac(),Fac),c.t),MV(L,G,H,I),FV(KV(F),J,(M=a.ce(d.Lh()),GV(M,1,a.Yd())),mW(L.b.a),e))} -function Ndb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C;l=new Gdb;for(e=new qsd(dsd(a.n).b.Qb());e.b.Rc();){c=e.b.Sc();Ex(b,c)&&(hs(l.n,c)!=-1||Wr(l.n,c))}for(u=new qsd(dsd(a.s).b.Qb());u.b.Rc();){t=u.b.Sc();Ex(b,t)&&rdb(l,t)}for(j=new qsd(dsd(a.p).b.Qb());j.b.Rc();){h=j.b.Sc();Ex(b,h)&&(hs(l.p,h)!=-1||Wr(l.p,h))}for(g=new qsd(dsd(a.o).b.Qb());g.b.Rc();){f=g.b.Sc();Ex(b,f)&&(hs(l.o,f)!=-1||Wr(l.o,f))}for(n=new qsd(dsd(a.q).b.Qb());n.b.Rc();){m=n.b.Sc();Ex(b,m)&&Ex(b,m.c.Bm())&&Ex(b,iXb(m))&&(hs(l.q,m)!=-1||Wr(l.q,m))}for(d=new qsd(dsd(a.k).b.Qb());d.b.Rc();){c=d.b.Sc();Ex(b,c)&&mdb(l,c)}for(A=new qsd(dsd(a.t).b.Qb());A.b.Rc();){v=A.b.Sc();Ex(b,v)&&tdb(l,v)}for(C=new qsd(dsd(a.A).b.Qb());C.b.Rc();){B=C.b.Sc();Ex(b,B)&&tx(l,B)}for(w=new qsd(dsd(a.u).b.Qb());w.b.Rc();){v=w.b.Sc();Ex(b,v)&&rx(l,v)}for(r=new qsd(dsd(a.w).b.Qb());r.b.Rc();){o=r.b.Sc();Ldb(o,dsd(l.n),l.w)}for(s=new qsd(dsd(a.v).b.Qb());s.b.Rc();){o=s.b.Sc();Ldb(o,dsd(l.n),l.v)}for(q=new qsd(dsd(a.r).b.Qb());q.b.Rc();){o=q.b.Sc();Ldb(o,dsd(l.n),l.r)}return l} -function v7(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F;c=false;if(Hnd(b.substr(0,4),'M S')||S5((R5(),E5),b)||S5((R5(),D5),b)){S5((R5(),Q5),b)?D7(a,b):a.a.a.length==0||(S5(P5,b)?C7(a,b):S5(O5,b)?(d=O5,e=Ynd(b,d.a.length+1),f=(h5(),g=bod(e.substr(0,3)),g.length==0?0:Xmd(g,10)),e=e.substr(4),h=Yr(a.a,f-1),!!h&&(h.j=e),undefined):S5(F5,b)?w7(a,b):S5(G5,b)?x7(a,b):S5(H5,b)?y7(a,b):S5(L5,b)?B7(a,b):S5(M5,b)?(j=(h5(),l=bod(b.substr(7,3)),l.length==0?0:Xmd(l,10)),m=Yr(a.a,j-1),!!m&&s5(m,new e5(b)),undefined):S5(N5,b)?(n=(h5(),o=bod(b.substr(7,3)),o.length==0?0:Xmd(o,10)),q=Yr(a.a,n-1),!!q&&a5((!q.d&&(q.d=new b5),q.d),b),undefined):S5(I5,b)?(r=(h5(),s=bod(b.substr(7,3)),s.length==0?0:Xmd(s,10)),t=Yr(a.a,r-1),!!t&&a5((!t.d&&(t.d=new b5),t.d),b),undefined):S5(K5,b)?(u=(h5(),v=bod(b.substr(7,3)),v.length==0?0:Xmd(v,10)),w=Yr(a.a,u-1),!!w&&new c5(b),undefined):S5(J5,b)?z7(a,b):S5(D5,b)&&(A=D5,B=Ynd(b,A.a.length+1),C=(h5(),D=bod(B.substr(0,3)),D.length==0?0:Xmd(D,10)),B=B.substr(4),F=Yr(a.a,C-1),!!F&&(F.k=B),undefined));c=true}return c} -function Bdb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C;j=new Gdb;for(e=new qsd(dsd(b.r).b.Qb());e.b.Rc();){c=e.b.Sc();hs(a.n,c)!=-1&&(hs(j.n,c)!=-1||Wr(j.n,c))}for(h=new qsd(dsd(b.s).b.Qb());h.b.Rc();){f=h.b.Sc();hs(a.p,f)!=-1&&(hs(j.p,f)!=-1||Wr(j.p,f))}for(r=new qsd(dsd(b.u).b.Qb());r.b.Rc();){q=r.b.Sc();hs(a.s,q)!=-1&&rdb(j,q)}for(g=b.Re().Qb();g.Rc();){f=g.Sc();hs(a.o,f)!=-1&&(hs(j.o,f)!=-1||Wr(j.o,f));hs(a.n,f.a)!=-1&&ndb(j,f.a)}for(m=b.Oe().Qb();m.Rc();){l=m.Sc();hs(a.q,l)!=-1&&(hs(a.n,l.c.Bm())!=-1||hs(a.p,l.c.Bm())!=-1)&&(hs(a.n,iXb(l))!=-1||hs(a.p,iXb(l))!=-1)&&(hs(j.q,l)!=-1||Wr(j.q,l))}for(d=b.Le().Qb();d.Rc();){c=d.Sc();hs(a.k,c)!=-1&&mdb(j,c)}for(u=b.Qe().Qb();u.Rc();){s=u.Sc();hs(a.t,s)!=-1&&tdb(j,s)}for(v=b.Te().Qb();v.Rc();){s=v.Sc();hs(a.A,s)!=-1&&tx(j,s)}for(t=b.Se().Qb();t.Rc();){s=t.Sc();hs(a.u,s)!=-1&&rx(j,s)}for(C=new qsd(dsd(a.w).b.Qb());C.b.Rc();){B=C.b.Sc();Mdb(j,B,j.w)}for(A=new qsd(dsd(a.v).b.Qb());A.b.Rc();){w=A.b.Sc();Mdb(j,w,j.v)}for(o=new qsd(dsd(a.r).b.Qb());o.b.Rc();){n=o.b.Sc();Mdb(j,n,j.r)}return j} -function ftb(){ftb=p9c;Qrb=new bl(Zzd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTkuNTYgMTEuNjJMMTEuMTkgMTAgNSAzLjc1Yy0uMiAxLjUuODIgNC4wOCAyLjQ1IDUuNzF6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTkuNzggMTYuNDFhMy42MiAzLjYyIDAgMCAwLTQtMS43N2wtMi4yLTIuMjEgMy0zYzEuNjMtMS42MyAyLjY1LTQuMjEgMi40NS01LjcxTDguMTYgMTQuNjRhMy42MiAzLjYyIDAgMCAwLTMuOTQgMS43N2MtLjcgMS40OS0uMzIgMyAuODcgMy41OSAxIC40NSAyLjg2LjY3IDQuNTYtM2wuNTQtMS4xN0wxMiAxNC4wNmwxLjgxIDEuODEuNTQgMS4xM2MxLjcgMy42MyAzLjU5IDMuNDEgNC41NiAzIDEuMTktLjU2IDEuNTctMi4xLjg3LTMuNTl6bS0xMS4xOC4xNGMtMSAyLjA4LTIgMi44OS0zIDIuNC0uNjctLjMxLS42Ni0xLjI5LS4zMS0yLjA1YTIuNjIgMi42MiAwIDAgMSAzLjU1LS45ek0xOC40MyAxOWMtMSAuNDktMi4wNi0uMzItMy0yLjRsLS4yNy0uNmEyLjYyIDIuNjIgMCAwIDEgMy41OC44NmMuMzUuOC4zNiAxLjc4LS4zMSAyLjE0eiIvPjwvZz48L3N2Zz4=')))} -function sM(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t;for(f=new qsd(dsd(b.r).b.Qb());f.b.Rc();){e=f.b.Sc();Ex(Lu(a.a.o.i).b,e)?Ty(Lu(a.a.o.i).b,e):Jy(Lu(a.a.o.i).b,e)}for(h=new qsd(dsd(b.s).b.Qb());h.b.Rc();){g=h.b.Sc();Ex(Lu(a.a.o.i).b,g)?qy(Lu(a.a.o.i).b,g):Ky(Lu(a.a.o.i).b,g)}for(o=new qsd(dsd(b.u).b.Qb());o.b.Rc();){m=o.b.Sc();Ex(Lu(a.a.o.i).b,m)?ry(Lu(a.a.o.i).b,m):rx(Lu(a.a.o.i).b,m)}for(t=new qsd(dsd(b.A).b.Qb());t.b.Rc();){s=t.b.Sc();Ex(Lu(a.a.o.i).b,s)?sy(Lu(a.a.o.i).b,s):Py(Lu(a.a.o.i).b,s)}for(l=new qsd(dsd(b.t).b.Qb());l.b.Rc();){j=l.b.Sc();Ex(Lu(a.a.o.i).b,j)?Vy(Lu(a.a.o.i).b,j):Ly(Lu(a.a.o.i).b,j)}for(d=new qsd(dsd(b.q).b.Qb());d.b.Rc();){c=d.b.Sc();Ex(Lu(a.a.o.i).b,c)?Sy(Lu(a.a.o.i).b,c):Iy(Lu(a.a.o.i).b,c)}for(q=new qsd(dsd(b.w).b.Qb());q.b.Rc();){m=q.b.Sc();Ex(Lu(a.a.o.i).b,m)?Yy(Lu(a.a.o.i).b,m):Oy(Lu(a.a.o.i).b,m)}for(r=new qsd(dsd(b.C).b.Qb());r.b.Rc();){m=r.b.Sc();Ex(Lu(a.a.o.i).b,m)?Wy(Lu(a.a.o.i).b,m):My(Lu(a.a.o.i).b,m)}for(n=new qsd(dsd(b.B).b.Qb());n.b.Rc();){m=n.b.Sc();Ex(Lu(a.a.o.i).b,m)?Zy(Lu(a.a.o.i).b,m):Qy(Lu(a.a.o.i).b,m)}} -function Kcd(a,b){var c=(a.__eventBits||0)^b;a.__eventBits=b;if(!c)return;c&1&&(a.onclick=b&1?Gcd:null);c&2&&(a.ondblclick=b&2?Gcd:null);c&4&&(a.onmousedown=b&4?Gcd:null);c&8&&(a.onmouseup=b&8?Gcd:null);c&16&&(a.onmouseover=b&16?Gcd:null);c&32&&(a.onmouseout=b&32?Gcd:null);c&64&&(a.onmousemove=b&64?Gcd:null);c&128&&(a.onkeydown=b&128?Gcd:null);c&256&&(a.onkeypress=b&256?Gcd:null);c&512&&(a.onkeyup=b&512?Gcd:null);c&1024&&(a.onchange=b&1024?Gcd:null);c&wzd&&(a.onfocus=b&wzd?Gcd:null);c&4096&&(a.onblur=b&4096?Gcd:null);c&8192&&(a.onlosecapture=b&8192?Gcd:null);c&16384&&(a.onscroll=b&16384?Gcd:null);c&32768&&(a.onload=b&32768?Hcd:null);c&gyd&&(a.onerror=b&gyd?Gcd:null);c&eLd&&(a.onmousewheel=b&eLd?Gcd:null);c&262144&&(a.oncontextmenu=b&262144?Gcd:null);c&ZKd&&(a.onpaste=b&ZKd?Gcd:null);c&uzd&&(a.ontouchstart=b&uzd?Gcd:null);c&fLd&&(a.ontouchmove=b&fLd?Gcd:null);c&vzd&&(a.ontouchend=b&vzd?Gcd:null);c&8388608&&(a.ontouchcancel=b&8388608?Gcd:null);c&gLd&&(a.ongesturestart=b&gLd?Gcd:null);c&hLd&&(a.ongesturechange=b&hLd?Gcd:null);c&iLd&&(a.ongestureend=b&iLd?Gcd:null)} -function dtb(){dtb=p9c;Orb=new bl(mGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTE4IDIwSDUuNDZhLjQ5LjQ5IDAgMCAxLS40MS0uMjJsLTMtNC40N2EuNDcuNDcgMCAwIDEtLjA1LS40My41MS41MSAwIDAgMSAuMjktLjMyTDguNjIgMTIgOSAxM2wtNS43NSAyLjNMNS43MyAxOWgxMmwyLjg0LTMuOEwxNSAxM2wuMzctLjkyIDYuMTkgMi40N2EuNS41IDAgMCAxIC4yMS43NkwxOC40IDE5LjhhLjQ4LjQ4IDAgMCAxLS40LjJ6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNOS44MSAxMmg0LjM4djFIOS44MXptMC0yaDQuMzh2MUg5Ljgxem0wLTJoNC4zOHYxSDkuODF6bTAtMmg0LjM4djFIOS44MXpNMTcgMThINi41NGEuNS41IDAgMCAxLS40Mi0uMjJsLTEtMS41M2EuNS41IDAgMCAxLS4xMi0uNDMuNDcuNDcgMCAwIDEgLjI5LS4zMUw5IDE0YS4zOS4zOSAwIDAgMSAuMTggMGg1LjYyYS4zOS4zOSAwIDAgMSAuMiAwbDMuNDIgMS4zNmEuNS41IDAgMCAxIC4yMS43NkwxNy40IDE3LjhhLjQ4LjQ4IDAgMCAxLS40LjJ6TTYuOCAxN2gxMGwuNjgtLjkxTDE0LjcxIDE1SDkuMjlsLTMgMS4yMXoiLz48L2c+PC9zdmc+')))} -function _z(b){var c,d,e,f,g,h,j,l,m,n,o,q,r;q=new bA;try{Px(b)&&aA(q,null);for(g=new Frd(Ix(b));g.a2){l=null;for(A=(u=(new ard(m.a)).a.mp().Qb(),new brd(u));A.a.Rc();){w=(n=A.a.Sc(),n.yp());if(rsd(dsd(w.r),e)){l=w;Q1(w,q5(B));Hqd(v,w,mnd(B.n));break}}if(l){continue}l=_1(e);Q1(l,q5(B));Hqd(t,mnd(B.i),l);Hqd(v,l,mnd(B.n));FVb(a,l);m.a.pp(l,m)}else if(e.a.length==1){j=r5(B);j?e.a[0].jm(j.a):e.a[0].Hi(q5(B))}else if(e.a.length==2){o=new b2(e,q5(B));dsd(o.s).b.vd()==1&&(new qsd(dsd(o.s).b.Qb())).b.Sc().Hi(b1b(d1b(o.n)))}else e.a.length==0&&Wr(f,new _4(q5(B),B.n))}}U6(t,v);T6(t,f);for(C=new Frd(h);C.a0&&dsd(e.k).b.vd()==1&&Q0b(dsd(e.k).a.zd(0))&&atd(g,xvb)}atd(g,(Dvb(),svb));return g} -function bEb(a,b){var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B;d=new Bjd;En(d,(qgd(),mgd));c=new Wo;Vo(c,(vgd(),ugd));if(b){yjd(d,aEb(a,vuc(quc(uXc,1),MId,57,0,[(B3b(),m3b),n3b])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(e=new _td,f=vuc(quc(uXc,1),MId,57,0,[k3b,l3b]),Ytd(e,'',f),g=vuc(quc(uXc,1),MId,57,0,[g3b,h3b]),Ytd(e,'Aryl',g),h=vuc(quc(uXc,1),MId,57,0,[q3b,r3b]),Ytd(e,'Cycloalkyl',h),j=vuc(quc(uXc,1),MId,57,0,[o3b,p3b]),Ytd(e,'Cycloalkenyl',j),new gEb('Carb',e))])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(l=new _td,m=vuc(quc(uXc,1),MId,57,0,[w3b,x3b]),Ytd(l,'',m),n=vuc(quc(uXc,1),MId,57,0,[u3b,v3b]),Ytd(l,NId,n),new gEb(OId,l)),(o=new _td,q=vuc(quc(uXc,1),MId,57,0,[y3b,z3b]),Ytd(o,'',q),new gEb('No carbon',o))])))}else{yjd(d,aEb(a,vuc(quc(uXc,1),MId,57,0,[(B3b(),U2b),V2b])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(r=new _td,s=vuc(quc(uXc,1),MId,57,0,[i3b,j3b]),Ytd(r,'',s),t=vuc(quc(uXc,1),MId,57,0,[a3b,b3b]),Ytd(r,'Alkynyl',t),u=vuc(quc(uXc,1),MId,57,0,[$2b,_2b]),Ytd(r,'Alkyl',u),v=vuc(quc(uXc,1),MId,57,0,[W2b,X2b]),Ytd(r,'Alkenyl',v),new gEb('Carb',r))])));Qo(c,cEb(a,vuc(quc(mRc,1),lyd,234,0,[(w=new _td,A=vuc(quc(uXc,1),MId,57,0,[s3b,t3b]),Ytd(w,'',A),B=vuc(quc(uXc,1),MId,57,0,[Y2b,Z2b]),Ytd(w,'Alkoxy',B),new gEb(OId,w))])))}yjd(d,c);return d} -function jMb(){jMb=p9c;aMb=new kMb('IO',0,vuc(quc(g6c,1),eyd,2,6,[BGd,'save']));_Lb=new kMb('HISTORY',1,vuc(quc(g6c,1),eyd,2,6,[rGd,sGd]));VLb=new kMb('CLIPBOARD',2,vuc(quc(g6c,1),eyd,2,6,[Zzd,$zd,Yzd]));iMb=new kMb('ZOOM',3,vuc(quc(g6c,1),eyd,2,6,[UFd,VFd,'zoomToFit',FFd]));hMb=new kMb('THREE_D',4,vuc(quc(g6c,1),eyd,2,6,['clean3d',zHd]));fMb=new kMb('SELECT',5,vuc(quc(g6c,1),eyd,2,6,[jJd,kJd]));TLb=new kMb('BASIC_BONDS',6,vuc(quc(g6c,1),eyd,2,6,[_Fd,aGd,bGd]));YLb=new kMb('EXTENDED_BONDS',7,vuc(quc(g6c,1),eyd,2,6,[cGd,dGd,eGd,mGd]));dMb=new kMb('QUERY_BONDS',8,vuc(quc(g6c,1),eyd,2,6,[fGd,gGd,hGd,iGd,jGd,kGd,lGd,EFd]));ZLb=new kMb('FASTDRAW',9,vuc(quc(g6c,1),eyd,2,6,[GFd,BFd]));ULb=new kMb(HCd,10,vuc(quc(g6c,1),eyd,2,6,[CFd,DFd]));eMb=new kMb(jDd,11,vuc(quc(g6c,1),eyd,2,6,[vGd,KFd]));SLb=new kMb('ARROWS',12,vuc(quc(g6c,1),eyd,2,6,[LFd,MFd,NFd]));WLb=new kMb('EFLOWS',13,vuc(quc(g6c,1),eyd,2,6,[xHd,yHd]));XLb=new kMb('ELECTRONS',14,vuc(quc(g6c,1),eyd,2,6,[TFd,SFd]));gMb=new kMb('SHAPES',15,vuc(quc(g6c,1),eyd,2,6,['box',OFd]));$Lb=new kMb('FREQUENT_ATOMS',16,vuc(quc(g6c,1),eyd,2,6,['H','C','N','O']));cMb=new kMb('QUERY_ATOMS',17,vuc(quc(g6c,1),eyd,2,6,['A','AH','M','MH','Q','QH','X','XH',HGd,JGd]));bMb=new kMb('MIRROR',18,vuc(quc(g6c,1),eyd,2,6,[nGd,oGd]))} -function B3b(){B3b=p9c;c3b=new C3b('ANY_GROUP',0,'G');d3b=new C3b('ANY_GROUP_OR_H',1,'GH');f3b=new C3b('ANY_GROUP_RING_CLOSURE',2,'G*');e3b=new C3b('ANY_GROUP_OR_H_RING_CLOSURE',3,'GH*');A3b=new C3b('POLYMER',4,'Pol');U2b=new C3b('ACYCLIC',5,'ACY');V2b=new C3b('ACYCLIC_OR_H',6,'ACH');i3b=new C3b('CARBACYCLIC',7,'ABC');j3b=new C3b('CARBACYCLIC_OR_H',8,'ABH');a3b=new C3b('ALKYNYL',9,'AYL');b3b=new C3b('ALKYNYL_OR_H',10,'AYH');$2b=new C3b('ALKYL',11,'ALK');_2b=new C3b('ALKYL_OR_H',12,'ALH');W2b=new C3b('ALKENYL',13,'AEL');X2b=new C3b('ALKENYL_OR_H',14,'AEH');s3b=new C3b('HETEROACYCLIC',15,'AHC');t3b=new C3b('HETEROACYCLIC_OR_H',16,'AHH');Y2b=new C3b('ALKOXY',17,'AOX');Z2b=new C3b('ALKOXY_OR_H',18,'AOH');m3b=new C3b('CYCLIC',19,'CYC');n3b=new C3b('CYCLIC_OR_H',20,'CYH');k3b=new C3b('CARBOCYCLIC',21,'CBC');l3b=new C3b('CARBOCYCLIC_OR_H',22,'CBH');g3b=new C3b('ARYL',23,'ARY');h3b=new C3b('ARYL_OR_H',24,'ARH');q3b=new C3b('CYCLOALKYL',25,'CAL');r3b=new C3b('CYCLOALKYL_OR_H',26,'CAH');o3b=new C3b('CYCLOALKENYL',27,'CEL');p3b=new C3b('CYCLOALKENYL_OR_H',28,'CEH');w3b=new C3b('HETEROCYCLIC',29,'CHC');x3b=new C3b('HETEROCYCLIC_OR_H',30,'CHH');u3b=new C3b('HETEROARYL',31,'HAR');v3b=new C3b('HETEROARYL_OR_H',32,'HAH');y3b=new C3b('NO_CARBON',33,'CXX');z3b=new C3b('NO_CARBON_OR_H',34,'CXH')} -function Dpd(a,b){Bpd();var c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J;D=a.e;q=a.d;e=a.a;if(D==0){switch(b){case 0:return '0';case 1:return '0.0';case 2:return '0.00';case 3:return '0.000';case 4:return '0.0000';case 5:return '0.00000';case 6:return '0.000000';default:B=new yod;b<0?(B.a+='0E+',B):(B.a+='0E',B);B.a+=-b;return B.a;}}v=q*10+1+7;w=suc(svc,fyd,23,v+1,15,1);c=v;if(q==1){g=e[0];if(g<0){J=K8c(g,SLd);do{r=J;J=N8c(J,10);w[--c]=48+d9c(a9c(r,V8c(J,10)))&hyd}while(L8c(J,0)!=0)}else{J=g;do{r=J;J=J/10|0;w[--c]=48+(r-J*10)&hyd}while(J!=0)}}else{G=suc(uvc,jyd,23,q,15,1);I=q;Eod(e,0,G,0,q);K:while(true){C=0;for(j=I-1;j>=0;j--){H=J8c(Z8c(C,32),K8c(G[j],SLd));t=Cpd(H);G[j]=d9c(t);C=d9c($8c(t,32))}u=d9c(C);s=c;do{w[--c]=48+u%10&hyd}while((u=u/10|0)!=0&&c!=0);d=9-s+c;for(h=0;h0;h++){w[--c]=48}m=I-1;for(;G[m]==0;m--){if(m==0){break K}}I=m+1}while(w[c]==48){++c}}o=D<0;f=v-c-b-1;if(b==0){o&&(w[--c]=45);return Cnd(),kod(w,c,v-c)}if(b>0&&f>=-6){if(f>=0){l=c+f;for(n=v-1;n>=l;n--){w[n+1]=w[n]}w[++l]=46;o&&(w[--c]=45);return Cnd(),kod(w,c,v-c+1)}for(m=2;m<-f+1;m++){w[--c]=48}w[--c]=46;w[--c]=48;o&&(w[--c]=45);return Cnd(),kod(w,c,v-c)}F=c+1;A=new zod;o&&(A.a+='-',A);if(v-F>=1){qod(A,w[c]);A.a+='.';A.a+=kod(w,c+1,v-c-1)}else{A.a+=kod(w,c,v-c)}A.a+='E';f>0&&(A.a+='+',A);nod(A,(Cnd(),''+f));return A.a} -function kxd(a){var b,c,d,e,f,g,h,j,l,m,n,o,q;for(h=16;h<80;h++){q=a.f[h-3]^a.f[h-8]^a.f[h-14]^a.f[h-16];a.f[h]=q<<1|q>>>31}b=a.a;c=a.b;d=a.c;e=a.d;f=a.e;j=0;for(m=0;m<4;m++){f+=(b<<5|b>>>27)+(c&d|~c&e)+a.f[j++]+hMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b&c|~b&d)+a.f[j++]+hMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f&b|~f&c)+a.f[j++]+hMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e&f|~e&b)+a.f[j++]+hMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d&e|~d&f)+a.f[j++]+hMd;d=d<<30|d>>>2}for(n=0;n<4;n++){f+=(b<<5|b>>>27)+(c^d^e)+a.f[j++]+iMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b^c^d)+a.f[j++]+iMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f^b^c)+a.f[j++]+iMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e^f^b)+a.f[j++]+iMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d^e^f)+a.f[j++]+iMd;d=d<<30|d>>>2}for(o=0;o<4;o++){f+=(b<<5|b>>>27)+(c&d|c&e|d&e)+a.f[j++]+jMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b&c|b&d|c&d)+a.f[j++]+jMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f&b|f&c|b&c)+a.f[j++]+jMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e&f|e&b|f&b)+a.f[j++]+jMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d&e|d&f|e&f)+a.f[j++]+jMd;d=d<<30|d>>>2}for(l=0;l<=3;l++){f+=(b<<5|b>>>27)+(c^d^e)+a.f[j++]+kMd;c=c<<30|c>>>2;e+=(f<<5|f>>>27)+(b^c^d)+a.f[j++]+kMd;b=b<<30|b>>>2;d+=(e<<5|e>>>27)+(f^b^c)+a.f[j++]+kMd;f=f<<30|f>>>2;c+=(d<<5|d>>>27)+(e^f^b)+a.f[j++]+kMd;e=e<<30|e>>>2;b+=(c<<5|c>>>27)+(d^e^f)+a.f[j++]+kMd;d=d<<30|d>>>2}a.a+=b;a.b+=c;a.c+=d;a.d+=e;a.e+=f;a.i=0;for(g=0;g<16;g++){a.f[g]=0}} -function Ttb(){Ttb=p9c;Csb=new bl(jGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgOWgxbC0yIDZoLTF6bS0yLjg1IDEuNTRhLjg3Ljg3IDAgMCAwLS40LS4yOSAxLjQ1IDEuNDUgMCAwIDAtLjQ4LS4wOUg4YTEuNjkgMS42OSAwIDAgMC0uMjcuMS42MS42MSAwIDAgMC0uMi4xOS40LjQgMCAwIDAtLjA4LjI3LjQ3LjQ3IDAgMCAwIC4xOS40IDEuODcgMS44NyAwIDAgMCAuNDcuMjNsLjYxLjE5YTIuNjcgMi42NyAwIDAgMSAuNjIuMjggMS40MSAxLjQxIDAgMCAxIC40Ny40NyAxLjQ2IDEuNDYgMCAwIDEgLjE5LjggMiAyIDAgMCAxLS4xNy44MyAxLjcxIDEuNzEgMCAwIDEtLjQ3LjU5IDEuOTEgMS45MSAwIDAgMS0uNjguMzUgMy4xMiAzLjEyIDAgMCAxLS44Mi4xMSAzIDMgMCAwIDEtMS0uMTcgMi41MSAyLjUxIDAgMCAxLS44Ni0uNTJsLjg3LTFhMS4zMSAxLjMxIDAgMCAwIC40Ny40IDEuMzggMS4zOCAwIDAgMCAuNTkuMTQgMSAxIDAgMCAwIC4zIDAgLjc4Ljc4IDAgMCAwIC4yOC0uMTEuNjYuNjYgMCAwIDAgLjE5LS4xOC41LjUgMCAwIDAgLjA4LS4yNy41Mi41MiAwIDAgMC0uMTktLjQxIDIuMTUgMi4xNSAwIDAgMC0uNDgtLjI1bC0uNjMtLjIxYTIuNzUgMi43NSAwIDAgMS0uNjMtLjI4IDEuNjUgMS42NSAwIDAgMS0uNDgtLjQ3IDEuMzQgMS4zNCAwIDAgMS0uMTktLjc2IDEuNzMgMS43MyAwIDAgMSAuMTgtLjgxIDEuNTcgMS41NyAwIDAgMSAuNDctLjU4IDEuNzkgMS43OSAwIDAgMSAuNjctLjM1QTIuNjYgMi42NiAwIDAgMSA4LjI5IDlhMyAzIDAgMCAxIC45MS4xNCAyIDIgMCAwIDEgLjguNDZ6TTE0LjQ0IDloMWwyLjQ3IDZoLTEuMzhMMTYgMTMuNzNoLTIuMkwxMy4zNyAxNUgxMnptLjQ4IDEuNzVsLS42OSAxLjg2aDEuMzl6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} -function ekb(a){var b;b=new OQb(new GQb);dkb(a,Zzd,new wub(a.c,b),'Cut',(ftb(),Qrb),88);dkb(a,$zd,new vub(a.c,b),'Copy',(etb(),Prb),67);dkb(a,Yzd,new xub(a.c,b),'Paste',(Gtb(),psb),86);ckb(a,_Fd,'Single',(Rtb(),Asb),'1',(s6b(),m6b));ckb(a,aGd,'Double',(itb(),Trb),'2',h6b);ckb(a,bGd,'Triple',(_tb(),Ksb),'3',q6b);ckb(a,cGd,'Aromatic',(Vsb(),Erb),'4',f6b);ckb(a,dGd,'Single Up',(Wtb(),Fsb),'5',r6b);ckb(a,eGd,'Single Down',(Stb(),Bsb),'6',l6b);ckb(a,fGd,'Single Up or Down',(Xtb(),Gsb),'7',p6b);bkb(a,gGd,'Double Cis or Trans',(jtb(),Urb),i6b);bkb(a,hGd,'Double C/T or Unspecified',(ktb(),Vrb),j6b);ckb(a,iGd,'Single or Double',(Utb(),Dsb),'1,2',o6b);ckb(a,jGd,'Single or Aromatic',(Ttb(),Csb),'1,4',n6b);ckb(a,kGd,'Double or Aromatic',(ltb(),Wrb),'2,4',k6b);ckb(a,lGd,'Any',(Usb(),Drb),'0',e6b);nkb(a,mGd,new Xpb((dtb(),Orb),a.f));nkb(a,nGd,Cpb(a.f,(zrb(),wrb)));nkb(a,oGd,Ipb(a.f,(Arb(),xrb)));nkb(a,pGd,Bpb(a.f));nkb(a,qGd,Hpb(a.f));nkb(a,'A',ikb(a,(WZb(),DXb)));nkb(a,'Q',ikb(a,gZb));nkb(a,'M',ikb(a,IYb));nkb(a,'X',ikb(a,OZb));nkb(a,'AH',ikb(a,GXb));nkb(a,'QH',ikb(a,hZb));nkb(a,'MH',ikb(a,LYb));nkb(a,'XH',ikb(a,QZb));nkb(a,rGd,new Eqb(a.f,(bub(),Msb)));nkb(a,sGd,new gqb(a.f,(Ltb(),usb)));nkb(a,tGd,$pb('Expand',(qtb(),_rb),spb(new upb(null),a.f),new bqb(a.d,a.f.i)));nkb(a,uGd,new Oob((ctb(),Nrb),a.f,a.d));nkb(a,vGd,new Dqb((Ytb(),Hsb),a.f,new TL(a.f),new MQb(new jEb(a.f))));nkb(a,wGd,new cob(a.f,a.d));nkb(a,xGd,new iqb(a.f,a.d))} -function Wsb(){Wsb=p9c;Frb=new bl(gHd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMntmaWxsOiM1MDUwNTA7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5Bcm9tYXRpemF0aW9uIDA0PC90aXRsZT48ZyBpZD0iVHJpbV9BcmVhIiBkYXRhLW5hbWU9IlRyaW0gQXJlYSI+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz48L2c+PGcgaWQ9Ikljb25zIj48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xMi41LDE2LjVBMi41LDIuNSwwLDEsMCwxNSwxNCwyLjUsMi41LDAsMCwwLDEyLjUsMTYuNVptNCwwQTEuNSwxLjUsMCwxLDEsMTUsMTUsMS41LDEuNSwwLDAsMSwxNi41LDE2LjVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTAsMTMuNzF2NS41OGw1LDIuNzgsNS0yLjc4VjEzLjcxbC01LTIuNzhabTksNS00LDIuMjItNC0yLjIyVjE0LjI5bDQtMi4yMiw0LDIuMjJaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTIsNC43MSw3LDEuOTMsMiw0LjcxdjUuNThsNSwyLjc4LDUtMi43OFptLTEsNUw3LDExLjkzLDMsOS43MVY1LjI5TDcsMy4wN2w0LDIuMjJaIi8+PHBvbHlnb24gY2xhc3M9ImNscy0yIiBwb2ludHM9IjEwLjA0IDUuODcgOSA1LjI5IDkgNi40NCA5IDguNTYgOSA5LjcxIDEwLjA0IDkuMTMgMTAuMDQgNS44NyIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSI1LjA0IDguNyA0IDguMTMgNCA5LjI4IDYuOTQgMTAuOTEgNy45OCAxMC4zNCA2Ljk0IDkuNzYgNS4wNCA4LjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iNCA1LjcyIDQgNi44NyA1LjA0IDYuMyA2Ljk0IDUuMjQgNy45OCA0LjY2IDYuOTQgNC4wOCA0IDUuNzIiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0yMSw4VjYuNUEyLjUsMi41LDAsMCwwLDE4LjUsNEgxN1YzTDE0LDQuNSwxNyw2VjVoMS41QTEuNSwxLjUsMCwwLDEsMjAsNi41VjhIMTlsMS41LDNMMjIsOFoiLz48L2c+PC9zdmc+')))} -function YDb(){YDb=p9c;UDb=new $Db('IncreaseTotalH',0,'H',FId,mnd(1),mnd(0),mnd(4),(kcc(),Xbc),Dmd(72));PDb=new $Db('IncreaseImplicitH',1,'h',GId,mnd(1),mnd(0),mnd(4),Sbc,Dmd(104));NDb=new $Db('IncreaseBondOrder',2,'v',HId,mnd(1),mnd(0),mnd(8),Qbc,Dmd(118));ODb=new $Db('IncreaseConnections',3,'X',IId,mnd(1),mnd(0),mnd(3),Rbc,Dmd(120));RDb=new $Db('IncreaseRingCount',4,'R',yId,mnd(1),mnd(0),mnd(6),Ubc,Dmd(82));SDb=new $Db('IncreaseSmallestRingSize',5,'r',JId,mnd(1),mnd(0),mnd(30),Vbc,Dmd(114));QDb=new $Db('IncreaseRingBond',6,'rb',xId,mnd(1),mnd(0),mnd(4),Tbc,Dmd(98));TDb=new $Db('IncreaseSubstitutions',7,'s',zId,mnd(1),mnd(0),mnd(6),Wbc,Dmd(115));XDb=new $Db(hId,8,'u',hId,null,null,null,Ybc,Dmd(117));MDb=new ZDb('DecreaseTotalH',9,'H',FId,mnd(-1),mnd(0),mnd(4),Xbc);HDb=new ZDb('DecreaseImplicitH',10,'h',GId,mnd(-1),mnd(0),mnd(4),Sbc);FDb=new ZDb('DecreaseBondOrder',11,'v',HId,mnd(-1),mnd(0),mnd(8),Qbc);GDb=new ZDb('DecreaseConnections',12,'X',IId,mnd(-1),mnd(0),mnd(3),Rbc);JDb=new ZDb('DecreaseRingCount',13,'R',yId,mnd(-1),mnd(0),mnd(6),Ubc);KDb=new ZDb('DecreaseSmallestRingSize',14,'r',JId,mnd(-1),mnd(0),mnd(30),Vbc);IDb=new ZDb('DecreaseRingBond',15,'rb',xId,mnd(-1),mnd(0),mnd(4),Tbc);LDb=new ZDb('DecreaseSubstitutions',16,'s',zId,mnd(-1),mnd(0),mnd(6),Wbc);EDb=new $Db(KId,17,'a/A',KId,null,null,null,Pbc,Dmd(97));VDb=new ZDb('RingBond',18,'rb*','*Ring bond',null,null,null,Tbc);WDb=new ZDb(zId,19,'s*','*Substitutions',null,null,null,Wbc)} -function C1(){C1=p9c;m1=new D1('MRV',0,'ChemAxon Marvin Document (MRV)',false,true,(a3(),L2));k1=new D1('MOL',1,'MDL Molfile',false,true,I2);t1=new D1('RXN',2,'MDL RXNfile',false,true,T2);r1=new D1('RGF',3,'MDL RGfile',false,true,R2);q1=new D1('RDF',4,'MDL RDfile',false,true,Q2);z1=new D1(mDd,5,mDd,false,true,Z2);d1=new D1('CXSMILES',6,'ChemAxon SMILES',false,true,E2);y1=new D1(nDd,7,nDd,false,true,Y2);c1=new D1('CXSMARTS',8,'ChemAxon Extended SMARTS',false,true,D2);g1=new D1('INCHI',9,'InChI',false,true,G2);h1=new D1('INCHIKEY',10,'InChIKey',false,false,H2);e1=new E1('DOCUMENT',11,'Document',true,true,false,F2);f1=new E1('HTML_XML',12,'HTML or XML',false,true,false,$2);n1=new D1(XAd,13,Lyd,false,true,M2);_0=new D1('CML',14,'CML',false,true,A2);l1=new D1(kDd,15,'MDL Molfile V3000',false,true,J2);u1=new D1('RXN_V3',16,'MDL RXNfile V3000',false,true,U2);s1=new D1('RGF_V3',17,'MDL RGfile V3000',false,true,S2);v1=new D1('SDF',18,'MDL SDfile',false,true,V2);w1=new E1('SDF_CTAB',19,'MDL SDfile (CTAB v2000)',false,false,true,W2);a1=new D1('CSMOL',20,'ChemAxon Compressed Molfile',false,true,B2);b1=new D1('CSSDF',21,'ChemAxon Compressed SDfile',false,true,C2);Z0=new D1('CDX',22,'CDX File format',true,true,y2);$0=new E1('CDXML',23,'CDXML File format',false,true,false,z2);x1=new D1('SKC',24,'SKC File format',true,true,X2);p1=new E1('PDF',25,'PDF file',true,true,false,P2);o1=new D1('PDB',26,'Protein Data Bank / PDB',false,true,O2);i1=vuc(quc(xHc,1),oDd,383,0,[m1,k1]);j1=vuc(quc(xHc,1),oDd,383,0,[m1,k1,l1])} -function qw(a){var b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B,C,D,F,G,H,I,J,K,L,M,N,O,P,Q,R;F=ax(Mu(a.a));m=hx(Lu(a.a));h=Bdb(a.a.C,m);J=a.a;s=a.a.a.f;for(r=new Frd(cVb(h));r.a0;--o){f=w.zd(o-1);Ytd(a.d,f,new dV(f,a.n,a.f,a.f,a.f,a.s))}for(q=A.vd();q>0;--q){f=A.zd(q-1);Ytd(a.e,f,(J=YS(a,f),K=TS(a,J,fT(a,f.c),fT(a,f.d)),!!f&&((s6b(),h6b)==f.o||f6b==f.o)&&!Cqd(a.b,f)&&Hqd(a.b,f,J),K))}for(r=B.vd();r>0;--r){f=B.zd(r-1);Ytd(a.k,f,US(a,f,new c_(a.f.ce((D=mUb(f.a),D.a))),fT(a,f.b)))}for(n=C.vd();n>0;--n){f=C.zd(n-1);Hqd(a.p,f,new SZ(f,a.n,a.f,a.f,a.f,a.s))}for(l=new Frd(new gs(dsd(b.q)));l.a=-1900?1:0;c>=4?nod(a,vuc(quc(g6c,1),eyd,2,6,[LKd,MKd])[h]):nod(a,vuc(quc(g6c,1),eyd,2,6,['BC','AD'])[h]);break;case 121:prc(a,c,d);break;case 77:orc(a,c,d);break;case 107:j=e.r.getHours();j==0?Krc(a,24,c):Krc(a,j,c);break;case 83:nrc(a,c,e);break;case 69:m=d.r.getDay();c==5?nod(a,vuc(quc(g6c,1),eyd,2,6,['S','M','T','W','T','F','S'])[m]):c==4?nod(a,vuc(quc(g6c,1),eyd,2,6,[NKd,OKd,PKd,QKd,RKd,SKd,TKd])[m]):nod(a,vuc(quc(g6c,1),eyd,2,6,['Sun','Mon','Tue','Wed','Thu','Fri','Sat'])[m]);break;case 97:e.r.getHours()>=12&&e.r.getHours()<24?nod(a,vuc(quc(g6c,1),eyd,2,6,['AM','PM'])[1]):nod(a,vuc(quc(g6c,1),eyd,2,6,['AM','PM'])[0]);break;case 104:n=e.r.getHours()%12;n==0?Krc(a,12,c):Krc(a,n,c);break;case 75:o=e.r.getHours()%12;Krc(a,o,c);break;case 72:q=e.r.getHours();Krc(a,q,c);break;case 99:r=d.r.getDay();c==5?nod(a,vuc(quc(g6c,1),eyd,2,6,['S','M','T','W','T','F','S'])[r]):c==4?nod(a,vuc(quc(g6c,1),eyd,2,6,[NKd,OKd,PKd,QKd,RKd,SKd,TKd])[r]):c==3?nod(a,vuc(quc(g6c,1),eyd,2,6,['Sun','Mon','Tue','Wed','Thu','Fri','Sat'])[r]):Krc(a,r,1);break;case 76:s=d.r.getMonth();c==5?nod(a,vuc(quc(g6c,1),eyd,2,6,['J','F','M','A','M','J','J','A','S','O','N','D'])[s]):c==4?nod(a,vuc(quc(g6c,1),eyd,2,6,[yKd,zKd,AKd,BKd,CKd,DKd,EKd,FKd,GKd,HKd,IKd,JKd])[s]):c==3?nod(a,vuc(quc(g6c,1),eyd,2,6,['Jan','Feb','Mar','Apr',CKd,'Jun','Jul','Aug','Sep','Oct','Nov','Dec'])[s]):Krc(a,s+1,c);break;case 81:t=d.r.getMonth()/3|0;c<4?nod(a,vuc(quc(g6c,1),eyd,2,6,['Q1','Q2','Q3','Q4'])[t]):nod(a,vuc(quc(g6c,1),eyd,2,6,['1st quarter','2nd quarter','3rd quarter','4th quarter'])[t]);break;case 100:u=d.r.getDate();Krc(a,u,c);break;case 109:l=e.r.getMinutes();Krc(a,l,c);break;case 115:g=e.r.getSeconds();Krc(a,g,c);break;case 122:c<4?nod(a,f.c[0]):nod(a,f.c[1]);break;case 118:nod(a,f.b);break;case 90:c<3?nod(a,ltc(f)):c==3?nod(a,ktc(f)):nod(a,ntc(f.a));break;default:return false;}return true} -function Ztb(){Ztb=p9c;Isb=new bl('stereoinfo',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIgMTFoNHYySDJ6bTE2IDBoNHYyaC00eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDEwIDIwKSIgZD0iTTggMTloNHYySDh6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiB0cmFuc2Zvcm09InJvdGF0ZSgtOTAgMTQgMjApIiBkPSJNMTIgMTloNHYyaC00eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDEwIDQpIiBkPSJNOCAzaDR2Mkg4eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDE0IDQpIiBkPSJNMTIgM2g0djJoLTR6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTEuMzggMTIuNjdhMS4wOSAxLjA5IDAgMCAxIC4wNy0uNDIuOC44IDAgMCAxIC4yMi0uMzJsLjQyLS4zOGEzLjM5IDMuMzkgMCAwIDAgLjMzLS4zMSAxIDEgMCAwIDAgLjIyLS4yNy41LjUgMCAwIDAgLjA4LS4yNy41Ni41NiAwIDAgMC0uMTctLjQyLjYuNiAwIDAgMC0uNDItLjE1Ljc3Ljc3IDAgMCAwLS41OS4yMS44NC44NCAwIDAgMC0uMjIuNTJsLTEuMjctLjA4YTEuOSAxLjkgMCAwIDEgLjY0LTEuMzJBMi4xMiAyLjEyIDAgMCAxIDEyLjEgOWEyLjM0IDIuMzQgMCAwIDEgLjcxLjEgMS43NSAxLjc1IDAgMCAxIC41OS4zMSAxLjUxIDEuNTEgMCAwIDEgLjU1IDEuMiAyIDIgMCAwIDEgMCAuNDQgMS4zOSAxLjM5IDAgMCAxLS4xNy4zOCAyLjQ3IDIuNDcgMCAwIDEtLjMxLjM4IDQuNTUgNC41NSAwIDAgMS0uNDkuNDIuNzIuNzIgMCAwIDAtLjI1LjI5LjU1LjU1IDAgMCAwLS4wNy4yOHYuMmgtMS4yOHptLS4xNCAxLjU4YS43My43MyAwIDAgMSAuMDYtLjMuNzQuNzQgMCAwIDEgLjQtLjQuNzMuNzMgMCAwIDEgLjMtLjA2LjcyLjcyIDAgMCAxIC4yOS4wNi42Ny42NyAwIDAgMSAuMjQuMTYuNjMuNjMgMCAwIDEgLjE2LjI0LjczLjczIDAgMCAxIC4wNi4zLjcyLjcyIDAgMCAxLS4wNi4yOS43NC43NCAwIDAgMS0uNC40LjcyLjcyIDAgMCAxLS4yOS4wNi43My43MyAwIDAgMS0uMy0uMDYuNjMuNjMgMCAwIDEtLjI0LS4xNi42Ny42NyAwIDAgMS0uMTYtLjI0LjcyLjcyIDAgMCAxLS4wNi0uMjl6bS0yLjQyLjkzYTQuNDkgNC40OSAwIDAgMSAwLTYuMzZsLjcxLjdhMy41IDMuNSAwIDAgMCAwIDV6bTYuMzYgMGwtLjcxLS43YTMuNSAzLjUgMCAwIDAgMC01bC43MS0uN2E0LjQ5IDQuNDkgMCAwIDEgMCA2LjM2eiIvPjwvZz48L3N2Zz4=')))} -function agc(){agc=p9c;Vec=new Ndc;Uec=new Mdc;Wec=new Odc;Xec=new Udc;Yec=new Vdc;Zec=new Ydc;$ec=new Zdc;_ec=new $dc;afc=new _dc;bfc=new aec;cfc=new bec;dfc=new cec;efc=new dec;ffc=new eec;gfc=new fec;hfc=new gec;jfc=new iec;ifc=new hec;kfc=new jec;lfc=new kec;mfc=new nec;nfc=new oec;pfc=new qec;qfc=new rec;ofc=new pec;rfc=new sec;sfc=new tec;tfc=new uec;ufc=new vec;wfc=new yec;yfc=new Aec;zfc=new Bec;xfc=new zec;vfc=new wec;Afc=new Cec;Bfc=new Dec;Cfc=new Eec;Dfc=new Fec;Efc=new Oec;Gfc=new Sec;Ffc=new Rec;Hfc=new Tec;Kfc=new cgc;Lfc=new dgc;Jfc=new bgc;Mfc=new egc;Nfc=new fgc;Ofc=new ggc;Pfc=new hgc;Qfc=new igc;Rfc=new lgc;Tfc=new ngc;Ufc=new ogc;Sfc=new mgc;Vfc=new pgc;Wfc=new qgc;Xfc=new rgc;Yfc=new sgc;$fc=new ugc;_fc=new vgc;Zfc=new tgc;Ifc=new ltd;Iqd(Ifc,'region',Hfc);Iqd(Ifc,'alert',Uec);Iqd(Ifc,rAd,efc);Iqd(Ifc,MJd,Vec);Iqd(Ifc,NJd,Wec);Iqd(Ifc,'document',gfc);Iqd(Ifc,'article',Xec);Iqd(Ifc,'banner',Yec);Iqd(Ifc,OJd,Zec);Iqd(Ifc,PJd,$ec);Iqd(Ifc,'gridcell',jfc);Iqd(Ifc,QJd,_ec);Iqd(Ifc,'group',kfc);Iqd(Ifc,'combobox',afc);Iqd(Ifc,RJd,bfc);Iqd(Ifc,SJd,cfc);Iqd(Ifc,TJd,dfc);Iqd(Ifc,'list',ofc);Iqd(Ifc,'directory',ffc);Iqd(Ifc,'form',hfc);Iqd(Ifc,'grid',ifc);Iqd(Ifc,'heading',lfc);Iqd(Ifc,'img',mfc);Iqd(Ifc,'link',nfc);Iqd(Ifc,'listbox',pfc);Iqd(Ifc,'listitem',qfc);Iqd(Ifc,'log',rfc);Iqd(Ifc,'main',sfc);Iqd(Ifc,'marquee',tfc);Iqd(Ifc,'math',ufc);Iqd(Ifc,'menu',vfc);Iqd(Ifc,'menubar',wfc);Iqd(Ifc,'menuitem',xfc);Iqd(Ifc,UJd,yfc);Iqd(Ifc,XJd,Cfc);Iqd(Ifc,'radio',Ffc);Iqd(Ifc,VJd,zfc);Iqd(Ifc,WJd,Afc);Iqd(Ifc,'note',Bfc);Iqd(Ifc,YJd,Dfc);Iqd(Ifc,ZJd,Efc);Iqd(Ifc,$Jd,Gfc);Iqd(Ifc,'row',Jfc);Iqd(Ifc,'rowgroup',Kfc);Iqd(Ifc,'rowheader',Lfc);Iqd(Ifc,nJd,Nfc);Iqd(Ifc,'separator',Ofc);Iqd(Ifc,'scrollbar',Mfc);Iqd(Ifc,'slider',Pfc);Iqd(Ifc,_Jd,Qfc);Iqd(Ifc,'status',Rfc);Iqd(Ifc,'tab',Sfc);Iqd(Ifc,'tablist',Tfc);Iqd(Ifc,'tabpanel',Ufc);Iqd(Ifc,aAd,Vfc);Iqd(Ifc,'timer',Wfc);Iqd(Ifc,'toolbar',Xfc);Iqd(Ifc,'tooltip',Yfc);Iqd(Ifc,'tree',Zfc);Iqd(Ifc,'treegrid',$fc);Iqd(Ifc,'treeitem',_fc)} -function aq(a){if(!a.a){a.a=true;Xnc();Znc((Lsc(),'.gwt-progress{position:relative;height:4px;display:block;width:100%;background-color:#acece6;border-radius:2px;overflow:hidden;}.gwt-progress .gwt-determinate{position:absolute;background-color:inherit;top:0;left:0;bottom:0;background-color:#26a69a;transition:width 0.3s linear;}.gwt-progress .gwt-indeterminate{background-color:#26a69a;}.gwt-progress .gwt-indeterminate:before{content:"";position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left, right;-webkit-animation:gwt-indeterminate 3.5s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;animation:gwt-indeterminate 3.5s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;}.gwt-progress .gwt-indeterminate:after{content:"";position:absolute;background-color:inherit;top:0;left:0;bottom:0;will-change:left, right;-webkit-animation:gwt-indeterminate-short 3.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;animation:gwt-indeterminate-short 3.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;-webkit-animation-delay:1.9s;animation-delay:1.9s;}@-webkit-keyframes gwt-indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@keyframes gwt-indeterminate{0%{left:-35%;right:100%}60%{left:100%;right:-90%}100%{left:100%;right:-90%}}@-webkit-keyframes gwt-indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}@keyframes gwt-indeterminate-short{0%{left:-200%;right:100%}60%{left:107%;right:-8%}100%{left:107%;right:-8%}}.gwt-progress{background-color:#ebeef1;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;color:#fff;transition:1s all;-webkit-transition:1s all;-moz-transition:1s all;margin:0;top:0;left:0;position:absolute;height:2px;}.gwt-progress .gwt-indeterminate{border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;transition:1s all;-webkit-transition:1s all;-moz-transition:1s all;background-color:#4881d7;}.gwt-progressContainer{position:relative;}.gwt-progressFallback{position:absolute;top:5px;left:5px;}'));return true}return false} -function kr(){kr=p9c;rq=new lr('ALPHA',0,'\u03B1','α');tq=new lr('BETA',1,'\u03B2','β');Bq=new lr('GAMMA',2,'\u03B3','γ');xq=new lr('DELTA',3,'\u03B4','δ');yq=new lr('EPSILON',4,'\u03B5','ε');jr=new lr('ZETA',5,'\u03B6','ζ');zq=new lr('ETA',6,'\u03B7','η');gr=new lr('THETA',7,'\u03B8','θ');Fq=new lr('IOTA',8,'\u03B9','ι');Gq=new lr('KAPPA',9,'\u03BA','κ');Hq=new lr('LAMBDA',10,'\u03BB','λ');Oq=new lr('MU',11,'\u03BC','μ');Qq=new lr('NU',12,'\u03BD','ν');ir=new lr('XI',13,'\u03BE','ξ');Sq=new lr('OMICRON',14,'\u03BF','ο');Wq=new lr('PI',15,'\u03C0','π');$q=new lr('RHO',16,'\u03C1','ρ');br=new lr('SIGMA',17,'\u03C3','σ');fr=new lr('TAU',18,'\u03C4','τ');hr=new lr('UPSILON',19,'\u03C5','υ');Vq=new lr('PHI',20,'\u03C6','φ');vq=new lr('CHI',21,'\u03C7','χ');Zq=new lr('PSI',22,'\u03C8','ψ');Rq=new lr('OMEGA',23,'\u03C9','ω');uq=new lr('CELSIUS',24,'\u2103','℃');Aq=new lr('FAHRENHEIT',25,'\u2109','℉');sq=new lr('ANGSTROM',26,'\u212B','Å');wq=new lr('DEGREE',27,UAd,'°');cr=new lr('SMALL_H_WITHSTROKE',28,'\u0127','ħ');Xq=new lr('PLUSMINUS',29,'\xB1','±');Uq=new lr('PER_MILLE',30,VAd,'‰');dr=new lr('SQRT',31,'\u221A','√');Jq=new lr('LEFT_ARROW',32,'\u2190','←');_q=new lr('RIGHT_ARROW',33,'\u2192','→');Mq=new lr('LEFT_STROKED_ARROW',34,'\u219A','↚');ar=new lr('RIGHT_STROKED_ARROW',35,'\u219B','↛');Lq=new lr('LEFT_RIGHT_ARROW',36,'\u2194','↔');Kq=new lr('LEFT_ON_RIGHT_HARPOON',37,'\u21CC','⇌');Yq=new lr('PRODUCT',38,'\u220F','∏');er=new lr('SUM',39,'\u2211','∑');Dq=new lr('INFINITY',40,WAd,'∞');Tq=new lr('PARTIAL_DIFFERENTIAL',41,'\u2202','∂');Iq=new lr('LARGE_DELTA',42,'\u2206','∆');Eq=new lr('INTEGRAL',43,'\u222B','∫');qq=new lr('ALMOST',44,'\u2248','≈');Pq=new lr('NOT_EQUAL',45,'\u2260','≠');Nq=new lr('LESS_OR_EQUAL',46,'\u2264','≤');Cq=new lr('GREATER_OR_EQUAL',47,'\u2265','≥')} -function ktb(){ktb=p9c;Vrb=new bl('doubleCisOrTransOrUnspecifiedBond',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNNS45NCA5LjY0YTEuMSAxLjEgMCAwIDAtLjQzLS4zNCAxLjI2IDEuMjYgMCAwIDAtLjYtLjEzIDEuNTIgMS41MiAwIDAgMC0uNjMuMTQgMS41NSAxLjU1IDAgMCAwLS41LjM4IDEuODggMS44OCAwIDAgMC0uMzMuNTkgMi4xOSAyLjE5IDAgMCAwLS4xMi43MyAyLjE3IDIuMTcgMCAwIDAgLjEyLjc0IDEuODMgMS44MyAwIDAgMCAuMzMuNTggMS4zOCAxLjM4IDAgMCAwIC40OS4zOCAxLjI2IDEuMjYgMCAwIDAgLjYuMTQgMS4yOSAxLjI5IDAgMCAwIC42Ni0uMTYgMS4zNSAxLjM1IDAgMCAwIC40Ny0uNDVMNyAxM2EyLjA1IDIuMDUgMCAwIDEtLjg4Ljc1QTIuNjIgMi42MiAwIDAgMSA1IDE0YTMuMjIgMy4yMiAwIDAgMS0xLjE4LS4yMSAyLjcxIDIuNzEgMCAwIDEtMS41Mi0xLjUzQTMuNTYgMy41NiAwIDAgMSAyLjA4IDExYTMuNTEgMy41MSAwIDAgMSAuMjItMS4yMyAyLjcgMi43IDAgMCAxIC42Mi0uOTUgMi42NiAyLjY2IDAgMCAxIC45My0uNkEzLjIyIDMuMjIgMCAwIDEgNSA4YTIuOCAyLjggMCAwIDEgLjQ4LjA1QTIuMTEgMi4xMSAwIDAgMSA2IDguMmEyIDIgMCAwIDEgLjQ3LjI2IDEuODQgMS44NCAwIDAgMSAuNC4zOXpNMTAgOGgxbC0yIDZIOHptNCAxaC0yVjhoNXYxaC0ydjVoLTF6bTUuMzYgMi42N2ExLjMyIDEuMzIgMCAwIDEgLjA3LS40MiAxIDEgMCAwIDEgLjIzLS4zMmwuNDMtLjM4YTMuNiAzLjYgMCAwIDAgLjM0LS4zMSAxLjM4IDEuMzggMCAwIDAgLjIzLS4yNy41LjUgMCAwIDAgLjA4LS4yNy41Mi41MiAwIDAgMC0uMTgtLjQyLjYzLjYzIDAgMCAwLS40My0uMTUuODEuODEgMCAwIDAtLjYuMjEuOC44IDAgMCAwLS4yMy41MkwxOCA5Ljc4YTEuODQgMS44NCAwIDAgMSAuNjYtMS4zMkEyLjE5IDIuMTkgMCAwIDEgMjAuMTEgOGEyLjQxIDIuNDEgMCAwIDEgLjcyLjEgMS44NSAxLjg1IDAgMCAxIC42MS4zMSAxLjU3IDEuNTcgMCAwIDEgLjQxLjUxIDEuNTIgMS41MiAwIDAgMSAuMTUuNjkgMiAyIDAgMCAxLS4wNS40NCAxLjM5IDEuMzkgMCAwIDEtLjE3LjM4IDIuNTggMi41OCAwIDAgMS0uMzIuMzggNC43NiA0Ljc2IDAgMCAxLS41LjQyLjkuOSAwIDAgMC0uMjcuMjkuNjcuNjcgMCAwIDAtLjA2LjI4di4yaC0xLjI3em0tLjA3IDEuNThhLjczLjczIDAgMCAxIC4wNi0uMy43NC43NCAwIDAgMSAuNC0uNC44LjggMCAwIDEgLjMtLjA2LjgyLjgyIDAgMCAxIC41NC4yMiAxIDEgMCAwIDEgLjE2LjI0Ljk0Ljk0IDAgMCAxIC4wNS4zLjkzLjkzIDAgMCAxLS4wNS4yOSAxIDEgMCAwIDEtLjE2LjI0LjgyLjgyIDAgMCAxLS41NC4yMi44LjggMCAwIDEtLjMtLjA2Ljc0Ljc0IDAgMCAxLS40LS40LjcyLjcyIDAgMCAxLS4wNi0uMjl6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+')))} -function a3(){a3=p9c;L2=new c3('MRV',0,true,true,vuc(quc(g6c,1),eyd,2,6,['mrv','xml']));I2=new c3('MOL',1,false,false,vuc(quc(g6c,1),eyd,2,6,['mol']));K2=new b3('MOL_V3_NAT',2,'mol:V3nat',false,false,vuc(quc(g6c,1),eyd,2,6,['mol']));T2=new c3('RXN',3,true,false,vuc(quc(g6c,1),eyd,2,6,['rxn']));R2=new c3('RGF',4,false,true,vuc(quc(g6c,1),eyd,2,6,['rgf']));Q2=new c3('RDF',5,true,true,vuc(quc(g6c,1),eyd,2,6,['rdf','rd']));Z2=new c3(mDd,6,true,false,vuc(quc(g6c,1),eyd,2,6,['smiles','smi']));E2=new c3('CXSMILES',7,true,true,vuc(quc(g6c,1),eyd,2,6,['cxsmiles','cxsmi']));F2=new b3('DOCUMENT',8,'d2s',true,true,vuc(quc(g6c,1),eyd,2,6,['doc','docx','odt','xls','xlsx','ppt','pptx']));$2=new b3('XML_HTML',9,'d2s',true,true,vuc(quc(g6c,1),eyd,2,6,['xml','html','xhtml','htm']));Y2=new c3(nDd,10,true,false,vuc(quc(g6c,1),eyd,2,6,['smarts','sma']));D2=new c3('CXSMARTS',11,true,true,vuc(quc(g6c,1),eyd,2,6,['cxsmarts','cxsma']));G2=new c3('INCHI',12,false,false,vuc(quc(g6c,1),eyd,2,6,['inchi']));H2=new c3('INCHIKEY',13,false,false,vuc(quc(g6c,1),eyd,2,6,['inchikey']));M2=new c3(XAd,14,false,false,vuc(quc(g6c,1),eyd,2,6,[tDd]));N2=new b3('NAME_ASCII',15,'name:ascii',false,false,vuc(quc(g6c,1),eyd,2,6,[tDd]));A2=new c3('CML',16,true,false,vuc(quc(g6c,1),eyd,2,6,['cml']));J2=new b3(kDd,17,'mol:V3',false,false,vuc(quc(g6c,1),eyd,2,6,['mol']));U2=new b3('RXN_V3',18,'rxn:V3',true,true,vuc(quc(g6c,1),eyd,2,6,['rxn']));S2=new b3('RGF_V3',19,'rgf:V3',false,true,vuc(quc(g6c,1),eyd,2,6,['rgf']));V2=new c3('SDF',20,true,true,vuc(quc(g6c,1),eyd,2,6,['sdf','sd']));W2=new b3('SDF_CTAB',21,'sdf:ctab',false,false,vuc(quc(g6c,1),eyd,2,6,['sdf','sd']));B2=new c3('CSMOL',22,false,false,vuc(quc(g6c,1),eyd,2,6,['csmol']));C2=new c3('CSSDF',23,true,true,vuc(quc(g6c,1),eyd,2,6,['cssdf']));_2=new c3('XYZ',24,true,true,vuc(quc(g6c,1),eyd,2,6,['xyz']));y2=new c3('CDX',25,true,true,vuc(quc(g6c,1),eyd,2,6,['cdx']));z2=new c3('CDXML',26,true,true,vuc(quc(g6c,1),eyd,2,6,['cdxml']));X2=new c3('SKC',27,true,true,vuc(quc(g6c,1),eyd,2,6,['skc']));P2=new c3('PDF',28,true,true,vuc(quc(g6c,1),eyd,2,6,['pdf']));O2=new c3('PDB',29,false,false,vuc(quc(g6c,1),eyd,2,6,['pdb']))} -function Qtb(){Qtb=p9c;zsb=new bl('settings',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIwLjg4IDEwLjYybC0uMTMtLjg1aC0xLjMxYTcuNzMgNy43MyAwIDAgMC0uNi0xLjQ2bC4zMi0uMzEuNjEtLjYtLjUxLS42OWE4LjU3IDguNTcgMCAwIDAtLjg4LTEgOSA5IDAgMCAwLTEuMDYtLjg5bC0uNjktLjUxLS42LjYxLS4zMy4zMmE3LjM4IDcuMzggMCAwIDAtMS40NS0uNlYzLjI1bC0uODUtLjEzYTggOCAwIDAgMC0yLjc2IDBsLS44NS4xM3YxLjMxYTcuMzggNy4zOCAwIDAgMC0xLjQ1LjZMOCA0Ljg0bC0uNi0uNjEtLjY5LjUxYTkgOSAwIDAgMC0xLjA2Ljg5IDguNjggOC42OCAwIDAgMC0uODcgMWwtLjUxLjY5LjYxLjYuMzIuMzJhNy43MyA3LjczIDAgMCAwLS42IDEuNDZIMy4yNWwtLjEzLjg1YTggOCAwIDAgMCAwIDIuNzZsLjEzLjg1aDEuMzFhNy43MyA3LjczIDAgMCAwIC42IDEuNDZsLS4zMi4zOC0uNjEuNi41MS42OWE5LjExIDkuMTEgMCAwIDAgMiAybC42OS41MS42LS42MS4zMy0uMzJhNy4zOCA3LjM4IDAgMCAwIDEuNDUuNnYxLjMxbC44NS4xM2E4IDggMCAwIDAgMi43NiAwbC44NS0uMTN2LTEuMzRhNy4zOCA3LjM4IDAgMCAwIDEuNDUtLjZsLjMzLjMyLjYuNjEuNjktLjUxYTkuMTEgOS4xMSAwIDAgMCAyLTJsLjUxLS42OS0uNjEtLjYtLjMyLS4zMmE3LjczIDcuNzMgMCAwIDAgLjYtMS40NmgxLjMxbC4xMy0uODVhOCA4IDAgMCAwIDAtMi43NnptLTEgMi42MWgtMS4yM2E2LjY4IDYuNjggMCAwIDEtMS4wNyAyLjYxbC44Ny44N2E3LjU2IDcuNTYgMCAwIDEtMS43NCAxLjc0bC0uODctLjg3YTYuNjggNi42OCAwIDAgMS0yLjYxIDEuMDd2MS4yNWE3LjYxIDcuNjEgMCAwIDEtMi40NiAwdi0xLjI1YTYuNjggNi42OCAwIDAgMS0yLjYxLTEuMDdsLS44Ny44N2E3LjU2IDcuNTYgMCAwIDEtMS43NC0xLjc0bC44Ny0uODdhNi42OCA2LjY4IDAgMCAxLTEuMDctMi42MUg0LjFhNy42MSA3LjYxIDAgMCAxIDAtMi40NmgxLjI1YTYuNjggNi42OCAwIDAgMSAxLjA3LTIuNjFsLS44Ny0uODdhNy4xNSA3LjE1IDAgMCAxIC43OS0uOTQgNy4xNSA3LjE1IDAgMCAxIC45NC0uNzlsLjg3Ljg3YTYuNjggNi42OCAwIDAgMSAyLjYxLTEuMDdWNC4xYTcuNjEgNy42MSAwIDAgMSAyLjQ2IDB2MS4yNWE2LjY4IDYuNjggMCAwIDEgMi42MSAxLjA3bC44Ny0uODdhNy4xNSA3LjE1IDAgMCAxIC45NC43OSA3LjE1IDcuMTUgMCAwIDEgLjc5Ljk0bC0uODcuODdhNi42OCA2LjY4IDAgMCAxIDEuMDcgMi42MWgxLjI3YTcuNjEgNy42MSAwIDAgMSAwIDIuNDZ6Ii8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMTIgOC41YTMuNSAzLjUgMCAxIDAgMy41IDMuNUEzLjUgMy41IDAgMCAwIDEyIDguNXptMCA2YTIuNSAyLjUgMCAxIDEgMi41LTIuNSAyLjUgMi41IDAgMCAxLTIuNSAyLjV6Ii8+PC9nPjwvc3ZnPg==')))} -function Xsb(){Xsb=p9c;Grb=new bl(JGd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNNSA5YS45My45MyAwIDAgMS0uNzcuNGMtLjggMC0xLjM2LS42OS0xLjM2LTJ2LS41MWMwLTEuMTQuNDktMiAxLjM2LTJhLjg1Ljg1IDAgMCAxIC43Ny40VjVoMXY1LjkySDV6TTMuODIgNi45MXYuNWMwIC43NS4xNSAxLjE3LjYgMS4xN3MuNTgtLjQuNTgtMS4xdi0uNTdjMC0uNjctLjEzLTEuMTgtLjYxLTEuMThzLS41Ny41MS0uNTcgMS4xOHptNi4yNiAyLjM5aC0uOVY5YS43Ny43NyAwIDAgMS0uNzcuNDJjLS43MiAwLTEuMjktLjQ2LTEuMjktMS42OVY1SDh2Mi41OWMwIC43Ni4xNyAxIC41NCAxcy41OC0uMzIuNTgtMVY1aC45MnptMy44NS0uNjZhMS4yOCAxLjI4IDAgMCAxLTEuMjkuNzRjLTEuMDYgMC0xLjU1LS44LTEuNTUtMS45NHYtLjU5YzAtMS4yNi41Mi0xLjkyIDEuNDQtMS45MnMxLjQ1LjcgMS40NSAydi40OEgxMmMwIC42Ny4xMSAxLjIxLjYzIDEuMjFhLjYxLjYxIDAgMCAwIC42My0uNDF6TTEyIDYuNjdoMS4wN2MwLS42My0uMTktLjk0LS41My0uOTRzLS41NC4zNi0uNTQuOTR6bTUtLjYxYS41LjUgMCAwIDAtLjQ2LS4zMWMtLjM1IDAtLjU0LjM0LS41NC44OFY5LjNoLS45MlY1SDE2di4zM2EuODEuODEgMCAwIDEgLjc0LS40MSAxIDEgMCAwIDEgMSAuNjN6TTE4LjkyIDVsLjc1IDMgLjctM2guOTRsLTEuMjMgNC40N2MtLjMxIDEuMS0uNjYgMS40Ni0xLjYzIDEuNDZ2LS44NGEuNjcuNjcgMCAwIDAgLjc0LS43TDE4IDV6bS0xNCAxNUg0di01LjkyaC45MnYuMjhhLjg0Ljg0IDAgMCAxIC43Ny0uMzZjLjg3IDAgMS4zNi44MSAxLjM2IDJ2LjU0YzAgMS4yNi0uNTYgMS45NS0xLjM2IDEuOTVhLjkzLjkzIDAgMCAxLS43Ny0uNHptMC00di41N2MwIC43LjE3IDEuMS42MSAxLjFzLjYtLjQyLjYtMS4xN1YxNmMwLS42Ny0uMS0xLjE4LS42LTEuMThzLS42MS40OS0uNjEgMS4xOHptNS4wOC0uODdhLjUyLjUyIDAgMCAwLS40Ni0uMzJjLS4zNSAwLS41NC4zNS0uNTQuODl2Mi42N2gtLjkzdi00LjI5SDl2LjMzYS44MS44MSAwIDAgMSAuNzEtLjQxIDEgMSAwIDAgMSAuOTUuNjN6TTEyLjY3IDE0YzEgMCAxLjUxLjY5IDEuNTEgMS45NXYuNTVjMCAxLjI2LS41NCAxLjk1LTEuNTEgMS45NXMtMS41MS0uNjktMS41MS0xLjk1VjE2YzAtMS4zMS41NS0yIDEuNTEtMnptMCAuOGMtLjQ0IDAtLjU5LjQzLS41OSAxLjE3di41MWMwIC43NC4xNSAxLjE3LjU5IDEuMTdzLjYtLjQzLjYtMS4xN1YxNmMwLS43Ny0uMTUtMS4yLS42LTEuMnptMy40NSA1LjJoLS45MnYtNS45MmguOTJ2LjI4YS44NC44NCAwIDAgMSAuNzctLjM2Yy44NyAwIDEuMzYuODEgMS4zNiAydi41NGMwIDEuMjYtLjU2IDEuOTUtMS4zNiAxLjk1YS45Mi45MiAwIDAgMS0uNzctLjR6bTAtNHYuNTdjMCAuNy4xNyAxLjEuNjEgMS4xcy42LS40Mi42LTEuMTdWMTZjMC0uNjctLjEtMS4xOC0uNi0xLjE4cy0uNjEuNDktLjYxIDEuMTh6bTMuOTggMi4zN2gtMS4xOHYtMS4xOWgxLjE4eiIgZmlsbD0iIzUwNTA1MCIvPjwvc3ZnPg==')))} -function Qmb(g){var d=(Sxd(),xxd(eHd));var e,f=g;$wnd.marvin.Sketch=Yxd(function(){var a,b=this,c=arguments;c.length==1&&f.Yj(c[0])?(a=c[0]):c.length==0?(a=new Tlb):c.length==1&&(a=new Vlb(c[0]));b.g=a;Vxd(a,b);return b});e=$wnd.marvin.Sketch.prototype=new Object;e._remove=Yxd(function(){this.g.Zj()});e.addButton=Yxd(function(a,b){this.g.$j(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});$wnd.marvin.Sketch.addRequestInterceptor=Yxd(function(a){rlb();TPb();Wr(SPb,a)});e.addTemplate=Yxd(function(a){this.g._j(a)});e.clear=Yxd(function(){this.g.Pb()});e.clearUndoStack=Yxd(function(){this.g.ak()});e.exportAsMol=Yxd(function(){return this.g.bk()});e.exportAsMrv=Yxd(function(){return this.g.ck()});e.exportStructure=Yxd(function(a,b){return this.g.dk(a,b)});e.getDisplaySettings=Yxd(function(){return this.g.ek()});e.getSelection=Yxd(function(){return this.g.fk()});e.getSupportedFormats=Yxd(function(){return this.g.gk()});e.importAsMol=Yxd(function(a){this.g.hk(a)});e.importAsMrv=Yxd(function(a){this.g.ik(a)});e.importStructure=Yxd(function(a,b){return this.g.jk(a,b)});e.isEmpty=Yxd(function(){return this.g.sd()});$wnd.marvin.Sketch.isSupported=Yxd(function(){return rlb(),ol(),zgc(skc($doc))});$wnd.marvin.Sketch.license=Yxd(function(a){rlb();MNb(qlb,a)});e.off=Yxd(function(a,b){this.g.kk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.on=Yxd(function(a,b){this.g.lk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.onMolChange=Yxd(function(a){this.g.mk(a==null?null:a.constructor==$wnd.marvin.Sketch.Function?a.g:new $mb(a))});e.pasteAsMol=Yxd(function(a){this.g.nk(a)});e.pasteAsMrv=Yxd(function(a){this.g.ok(a)});e.pasteStructure=Yxd(function(a,b){return this.g.pk(a,b)});$wnd.marvin.Sketch.removeRequestInterceptor=Yxd(function(a){rlb();TPb();_r(SPb,a)});e.setAutoChirality=Yxd(function(a){this.g.qk(a)});e.setDisplaySettings=Yxd(function(a){this.g.rk(a)});e.setHighlight=Yxd(function(a){Uxd(this.g,xMc,0,arguments,false,true)[0]});e.setSelection=Yxd(function(a){this.g.sk(a)});e.setServices=Yxd(function(a){this.g.tk(a)});Txd(xMc,{0:{1:[[Smb,null,Wxd,'array']]}},false);if(d)for(p in d)$wnd.marvin.Sketch[p]===undefined&&($wnd.marvin.Sketch[p]=d[p])} -function atb(){atb=p9c;Lrb=new bl('clean3D',(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIxIDE2LjVMMTggMTV2MUg5LjVsLTEuNzkuNSAxLjc5LTEuMjkgMS4zNS0xLjM2LjY1LjY1IDEtMy0zIDEgLjY1LjY1LTEuMzYgMS4zNS0xLjI5IDEuNzkuNS0xLjc5VjZoMUw3LjUgMyA2IDZoMXYxMEgzdjFoMi41bDEuNzktLjUtMS43OSAxLjI5LTIgMiAuNzEuNzEgMi0yIDEuMjktMS43OUw3IDE4LjVWMjFoMXYtNGgxMHYxbDMtMS41eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEyLjcxIDkuMzZhLjY2LjY2IDAgMCAxLS4yNy4xMiAxIDEgMCAwIDEtLjI5IDAgLjk0Ljk0IDAgMCAxLS42My0uMjEgMSAxIDAgMCAxLS4zMy0uNDlsLTEuMjUuMzNhMi4wNyAyLjA3IDAgMCAwIC4zNC42OCAxLjkzIDEuOTMgMCAwIDAgLjUyLjQ3IDIuMDggMi4wOCAwIDAgMCAuNjcuMjYgMy4wOCAzLjA4IDAgMCAwIC43NS4wOSAyLjU2IDIuNTYgMCAwIDAgLjc3LS4xMSAyLjI0IDIuMjQgMCAwIDAgLjY4LS4zMiAxLjc2IDEuNzYgMCAwIDAgLjQ5LS41NiAxLjYyIDEuNjIgMCAwIDAgLjE5LS44MSAxLjEyIDEuMTIgMCAwIDAtLjA4LS40NSAxLjMgMS4zIDAgMCAwLS4yMi0uMzYgMS43MiAxLjcyIDAgMCAwLS4zNS0uMyAxLjU3IDEuNTcgMCAwIDAtLjQ0LS4xOCAxLjI3IDEuMjcgMCAwIDAgLjc0LS40NCAxLjE4IDEuMTggMCAwIDAgLjI3LS43OSAxLjM0IDEuMzQgMCAwIDAtLjI3LS43MSAxLjQ0IDEuNDQgMCAwIDAtLjQ1LS41IDEuODMgMS44MyAwIDAgMC0uNjMtLjMgMy4wNyAzLjA3IDAgMCAwLS43NC0uMSAyLjY2IDIuNjYgMCAwIDAtMS4zMS4zNyAyLjA4IDIuMDggMCAwIDAtLjQ5LjQ1IDEuOSAxLjkgMCAwIDAtLjMxLjYybDEuMjUuMjlhLjc3Ljc3IDAgMCAxIC4zMi0uNDEuODMuODMgMCAwIDEgMSAwIC41NC41NCAwIDAgMSAuMjIuNDcuNTkuNTkgMCAwIDEtLjA5LjM0LjYxLjYxIDAgMCAxLS4yMi4yIDEgMSAwIDAgMS0uMzIuMTFoLS43NnYxaC4zNmEyIDIgMCAwIDEgLjQyIDAgMS4wNyAxLjA3IDAgMCAxIC4zNy4xMi43My43MyAwIDAgMSAuMjcuMjIuNjkuNjkgMCAwIDEgLjEuMzYuNjguNjggMCAwIDEtLjA4LjM0LjY3LjY3IDAgMCAxLS4yLjJ6bTUuOTkuOThhMi45IDIuOSAwIDAgMCAxLS41MiAyLjUyIDIuNTIgMCAwIDAgLjczLS44OCAyLjczIDIuNzMgMCAwIDAgLjI4LTEuMjkgMyAzIDAgMCAwLS4yOC0xLjM0IDIuNDIgMi40MiAwIDAgMC0uNzQtLjg3IDIuOCAyLjggMCAwIDAtMS0uNDYgNC43IDQuNyAwIDAgMC0xLjE4LS4xNGgtMnY1LjY2aDIuMTFhNCA0IDAgMCAwIDEuMDgtLjE2em0tMS45Mi0xVjZoLjY4YTMuMDggMy4wOCAwIDAgMSAuNjguMDggMS44OCAxLjg4IDAgMCAxIC41OS4yNyAxLjUxIDEuNTEgMCAwIDEgLjQyLjUxIDEuODIgMS44MiAwIDAgMSAuMTUuNzkgMS44MiAxLjgyIDAgMCAxLS4xNS43OSAxLjQ2IDEuNDYgMCAwIDEtLjQyLjUyIDEuNjUgMS42NSAwIDAgMS0uNi4yNyAyLjc2IDIuNzYgMCAwIDEtLjcxLjA5eiIvPjwvZz48L3N2Zz4=')))} -function Oyb(a,b){var c,d,e,f,g,h;if(b.a){if(a.a){c=a.a;switch(b.k){case 24:e=new _td;Ytd(e,fId,'a');Ytd(e,gId,'A');Kyb(a,'Aromaticity (a/A)',new Ozb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1),e),c);break;case 18:Kyb(a,'Connections (X)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 16:Kyb(a,'Implicit H (h)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 21:Kyb(a,'Ring bond (rb)',new aAb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 17:Kyb(a,'Bond orders (v)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 19:Kyb(a,'Ring count (R)',new aAb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 20:Kyb(a,'Smallest ring size (r)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 22:Kyb(a,'Substitutions (s)',new aAb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 15:Kyb(a,'Total H (H)',new Vzb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 23:d=new _td;Ytd(d,hId,'u');Kyb(a,'Unsaturated (u)',new Ozb(b,a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1),d),c);}}}else{c=a.b;switch(b.k){case 0:Kyb(a,'Atom',new Zyb(a.n,a.c),c);break;case 1:Kyb(a,iId,new Czb(b,a.c,false),c);break;case 3:Kyb(a,'R',new Hzb(b,a.c,false,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 6:Kyb(a,'Alias',new Czb(b,a.c,!a.c||Cqd(a.c,b)&&Eqd(a.c,b)==null),c);break;case 7:Kyb(a,'Isotope',new Hzb(b,a.c,false,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 5:Kyb(a,'Elements',new lzb(a.c),c);break;case 4:Kyb(a,'List type',new xyb(a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 8:Kyb(a,jId,new Hzb(b,a.c,true,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 9:Kyb(a,kId,new rzb(a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 2:f=new zzb(a.c);Kyb(a,iFd,f,c);g=new ped;(abd(),g.U).innerHTML=lId;h=c.c.rows.length;Ffd(c,h,0,g);Ffd(c,h,1,Ryb(vuc(quc(D3c,1),_Hd,21,0,[f.a])));break;case 11:Kyb(a,mId,new Mzb(a.c,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);break;case 13:Kyb(a,'Map',new Hzb(b,a.c,false,(!a.c||!Cqd(a.c,b))&&(!a.i||a.i.a.length==0||Zr(a.i,b,0)==-1)),c);}}} -function Kmb(g){var d=(Sxd(),xxd(eHd));var e,f=g;$wnd.marvin.Sketch=Yxd(function(){var a,b=this,c=arguments;c.length==1&&f.Yj(c[0])?(a=c[0]):c.length==1?(a=new Hmb(c[0])):c.length==0&&(a=new Fmb);b.g=a;Vxd(a,b);return b});e=$wnd.marvin.Sketch.prototype=new Object;e._remove=Yxd(function(){this.g.Zj()});e.addButton=Yxd(function(a,b){this.g.$j(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.addTemplate=Yxd(function(a){this.g._j(a)});e.clear=Yxd(function(){this.g.Pb()});e.clearUndoStack=Yxd(function(){this.g.ak()});$wnd.marvin.Sketch.create=Yxd(function(a,b){return Xxd((rlb(),new Gmb(new Dmb(a,b))))});e.exportAsMol=Yxd(function(){return this.g.bk()});e.exportAsMrv=Yxd(function(){return this.g.ck()});e.exportStructure=Yxd(function(a,b){return this.g.dk(a,b)});e.getCanvas=Yxd(function(){return this.g.wk()});e.getConfiguration=Yxd(function(){return this.g.xk()});e.getDisplaySettings=Yxd(function(){return this.g.ek()});e.getSelection=Yxd(function(){return this.g.fk()});e.getSupportedFormats=Yxd(function(){return this.g.gk()});e.getToolbars=Yxd(function(){return this.g.yk()});e.hide=Yxd(function(a){this.g.zk(a)});e.importAsMol=Yxd(function(a){this.g.hk(a)});e.importAsMrv=Yxd(function(a){this.g.ik(a)});e.importStructure=Yxd(function(a,b){return this.g.jk(a,b)});e.isEmpty=Yxd(function(){return this.g.sd()});e.off=Yxd(function(a,b){this.g.kk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.on=Yxd(function(a,b){this.g.lk(a,b==null?null:b.constructor==$wnd.marvin.Sketch.Function?b.g:new $mb(b))});e.onMolChange=Yxd(function(a){this.g.mk(a==null?null:a.constructor==$wnd.marvin.Sketch.Function?a.g:new $mb(a))});e.pasteAsMol=Yxd(function(a){this.g.nk(a)});e.pasteAsMrv=Yxd(function(a){this.g.ok(a)});e.pasteStructure=Yxd(function(a,b){return this.g.pk(a,b)});e.setAutoChirality=Yxd(function(a){this.g.qk(a)});e.setDisplaySettings=Yxd(function(a){this.g.rk(a)});e.setHighlight=Yxd(function(a){Uxd(this.g,uMc,0,arguments,false,true)[0]});e.setSelection=Yxd(function(a){this.g.sk(a)});e.setServices=Yxd(function(a){this.g.tk(a)});e.setToolbars=Yxd(function(a){this.g.Ak(a)});e.show=Yxd(function(a){this.g.Bk(a)});Txd(uMc,{0:{1:[[Mmb,null,Wxd,'array']]}},false);if(d)for(p in d)$wnd.marvin.Sketch[p]===undefined&&($wnd.marvin.Sketch[p]=d[p]);Object.defineProperty(e,Fzd,{get:function(){return this.getCanvas()}})} -function Ntb(){Ntb=p9c;wsb=new bl(zHd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTkuMzcgMTAuNzFhLjc3Ljc3IDAgMCAxLS4yNi4xMiAxIDEgMCAwIDEtLjI5IDAgMSAxIDAgMCAxLS42NC0uMjEgMSAxIDAgMCAxLS4zMi0uNDlsLTEuMjUuMzNhMS44OCAxLjg4IDAgMCAwIC4zMy42OCAxLjkzIDEuOTMgMCAwIDAgLjUzLjQ2IDIuNDEgMi40MSAwIDAgMCAuNjYuMjcgMy4wOCAzLjA4IDAgMCAwIC43NS4wOSAyLjg3IDIuODcgMCAwIDAgLjc3LS4xMSAyLjEgMi4xIDAgMCAwIC42OS0uMzNBMS41OSAxLjU5IDAgMCAwIDExIDEwLjJhMS4yMyAxLjIzIDAgMCAwLS4zMS0uODMgMS4yMiAxLjIyIDAgMCAwLS4zNC0uMyAxLjcgMS43IDAgMCAwLS40NC0uMTggMS4zIDEuMyAwIDAgMCAuNjgtLjQ0IDEuMTkgMS4xOSAwIDAgMCAuMjctLjggMS40MiAxLjQyIDAgMCAwLS4xNy0uNyAxLjg0IDEuODQgMCAwIDAtLjQ1LS41MSAyIDIgMCAwIDAtLjY0LS4yOUEyLjU3IDIuNTcgMCAwIDAgOC44OSA2YTIuNjEgMi42MSAwIDAgMC0uNjkuMDkgMi42NyAyLjY3IDAgMCAwLS42Mi4yOCAyLjA2IDIuMDYgMCAwIDAtLjQ5LjQ0IDEuODYgMS44NiAwIDAgMC0uMzEuNjNMOCA3Ljc2YS44NC44NCAwIDAgMSAuMy0uNDYuOC44IDAgMCAxIC41LS4xNy44MS44MSAwIDAgMSAuNS4xNi41NS41NSAwIDAgMSAuMjEuNDcuNjIuNjIgMCAwIDEtLjA4LjMzLjU4LjU4IDAgMCAxLS4yMy4yMS43Ni43NiAwIDAgMS0uMzEuMSAyLjIyIDIuMjIgMCAwIDEtLjM3IDBoLS4zOXYxaC4zNmEyLjczIDIuNzMgMCAwIDEgLjQxIDAgMS44OSAxLjg5IDAgMCAxIC4zOC4xMi44My44MyAwIDAgMSAuMjYuMjMuNjEuNjEgMCAwIDEgLjEuMzYuNjguNjggMCAwIDEtLjA4LjM0LjY3LjY3IDAgMCAxLS4xOS4yNnptNiAuOTdhMy4wNiAzLjA2IDAgMCAwIDEtLjUxIDIuNjcgMi42NyAwIDAgMCAuNzMtLjg5QTIuODEgMi44MSAwIDAgMCAxNy4zOSA5YTIuODYgMi44NiAwIDAgMC0uMjgtMS4zNCAyLjI0IDIuMjQgMCAwIDAtLjczLS44NyAzLjA4IDMuMDggMCAwIDAtMS0uNDcgNS4zIDUuMyAwIDAgMC0xLjE5LS4xNEgxMi4xdjUuNjdoMi4xMmE0LjE2IDQuMTYgMCAwIDAgMS4xNS0uMTd6bS0xLjkzLTFWNy4zNWguNjhhMy4wOCAzLjA4IDAgMCAxIC42OC4wOCAxLjgxIDEuODEgMCAwIDEgLjYuMjcgMS4zNSAxLjM1IDAgMCAxIC40MS41QTEuNzMgMS43MyAwIDAgMSAxNiA5YTEuNzEgMS43MSAwIDAgMS0uMTYuNzkgMS4yNCAxLjI0IDAgMCAxLS40MS41MSAxLjgzIDEuODMgMCAwIDEtLjYuMjggMi44MSAyLjgxIDAgMCAxLS43MS4wOHoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOC4yNCA4LjM4bC0uNDYuODhDMTkuMjEgMTAgMjAgMTEgMjAgMTJzLS43OSAyLTIuMjIgMi43NEExMi42OCAxMi42OCAwIDAgMSAxMiAxNmMtLjQ3IDAtLjkzIDAtMS4zOS0uMDhsLjE4LTFMOCAxNmwuMTMtLjQ4YTEwLjQ4IDEwLjQ4IDAgMCAxLTEuODktLjc0QzQuNzkgMTQgNCAxMyA0IDEycy43OS0yIDIuMjItMi43NGwtLjQ2LS44OEM0IDkuMzIgMyAxMC42IDMgMTJzMSAyLjY4IDIuNzYgMy42MmExMC4zNyAxMC4zNyAwIDAgMCAyLjA4LjgzTDggMTZsMi4yOSAxLjkzLjE3LTFjLjUxIDAgMSAuMDggMS41Ni4wOGExMy41NSAxMy41NSAwIDAgMCA2LjI0LTEuMzhDMjAgMTQuNjggMjEgMTMuNCAyMSAxMnMtMS0yLjY4LTIuNzYtMy42MnoiLz48L2c+PC9zdmc+')))} -function YU(){YU=p9c;XU=new ltd;Hqd(XU,mnd(1),'rgb(100,100,100)');Hqd(XU,mnd(2),'rgb(153,102,102)');Hqd(XU,mnd(3),'rgb(102,0,0)');Hqd(XU,mnd(4),MCd);Hqd(XU,mnd(5),NCd);Hqd(XU,mnd(6),uBd);Hqd(XU,mnd(7),'rgb(51,51,153)');Hqd(XU,mnd(8),'rgb(230,25,25)');Hqd(XU,mnd(9),OCd);Hqd(XU,mnd(10),PCd);Hqd(XU,mnd(11),JCd);Hqd(XU,mnd(12),'rgb(0,102,0)');Hqd(XU,mnd(13),MCd);Hqd(XU,mnd(14),OCd);Hqd(XU,mnd(15),OCd);Hqd(XU,mnd(16),'rgb(102,102,0)');Hqd(XU,mnd(17),NCd);Hqd(XU,mnd(18),PCd);Hqd(XU,mnd(19),QCd);Hqd(XU,mnd(20),MCd);Hqd(XU,mnd(21),RCd);Hqd(XU,mnd(22),MCd);Hqd(XU,mnd(23),SCd);Hqd(XU,mnd(24),MCd);Hqd(XU,mnd(25),MCd);Hqd(XU,mnd(26),OCd);Hqd(XU,mnd(27),RCd);Hqd(XU,mnd(28),TCd);Hqd(XU,mnd(29),TCd);Hqd(XU,mnd(30),TCd);Hqd(XU,mnd(31),RCd);Hqd(XU,mnd(32),RCd);Hqd(XU,mnd(33),SCd);Hqd(XU,mnd(34),SCd);Hqd(XU,mnd(35),TCd);Hqd(XU,mnd(36),PCd);Hqd(XU,mnd(37),QCd);Hqd(XU,mnd(38),'rgb(153,51,51)');Hqd(XU,mnd(39),RCd);Hqd(XU,mnd(40),RCd);Hqd(XU,mnd(41),RCd);Hqd(XU,mnd(42),RCd);Hqd(XU,mnd(43),RCd);Hqd(XU,mnd(44),RCd);Hqd(XU,mnd(45),SCd);Hqd(XU,mnd(46),SCd);Hqd(XU,mnd(47),MCd);Hqd(XU,mnd(48),RCd);Hqd(XU,mnd(49),RCd);Hqd(XU,mnd(50),RCd);Hqd(XU,mnd(51),RCd);Hqd(XU,mnd(52),SCd);Hqd(XU,mnd(53),UCd);Hqd(XU,mnd(54),PCd);Hqd(XU,mnd(55),'rgb(0,153,153)');Hqd(XU,mnd(56),OCd);Hqd(XU,mnd(57),VCd);Hqd(XU,mnd(58),VCd);Hqd(XU,mnd(59),VCd);Hqd(XU,mnd(60),VCd);Hqd(XU,mnd(61),VCd);Hqd(XU,mnd(62),VCd);Hqd(XU,mnd(63),OCd);Hqd(XU,mnd(64),SCd);Hqd(XU,mnd(65),'rgb(0,153,0)');Hqd(XU,mnd(66),VCd);Hqd(XU,mnd(67),VCd);Hqd(XU,mnd(68),VCd);Hqd(XU,mnd(69),VCd);Hqd(XU,mnd(70),VCd);Hqd(XU,mnd(71),VCd);Hqd(XU,mnd(72),VCd);Hqd(XU,mnd(73),VCd);Hqd(XU,mnd(74),VCd);Hqd(XU,mnd(75),VCd);Hqd(XU,mnd(76),VCd);Hqd(XU,mnd(77),VCd);Hqd(XU,mnd(78),VCd);Hqd(XU,mnd(79),OCd);Hqd(XU,mnd(80),PCd);Hqd(XU,mnd(81),VCd);Hqd(XU,mnd(82),PCd);Hqd(XU,mnd(83),VCd);Hqd(XU,mnd(84),VCd);Hqd(XU,mnd(85),UCd);Hqd(XU,mnd(86),PCd);Hqd(XU,mnd(87),VCd);Hqd(XU,mnd(88),VCd);Hqd(XU,mnd(89),VCd);Hqd(XU,mnd(90),VCd);Hqd(XU,mnd(91),VCd);Hqd(XU,mnd(92),OCd);Hqd(XU,mnd(93),VCd);Hqd(XU,mnd(94),VCd);Hqd(XU,mnd(95),VCd);Hqd(XU,mnd(96),VCd);Hqd(XU,mnd(97),VCd);Hqd(XU,mnd(98),VCd);Hqd(XU,mnd(99),VCd);Hqd(XU,mnd(100),VCd);Hqd(XU,mnd(101),VCd);Hqd(XU,mnd(102),VCd);Hqd(XU,mnd(103),VCd);Hqd(XU,mnd(104),VCd);Hqd(XU,mnd(105),VCd);Hqd(XU,mnd(106),VCd);Hqd(XU,mnd(107),VCd);Hqd(XU,mnd(108),VCd);Hqd(XU,mnd(109),VCd);Hqd(XU,mnd(110),uBd);Hqd(XU,mnd(111),uBd);Hqd(XU,mnd(112),uBd);Hqd(XU,mnd(113),uBd);Hqd(XU,mnd(114),uBd);Hqd(XU,mnd(115),uBd);Hqd(XU,mnd(116),uBd);Hqd(XU,mnd(117),uBd);Hqd(XU,mnd(118),uBd);Hqd(XU,mnd(119),uBd);Hqd(XU,mnd(120),uBd);Hqd(XU,mnd(121),uBd);Hqd(XU,mnd(122),uBd);Hqd(XU,mnd(123),uBd);Hqd(XU,mnd(124),uBd);Hqd(XU,mnd(125),uBd);Hqd(XU,mnd(126),uBd)} -function WZb(){WZb=p9c;sYb=new XZb('H',0);tYb=new XZb('HE',1);EYb=new XZb('LI',2);PXb=new XZb('BE',3);NXb=new XZb('B',4);UXb=new XZb('C',5);PYb=new XZb('N',6);XYb=new XZb('O',7);kYb=new XZb('F',8);TYb=new XZb('NE',9);QYb=new XZb('NA',10);KYb=new XZb('MG',11);HXb=new XZb('AL',12);vZb=new XZb('SI',13);ZYb=new XZb('P',14);qZb=new XZb('S',15);ZXb=new XZb('CL',16);JXb=new XZb('AR',17);BYb=new XZb('K',18);VXb=new XZb('CA',19);sZb=new XZb('SC',20);EZb=new XZb('TI',21);MZb=new XZb('V',22);bYb=new XZb('CR',23);MYb=new XZb('MN',24);lYb=new XZb('FE',25);aYb=new XZb('CO',26);UYb=new XZb('NI',27);dYb=new XZb('CU',28);TZb=new XZb('ZN',29);pYb=new XZb('GA',30);rYb=new XZb('GE',31);KXb=new XZb('AS',32);tZb=new XZb('SE',33);TXb=new XZb('BR',34);CYb=new XZb('KR',35);jZb=new XZb('RB',36);yZb=new XZb('SR',37);RZb=new XZb('Y',38);UZb=new XZb('ZR',39);RYb=new XZb('NB',40);NYb=new XZb('MO',41);BZb=new XZb('TC',42);pZb=new XZb('RU',43);nZb=new XZb('RH',44);aZb=new XZb('PD',45);FXb=new XZb('AG',46);WXb=new XZb('CD',47);zYb=new XZb('IN',48);xZb=new XZb('SN',49);rZb=new XZb('SB',50);CZb=new XZb('TE',51);yYb=new XZb('I',52);PZb=new XZb('XE',53);cYb=new XZb('CS',54);OXb=new XZb('BA',55);DYb=new XZb('LA',56);XXb=new XZb('CE',57);dZb=new XZb('PR',58);SYb=new XZb('ND',59);bZb=new XZb('PM',60);wZb=new XZb('SM',61);jYb=new XZb('EU',62);qYb=new XZb('GD',63);AZb=new XZb('TB',64);gYb=new XZb('DY',65);wYb=new XZb('HO',66);hYb=new XZb('ER',67);GZb=new XZb('TM',68);SZb=new XZb('YB',69);GYb=new XZb('LU',70);uYb=new XZb('HF',71);zZb=new XZb('TA',72);NZb=new XZb('W',73);kZb=new XZb('RE',74);YYb=new XZb('OS',75);AYb=new XZb('IR',76);eZb=new XZb('PT',77);MXb=new XZb('AU',78);vYb=new XZb('HG',79);FZb=new XZb('TL',80);_Yb=new XZb('PB',81);RXb=new XZb('BI',82);cZb=new XZb('PO',83);LXb=new XZb('AT',84);oZb=new XZb('RN',85);oYb=new XZb('FR',86);iZb=new XZb('RA',87);EXb=new XZb('AC',88);DZb=new XZb('TH',89);$Yb=new XZb('PA',90);HZb=new XZb('U',91);WYb=new XZb('NP',92);fZb=new XZb('PU',93);IXb=new XZb('AM',94);$Xb=new XZb('CM',95);SXb=new XZb('BK',96);YXb=new XZb('CF',97);iYb=new XZb('ES',98);nYb=new XZb('FM',99);JYb=new XZb('MD',100);VYb=new XZb('NO',101);FYb=new XZb('LR',102);lZb=new XZb('RF',103);eYb=new XZb('DB',104);uZb=new XZb('SG',105);QXb=new XZb('BH',106);xYb=new XZb('HS',107);OYb=new XZb('MT',108);fYb=new XZb('DS',109);mZb=new XZb('RG',110);_Xb=new XZb('CN',111);LZb=new XZb('UUT',112);mYb=new XZb('FL',113);JZb=new XZb('UUP',114);HYb=new XZb('LV',115);KZb=new XZb('UUS',116);IZb=new XZb('UUO',117);DXb=new YZb('A',118,false);gZb=new YZb('Q',119,false);IYb=new YZb('M',120,false);OZb=new YZb('X',121,false);GXb=new YZb('AH',122,false);hZb=new YZb('QH',123,false);LYb=new YZb('MH',124,false);QZb=new YZb('XH',125,false);VZb=a$b()} -function _jb(a){var b,c,d,e,f;c=new bqb(a.d,null);nkb(a,'duplicate',new fpb(a.f,a.d));nkb(a,'erase',new hpb(a.f,new mI(a.f),(htb(),Srb)));nkb(a,BFd,new gob('Chain',(Zsb(),Irb),a.f,new hI(a.f)));nkb(a,CFd,new vpb(a.f,(ytb(),hsb)));nkb(a,DFd,new _ob(a.f,(gtb(),Rrb)));nkb(a,'clear',new xob(a.f,(btb(),Mrb)));nkb(a,QAd,new epb(a.f,a.d));nkb(a,'zoomToFit',new qpb(a.f.i,(rtb(),asb)));nkb(a,EFd,new Tpb('Position variation bond',(Itb(),rsb),a.f,(s6b(),m6b)));nkb(a,FFd,new rpb(a.f.i,(stb(),bsb)));nkb(a,GFd,(e=new gob('Drawing'+(Ds().length==0||'D'.length==0?'':' ('+Ds()+'+'+'D'+')'),(ttb(),csb),a.f,new TI(a.f)),ud(e,HFd,(nk(),f=Und('SHORTCUT+D',iAd,0),qk(f[f.length-1],rk(f)))),e));nkb(a,IFd,$pb('Ungroup',(cub(),Nsb),tpb(new upb(null),a.f),new bqb(a.d,a.f.i)));d=new _pb((yrb(),vrb),new Mob(a.f),c);bcb(a.a,JFd,d);nkb(a,'rlogic',new nqb(a.f.i,new OQb(new zQb(a.e.a))));nkb(a,KFd,new gob('R-Group attachment',(Jtb(),ssb),a.f,new cJ(a.f)));nkb(a,LFd,new eqb('Straight arrow / Reaction / Atom map',(Vtb(),Esb),a.f,new _O(a.f,(RTb(),PTb))));nkb(a,MFd,new eqb('Two-headed arrow / Reaction / Atom map',(aub(),Lsb),a.f,new _O(a.f,QTb)));nkb(a,NFd,new eqb('Equilibrium arrow / Reaction / Atom map',(ptb(),$rb),a.f,new _O(a.f,OTb)));nkb(a,'box',new gob('Rectangle',(vtb(),esb),a.f,new zJ(a.f,(V8b(),U8b))));nkb(a,OFd,new gob('Ellipse',(otb(),Zrb),a.f,new zJ(a.f,T8b)));nkb(a,tFd,new gob('Text',($tb(),Jsb),a.f,new pQ(a.f,new rQ)));nkb(a,PFd,new Cqb(a.f,esb,new OQb(new HQb(a.e.a)),a.d));nkb(a,'merge',new Zpb('Merge Agents',new Sob(a.f),c));nkb(a,'unmerge',new Zpb('Unmerge Agent(s)',new lqb(a.f),c));nkb(a,QFd,new aob(a.d,a.f));nkb(a,RFd,new mqb(a.d,a.f));nkb(a,SFd,new gob('Increase radical',(Atb(),jsb),a.f,new yJ(a.f)));nkb(a,TFd,new ypb((ztb(),isb),a.f,new xJ(a.f)));nkb(a,'D',fkb(a,(v1b(),t1b)));nkb(a,'T',fkb(a,u1b));nkb(a,'R',oob(a.f,new H3b,'R'));nkb(a,'starAtom',new mob(a.f,kUb(),'*',null));nkb(a,'clearSelection',new yob(a.f));nkb(a,'selectAll',new xqb(a.f));nkb(a,UFd,new Jqb(a.f.i,a.b,(fub(),Qsb)));nkb(a,VFd,new Kqb(a.f.i,a.b,(gub(),Rsb)));nkb(a,'scrollLeft',new vqb('Scroll \u2190',a.f.i,'ARROWLEFT'));nkb(a,'scrollRight',new vqb('Scroll \u2192',a.f.i,WFd));nkb(a,'scrollUp',new vqb('Scroll \u2191',a.f.i,'ARROWUP'));nkb(a,'scrollDown',new vqb('Scroll \u2193',a.f.i,'ARROWDOWN'));nkb(a,XFd,new cpb('Max Substitution Count',(Etb(),nsb),a.f,new vJ(a.f,'s',new aJ),new hJ(a.f,new aJ)));nkb(a,'lockAtom',new cpb('Lock Atom',(Btb(),ksb),a.f,new vJ(a.f,'s*',(rJ(),pJ)),new hJ(a.f,pJ)));nkb(a,YFd,new eqb('Manual Mapping',(Dtb(),msb),a.f,new _O(a.f,PTb)));nkb(a,'simplifiedRepeatingUnit',Wob((wtb(),fsb),a.f));nkb(a,ZFd,Vob(($sb(),Jrb),a.f));nkb(a,'repeatingUnit',Uob((Mtb(),vsb),a.f));b=nkb(a,$Fd,new wob(Mu(a.f.i)));Ccb(b,new xO(a.f,false,new Yob(false)));Ccb(b,new oO(a.f,new RGb));Wub(a.d,b)} -function Etb(){Etb=p9c;nsb=new bl(XFd,(Z9c(),new U9c('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmV9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTAgMGgyNHYyNEgweiIvPjwvZz48cGF0aCBkPSJNNi4xNCAxMS40M2EuODguODggMCAwIDAtLjMtLjcuOTQuOTQgMCAwIDAtLjY0LS4yNC44My44MyAwIDAgMC0uNjYuMjggMSAxIDAgMCAwLS4yNC42NCAxIDEgMCAwIDAgLjEzLjUgMS4xNiAxLjE2IDAgMCAwIC42NS40NGwxLjA4LjQzYTIuNiAyLjYgMCAwIDEgMS40MSAxLjA4QTMgMyAwIDAgMSA4IDE1LjM1YTIuNjkgMi42OSAwIDAgMS0uMjEgMS4wNyAyLjkgMi45IDAgMCAxLS41Ny44OCAyLjU5IDIuNTkgMCAwIDEtLjg2LjU5IDIuNjcgMi42NyAwIDAgMS0xLjEuMjIgMi42OCAyLjY4IDAgMCAxLTEuODctLjcgMi41OCAyLjU4IDAgMCAxLS42MS0uODYgMy4xMiAzLjEyIDAgMCAxLS4yNi0xLjJoMS42OWEyIDIgMCAwIDAgLjI2LjcxLjgxLjgxIDAgMCAwIC43My4zMiAxLjA5IDEuMDkgMCAwIDAgLjcxLS4yNi45LjkgMCAwIDAgLjMyLS43MyAxLjA5IDEuMDkgMCAwIDAtLjItLjY1IDEuNiAxLjYgMCAwIDAtLjcyLS40N0w0LjQzIDE0YTMuMDYgMy4wNiAwIDAgMS0xLjM2LTEgMi40OCAyLjQ4IDAgMCAxLS40OS0xLjU2IDIuNzIgMi43MiAwIDAgMSAuMjEtMS4wNyAyLjU5IDIuNTkgMCAwIDEgLjU5LS44NkEyLjM3IDIuMzcgMCAwIDEgNC4yMyA5YTIuNzUgMi43NSAwIDAgMSAxLS4xOSAyLjcxIDIuNzEgMCAwIDEgMSAuMTkgMi40OSAyLjQ5IDAgMCAxIC44Mi41NiAyLjYyIDIuNjIgMCAwIDEgLjU0Ljg2IDIuODQgMi44NCAwIDAgMSAuMiAxem0yLjY5LjU3VjYuNjlIOS45di41MWExLjM0IDEuMzQgMCAwIDEgLjQxLS40MSAxLjExIDEuMTEgMCAwIDEgMS4xOCAwIDEuNDQgMS40NCAwIDAgMSAuMzcuMzcgMi4yMiAyLjIyIDAgMCAxIC40NC0uMzggMS4yIDEuMiAwIDAgMSAuNy0uMTYgMS42IDEuNiAwIDAgMSAuNDEuMDcgMSAxIDAgMCAxIC4zNy4yMyAxLjE5IDEuMTkgMCAwIDEgLjI4LjQgMS43NSAxLjc1IDAgMCAxIC4xLjZWMTJoLTEuMDdWOC4zMmEuNzIuNzIgMCAwIDAtLjA5LS40Ni40Ny40NyAwIDAgMC0uMzgtLjE3LjQ1LjQ1IDAgMCAwLS40Mi4xOSAxIDEgMCAwIDAtLjEyLjU1VjEySDExVjguMzJhLjcyLjcyIDAgMCAwLS4xNC0uNDYuNDguNDggMCAwIDAtLjM5LS4xNy40NC40NCAwIDAgMC0uNDEuMTkgMSAxIDAgMCAwLS4xMi41NVYxMnptOC4yNCAwdi0uNTVhMS44NyAxLjg3IDAgMCAxLS40My40NSAxIDEgMCAwIDEtLjYuMTYgMS4zMiAxLjMyIDAgMCAxLS4zOS0uMDYgMS4wNyAxLjA3IDAgMCAxLS4zNy0uMjEgMS4wOCAxLjA4IDAgMCAxLS4yOS0uNDMgMiAyIDAgMCAxLS4xMS0uNzIgMy43IDMuNyAwIDAgMSAuMDgtLjc5IDEuMjYgMS4yNiAwIDAgMSAuMjctLjU3IDEuMDggMS4wOCAwIDAgMSAuNDktLjI4IDIuNDkgMi40OSAwIDAgMSAuODMtLjExaC41MnYtLjU3YS43OS43OSAwIDAgMC0uMDctLjQ1LjQ3LjQ3IDAgMCAwLS40Mi0uMTguNTkuNTkgMCAwIDAtLjM4LjE0LjY0LjY0IDAgMCAwLS4yMy40aC0xYTEuNzIgMS43MiAwIDAgMSAuNDktMS4xNiAxLjQ1IDEuNDUgMCAwIDEgLjUtLjMzIDEuNzYgMS43NiAwIDAgMSAuNjYtLjEyIDEuOSAxLjkgMCAwIDEgLjYzLjExIDEuNDQgMS40NCAwIDAgMSAuNTIuMzEgMS40OSAxLjQ5IDAgMCAxIC4zMy41MyAyIDIgMCAwIDEgLjEzLjczVjEyem0wLTIuMjloLS4zYTEgMSAwIDAgMC0uNTkuMTYuNjcuNjcgMCAwIDAtLjI1LjU5Ljc4Ljc4IDAgMCAwIC4xNS41LjUuNSAwIDAgMCAuNDEuMTguNTEuNTEgMCAwIDAgLjQyLS4xNy43My43MyAwIDAgMCAuMTYtLjUxem0xLjMgMi4yOWwxLjMxLTIuNzItMS4yNS0yLjZoMS4xM2wuNjcgMS41MS42Ni0xLjUxSDIybC0xLjI3IDIuNkwyMi4wOCAxMkgyMWwtLjcyLTEuNjNMMTkuNSAxMnoiIGZpbGw9IiM1MDUwNTAiIGlkPSJJY29ucyIvPjwvc3ZnPg==')))} -function Y0(){Y0=p9c;var a,b,c;X0=new ltd;c=Und('NHi-Am=i-AmNH\nMgCl=ClMg\nN+Et4=Et4N+\nCO2Bn=BnO2C\nSiMe3=Me3Si\nN+Et3=Et3N+\nOt-Bu=t-BuO\nCOs-Bu=s-BuCO\nC13H27=H27C13\nNHi-Pr=i-PrNH\nCO2Bu=BuO2C\nCOONa=NaOOC\nOTBS=TBSO\nSneo-Am=neo-AmS\nCBr3=Br3C\nCOOn-Bu=n-BuOOC\nCOtBu=tBuCO\nNHneo-Am=neo-AmNH\nC16H33=H33C16\nCO2Am=AmO2C\nOt-Am=t-AmO\nCOOiAm=iAmOOC\no-C6H4=o-C6H4\nSnMe3=Me3Sn\nC17H35=H35C17\nNO3=O3N\nNO2=O2N\nN+Me3=Me3N+\nOEt=EtO\nOnPr=nPrO\nCOOMe=MeOOC\nSi-Pr=i-PrS\nNHAm=AmNH\nC5H11=H11C5\nCOOiBu=iBuOOC\nSAm=AmS\nOSu=SuO\nC15H31=H31C15\nOtBu=tBuO\nNHBn=BnNH\nOBu=BuO\nNHt-Am=t-AmNH\nOTf=TfO\nOBz=BzO\nOTs=TsO\nNHBu=BuNH\nCF3=F3C\nSCN=NCS\nMgBr=BrMg\nCONHMe=MeNHCO\nOtAm=tAmO\nNHTs=TsNH\nOTBDMS=TBDMSO\nOPfp=PfpO\nC4H9=H9C4\nSs-Am=s-AmS\nOTMS=TMSO\nCONMe2=Me2NCO\nOPMB=PMBO\nSnBu3=Bu3Sn\nCH2CH2Ph=PhCh2CH2\nCO2i-Pr=i-PrO2C\nCOOt-Bu=t-BuOOC\nSBu=BuS\nCOt-Bu=t-BuCO\nNHs-Bu=s-BuNH\nNHneoAm=neoAmNH\nCOOi-Am=i-AmOOC\nSO2Ph=PhSO2\nC11H23=H23C11\nPiP=PPi\nC25H51=H51C25\nC24H49=H49C24\nCOOAm=AmOOC\nCO2Et=EtO2C\nCONH2=NH2CO\nCOOPr=PrOOC\nPhOMe=MeOPh\nC18H37=H37C18\nNHOH=HONH\nCOOi-Bu=i-BuOOC\nNHAc=AcNH\nCO2neoAm=neoAmO2C\nNHBoc=BocNH\nCO2iPr=iPrO2C\nPO(OEt)2=(EtO)2OP\nONO2=NO2O\nOiPr=iPrO\nNHn-Bu=n-BuNH\nCOOPh=PhOOC\nSO3H=HO3S\nCOOneoAm=neoAmOOC\nC21H43=H43C21\nCO2sBu=sBuO2C\nCHO=OHC\nSs-Bu=s-BuS\nOSiME3=SiMe3O\nNHCbz=CbzNH\nSn-Bu=n-BuS\nNHn-Am=n-AmNH\nSO2NH2=NH2SO2\nSK=KS\nPPh3=Ph3P\nCOOt-Am=t-AmOOC\nSEt=EtS\nPPh2=Ph2P\nCOEt=EtCO\nNHPh=PhNH\nNHPr=PrNH\nOiAm=iAmO\nOn-Am=n-AmO\nNHs-Am=s-AmNH\nOn-Pr=n-PrO\nCN=NC\nCOOtAm=tAmOOC\nC14H29=H29C14\nC19H39=H39C19\nOSiEt3=SiEt3O\nCO2neo-Am=neo-AmO2C\nOMs=MsO\nCOCl=ClCO\nC12H25=H25C12\nSO2Cl=ClSO2\nPO3=O3P\nCO2s-Am=s-AmO2C\nCOF=FCO\nCOSH=HSCO\nOMe=MeO\nPO3H=HO3P\nONp=NpO\nSiPr=iPrS\nCOOEt=EtOOC\nSn-Am=n-AmS\nSPh=PhS\nCOBr=BrCO\nCOBu=BuCO\nSneoAm=neoAmS\nC23H47=H47C23\nNEt2=Et2N\nONa=NaO\nNEt3=Et3N\nCO2i-Am=i-AmO2C\nSPr=PrS\nNC=CN\nOn-Bu=n-BuO\nCO2n-Pr=n-PrO2C\nCOOBu=BuOOC\nCO2n-Bu=n-BuO2C\nOMe3Si=SiMe3O\nP(OMe)2=(MeO)2P\nNHMe=MeNH\nNO=ON\nNHiPr=iPrNH\nOK=KO\nCONHEt=EtNHCO\nCOPh=PhCO\nNHtBu=tBuNH\nCOOBn=BnOOC\nCO2K=KO2C\nSiAm=iAmS\nSiEt3=Et3Si\nOTHP=THPO\nCO2H=HO2C\nCO2Me=MeO2C\nCOPr=PrCO\nStAm=tAmS\nStBu=tBuS\nNMe2=Me2N\nC9H19=H19C9\nCO2n-Am=n-AmO2C\nCCl3=Cl3C\nNHZ=ZNH\nCO2s-Bu=s-BuO2C\nC2H5=H5C2\nC3H7=H7C3\nOLi=LiO\nCO2iBu=iBuO2C\nC7H15=H15C7\nCOOi-Pr=i-PrOOC\nNHtAm=tAmNH\nC8H17=H17C8\nCOOs-Am=s-AmOOC\nNHiAm=iAmNH\nC10H21=H21C10\nOCN=NCO\nOBn=BnO\nCO2t-Bu=t-BuO2C\nOTIPS=TIPSO\nCO2tAm=tAmO2C\nCO2iAm=iAmO2C\nOs-Bu=s-BuO\nP(OEt)2=(EtO)2P\nCOOK=KOOC\nSi-Am=i-AmS\nCOOH=HOOC\nOH2+=+H2O\nCOiPr=iPrCO\nOneoAm=neoAmO\nCPh3=Ph3C\nNCO=OCN\nNHt-Bu=t-BuNH\nNCS=SCN\nOAm=AmO\nOi-Am=i-AmO\nOi-Pr=i-PrO\nOTES=TESO\nC20H41=H41C20\nOAc=AcO\nCO2t-Am=t-AmO2C\nSLi=LiS\nOTos=TosO\nCO2Na=NaO2C\nCH2CH3=CH3CH2\nCOOs-Bu=s-BuOOC\nNHEt=EtNH\nCO2Pr=PrO2C\nPO(OMe)2=(MeO)2OP\nCOOiPr=iPrOOC\nNHTos=TosNH\nSMe=MeS\nOneo-Am=neo-AmO\nCO2tBu=tBuO2C\nCO2i-Bu=i-BuO2C\nCOOtBu=tBuOOC\nCOOn-Am=n-AmOOC\nSt-Am=t-AmS\nC6H13=H13C6\nCOOsBu=sBuOOC\nOTre=TreO\nCONEt2=Et2NCO\nPO3H2=H2PO3\nCOsBu=sBuCO\nC22H45=H45C22\nSNa=NaS\nCOCF3=CF3CO\nCOOneo-Am=neo-AmOOC\nOPr=PrO\nCO2Ph=PhO2C\nOPh=PhO\nP+Ph3=Ph3P+\nSt-Bu=t-BuS\nCOMe=MeCO\nOs-Am=s-AmO\n',oyd,0);for(b=0;b<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"Pyrrole",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTYgNmgxdjZINnptMTEgMGgxdjZoLTF6bS0zIDEwdjZoLTFsLTEuOS0zLjU2VjIySDEwdi02aDFsMS45MyAzLjYxVjE2eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTguNTQgMTUuNDZMNSAxMi45OVY1aDE0djcuOTlsLTMuNTQgMi40Ny43Mi43MkwyMCAxMy41MVY0SDR2OS41MWwzLjgyIDIuNjcuNzItLjcyeiIvPjwvZz48L3N2Zz4="\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"CycloPentane (house)",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgMTkuNjlsLTgtNS44MVY0LjMxaDE2djkuNTd6bS03LTYuMzJsNyA1LjA5IDctNS4wOVY1LjMxSDV6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+"\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"CycloPentane",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTguMjQgMjEuNkg1Ljc2TDEuOSA5LjczIDEyIDIuNGwxMC4xIDcuMzN6bS0xMS43Ni0xaDExbDMuNC0xMC40OUwxMiAzLjYzbC04LjkyIDYuNDh6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+"\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"CycloHexane",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48cGF0aCBkPSJNMTIgMi41Nmw4IDQuNjJ2OS42NGwtOCA0LjYyLTgtNC42MlY3LjE4em0wLS45NUwzIDYuOHYxMC40bDkgNS4xOSA5LTUuMTlWNi44bC05LTUuMTl6IiBmaWxsPSIjNTA1MDUwIi8+PC9zdmc+"\n\t},\n\t{\n\t\t"structure":"<\/atomArray><\/bondArray><\/molecule><\/MChemicalStruct><\/MDocument><\/cml>",\n\t\t"name":"Benzene",\n\t\t"icon":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGRlZnM+PHN0eWxlPi5jbHMtMntmaWxsOiM1MDUwNTB9PC9zdHlsZT48L2RlZnM+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgaWQ9IlRyaW1fQXJlYSIgZGF0YS1uYW1lPSJUcmltIEFyZWEiLz48ZyBpZD0iSWNvbnMiPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTEyIDIuNTZsOCA0LjYydjkuNjRsLTggNC42Mi04LTQuNjJWNy4xOHptMC0uOTVMMyA2Ljh2MTAuNGw5IDUuMTkgOS01LjE5VjYuOGwtOS01LjE5eiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTUuMjggOS41Mmw4LjIxLTQuNzQtMS0uNTgtNy4yMSA0LjE2djEuMTZ6TTE4LjUxIDE2VjcuNjdsLTEtLjU3djkuNDhsMS0uNTh6bS0xMy4yMy0uOTV2MS4xNWw2LjQ0IDMuNzIgMS0uNTgtNy40NC00LjI5eiIvPjwvZz48L3N2Zz4="\n\t}\n\t]\n}'),new zSb(new rSb(e,d))):new zSb(uSb(c,Fqd(c.b.a,_Gd)))} -function RQb(a){if(!a.a){a.a=true;Xnc();Znc((Lsc(),'.mjs-top .gwt-Reference-clean{height:5px;width:5px;zoom:1;}.mjs-top .gwt-Button{margin:0;padding:5px 7px;text-decoration:none;cursor:pointer;cursor:hand;font-size:small;color:white;background-image:none;font-weight:normal;text-align:center;min-width:80px;border-radius:1px;border:1px solid #3498db;background-color:#3498db;}.mjs-top .gwt-Button.mjs-marginRight{margin-right:10px;}.mjs-top .gwt-Button[disabled]{cursor:default;color:#888;}.mjs-top .gwt-Button[disabled]:hover{border:1px outset #ccc;}.mjs-top .gwt-CheckBox-disabled{color:#888;}.mjs-top .gwt-CheckBox input{margin:3px 5px 0 0;}.mjs-top.gwt-DialogBox{-webkit-box-shadow:2px 2px 5px #888;-moz-box-shadow:2px 2px 5px #888;box-shadow:2px 2px 5px #888;border:none;}.mjs-top.gwt-DialogBox table{border-collapse:collapse;border-spacing:0;}.mjs-top.gwt-DialogBox .dialogMiddleLeft,.mjs-top.gwt-DialogBox .dialogMiddleRight,.mjs-top.gwt-DialogBox .dialogBottomLeft,.mjs-top.gwt-DialogBox .dialogBottomCenter,.mjs-top.gwt-DialogBox .dialogBottomRight{background-image:none;background-color:white;}.mjs-top.gwt-DialogBox .dialogTopRight,.mjs-top.gwt-DialogBox .dialogTopLeft{background-image:none;background-color:#f1f1f1;}.mjs-top.gwt-DialogBox .dialogTopRightInner,.mjs-top.gwt-DialogBox .dialogBottomRightInner{width:10px;}.mjs-top.gwt-DialogBox .Caption{background:#f1f1f1;padding:4px 8px 4px 4px;cursor:default;font-family:Arial Unicode MS, Arial, sans-serif;font-weight:bold;width:100%;border:0;}.mjs-top.gwt-DialogBox .Caption td{vertical-align:middle;color:#707070;font-weight:bold;font-size:14px;}.mjs-top.gwt-DialogBox .dialogMiddleCenter{padding:3px;background:white;}.mjs-top.gwt-DialogBox .dialogTopLeftInner{width:10px;height:8px;zoom:1;}.mjs-top.gwt-DialogBox .dialogTopRightInner{width:12px;zoom:1;}.mjs-top.gwt-DialogBox .dialogBottomLeftInner{width:10px;height:12px;zoom:1;}.mjs-top.gwt-DialogBox .dialogBottomRightInner{width:12px;height:12px;zoom:1;}.mjs-top .gwt-DisclosurePanel .header,.mjs-top .gwt-DisclosurePanel .header a,.mjs-top .gwt-DisclosurePanel .header td{text-decoration:none;color:black;cursor:pointer;cursor:hand;}.mjs-top .gwt-DisclosurePanel .content{border-left:3px solid #e7e7e7;padding:4px 0 4px 8px;margin-left:6px;}.mjs-top .gwt-Frame{border-top:2px solid #666;border-left:2px solid #666;border-right:2px solid #bbb;border-bottom:2px solid #bbb;}.mjs-top .gwt-HTML{padding:0 0;}.mjs-top .gwt-Hyperlink{cursor:pointer;}.mjs-top .gwt-MenuBar{cursor:default;}.mjs-top .gwt-MenuBar .gwt-MenuItem{cursor:default;font-family:Arial Unicode MS, Arial, sans-serif;padding-right:3px;white-space:nowrap;}.mjs-top .gwt-MenuBar .gwt-MenuItem-selected{background:#e3e8f3;}.mjs-top .gwt-MenuBar-horizontal{background:#e3e8f3;border:1px solid #e0e0e0;}.mjs-top .gwt-MenuBar-horizontal .gwt-MenuItem{padding:5px 10px;vertical-align:bottom;color:#000;font-weight:normal;}.mjs-top .gwt-MenuBar-horizontal .gwt-MenuItemSeparator{width:1px;padding:0;margin:0;border:0;border-left:1px solid #ccc;background:white;}.mjs-top .gwt-MenuBar-horizontal .gwt-MenuItemSeparator .menuSeparatorInner{width:1px;height:1px;background:white;}.mjs-top .gwt-MenuBar-vertical{margin-top:0;margin-left:0;background:white;}.mjs-top .gwt-MenuBar-vertical table{border-collapse:collapse;}.mjs-top .gwt-MenuBar-vertical .gwt-MenuItem{padding:2px 40px 2px 1px;}.mjs-top .gwt-MenuBar-vertical .gwt-MenuItemSeparator{padding:2px 0;}.mjs-top .gwt-MenuBar-vertical .gwt-MenuItemSeparator .menuSeparatorInner{height:1px;padding:0;border:0;border-top:1px solid #ccc;overflow:hidden;}.mjs-top .gwt-MenuBar-vertical .subMenuIcon{padding-right:4px;}.mjs-top .gwt-MenuBar-vertical .subMenuIcon-selected{background:#e3e8f3;}.mjs-top.gwt-MenuBarPopup .menuPopupTopLeftInner{width:5px;height:5px;zoom:1;}.mjs-top.gwt-MenuBarPopup .menuPopupTopRightInner{width:8px;height:5px;zoom:1;}.mjs-top.gwt-MenuBarPopup .menuPopupBottomLeftInner{width:5px;height:8px;zoom:1;}.mjs-top.gwt-MenuBarPopup .menuPopupBottomRightInner{width:8px;height:8px;zoom:1;}.mjs-top .gwt-PasswordTextBox{padding:5px 4px;border:1px solid #ccc;border-top:1px solid #999;font-size:100%;}.mjs-top .gwt-PasswordTextBox-readonly,.mjs-top .gwt-RadioButton-disabled{color:#888;}.mjs-top.gwt-PopupPanel{border:none;padding:3px;background:white;-moz-box-shadow:1px 1px 5px 2px #ccc;-webkit-box-shadow:1px 1px 5px 2px #ccc;box-shadow:1px 1px 5px 2px #ccc;padding:0;}.mjs-top.gwt-PopupPanelGlass{background-color:#000;opacity:0.3;filter:alpha(opacity=30);}.mjs-top .gwt-PushButton-up,.mjs-top .gwt-PushButton-up-hovering,.mjs-top .gwt-PushButton-up-disabled,.mjs-top .gwt-PushButton-down,.mjs-top .gwt-PushButton-down-hovering,.mjs-top .gwt-PushButton-down-disabled{text-align:center;vertical-align:middle;font-weight:normal;padding:0;margin:0;text-decoration:none;border:1px solid white;outline:none;}.mjs-top .gwt-PushButton-up,.mjs-top .gwt-PushButton-up-hovering{padding:0;cursor:pointer;cursor:hand;}.mjs-top .gwt-PushButton-up-disabled{padding:0;}.mjs-top .gwt-PushButton-down,.mjs-top .gwt-PushButton-down-hovering{cursor:pointer;cursor:hand;border:1px solid #b6cdef;background-color:#b6cdef;}.mjs-top .gwt-PushButton-up-disabled,.mjs-top .gwt-PushButton-down-disabled{cursor:default;opacity:0.5;filter:alpha(opacity=45);zoom:1;}.mjs-top .gwt-RichTextArea{padding:2px;margin-top:4px;border:1px solid #ccc;border-top:1px solid #666;font-size:100%;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top .gwt-SuggestBox{padding:5px 4px;border:1px solid #ccc;border-top:1px solid #999;font-size:100%;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top.gwt-SuggestBoxPopup{background-color:white;-moz-box-shadow:2px 2px 3px 1px #ccc;-webkit-box-shadow:2px 2px 3px 1px #ccc;box-shadow:2px 2px 3px 1px #ccc;}.mjs-top.gwt-SuggestBoxPopup .item{padding:2px 6px;color:#000;cursor:default;font-size:110%;}.mjs-top.gwt-SuggestBoxPopup .item-selected{background:#d5e2ff;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupContent{background:white;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopCenter{border-top:1px solid #bbb;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomCenter{border-bottom:1px solid #bbb;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopCenterInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomCenterInner{height:1px;line-height:1px;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupMiddleLeftInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupMiddleRightInner{width:1px;line-height:1px;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopLeftInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopRightInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomLeftInner,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomRightInner{width:0;height:0;zoom:1;}.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopLeft,.mjs-top.gwt-SuggestBoxPopup .suggestPopupTopRight,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomLeft,.mjs-top.gwt-SuggestBoxPopup .suggestPopupBottomRight{width:0;height:0;}.mjs-top .gwt-TabBar{background:none repeat scroll 0 0 white;border-top:2px solid white;padding-top:6px;}.mjs-top .gwt-TabBar .gwt-TabBarFirst{width:0;}.mjs-top .gwt-TabBar .gwt-TabBarItem{margin-left:4px;padding:4px 8px 4px 8px;cursor:pointer;cursor:hand;color:white;font-weight:normal;text-align:center;background:#8e8e8e;}.mjs-top .gwt-TabBar .gwt-TabBarItem-selected{cursor:default;background:none repeat scroll 0 0 #e4e4e4;color:#333;font-weight:bold;}.mjs-top .gwt-TabBar .gwt-TabBarItem-disabled{cursor:default;color:#999;}.mjs-top .gwt-TabPanelBottom{background-color:#e4e4e4;border:none;overflow:hidden;padding:6px;}.mjs-top .gwt-TextArea{padding:4px;border:1px solid #ccc;border-top:1px solid #666;font-size:100%;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top .gwt-TextArea-readonly,.mjs-top .gwt-TextBox-readonly{color:#888;}.mjs-top .gwt-TextBox{padding:5px 4px;border:1px solid #ccc;border-top:1px solid #999;font-size:small;font-family:Arial Unicode MS, Arial, sans-serif;}.mjs-top .gwt-ToggleButton-up,.mjs-top .gwt-ToggleButton-up-hovering{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;cursor:pointer;cursor:hand;}.mjs-top .gwt-ToggleButton-up-disabled{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;}.mjs-top .gwt-ToggleButton-down,.mjs-top .gwt-ToggleButton-down-hovering{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;cursor:pointer;cursor:hand;}.mjs-top .gwt-ToggleButton-down-disabled{margin:0;text-align:center;vertical-align:middle;font-weight:normal;padding:0;text-decoration:none;border:1px solid white;outline:none;}.mjs-top .gwt-ToggleButton-up-disabled,.mjs-top .gwt-ToggleButton-down-disabled{cursor:default;opacity:0.5;zoom:1;filter:alpha(opacity=45);}.mjs-top .gwt-ToggleButton-down,.mjs-top .gwt-ToggleButton-down-hovering{border:1px solid #b6cdef;background-color:#b6cdef;}'));return true}return false} -function cq(){cq=p9c;$p=new F9c('loader',(Z9c(),new U9c('data:image/gif;base64,R0lGODlhIAAgAPUAAP///wAAAKqqqoSEhGBgYExMTD4+PkhISFZWVnBwcI6OjqCgoGZmZjQ0NDIyMjg4OEJCQnR0dKampq6urmpqajAwMLCwsCoqKlxcXJSUlCYmJiIiIoiIiJiYmH5+flJSUnp6eh4eHiAgIBwcHJycnBYWFrq6uhISErS0tL6+vs7OztLS0tjY2MjIyMTExOLi4uzs7Obm5vDw8Pb29vz8/Nzc3AQEBAAAAAoKCgAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEicDBCOS8lBbDqfgAUidDqVSlaoliggbEbX8Amy3S4MoXQ6fC1DM5eNeh0+uJ0Lx0YuWj8IEQoKd0UQGhsaIooGGYRQFBcakocRjlALFReRGhcDllAMFZmalZ9OAg0VDqofpk8Dqw0ODo2uTQSzDQ12tk0FD8APCb1NBsYGDxzERMcGEB3LQ80QtdEHEAfZg9EACNnZHtwACd8FBOIKBwXqCAvcAgXxCAjD3BEF8xgE28sS8wj6CLi7Q2PLAAz6GDBIQMLNjIJaLDBIuBCEAhRQYMh4WEYCgY8JIoDwoGCBhRQqVrBg8SIGjBkcAUDEQ2GhyAEcMnSQYMFEC0QVLDXCpEFUiwAQIUEMGJCBhEkTLoC2hPFyhhsLGW4K6rBAAIoUP1m6hOEIK04FGRY8jaryBdlPJgQscLpgggmULMoEAQAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEicDDCPSqnUeCBAxKiUuEBoQqGltnQSTb9CAUMjEo2woZHWpgBPFxDNZoPGqpc3iTvaeWjkG2V2dyUbe1QPFxd/ciIGDBEKChEEB4dCEwcVFYqLBxmXYAkOm6QVEaFgCw+kDQ4NHKlgFA21rlCyUwIPvLwIuV8cBsMGDx3AUwzEBr/IUggHENKozlEH19dt1UQF2AfH20MF3QcF4OEACN0FCNroBAUfCAgD6EIR8ggYCfYAGfoICBBYYE+APgwCPfQDgZAAgwTntkkQyIBCggh60HFg8DACiAEZt1kAcTHCgAEKFqT4MoPGJQERYp5UkGGBBRcqWLyIAWNGy0JQEmSi7LBgggmcOmHI+BnKAgeUCogaRbqzJ9NLKEhIIioARYoWK2rwXNrSZSgTC7haOJpTrNIZzkygQMF2RdI9QQAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInHAwj0ZI9HggBhOidDpcYC4b0SY0GpW+pxFiQaUKKJWLRpPlhrjf0ulEKBMXh7R6LRK933EnNyR2Qh0GFYkXexttJV5fNgiFAAsGDhUOmIsQFCAKChEEF5GUEwVJmpoHGWUKGgOUEQ8GBk0PIJS6CxC1vgq6ugm+tbnBhQIHEMoGdceFCgfS0h3PhQnTB87WZQQFBQcFHtx2CN8FCK3kVAgfCO9k61PvCBgYhPJSGPUYBOr5Qxj0I8AAGMAhIAgQZGDsIIAMCxNEEOAQwAQKCSR+qghAgcQIHgZIqDhB44ABCkxUDBVSQYYOKg9aOMlBQYcFEkyokInS5oJECSZcqKgRA8aMGTRoWLOQIQOJBRaCqmDxAoYMpORMLHgaVShVq1jJpbAgoevUqleVynNhQioLokaRqpWnYirctHPLBAEAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInCgIBsNmkyQMJsSodLggNC5YjWYZGoU0iMV0Kkg8Kg5HdisKuUelEkEwHko+jXS+ctFuRG1ucSUPYmMdBw8GDw15an1LbV6DJSIKUxIHSUmMDgcJIAoKIAwNI3BxODcPUhMIBhCbBggdYwoGgycEUyAHvrEHHnVDCSc3DpgFvsuXw0MeCGMRB8q+A87YAAIF3NwU2dgZH9wIYeDOIOXl3+fDDBgYCE7twwT29rX0Y/cMDBL6+/oxSPAPoJQECBNEMGSQCAiEEUDkazhEgUIQA5pRFLJAoYeMJjYKsQACI4cMDDdmGMBBQQYSIUVaaPlywYQWIgEsUNBhgQRHCyZUiDRBgoRNFClasIix0YRPoC5UsHgBQ8YMGjQAmpgAVSpVq1kNujBhIurUqlcpqnBh9mvajSxWnAWLNWeMGDBm6K2LLQgAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInCgYB8jlAjEQOBOidDqUMAwNR2V70XhFF8SCShVEDIbHo5GtdL0bkWhDEJCrmCY63V5+RSEhIw9jZCQIB0l7aw4NfnGAISUlGhlUEoiJBwZNBQkeGRkgDA8agYGTGoVDEwQHBZoHGB1kGRAiIyOTJQ92QwMFsMIDd0MJIruTBFUICB/PCJbFv7qTNjYSQh4YGM0IHNNSCSUnNwas3NwEEeFTDhpSGQTz86vtQtlSAwwEDAzs96ZFYECBQQJpAe9ESMAwgr2EUxJEiAACRBSIZCSCGDDgIsYpFTlC+UiFA0cFCnyRJNKBg4IMHfKtrIKyAwkJLmYOMQHz5gRVEzqrkFggAIUJFUEBmFggwYIJFypqJEUxAUUKqCxiBHVhFOqKGjFgzNDZ4qkKFi9gyJhBg8ZMFS3Opl3rVieLu2FnsE0K4MXcvXzD0q3LF4BewAGDAAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEicKBKHg6ORZCgmxKh0KElADNiHo8K9XCqYxXQ6ARWSV2yj4XB4NZoLQTCmEg7nQ9rwYLsvcBsiBmJjCwgFiUkHWX1tbxoiIiEXGVMSBAgfikkIEQMZGR4JBoCCkyMXhUMTFAgYCJoFDB1jGQeSISEjJQZQQwOvsbEcdUMRG7ohJSUEdgTQBBi1xsAbI7vMhQPR0ArVUQm8zCUIABYJFAkMDB7gUhDkzBIkCfb2Eu9RGeQnJxEcEkSIAGKAPikPSti4YYPAABAgPIAgcTAKgg0E8gGIOKAjnYp1Og7goAAFyDokFYQycXKMAgUdOixg2VJKTBILJNCsSYTeAlYBFnbyFIJCAlATKVgMHeJCQtAULlQsHWICaVQWL6YCUGHiao0XMLSqULECKwwYM6ayUIE1BtoZNGgsZWFWBly5U1+4nQFXq5CzfPH6BRB4MBHBhpcGAQAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgEZBKIgsFQKFAUk6J0Kkl8DljI0vBwOB6ExXQ6GSSb2MO2W2lXKILxUEJBID6FtHr5aHgrFxcQYmMLDHZ2eGl8fV6BGhoOGVMCDAQEGIgIBCADHRkDCQeOkBsbF4RDFiCWl5gJqUUZBxcapqYGUUMKCQmWlgpyQxG1IiHHBEMTvcywwkQcGyIiIyMahAoR2todz0URxiHVCAAoIOceIMHeRQfHIyUjEgsD9fUW7LIlxyUlER0KOChQMClfkQf9+hUAmKFhHINECCQs0aCDRRILTEAk4mGiCBIYJUhwsXFXwhMlRE6wYKFFSSEKTpZYicJEChUvp5iw6cLFikWcUnq6UKGCBdAiKloUZVEjxtEhLIrWeBEDxlOoLF7AgCFjxlUAMah2nTGDxtetZGmoNXs1LduvANLCJaJ2rt27ePPKCQIAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBHRABMzhgEEkFJOidCoANT+F7PJg6DIW06llkGwiCtsDpGtoPBKC8HACYhCSiDx6ue42Kg4HYGESEQkJdndme2wPfxUVBh1iEYaHDHYJAwokHRwgBQaOjxcPg0Mon5WWIKdFHR8OshcXGhBRQyQDHgMDIBGTckIgf7UbGgxDJgoKvb1xwkMKFcbHgwvM2RLRRREaGscbGAApHeYdGa7cQgcbIiEiGxIoC/X1KetFGSLvIyEgFgQImCDAQj4pEEIoFIHAgkMTKFwcLMJAYYgRBkxodOFCxUQiHkooLLEhBccWKlh8lFZixIgSJVCqWMHixUohCmDqTMmixotJGDcBhNQpgkXNGDBgBCWgs8SDFy+SwpgR9AOOGzZOfEA6dcYMGkEBTGCgIQGArjTShi3iVe1atl/fTokrVwrYunjz6t3Lt+/bIAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgEdDwMAqJAIEQyk6J0KhhQCBiEdlk4eCmS6dSiSFCuTe2n64UYIBGBeGgZJO6JpBKx9h7cBg8FC3MTAyAgEXcUSVkfH34GkoEGHVMoCgOHiYoRChkkHQogCAeTDw0OBoRFopkDHiADYVMdCIEPDhUVB1FDExkZCsMcrHMAHgYNFboVFEMuCyShohbHRAoPuxcXFawmEuELC9bXRBEV3NwEACooFvAC5eZEHxca+BoSLSb9/S30imTIt2GDBxUtXCh0EVCKAQ0iCiJQQZHiioZFGGwIEdEAi48fa2AkMiBEiBEhLrxYGeNFjJFDFJwcMUIEjJs4YQqRSbOmjFQZM2TIgKETWQmaJTQAXTqjKIESUEs8oEGValOdDqKWKEBjCI2rIxWcgHriBAgiVHVqKDF2LK2iQ0DguFEWAdwpCW7gMHa3SIK+gAMLHky4sOGAQQAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBCw4kQQBQ2F4MsWoFGBRJBNNAgHBLXwSkmnURBqAIleGlosoHAoFkEAsNGU4AzMogdViEB8fbwcQCGFTJh0KiwMeZ3xqf4EHlBAQBx1SKQskGRkKeB4DGR0LCxkDGIKVBgYHh0QWEhKcnxkTUyQElq2tBbhDKRYWAgKmwHQDB70PDQlDKikmJiiyJnRECgYPzQ4PC0IqLS4u0y7YRR7cDhUODAA1Kyrz5OhRCOzsDQIvNSz/KljYK5KBXYUKFwbEWNhP4MAiBxBeuEAAhsWFMR4WYVBBg8cDM2bIsAhDI5EBGjakrBCypQyTQxRsELGhJo2bNELCFKJAhM9dmkNyztgJYECIoyIuEKFBFACDECNGhDDQtMiDo1ERVI1ZAmpUEFuFPCgRtYQIWE0TnCjB9oTWrSBKrGVbAtxWAjfmniAQVsiAvCcuzOkLAO+ITIT9KkjMuLFjmEEAACH5BAkHAAAALAAAAAAgACAAAAb/QIBwSARMOgNPIgECDTrFqBRgWmQUgwEosmQQviDJNOqyLDpXThLU/WIQCM9kLGyhBJIFKa3leglvHwUEYlMqJiYWFgJ6aR5sCV5wCAUFCCRSLC0uLoiLCwsSEhMCewmAcAcFBx+FRCsqsS4piC5TCwkIHwe8BxhzQy8sw7AtKnRCHJW9BhFDMDEv0sMsyEMZvBAG2wtCMN/fMTHWRAMH29sUQjIzMzLf5EUE6A8GAu347fFEHdsPDw4GzKBBkOC+Ih8AOqhAwKAQGgeJJGjgoOIBiBGlDKi48EHGKRkqVLhA8qMUBSQvaLhgMsoAlRo0OGhZhEHMDRoM0CRiYIPPVQ0IdgrJIKLoBhEehAI4EEJE0w2uWiYIQZVq0J0DRjgNMUJDN5oJSpQYwXUEAZoCNIhdW6KBgJ0XcLANAUWojRNiNShQutRG2698N2B4y1dI1MJjggAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBJgkHQVnwFQsitAooHVcdDIKxcATSXgHAimURUVZJFbstpugEBiDiVhYU7VcJjM6uQR1GQQECBQSYi8sKyoqeCYCEiRZA34JgIIIBE9QMDEvNYiLJqGhKEgDlIEIqQiFRTCunCyKKlISIKgIHwUEckMzMzIymy8vc0IKGKkFBQcgvb6+wTDFQx24B8sFrDTbNM/TRArLB+MJQjRD3d9FDOMHEBBhRNvqRB3jEAYGA/TFCPn5DPjNifDPwAeBYjg8MPBgIUIpGRo+cNDgYZQMDRo4qFDRYpEBDkJWeOCxSAKRFQ6UJHLgwoUKFwisFJJBg4YLN/fNPKBhg81UC6xKRhAhoqcGmSsHbCAqwmcmjwlEhGAqAqlFBQZKhNi69UE8hAgclBjLdYQGEh4PnBhbYsTYCxlKMrDBduyDpx5trF2L4WtJvSE+4F2ZwYNfKEEAACH5BAkHAAAALAAAAAAgACAAAAb/QIBwSAS0TBPJIsPsSIrQKOC1crlMFmVGwRl4QAqBNBqrrVRXlGDRUSi8kURCYRkPYbEXa9W6ZklbAyBxCRQRYlIzMzJ4emhYWm+DchQMDAtSNDSLeCwqKn1+CwqTCQwEqE9RmzONL1ICA6aoBAgUE5mcdkIZp7UICAO5MrtDJBgYwMCqRZvFRArAHx8FEc/PCdMF24jXYyTUBwUHCt67BAfpBwnmdiDpEBAI7WMK8BAH9FIdBv39+lEy+PsHsAiHBwMLFknwoOGDDwqJFGjgoCKBiLwcVNDoQBjGAhorVGjQrWCECyhFMsA44IIGDSkxKUywoebLCxQUChQRIoRNQwMln7lJQKBCiZ49a1YgQe9BiadHQ4wY4fNCBn0lTkCVOjWEAZn0IGiFWmLEBgJBzZ1YyzYEArAADZy4UOHDAFxjggAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBLxYKlcKZRFMLMWoVAiDHVdJk0WyyCgW0Gl0RobFjtltV8EZdMJiAG0+k1lZK5cJNVl02AMgAxNxQzRlMTUrLSkmAn4KAx4gEREShXKHVYlIehJ/kiAJCRECmIczUyYdoaMUEXBSc5gLlKMMBAOYuwu3BL+Xu4UdFL8ECB7CmCC/CAgYpspiCxgYzggK0nEU1x8R2mIDHx8FBQTgUwrkBwUf6FIdBQfsB+9RHfP59kUK+fP7RCIYgDAQAcAhCAwoNEDhIIAODxYa4OAQwYOIEaPtA+GgY4MGDQFyaNCxgoMHCwBGqHChgksHCfZlOKChZssKEDQWQkAgggJNBREYPBCxoaaGCxdQKntQomnTECFEiNBQVMODDNJuOB0BteuGohBSKltgY2uIEWiJamCgc5cGHCecPh2hAYFYbRI+uCxxosIDBIPiBAEAIfkECQcAAAAsAAAAACAAIAAABv9AgHBIBNBmM1isxlK1XMWotHhUvpouk8WSmnqHVdhVlZ1IFhLTV0qrxsZlSSfTQa2JbaSytnKlUBMLHQqEAndDSDJWTX9nGQocAwMTh18uAguPkhEDFpVfFpADIBEJCp9fE6OkCQmGqFMLrAkUHLBeHK0UDAyUt1ESCbwEBBm/UhHExCDHUQrKGBTNRR0I1ggE00Qk19baQ9UIBR8f30IKHwUFB+XmIAfrB9nmBAf2BwnmHRAH/Aen3zAYMACB36tpIAYqzKdNgYEHCg0s0BbhgUWIDyKsEXABYJQMBxxUcOCgwYMDB6fYwHGiAQFTCiIwMKDhwoWRIyWuUXCihM9DEiNGhBi6QUPNCkgNdLhz44RToEGFhiha8+aBiWs6OH0KVaiIDUVvMkj5ZcGHElyDTv16AQNWVKoQlAwxwiKCSV+CAAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgk0mYzGOxVKzqfT9pR+WKprtCs8yhbWl2mlEurlSZjVRXYMkmRo8dzbaVKmSaLBer9nHVjXyYoAgsdHSZ8WixrEoUKGXuJWS6EHRkKAySSWiYkl5gDE5tZFgocAx4gCqNZHaggEQkWrE8WA7AJFJq0ThwRsQkcvE4ZCbkJIMNFJAkMzgzKRAsMBNUE0UML1hjX2AAdCBjh3dgDCOcI0N4MHx/nEd4kBfPzq9gEBwX5BQLlB///4D25lUgBBAgAC0h4AuJEiQRvPBiYeBBCMmI2cJQo8SADlA4FHkyk+KFfkQg2bGxcaYCBqgwgEhxw0OCByIkHFjyRsGFliU8QQEUI1aDhQoUKDWiKPNAhy4IGDkuMGBE0BNGiRyvQLKBTiwAMK6eO2CBiA1GjRx8kMPlmwYcNIahumHv2wgMCXTdNMGczxAaRBDiIyhIEACH5BAkHAAAALAAAAAAgACAAAAb/QIBwSCwOabSZcclkImcwWKxJXT6lr1p1C3hCY7WVasV1JqGwF0vlcrXKzJlMWlu7TCgXnJm2p1AWE3tNLG0mFhILgoNLKngTiR0mjEsuApEKC5RLAgsdCqAom0UmGaADAxKjRR0cqAMKq0QLAx4gIAOyQxK3Eb66QhK+CcTAABLEycYkCRTOCcYKDATUEcYJ1NQeRhaMCwgYGAQYGUUXD4wJCOvrAkMVNycl0HADHwj3CNtCISfy8rm4ZDhQoGABDKqEYCghr0SJEfSoDDhAkeCBfUImXGg4IsQIA+WWdEAAoSJFDIuGdAjhMITLEBsMUACRIQOIBAceGDBgsoAmVSMKRDgc0VHEBg0aLjhY+kDnTggQCpBosuBBx44wjyatwHTnTgQJmwggICKE0Q1HL1TgWqFBUwMJ3HH5pgEm0gtquTowwCAsnAkDMOzEW5KBgpRLggAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyGSSpmw2aTOntAiVwaZSGhQWi2GX2pk1Vnt9j+EZDPZisc5INbu2UqngxzlL5Urd8UVtfC4mJoBGfCkmFhMuh0QrihYCEoaPQ4sCCx0Sl5gSmx0dnkImJB0ZChmkACapChwcrCiwA7asErYeu0MeBxGAJCAeIBG2Gic2JQ2AAxHPCQoRJycl1gpwEgnb2yQS1uAGcCAMDBQUCRYAH9XgCV8KBPLyA0IL4CEjG/VSHRjz8joJIWAthMENwJpwQMAQAQYE/IQIcFBihMEQIg6sOtKBQYECDREwmFCExIURFkNs0HDhQAIPGTI4+3Cg5oECHxAQEFgkwwVPjCI2rLzgwEGDBw8MGLD5ESSJJAsMBF3JsuhRpQYg1CxwYGcTAQQ0iL1woYJRpFi3giApZQGGCmQryHWQVCmEBDyxTOBAoGbRmxQUsEUSBAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgsGo/IpHLJbDqf0CiNNosyp1UrckqdwbRHrBcWAxdnaBjsxTYTZepXjcVyE2Nylqq1sgtjLCt7Li1+QoMuJimGACqJJigojCqQFgISBg8PBgZmLgKXEgslJyclJRlgLgusHR0ip6cRYCiuGbcOsSUEYBIKvwoZBaanD2AZHAMDHB0RpiEhqFYTyh7KCxIjJSMjIRBWHCDi4hYACNzdIrNPHQkR7wkKQgsb3NAbHE4LFBQJ/gkThhCAdu/COiUKCChk4E/eEAEPNkjcoOHCgQ5ISCRAgEEhAQYRyhEhcUGihooOHBSIMMDVABAEEMjkuFDCkQwOTl64UMFBA0hNnA4ILfDhw0wCC5IsgLCzQs+fnAwIHWoUAQWbSgQwcOrUwSZOEIYWKIBgQMAmCwg8SPnVQNihCbBCmaCAQYEDnMgmyHAWSRAAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyKRyyWw6n9CodEpV0qrLK/ZIo822w2t39gUDut4ZDAAyDLDkmQxGL5xsp8t7OofFYi8OJYMlBFR+gCwsIoQle1IxNYorKo0lClQ1lCoqLoQjJRxULC0upiaMIyElIFQqKSkmsg8lqiEMVC4WKBa9CCG2BlQTEgISEhYgwCEiIhlSJgvSJCQoEhsizBsHUiQZHRnfJgAIGxrnGhFQEgrt7QtCCxob5hoVok0SHgP8HAooQxjMO1fBQaslHSKA8MDQAwkiAgxouHDBgcUPHZBIAJEgQYSPEQYAJEKiwYUKFRo0ePAAAYgBHTooGECBAAEGDDp6FHAkwwNNlA5WGhh64EABBEgR2CRAwaOEJAsOOEj5YCiEokaTYlgKgqcSAQkeCDVwFetRBBiUDrDgZAGDoQbMFijwAW1XKRMUJKhbVGmEDBOUBAEAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyKRyyWw6n9CodEqFUqrJRQkHwhoRp5PtNPAKJaVTaf0xA0DqdUnhpdEK8lKDagfYZw8lIyMlBFQzdjQzMxolISElHoeLizIig490UzIwnZ0hmCKaUjAxpi8vGqAiIpJTMTWoLCwGGyIhGwxULCu9vQgbwRoQVCotxy0qHsIaFxlSKiYuKdQqEhrYGhUFUiYWJijhKgAEF80VDl1PJgsSAhMTJkILFRfoDg+jSxYZJAv/ElwMoVChQoMGDwy4UiJBgYIMGTp0mEBEwAEH6BIaQNABiQAOHgYMcKiggzwiCww4QGig5QEMI/9lUAAiQQQQIQdwUIDiSAdQAxoNQDhwoAACBBgIEGCQwOZNEAMoIllQQCNRokaRKmXaNMIAC0sEJHCJtcAHrUqbJlAAtomEBFcLmEWalEACDgKkTMiQQKlRBgxAdGiLJAgAIfkECQcAAAAsAAAAACAAIAAABv9AgHBILBqPyKRyyWw6n0yFBtpcbHBTanLiKJVsWa2R4PXeNuLiouwdKdJERGk08ibgQ8mmFAqVIHhDICEjfSVvgQAIhH0GiUIGIiEiIgyPABoblCIDjzQboKAZcDQ0AKUamamIWjMzpTQzFakaFx5prrkzELUaFRRpMMLDBBfGDgdpLzExMMwDFxUVDg4dWi8sLC8vNS8CDdIODQhaKior2doADA7TDwa3Ty0uLi3mK0ILDw7vBhCsS1xYMGEiRQoX+IQk6GfAwIFOS1BIkGDBAgoULogIKNAPwoEDBEggsUAiA4kFEwVYaKHmQEOPHz8wGJBhwQISHQYM4KAgQ4dYkxIyGungEuaBDwgwECDAIEEEEDp5ZjBpIokEBB8LaEWQlCmFCE897FTQoaoSASC0bu3KNIFbEFAXmGUiIcEHpFyXNnUbIYMFLRMygGDAAAEBpxwW/E0SBAAh+QQJBwAAACwAAAAAIAAgAAAG/0CAcEgsGo9I4iLJZAowuKa0uHicTqXpNLPBnnATLXOxKZnNUfFx8jCPzgb1kfAOhcwJuZE8GtlDA3pGGCF+hXmCRBIbIiEiIgeJRR4iGo8iGZJECBudGnGaQwYangyhQw4aqheBpwAXsBcVma6yFQ4VCq4AD7cODq2nBxXEDYh6NEQ0BL8NDx+JNNIA0gMODQbZHXoz3dI0MwIGD9kGGHowMN3dQhTk2QfBUzEx6ekyQgvZEAf9tFIsWNR4Qa/ekAgG+vUroKuJihYqVgisEYOIgA8KDxRAkGDJERcmTLhwoSIiiz0FNGpEgIFAggwkBEyQIGHBAgEWQo5UcdIIiVcPBQp8QICAAAMKCUB4GKAgQ4cFEiygMJFCRRIJBDayJGA0QQQQA5jChDrBhFUmE0AQLdo16dKmThegcKFFAggMLRkk2AtWrIQUeix0GPB1b9gOAkwwCQIAIfkECQcAAAAsAAAAACAAIAAABv9AgHBInAw8xKRymVx8Sqcbc8oUEErYU4nKHS4e2LCN0KVmLthR+HQoMxeX0SgUCjcQbuXEEJr3SwYZeUsMIiIhhyIJg0sLGhuGIhsDjEsEjxuQEZVKEhcajxptnEkDn6AagqREGBeuFxCrSQcVFQ4Oi7JDD7a3lLpCDbYNDarADQ4NDw8KwEIGy9C/wAUG1gabzgzXBnjOAwYQEAcHHc4C4+QHDJU0SwnqBQXNeTM07kkSBQfyHwjmZWTMsOfu3hAQ/AogQECAHpUYMAQSxCdkAoEC/hgSACGBCQsWNSDCGDhDyYKFCwkwoJCAwwIBJkykcJGihQoWL0SOXEKCAAZVDCoZRADhgUOGDhIsoHBhE2ROGFMEUABKgCWIAQMUdFiQ1IQLFTdDcrEwQGWCBEOzHn2JwquLFTXcCBhwNsFVox1ILJiwdEUlCwsUDOCQdasFE1yCAAA7AAAAAAAAAAAA')),32,32)} -function no(a,b){return a?b?new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAABBSURBVHicY/n37x8DPsCCzAkKCgLT69atw1QAk4SxYYpY0CXRFbGgSf6H0owwRSxYJGFsRmQ3IEuiKGLBIQlXBAD7Kxbv5PcAEwAAAABJRU5ErkJggg=='):new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAABFSURBVHicfY7BCQAwCAMVHFAc1BVbfURssQ0EhDtUUdVFn0iUoy+JBcMgMTbQIHGdcHcyM7pBJplgaFLB40SXAO8fDoBsW/0WPGGb8m4AAAAASUVORK5CYII='):b?new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAAA2SURBVHicY/n37x8DMggKCkLm/mfBJwkiWPBJwhXgkkQxARcAK1i3bh2yKYwYVuBThGIFNkUAeAcW76S8NqYAAAAASUVORK5CYII='):new Dgd('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAKN2lDQ1BzUkdCIElFQzYxOTY2LTIuMQAAeJydlndUU9kWh8+9N71QkhCKlNBraFICSA29SJEuKjEJEErAkAAiNkRUcERRkaYIMijggKNDkbEiioUBUbHrBBlE1HFwFBuWSWStGd+8ee/Nm98f935rn73P3Wfvfda6AJD8gwXCTFgJgAyhWBTh58WIjYtnYAcBDPAAA2wA4HCzs0IW+EYCmQJ82IxsmRP4F726DiD5+yrTP4zBAP+flLlZIjEAUJiM5/L42VwZF8k4PVecJbdPyZi2NE3OMErOIlmCMlaTc/IsW3z2mWUPOfMyhDwZy3PO4mXw5Nwn4405Er6MkWAZF+cI+LkyviZjg3RJhkDGb+SxGXxONgAoktwu5nNTZGwtY5IoMoIt43kA4EjJX/DSL1jMzxPLD8XOzFouEiSniBkmXFOGjZMTi+HPz03ni8XMMA43jSPiMdiZGVkc4XIAZs/8WRR5bRmyIjvYODk4MG0tbb4o1H9d/JuS93aWXoR/7hlEH/jD9ld+mQ0AsKZltdn6h21pFQBd6wFQu/2HzWAvAIqyvnUOfXEeunxeUsTiLGcrq9zcXEsBn2spL+jv+p8Of0NffM9Svt3v5WF485M4knQxQ143bmZ6pkTEyM7icPkM5p+H+B8H/nUeFhH8JL6IL5RFRMumTCBMlrVbyBOIBZlChkD4n5r4D8P+pNm5lona+BHQllgCpSEaQH4eACgqESAJe2Qr0O99C8ZHA/nNi9GZmJ37z4L+fVe4TP7IFiR/jmNHRDK4ElHO7Jr8WgI0IABFQAPqQBvoAxPABLbAEbgAD+ADAkEoiARxYDHgghSQAUQgFxSAtaAYlIKtYCeoBnWgETSDNnAYdIFj4DQ4By6By2AE3AFSMA6egCnwCsxAEISFyBAVUod0IEPIHLKFWJAb5AMFQxFQHJQIJUNCSAIVQOugUqgcqobqoWboW+godBq6AA1Dt6BRaBL6FXoHIzAJpsFasBFsBbNgTzgIjoQXwcnwMjgfLoK3wJVwA3wQ7oRPw5fgEVgKP4GnEYAQETqiizARFsJGQpF4JAkRIauQEqQCaUDakB6kH7mKSJGnyFsUBkVFMVBMlAvKHxWF4qKWoVahNqOqUQdQnag+1FXUKGoK9RFNRmuizdHO6AB0LDoZnYsuRlegm9Ad6LPoEfQ4+hUGg6FjjDGOGH9MHCYVswKzGbMb0445hRnGjGGmsVisOtYc64oNxXKwYmwxtgp7EHsSewU7jn2DI+J0cLY4X1w8TogrxFXgWnAncFdwE7gZvBLeEO+MD8Xz8MvxZfhGfA9+CD+OnyEoE4wJroRIQiphLaGS0EY4S7hLeEEkEvWITsRwooC4hlhJPEQ8TxwlviVRSGYkNimBJCFtIe0nnSLdIr0gk8lGZA9yPFlM3kJuJp8h3ye/UaAqWCoEKPAUVivUKHQqXFF4pohXNFT0VFysmK9YoXhEcUjxqRJeyUiJrcRRWqVUo3RU6YbStDJV2UY5VDlDebNyi/IF5UcULMWI4kPhUYoo+yhnKGNUhKpPZVO51HXURupZ6jgNQzOmBdBSaaW0b2iDtCkVioqdSrRKnkqNynEVKR2hG9ED6On0Mvph+nX6O1UtVU9Vvuom1TbVK6qv1eaoeajx1UrU2tVG1N6pM9R91NPUt6l3qd/TQGmYaYRr5Grs0Tir8XQObY7LHO6ckjmH59zWhDXNNCM0V2ju0xzQnNbS1vLTytKq0jqj9VSbru2hnaq9Q/uE9qQOVcdNR6CzQ+ekzmOGCsOTkc6oZPQxpnQ1df11Jbr1uoO6M3rGelF6hXrtevf0Cfos/ST9Hfq9+lMGOgYhBgUGrQa3DfGGLMMUw12G/YavjYyNYow2GHUZPTJWMw4wzjduNb5rQjZxN1lm0mByzRRjyjJNM91tetkMNrM3SzGrMRsyh80dzAXmu82HLdAWThZCiwaLG0wS05OZw2xljlrSLYMtCy27LJ9ZGVjFW22z6rf6aG1vnW7daH3HhmITaFNo02Pzq62ZLde2xvbaXPJc37mr53bPfW5nbse322N3055qH2K/wb7X/oODo4PIoc1h0tHAMdGx1vEGi8YKY21mnXdCO3k5rXY65vTW2cFZ7HzY+RcXpkuaS4vLo3nG8/jzGueNueq5clzrXaVuDLdEt71uUnddd457g/sDD30PnkeTx4SnqWeq50HPZ17WXiKvDq/XbGf2SvYpb8Tbz7vEe9CH4hPlU+1z31fPN9m31XfKz95vhd8pf7R/kP82/xsBWgHcgOaAqUDHwJWBfUGkoAVB1UEPgs2CRcE9IXBIYMj2kLvzDecL53eFgtCA0O2h98KMw5aFfR+OCQ8Lrwl/GGETURDRv4C6YMmClgWvIr0iyyLvRJlESaJ6oxWjE6Kbo1/HeMeUx0hjrWJXxl6K04gTxHXHY+Oj45vipxf6LNy5cDzBPqE44foi40V5iy4s1licvvj4EsUlnCVHEtGJMYktie85oZwGzvTSgKW1S6e4bO4u7hOeB28Hb5Lvyi/nTyS5JpUnPUp2Td6ePJninlKR8lTAFlQLnqf6p9alvk4LTduf9ik9Jr09A5eRmHFUSBGmCfsytTPzMoezzLOKs6TLnJftXDYlChI1ZUPZi7K7xTTZz9SAxESyXjKa45ZTk/MmNzr3SJ5ynjBvYLnZ8k3LJ/J9879egVrBXdFboFuwtmB0pefK+lXQqqWrelfrry5aPb7Gb82BtYS1aWt/KLQuLC98uS5mXU+RVtGaorH1futbixWKRcU3NrhsqNuI2ijYOLhp7qaqTR9LeCUXS61LK0rfb+ZuvviVzVeVX33akrRlsMyhbM9WzFbh1uvb3LcdKFcuzy8f2x6yvXMHY0fJjpc7l+y8UGFXUbeLsEuyS1oZXNldZVC1tep9dUr1SI1XTXutZu2m2te7ebuv7PHY01anVVda926vYO/Ner/6zgajhop9mH05+x42Rjf2f836urlJo6m06cN+4X7pgYgDfc2Ozc0tmi1lrXCrpHXyYMLBy994f9Pdxmyrb6e3lx4ChySHHn+b+O31w0GHe4+wjrR9Z/hdbQe1o6QT6lzeOdWV0iXtjusePhp4tLfHpafje8vv9x/TPVZzXOV42QnCiaITn07mn5w+lXXq6enk02O9S3rvnIk9c60vvG/wbNDZ8+d8z53p9+w/ed71/LELzheOXmRd7LrkcKlzwH6g4wf7HzoGHQY7hxyHui87Xe4Znjd84or7ldNXva+euxZw7dLI/JHh61HXb95IuCG9ybv56Fb6ree3c27P3FlzF3235J7SvYr7mvcbfjT9sV3qID0+6j068GDBgztj3LEnP2X/9H686CH5YcWEzkTzI9tHxyZ9Jy8/Xvh4/EnWk5mnxT8r/1z7zOTZd794/DIwFTs1/lz0/NOvm1+ov9j/0u5l73TY9P1XGa9mXpe8UX9z4C3rbf+7mHcTM7nvse8rP5h+6PkY9PHup4xPn34D94Tz+49wZioAAAAJcEhZcwAALiMAAC4jAXilP3YAAAA9SURBVHicYwkICPjPwMDAyAAF69atY0AGLFAarigoKAhFEQuSYqyKkBVgVYSuAAOgK8BwLAs+SWQFOL0JAFbZFjycGfliAAAAAElFTkSuQmCC')} -function TQb(a){if(!a.a){a.a=true;Xnc();Znc((Lsc(),'.mjs-top{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}.mjs-top:focus{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);outline:none;}.mjs-top *{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}.mjs-top :focus{-webkit-tap-highlight-color:rgba(0, 0, 0, 0);outline:none;}.mjs-main{background-color:white;-moz-box-shadow:0 0 3px 2px #ccc;-webkit-box-shadow:0 0 3px 2px #ccc;box-shadow:0 0 3px 2px #ccc;max-height:100%;max-width:100%;min-height:100%;min-width:100%;width:100%;height:100%;}.mjs-main canvas{width:100%;height:100%;background:transparent;-moz-box-shadow:0 0 3px 2px #e0e0e0 inset;-webkit-box-shadow:0 0 3px 2px #e0e0e0 inset;box-shadow:0 0 3px 2px #e0e0e0 inset;}#sketch,.mjs-root,.mjs-focused{width:100%;height:100%;}.mjs-canvasScrollPanel{width:100%;height:100%;background-color:white;margin:0;padding:0;z-index:0;}.mjs-main table{border-collapse:collapse;border-spacing:0;}.mjs-canvasScrollPanel:before{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAdJElEQVR4Xu2dC5AlVXnHv6/v3V3ubhZ1ERV1N4APQNSAjrLO9OlxlM3iBhWVbFKCL6IxluKjFBAiLyERFUrlYRITQJOgCSqKj8V1LSdzT++4kgWJsgrBJ8ouUZddd2Rmd+6d/lLf2D3V09OP0z333umZ/rpqqmamz+lzzv/7fufdpxHkEgVEgUQFULQRBUSBZAUEEPEOUSBFAQFE3EMUEEDEB0SBYgpIC1JMN4lVEQUEkIoYWopZTAEBpJhuEqsiCgggFTG0FLOYAgJIMd0kVkUUEEAqYmgpZjEFBJBiukmsiigggFTE0FLMYgoIIMV0k1gVUUAAqYihpZjFFBBAiukmsSqigABSEUNLMYspIIAU001iVUQBAaQihpZiFlNAACmmm8SqiAICSEUMLcUspoAAUkw3iVURBQSQihhaillMAQGkmG4SqyIKCCA9MrTW+jQAuAwAVhDR5Uqp2xGRepS8JFNQAQGkoHCm0UJgnBKJc4+AYqriwoUTQLqkfQoY0RQFlC7ZoBOPFUA6oWLoGTnAEFA6rH03HieAdEhVQzC+6ycX7W6FcyEtSods0onHCCDzVDEHGJcppb7ByRnGEVDmaZtORBdACqpo6OTcYsyAEU3K8BkCSkEbdSKaAJJTRUOnTgVDQMkp+gIGF0AMxe8GGAKKofgLGEwAyRC/k2Ds2rVr+b59+17aarW+MzQ0tD8pacM0pevVA3AEkASRDZ3UqCvlg3EOEV0EAGsR8XdE9PF2u/1xAaUHXj6PJASQiHidBCN4dLPZ/DQiviFqJwFlHp7bo6gCyFxA0vZHGbUYcbbTWr/Y34s12E1Q2u3249JapR751ZJJRgAxA6QwGDED8VRQAOCGVqv1saGhod8WGaMIIJ1lUwDJAISIXuU4zpc7K/v0YmEiKADwKABc3263rzYA5Y5w3gSQzlpKAMkAJMnhiAi3b9/+LNu2d83HJPMFRWs9q0sogMzHGnPjCiA5AWEwtNavRMRLAeCkdru9emho6PfzNUtRUASQ+SqfHl8AyQlIs9m8ExFfEETrdI2dAcr+sbGxJ23atOlQkL4AIoB0V4GcgPTKIZNAiQLZq/z01AglSkxakJICEmohZg3mBZDe0iOAlByQCCgfaLfbZ4THPNKCdBcYAWSRAJKyJuIBwIwdOz0m6q77lf/pAsgiB6TZbA4i4uUAML1CL4B0FjoBZJEDEumCvX7Pnj1v2bx581Rn3aS6TxNAlggg1XXh7pZcACk5IFu3bl21atWqc4noLAA4zs/u/Yh4y6OPPnrdxo0beVuKXF1SQAApMSCjo6NPn5qa+loIjKgb3F+r1U7v7+//cZf8o/KPFUBKCgi3HCtXrrwrBY4g5/ePj48/X1qS7rAsgJQUENd1309EHzIxOyJeaNv2VSZhJUw+BQSQkgKitf4BADw7lL2RWq32N/z31NTUPwbTuv79e5VSz8lnegltooAAUl5AJgFgWZC9Wq12Qn9//3389+jo6PFTU1M/CmW9Zdv2Cjkt3sTl84URQEoICG+pd12XV8hnrvACYNb9fC4godMUEEBKCAhnKWuPVdZ9cfvOKCCACCCd8aQl+hQBRABZoq7dmWIJIAJIZzxpiT5FABFAlqhrd6ZYAogA0hlPWqJPEUByAtLtQxuC7GTNUkXvG/hnCxEfIqJtRPQvjuPcaRCn8kEEkJyAdOvYn6gndgGQaBKfXbZs2dvWr19/oPIUpAgggOQEJAjeqYPjkmzTA0A46TuXLVu2QSBJJkQAyQCkW0ePZtXaPQKEs/FZpRS/ayJXjAICSAYg/u2OHV5t6oV5AbEs6+jJycnfBc+v1+v7wmkh4vFE9EIAuBIA1oXvEdEpMiaJt4wAYgZIEKpnoOQFxPS8rB07djyx1WrxAD0MyT8rpf7aFN4qhRNA5gJymv8dj7RvmXcdlCxAms3mbxHxCM4+Ee1VSh0Z3s2bdl9r/ToA+Neg6Ij4c9u2j6mS45uWVQBJUKobX5qKJjUyMrIWAI6xLOtQo9G4u6+vrxWEyQLEdd2/8DzvBg5vWdbbbdv+z/Dz0+4PDw8/qV6v7wmFbymllps6TZXCCSAZ1u40KP5W9bMR8TwiCr/kxC3CNa1W63o+OTELEL/lmLZf0nsgnFbc/bjt8kop8QUZpBev+zoBys6dO1eOj49/DhFfkZQT7i5ZlnV19HXbTh8IFwVQAJFBenE6QjFNQUHEi23b3hZOVGv9TwBQaDAsgHTEfLkfIs1qbsn+EMEAFBofH18dnDYyMjJygmVZ/DWqQPMJIrqgVqtpz/O4q/V2AEicGBBAChpqntEEkHkKmAZK2KmbzeZ1iPiOIDkieqfjONdFWpikGbQDtm0/tpPvnEsXy8zwAoiZTpmh4kAJA6K15sPdnhY8CBGfYtv27rgHR57VBoC3KqVuysxEjgACiJlYAoiZTsahws4d/n5hzO7bTzYajXeHp3ajiWitjyWiMcdxfmOcAcOA0XUSx3Eebxi1UsEEkC6Zm8ccg4ODM0fzuK67n4geE0nuZ7wXioi+0uutHlnrKF2SZdE9VgDpkclc172QiP4+JbkHEPFmRLxxYGDg173IVtI6SS/SXixpCCA9tJTrujYRfQAANqYkywfG3UJEVzuO88MeZk+SilFAAFkAt3Bdt4+I3gMAmwGgnpAFQsTbPM+7REBZACP5SQogC6c9DA8PP7Ver/PULy8ePi4hK3zC4s2WZV3Uq67XAkpSuqQFkBKYhD910Gg0zkHE9wLAHydkaT8ivs+27RtLkOXKZEEAKZGph4eH6/V6nbtdPE45ISFrXx4fHz9bvgfSG8MJIL3ROVcqDEqtVjvbsqxLiejomMg7Dx48eOqGDRtm3iDMlYAENlZAADGWqvcBR0dHG1NTUxcBwPkAEH1f491KqU/0PlfVSlEAWQT2dl33RCL6AgAcH8ruu5RS1y6C7C/qLAogi8R8zWaTX6n9nP9lqWFEfI1t22OLJPuLNpsCyKI1nWS8FwoIIL1QWdJYtAoIIIvWdJLxXigggPRCZUlj0SoggCxa00nGe6GAANILlSWNRauAALJoTScZ74UCXQMk4QMvfKDy05RSsw5WNimo1pp3u/4kbtdrVc50itH0/UqpD5vo18swcbY3sZHW+vkAcKr/w79HdzjfBQDsOz/1f/jvu4r4k6kevQaE81XIqFrrCwDgqriCmYhvKkiZwy1VQLTWDAWfGXZsQf03KKW+VTBuarSFAIQzxK0I1wJGFx9e4LceseEFECMZexYoTwsyn8P0QgVa061WZKEA+bxSird1G11a61sB4M+TAgsgRjL2LJApIGm9gjyZ7ab9FwoQLr9Rs+g3v7OO8IyK102B8hiq22G11lEduKL5VLfTzft8E0CyegU8tvDHG9HkuTs26+qm/RcSkG8ppTZkie87xRxRwvG6KVBW/uT+XAUMAeHxJI8roxdPOnw4q8vkD+i5631sNycqFhIQFoZPDEysAbXW/K42D95SLwEkS6He3jcEhFvDaMVXaAKnm6XrJSDcZDLx4ak7Hqj3xdUW/rTuzsjMRjDFx1OAM5cA0k0Xyf9sQ0Ao5sldG2znL8UfYvQaEJ6KizarsbVGwgCOm1+udQSQohbvQbyigJSxouslIGwaPryZF/vCF7cK3IrMTPv6AzhuPaILRXHxIU5Y/xkMErda4UWncLPOwHLLxuOh1Hn0GKPPTDL4XUFOg3+4PNGuw6eUUm9N882ECmFWF9RkHSQpn1prngUMFuFYE87ndNkBgPOXe/E2qTyGgDwSY1+jiZseMD6TRE8BYUdOmPee5UBpYUzE59JprRmwWS1NhrDsKJuTHCXO8Xz4uEUML3Dxc6YHj6H09iml1mQAEpffWV2OgoBwq8twpC3CMRzsnAzMvC8TGyVMvnD6XCl0JB/zLkiPu1jTNX3KlpHp2iNhWndmi4qJ+D4gcYPALM3YMJyPObVpTLrc4sU5HQPC96JfkuJWMtbwviZco4avOWtFBQHJKnNwf05LbhoxGs7ERhlrIAw1l3/BQel5C+I7b9y2kelp34SaZWacYiK+n0bRz53FdocS9pbF+dB0lwUAeHEzfCXO0CTM1s2Z4esyIJxXo6n3LHBMbJQwCRN9NFc04W6w8e6LrDya3l8QQFK6QOxY0Zp3ltFMxA9ByM+a3tDmCxKukbj2D/rlUb3mzKZkAMKG+3ywgY5rPq11tI+d6HwJXco523HmCQi3EJxH1oDzy93PuL1tubYBxTlaDhtxHrilTzp2Nfr4YMzUs9ZlIQFhcbjfnXXN6pqYip/10OC+1jpuwYrHIuxMM1fK7mRuGeas5cRtj0mapdFa88RFuLvGO1T7DLouc1qlmHwyGNxlmTMQN5kYMNUxS6uUsrMfcGufZ7w43dr5G1+72g1bMED8Wj5pNTXQm1dU319UfBPjJvT/TRwvcbzily1ukTMOvLiKImnqO7p2YJLPtK4d19zRsc+8F+uKVGJ+N5M1ywvKvPOb5icLDUjiOx7+NOScd0eKiO87bHRmKaxLdI/TvBzPTy/O+eKAjxuPxQ7oC3axUh3I5JkmFU2nKrHIOyGpW4xCaabuyMib/3D4BQUkpablW7GFzgOI3zpwK8VjDdN+Lqc9b0D8skVn0uZ0nWImJX6qlJr52GeG4807n2UDJKZbGazdpE1Vd2wGLpr+ggPiO9KcTWtJG9BMAfFrojwDwLA283a8ULmiA+FZg+CY8sxpZYKMmTizSZi80OWtgU1tVOC5DAvrGdcNS9QtbzqlakHyZt5U/AILhd0AJO5Fr5mW0V/djk4HJ64mmzi/SZjFCkio68oVXxSSjkxRl7IFyQOJCSCmu4BT0u1IC+IbNLpCPrMAGDODlrribuL8JmEWMyC+prEzoN3Yy1WKLlYXAIm+gch9VJ5Bit1vZeJUJmHiypEGQcz0buqeLZM8mIRZ7ID4kMzZDSyA/GGPVaYwMYt0PXe80LghrrbjNQ6GNrpxc840cF5nrgIgCVPzmfvd8lTEQdil2oJkrheEHNhoLSCv40UcO7oQyGs7DEj0ZbDU9yFM8mASJi90eR3LpBLL+8xInhO3Ks3nuXFxqwJI7CER/liFZ0WiU8AdG4P43YHovjDu6jEg4YMoMg+yMHF+kzDdBCRh4iFuejs4A2t664vJKTd+y8GLiXFbZLqyYLhUAYk7BYW3W7BjMgxsnLRPL3caEAYhOlvFgITBzFzsMnF+kzCdBMTfUhPe7sG1e7TCiduZHLfTIBgjRg9sCBZ50xYO572HrEotiNG77L2YxQp15eJeEApnIdPAJs5vEqbDgMS9OhuVNm5ncuJBgAW6SV1pPTgfS7IFSZhezaN7R1sQPz9pZ3vFbk6MZtjE+U3C9BiQpI2XnQKka3AsdUC4mY9bUAr7R7DTlbtA4YWnbgCS1qoZGdnE+U3C9BAQ3lbPM3Nzdtx24NA47o7x6nlXjhxd0rNYEQdgxwwOegjexWZR+Yf7xvti3sfoBiBxs2VBVhPfNszrzAsACLcErG8wtuMsMxD8ukDmu+7+G6RB5RSMMaIbS4PDqoP36NluPXl5qmtdrDz9GQkrCpRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVAQGkrJaRfJVCAQGkFGaQTJRVgSUJiNb6vwBgkIheBQCPRcSbEfF227bPKKshJF/lVGBJAjI8PPxH9Xr9G0R0NQPCb+5NTExs3rhx46PlNIPkqqwKLElAWGxuRYjo4wyIZVlnFGk9XNc9zvO8ky3Lejy/IouI/zMwMHBvYMzR0dGnT01NPbXdbv98aGjo52U1cjRfIyMjay3LepplWfsHBgbuWSz5Xoh8CiAxqmutTwOAjwLAs2Nu/4SIXus4zp1aawbwXQBwuVLqsoUwYJE0Q8edjtdqtbX9/f3RA6yLPHZJxhFAImZtNpvnIyK/vw48bgGAOzzP+z9EPBwA1gPAmUR0vuM4n44DZMeOHYfX6/WJvr6+VpbHcFcQANpDQ0MHs8Ly/V27di2fmJio9/X1jUfD79y5c9nBgwcPs217LO1ZIyMjz7Es6/tBGES8yLbtD5mkbxLm1ltvra1bt27V+vXrD5iED8q1b9++FVl5N31eJ8MJICE1Xdd9GRFtAQB2wFfGva02Ojra8DzvSNu2HwwB8hFERM/zzkHEIwDgEAB8nYje4TjOnrDBRkZGjrEsi1ubV/jjI779ABH9w8MPP3zt5s2bp/gf27Zte0yj0fiFH/d0ImJoX+S/Jn0/EV3mOM5/uK6riIgdnO9ZAPAzRLzctu3PxDmK1vomAHgTAHzCb/12r1mz5pgTTzxxMgjvuu6/AcDLiehGpdR7w89xXfcjRLQZAL6plJr52JHW+uWI+D4isv18HEDEr1iWdXl/f/+Pg2dklCs17510fNNnlQYQ/004ozfr0gq3devWVY1G412+sc7xZ7HYqB9duXLlDXG1b8gx7iaik4nonY7jXJclYgiQ6dYCEbcQ0e8A4GUAcCQA3Ntut08eGhpq8/2RkREez3zbB+NnAPDfAMAf91QAsAIAPquUOovDDg8PP7ZerwffSuTn/4aINH9oBxFf4OeNj785zz+AbjsArAOAl/r35hxCt2PHjie2Wq0HAWD/2NjYutWrV3+dwxPR6xzH+fegvKOjo2s8z7uLiI4GgFcrpb7E97TWPCt4GwDssSzrpIGBgV/z/31oOB+swQ88z/slIp4MAEcBwO8R8dW2bU9/YsKwXKkH6GXZpZP3ywbIvD4DzIPmdrt9ByLeh4jXWpblHjp0qFar1U5FRK4Jj6zVaqeHa7RATL9m59c4x8fGxtZs2rSJW4HUKwyI53kvHhwcHOUI27dvf4LnebsA4PFEdIbjOLcTkeW67g8B4DgiukIpdSkiTp8IorV+JgB8h2FBxE22bd8RcaRtY2NjLw/ypLXm1uR83yFvb7VaZwYQNpvNS7gF4ddeo1+pajabH0TEi4noUsdxPqi1Ph0AvoqI37Nt+3nhwjabzRciogsAj1qWNf21K8/z+Jzh1Yg4ZNs2w8pwnEVEDBeDsJnzzv/3u3yXEdFFAMCtyQm2be82LJfRIRZZ9unE/SUDiN9y3GNZ1pFEtBEABvwDxjwA+LZlWRdNTU2dhYivaDQaJ0dbEn9gzsb9rlKKxxqZVwiQ25RSr4k42KcR8Q2IeIlt21c0m82XIuK3iOjHSqlnBnAEcYIzfInoM47jvDHsSJZlnRyebQrBzE773MHBwR8EzxkeHj66Xq9z6zSllKqHWoXG1NQUtx6rLctax7W/D+2PAIABHVJK8frRzKW15gkInoi42//n8xDxQtu2Zw5u01rfx9Aj4ptt274xKprW+ovcCvGUu+M45xmWa1beMw3RxQBlAyT8aeW3+oe7cW3Cv3NNyycUHstfw40xxN8i4ksA4CYius6yrOMnJyeXL1++fIXneVcS0QbLso4hoq/4X3P9u4hD/xkifg0ARpVSDFfmFQLkKqXUhRHnmjXDFTrFo42Ic9ZjiGg5ADQA4E6l1ClhR2q3243wQD58b2xs7LBwaxe+Fz7MudlsvgUR+VuKPK54c5DXZrP5NkT8JLckSikeF826XNf9AhFNw8/jM6XU6QHcw8PDT6rX6zzGmhwbGzs8rtXlsQkAsOY7lVIvMC1XNw6izjRoTICyATL9fWz/lAyupfgM2wuUUmtCBxbH9k+11vci4nlE9B7u5XA3y/O8G3jwzN0mRDzH87yjLct6iIg+opSaNYXbbDafy+scRLRXKfUEHnNnCZo2zRu957ru5UR0CQDwLFPatOoPlVKbkhyd85T3HhGh67rc5TsBACYQcWZATkQ1AODZNO7uHa+U+t9IxfGXiPg5H5AzHcfhFmH6GhkZOcGyLO42/lop9cQ4vfyu2ne55XQc5xl5855lg27fLxsg02MQ/ygYHtTxAJYPfuYWhI+V4Zqa/zfr8h2gZVnWkz3Pe8jzPB7Ifg8Rz0XEX/nA3UhED1iWtdbzvN3h7odvfHaiXwLAU8ID0zQD5AEkqKkR8Yu2bZ+ZZdiijhQXLzQ79xsA2B2TNmvLA/xPKqXeHtx3XXcdEfFC4mP8/+1FxJN4LMF/c7d25cqV+wGg7nneusHBQdZv1qW15uddT0TfdBxnY9FyZenVrfulBoSbWf/sVy4/n5XEXxGa9dXbkHMfarfb6+r1+i8sy3qm53ncb34HET2IiKe02+1buW9ORE9GxIeUUtylmXW5rsvhefZqT61Wc+IG8xxh586dK3kMkwcQfyB+P08B8+r84OAg9/0Tr6KOFBdPa81ngPFs1WmO42yNKfeTiYh3AnDLspbPCuNB9sTERNNf+7nYj3MFIjZ37979kmA6WmvNM1xnENEtSqnXhcdWzWbzSETkM7LWAsBfKaVuKlqubgGQ9dyyAcLz6zy1Of2Rex8QPvWQxx5cyyWeX6u15oHqhUR0FBHtsiyLZ1a45uNe1rlE9HQeuCPix/wu1nPiWqLt27d/3u9zHyCiayzL4nURrjFXE9ELAeAcfyAdu1AYPDMOHtd1byaiN/pTtlfUarUtk5OTexuNxopWq8X5eZNlWR/lAXlRR4rGC7qOPOVs2zZ3I2PP0tVa87rJ64MPmGqteR8bz/xts22bdxbwjNU3AIDHfzPfA+SZQ57dIiLW+kuc/3a7/atarfYiIroSAJ7BUdttXg8dahctV5Yjd+t+mQAJf0ODIeEDj3k8woNz7rPzYH3O4DzUHeCW5WUHDhz409WrVz/A45BarXZxq9U6VK/Xudbmqd9z2cF9o8cdoQ+8EnzUUUd9wF9fWBUjfAsReW/XljwtCD+HV8IfeeSR6wHgLQkG9Wq12on9/f33FXWkGECmZ9OI6E28+p/kSKEV9ocQ8Z1ExGONh9rt9klDQ0O/5Xh+i/A97oYG09G+fZ6PiDyY53WTWRcP7BHxbG6V+EbRcnULgKznlgaQpIxmDc6DeNztmZiYuJsX63imhogYAD7KskZEFyDiKCJuJaKHG43G89IWDPmZvFjWbrc3WZb1XH/Rb5/ned/nWj9YIGs2m4M8BQsAO2zb3hEuAw9OAeBZtVrtnuiGQH+9hleeT+SWkYjGEPFHnufdNjg4yHCzIx1Wr9enu5PRfV5btmxZcfjhh7+N79m2zbNlMxdDuHfv3tf68T6jtebZtfoRRxxxVXi1PE5vv4vJGzN5YbPOs3q2bfPax8zlum4fEfH6ySNKqWuDGz78PLZy/DI9SERfHRwc5G7azGVSLs/z0HGcj2U5by/uLwZApj+YEjc4jwqkteZxCgPCc/zXLF++fMfk5KSHiH+CiO/2u1mbenWuay8MKGl0V4HSA5K3+NySHDx4kLsIvGXjOD/+/Yh4y2GHHXZtVsuRNz0Jv7QVWHKAhM3F07/8d9LAdGmbVkrXCQWWNCCdEEieUW0FBJBq219Kn6GAACIuIgqkKCCAiHuIAgKI+IAoUEwBaUGK6SaxKqKAAFIRQ0sxiykggBTTTWJVRAEBpCKGlmIWU0AAKaabxKqIAgJIRQwtxSymgABSTDeJVREFBJCKGFqKWUwBAaSYbhKrIgoIIBUxtBSzmAICSDHdJFZFFBBAKmJoKWYxBQSQYrpJrIooIIBUxNBSzGIKCCDFdJNYFVFAAKmIoaWYxRQQQIrpJrEqooAAUhFDSzGLKSCAFNNNYlVEAQGkIoaWYhZTQAApppvEqogCAkhFDC3FLKaAAFJMN4lVEQUEkIoYWopZTAEBpJhuEqsiCgggFTG0FLOYAgJIMd0kVkUUEEAqYmgpZjEFBJBiukmsiigggFTE0FLMYgoIIMV0k1gVUUAAqYihpZjFFBBAiukmsSqigABSEUNLMYspIIAU001iVUQBAaQihpZiFlNAACmmm8SqiAICSEUMLcUspoAAUkw3iVURBQSQihhaillMgf8HTbWmyLNLob8AAAAASUVORK5CYII=) no-repeat center;content:"";opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;}.mjs-canvasScrollPanel.mjs-logo:before{animation:mjs-fade-in 1.75s ease-in forwards;}@keyframes mjs-fade-in {\n\t0% {\n\t opacity: 0;\n\t}\n\t100% {\n\t opacity: 1;\n\t}\n}.mjs-cursor-moved{cursor:move;}.mjs-cursor-copied{cursor:copy;}.mjs-cursor-defaultCursor{cursor:default;}.mjs-cursor-navigate{cursor:default;cursor:pointer;cursor:move;cursor:all-scroll;}.mjs-cursor-text{cursor:text;}.mjs-about{color:#585858;}.mjs-disabledText{color:darkgray;font-style:italic;}.mjs-hidden,.mjs-hToolbarNavigator>.gwt-PushButton-up-disabled,.mjs-vToolbarNavigator>.gwt-PushButton-up-disabled,.mjs-hTouchToolbarNavigator>.gwt-PushButton-up-disabled,.mjs-vTouchToolbarNavigator>.gwt-PushButton-up-disabled{visibility:hidden;}.mjs-thumbPanel{background:white;margin:10px auto;}.mjs-thumbPanel img{border:1px solid gray;margin:5px;}.mjs-thumbPanel img:hover{border:1px solid black;margin:5px;}.mjs-toolbar :focus{outline:1px solid lightgray;}.mjs-CloseButton{float:right;font-size:20px;color:gray;cursor:pointer;}.mjs-marginTop,.gwt-Button.mjs-marginTop,.mjs-separated{margin-top:15px;}.mjs-marginRight{margin-right:10px;}.mjs-expandCheckbox,.mjs-propertyDialog .gwt-CheckBox{margin-left:10px;}.mjs-errorMessage{font-weight:bold;color:red;}.mjs-dialogSubHeader{color:gray;font-weight:bold;font-size:14px;margin-top:15px;margin-bottom:5px;}.mjs-hasBottomLine{padding-bottom:4px;margin-bottom:4px;border-bottom:1px solid gray;}.mjs-separated{padding-bottom:15px;border-bottom:1px solid gray;}.mjs-disableiOSMenu{-webkit-touch-callout:none;}canvas.mjs-canvas,canvas.mjs-canvas:FOCUS{outline:none;margin:0;padding:0;-webkit-user-select:none;}.mjs-toolbar .gwt-ToggleButton,.mjs-toolbar .gwt-PushButton,.mjs-comboButtonPopup .gwt-ToggleButton,.mjs-comboButtonPopup .gwt-PushButton{width:28px;height:28px;line-height:26px;font-size:12px;font-weight:normal;}.mjs-buttonContainer-inline{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch;-webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;}.mjs-comboButtonPopup div.mjs-buttonContainer-inline{max-width:124px;}.mjs-touchComboButtonPopup div.mjs-buttonContainer-inline{max-width:180px;}.mjs-touchToolbar .gwt-ToggleButton,.mjs-touchToolbar .gwt-PushButton,.mjs-touchComboButtonPopup .gwt-ToggleButton,.mjs-touchComboButtonPopup .gwt-PushButton{width:43px;height:43px;line-height:41px;font-size:18px;font-weight:normal;}.mjs-hToolbarNavigator .gwt-PushButton{width:9px;}.mjs-vToolbarNavigator .gwt-PushButton{height:13px;line-height:11px;}.mjs-touchToolbar .mjs-hTouchToolbarNavigator .gwt-PushButton{width:16px;}.mjs-touchToolbar .mjs-vTouchToolbarNavigator .gwt-PushButton{height:20px;line-height:18px;}.mjs-touchToolbar img{vertical-align:middle;margin-top:1px;}.mjs-touchComboButtonPopup img{vertical-align:middle;margin-top:1px;padding-top:7px;padding-left:7px;}.mjs-toolbar img,.mjs-comboButtonPopup img{vertical-align:middle;margin-top:1px;}.mjs-toggleButton .gwt-Image,.mjs-pushButton .gwt-Image,.mjs-comboButton .gwt-Image{width:24px;height:24px;}.mjs-icon18,.mjs-icon18 .gwt-Image{width:18px;height:18px;}.mjs-comboButton{background-color:white;border-bottom-right-radius:9px;}.mjs-comboButton-down{background-color:#b6cdef;border-bottom-right-radius:9px;}.mjs-touchToolbar .mjs-comboButton,.mjs-touchToolbar .mjs-comboButton-down{border-bottom-right-radius:12px;}.mjs-comboButtonBackground{background:black;filter:none;margin:0;padding:0;}.mjs-slidingBar{transition:margin 0.25s;-webkit-transition:margin 0.25s;}.mjs-touchContextMenu .gwt-MenuItem{font-size:20px;}.mjs-touchContextMenu{max-height:80%;max-width:80%;overflow-y:scroll;}.mjs-toolbar,.mjs-touchToolbar,.mjs-toolbar div,.mjs-touchToolbar div,.mjs-toolbar table,.mjs-touchToolbar table,.mjs-toolbar td,.mjs-touchToolbar td{-webkit-user-select:none;}.mjs-propertyDialog .gwt-ToggleButton{background-color:transparent;background-image:none;padding:0 2px;margin:0 3px;border:0;}.mjs-periodicsystem .gwt-ToggleButton{border-radius:0;border:0;font-size:11px;width:24px;height:24px;padding-right:3px;line-height:22px;text-align:center;vertical-align:middle;font-weight:bold;padding:0;background:none;}.mjs-emptyRow .gwt-Label{font-size:4px;line-height:8px;visibility:hidden;}.mjs-emptyRow{font-size:4px;border:1px solid #bbb;border-left:0;border-right:0;}.mjs-periodicButton{border:1px solid #bbb;}.mjs-periodicsystem{border-collapse:collapse;}.mjs-periodicsystem .gwt-ToggleButton-up{background:none;}.mjs-periodicsystem .gwt-ToggleButton-up-disabled,.mjs-periodicsystem .gwt-ToggleButton-down-disabled{background:lightgray;color:gray;text-decoration:italic;}.mjs-periodicsystem .gwt-ToggleButton-down,.mjs-periodicsystem .gwt-ToggleButton-down-hovering{background:#ddd;}.mjs-periodicsystem .gwt-Label{padding:0 5px;}.mjs-periodicsystem td,.mjs-periodicsystem div{text-align:center;vertical-align:middle;padding:auto;}.mjs-listButton .gwt-ToggleButton{width:62px;height:22px;background-color:#8b9699;color:white;font-weight:normal;}.mjs-listButton .gwt-ToggleButton-up{background-color:#8b9699;color:white;font-weight:normal;}.mjs-listButton .gwt-ToggleButton-down,.mjs-listButton .gwt-ToggleButton-down-hovering{background-color:#7dc9be;font-weight:normal;}.mjs-listButton{visibility:visible;}.mjs-topGap{border-top:20px solid rgba(0, 0, 0, 0);}.mjs-reaxysGenericsDialog .gwt-TabPanel{margin-bottom:10px;}.mjs-reaxysGenericsDialog button.gwt-Button{background-color:#fff;border:1px solid #d0d2d2;margin:2px;color:#353540;padding:3px 10px;min-width:50px;}.mjs-secondaryCaption{font-size:larger;border:2px solid darkgray;padding:2px;color:dimgray;}.mjs-tertiaryCaption{font-size:smaller;border:1px dotted darkgray;color:gray;padding:2px;margin-top:3px;}.mjs-errorpanel{background:none;}.mjs-errorpanel .mjs-details{background:none;border-left:none;}.mjs-errorpanel .mjs-details .gwt-Label{font-weight:bold;padding-left:2px;}.mjs-errorpanel .mjs-details .gwt-TextArea-readonly{color:black;border-style:none;background:#e7e7e7;}.mjs-customSGroupBracket{font-size:70px;font-size:70px;}.mjs-alignBottom,.mjs-alignBottom td{vertical-align:bottom;}.mjs-top.mjs-tutorialPopup{font-family:Arial Unicode MS, Arial, sans-serif;font-size:small;padding:4px;}table.mjs-dialog-errorField tr:last-of-type:after,input.mjs-dialog-errorField:after{color:red;content:"*";}.mjs-padded-header tr>td:first-child{padding-right:10px;}a.mjs-nodecoration{font-size:medium;display:block;padding:0.2em;}a.mjs-nodecoration:hover{text-decoration:none;}input.mjs-invalidInput{color:red;}'));return true}return false} -function pp(){var a;a=new yod;a.a+='/*!!\n * Canvas 2 Svg v1.0.19\n * A low level canvas to SVG converter. Uses a mock canvas context to build an SVG document.\n *\n * Licensed under the MIT license:\n * http://www.opensource.org/licenses/mit-license.php\n *\n * Author:\n * Kerry Liu\n *\n * Copyright (c) 2014 Gliffy Inc.\n */\n!function(){"use strict";var _,x,u,d,o;function g(t,e){var r,i=Object.keys(e);for(r=0;rMath.PI?0:1:_>Math.PI?1:0,this.lineTo(h,l),this.__addPathCommand(g("A {rx} {ry} {xAxisRotation} {largeArcFlag} {sweepFlag} {endX} {endY}",{rx:r,ry:r,xAxisRotation:0,largeArcFlag:p,sweepFlag:c,endX:a,endY:o})),this.__currentPosition={x:a,y:o}}},x.prototype.clip=function(){var t=this.__closestGroupOrSvg(),e=this.__createElement("clipPath"),r=h(this.__ids),i=this.__createElement("g");this.__applyCurrentDefaultPath(),t.removeChild(this.__currentElement),e.setAttribute("id",r),e.appendChild(this.__currentElement),this.__defs.appendChild(e),t.setAttribute("clip-path",g("url(#{id})",{id:r})),t.appendChild(i),this.__currentElement=i},x.prototype.drawImage=function(){var t,e,r,i,s,n,a,o,h,l,c,p,_,u=Array.prototype.slice.call(arguments),d=u[0],g=0,m=0;if(3===u.length)t=u[1],e=u[2],r=s=d.width,i=n=d.height;else if(5===u.length)t=u[1],e=u[2],r=u[3],i=u[4],s=d.width,n=d.height;els';a.a+='e{if(9!==u.length)throw new Error("Invalid number of arguments passed to drawImage: "+arguments.length);g=u[1],m=u[2],s=u[3],n=u[4],t=u[5],e=u[6],r=u[7],i=u[8]}a=this.__closestGroupOrSvg(),this.__currentElement;var f="translate("+t+", "+e+")";if(d instanceof x){if((o=d.getSvg().cloneNode(!0)).childNodes&&1',Syd='<\/i>',Tyd='",NHd='<\/font>',OHd='value',PHd='mjs-dialogSubHeader',QHd='mjs-inline',RHd={162:1,13:1},SHd='BUTTON',THd='Elements list',UHd='Atom list',VHd='NOT list',WHd='mjs-periodicButton',XHd='mjs-listButton',YHd='mjs-hidden',ZHd={248:1},$Hd='170px',_Hd={198:1,3:1,4:1},aId='mjs-propertyDialog',bId='Change to <\/b>',cId='change-atomtype',dId='mjs-hasBottomLine',eId='atomproperties',fId='Aromatic (a)',gId='Aliphatic (A)',hId='Unsaturated',iId='Pseudo',jId='Charge',kId='Enhanced
    stereo',lId='Display',mId='Radical',nId='120px',oId='160px',pId='  ',qId='mjs-icon18',rId='gwt-TextBox',sId='',tId='Invalid key.',uId='NOCHANGE',vId='as drawn',wId='exactly',xId='Ring bond',yId='Ring count',zId='Substitutions',AId='number cannot be null',BId={465:1,21:1},CId='mjs-dialog-errorField',DId={2243:1,13:1},EId=-2147483648,FId='Total H',GId='Implicit H',HId='Bond orders',IId='Connections',JId='Smallest ring size',KId='Aromaticity',LId='mjs-reaxysGenericsDialog',MId={163:1,3:1,6:1,4:1},NId='Heteroaryl',OId='Hetero',PId='mjs-obf-CJ',QId="'> ",ZId="",$Id='undefined',_Id='application/octet-stream',aJd='#000000',bJd='mjs-alignBottom',cJd='mjs-customSGroupBracket',dJd=' ',eJd='backgroundColor',fJd='px sans-serif',gJd='rgba(220,220,220,0.7)',hJd='rgba(128,128,128,0.7)',iJd='rgba(211,211,211,0.8)',jJd='rectangleSelection',kJd='lassoSelection',lJd='autoreaction',mJd='{"north":[{"categories":["clear","io"],"isFloating":false},{"categories":["history"],"isFloating":false},{"categories":["clipboard"],"isFloating":false},{"categories":["zoom"],"defaultItem":"zoomToFit","isFloating":true},{"items":["clean2d","calculateStereo","hydrogenize"],"isFloating":false},{"items":["#extension"],"isFloating":false},{"items":["settings"],"isFloating":false},{"items":["about"],"isFloating":false}],"west":[{"categories":["select"],"isFloating":true},{"items":["erase"],"isFloating":false},{"categories":["freehandDrawing","basic_bonds","aromaticBond","singleUpBond","singleDownBond","singleUpOrDownBond","doubleCisOrTransBond","doubleCisOrTransOrUnspecBond","singleOrDoubleBond","singleOrAromaticBond","doubleOrAromaticBond","anyBond","coordinateBond","positionVariation"],"defaultItem":"singleBond","isFloating":true},{"items":["chain"],"isFloating":false},{"categories":["charge"],"isFloating":false},{"items":["repeatingUnit"],"isFloating":false},{"categories":["rgroup"],"isFloating":false}],"east":[{"items":["periodicTable"],"isFloating":false},{"categories":["frequent_atoms","S","F","P","Cl","Br","I"],"isFloating":false},{"items":["starAtom"],"isFloating":false},{"items":["A","Q","M","X","AH","QH","MH","XH","pseudoAtom","atomQueryProperty"],"isFloating":true}],"south":[{"items":["abbreviations"],"isFloating":false},{"items":["#templates","#customTemplates"],"isFloating":false}]}',nJd='search',oJd='standard',pJd='{"north":[{"items":["zoomIn","zoomOut","zoomToFit"],"isFloating":false},{"items":["rotate3d"],"isFloating":false}]}',qJd='background-color',rJd='callback',sJd={3:1,45:1,52:1,42:1},tJd='Abbreviated groups',uJd={579:1},vJd={146:1,49:1,116:1,244:1,294:1,197:1,295:1,105:1,338:1,296:1,196:1},wJd='Bond cannot be null',xJd="Bond's ligands should be contained in the molecule",yJd='Ligand cannot be null',zJd={292:1,3:1,6:1,4:1},AJd=1.53,BJd={146:1,49:1,116:1,244:1,294:1,197:1,295:1,105:1,338:1,296:1,196:1,261:1},CJd='monovalent',DJd={123:1,337:1,226:1},EJd=0.5148721293383272,FJd=2.626720524251466,GJd=3.6564647829281203,HJd=1.1780972450961724,IJd=1.9634954084936207,JJd=4.319689898685965,KJd=5.105088062083414,LJd=-1.7976931348623157E308,MJd='alertdialog',NJd='application',OJd='button',PJd='checkbox',QJd='columnheader',RJd='complementary',SJd='contentinfo',TJd='definition',UJd='menuitemcheckbox',VJd='menuitemradio',WJd='navigation',XJd='option',YJd='presentation',ZJd='progressbar',$Jd='radiogroup',_Jd='spinbutton',aKd={409:1},bKd='CSS1Compat',cKd='HTMLEvents',dKd='load',eKd='contextmenu',fKd={67:1,59:1,3:1,11:1,10:1},gKd={277:1,59:1,3:1,11:1,10:1},hKd={222:1,59:1,3:1,11:1,10:1},iKd={59:1,223:1,3:1,11:1,10:1},jKd={59:1,224:1,3:1,11:1,10:1},kKd={59:1,225:1,3:1,11:1,10:1},lKd={117:1,3:1,11:1,10:1},mKd={59:1,188:1,3:1,11:1,10:1},nKd=2286,oKd=2298,pKd='mousedown',qKd='mousemove',rKd='mouseout',sKd='mouseover',tKd='mouseup',uKd='touchcancel',vKd='touchstart',wKd={274:1,3:1,45:1,52:1,42:1},xKd={229:1,3:1,45:1,42:1},yKd='January',zKd='February',AKd='March',BKd='April',CKd='May',DKd='June',EKd='July',FKd='August',GKd='September',HKd='October',IKd='November',JKd='December',KKd=1900,LKd='Before Christ',MKd='Anno Domini',NKd='Sunday',OKd='Monday',PKd='Tuesday',QKd='Wednesday',RKd='Thursday',SKd='Friday',TKd='Saturday',UKd='Too many percent/per mille characters in pattern "',VKd={3:1,11:1,156:1},WKd='Error parsing JSON: ',XKd=4194303,YKd=1048575,ZKd=524288,$Kd=17592186044416,_Kd=1000000000,aLd=-17592186044416,bLd='html is null',cLd={1009:1,3:1},dLd='DOMMouseScroll',eLd=131072,fLd=2097152,gLd=16777216,hLd=33554432,iLd=67108864,jLd={411:1},kLd='__gwtLastUnhandledEvent',lLd='__uiObjectID',mLd='orientationchange',nLd='http://www.chemaxon.com/',oLd={36:1,24:1,35:1,31:1,71:1,79:1,174:1,21:1,28:1,29:1,39:1},pLd='display',qLd='scrollHeight',rLd={95:1,36:1,24:1,35:1,31:1,21:1,27:1,28:1,29:1},sLd='rowSpan',tLd='Column index: ',uLd=', Column size: ',vLd='Row index: ',wLd=', Row size: ',xLd='bidiwrapped',yLd='gwt-PushButton',zLd={36:1,24:1,35:1,31:1,71:1,79:1,21:1,478:1,28:1,29:1,39:1},ALd='gwt-TabBarItem-selected',BLd='gwt-TabBarItem-wrapper-selected',CLd={36:1,24:1,35:1,31:1,174:1,21:1,2244:1,28:1,29:1},DLd={231:1,3:1,11:1,10:1},ELd={495:1,500:1},FLd={1010:1,443:1},GLd='Superscript',HLd={297:1,149:1},ILd={1011:1,297:1,149:1},JLd='Failed to parse: ',KLd='parsererror',LLd={3:1,45:1,73:1,52:1,42:1},MLd='For input string: "',NLd={3:1,45:1,20:1,52:1,42:1},OLd=1073741824,PLd='BigInteger: modulus not positive',QLd='BigInteger not invertible.',RLd='Zero length BigInteger',SLd=4294967295,TLd={l:0,m:0,h:524288},ULd={11:1,343:1},VLd={212:1},WLd=2265,XLd={39:1,78:1,144:1},YLd={185:1},ZLd={3:1,212:1},$Ld={3:1,39:1,78:1,144:1},_Ld={3:1,39:1,78:1,160:1},aMd=15525485,bMd=5.9604644775390625E-8,cMd={3:1,11:1,10:1,259:1},dMd={3:1,4:1,2346:1},eMd=', length: ',fMd='fromIndex: ',gMd=', toIndex: ',hMd=1518500249,iMd=1859775393,jMd=-1894007588,kMd=-899497514,lMd='__gwtex_wrap',mMd='locale',nMd='default',oMd='user.agent',pMd='gecko1_8';var _,l9c,g9c,x8c=-1;m9c();n9c(1,null,{},S);_.V=qMd;_.W=function(){return this.Fp};_.X=rMd;_.Y=function(){var a;return Jmd(U(this))+'@'+(a=V(this)>>>0,a.toString(16))};_.equals=function(a){return this.V(a)};_.hashCode=function(){return this.X()};_.toString=function(){return this.Y()};var dvc,evc,fvc;n9c(584,1,{584:1},Kmd);_.fp=function(a){var b;b=new Kmd;b.i=4;a>1?(b.c=Qmd(this,a-1)):(b.c=this);return b};_.gp=function(){Hmd(this);return this.b};_.Ic=function(){return Jmd(this)};_.hp=function(){Hmd(this);return this.n};_.ip=function(){return (this.i&4)!=0};_.jp=function(){return (this.i&1)!=0};_.Y=function(){return ((this.i&2)!=0?'interface ':(this.i&1)!=0?'':'class ')+(Hmd(this),this.p)};_.i=0;_.k=0;var Gmd=1;fvc={3:1,466:1,11:1,2:1};var Bnd;n9c(1015,1,{},lod);_.Wg=function(a,b){return End(a.toLowerCase(),b.toLowerCase())};_.V=qMd;var _5c=Mmd(1);var O5c=Mmd(584);var M5c=Omd();var g6c=Mmd(2);var c6c=Mmd(1015);var W;var Z;var Cvc=Mmd(null);var db;var wvc=Mmd(null);var hb;var xvc=Mmd(null);var nb;var yvc=Mmd(null);var vb;var zvc=Mmd(null);var Bb;var Avc=Mmd(null);var Ib,Jb;var Bvc=Mmd(null);var Ob;var Dvc=Mmd(null);n9c(1998,1,{},Sb);_.a=null;var Evc=Mmd(1998);var Tb;var Fvc=Mmd(null);n9c(440,1,{440:1},cc);_.V=function(a){return kvc(a,440)&&this.b==a.b&&this.a==a.a};_.X=function(){return this.b.k+$wnd.Math.abs(this.a)};_.Y=function(){var a;a=fc(this.b);this.b==(nc(),kc)&&(a+=': '+this.a);return a};_.a=0;var Ovc=Mmd(440);n9c(10,1,{3:1,11:1,10:1});_.Z=function(a){return this.k-a.k};_.V=qMd;_.X=rMd;_.$=function(){return fc(this)};_.Y=function(){return this.$()};_.k=0;var Q5c=Mmd(10);n9c(370,10,{370:1,3:1,11:1,10:1},oc);var jc,kc,lc,mc;var Gvc=Nmd(370,Q5c,pc);n9c(1534,1,{},vc);var qc;var Ivc=Mmd(1534);n9c(1999,1,{},Dc);_.Y=function(){var a;a=new pod;nod(a,'The atom reference is: '+this.b+oyd);nod(a,'ImplicitHCount = '+this.f+oyd);nod(a,'Electrons in bonds = '+this.d+oyd);a.a+='The bonds of the atom:\n';nod(a,'Single bonds: '+this.c[1]+oyd);nod(a,'Double bonds: '+this.c[2]+oyd);nod(a,'Triple bonds: '+this.c[3]+oyd);nod(a,'Aromatic bonds: '+this.c[4]+oyd);nod(a,'Charge: '+this.b.Nl()+oyd);nod(a,'Radical count: '+this.b.Xl().c);return a.a};_.a=0;_.b=null;_.d=0;_.e=false;_.f=0;_.i=false;_.j=0;_.k=null;_.n=0;_.o=0;var Hvc=Mmd(1999);n9c(515,1,{515:1,3:1},Gc,Hc);_.V=function(a){var b;if(this===a){return true}if(!kvc(a,515)){return false}b=a;if(this.a==b.a&&this.b==b.b){return true}return false};_.X=function(){return 5+(this.b?13:0)+(this.a?19:0)};_.Y=function(){return 'Local aromatic calculation: '+this.a+'\n Traditional form allowed: '+this.b};_.a=false;_.b=false;var Ec;var Kvc=Mmd(515);n9c(1535,1,{},Ic);_.a=true;_.b=true;var Jvc=Mmd(1535);n9c(42,1,{3:1,42:1});_._=function(a){return new Error(a)};_.ab=JMd;_.bb=function(){var a,b,c;c=this.i==null?null:this.i.replace(new RegExp(oyd,'g'),' ');b=(a=Jmd(this.Fp),c==null?a:a+': '+c);Pc(this,Sc(this._(b)));Hic(this)};_.Y=function(){return Qc(this,this.ab())};_.e=pyd;_.j=false;_.o=true;var h6c=Mmd(42);n9c(45,42,{3:1,45:1,42:1},Uc);var S5c=Mmd(45);n9c(324,45,{324:1,3:1,45:1,42:1},Xc);var Mvc=Mmd(324);n9c(239,324,{239:1,324:1,3:1,45:1,42:1},Yc);var Lvc=Mmd(239);n9c(681,324,{324:1,681:1,3:1,45:1,42:1},Zc);var Nvc=Mmd(681);n9c(172,10,{172:1,3:1,11:1,10:1},md);_.a=0;var $c,_c,ad,bd,cd,dd,ed,fd,gd,hd,jd,kd;var Pvc=Nmd(172,Q5c,nd);n9c(66,1,Hyd);_.cb=function(a){return qd(this,a)};_.eb=function(){rd(this)};_.fb=function(a){return td(this,a)};_.gb=function(a,b){ud(this,a,b)};_.f=true;var Qvc=Mmd(66);n9c(2112,1,Jyd,Ed);_.hb=function(a){this.a.eb()};var Rvc=Mmd(2112);n9c(2113,1,Kyd,Fd);_.ib=function(a){var b,c;b=a.f;c=a.a;c==Lyd?xe(this.a,a.b):c==Cyd?we(this.a,a.b):c==Byd?te(this.a,a.b):Hnd(Myd,c)||Hnd(Dyd,c)||Hnd(Eyd,c)?ve(this.a,b):c==Nyd?Ae(this.a,s9c(a.b),s9c(a.c)):c==Oyd?ye(this.a,a.b):c==null&&Be(this.a,b)};var Svc=Mmd(2113);n9c(2114,1,Jyd,Gd);_.hb=function(a){this.a.gb(Fyd,(qmd(),(1&wl(this.b).a)>0?true:false));this.a.eb()};var Tvc=Mmd(2114);n9c(2115,1,Kyd,Hd);_.ib=function(a){var b,c;b=a.f;c=a.a;c==Lyd?xe(this.a,a.b):c==Cyd?we(this.a,a.b):c==Fyd?De(this.a,a.b):c==Byd?te(this.a,a.b):Hnd(Myd,c)||Hnd(Dyd,c)||Hnd(Eyd,c)?ve(this.a,b):c==Nyd?Ee(this.a,a.b,s9c(a.c)):c==Oyd?ye(this.a,a.b):c==null&&Fe(this.a,b)};var Uvc=Mmd(2115);n9c(1892,1,Kyd,Qd);_.ib=function(a){if(!(Hnd(a.a,Fyd)||Hnd(a.a,Byd))){return}Id(this,a.f)};var Xvc=Mmd(1892);n9c(1893,1,{},Td);var Vvc=Mmd(1893);n9c(2109,66,{60:1,270:1,2329:1,12:1,19:1},Zd);_.db=function(){if(!this.a){return false}if(yd(this.a.c)){this.a.c.eb();return true}return false};_.fb=function(a){return Vd(this,a)};_.ib=function(a){!!this.a&&this.a.c==a.f&&sd(this,a.a,a.c,a.b)};_.jb=function(a){Xd(this);Ud(this);sd(this,null,null,this.a.c)};_.gb=function(a,b){Wd(this,a,b)};var Wvc=Mmd(2109);n9c(Pyd,1,{});_.Y=function(){return 'An event type'};var v5c=Mmd(Pyd);n9c(487,Pyd,{},ae);_.lb=function(a){a.kb(this)};_.mb=function(){return $d};var $d;var Yvc=Mmd(487);n9c(605,Pyd,{},de,ee);_.lb=function(a){a.ib(this)};_.mb=function(){return be};var be;var Zvc=Mmd(605);n9c(1894,1,Hyd,fe);_.cb=function(a){return this.a.cb(new ge(a,this))};_.eb=function(){this.a.eb();Sd(this.b,this)};_.fb=function(a){return this.a.fb(a)};_.gb=function(a,b){this.a.gb(a,b)};var _vc=Mmd(1894);n9c(1895,1,Kyd,ge);_.ib=function(a){this.b.ib(new de(this.a,a.a,a.c,a.b))};var $vc=Mmd(1895);n9c(2110,1,Kyd,qe);_.ib=function(a){var b;b=a.a;b==Lyd?me(this.b,a.b):b==Cyd?fg(this.b,a.b):b==Fyd?le(this.b,a.b):b==Byd?ie(this.b,a.b):Hnd(Myd,b)||Hnd(Dyd,b)||Hnd(Eyd,b)?ke(this.b,a.f):b==Nyd?oe(this.b,a.b,s9c(a.c)):b==Oyd?ne(this.b,a.b):b==null&&pe(this.b,this.a)};var awc=Mmd(2110);n9c(2197,1,Kyd,se);_.ib=function(a){bhd(this.b,re(this.a))};var bwc=Mmd(2197);n9c(973,1,{});var cwc=Mmd(973);n9c(2218,973,{},Ce);var dwc=Mmd(2218);n9c(2181,973,{},Ge);var ewc=Mmd(2181);n9c(1121,1,{},Je);_.nb=function(a){He(this,a)};var hwc=Mmd(1121);n9c(1122,1,{},Ke);_.nb=function(a){ONb(this.a,new Le(this.b,a))};var fwc=Mmd(1122);n9c(1123,1,{},Le);_.ob=function(a){Ie(this.b,new Me(a),this.a)};_.pb=function(a){Ie(this.b,new Ne(a),this.a)};var gwc=Mmd(1123);n9c(2309,1,{});var kwc=Mmd(2309);n9c(1685,2309,{},Me);_.nb=function(a){a.ob(this.a)};var iwc=Mmd(1685);n9c(1686,2309,{},Ne);_.nb=function(a){a.pb(this.a)};var jwc=Mmd(1686);n9c(807,1,{},Re);_.qb=function(a){Oe(this,a)};_.c=false;var nwc=Mmd(807);n9c(1389,1,{},Ue);var lwc=Mmd(1389);n9c(1388,1,Vyd,Ve);_.eb=function(){this.a.c=false;Pe(Te(this.a.a))};var mwc=Mmd(1388);var We,Xe,Ye,Ze;n9c(1197,1,{},_e);_.qb=function(a){wic((pic(),oic),a)};var owc=Mmd(1197);n9c(1198,1,{},af);_.qb=function(a){xic((pic(),oic),a)};var pwc=Mmd(1198);n9c(1085,1,Wyd,ff);_.sb=sMd;var qwc=Mmd(1085);n9c(743,1,Wyd,gf);_.sb=function(a){return bf(),undefined};var rwc=Mmd(743);n9c(1086,1,{},hf);_.ob=function(a){this.b.call(null,df(this.a.sb(a)))};_.pb=function(a){this.c.call(null,this.d.sb(a))};var swc=Mmd(1086);n9c(744,1,Wyd,jf);_.sb=sMd;var twc=Mmd(744);n9c(986,$wnd.Function,{},kf);_.rb=function(a,b){ef(this.b,this.c,this.a,a,b)};n9c(355,1,{},nf,pf);var uwc=Mmd(355);n9c(821,1,Xyd,xf);_.tb=function(a){wf(this,a)};_.d=0;var wwc=Mmd(821);n9c(822,1,Xyd,Af);_.tb=function(a){vf(this.a,a)};var vwc=Mmd(822);n9c(874,1,{},Df);_.ob=function(a){zf(this.b,a)};_.pb=function(a){Cf(this,a)};_.ub=function(a,b){this.a=a;this.b=b};var xwc=Mmd(874);n9c(2310,1,{});var Ef;var zwc=Mmd(2310);n9c(1713,2310,{},Jf);var Ff;var ywc=Mmd(1713);n9c(28,1,{31:1,28:1});_.vb=function(){return Sf(this)};_.wb=function(){return Tf(this)};_.xb=function(){return Rf(this)};_.yb=zMd;_.zb=function(a){ag(this,a)};_.Ab=function(a){gg(this,a)};_.Bb=function(a){hg(this,a)};_.Y=function(){if(!this.U){return '(null handle)'}return bjc((abd(),this.U))};var E4c=Mmd(28);var D3c=Omd();n9c(29,28,kzd);_.Cb=WMd;_.Db=tMd;_.Eb=tMd;_.Fb=function(a){qg(this,a)};_.Gb=function(){return this.P};_.Hb=function(){sg(this)};_.Ib=function(a){tg(this,a)};_.Jb=uMd;_.Kb=tMd;_.Lb=tMd;_.Mb=function(a){this.Q==-1?obd((abd(),this.U),a|(this.U.__eventBits||0)):(this.Q|=a)};_.P=false;_.Q=0;var R4c=Mmd(29);n9c(2276,29,lzd);_.Nb=function(a){zg(this,a)};_.Ob=function(a){throw I8c(new God('This panel does not support no-arg add()'))};_.Pb=function(){Bg(this)};_.Db=function(){Edd(this,(Cdd(),Add))};_.Eb=function(){Edd(this,(Cdd(),Bdd))};var S3c=Mmd(2276);n9c(64,2276,mzd,Fg,Gg,Hg);_.Ob=function(a){Cg(this,a)};_.Sb=function(){return abd(),this.U};_.Tb=function(){return this.O};_.Qb=function(){return new xid(this)};_.Rb=function(a){return Dg(this,a)};_.Ub=function(a){Eg(this,a)};var i4c=Mmd(64);n9c(488,64,mzd);_.Sb=function(){return Ig.Go(fbd((abd(),this.U)))};_.vb=function(){return Sf(this)};_.wb=function(){return Tf(this)};_.xb=function(){return Ig.Ho(fbd((abd(),this.U)))};_.Vb=function(){this.Wb(false)};_.Wb=function(a){Sg(this)};_.Xb=function(a){a.c&&false&&(a.a=true)};_.Lb=function(){this.M&&Mhd(this.L,false,true)};_.zb=function(a){this.v=a;Tg(this);a.length==0&&(this.v=null)};_.Yb=function(a){$g(this,a)};_.Ab=function(a){(abd(),this.U).style[nzd]=a?tzd:ozd;!!this.A&&(this.A.style[nzd]=a?tzd:ozd,undefined)};_.Ub=function(a){_g(this,a)};_.Bb=function(a){this.w=a;Tg(this);a.length==0&&(this.w=null)};_.Zb=function(){ah(this)};_.s=false;_.t=false;_.F=false;_.G=false;_.H=0;_.I=false;_.K=false;_.M=false;_.N=0;var Ig;var $3c=Mmd(488);n9c(630,488,mzd,fh);_.Xb=function(a){512==rbd(a.d)&&nlc(a.d)==27&&Sg(this)};var Bwc=Mmd(630);n9c(827,1,Bzd,gh);_.$b=function(a){Jg();Pj(this.a)};var Awc=Mmd(827);n9c(1398,1,{},lh);var Dwc=Mmd(1398);n9c(618,29,kzd);_._b=vMd;_.Ib=function(a){var b,c;b=rh(this,(abd(),(ujc(),tjc).An(a)));switch(zcd(a.type)){case 1:{(Sfd(),Rfd).Fo(this.U);!!b&&qh(this,b,true);break}case 16:{!!b&&wh(this,b,true);break}case 32:{!!b&&wh(this,null,false);break}case wzd:{Bh(this);break}case 128:{c=a.keyCode|0;Lsc();c=Zoc(c,false);switch(c){case 37:Ah(this);a.stopPropagation();tjc.Bn(a);break;case 39:zh(this);a.stopPropagation();tjc.Bn(a);break;case 38:yh(this);a.stopPropagation();tjc.Bn(a);break;case 40:xh(this);a.stopPropagation();tjc.Bn(a);break;case 27:this._b();a.stopPropagation();tjc.Bn(a);break;case 9:this._b();break;case 13:if(!Bh(this)){qh(this,this.i,true);a.stopPropagation();tjc.Bn(a)}}break}}tg(this,a)};_.Jb=uMd;_.c=false;_.e=true;_.j=false;var M3c=Mmd(618);n9c(1399,618,kzd);_.ac=vMd;_._b=function(){this.ac()};var L3c=Mmd(1399);n9c(1400,1399,kzd,Hh);_.ac=function(){Ch(this,null);Sg(this.a.c)};var Cwc=Mmd(1400);n9c(1334,1,{},Kh);var Owc=Mmd(1334);n9c(1340,1,{2335:1,13:1},Mh);_.bc=function(a){this.a.c=a.a.b;Sg(this.a.b)};var Ewc=Mmd(1340);n9c(1341,1,Hzd,Nh);_.cc=function(a){if(nlc(a.a)==27){this.b.d.Vb();Sg(this.a.b)}};var Fwc=Mmd(1341);n9c(1342,1,{1003:1,13:1},Oh);_.dc=function(a){Wh(this.a)};var Gwc=Mmd(1342);n9c(1343,1,Izd,Ph);_.eb=function(){wic((pic(),oic),new Qh(this,this.b))};var Iwc=Mmd(1343);n9c(1344,1,Izd,Qh);_.eb=function(){sl(this.a.a.a.a);Aid(this.a.a.a,this.b);Cid(this.a.a.a)};var Hwc=Mmd(1344);n9c(1338,1,Bzd,Sh);_.$b=function(a){Rh(this)};var Jwc=Mmd(1338);n9c(1335,1,{},Th);_.ec=function(a,b){var c,d,e,f;c=-b/3|0;e=this.b+c;d=(Zbd(),Ykc($doc));e=ai(e,a,d,Vkc($doc)+d);f=this.c-(b/2|0);Zg(this.a.b,e,f)};_.b=0;_.c=0;var Kwc=Mmd(1335);n9c(1337,1,Bzd,Uh);_.$b=function(a){Zld(this.b.a);Rh(this.a)};var Lwc=Mmd(1337);n9c(1336,1,{},Xh);var Nwc=Mmd(1336);n9c(1339,1,Izd,Yh);_.eb=function(){Vh(this.a)};var Mwc=Mmd(1339);n9c(2111,1,{},_h);_.ec=function(a,b){Zg(this.a,ai(this.b,a,(Zbd(),Ykc($doc)),Vkc($doc)+Ykc($doc)),$h(this,b))};_.b=0;_.c=0;var Pwc=Mmd(2111);n9c(955,1,{},ei);var Swc=Mmd(955);n9c(2103,1,{},gi);_.fc=function(){return this.b0&&tjc.wn(a)==1&&this.ad()}break;case 64:this.k&&tjc.Bn(a);break;case 32:c=$ad.$n(a);if(Oic(this.U,tjc.An(a))&&(!c||!Oic(this.U,c))){this.k&&this.bd();!this.d&&Cl(this,this.o);(2&this.d.a)>0&&Nl(this)}break;case 16:if(Oic(this.U,tjc.An(a))){!this.d&&Cl(this,this.o);(2&this.d.a)<=0&&Nl(this);this.k&&this.cd()}break;case 4096:if(this.n){this.n=false;this.bd()}break;case 8192:if(this.k){this.k=false;this.bd()}}tg(this,a);if((zcd(a.type)&896)!=0){b=(a.keyCode|0)&hyd;switch(d){case 128:if(b==32){this.n=true;this.cd()}break;case 512:if(this.n&&b==32){this.n=false;this.ad()}break;case 256:if(b==10||b==13){this.cd();this.ad()}}}};_.ad=function(){Al(this)};_.bd=tMd;_.cd=tMd;_.Jb=function(){ug(this);vl(this);!this.d&&Cl(this,this.o);(2&this.d.a)>0&&Nl(this)};_._c=function(a){ljc((Sfd(),abd(),this.U),a)};_.c=false;_.k=false;_.n=false;var O2c=Mmd(266);n9c(209,266,oAd,Vl,Wl,Xl);_.ad=function(){var a,b;b=(!this.d&&Cl(this,this.o),this.d.a^1);a=yl(this,b);Cl(this,a);Al(this);Zt(this,(qmd(),!this.d&&Cl(this,this.o),(1&this.d.a)>0?true:false))};_.dd=function(a){Tl(this,a)};var Rl='gwt-ToggleButton';var D4c=Mmd(209);n9c(694,209,{714:1,95:1,36:1,24:1,35:1,31:1,21:1,209:1,28:1,29:1},Zl);_.Uc=AMd;_.Vc=function(a){Yl(this,a)};var Sxc=Mmd(694);n9c(2067,Uzd,lAd,cm);_.Uc=function(){return this.b.Uc()};_.Vc=function(a){am(this);this.b.Vc(a);$l(this);bm(this,!!this.b.Uc()&&Ad(this.b.Uc()))};var Vxc=Mmd(2067);n9c(2068,1,pAd,em);_.ed=function(a){a.a&&_l(this.a)};var Txc=Mmd(2068);n9c(2069,1,Kyd,fm);_.ib=function(a){a.a==Gyd&&_l(this.a)};var Uxc=Mmd(2069);n9c(2216,1,qAd);var Xxc=Mmd(2216);n9c(2217,2216,qAd,hm);_.Cb=AMd;var Wxc=Mmd(2217);n9c(2175,1,Jyd,lm);_.hb=function(a){Sg(this.a)};var Yxc=Mmd(2175);n9c(600,488,mzd,nm);_.Pb=function(){Bg(this.q)};_.Db=function(){sg(this.q)};_.Eb=function(){ug(this.q)};_.Tb=function(){return this.q.O};_.Qb=function(){return new xid(this.q)};_.Rb=function(a){return Dg(this.q,a)};_.Ub=function(a){mm(this,a)};var S2c=Mmd(600);n9c(762,600,mzd);_.Db=function(){try{sg(this.q)}finally{sg(this.e)}};_.Eb=function(){try{ug(this.q)}finally{ug(this.e)}};_.Wb=function(a){rm(this,a)};_.Ib=function(a){switch(abd(),zcd((ujc(),a).type)){case 4:case 8:case 64:case 16:case 32:if(!this.n&&!sm(this,a)){return}}tg(this,a)};_.Xb=function(a){wm(this,a)};_.Zb=function(){xm(this)};_.f=0;_.i=0;_.j=0;_.k=0;_.n=false;_.p=0;var X2c=Mmd(762);n9c(103,762,mzd,Am,Bm);_.fd=function(){this.Vb()};_.Xb=function(a){var b;wm(this,a);!a.a&&(b=a.d,rbd(a.d)==1&&nt((ujc(),tjc).An(b),Rf(this.c))||rbd(a.d)==128&&((ujc(),b).keyCode|0)==27)&&this.fd()};var Zxc=Mmd(103);n9c(1886,1,{714:1,21:1},Hm);_.Cb=BMd;_.Uc=AMd;_.Vc=function(a){if(!a){Em(this,null)}else{throw I8c(new and)}};_.c=false;var cyc=Mmd(1886);n9c(1888,209,oAd,Lm);_.dd=function(a){Km(this,a)};var $xc=Mmd(1888);n9c(1889,1,Vyd,Nm);_.eb=function(){Mm(this)};var _xc=Mmd(1889);n9c(1890,1,Jyd,Om);_.hb=function(a){var b,c;if(ilc(a.a)==1){c=false;b=Vd(this.a.a,Fyd);b!=null&&(c=b);Km(this.a.b,c)}};var ayc=Mmd(1890);n9c(1887,1,{339:1,575:1,1001:1,574:1,13:1},Pm);_.oc=function(a){ilc(a.a)==1&&(this.a.c=true)};_.qc=CMd;_.rc=CMd;_.sc=function(a){ilc(a.a)==1&&Dm(this.a,soc(a),toc(a))};var byc=Mmd(1887);n9c(1471,1,{31:1},Rm);_.a=0;var dyc=Mmd(1471);n9c(273,10,{273:1,3:1,11:1,10:1},Ym);var Sm,Tm,Um,Vm,Wm;var eyc=Nmd(273,Q5c,Zm);var $m;n9c(1687,Uzd,Wzd,jn);_.uc=function(a,b){en(this,a,b)};_.b=-1;_.d=-1;var jyc=Mmd(1687);n9c(316,10,xAd,on);_.gd=DNd;var kn,ln,mn;var hyc=Nmd(316,Q5c,pn);n9c(1688,316,xAd,qn);_.gd=function(a,b,c){var d;d=b.S;d.c=c+dzd;!!d.d&&(d.d.style[czd]=d.c,undefined)};var fyc=Nmd(1688,hyc,null);n9c(1689,316,xAd,rn);_.gd=function(a,b,c){var d;d=b.S;d.f=c+dzd;!!d.d&&(d.d.style[ezd]=d.f,undefined)};var gyc=Nmd(1689,hyc,null);n9c(363,1,{363:1},zn);_.b=false;_.c=0;var iyc=Mmd(363);n9c(2046,600,mzd);var R2c=Mmd(2046);n9c(942,2046,{942:1,36:1,24:1,35:1,31:1,71:1,79:1,21:1,64:1,28:1,29:1,39:1},Fn);_.Yb=function(a){$g(this,new Gn(this,a))};var lyc=Mmd(942);n9c(2047,1,{},Gn);_.ec=function(a,b){var c;c=Bn(this.b);Cn(this.b,c-An(this.b));Dn(this.b);yhd(this.a,a,$wnd.Math.min(b,c))};var kyc=Mmd(2047);n9c(2313,1,{});var o4c=Mmd(2313);n9c(678,2313,{});_.hd=function(){return Hn()};_.a=true;_.b=null;var n4c=Mmd(678);n9c(927,678,{},Nn);_.hd=function(){var a;a=new Fn;(Jg(),Ig).Ho(fbd((abd(),a.U))).className=AAd;Xg(a,(Fhd(),Ehd));return a};var myc=Mmd(927);n9c(1805,1,pAd,On);_.ed=function(a){wic((pic(),oic),new Qn(this))};var oyc=Mmd(1805);n9c(1806,1,Izd,Qn);_.eb=function(){sl(this.a.a)};var nyc=Mmd(1806);n9c(2018,1,qAd,Vn);_.Cb=AMd;var pyc=Mmd(2018);n9c(780,Uzd,Wzd,Xn);_.uc=function(a,b){a>=0&&((abd(),this.U).style[ezd]=a+dzd,undefined);b>=0&&((abd(),this.U).style[czd]=b+dzd,undefined);this.a.uc(a,b)};var qyc=Mmd(780);n9c(350,1,{350:1,21:1},co,eo);_.Cb=DMd;_.a=false;var Lyc=Mmd(350);n9c(1690,1,qAd,mo);_.Cb=IMd;_.a=false;_.d=false;_.o=0;var fo=0,go=0;var Kyc=Mmd(1690);n9c(399,2276,lzd);_.Qb=function(){return new Ljd(this.i)};_.Rb=function(a){return vo(this,a)};var K2c=Mmd(399);n9c(255,399,lzd,zo);_.Nb=function(a){zg(this,a)};_.Ob=function(a){yo(this,a)};_.Pb=function(){try{so(this)}finally{Pic((abd(),this.U))}};var j3c=Mmd(255);n9c(875,255,lzd,Ao);_.Ob=function(a){oo(this,a,(abd(),this.U));lo(this.a,0)};var Byc=Mmd(875);n9c(1698,1,DAd,Bo);_.sc=EMd;var ryc=Mmd(1698);n9c(1699,1,EAd,Co);_.jc=EMd;var syc=Mmd(1699);n9c(1700,1,FAd,Do);_.kc=EMd;var tyc=Mmd(1700);n9c(1701,1,GAd,Eo);_.oc=function(a){$o(this.a.k)};var uyc=Mmd(1701);n9c(1702,1,HAd,Fo);_.mc=function(a){qlc(a.a).length==1&&$o(this.a.k)};var vyc=Mmd(1702);n9c(1703,1,IAd,Go);_.qc=FMd;var wyc=Mmd(1703);n9c(1704,1,DAd,Ho);_.sc=FMd;var xyc=Mmd(1704);n9c(1705,1,EAd,Io);_.jc=FMd;var yyc=Mmd(1705);n9c(1706,1,FAd,Jo);_.kc=FMd;var zyc=Mmd(1706);n9c(877,1,Izd,Ko);_.eb=function(){var a,b;if(this.a.d){a=$wnd.Math.max($wnd.Math.min($wnd.Math.max(0,parent.innerHeight),5000)-(ho(),go),0);ag(this.a.n,a+dzd);Rf(this.a.i).style[czd]=$wnd.Math.max(a-go,0)+(tnc(),dzd)}else{b=zad();this.a.a||(b-=2*(ho(),go));hg(this.a.n,$wnd.Math.max(b,0)+dzd);Rf(this.a.i).style[ezd]=$wnd.Math.max(b-(ho(),go),0)+(tnc(),dzd)}lo(this.a,0)};var Ayc=Mmd(877);n9c(611,399,lzd);var H2c=Mmd(611);var mgd,ngd,ogd,pgd;var sgd,tgd,ugd;n9c(113,611,lzd,Wo);_.Nb=qPd;_.Ob=function(a){Qo(this,a)};_.Rb=function(a){return To(this,a)};var x3c=Mmd(113);n9c(876,113,lzd,Xo);_.Ob=function(a){Qo(this,a);lo(this.a,0)};var Cyc=Mmd(876);n9c(1691,221,{},Zo);_.ic=function(){Yo(this)};var Dyc=Mmd(1691);n9c(1692,221,{},_o);_.ic=function(){$o(this)};var Eyc=Mmd(1692);n9c(1693,1,NAd,ap);_.jd=function(a){ko(this.a)};var Fyc=Mmd(1693);n9c(1694,1,OAd,bp);_.kd=function(a){var b;if(a.a.deltaY==0){return}tlc(a.a);!!a.a&&slc(a.a);b=qvc(snd(a.a.deltaY));lo(this.a,this.a.o-b*(ho(),fo))};var Gyc=Mmd(1694);n9c(1695,1,GAd,cp);_.oc=function(a){Yo(this.a.f)};var Hyc=Mmd(1695);n9c(1696,1,HAd,dp);_.mc=function(a){qlc(a.a).length==1&&Yo(this.a.f)};var Iyc=Mmd(1696);n9c(1697,1,IAd,ep);_.qc=EMd;var Jyc=Mmd(1697);n9c(1292,2291,Qzd,jp);_.jc=GMd;_.kc=GMd;_.lc=function(a){var b,c;if(!!this.e&&!!this.e.e&&!!this.b){c=hp(rlc(a.a));if(c){b=new qad(Ojc((ujc(),c).clientX||0),Ojc(c.clientY||0));if(this.a>Fk(this.b,b)){return}}}fp(this)};_.mc=function(a){ip(this,hp(rlc(a.a)))};_.a=0;var Nyc=Mmd(1292);n9c(1293,221,{},np);_.ic=function(){gp(this.a)};var Myc=Mmd(1293);var op;var F1c=Omd();n9c(1761,1,PAd,qp);_.Ic=function(){return 'getSource'};_.ld=function(){return pp()};var Oyc=Mmd(1761);n9c(432,1,qAd,tp);_.Cb=AMd;var Qyc=Mmd(432);var up;n9c(1973,1,fAd,wp);_.Ic=function(){return 'listpanel'};_.a=false;var Pyc=Mmd(1973);n9c(2032,1,qAd);_.md=function(){return Bp(this),Kp(this.c)};_.Cb=KMd;_.e=-1;var Uyc=Mmd(2032);n9c(2035,1,Jyd,Lp);_.hb=function(a){var b;b=ufd(this.a.b,a);if(b.a==2){wic((pic(),oic),new Mp(this,b))}else{Hp(this.a,this.a.e);this.a.e!=b.a&&Ap(this.a,b.b)}};var Syc=Mmd(2035);n9c(2036,1,Izd,Mp);_.eb=function(){zp(this.a.a,this.b.b)};var Ryc=Mmd(2036);var Np,Op,Pp;n9c(2145,1,fAd,Rp);_.Ic=function(){return 'listview'};_.a=false;var Tyc=Mmd(2145);n9c(1800,1,{},Wp);_.a=false;var Vyc=Mmd(1800);n9c(1469,Uzd,Vzd,Yp);var Xp;var Yyc=Mmd(1469);n9c(1470,64,mzd,Zp);var Wyc=Mmd(1470);var $p,_p;n9c(1563,1,fAd,bq);_.Ic=EOd;_.a=false;var Xyc=Mmd(1563);n9c(1828,Uzd,Vzd,jq);var _yc=Mmd(1828);n9c(1829,1,{85:1,1003:1,13:1},kq);_.hb=function(a){var b;b=a.f;if(b==this.a.a){this.a.b.zo()}else if(b==this.a.d){this.a.b.Ao()}else if(b==this.a.j){this.a.b.xo()&&this.a.b.Co();this.a.b.Bo()}else if(b==this.a.k){this.a.b.wo()&&this.a.b.Bo();this.a.b.Co()}else b==this.a.f?this.a.b.yo():b==this.a.n&&bh(hq(this.a),this.a.n);iq(this.a)};_.dc=function(a){var b;b=a.f;b==this.a.i&&iq(this.a)};var Zyc=Mmd(1829);n9c(1830,1,{},nq);var $yc=Mmd(1830);n9c(2161,1,Jyd,pq);_.hb=function(a){lq(this.a,this.b.a)};var azc=Mmd(2161);n9c(58,10,{58:1,3:1,11:1,10:1},lr);var qq,rq,sq,tq,uq,vq,wq,xq,yq,zq,Aq,Bq,Cq,Dq,Eq,Fq,Gq,Hq,Iq,Jq,Kq,Lq,Mq,Nq,Oq,Pq,Qq,Rq,Sq,Tq,Uq,Vq,Wq,Xq,Yq,Zq,$q,_q,ar,br,cr,dr,er,fr,gr,hr,ir,jr;var bzc=Nmd(58,Q5c,mr);n9c(257,10,{257:1,3:1,11:1,10:1},yr);_.a=false;var rr,sr,tr,ur,vr,wr;var czc=Nmd(257,Q5c,Ar);n9c(1092,1,{},Ir);var dzc=Mmd(1092);var Jr=0;n9c(2260,1,YAd);_.od=function(a){throw I8c(new God('Add not supported on this collection'))};_.pd=function(a){return Lr(this,a)};_.qd=function(a){return Mr(this,a,false)};_.rd=function(a){return Nr(this,a)};_.sd=zPd;_.td=function(a){return Mr(this,a,true)};_.ud=function(a){return Or(this,a)};_.wd=function(){return this.xd(suc(_5c,lyd,1,this.vd(),5,1))};_.xd=function(a){return Qr(this,a)};_.Y=function(){return Rr(this)};var o6c=Mmd(2260);var E7c=Omd();n9c(2261,2260,ZAd);_.Fd=LPd;_.yd=function(a,b){throw I8c(new God('Add not supported on this list'))};_.od=function(a){this.yd(this.vd(),a);return true};_.V=function(a){return Sr(this,a)};_.X=function(){return _rd(this)};_.Ad=function(a){return Tr(this,a)};_.Qb=function(){return new Zqd(this)};_.Bd=function(){return this.Cd(0)};_.Cd=function(a){return new $qd(this,a)};_.Dd=function(a){throw I8c(new God('Remove not supported on this list'))};_.Ed=function(a,b){throw I8c(new God('Set not supported on this list'))};_.Gd=function(a,b){return new _qd(this,a,b)};var v6c=Mmd(2261);n9c(7,2261,$Ad,es,fs,gs);_.yd=function(a,b){Vr(this,a,b)};_.od=function(a){return Wr(this,a)};_.pd=function(a){return Xr(this,a)};_.qd=function(a){return this.Ad(a)!=-1};_.zd=function(a){return Yr(this,a)};_.Ad=function(a){return Zr(this,a,0)};_.sd=function(){return this.a.length==0};_.Qb=function(){return new Frd(this)};_.Dd=function(a){return $r(this,a)};_.td=function(a){return _r(this,a)};_.Ed=function(a,b){return as(this,a,b)};_.vd=bOd;_.Fd=function(a){bs(this,a)};_.wd=function(){return cs(this)};_.xd=HMd;var N6c=Mmd(7);n9c(16,7,$Ad,is,js);_.Ad=function(a){return hs(this,a)};var ezc=Mmd(16);n9c(967,1,{},ks);var fzc=Mmd(967);n9c(1839,1,{},os);_.Hd=function(a){return ns(a)};var gzc=Mmd(1839);n9c(1758,1,{},ss);_.Sc=function(){return qs(this)};_.Rc=function(){return ps(this)};_.Tc=zMd;_.a=0;var hzc=Mmd(1758);var Cs=null;var Fs=0,Gs=0,Hs,Is,Js,Ks,Ls=0,Ms=false,Ns=false;n9c(909,1,{},Rs);_.Y=function(){return this.a+'.'+this.b+'.'+this.c};_.a=0;_.b=0;_.c=0;var izc=Mmd(909);var Ss;n9c(_Ad,1,{});var Q1c=Mmd(_Ad);n9c(1982,_Ad,{},Ys);_.Id=function(a){return Ws(a)};var jzc=Mmd(1982);n9c(539,1,{},$s);_.md=AMd;var kzc=Mmd(539);n9c(1111,1,{});_.ob=wMd;_.pb=function(a){at(this.a,a)};var lzc=Mmd(1111);n9c(276,1,{},ct);var nzc=Mmd(276);n9c(484,10,{484:1,3:1,11:1,10:1},ht);var et,ft;var mzc=Nmd(484,Q5c,it);n9c(391,1,aBd,jt);_.Qb=function(){return new kt(this.a)};var ozc=Mmd(391);n9c(342,1,{},kt);_.Rc=function(){return this.b2||a.d.Ml().vd()>2){b=kv(a,a.c);d=kv(a,a.d);if(b==(dv(),bv)&&d==cv||b==cv&&d==bv){return av}if(b==bv&&d==av||b==av&&d==bv){return cv}}g=lv(a);if(g.a.vd()==0){return dv(),bv}rv(a)?(c=(dv(),cv)):(c=(dv(),av));for(f=(j=(new ard(g.a)).a.mp().Qb(),new brd(j));f.a.Rc();){e=(h=f.a.Sc(),h.yp());if(c==wv(a,e)){return c}}return c==(dv(),cv)?av:cv}}};var gv=0.05;var Xzc=Mmd(497);n9c(1298,1,{},Bv);_.a=0;var Wzc=Mmd(1298);n9c(1094,1,{},Ev);_.me=function(a,b){return Dv(a,b)};var Yzc=Mmd(1094);n9c(1680,1,{},Fv);_.me=function(a,b){return _Vb(b,Abc(a))};var Zzc=Mmd(1680);n9c(697,45,{697:1,3:1,45:1,42:1},Gv);var $zc=Mmd(697);n9c(597,1127,{2365:1,194:1,24:1},nw,ow);_.Yd=function(){return this.a.j.e.b};_.Zd=function(){Ov(this,(Lz(),Jz));this.w.Hf()};_.$d=function(a){return fw(this,a)};_._d=function(a){return gw(this,a)};_.ae=function(a){return hw(this,a)};_.be=function(a){return iw(this,a)};_.ce=function(a){return jw(this,a)};_.f=false;var cAc=Mmd(597);n9c(1128,1,{},ww);var aAc=Mmd(1128);n9c(1129,1,{},xw);_.qe=function(){rw(this.a);ZHb(this.a.a.a,null)};var _zc=Mmd(1129);n9c(591,1,{},Nw);_.re=CNd;_.se=cPd;_.te=IMd;_.ue=OOd;_.ve=POd;_.we=FOd;_.xe=NNd;_.ye=QOd;_.ze=JMd;_.Ae=aOd;_.Be=VOd;_.Ce=SOd;_.e=qBd;_.i=false;_.k=true;_.o=true;_.p=false;_.q=true;_.r=true;_.s=false;_.t=false;_.u=true;var bAc=Mmd(591);n9c(1514,fBd,{},Qw);_.Vd=function(a){a.De(this)};_.Wd=function(){return Ow};var Ow;var dAc=Mmd(1514);n9c(1206,1,{},Zw);var fAc=Mmd(1206);n9c(1207,1,{},$w);_.md=UNd;var eAc=Mmd(1207);n9c(126,1,{},fx);var iAc=Mmd(126);n9c(1555,1,{2384:1},jx);_.md=KMd;var hAc=Mmd(1555);n9c(153,1,{153:1,243:1,105:1,123:1});_.Ee=LMd;_.Fe=MMd;_.Ge=NMd;_.He=OMd;_.Ie=PMd;_.Je=QMd;_.Ke=RMd;_.Le=dOd;_.Me=eOd;_.Ne=fOd;_.Oe=gOd;_.Pe=hOd;_.Qe=iOd;_.Re=jOd;_.Se=function(){return dsd(this.B)};_.Te=function(){return dsd(this.C)};_.Ue=function(){return !!this.v};_.sd=function(){return Sx(this)};_.Ve=SMd;_.We=function(a){return _r(this.s,a)};_.Xe=function(a){return _r(this.A,a)};_.Ye=function(a){return Or(this.A,a)};_.Ze=TMd;_.$e=function(a){return $x(this,a)};_._e=function(a){this.v=a};var jWc=Mmd(153);n9c(30,153,rBd,By,Cy);_.af=function(a){return lx(this,a)};_.Ee=LMd;_.Fe=MMd;_.bf=function(a){return ox(this,a)};_.Ge=NMd;_.cf=function(a){return qx(this,a)};_.He=OMd;_.df=function(a){return sx(this,a)};_.Ie=PMd;_.ef=function(a){return ux(this,a)};_.ff=function(a){return vx(this,a)};_.Je=QMd;_.gf=function(a){return xx(this,a)};_.hf=function(a){return yx(this,a)};_.Ke=RMd;_.jf=function(a){return Ax(this,a)};_.kf=function(a){return Bx(this,a)};_.lf=function(a){return Cx(this,a)};_.Ve=SMd;_.We=function(a){return qy(this,a)};_.Xe=function(a){return sy(this,a)};_.Ye=function(a){return ty(this,a)};_.Ze=TMd;_.mf=function(a){return Yx(this,a)};_.nf=function(a){return Zx(this,a)};_.$e=function(a){return $x(this,a)};_.of=function(a){return _x(this,a)};_.pf=function(a){return ay(this,a)};_.qf=function(a){return yy(this,a)};var UWc=Mmd(30);n9c(800,30,rBd);_.af=function(a){return Iy(this,a)};_.Ee=function(a){return Jy(this,a)};_.Fe=function(a){return Ky(this,a)};_.bf=function(a){return Ly(this,a)};_.Ge=function(a){return My(this,a)};_.cf=function(a){return Ny(this,a)};_.df=function(a){return Oy(this,a)};_.Ie=function(a){return Py(this,a)};_.ef=function(a){return Qy(this,a)};_.ff=function(a){var b;b=vx(this,a);b&&this.rf();return b};_.Je=function(a,b){var c,d,e,f,g;g=false;if(a){for(d=a.Qb();d.Rc();){c=d.Sc();g=g|Jy(this,c)}}if(b){for(f=b.Qb();f.Rc();){e=f.Sc();g=g|Ky(this,e)}}g&&this.rf();return g};_.gf=function(a){var b;b=xx(this,a);b&&this.rf();return b};_.hf=function(a){var b;b=yx(this,a);b&&this.rf();return b};_.jf=function(a){var b;b=Ax(this,a);b&&this.rf();return b};_.kf=function(a){var b;b=Bx(this,a);b&&this.rf();return b};_.lf=function(a){var b;b=Cx(this,a);b&&this.rf();return b};_.rf=tMd;_.Ve=function(a){return Ty(this,a)};_.Ye=function(a){var b;b=Or(this.A,a);b&&this.rf();return b};_.Ze=function(a,b){var c;c=Xx(this,a,b);c&&this.rf();return c};_.mf=function(a){var b;b=Or(this.q,a);b&&this.rf();return b};_.nf=function(a){var b;b=Zx(this,a);b&&this.rf();return b};_.of=function(a){var b;b=Or(this.w,a);b&&this.rf();return b};_.pf=function(a){var b;b=Or(this.B,a);b&&this.rf();return b};_.qf=function(a){var b;b=Or(this.C,a);b&&this.rf();return b};var sAc=Mmd(800);n9c(1556,800,rBd,_y);_.rf=function(){Pv(this.a.c.c)};var gAc=Mmd(1556);n9c(1379,800,rBd,dz);_.cf=function(a){return az(this,a)};_.rf=function(){this.b||vqc(this.a,new eF,this)};_.b=false;var jAc=Mmd(1379);n9c(249,10,{249:1,3:1,11:1,10:1},jz);var ez,fz,gz,hz;var kAc=Nmd(249,Q5c,lz);var mz;n9c(120,10,{120:1,3:1,11:1,10:1},tz);var oz,pz,qz,rz;var lAc=Nmd(120,Q5c,vz);var wz;n9c(771,1,Wyd,yz);_.sb=function(a){return dsd(a.n).b.vd()>0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))&&!dsd(a.t).a.sd()&&xWb(a,B$b(new F$b,dsd(a.t)).a),null};var mAc=Mmd(771);n9c(302,10,{302:1,3:1,11:1,10:1},Fz);var zz,Az,Bz,Cz,Dz;var nAc=Nmd(302,Q5c,Gz);n9c(217,10,{217:1,3:1,11:1,10:1},Mz);var Hz,Iz,Jz,Kz;var oAc=Nmd(217,Q5c,Nz);n9c(1383,1,{},Sz);var qAc=Mmd(1383);n9c(801,1,{},Tz);_.Cf=AMd;_.Df=UMd;_.Ef=VMd;_.Ff=function(){return 13*this.b};_.Gf=FNd;_.b=0;var pAc=Mmd(801);n9c(1382,1,{},Uz);_.Hf=function(){Uv(this.a)};_.If=function(a){this.a=a};var rAc=Mmd(1382);n9c(769,1,{},Wz);_.c=false;_.i=0;var tAc=Mmd(769);n9c(624,1,{},Yz);var uAc=Mmd(624);var xAc=Omd();n9c(2079,1,{},bA);var wAc=Mmd(2079);n9c(218,10,{218:1,3:1,11:1,10:1},lA);var cA,dA,eA,fA,gA,hA,iA,jA;var yAc=Nmd(218,Q5c,mA);n9c(2312,1,{});var zAc=Mmd(2312);var PEc=Omd();n9c(wBd,1,xBd);_.eb=function(){this.Tf()};_.Sf=WMd;_.Tf=tMd;_.Uf=tMd;var AAc=Mmd(wBd);n9c(283,wBd,xBd);_.eb=function(){nA(this)};_.Sf=function(){return zC(this.o,this)};_.Tf=function(){this.n.eb();this.Vf()};_.Uf=function(){oA(this)};var rBc=Mmd(283);n9c(663,283,xBd,sA);_.Vf=function(){var a;a=IVb(this.o.C,this.a,(s6b(),m6b),(O1b(),M1b));!!this.b&&tx(this.b,a)};_.Wf=function(){var a;if(!this.a.Re().a.sd()){a=ssd(this.a.Re(),this.a.Re().b.vd()-1);!!this.b&&sy(this.b,a);tWb(this.o.C,a)}};_.Xf=function(){return new YB(this.o)};var BAc=Mmd(663);n9c(1837,wBd,xBd,uA);_.Tf=function(){var a,b;for(b=new Vqd((new Sqd(this.d)).a);b.b;){a=Uqd(b);i0b(a.yp(),a.Ok().Me(),a.Ok().Ne());ty(a.yp(),a.Ok().Re())}b0b(this.b,dsd(this.a.r),dsd(this.a.s));vx(this.b,dsd(this.a.A))};_.Uf=function(){var a,b;for(b=new Vqd((new Sqd(this.d)).a);b.b;){a=Uqd(b);b0b(a.yp(),a.Ok().Me(),a.Ok().Ne());vx(a.yp(),a.Ok().Re());lsd(dsd(this.c.C.v),a.yp())||DVb(this.c.C,a.yp())}i0b(this.b,dsd(this.a.r),dsd(this.a.s));ty(this.b,dsd(this.a.A))};var CAc=Mmd(1837);n9c(381,wBd,xBd,vA);_.Tf=cNd;_.Uf=bNd;var DAc=Mmd(381);n9c(2150,wBd,xBd,xA);_.Tf=function(){var a,b,c,d,e,f;DA(this.a);for(e=this.d.Ne().Qb();e.Rc();){d=e.Sc();f=EE(this.b,d.k,gWb(this.c,d));if(!!f&&d.o!=f){GA(this.a,d);d.o!=f&&(d.i=false);yTb(d,f)}}for(b=this.d.Me().Qb();b.Rc();){a=b.Sc();c=mnd(FE(this.b,a._l(),fWb(this.c,a)));if(!!c&&a.Ol()!=c.a){FA(this.a,a);a.jm(c.a)}}this.e.w.Hf()};_.Uf=function(){if(!CA(this.a)){EA(this.a);return}};var EAc=Mmd(2150);n9c(323,283,xBd);_.Xf=function(){return new AB(this.o,vuc(quc(PEc,1),ABd,38,0,[this.d]))};_.f=false;var FAc=Mmd(323);n9c(964,1,{},HA);var KAc=Mmd(964);n9c(702,1,{});_.qe=function(){IA(this)};var HAc=Mmd(702);n9c(2147,702,{},LA);_.Yf=function(a){return a.Lh()};_.Zf=function(a){a.yp().mm(a.Ok())};var GAc=Mmd(2147);n9c(2149,702,{},MA);_.Yf=AOd;_.Zf=function(a){O2b(a.yp(),a.Ok())};var IAc=Mmd(2149);n9c(2148,702,{},NA);_.Yf=BOd;_.Zf=function(a){a.yp().ym(a.Ok())};var JAc=Mmd(2148);n9c(328,323,xBd,OA);_.Vf=function(){zWb(this.o.C,this.c,this.b);Ry(this.o.A)};_.Wf=function(){zWb(this.o.C,this.b,this.c);Qu(this.o,this.a)};var LAc=Mmd(328);n9c(326,323,xBd,PA,QA);_.Vf=function(){var a,b,c,d,e;Qu(this.o,this.b);e=new es;b=this.o.A;for(d=new Vqd((new Sqd(this.a)).a);d.b;){c=Uqd(d);a=c.yp();Ex(b,a)&&Wr(e,c.Ok());zWb(this.o.C,a,c.Ok())}Ou(this.o,x$b(new F$b,e).a)}; -_.Wf=function(){var a,b,c,d;for(c=new Vqd((new Sqd(this.a)).a);c.b;){b=Uqd(c);a=b.yp();d=b.Ok();zWb(this.o.C,d,a)}Qu(this.o,this.b)};var MAc=Mmd(326);n9c(969,323,xBd,SA);_.Vf=function(){RA(this)};_.Wf=function(){this.n=new AB(this.o,vuc(quc(PEc,1),ABd,38,0,[this.d]));this.n.eb();RA(this);Qu(this.o,this.b)};var NAc=Mmd(969);n9c(2030,283,xBd,TA);_.Xf=function(){var a;return a=new es,Wr(a,new HD(this.o)),Wr(a,new YB(this.o)),Wr(a,new YC(this.o,this.o.C,y$b(new F$b,this.a).a)),new AB(this.o,ds(a,suc(PEc,ABd,38,a.a.length,0,1)))};_.Vf=function(){yB(this.b)};_.Wf=function(){zB(this.b)};var OAc=Mmd(2030);n9c(540,wBd,xBd,VA);_.Tf=function(){if(!UA(this)&&!Sx(this.c)){this.a=new WWb(UVb(this.d));this.b?NWb(UVb(this.d),this.c):TWb(UVb(this.d),this.c)}};_.Uf=function(){UA(this)};_.b=false;var PAc=Mmd(540);var WA;n9c(2100,1,{},bB);var QAc=Mmd(2100);n9c(937,323,xBd,cB);_.Vf=function(){this.a.Tf()};_.Wf=function(){this.a.Uf()};_.Xf=dNd;var SAc=Mmd(937);n9c(938,1,{},lB);_.Yf=function(a){return a.xm()};_.$f=function(a,b){a.ym(b)};var RAc=Mmd(938);n9c(2099,wBd,xBd,mB);_.Tf=function(){mXb(this.a,this.b)};_.Uf=function(){mXb(this.a,this.c)};var TAc=Mmd(2099);n9c(2214,wBd,xBd,nB);_.Tf=function(){oXb(this.a,this.b)};_.Uf=function(){oXb(this.a,this.c)};_.b=0;_.c=0;var UAc=Mmd(2214);n9c(348,wBd,xBd,oB,pB);_.Tf=function(){dw(this.d,this.c);HWb(this.d.C);this.d.w.Hf()};_.Uf=function(){dw(this.d,this.b);Qu(this.d,this.a)};var VAc=Mmd(348);n9c(372,283,xBd,rB);_.Xf=function(){var a,b;return a=new es,Wr(a,new HD(this.o)),Wr(a,new YB(this.o)),b=qB(this),Wr(a,new YC(this.o,this.o.C,x$b(new F$b,new ard(this.a)).a)),b.a.length==0||Wr(a,new DD(this.o,z$b(new F$b,b).a)),new AB(this.o,ds(a,suc(PEc,ABd,38,a.a.length,0,1)))};_.Vf=function(){var a,b,c,d;for(b=(d=(new ard(this.a)).a.mp().Qb(),new brd(d));b.a.Rc();){a=(c=b.a.Sc(),c.yp());a.qm(this.b)}};_.Wf=function(){var a,b;for(b=new Vqd((new Sqd(this.a)).a);b.b;){a=Uqd(b);a.yp().qm(a.Ok())}};var WAc=Mmd(372);n9c(970,323,xBd,tB);_.Vf=XMd;_.Wf=XMd;var XAc=Mmd(970);n9c(98,1,{},wB);var YAc=Mmd(98);n9c(139,wBd,xBd,AB);_.Sf=function(){if(xB(this)){return zC(this.b,this)}return this};_.Tf=function(){yB(this)};_.Uf=function(){zB(this)};var ZAc=Mmd(139);n9c(1836,wBd,xBd,BB);_.Tf=ZMd;_.Uf=YMd;var $Ac=Mmd(1836);n9c(2176,wBd,xBd,CB);_.Tf=function(){zVb(this.b.C,this.a)};_.Uf=function(){xWb(this.b.C,this.a)};var _Ac=Mmd(2176);n9c(687,wBd,xBd,EB);_.Tf=function(){FVb(this.c.C,this.a);DB(this)};_.Uf=function(){FWb(this.c.C,this.a);!!this.d&&zB(this.d)};_.b=false;var aBc=Mmd(687);n9c(905,283,xBd,JB);_.Xf=function(){var a;return a=new wB,IB(this,a),PN(this.d,a),new AB(null,ds(a.a,suc(PEc,ABd,38,0,0,1)))};_.Vf=function(){this.c.Gi(this.d);this.a=null;if(O0b(this.d)&&RWb(UVb(this.d),this.c)){if(!msd(TVb(this.d),dsd(this.c.r))){this.a=new WWb(UVb(this.d));NWb(UVb(this.d),this.c)}}};_.Wf=function(){!!this.a&&VWb(this.a);FWb(this.d,this.c)};var FB,GB;var dBc=Mmd(905);n9c(1824,1,{},NB);_._f=function(a){return dsd(a.r)};var bBc=Mmd(1824);n9c(1825,1,{},OB);_._f=function(a){return dsd(a.v)};var cBc=Mmd(1825);n9c(2188,wBd,xBd,QB);_.Tf=function(){if(n4b(this.b)){this.a=d1b(this.b.n);W1(this.b,null)}};_.Uf=function(){!!this.a&&W1(this.b,this.a)};var eBc=Mmd(2188);n9c(2212,wBd,xBd,RB);_.Tf=function(){this.b?F6b(this.a,this.c):G6b(this.a,this.c)};_.Uf=function(){this.b?F6b(this.a,this.d):G6b(this.a,this.d)};_.b=false;var fBc=Mmd(2212);n9c(2221,wBd,xBd,SB);_.Tf=function(){this.c=this.a.c;oVb(this.a,this.b)};_.Uf=function(){oVb(this.a,this.c)};var gBc=Mmd(2221);n9c(2098,wBd,xBd,TB);_.Tf=function(){xVb(this.b.C,this.a)};_.Uf=function(){oWb(this.b.C,this.a)};var hBc=Mmd(2098);n9c(965,wBd,xBd,UB);_.Tf=YMd;_.Uf=ZMd;var iBc=Mmd(965);n9c(2064,wBd,xBd,VB);_.Tf=function(){var a,b;for(b=new Frd(this.a);b.a0&&dsd(u.k).b.vd()==1&&Q0b(dsd(u.k).a.zd(0))){this.a=NC(u);if(!this.a){this.a=new WWb((!u.a&&(u.a=new UWb(u)),u.a));j=dXb(this.c);if((!u.a&&(u.a=new UWb(u)),u.a).a.i.a.vd()!=0||!(dsd(j.r).a.sd()&&dsd(j.s).a.sd()&&dsd(j.A).a.sd()&&dsd(j.t).a.sd()&&dsd(j.q).a.sd()&&dsd(j.w).a.sd()&&dsd(j.B).a.sd()&&dsd(j.u).a.sd()&&dsd(j.C).a.sd())){l=d2b(Tu(this.o.v));NWb((!u.a&&(u.a=new UWb(u)),u.a),j);SWb((!u.a&&(u.a=new UWb(u)),u.a),l)}}}else !u.e&&this.c.b&&(this.a=(CWb(u,true),new VC(u)))};_.Wf=function(){var a,b,c,d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A;!!this.a&&this.a.qe();s=this.o.C;for(v=new qsd(dsd(this.c.a.u).b.Qb());v.b.Rc();){t=v.b.Sc();vWb(s,t)}for(w=new qsd(dsd(this.c.a.A).b.Qb());w.b.Rc();){t=w.b.Sc();pWb(s,t)}for(u=new qsd(dsd(this.c.a.t).b.Qb());u.b.Rc();){t=u.b.Sc();rWb(s,t)}for(b=new qsd(dsd(this.c.a.k).b.Qb());b.b.Rc();){a=b.b.Sc();lWb(s,a)}for(l=new qsd(dsd(this.c.a.q).b.Qb());l.b.Rc();){j=l.b.Sc();oWb(s,j)}for(f=new qsd(dsd(this.c.a.o).b.Qb());f.b.Rc();){e=f.b.Sc();tWb(s,e)}for(h=new qsd(dsd(this.c.a.p).b.Qb());h.b.Rc();){g=h.b.Sc();if(!nWb(s,g)){A=$Vb(s,g.c,g.d);!!A&&nWb(s,A)}}for(r=new qsd(dsd(this.c.a.s).b.Qb());r.b.Rc();){q=r.b.Sc();qWb(s,q)}for(d=new qsd(dsd(this.c.a.n).b.Qb());d.b.Rc();){c=d.b.Sc();mWb(s,c)}for(o=new qsd(dsd(this.c.a.w).b.Qb());o.b.Rc();){m=o.b.Sc();uWb(s,m)}for(n=new qsd(dsd(this.c.a.v).b.Qb());n.b.Rc();){m=n.b.Sc();sWb(s,m)}};var xBc=Mmd(84);n9c(1558,1,{},UC);_.qe=function(){VWb(this.b);CWb(this.a,true)};var tBc=Mmd(1558);n9c(1559,1,{},VC);_.qe=function(){CWb(this.a,false)};var uBc=Mmd(1559);n9c(1560,1,Wyd,WC);_.sb=function(a){return a.Fe(this.a),null};var vBc=Mmd(1560);n9c(1561,1,Wyd,XC);_.sb=function(a){return rx(a,this.a),null};var wBc=Mmd(1561);n9c(963,323,xBd,YC);_.Vf=tMd;_.Wf=tMd;var yBc=Mmd(963);n9c(364,1,{},jD);_.a=false;_.i=null;var zBc=Mmd(364);n9c(553,wBd,xBd,mD,nD);_.Tf=function(){Qu(this.d,this.b);lD(this)};_.Uf=function(){lD(this);Qu(this.d,this.b)};var ABc=Mmd(553);n9c(2230,wBd,xBd,oD);_.Tf=function(){f0b(this.b,this.a);a0b(this.c,this.a)};_.Uf=function(){f0b(this.c,this.a);a0b(this.b,this.a)};var BBc=Mmd(2230);n9c(1896,2312,{},pD);_.Qf=aNd;_.Rf=aNd;var CBc=Mmd(1896);n9c(2074,wBd,xBd,sD);_.Tf=function(){var a,b,c,d,e,f;DA(this.a);if(rD(this)){for(b=new qsd(dsd(this.f.r).b.Qb());b.b.Rc();){a=b.b.Sc();f=CE(this.b,a._l(),fWb(this.d,a));if(!!f&&!jad(a.Lh(),f)){FA(this.a,a);a.mm(f)}}for(d=new qsd(dsd(this.f.s).b.Qb());d.b.Rc();){c=d.b.Sc();e=EE(this.b,c.k,gWb(this.d,c));if(!!e&&c.o!=e){GA(this.a,c);c.o!=e&&(c.i=false);yTb(c,e)}}}if(CA(this.a)){dw(this.i,this.e);HWb(this.i.C)}this.i.w.Hf()};_.Uf=function(){if(!CA(this.a)){EA(this.a);return}dw(this.i,this.d);Qu(this.i,this.c)};var DBc=Mmd(2074);n9c(1798,2312,{},yD);_.Qf=function(a){var b,c;c=this.a.C;if(dsd(c.n).b.vd()>0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))){if(!dsd(a.k).a.sd()){return wD(this,true)}}else{if(dsd(a.k).b.vd()==1&&P0b(c,dsd(a.k).a.zd(0))){return vD(this,false)}b=dsd(a.n).b.vd();if(dsd(a.k).a.sd()&&dsd(c.k).b.vd()==1&&dsd(c.n).b.vd()+b>0&&Q0b(dsd(c.k).a.zd(0))){return vD(this,false)}}return null};_.Rf=function(a){var b,c;c=this.a.C;if(dsd(c.n).b.vd()>0&&dsd(c.k).b.vd()==1&&Q0b(dsd(c.k).a.zd(0))){if(dsd(a.k).b.vd()==1||dsd(c.n).b.vd()-dsd(a.n).b.vd()<1){return wD(this,false)}if(RWb((!c.a&&(c.a=new UWb(c)),c.a),new Cy(a))){return xD(this,d2b(Tu(this.a.v)),a,c)}}else{b=new gs(dsd(c.k));Or(b,dsd(a.k));if(b.a.length==1&&Q0b(b.a[0])){return vD(this,true)}}return null};var EBc=Mmd(1798);n9c(2177,wBd,xBd,AD);_.Tf=function(){xWb(this.a.C,this.b)};_.Uf=function(){zVb(this.a.C,this.b)};var FBc=Mmd(2177);n9c(128,283,xBd,DD,ED);_.Xf=function(){return CD(this)};_.Vf=function(){this.a=new WWb(UVb(this.c));xWb(this.c,this.b);O0b(this.c)&&UVb(this.c).a.i.a.vd()!=0&&SWb(UVb(this.c),d2b(Tu(this.o.v)))};_.Wf=function(){zVb(this.c,this.b);!!this.a&&VWb(this.a)};var HBc=Mmd(128);n9c(263,wBd,xBd,GD);_.Tf=bNd;_.Uf=cNd;var GBc=Mmd(263);n9c(441,wBd,xBd,HD);_.Uf=function(){Qu(this.b,this.a)};var IBc=Mmd(441);n9c(2178,wBd,xBd,ID);_.Tf=function(){this.b=this.c.e;CWb(this.c,false);this.a=new WWb(UVb(this.c));TWb(UVb(this.c),this.c)};_.Uf=function(){VWb(this.a);CWb(this.c,this.b)};_.b=false;var JBc=Mmd(2178);n9c(2171,wBd,xBd,JD);_.Tf=function(){D8b(this.b,this.a)};_.Uf=function(){D8b(this.b,this.c)};var KBc=Mmd(2171);n9c(936,wBd,xBd,KD);_.Uf=function(){var a,b;for(b=new Vqd((new Sqd(this.a)).a);b.b;){a=Uqd(b);O2b(a.yp(),a.Ok())}};var LBc=Mmd(936);n9c(2186,wBd,xBd,ND);_.Tf=function(){MD(this,this.c)};_.Uf=function(){MD(this,this.a)};var MBc=Mmd(2186);n9c(552,wBd,xBd,TD);_.Tf=function(){PD(this)};_.Uf=function(){SD(this)};_.b=0;_.c=0;var NBc=Mmd(552);n9c(926,1,{},_D);var OBc=Mmd(926);n9c(2180,wBd,xBd,cE);_.Tf=function(){var a,b,c,d;for(d=this.c.op().Qb();d.Rc();){c=d.Sc();b=Hnd(DBd,this.b)?c.c:this.b;a=Hnd(DBd,this.a)?c.a:this.a;B8b(c,b,a)&&!!c.d&&SVb(c.d,new u7b)}};_.Uf=function(){var a,b;for(b=this.c.mp().Qb();b.Rc();){a=b.Sc();A8b(a.yp(),a.Ok()[0],a.Ok()[1])}};var PBc=Mmd(2180);n9c(538,323,xBd,dE);_.Vf=function(){var a,b,c,d,e;for(b=(e=(new ard(this.a)).a.mp().Qb(),new brd(e));b.a.Rc();){a=(c=b.a.Sc(),c.yp());d=a.Nl()+this.b;d<=128&&d>=-128&&a.hm(d)}};_.Wf=function(){var a,b;for(b=new Vqd((new Sqd(this.a)).a);b.b;){a=Uqd(b);a.yp().hm(a.Ok().a)}};_.Xf=dNd;_.b=0;var QBc=Mmd(538);n9c(398,wBd,xBd,eE);_.Tf=function(){this.a=this.c.e!=this.b;CWb(this.c,this.b)};_.Uf=function(){this.a&&CWb(this.c,!this.b)};_.a=false;_.b=false;var RBc=Mmd(398);n9c(696,wBd,xBd,fE);_.Tf=function(){var a,b,c,d;for(c=(d=(new ard(this.b)).a.mp().Qb(),new brd(d));c.a.Rc();){b=(a=c.a.Sc(),a.yp());this.a.$f(b,this.c)}};_.Uf=function(){var a,b;for(b=new Vqd((new Sqd(this.b)).a);b.b;){a=Uqd(b);this.a.$f(a.yp(),a.Ok())}};var SBc=Mmd(696);n9c(555,wBd,xBd,mE);_.Tf=function(){Qu(this.p,this.d);iE(this);hE(this);jE(this);lE(this);kE(this);yE(this.f,new ard(this.o));nA(this.c)};_.Uf=function(){var a,b,c,d,e,f,g;oA(this.c);for(c=new iud(new gud(this.o));c.b!=c.c.a.b;){a=hud(c);a.d.lm(a.e)}for(d=new iud(new gud(this.a));d.b!=d.c.a.b;){a=hud(d);F6b(a.d,a.e[0]);G6b(a.d,a.e[1])}for(e=new iud(new gud(this.e));e.b!=e.c.a.b;){a=hud(e);a.d.mm(a.e)}for(f=new iud(new gud(this.k));f.b!=f.c.a.b;){a=hud(f);a.d.mm(a.e)}for(b=new iud(new gud(this.i));b.b!=b.c.a.b;){a=hud(b);g=a.d;C8b(g,lad(a.e,new qad(g.e.c*0.5,g.e.a*0.5)))}Qu(this.p,this.d)};_.j=0;var TBc=Mmd(555);n9c(129,wBd,xBd,rE);_.Tf=function(){var a,b,c;a=new gs(new ard(this.a));for(c=a.a.length;c>0;c--){b=a.a[c-1];Xtd(this.a,b)&&t5b(b.i);oE(this,b);FWb(this.b,b)}pE(this)};_.Uf=function(){var a,b,c;if(!!this.e&&!!this.d){Ry(this.e.A);Ou(this.e,this.d)}for(c=new iud(new gud(this.a));c.b!=c.c.a.b;){b=hud(c);a=b.d;a.Gi(this.b);b.e&&(!!a.e&&lsd(dsd(a.e.w),a)&&Z4b(new j5b(a.i,a.e)),undefined)}qE(this)};var UBc=Mmd(129);n9c(2187,wBd,xBd,tE);_.Tf=function(){sE(this.a,this.b)};_.Uf=function(){sE(this.a,this.c)};var WBc=Mmd(2187);n9c(975,wBd,xBd,uE);_.Tf=function(){var a,b;for(b=this.a.Qb();b.Rc();){a=b.Sc();X1(a,this.c)}};_.Uf=function(){var a,b;for(b=this.a.Qb();b.Rc();){a=b.Sc();X1(a,Eqd(this.b,a))}};var VBc=Mmd(975);n9c(701,1,{},GE);var XBc=Mmd(701);n9c(2063,1,{},IE);var YBc=Mmd(2063);n9c(1037,1,{});var $Bc=Mmd(1037);n9c(1059,1,EBd,SE);_.Fb=function(a){qg(this.a,a)};var ZBc=Mmd(1059);n9c(119,1,{},TE,UE);_.b=false;_.d=false;var aCc=Mmd(119);n9c(451,10,{451:1,3:1,11:1,10:1},ZE);var VE,WE,XE;var _Bc=Nmd(451,Q5c,$E);n9c(730,Pyd,{},bF);_.lb=eNd;_.mb=function(){return _E};var _E;var bCc=Mmd(730);n9c(505,Pyd,{},eF);_.lb=function(a){a.Zd()};_.mb=function(){return cF};var cF;var cCc=Mmd(505);n9c(1650,fBd,{},hF);_.Vd=function(a){a.ag()};_.Wd=function(){return fF};var fF;var dCc=Mmd(1650);n9c(808,1,{},iF);var eCc=Mmd(808);n9c(346,Pyd,{},nF);_.lb=eNd;_.mb=function(){return lF};var lF;var fCc=Mmd(346);n9c(545,1,{});var gCc=Mmd(545);n9c(917,545,{},qF);_.bg=function(){return pF(this)};var hCc=Mmd(917);n9c(951,545,{},rF);_.bg=function(){var a;a=new Cy(this.a);zy(a,this.b);return a};var iCc=Mmd(951);n9c(950,545,{},sF);_.bg=function(){return new By};var jCc=Mmd(950);n9c(918,545,{},xF);_.bg=function(){return vF(this)};var kCc=Mmd(918);n9c(554,1,{},zF);_.cg=function(a){return yF(this,a)};_.a=0;_.b=0;_.c=0;_.d=0;var lCc=Mmd(554);n9c(442,1,{},BF);_.cg=function(a){return AF(this,a)};_.b=0;var mCc=Mmd(442);n9c(431,1,{431:1},EF);_.V=function(a){var b;if(this===a){return true}else if(kvc(a,431)){b=a;return jad(this.b,b.b)&&jad(this.a,b.a)}return false};_.X=function(){return DF(this)};_.Y=function(){var a,b;b=new ood;nod(b,(Hmd(nCc),nCc.p+'@'+(a=DF(this)>>>0,a.toString(16))));b.a+='[';nod(b,oad(this.b));b.a+=',';nod(b,oad(this.a));b.a+=']';return b.a};var nCc=Mmd(431);n9c(919,1,{},IF);_.cg=function(a){return HF(this.a,this.b,a)};var oCc=Mmd(919);n9c(457,1,{},JF);_.cg=function(a){return kH(a,this.a)};var pCc=Mmd(457);n9c(237,1,{237:1,2332:1},OF);_.dg=function(a){return KF(this,a)};_.Y=function(){return 'Triangle [p1='+this.a+', p2='+this.b+', p3='+this.c+']'};var qCc=Mmd(237);n9c(1188,1,{},cG);_.a=null;_.c=null;_.d=null;var wCc=Mmd(1188);n9c(494,221,{});_.b=false;var xCc=Mmd(494);n9c(1189,494,{},gG);_.ic=function(){aw(this.a.n,new qad(0,30));Ji(this,250)};var rCc=Mmd(1189);n9c(1190,494,{},hG);_.ic=function(){aw(this.a.n,new qad(0,-30));Ji(this,250)};var sCc=Mmd(1190);n9c(1191,494,{},iG);_.ic=function(){aw(this.a.n,new qad(30,0));Ji(this,250)};var tCc=Mmd(1191);n9c(1192,494,{},jG);_.ic=function(){aw(this.a.n,new qad(-30,0));Ji(this,250)};var uCc=Mmd(1192);n9c(1193,1,OAd,lG);_.kd=function(a){kG(this,a)};var vCc=Mmd(1193);n9c(1397,1,{},xG);var yCc=Mmd(1397);n9c(1311,1,{2374:1,341:1,1003:1,339:1,1002:1,575:1,1001:1,574:1,578:1,577:1,716:1,385:1,2235:1,13:1},JG);_.cc=function(a){if(this.d.a.a.a){if(sG(this.d,nlc(a.a))){tlc(a.a);!!a.a&&slc(a.a)}}};_.dc=function(a){if(this.d.a.a.a){if(tG(this.d,nlc(a.a))){tlc(a.a);!!a.a&&slc(a.a)}}};_.oc=function(a){var b,c,d,e;this.a=true;this.b=false;!!a.a&&slc(a.a);e=new qad(soc(a),toc(a));if(!!this.i&&RF(this.i,e)){tlc(a.a);TF(this.i,e);return}else !!this.i&&bG(this.i);if(yG(ilc(a.a))==(YE(),XE)||mlc(a.a)&&Hnd('\u2318',Ds())){if(this.c){this.a=false;tlc(a.a);!!a.a&&slc(a.a);return}}d=this.j;this.j=e;if(this.d.a.a.a){c=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));if((c.a==WE||this.b)&&!!this.f){this.b=true;WI(this.f,c)}else if(c.a==VE){if(d){this.j=null;wG(this.d,c)}else{b=(Dod(),c9c(a9c(P8c(Date.now()),this.e)));(b<0||b>hAd)&&oG(this.d,c)}}}};_.pc=function(a){var b,c;c=new qad(soc(a),toc(a));if(this.o){this.o=false;return}if(!!this.i&&RF(this.i,c)){tlc(a.a);UF(this.i,c);return}else !!this.i&&bG(this.i);if(!this.d.a.a.a){return}if(!this.j){uG(this.d,new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a)))}else if(!!this.j&&sac(new qad(soc(a),toc(a)),this.j)>5){b=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));this.a=false;(b.a==(YE(),WE)||this.b)&&!!this.f?VI(this.f,b):b.a==VE&&pG(this.d,b)}};_.qc=function(a){var b;if(!!this.i&&VF(this.i)){return}else !!this.i&&bG(this.i);this.b=false;this.a=false;b=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));!!this.f&&YI(this.f);rG(this.d,b)};_.rc=function(a){var b;this.b=false;if(!!this.i&&WF(this.i)){return}else !!this.i&&bG(this.i);b=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));!!this.f&&XI(this.f,b);qG(this.d,b)};_.sc=function(a){var b,c,d;this.b=false;d=new qad(soc(a),toc(a));if(!!this.i&&RF(this.i,d)){tlc(a.a);XF(this.i,d);return}else !!this.i&&bG(this.i);if(yG(ilc(a.a))==(YE(),XE)&&!!this.c){tlc(a.a);!!a.a&&slc(a.a);return}if(!!this.d.a.a.a&&!!this.j){c=new UE(new qad(soc(a),toc(a)),yG(ilc(a.a)),plc(a.a),mlc(a.a)||olc(a.a));(c.a==WE||this.b)&&!!this.f?ZI(this.f,c):c.a==VE&&(b=(Dod(),c9c(a9c(P8c(Date.now()),this.e))),b<0||b>hAd)&&wG(this.d,c);!!this.j&&this.a&&sac(d,this.j)<=5&&((c.a==WE||this.b)&&!!this.f?undefined:c.a==VE&&mG(this.d,c));this.o=true}this.a=false;this.j=null};_.jc=function(a){var b,c;if(CG(this,a)){tlc(a.a);(c=this.i,jF(a,this.n),c).d=null;EG(this);return}if(BG(this,rlc(a.a))){b=kF(this.k,this.n);!!b&&!!this.d.a.a.a&&rG(this.d,new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a)));FG(this)}};_.kc=function(a){var b,c,d,e;if(CG(this,a)){tlc(a.a);(d=this.i,jF(a,this.n),d).d=null;EG(this);return}if(BG(this,rlc(a.a))){b=kF(this.k,this.n);if(b){if(this.d.a.a.a){e=new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a));wG(this.d,e);if(zG(this,b.a[0])){c=(Dod(),a9c(P8c(Date.now()),this.e));L8c(c,0)>0&&L8c(c,300)<0&&nG(this.d,e);this.e=P8c(Date.now())}this.o=true}this.a=false;this.j=null}this.k=null}};_.lc=function(a){var b;if(CG(this,a)){tlc(a.a);YF(this.i,jF(a,this.n));EG(this);return}IG(this,rlc(a.a));b=kF(this.k,this.n);if(b){if(!!this.d.a.a.a&&!!this.j&&sac(b.a[0],this.j)>5){this.a=false;pG(this.d,new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a)))}}};_.mc=function(a){var b;if(CG(this,a)){tlc(a.a);ZF(this.i,jF(a,this.n));EG(this);return}IG(this,rlc(a.a));b=kF(this.k,this.n);if(!!b&&!this.a){if(AG(this,b.a[0])){tlc(a.a);TF(this.i,b.a[0]);EG(this);return}this.a=true;this.j=b.a[0];!!this.d.a.a.a&&oG(this.d,new UE(b.a[0],(YE(),VE),plc(a.a),mlc(a.a)||olc(a.a)))}};_.kd=function(a){!!this.i&&kG(SF(this.i),a)};_.a=false;_.b=false;_.e=IBd;_.k=null;_.o=false;var zCc=Mmd(1311);n9c(91,1,{});_.eg=function(){return e_(),d_};_.fg=wMd;_.gg=wMd;_.hg=gNd;_.ig=fNd;_.jg=fNd;_.kg=wMd;_.lg=wMd;_.mg=function(a){this.p=null;Ry(Lu(this.o.i).b)};_.ng=gNd;_.og=wMd;_.pg=function(){this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),this.eg())};_.rg=wMd;_.Rd=function(){ex(Mu(this.o.i),this.eg());this.o.i.w.Hf()};_.sg=function(a){(Ez(),Az)==a.Af()||a.Bf(Az)};_.tg=tMd;_.p=null;var BCc=Mmd(91);n9c(202,91,{});_.fg=function(a){!!this.k&&this.k.fg(a)};_.gg=function(a){!!this.k&&this.k.gg(a)};_.hg=function(a){Jl(this,a.c);!!this.k&&this.k.hg(a)};_.ig=function(a){if(this.k){return this.k.ig(a)}return false};_.jg=function(a){if(this.k){return this.k.jg(a)}return false};_.kg=function(a){!!this.k&&this.k.kg(a)};_.lg=function(a){!!this.k&&this.k.lg(a)};_.mg=function(a){this.p=null;!!this.k&&this.k.mg(a)};_.ng=function(a){Jl(this,a.c);!!this.k&&this.k.ng(a)};_.og=function(a){!!this.k&&this.k.og(a)};_.qg=function(){_G(this)};_.rg=lNd;_.Rd=function(){aH(this)};_.sg=wMd;_.tg=function(){cH(this)};_.k=null;_.n=false;var HCc=Mmd(202);n9c(2233,202,{},eH);_.ig=function(a){a==16&&bH(this,this.b);return true};_.jg=function(a){a==16&&bH(this,this.a);return false};_.qg=function(){bH(this,this.a);_G(this)};var ACc=Mmd(2233);n9c(448,1,{},iH);_.b=0;var CCc=Mmd(448);n9c(531,91,{});_.hg=function(a){pH(this,a)};_.ig=function(a){if(a==16){this.k=true;this.o.i.w.Hf();return true}return false};_.jg=function(a){if(a==16){this.k=false;this.o.i.w.Hf();return true}return false};_.kg=function(a){if(a.a!=(YE(),VE)){return}Ry(this.o.i.A);VG(this,a.c);if(iy(Lu(this.o.i).b)){this.d=null;return}if(hy(Lu(this.o.i).b)){this.d=LG(this);this.f=new iH(this.d.Lh(),LBd);return}this.d=this.ug();this.d.mm(gw(this.o.i,a.c));this.f=new iH(this.d.Lh(),LBd)};_.lg=function(a){this.k=false;this.o.i.w.Hf()};_.ng=function(a){qH(this,a)};_.og=function(a){pH(this,a);if(!this.d){return}if(!this.j){return}nH(this);this.d=null;this.j=null};_.rg=function(a){sH(this,a)};_.Rd=function(){uH(this)};_.k=false;_.n=false;var ICc=Mmd(531);n9c(260,531,{260:1},BH);_.V=function(a){var b;if(a==null){return false}if(this===a){return true}if(!kvc(a,260)){return false}b=a;return U(b.a)==U(this.a)&&this.a.Hl()==b.a.Hl()&&CH(this.a,b.a)&&this.a.Tl()==b.a.Tl()&&!kvc(this.a,93)&&!kvc(b.a,93)||kvc(this.a,93)&&kvc(b.a,93)&&this.a.b==b.a.b};_.ug=function(){return this.a.Dl()};_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)]))};_.fg=function(a){var b,c,d,e,f,g,h,j;if(a.a!=(YE(),VE)){return}VG(this,a.c);e=new wB;if(hy(Lu(this.o.i).b)){if(a.d){j=E9b(LG(this));if(!j){return}h=this.a.Dl();h.lm(new Tac(j,LG(this).Ki()));g=xH(j,LG(this),this.o.i);d=new S2b(this.e,LG(this),h);c=vuc(quc(tWc,1),zBd,49,0,[g,LG(this)]);if(aVb(this.o.i.C,new Srd(c))&&lsd(dsd(this.o.i.C.n),g)){h.lm(new Tac(g.Lh(),g.Ki()));uB(e,new OA(this.o.i,g,h))}else{uB(e,new BC(this.o.i,h))}uB(e,new OC(this.o.i,d))}else{uB(e,new OA(this.o.i,LG(this),this.a.Dl()))}f=vB(e,this.o.i);yQ(this.o.f,f);VG(this,a.c)}else if(!iy(Lu(this.o.i).b)){b=this.a.Dl();b.mm(gw(this.o.i,a.c));yQ(this.o.f,AH(this,b))}};_.lg=function(a){Jl(this,a.c);this.o.i.w.Hf()};_.mg=function(a){this.p=null;Ry(Lu(this.o.i).b);this.o.i.w.Hf()};_.ng=function(a){qH(this,a);VG(this,a.c);Jl(this,a.c);this.o.i.w.Hf()};_.X=MPd;_.rg=function(a){if(!this.p){return}a.Mf(0.4);this.k&&hy(Lu(this.o.i).b)&&zH(this,a.Kf());if(this.j){sH(this,a)}else if(!!this.p&&!(Os(),Ns)){this.a.mm(gw(this.o.i,this.p));dT(this.o.i.j,this.a).qh(a.Kf())}a.Mf(1)};_.Rd=function(){this.p=null;uH(this)};var DCc=Mmd(260);n9c(439,531,{439:1},MH,NH);_.V=function(a){return FH(this,a)};_.ug=function(){return new y2b((WZb(),UXb))};_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_,t_]))};_.fg=function(a){switch(this.c){case 1:HH(this);break;case 2:case 3:iy(Lu(this.o.i).b)?JH(this,fB(this.o.i,BUb(MG(this).o,this.e),MG(this))):my(Lu(this.o.i).b)?JH(this,dB(this.o.i,BUb(SG(this).o,this.e),SG(this))):ky(Lu(this.o.i).b)&&JH(this,jB(this.o.i,BUb(PG(this).o,this.e),PG(this)));break;case 0:vH(this,a.d);IH(this,a.c);}this.o.i.w.Hf()};_.ng=function(a){qH(this,a);VG(this,a.c);this.o.i.w.Hf()};_.X=function(){return Zwd(this.e)};_.pg=function(){if(this.c==3&&GH(this)==this.a){return}iy(Lu(this.o.i).b)?KH(this)&&(this.e==(s6b(),m6b)||this.e==h6b)?(this.a=null,this.c=2):(this.a=null,this.c=1):my(Lu(this.o.i).b)?SG(this).o==this.e&&(this.e==(s6b(),m6b)||this.e==h6b)?(this.a=null,this.c=2):(this.a=null,this.c=1):ky(Lu(this.o.i).b)?PG(this).o==this.e&&(this.e==(s6b(),m6b)||this.e==h6b)?(this.a=null,this.c=2):(this.a=null,this.c=1):(this.a=null,this.c=0);this.o.i.w.Hf()};_.rg=function(a){sH(this,a);EH(this,a)};_.Rd=function(){this.a=null;this.c=0;uH(this)};_.b=false;_.c=0;var ECc=Mmd(439);n9c(1483,91,{},hI);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_]))};_.fg=function(a){VG(this,a.c);iy(Lu(this.o.i).b)?(this.f||MG(this).o==(s6b(),m6b)?VH(this,fB(this.o.i,BUb(MG(this).o,(s6b(),m6b)),MG(this))):VH(this,fB(this.o.i,(s6b(),m6b),MG(this))),this.f=true):aI(this);this.o.i.w.Hf()};_.hg=function(a){var b,c,d,e;Jl(this,a.c);this.d=true;c=YH(this.i.Lh(),this.a.c.b.c.Lh());b=YH(this.i.Lh(),gw(this.o.i,a.c));$wnd.Math.abs(b-c)>OH/2&&(b>c?WH(this,b):cI(this,b));d=lad(gw(this.o.i,a.c),this.i.Lh());e=$wnd.Math.atan2(d.b,d.a);$wnd.Math.abs(b-c)>jBd/PH&&gI(this,e);this.o.i.w.Hf()};_.ig=function(a){if(a==17){this.c=true;this.d&&TH(this);return true}return false};_.jg=function(a){if(a==17){this.c=false;this.d&&UH(this);return true}return false};_.kg=function(a){this.n=0;VG(this,a.c);_H(this);this.e=true;this.i=LG(this);if(!this.i){this.e=false;this.i=new y2b((WZb(),UXb));this.i.lm(new Tac(gw(this.o.i,a.c),this.n))}else{this.n=this.i.Ki()}Mr(this.a,this.i,false)||lud(this.a,this.i);this.o.i.w.Hf()};_.ng=function(a){Jl(this,a.c);VG(this,a.c);_H(this);this.o.i.w.Hf()};_.og=function(a){if(this.d){this.e&&oud(this.a);this.b.b>0&&VH(this,new PC(this.o.i,y$b(x$b(new F$b,new utd(this.a)),new utd(this.b)).a));ZH(this)}};_.qg=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,x_])));ZH(this);Ry(this.o.i.A);dI(this);this.k=wQ(this.o.f,new iI(this));this.d=false;this.c=false;this.e=false;this.f=false};_.rg=function(a){var b,c,d,e,f,g;if(this.d&&!!this.p){f=a.Kf();if(this.a.b>1){g=new o0((pR(),jR),(NT(),DT));f.tf(this.p,$md((new gnd(this.a.b)).a),null,g)}for(e=nud(this.b,0);e.b!=e.d.c;){d=tud(e);dT(this.o.i.j,d).rh(f,KBd)}for(c=nud(this.a,0);c.b!=c.d.c;){b=tud(c);lsd(dsd(this.o.i.C.n),b)||dT(this.o.i.j,b).rh(f,KBd)}}};_.Rd=function(){eI(this)};_.tg=function(){dI(this)};_.c=false;_.d=false;_.e=false;_.f=false;_.j=0;_.n=0;var OH=0,PH=20;var GCc=Mmd(1483);n9c(831,1,{989:1},iI);_.vg=function(a){eI(this.a)};var FCc=Mmd(831);n9c(632,91,{632:1},mI);_.V=function(a){if(this===a){return true}if(a==null){return false}if(!kvc(a,632)){return false}return true};_.eg=AMd;_.fg=function(a){var b;if(a.a!=(YE(),VE)){return}VG(this,a.c);oy(Lu(this.o.i).b)||YG(this)||XG(this)?yQ(this.o.f,new DD(this.o.i,new Cy((b=hx(Lu(this.o.i)),dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd()&&!!Lu(this.o.i).a?new Cy(Lu(this.o.i).a.a):b)))):!!Lu(this.o.i).a&&yQ(this.o.f,new rE(this.o.i.C,bsd(Lu(this.o.i).a.a),this.o.i));Ry(this.o.i.A)};_.hg=function(a){jI(this,a)};_.kg=function(a){this.c=a.c;ex(Mu(this.o.i),this.a)};_.ng=zNd;_.og=function(a){var b;if(!this.b){this.c=null;return}jI(this,a);yQ(this.o.f,new DD(this.o.i,(b=hx(Lu(this.o.i)),dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd()&&!!Lu(this.o.i).a?new Cy(Lu(this.o.i).a.a):b)));this.c=null;this.b=null;ex(Mu(this.o.i),this.a);this.o.i.w.Hf()};_.X=function(){return Zwd(this.o)};_.qg=function(){ex(Mu(this.o.i),this.a);lI(this)};_.rg=function(a){!!this.c&&!!this.b&&a.Kf().uf(this.b,(QQ(),JQ))};_.Rd=function(){lI(this)};var JCc=Mmd(632);n9c(985,91,{},qI);_.hg=hNd;_.ng=hNd;_.og=function(a){nI(this,gw(this.o.i,a.c));this.p=null};_.rg=function(a){rI(this.a,a)};var LCc=Mmd(985);n9c(2234,1,{},tI);var KCc=Mmd(2234);n9c(649,91,{649:1},TI);_.fg=function(a){var b;VG(this,a.c);if(iy(Lu(this.o.i).b)){yQ(this.o.f,YA(this.o.i,MG(this)))}else if(my(Lu(this.o.i).b)){yQ(this.o.f,ZA(this.o.i,SG(this)))}else if(ky(Lu(this.o.i).b)){b=PG(this);yQ(this.o.f,jB(this.o.i,GI(b.o),b))}else hy(Lu(this.o.i).b)&&RI(this,a.d);Ry(Lu(this.o.i).b);NI(this);Jl(this,a.c);this.d=null;this.o.i.w.Hf()};_.hg=function(a){if(a.a!=(YE(),VE)||!this.e){return}Vo(this,a.c);BI(this,a.c);yI(this,a.d);this.o.i.w.Hf()};_.kg=function(a){if(a.a!=(YE(),VE)){return}Ry(Lu(this.o.i).b);NI(this);yI(this,a.d);Jl(this,a.c);Vo(this,a.c);VG(this,a.c);if(hy(Lu(this.o.i).b)){xI(this,LG(this))}else if(Sx(Lu(this.o.i).b)){this.f=new y2b((WZb(),UXb));pTb(this.f,gw(this.o.i,a.c));AC(new BC(this.o.i,this.f));xI(this,this.f)}this.o.i.w.Hf()};_.lg=function(a){Jl(this,a.c);Vo(this,a.c)};_.mg=function(a){this.p=null;Ry(Lu(this.o.i).b);Ry(Lu(this.o.i).b);NI(this);this.p=null;this.d=null};_.ng=function(a){Ry(Lu(this.o.i).b);NI(this);Jl(this,a.c);VG(this,a.c)};_.og=function(a){if(a.a!=(YE(),VE)||!this.e){return}yI(this,a.d);BI(this,a.c);JI(this,a.c);Ry(Lu(this.o.i).b);NI(this);Jl(this,a.c);this.d=null;this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),(e_(),d_));Ry(this.o.i.A);Ry(Lu(this.o.i).b);NI(this)}; -_.rg=function(a){var b,c,d;if(this.e&&!!this.i){d=gw(this.o.i,this.d);c=sac(this.i,d);AI(this,a,c);b=c>=LBd?'rgba(0,0,200,1)':'rgba(0,0,200,0.5)';IY(FI(this,this.i,d),a.Kf(),b)}};_.Rd=function(){Ry(this.o.i.A);this.d=null;NI(this);ex(Mu(this.o.i),(e_(),d_));this.o.i.w.Hf()};_.tg=function(){Ry(Lu(this.o.i).b);NI(this)};_.a=null;_.c=-1;_.d=null;_.e=false;_.f=null;_.i=null;_.j=QBd;var uI,vI;var MCc=Mmd(649);n9c(1208,1,{},_I);_.b=null;var NCc=Mmd(1208);n9c(834,1,{2240:1},aJ);_.wg=WNd;_.xg=function(a){return Hnd('6',a)?null:'6'};var OCc=Mmd(834);n9c(1495,91,{},cJ);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),x_]))};_.fg=function(a){var b;VG(this,a.c);if(hy(Lu(this.o.i).b)){yQ(this.o.f,new sA(LG(this),this.o.i))}else if(my(Lu(this.o.i).b)){b=SG(this);yQ(this.o.f,dB(this.o.i,GI(b.o),b))}this.o.i.w.Hf()};_.ng=iNd;_.qg=function(){Ry(Lu(this.o.i).b);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),x_])))};_.Rd=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),x_])));this.o.i.w.Hf()};_.tg=function(){Ry(Lu(this.o.i).b)};var PCc=Mmd(1495);n9c(512,91,{});_.yg=function(){return hy(Lu(this.o.i).b)&&dJ(this,LG(this))};_.eg=function(){return new j_(vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)]))};_.fg=function(a){var b;VG(this,a.c);if(this.yg()){b=new ltd;Hqd(b,this.wg(),this.zg(LG(this)));eJ(this,new Srd(vuc(quc(tWc,1),zBd,49,0,[LG(this)])),b)}};_.ng=function(a){Jl(this,a.c);VG(this,a.c);this.yg()||Ry(Lu(this.o.i).b)};_.rg=function(a){!!this.p&&!(Os(),Ns)&&a.Kf().tf(this.p,this.e,uBd,new o0((pR(),iR),(NT(),KT)))};var QCc=Mmd(512);n9c(2146,1,{2240:1},gJ);_.wg=AMd;_.xg=aNd;var RCc=Mmd(2146);n9c(835,1,{},hJ);_.Ag=function(a){var b,c;b=dsd(a.r);if(!b.a.sd()){c=new ltd;Hqd(c,this.b.wg(),this.b.xg(mJ(this.b.wg(),b)));yQ(this.a.f,new rB(this.a.i,b,c));return true}return false};var SCc=Mmd(835);n9c(2072,512,{});_.wg=AMd;_.b=0;_.c=0;_.d=0;var TCc=Mmd(2072);n9c(2073,2072,{},kJ);_.zg=function(a){return jJ(this,a)};var UCc=Mmd(2073);n9c(313,10,{313:1,2240:1,3:1,11:1,10:1},sJ);_.wg=AMd;_.xg=function(a){var b;b=hs(this.b,a)+1;return this.b.a.length>b?Yr(this.b,b):null};var nJ,oJ,pJ,qJ;var VCc=Nmd(313,Q5c,uJ);n9c(634,512,{},vJ);_.zg=function(a){return this.a.xg(lJ(a,this.a.wg()))};_.wg=function(){return this.a.wg()};var WCc=Mmd(634);n9c(1507,512,{},xJ);_.zg=function(a){return mnd((a.Rl()+1)%5)};_.yg=function(){return hy(Lu(this.o.i).b)&&dJ(this,LG(this))&&!St(this.o.c,(cu(),_t)).Pd()};_.wg=function(){return kcc(),ecc};var XCc=Mmd(1507);n9c(1505,512,{},yJ);_.zg=function(a){return Z1b(a.Xl())};_.wg=uOd;var YCc=Mmd(1505);n9c(833,202,{},zJ);_.eg=jNd;_.kg=function(a){VG(this,a.c);if(ny(Lu(this.o.i).b)){bH(this,(!this.c&&(this.c=new GJ(this.o)),this.c));FJ((!this.c&&(this.c=new GJ(this.o)),this.c),TG(this),a.c)}else{bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b))}!!this.k&&this.k.kg(a)};_.ng=iNd;_.og=function(a){!!this.k&&this.k.og(a);bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b))};_.qg=function(){!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));this.o.i.w.Hf();bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b));_G(this)};_.Rd=function(){!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));this.o.i.w.Hf();bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b))};_.tg=function(){!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));this.o.i.w.Hf();bH(this,(!this.b&&(this.b=new BJ(this.o,this.a)),this.b));cH(this)};var ZCc=Mmd(833);n9c(434,91,{},BJ);_.eg=jNd;_.hg=function(a){if(this.b){Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){AJ(this);this.b=a.c};_.og=function(a){var b,c;if(!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))){c=fw(this.o.i,kbc(this.b,this.p));b=new By;ux(b,new F8b(c,this.a));yQ(this.o.f,new PC(this.o.i,b))}AJ(this)};_.qg=function(){AJ(this);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])))};_.rg=function(a){var b;if(!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))){b=kbc(this.b,this.p);(V8b(),U8b)==this.a?VZ(new XZ(b,a,KBd,null),a.Kf()):VZ(new $Z(b,a,KBd,null),a.Kf())}};_.Rd=kNd;_.tg=kNd;var $Cc=Mmd(434);n9c(631,91,{},GJ);_.hg=function(a){if(!!this.c&&!!this.b){Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){DJ(this,a)};_.og=function(a){var b,c,d;if(!(!!this.c&&!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))*TBd)){EJ(this);return}Jl(this,a.c);if(!this.a){d=lad(gw(this.o.i,this.p),gw(this.o.i,this.b));yQ(this.o.f,new mE(this.o.i,dbc(this.c.e),0,d,D$b(new F$b,new Srd(vuc(quc(BYc,1),lyd,2338,0,[this.c]))).a,new ltd))}else{c=(b=iw(this.o.i,this.c.e),Q8b(this.a,b,this.p));sac(c.b,kH(c.b,new qad(c.c,c.a)))>$wnd.Math.abs(hw(this.o.i,LBd))&&yQ(this.o.f,new JD(this.c,fw(this.o.i,c)))}this.o.i.w.Hf();EJ(this)};_.rg=function(a){var b,c,d,e,f,g;if(!!this.c&&!!this.b&&!!this.p&&sac(this.b,this.p)>$wnd.Math.abs(hw(this.o.i,LBd))*TBd){g=dT(this.o.i.j,this.c);b=a.Kf();if(!this.a){b.gl();g.rh(b,UBd);KHb(b,lad(this.p,this.b));g.qh(b);b.qe()}else{g.rh(b,UBd);d=(e=iw(this.o.i,this.c.e),Q8b(this.a,e,this.p));sac(d.b,kH(d.b,new qad(d.c,d.a)))>$wnd.Math.abs(hw(this.o.i,LBd))&&((V8b(),U8b)==this.c.b?VZ(new XZ((f=iw(this.o.i,this.c.e),Q8b(this.a,f,this.p)),a,KBd,null),b):VZ(new $Z((c=iw(this.o.i,this.c.e),Q8b(this.a,c,this.p)),a,KBd,null),b))}}};_.Rd=function(){EJ(this)};var _Cc=Mmd(631);n9c(855,91,{},KJ);_.eg=VMd;_.fg=function(a){var b;VG(this,a.c);b=Lu(this.o.i);!!MJ(this.a,b)&&oH(this,LJ(this.a,b))};_.ng=function(a){Jl(this,a.c);VG(this,a.c);!!MJ(this.a,Lu(this.o.i))||Ry(Lu(this.o.i).b)};_.rg=function(a){!!this.p&&!(Os(),Ns)&&a.Kf().tf(this.p,this.b,uBd,HJ)};var HJ;var aDc=Mmd(855);n9c(1736,1,VBd,OJ);_.Bg=function(a){return !!MJ(this,a)};_.Cg=function(a){return LJ(this,a)};var bDc=Mmd(1736);n9c(534,1,VBd,QJ);_.Bg=function(a){var b;b=this.a.Dg(a);return b!=null&&this.b.Bg(b)};_.Cg=function(a){return this.b.Cg(this.a.Dg(a))};var cDc=Mmd(534);n9c(879,1,{},RJ);_.Dg=function(a){return hy(a.b)?dsd(a.b.r).a.zd(0):null};var dDc=Mmd(879);n9c(880,1,{},SJ);_.Dg=function(a){return a.a?a.a.a:null};var eDc=Mmd(880);n9c(881,1,VBd,TJ);_.Bg=function(a){var b;return b=gdc(a),!!b&&lsd(b.b,this.b)};_.Cg=function(a){var b;return b=csd(this.b,XJ(this.a,Eqd(a.Vl(),this.b))),new rB(this.c,(Xrd(),new ksd(a)),b)};var fDc=Mmd(881);n9c(901,1,{},WJ);_.a=0;_.b=0;_.c=0;var gDc=Mmd(901);n9c(882,1,{},YJ);_.a=0;var hDc=Mmd(882);n9c(659,1,{},hK);_.b=false;_.c=0;var iDc=Mmd(659);n9c(1475,91,{},yK);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_]))};_.hg=function(a){Jl(this,a.c);VG(this,a.c);!rK(this)&&!sK(this)?Ry(Lu(this.o.i).b):cw(this.o.i,true);this.o.i.w.Hf()};_.kg=function(a){VG(this,a.c);xK(this,a.c)};_.og=function(a){var b;VG(this,a.c);b=vK(this);!!b&&yQ(this.o.f,new TB(this.o.i,b));this.d=null};_.rg=function(a){var b,c,d;d=wK(this);if(!!d&&!!this.p){if(sac(d,this.p)>$wnd.Math.abs(a.ae(2.31))){b=tK(this,this.p,Aac(d,this.p));c=new dY(d,b,new EF(d,this.p),TBd,this.a?(RTb(),MTb):(RTb(),NTb),a)}else{c=new aY(d,this.p,TBd,this.a?(RTb(),MTb):(RTb(),NTb),a)}c.rh(a.Kf(),KBd)}};_.a=false;var jDc=Mmd(1475);n9c(785,202,{},CK);_.fg=function(a){var b,c,d;if(this.d){this.d=false;this.c=null;cw(this.o.i,true);this.o.i.w.Hf()}else if(!this.c){VG(this,a.c);b=LG(this);if(iK(b,this.o.i,this.b)&&DK(this.i,EK(dT(this.o.i.j,b)))>1){this.c=new GK(LG(this));this.o.i.w.Hf()}else{c=NG(this);if(c){d=u0b(this.f,c);!!d&&yQ(this.o.f,new mB(c,d))}}!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf()}else{this.c=null;cw(this.o.i,true);this.o.i.w.Hf()}};_.hg=function(a){if(this.d){this.d=false;this.c=null;cw(this.o.i,true)}else{Jl(this,a.c);!!this.k&&this.k.hg(a)}!!this.c&&(!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true),this.o.i.w.Hf())};_.kg=function(a){var b;this.d&&(this.d=false);b=BK(this,a);if(b){VG(this,a.c);!!this.c||hy(Lu(this.o.i).b)?bH(this,this.a):iy(Lu(this.o.i).b)?bH(this,this.a):jy(Lu(this.o.i).b)?bH(this,(!this.e&&(this.e=new MK(this.o)),this.e)):bH(this,this.a);!!this.k&&this.k.kg(b);if(this.c){Jl(this,a.c);!!this.k&&this.k.hg(a);this.c=null;cw(this.o.i,true)}!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf()}else{this.d=true}this.o.i.w.Hf()};_.lg=function(a){this.d&&(this.d=false);!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf();!!this.k&&this.k.lg(a)};_.mg=function(a){this.d&&(this.d=false);!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf();this.p=null;!!this.k&&this.k.mg(a)};_.ng=function(a){this.d&&(this.d=false);if(!this.c){VG(this,a.c);!!this.c||hy(Lu(this.o.i).b)&&!zK(this,LG(this))||YG(this)||my(Lu(this.o.i).b)||gy(Lu(this.o.i).b)||ly(Lu(this.o.i).b)?cw(this.o.i,false):cw(this.o.i,true);this.o.i.w.Hf();this.o.i.w.Hf()}};_.og=sNd;_.qg=function(){Ry(this.o.i.A);_G(this)};_.rg=function(a){var b,c;if(this.c){c=LG(this);Uo(this.c,oK(a,dT(this.o.i.j,c),kK(c,this.o.i,this.b)))}else{b=LG(this);iK(b,this.o.i,this.b)&&DK(this.i,EK(dT(this.o.i.j,b)))>1&&!(T(this.k,this.a)&&!!this.a.d)?qK(a,dT(this.o.i.j,LG(this)).oh()):!!this.k&&WG(this.k,a)}};_.tg=function(){this.c=null;cw(this.o.i,true);cH(this)};_.b=false;_.c=null;_.d=false;var lDc=Mmd(785);n9c(1317,1,{},GK);_.b=null;var kDc=Mmd(1317);n9c(1682,1,{},IK);_.a=0;var mDc=Mmd(1682);n9c(699,91,{},MK);_.hg=function(a){Ry(Lu(this.o.i).b);Jl(this,a.c);this.a?(this.b=true):(this.b=false);this.o.i.w.Hf()};_.kg=function(a){LK(this,a)};_.og=function(a){var b;b=KK(this,a.c);this.b&&b!=null&&$wnd.Math.abs(b-this.a.a.f)>0.01&&yQ(this.o.f,new nB(this.a.a,b));this.a=null;this.b=false};_.rg=function(a){var b,c,d,e;if(this.b&&!!this.p){e=KK(this,this.p);if(this.p){c=a.Kf();d=dT(this.o.i.j,this.a.a);d.rh(c,UBd);b=new aY(this.a.e,this.a.f,e,this.a.a.e,a);b.c.b?(!b.e&&((RTb(),OTb)==b.i?(b.e=new YX(b.b)):(b.e=new XX)),b.e).hi(c,uBd,b.c.c,b.c.b):(!b.e&&((RTb(),OTb)==b.i?(b.e=new YX(b.b)):(b.e=new XX)),b.e).ii(c,uBd,b.c.c,b.c.d)}}};_.a=null;_.b=false;var oDc=Mmd(699);n9c(2101,1,{},NK);_.b=0;_.c=0;var nDc=Mmd(2101);n9c(1618,202,{},PK);_.fg=function(a){VG(this,a.c);!Sx(Lu(this.o.i).b)&&!hy(Lu(this.o.i).b)&&!!this.k&&this.k.fg(a)};_.kg=function(a){VG(this,a.c);OK(this)?bH(this,this.b):hy(Lu(this.o.i).b)||iy(Lu(this.o.i).b)||my(Lu(this.o.i).b)||ky(Lu(this.o.i).b)?bH(this,this.a):bH(this,this.c);Ry(Lu(this.o.i).b);!!this.k&&this.k.kg(a)};_.og=function(a){!!this.k&&this.k.og(a);if(!FH(this.a,this.k)){Ry(this.o.i.A);bH(this,this.a)}};_.rg=lNd;var pDc=Mmd(1618);n9c(783,91,{});_.Eg=function(a){this.d.Jg(a,this.b)};_.hg=mNd;_.ig=function(a){if(a==27&&this.c){SK(this);this.o.i.w.Hf();return true}return false};_.kg=function(a){Jl(this,a.c);this.e=a.c;this.d.Kg(this.e)};_.og=nNd;_.qg=function(){ex(Mu(this.o.i),this.eg());SK(this)};_.Hg=wMd;_.rg=function(a){if(this.c){this.Eg(a);this.Hg(a)}};_.tg=function(){SK(this)};_.c=false;var JDc=Mmd(783);n9c(784,783,{});_.Gg=function(a){return new uM(this,a.i)};var GDc=Mmd(784);n9c(902,784,{},aL);_.Fg=function(a){XK(this,a)};_.eg=function(){return new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),q_]))};_.hg=mNd;_.og=nNd;_.Hg=function(a){$K(this,a)};var rDc=Mmd(902);n9c(1822,902,{},iL);_.Fg=function(a){var b,c,d,e;b=dsd(a.r);if(!(b.b.vd()<2||aVb(this.o.i.C,b))){return}c=jL(b);b.b.vd()>2&&!!c?(e=new By,rx(e,fL(this,b,c)),yQ(this.o.f,new PC(this.o.i,e)),undefined):hL(this,dsd(a.r))?(d=gL(this,b),yQ(this.o.f,new PC(this.o.i,y$b(new F$b,new Srd(vuc(quc(xWc,1),lyd,715,0,[d]))).a))):XK(this,a)};_.Hg=function(a){var b,c,d,e,f,g;e=hx(Lu(this.o.i));c=dsd(e.r);if(!(c.b.vd()<2||aVb(this.o.i.C,c))){return}b=jL(c);f=a.Kf();if(c.b.vd()>2&&!!b){d=new gs(c);_r(d,b);if(ZK(this,x$b(new F$b,d).a)){return}g=fL(this,c,b);dT(this.o.i.j,g).rh(f,KBd)}else !this.d.Ig().sd()&&c.b.vd()==2&&Zrd(c.a.zd(0).Ml(),c.a.zd(1).Ml())&&Zrd(c.a.zd(0).Ul(),c.a.zd(1).Ul())?dT(this.o.i.j,gL(this,c)).rh(f,KBd):$K(this,a)};var qDc=Mmd(1822);n9c(2169,91,{},lL);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)]))};_.fg=function(a){VG(this,a.c);Sx(Lu(this.o.i).b)||ny(Lu(this.o.i).b)?kL(this,a.c):ly(Lu(this.o.i).b)&&yQ(this.o.f,new DD(this.o.i,B$b(new F$b,new Srd(vuc(quc(jXc,1),lyd,1005,0,[QG(this)]))).a));this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();this.o.i.w.Hf()};_.hg=function(a){if(this.a){Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();VG(this,a.c);ly(Lu(this.o.i).b)&&(this.a=a.c)};_.ng=function(a){this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();Jl(this,a.c);VG(this,a.c)};_.og=function(a){var b;!!this.a&&!!this.p&&sac(this.p,this.a)>10&&ly(Lu(this.o.i).b)&&(b=lad(gw(this.o.i,this.p),gw(this.o.i,this.a)),yQ(this.o.f,new mE(this.o.i,new pad,0,b,B$b(new F$b,new Srd(vuc(quc(jXc,1),lyd,1005,0,[QG(this)]))).a,new ltd)));this.o.i.w.Hf()};_.qg=function(){this.a=null;ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),u_)])));this.o.i.w.Hf();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[u_])))};_.rg=function(a){var b,c,d,e;if(!!this.a&&!!this.p&&sac(this.p,this.a)>10&&ly(Lu(this.o.i).b)){d=a.Kf();e=QG(this);c=dT(this.o.i.j,e);c.rh(d,UBd);b=new f2b(e.a);e2b(b,a._d(this.p));dT(this.o.i.j,b).qh(d)}};_.Rd=oNd;_.tg=oNd;var sDc=Mmd(2169);n9c(541,10,{541:1,3:1,11:1,10:1},pL);_.a=false;var mL,nL;var tDc=Nmd(541,Q5c,qL);n9c(1740,91,{},HL);_.eg=function(){return !this.b&&(this.b=new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_,t_,w_]))),this.b};_.fg=function(a){var b,c,d;VG(this,a.c);if(a.d){hy(Lu(this.o.i).b)?yQ(this.o.f,new sA(LG(this),this.o.i)):my(Lu(this.o.i).b)&&yQ(this.o.f,new DD(this.o.i,C$b(new F$b,new Srd(vuc(quc(oXc,1),lyd,717,0,[SG(this)]))).a))}else{if(YG(this)){IL(this.d,(oL(),nL));GL(this,hx(Lu(this.o.i)));PL(this.d.a.c,RG(this).a,this.d.a.c.a);c=new MQb(this.d);nEb(new pEb(c.a))}else if(hy(Lu(this.o.i).b)){IL(this.d,(oL(),mL));GL(this,hx(Lu(this.o.i)));b=dsd(this.a.r).a.zd(0);if(kvc(b,93)){PL(this.d.a.c,b.b,this.d.a.c.a);c=new MQb(this.d);nEb(new pEb(c.a))}else{DL(this)}}else if(Sx(Lu(this.o.i).b)){d=new I3b(uL(this,0));pTb(d,gw(this.o.i,a.c));yQ(this.o.f,new BC(this.o.i,d))}}EL(this);this.o.i.w.Hf()};_.hg=function(a){var b;if(CL(this,a.c)){Jl(this,a.c);if(!this.f){ex(Mu(this.o.i),(!this.e&&(this.e=new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),s_)]))),this.e));b=kbc(this.c,a.c);BL(this,b)}this.o.i.w.Hf()}};_.kg=function(a){this.c=a.c;VG(this,a.c);if(YG(this)){this.f=null;this.c=a.c}else if(hy(Lu(this.o.i).b)){this.f=LG(this);this.c=jw(this.o.i,LG(this).Lh())}Ry(Lu(this.o.i).b)};_.ng=function(a){ex(Mu(this.o.i),(!this.b&&(this.b=new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_,t_,w_]))),this.b));VG(this,a.c);!iy(Lu(this.o.i).b)&&!hy(Lu(this.o.i).b)&&!YG(this)&&!my(Lu(this.o.i).b)&&Ry(Lu(this.o.i).b);this.o.i.w.Hf()};_.og=function(a){CL(this,a.c)&&(!this.f?tL(this,a.c):FL(this,a.c));ex(Mu(this.o.i),(!this.b&&(this.b=new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_,t_,w_]))),this.b));EL(this);this.o.i.w.Hf()};_.rg=function(a){var b,c,d,e;if(!!this.c&&!!this.p){c=a.Kf();if(!this.f){e=kbc(this.c,this.p);c.uf(e,(QQ(),IQ))}else{d=new I3b(uL(this,0));b=new S2b((s6b(),m6b),this.f,d);pTb(d,AL(this,this.p));dT(this.o.i.j,b).rh(c,KBd);dT(this.o.i.j,d).rh(c,KBd)}}};_.Rd=function(){EL(this)};_.tg=function(){Dx(this.a);EL(this)};_.f=null;var vDc=Mmd(1740);n9c(1741,1,{},JL);_.md=function(){var a,b;return a=mnd(this.a.c.b),b=LL(this.a)==(oL(),mL)?(qmd(),this.a.c.a?true:false):null,new KL(a,b)};_.ob=function(a){Dx(this.b.a);OL(this.b.d.a.c)};_.pb=function(a){var b,c;b=(c=new QL,PL(c,a.b.a,a.a==null||a.a),c);PL(this.b.d.a.c,b.b,b.a);DL(this.b)};var uDc=Mmd(1741);n9c(533,1,{533:1},KL);var xDc=Mmd(533);n9c(2045,1,{},NL);var wDc=Mmd(2045);n9c(542,1,{},QL);_.a=false;_.b=0;var yDc=Mmd(542);n9c(1647,202,{},TL);_.fg=function(a){VG(this,a.c);iy(Lu(this.o.i).b)?RL(this,YA(this.o.i,MG(this))):my(Lu(this.o.i).b)&&!a.d?RL(this,ZA(this.o.i,SG(this))):!!this.k&&this.k.fg(a)};_.hg=function(a){var b;if(this.k!=this.d&&this.c){VG(this,this.b);Ry(this.o.i.A);az(this.o.i.A,(b=new By,YG(this)?(b=RG(this)):hy(Lu(this.o.i).b)?(b=Ey(LG(this))):my(Lu(this.o.i).b)?(b=Ey(SG(this).a)):iy(Lu(this.o.i).b)&&(b=Ey(MG(this).c)),b));bH(this,this.d);this.k.kg(new TE(this.b))}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){Ry(this.o.i.A);this.b=a.c;VG(this,a.c);(hy(Lu(this.o.i).b)&&a.d||iy(Lu(this.o.i).b)||my(Lu(this.o.i).b)||YG(this))&&(this.c=true);!!this.k&&this.k.kg(a)};_.og=function(a){!!this.k&&this.k.og(a);Ry(this.o.i.A);SL(this)};_.qg=function(){_G(this);ML(this.a.d.a,(oL(),nL));PL(this.a.d.a.c,-1,true);ML(this.a.d.a,mL);this.a.d.a.c.a&&PL(this.a.d.a.c,-1,true)};_.Rd=function(){SL(this)};_.b=null;_.c=false;var zDc=Mmd(1647);n9c(521,91,{},aM);_.fg=function(a){WL(this)};_.hg=function(a){!!this.f&&this.c&&_L(this,a.c)};_.kg=function(a){if(!this.f&&this.c){this.f=a.c;Jl(this,a.c);this.o.i.w.Hf()}};_.og=function(a){!!this.f&&this.c&&_L(this,a.c);XL(this)};_.qg=function(){ex(Mu(this.o.i),(e_(),d_));XL(this)};_.Rd=function(){XL(this)};_.tg=function(){$L(this);!!this.d&&Mqd(cM(this.d).c)!=0&&YL(this.d);XL(this)};_.a=null;_.c=false;_.f=null;var UL;var BDc=Mmd(521);n9c(1567,1,Vyd,bM);_.eb=function(){var a;if(this.a.c&&!!this.a.d&&!!this.a.d.a){a=this.a.b;this.a.b=kH(this.a.b,this.a.i);this.a.b=new qad(this.a.b.a%kBd,this.a.b.b%kBd);this.a.b.a>jBd==a.a>jBd&&this.a.b.b>jBd==a.b>jBd&&(this.a.o.i.j.c=true);this.a.a=new TD(this.a.d.a,this.a.b.a,this.a.b.b,cM(this.a.d));PD(this.a.a);this.a.o.i.w.Hf()}};var ADc=Mmd(1567);n9c(850,1,{},fM);_.a=null;var CDc=Mmd(850);n9c(620,91,{},qM);_.hg=function(a){var b;if(!!this.d&&!!this.d.a&&!!this.a&&this.e!=null&&this.f!=null){Jl(this,a.c);b=mM(this,a.c,a.d);if(b.a!=this.e||b.b!=this.f){this.e=b.a;this.f=b.b;this.o.i.j.c=true;PD(new TD(this.d.a,this.e,this.f,cM(this.d)))}this.o.i.w.Hf()}};_.kg=function(a){if(!this.a){this.a=a.c;Jl(this,a.c);this.e=0;this.f=0;ZL(this,this.d);this.o.i.w.Hf()}};_.og=function(a){var b;if(!!this.d&&!!this.d.a&&!!this.a&&this.e!=null&&this.f!=null){Jl(this,a.c);b=mM(this,a.c,a.d);if(b.a!=this.e||b.b!=this.f){this.e=b.a;this.f=b.b;this.o.i.j.c=true}$wnd.Math.abs(this.e)>HBd||$wnd.Math.abs(this.f)>HBd?yQ(this.o.f,new TD(this.d.a,this.e,this.f,cM(this.d))):PD(new TD(this.d.a,0,0,cM(this.d)))}this.o.i.w.Hf();!!this.d&&dM(this.d);nM(this)};_.qg=function(){ex(Mu(this.o.i),(e_(),d_));!!this.d&&dM(this.d);nM(this)};_.rg=function(a){var b,c,d,e,f,g,h,j,l;if(!!this.p&&!!this.a){d=a.Pf();kM(this,a,this.a.a,5,d.c);kM(this,a,this.a.a,-5,0);lM(this,a,this.a.b,5,d.a);lM(this,a,this.a.b,-5,0);e=this.p.a-this.a.a;f=this.p.b-this.a.b;g=c9c(P8c($wnd.Math.round(e/15)));h=c9c(P8c($wnd.Math.round(f/15)));j=this.a.a+g*15;l=this.a.b+h*15;HHb(a.Kf(),this.k,vuc(quc(T1c,1),tBd,5,0,[new qad(0,l),new qad(10,l)]));HHb(a.Kf(),this.b,vuc(quc(T1c,1),tBd,5,0,[new qad(j,0),new qad(j,10)]));GHb(a.Kf(),this.a,3,false,this.c);b=kH(this.p,new qad(-2,0));c=kH(this.p,new qad(0,-2));a.Kf().tf(kH(this.a,new qad(0,5)),'(0\xB0,0\xB0)',_Bd,hM);a.Kf().tf(b,e9c(P8c($wnd.Math.round(-this.e*$Bd)))+UAd,aCd,iM);a.Kf().tf(c,e9c(P8c($wnd.Math.round(-this.f*$Bd)))+UAd,'firebrick',gM)}};_.Rd=function(){nM(this)};_.tg=function(){!!this.d&&Mqd(cM(this.d).c)!=0&&YL(this.d);nM(this);!!this.d&&dM(this.d)};_.a=null;_.e=null;_.f=null;var gM,hM,iM;var DDc=Mmd(620);n9c(1318,202,{},rM);_.fg=function(a){WL((!this.a&&(this.a=new aM(this.o,this.c)),this.a));bH(this,this.k==(!this.a&&(this.a=new aM(this.o,this.c)),this.a)?(!this.b&&(this.b=new qM(this.o)),this.b):(!this.a&&(this.a=new aM(this.o,this.c)),this.a))};_.tg=function(){this.k==(!this.a&&(this.a=new aM(this.o,this.c)),this.a)&&bH(this,(!this.b&&(this.b=new qM(this.o)),this.b));cH(this)};var EDc=Mmd(1318);n9c(1315,1,{});_.Ig=KMd;_.Jg=function(a,b){var c,d,e;if(this.b.a.length<2){return}c=this.b.a[0];d=Yr(this.b,this.b.a.length-1);e=new gs(this.b);$r(e,this.b.a.length-1);HHb(a.Kf(),b,ds(e,suc(T1c,tBd,5,0,0,1)));HHb(a.Kf(),(QQ(),LQ),vuc(quc(T1c,1),tBd,5,0,[c,d]))};_.Kg=function(a){this.b.a=suc(_5c,lyd,1,0,5,1);this.c=a};_.Lg=function(a){var b,c;Wr(this.b,a);c=new OF(this.a.e,this.c,a);b=new By;RS(this.d.j,b,c);sM(this,b);this.c=a};var aEc=Mmd(1315);n9c(1316,1315,{},uM);var FDc=Mmd(1316);n9c(809,783,{});_.Gg=function(a){return new wM(this,a.i)};var IDc=Mmd(809);n9c(1404,1,{});_.Ig=function(){var a,b,c;if(!this.b){return Xrd(),Xrd(),Urd}b=this.b.b;c=this.b.c;a=this.b.a;return new Srd(vuc(quc(T1c,1),tBd,5,0,[b,kH(b,new qad(c,0)),kH(b,new qad(c,a)),kH(b,new qad(0,a))]))};_.Jg=function(a,b){if(!this.b){return}a.Kf().uf(this.b,b)};_.Kg=function(a){this.b=null};_.Lg=function(a){this.b=kbc(this.a.e,a);gx(Lu(this.c));cx(Mu(this.c),this.b)};_.b=null;var bEc=Mmd(1404);n9c(1405,1404,{},wM);var HDc=Mmd(1405);n9c(828,91,{});_.Mg=function(a,b){VT();$T(a.Kf(),this.o.i.j,b,UBd,!!a.pe(),null)};_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_]))};_.kg=function(a){cw(this.o.i,false)};_.og=function(a){cw(this.o.i,true);this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_])));cw(this.o.i,false);this.Rd()};_.rg=function(a){AM(this,a);yM(this,a)};_.Rg=function(a,b){VT();$T(b.Kf(),this.o.i.j,a,null,!!b.pe(),null)};_.Rd=function(){BM(this)};_.tg=function(){this.Rd();cw(this.o.i,true)};_.f=null;var KDc=Mmd(828);n9c(1565,91,{},HM);_.hg=function(a){var b;b=EM(this,a.c);!!b&&!a.d?yN(this.a,b):mN(this.b,gw(this.o.i,a.c));this.o.i.w.Hf()};_.tg=function(){!!this.b&&(this.b.c=false,undefined)};var LDc=Mmd(1565);n9c(507,828,{},VM);_.Mg=function(a,b){var c;VT();$T(a.Kf(),this.o.i.j,b,UBd,!!a.pe(),null);c=a.Kf();YG(this)?eT(this.o.i.j,RG(this)).rh(c,UBd):XG(this)&&eT(this.o.i.j,OG(this)).rh(c,UBd)};_.Ng=function(){var a,b;if(this.a){return new By}a=new By;qx(a,Lu(this.o.i).b);qx(a,this.o.i.A);b=new qF(a,this.o.i.C);a=pF(b);return a};_.Og=function(){var a,b,c,d,e,f,g,h;b=new es;h=aD(this.f);c=gw(this.o.i,this.b);d=gw(this.o.i,this.p);e=new qad(d.a-c.a,d.b-c.b);for(g=new qsd(h.b.Qb());g.b.Rc();){f=g.b.Sc();a=jw(this.o.i,kH(f[1].Lh(),e));b.a[b.a.length]=a}return b};_.Pg=function(){var a,b,c,d;b=new es;for(d=new qsd(aD(this.f).b.Qb());d.b.Rc();){c=d.b.Sc();a=jw(this.o.i,c[0].Lh());b.a[b.a.length]=a}return b};_.Qg=function(){var a,b;a=new By;qx(a,Lu(this.o.i).b);qx(a,this.o.i.A);b=new xF(a,this.o.i.C);a=vF(b);this.a||IM(a);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,x_,k_,u_,z_,v_,w_])));return a};_.hg=function(a){if(!KM(this,a.c)){return}!!this.b&&!this.c&&UM(this,this.b);RM(this,a);this.o.i.w.Hf()};_.kg=function(a){QM(this,a)};_.og=function(a){var b,c,d,e,f,g;if(!KM(this,a.c)){return}RM(this,a);b=gw(this.o.i,this.b);c=gw(this.o.i,a.c);d=new qad(c.a-b.a,c.b-b.b);this.a?(e=this.f,f=QVb(this.o.i.C,Hy(this.o.i.A)),Gy(f,d),eD(e,dsd(f.n)),yE(bD(e),e.b),g=new wB,uB(uB(g,RC(this.o.i,f)),new uC(this.o.i,this.o.i.C,bD(e))),yQ(this.o.f,vB(g,this.o.i)),undefined):yQ(this.o.f,SN(this.o.i.C,new mE(this.o.i,new pad,0,d,this.o.i.A,bD(this.f))));TM(this);this.o.i.w.Hf()};_.rg=function(a){!!this.c&&(AM(this,a),yM(this,a))};_.Rg=function(a,b){var c;VT();$T(b.Kf(),this.o.i.j,a,null,!!b.pe(),null);this.a||SM(this,a,b,mad(this.c,new qad(-1,-1)));c=b.Kf();YG(this)&&eT(this.o.i.j,RG(this)).qh(c);XG(this)&&eT(this.o.i.j,OG(this)).qh(c)};_.Rd=function(){TM(this)};_.sg=function(a){this.c?a.Bf(this.a?(Ez(),zz):(Ez(),Bz)):a.Bf((Ez(),Az))};_.Sg=function(a){KHb(a,this.c)};_.a=false;var MDc=Mmd(507);n9c(1314,784,{},WM);_.Fg=pNd;_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,t_,x_,r_,k_,u_,z_,v_,q_,y_]))};_.hg=mNd;_.og=qNd;var NDc=Mmd(1314);n9c(1403,809,{},XM);_.Eg=function(a){var b;if(this.p){b=new ibc(this.e,this.p.a-this.e.a,this.p.b-this.e.b);a.Kf().uf(b,(QQ(),OQ))}};_.Fg=pNd;_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),s_),y_]))};_.og=qNd;var ODc=Mmd(1403);n9c(1566,828,{},cN);_.Ng=rNd;_.Og=function(){var a,b,c,d;d=aD(this.f);a=new es;for(c=new qsd(d.b.Qb());c.b.Rc();){b=c.b.Sc();Wr(a,jw(this.o.i,AF(new BF(uN(this.a.e.b),this.b),b[1].Lh())))}return a};_.Pg=function(){var a,b,c,d;d=aD(this.f);a=new es;for(c=new qsd(d.b.Qb());c.b.Rc();){b=c.b.Sc();Wr(a,jw(this.o.i,b[0].Lh()))}return a};_.Qg=rNd;_.hg=function(a){var b,c,d,e,f;c=gw(this.o.i,a.c);cw(this.o.i,false);d=tac(uN(this.a.e.b),c,sac(uN(this.a.e.b),uN(this.c.b)));yN(this.c,d);f=lad(this.d,uN(this.a.e.b));b=lad(c,uN(this.a.e.b));bN(this,($wnd.Math.atan2(b.b,b.a)-$wnd.Math.atan2(f.b,f.a))%kBd,a.d);e=$M(this,a.d);En(this.a,e);CM(this,new BF(uN(this.a.e.b),e),false);this.o.i.w.Hf()};_.kg=function(a){cw(this.o.i,false);this.a.a=0;this.e='0';CM(this,new BF(uN(this.a.e.b),0),false);this.o.i.w.Hf()};_.og=function(a){var b,c;if(this.a.a!=null){cw(this.o.i,true);b=uN(this.a.e.b);c=$M(this,a.d);yQ(this.o.f,new mE(this.o.i,b,c,new pad,this.o.i.A,bD(this.f)))}_M(this);this.o.i.w.Hf()};_.rg=function(a){var b;if(this.a.a!=null&&this.e!=null){AM(this,a);yM(this,a);b=new p0((pR(),jR),(NT(),DT),true);a.Kf().tf(kH(a.ce(uN(this.c.b)),new qad(0,-20)),this.e,bCd,b)}};_.Rd=function(){_M(this)};_.Sg=function(a){IHb(a,jw(this.o.i,uN(this.a.e.b)),this.a.a)};_.tg=function(){_M(this);_M(this);cw(this.o.i,true)};_.b=0;var PDc=Mmd(1566);n9c(810,1,{194:1,143:1,13:1},oN);_.Zd=function(){nN(this)};_.Ud=function(a){nN(this)};_.a=null;_.c=false;_.d=0;var WDc=Mmd(810);n9c(1406,1,{},qN);_.md=function(){return $z(this.a.i.A)};var QDc=Mmd(1406);n9c(1407,1,{},rN);_.md=function(){return qmd(),uN(this.a)!=null?true:false};var RDc=Mmd(1407);n9c(1408,1,{},sN);_.md=function(){return qmd(),Tx(this.a.i.A)?true:false};var SDc=Mmd(1408);n9c(1409,1,{},tN);_.md=function(){var a;return a=iN(this.a),gw(this.a.i,lad(new qad(a.b.a+a.c/2,a.b.b+a.a/2),new qad(0,a.a/2+30)))};var TDc=Mmd(1409);n9c(619,1,{},wN);_.md=function(){return uN(this)};_.b=false;var UDc=Mmd(619);n9c(811,1,{},zN);_.c=0;var VDc=Mmd(811);n9c(1474,202,{},DN);_.kg=function(a){hN(this.b,a.c)?(this.b.c=true,undefined):(this.b.c=false,undefined);CN(this,a);!!this.k&&this.k.kg(a)};_.ng=function(a){hN(this.b,a.c)?(this.b.c=true,undefined):(this.b.c=false,undefined);this.o.i.w.Hf()};_.og=sNd;_.rg=function(a){!!this.k&&WG(this.k,a);kN(this.b,a)};var XDc=Mmd(1474);n9c(498,202,{},EN,FN);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),t_,n_,r_,k_,z_,u_,v_,x_,w_,y_]))};_.fg=function(a){if(AN(this.i,a)){return}bH(this,this.a);!!this.k&&this.k.fg(a)};_.gg=function(a){bH(this,this.a);!!this.k&&this.k.gg(a)};_.hg=function(a){if(!this.b){return}if(this.k==this.a){if(jy(Lu(this.o.i).b)&&(Sx(this.o.i.A)||!Tx(this.o.i.A))){Ex(this.o.i.A,NG(this))||Ry(this.o.i.A);bH(this,(!this.f&&(this.f=new MK(this.o)),this.f));LK((!this.f&&(this.f=new MK(this.o)),this.f),new UE(this.b,a.a,a.d,a.b))}else if(gy(Lu(this.o.i).b)&&KO((!this.c&&(this.c=new QO(this.o)),this.c),KG(this),this.b)){bH(this,(!this.c&&(this.c=new QO(this.o)),this.c));NO((!this.c&&(this.c=new QO(this.o)),this.c),new UE(this.b,a.a,a.d,a.b))}else if(ny(Lu(this.o.i).b)&&CJ(this.e,TG(this),this.b)){bH(this,this.e);FJ(this.e,TG(this),this.b);DJ(this.e,new UE(this.b,a.a,a.d,a.b))}else{bH(this,this.d);QM(this.d,new UE(this.b,a.a,a.d,a.b))}}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){this.b=a.c;if(AN(this.i,a)){bH(this,this.i)}else{VG(this,a.c);Sx(Lu(this.o.i).b)?bH(this,this.j):bH(this,this.a)}!!this.k&&this.k.kg(a)};_.ng=function(a){AN(this.i,a)?bH(this,this.i):bH(this,this.a);Jl(this,a.c);!!this.k&&this.k.ng(a)};_.og=function(a){this.b=null;!!this.k&&this.k.og(a);bH(this,this.a);this.o.i.w.Hf()};_.qg=function(){_G(this);cw(this.o.i,true)};_.rg=function(a){!!this.k&&WG(this.k,a);this.k==this.a&&BN(this.i,a)};_.tg=function(){cw(this.o.i,true);cH(this)};_.b=null;var YDc=Mmd(498);n9c(1473,91,{},KN);_.eg=function(){return new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,t_,r_,k_,x_,u_,z_,v_,w_,y_]))};_.fg=function(a){var b;a.d||Ry(this.o.i.A);b=JN(this,a);dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd()||IN(this,a,Lu(this.o.i).b)};_.gg=function(a){var b;a.d||Ry(this.o.i.A);b=JN(this,a);if(!(dsd(b.r).a.sd()&&dsd(b.s).a.sd()&&dsd(b.A).a.sd()&&dsd(b.t).a.sd()&&dsd(b.q).a.sd()&&dsd(b.w).a.sd()&&dsd(b.B).a.sd()&&dsd(b.u).a.sd()&&dsd(b.C).a.sd())){b=HN(b);a.d&&Fx(this.o.i.A,b)?Xy(this.o.i.A,b):az(this.o.i.A,b)}};_.ng=function(a){JN(this,a);this.o.i.w.Hf()};_.sg=function(a){a.Bf(!Sx(this.o.i.A)&&!Sx(Lu(this.o.i).b)&&Fx(this.o.i.A,Lu(this.o.i).b)?(Ez(),Bz):(Ez(),Az))};var ZDc=Mmd(1473);n9c(2065,wBd,xBd,ON);_.Tf=function(){MN(this)};_.Uf=function(){NN(this)};var _Dc=Mmd(2065);n9c(2066,wBd,xBd,TN);_.Tf=function(){this.a.eb();!!this.b&&MN(this.b)};_.Uf=function(){this.a.Uf();!!this.b&&NN(this.b)};var $Dc=Mmd(2066);n9c(2213,wBd,xBd,UN);_.Tf=function(){XN(this.b,this.c);$v(this.d)};_.Uf=function(){XN(this.b,this.a);$v(this.d)};_.a=0;_.c=0;var cEc=Mmd(2213);n9c(883,1,VBd,YN);_.Bg=function(a){return P4b(a)==(V4b(),S4b)&&!!VN(a)&&WN(a)!=0};_.Cg=function(a){return _N(this.a,a,WN(a)+this.b)};_.b=0;var dEc=Mmd(883);n9c(884,1,{},aO);var eEc=Mmd(884);n9c(417,1,dCd);_.sb=function(a){return qmd(),this.Ug(a)&&this.Tg(a)?true:false};_.Ug=function(a){return hO(this,P4b(a))};var mEc=Mmd(417);n9c(837,417,dCd,oO);_.Tg=function(a){var b;return b=WN(a),bt(PGb(this.a,b),new qO(this,a)),true};_.Ug=function(a){return P4b(a)==(V4b(),S4b)&&!!VN(a)}; -_.Ag=function(a){var b,c;if(!dsd(a.r).a.sd()){c=fO(this,a);if(c){b=WN(c);bt(PGb(this.a,b),new qO(this,c));return true}if(!gO(this,dsd(a.r))){kO(this,new Z1(V6b(dsd(a.r),dsd(Vw(this.c).n))));return true}}return false};var hEc=Mmd(837);n9c(1513,1,Xyd,pO);_.tb=function(a){nO(this.a,this.b,a)};var fEc=Mmd(1513);n9c(838,1,Xyd,qO);_.tb=function(a){mO(this.a,this.b,a.a)};var gEc=Mmd(838);n9c(1738,809,{},sO);_.Fg=function(a){this.a.Ag(a)};_.eg=function(){return new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),q_,y_]))};_.fg=function(a){var b,c,d;VG(this,a.c);d=rO(this);for(c=d.Qb();c.Rc();){b=c.Sc();if(iO(this.a,b)){break}}gx(Lu(this.o.i));this.o.i.w.Hf()};_.ng=function(a){Jl(this,a.c);VG(this,a.c);rO(this).sd()&&gx(Lu(this.o.i));this.o.i.w.Hf()};var iEc=Mmd(1738);n9c(636,417,dCd,xO);_.Tg=function(a){return bt(Xob(this.b,a),new zO(this,a)),true};_.Ag=function(a){var b;if(!dsd(a.r).a.sd()){if(!this.a){b=fO(this,a);if(b){bt(Xob(this.b,b),new zO(this,b));return true}}if(!gO(this,dsd(a.r))){tO(this,new Z1(V6b(dsd(a.r),dsd(Vw(this.c).n))));return true}}return false};_.a=false;var lEc=Mmd(636);n9c(1512,1,Xyd,yO);_.tb=function(a){uO(this.a,this.b,a)};var jEc=Mmd(1512);n9c(836,1,Xyd,zO);_.tb=function(a){vO(this.a,this.b,a)};var kEc=Mmd(836);n9c(2158,1,{1006:1},EO);_.Vg=function(a){return BO(this,a)};_.a=false;var nEc=Mmd(2158);n9c(2229,1,{},FO);_.Wg=function(a,b){return hnd(a.Sl(),b.Sl())};_.V=qMd;var oEc=Mmd(2229);n9c(373,1,{},JO);_.b=0;var pEc=Mmd(373);n9c(379,91,{},QO);_.eg=jNd;_.hg=function(a){if(!!this.a&&!!this.b&&OO(this,a.c)){Jl(this,a.c);VG(this,MO(this,a.c));Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){NO(this,a)};_.og=function(a){var b,c;OO(this,a.c)&&Jl(this,a.c);if(!!this.a&&!!this.b){b=MO(this,a.c);VG(this,b);c=null;ny(Lu(this.o.i).b)&&(c=B6b(TG(this),HO(new JO(TG(this),lad(gw(this.o.i,new qad($wnd.Math.max(this.o.i.a.j.e.b*10,1),0)),gw(this.o.i,new qad(0,0))).a),gw(this.o.i,b))));!c&&(c=new C6b(gw(this.o.i,b)));yQ(this.o.f,SN(this.o.i.C,new RB(this.a,c,this.c)));this.o.i.w.Hf()}PO(this)};_.qg=function(){PO(this);ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])))};_.rg=function(a){var b,c,d,e;if(!!this.a&&!!this.p&&!!this.b){c=a.Kf();dT(this.o.i.j,this.a).rh(c,UBd);b=LO(this,MO(this,this.p));d=this.c?b:jw(this.o.i,this.a.c.gn());e=this.c?jw(this.o.i,this.a.a.gn()):b;_X(new aY(d,e,0,this.a.d,a),c,uBd)}};_.Rd=tNd;_.tg=tNd;_.b=null;_.c=false;_.d=null;var qEc=Mmd(379);n9c(662,91,{},UO);_.eg=jNd;_.fg=function(a){var b;gy(Lu(this.o.i).b)&&yQ(this.o.f,(b=zD(this.o.i),new ED(this.o.i,Lu(this.o.i).b,b)));TO(this);this.o.i.w.Hf()};_.hg=function(a){Jl(this,a.c);Ry(Lu(this.o.i).b);VG(this,a.c);this.a=!a.d&&!ny(Lu(this.o.i).b);this.o.i.w.Hf()};_.ig=function(a){if(16==a){this.a=false;this.o.i.w.Hf();return true}return false};_.jg=function(a){if(16==a){this.a=true;this.o.i.w.Hf();return true}return false};_.kg=function(a){var b,c;TO(this);VG(this,a.c);b=gw(this.o.i,a.c);this.b=(c=null,ny(Lu(this.o.i).b)&&(c=B6b(TG(this),HO(new JO(TG(this),lad(gw(this.o.i,new qad($wnd.Math.max(this.o.i.a.j.e.b*10,1),0)),gw(this.o.i,new qad(0,0))).a),b))),!c&&(c=new C6b(b)),c);this.a=!a.d&&!ny(Lu(this.o.i).b)};_.og=function(a){var b,c,d,e;Jl(this,a.c);if(RO(this)){VG(this,this.p);this.a=!a.d&&!ny(Lu(this.o.i).b);c=this.b.gn();d=gw(this.o.i,this.p);this.a&&(d=gH(new iH(c,rac(c.a,c.b,0,d.a,d.b,0)),d));b=SO(this,d);yQ(this.o.f,(e=zD(this.o.i),SC(this.o.i,b,e)))}TO(this);this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),v_)])));TO(this)};_.rg=function(a){var b,c,d,e,f,g,h;if(gy(Lu(this.o.i).b)){a.Mf(0.5);c=dT(this.o.i.j,KG(this)).Jh();GHb(a.Kf(),c,7*a.Yd(),false,new xT(false,NBd));a.Mf(1)}else if(ly(Lu(this.o.i).b)){a.Mf(0.5);c=dT(this.o.i.j,QG(this)).Jh();GHb(a.Kf(),c,7*a.Yd(),false,new xT(false,NBd));a.Mf(1)}else if(RO(this)){b=jw(this.o.i,this.b.gn());d=this.p;if(this.a){g=gw(this.o.i,b);h=gw(this.o.i,d);d=jw(this.o.i,gH(new iH(g,rac(g.a,g.b,0,h.a,h.b,0)),h))}else if(ny(hx(Lu(this.o.i)))){f=dsd(hx(Lu(this.o.i)).B).a.zd(0);d=jw(this.o.i,z8b(f,HO(new JO(f,lad(gw(this.o.i,new qad($wnd.Math.max(this.o.i.a.j.e.b*10,1),0)),gw(this.o.i,new qad(0,0))).a),gw(this.o.i,this.p))))}e=new aY(b,!d?this.p:d,0,this.c,a);_X(e,a.Kf(),KBd)}};_.Rd=uNd;_.tg=uNd;_.a=true;var rEc=Mmd(662);n9c(2097,91,{},YO);_.eg=function(){return new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)]))};_.hg=function(a){if(this.a){VG(this,a.c);hy(Lu(this.o.i).b)&&LG(this)!=this.a?Jl(this,jw(this.o.i,LG(this).Lh())):Jl(this,a.c);this.o.i.w.Hf()}};_.kg=function(a){XO(this);VG(this,a.c);hy(Lu(this.o.i).b)&&(this.a=LG(this))};_.og=function(a){var b,c,d;if(this.a){VG(this,a.c);if(hy(Lu(this.o.i).b)){c=LG(this);if(this.a!=c){b=VO(this,c);d=new _td;Ytd(d,(kcc(),Obc),mnd(b));yQ(this.o.f,new rB(this.o.i,new Srd(vuc(quc(tWc,1),zBd,49,0,[this.a,c])),d))}}}XO(this);this.o.i.w.Hf()};_.qg=function(){ex(Mu(this.o.i),new h_(XBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_)])));XO(this)};_.rg=function(a){var b;if(!!this.a&&!!this.p){b=new vT(false,3,false,XBd);HHb(a.Kf(),b,vuc(quc(T1c,1),tBd,5,0,[jw(this.o.i,this.a.Lh()),this.p]))}};_.Rd=vNd;_.tg=vNd;var sEc=Mmd(2097);n9c(511,202,{},_O);_.eg=function(){return ZO(this)};_.fg=function(a){VG(this,a.c);if(gy(Lu(this.o.i).b)){if(KO((!this.b&&(this.b=new QO(this.o)),this.b),KG(this),a.c)){Ry(Lu(this.o.i).b);$O(this);this.o.i.w.Hf();return}else{bH(this,(!this.c&&(this.c=new UO(this.o,this.f)),this.c))}}else{bH(this,bP(this.e))}!!this.k&&this.k.fg(a);$O(this);this.o.i.w.Hf()};_.hg=function(a){if(!this.a){return}if(this.k==(!this.c&&(this.c=new UO(this.o,this.f)),this.c)&&gy(Lu(this.o.i).b)&&KO((!this.b&&(this.b=new QO(this.o)),this.b),KG(this),this.a)){bH(this,(!this.b&&(this.b=new QO(this.o)),this.b));this.k.kg(new UE(this.a,a.a,a.d,a.b))}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){$O(this);VG(this,a.c);this.a=a.c;hy(Lu(this.o.i).b)?bH(this,(!this.d&&(this.d=new YO(this.o)),this.d)):ly(Lu(this.o.i).b)&&bH(this,bP(this.e));!!this.k&&this.k.kg(a)};_.ng=function(a){VG(this,a.c);Jl(this,a.c);!!this.k&&this.k.ng(a)};_.og=function(a){!!this.k&&this.k.og(a);Jl(this,a.c);$O(this)};_.Rd=function(){$O(this)};_.a=null;var vEc=Mmd(511);n9c(1497,1,{},cP);_.md=function(){return aP(this)};var uEc=Mmd(1497);n9c(1498,91,{},dP);var tEc=Mmd(1498);n9c(708,91,{});_.Xg=function(a){var b,c,d;if(a.d.c+a.e.b==2){c=new js(new Sqd(a));b=fP(c.a[0].yp(),c.a[1].yp());d=fP(c.a[0].Ok(),c.a[1].Ok());return eP(d,b)}return null};_.Yg=wMd;_.eg=yNd;_.fg=function(a){this.Rd();this.c=a.c;this.Yg(a);this.Rd()};_.hg=function(a){if(!!this.c&&(!!this.p||sac(this.c,a.c)>$wnd.Math.abs(hw(this.o.i,LBd))*0.5)){Jl(this,a.c);this.$g(a)}};_.ig=function(a){if(a==16){if(this.c){$P(gP(this));this.o.i.w.Hf()}return true}return false};_.jg=function(a){if(a==16){return true}return false};_.kg=function(a){this.Rd();VG(this,a.c);this.c=a.c;this.Zg(a)};_.ng=function(a){if(!this.c){VG(this,a.c);this.p=null}};_.og=function(a){!!this.c&&this.bh(a);this.Rd()};_.rg=function(a){!!this.c&&this._g(a)};_.Rd=function(){mP(this)};var wEc=Mmd(708);n9c(983,1,{983:1},qP);var xEc=Mmd(983);n9c(2200,1,{},uP);_.a=0.1;_.b=0.1;var zEc=Mmd(2200);n9c(2201,1,Vyd,vP);_.eb=function(){rP(this.a)};var yEc=Mmd(2201);n9c(2228,1,{},yP);var AEc=Mmd(2228);n9c(2204,708,{},BP);_.Yg=function(a){AP(this,a.c);zP(this,a.c);yQ(this.o.f,RC(this.o.i,gP(this)));Ry(Lu(this.o.i).b)};_.Zg=wNd;_.$g=wNd;_._g=function(a){var b,c,d;if(this.p){b=a.Kf();d=jw(this.o.i,dbc(gP(this).d.gh()));c=this.p;b.gl();jP(this,this.d,a);KHb(b,new qad(c.a-d.a,c.b-d.b));iP(this,this.d,a);WT(this.i,b,this.o.i.j,KBd,null);b.qe()}};_.ah=GNd;_.bh=function(a){AP(this,a.c);if(this.p){zP(this,a.c);hP(this);Ry(Lu(this.o.i).b)}};_.dh=function(){var a;a=aD(this.d);a.a.sd()||lP(this,a.a.zd(0)[0].Ki())};var BEc=Mmd(2204);n9c(2202,708,{},JP);_.Zg=function(a){this.b=LG(this);this.b.Kl()!=1&&SP(gP(this));this.o.i.w.Hf()};_.$g=function(a){if(this.b){this.a=true;GP(this,a);this.o.i.w.Hf()}};_._g=function(a){var b,c,d,e,f;if(this.b){e=lad(this.b.Lh(),XP(gP(this)).Lh());d=DP(this)-ZP(gP(this));c=(f=new jD(this.o.i),fD(f,dsd(this.o.i.C.n)),eD(f,gP(this).d.Me()),hD(f,new IF(new JF(e),new BF(kH(XP(gP(this)).Lh(),e),d))),f);jP(this,c,a);b=a.Kf();b.gl();KHb(b,lad(jw(this.o.i,this.b.Lh()),jw(this.o.i,XP(gP(this)).Lh())));IHb(b,jw(this.o.i,XP(gP(this)).Lh()),d);iP(this,c,a);kP(this,b,EP(this));b.qe()}};_.ah=function(a){return a[0]!=this.b&&a[1]!=this.b};_.Rd=function(){this.a=false;this.b=null;mP(this)};_.bh=function(a){if(this.b){this.a?GP(this,a):this.b.Kl()!=1&&SP(gP(this));IP(this);!aD(this.d).a.sd()||HP(this,this.b.Ki());hP(this);Ry(Lu(this.o.i).b)}};_.dh=tMd;_.a=false;var CEc=Mmd(2202);n9c(2203,708,{},PP);_.Xg=function(a){var b;b=gP(this);return eP(this.b,YP(b).vd()>0?YP(b).zd(0):null)};_.Zg=function(a){this.b=MG(this);this.o.i.w.Hf()};_.$g=function(a){!!this.b&&this.o.i.w.Hf()};_._g=function(a){var b,c,d,e,f,g,h,j,l,m,n;if(this.b){e=a.Kf();e.gl();if(LP(this)==pP(gP(this).b.a[0])){b=a.ce(gP(this).b.a[0].a.c.Lh());l=lad(a.ce(this.b.c.Lh()),a.ce(gP(this).b.a[0].a.c.Lh()));g=lad(this.b.d.Lh(),this.b.c.Lh());h=lad(gP(this).b.a[0].a.d.Lh(),gP(this).b.a[0].a.c.Lh());c=$wnd.Math.atan2(g.b,g.a);d=$wnd.Math.atan2(h.b,h.a);j=c-d}else{b=a.ce(gP(this).b.a[0].a.d.Lh());l=lad(a.ce(this.b.c.Lh()),a.ce(gP(this).b.a[0].a.d.Lh()));g=lad(this.b.d.Lh(),this.b.c.Lh());h=lad(gP(this).b.a[0].a.c.Lh(),gP(this).b.a[0].a.d.Lh());c=$wnd.Math.atan2(g.b,g.a);d=$wnd.Math.atan2(h.b,h.a);j=c-d}f=(m=lad(D2b(this.b),D2b(gP(this).b.a[0].a)),n=new jD(this.o.i),fD(n,dsd(this.o.i.C.n)),eD(n,gP(this).d.Me()),hD(n,new IF(new JF(m),new BF(kH(D2b(gP(this).b.a[0].a),m),j))),n);jP(this,f,a);Ygc(e.el(),l.a,l.b);IHb(e,b,j);iP(this,f,a);kP(this,e,MP(this));e.qe()}};_.ah=function(a){return Zr(C2b(this.b),a[0],0)==-1&&Zr(C2b(this.b),a[1],0)==-1};_.Rd=function(){this.b=null;mP(this)};_.bh=function(a){var b,c;if(this.b){RP(gP(this),this.b,LP(this));eD(this.d,gP(this).d.Me());b=gP(this).b.a[0].a.c;c=gP(this).b.a[0].a.d;OP(this,b,MG(this).c)?c.mm(MG(this).d.Lh()):OP(this,b,MG(this).d)?c.mm(MG(this).c.Lh()):OP(this,c,MG(this).c)?b.mm(MG(this).d.Lh()):b.mm(MG(this).c.Lh());hP(this);Ry(Lu(this.o.i).b);this.o.i.w.Hf()}};_.dh=tMd;var DEc=Mmd(2203);n9c(979,1,fCd,aQ);_.eh=cOd;_.Le=function(){return this.d.Le()};_.fh=function(){return this.d.Me().vd()};_.Me=function(){return this.d.Me()};_.Ne=function(){return YP(this)};_.gh=function(){return this.d.gh()};_.Oe=function(){return this.d.Oe()};_.hh=function(){return this.d.hh()};_.Pe=function(){return this.d.Pe()};_.Qe=function(){return this.d.Qe()};_.Re=function(){return this.d.Re()};_.ih=function(){return this.d.ih()};_.Se=function(){return this.d.Se()};_.jh=function(){return this.d.jh()};_.Te=function(){return this.d.Te()};_.kh=xNd;_.sd=function(){return this.d.sd()};var GEc=Mmd(979);n9c(569,10,{569:1,3:1,11:1,10:1},fQ);var cQ,dQ;var EEc=Nmd(569,Q5c,gQ);n9c(966,202,{},hQ);_.eg=yNd;_.kg=function(a){VG(this,a.c);hy(Lu(this.o.i).b)&&this.e.a.a.length!=0?bH(this,this.a):iy(Lu(this.o.i).b)&&this.e.b.a.length!=0?bH(this,this.b):bH(this,this.c);!!this.k&&this.k.kg(a)};_.mg=function(a){this.p=null;aH(this)};_.rg=function(a){!!this.p&&!!this.k&&WG(this.k,a);sP(this.d,a)};_.Rd=function(){this.p=null;!!this.k&&this.k.Rd();ex(Mu(this.o.i),new h_(MBd,vuc(quc(UGc,1),nyd,34,0,[(A_(),l_),n_,r_,x_])));this.o.i.w.Hf()};var FEc=Mmd(966);n9c(1737,91,{},lQ);_.eg=ANd;_.fg=function(a){var b,c;b=a.c;VG(this,b);py(Lu(this.o.i).b)?(c=UG(this),jQ(this,c.c,new vQ(this.o.i,this.o.f,c))):Sx(Lu(this.o.i).b)&&kQ(this,gw(this.o.i,b))};_.ng=zNd;_.sg=function(a){a.Bf((Ez(),Dz))};var HEc=Mmd(1737);n9c(2173,1,{},nQ);_.lh=function(a){mQ(this,a)};var IEc=Mmd(2173);n9c(1499,202,{},pQ);_.eg=ANd;_.fg=function(a){bH(this,this.a);!!this.k&&this.k.fg(a);oQ(this)};_.hg=function(a){if(!!this.b&&sac(this.b,a.c)<$wnd.Math.abs(hw(this.o.i,LBd))*0.5&&this.k!=this.c){VG(this,this.b);if(py(Lu(this.o.i).b)){bH(this,this.c);QM(this.c,new TE(this.b))}}Jl(this,a.c);!!this.k&&this.k.hg(a)};_.kg=function(a){oQ(this);!!this.k&&this.k.kg(a);this.b=a.c};_.ng=function(a){Jl(this,a.c);!!this.k&&this.k.ng(a);VG(this,a.c)};_.og=function(a){if(this.k==this.c){!!this.k&&this.k.og(a);oQ(this)}};_.Rd=function(){oQ(this)};_.b=null;var JEc=Mmd(1499);n9c(1626,1,{},rQ);var LEc=Mmd(1626);n9c(1627,1,{},tQ);_.lh=function(a){sQ(this,a)};var KEc=Mmd(1627);n9c(2172,1,{},vQ);_.lh=function(a){uQ(this,a)};var MEc=Mmd(2172);n9c(782,1,{},CQ);_.qb=function(a){yQ(this,a)};_.b=0;var NEc=Mmd(782);n9c(506,Pyd,{},FQ);_.lb=function(a){a.vg(this)};_.mb=function(){return DQ};_.a=0;var DQ;var OEc=Mmd(506);n9c(657,1,{657:1,2378:1},HQ);_.V=function(a){return GQ(this,a)};_.X=function(){var a,b;a=this.a==null?0:this.a;b=this.b==null?0:this.b;return qvc(b)^qvc(a)};_.a=null;_.b=null;var QEc=Mmd(657);var IQ,JQ,KQ,LQ,MQ,NQ,OQ,PQ;n9c(2013,1,{},TQ);_.a=0;_.b=0;_.c=0;var RQ;var REc=Mmd(2013);n9c(415,10,{415:1,3:1,11:1,10:1},eR);_.a=0;var _Q,aR,bR;var SEc=Nmd(415,Q5c,fR);n9c(190,10,{190:1,3:1,11:1,10:1},rR);var gR,hR,iR,jR,kR,lR,mR,nR,oR;var TEc=Nmd(190,Q5c,sR);n9c(416,10,{416:1,3:1,11:1,10:1},yR);_.a=0;var tR,uR,vR;var UEc=Nmd(416,Q5c,zR);n9c(1832,1,{},CR);_.Hd=function(a){return AR(this,a)};var VEc=Mmd(1832);n9c(1833,_Ad,{},ER);_.Id=function(a){return DR(a)};var XEc=Mmd(1833);n9c(1834,1,{},FR);_.mh=function(a){nod(this.a,a.a?'<':'<\/');nod(this.a,_nd(a.b,(Aud(),xud)));nod(this.a,'>')};_.nh=function(a){nod(this.a,R9c(a))};var WEc=Mmd(1834);n9c(568,1,{568:1},KR,LR);_.b=false;var YEc=Mmd(568);n9c(2078,1,{},UR);_.a=true;_.b=true;var ZEc=Mmd(2078);n9c(173,10,{173:1,3:1,11:1,10:1},dS,eS,fS);_.a=false;_.b=false;var VR,WR,XR,YR,ZR,$R,_R,aS,bS;var $Ec=Nmd(173,Q5c,hS);n9c(786,1,{},kS);var aFc=Mmd(786);n9c(1319,221,{},lS);_.ic=function(){!!this.a.a&&this.a.a.eb()};var _Ec=Mmd(1319);n9c(1792,1,{175:1},sS);_.dg=function(a){var b,c;for(c=new qsd(dsd(qS(this).c).b.Qb());c.b.Rc();){b=c.b.Sc();if(bbc(b.xh(),a)){return true}}return false};_.gh=BNd;_.oh=BNd;_.ph=function(){return dsd(qS(this).c)};_.qh=function(a){rS(this,a)};_.rh=function(a,b){rS(this,a)};var mS,nS;var dFc=Mmd(1792);n9c(1793,1,{},vS);_.a=0;_.e=0;_.f=0;var cFc=Mmd(1793);var nFc=Omd();n9c(1794,1,DCd,wS);_.qh=function(a){yT(this.a,a,ECd,(oS(),nS).b,false)};var bFc=Mmd(1794);n9c(157,1,DCd,GS,HS);_.qh=function(a){FS(this,a)};var eFc=Mmd(157);n9c(604,1,{},LS);var fFc=Mmd(604);n9c(609,1,{},oT);_.c=false;var MS;var iFc=Mmd(609);n9c(1297,1,{},qT);_.md=function(){return this.a.j};var gFc=Mmd(1297);n9c(1296,1,{},rT);_.oe=function(a){return dv(),bv};var hFc=Mmd(1296);n9c(37,1,{},sT,tT,uT,vT,wT,xT);_.Cf=AMd;_.Df=KMd;_.Ef=VMd;_.Ff=CNd;_.Gf=BMd;_.d=false;_.e=0;var jFc=Mmd(37);n9c(238,1,{2347:1},zT,AT,BT);_.vh=function(a){return new zT(this,a)};_.wh=BMd;_.xh=KMd;_.yh=AMd;_.sd=function(){return this.c==null||!this.b||this.b.c*this.b.a==0};_.zh=function(a,b,c,d){yT(this,a,b,c,d)};_.a=false;var kFc=Mmd(238);n9c(866,1,{},CT);_.Ah=ENd;_.Bh=HNd;_.Ch=DNd;_.Dh=ENd;var lFc=Mmd(866);n9c(171,10,{171:1,3:1,11:1,10:1},OT);_.a=false;_.b=0;var DT,ET,FT,GT,HT,IT,JT,KT,LT,MT;var mFc=Nmd(171,Q5c,PT);n9c(517,1,{},QT);var oFc=Mmd(517);n9c(1384,1,{},TT);_.md=function(){return this.a.pe()};var pFc=Mmd(1384);n9c(683,1,{},YT);_.b=false;var UT;var qFc=Mmd(683);n9c(1459,1,{2336:1},dU);_.Fh=function(){return Osd(this.b,this.a.a.j).Fh()};_.Gh=function(){return bU(this)};_.Hh=function(){return cU(this)};var rFc=Mmd(1459);n9c(1117,1,{},eU);_.Ih=FPd;_.sd=FNd;var sFc=Mmd(1117);n9c(414,10,{414:1,3:1,11:1,10:1},jU);_.a=false;var fU,gU,hU;var tFc=Nmd(414,Q5c,kU);n9c(1460,1,{},pU);var uFc=Mmd(1460);n9c(528,1,{2336:1},sU);_.Fh=AMd;_.Gh=VMd;_.Hh=KMd;var vFc=Mmd(528);n9c(141,10,{141:1,3:1,11:1,10:1},IU,JU);_.c=false;var tU,uU,vU,wU,xU,yU,zU,AU,BU,CU,DU,EU,FU,GU;var wFc=Nmd(141,Q5c,KU);n9c(320,1,LCd);_.Nh=BMd;_.xh=function(){return new ibc(new qad(this.f,this.i),this.e,this.d)};_.Oh=CNd;_.Ph=LNd;_.Qh=JMd;_.Rh=function(a,b){OU(this,a,b)};_.d=0;_.e=0;_.f=0;_.i=0;var xFc=Mmd(320);var XU;n9c(205,1,{175:1,247:1,205:1},cV,dV);_.dg=function(a){return ZU(this,a)};_.gh=DMd;_.oh=vOd;_.Jh=CNd;_.sh=function(){return $U(this)};_.Kh=function(a,b){return qW(new uW(this),a,b)};_.th=function(){return this.b.d};_.Lh=CNd;_.ph=function(){return this.b.e};_.sd=xNd;_.qh=function(a){bV(this,a,$U(this))};_.rh=function(a,b){bV(this,a,b)};_.d=false;_.f=false;_.j=false;_.k=true;_.n=0;var zFc=Mmd(205);n9c(641,1,{},jV,kV);var yFc=Mmd(641);n9c(368,320,WCd);_.Mh=KNd;var DFc=Mmd(368);n9c(933,368,WCd,nV);_.Sh=function(){return new BT(this.a.c,this.b,new ibc(new qad(this.f,this.i),this.e,this.d),this.a.b)};var AFc=Mmd(933);n9c(2010,368,WCd,oV);_.Sh=function(){return new pV(this.b,new ibc(new qad(this.f,this.i),this.e,this.d),this.a)};_.a=false;var BFc=Mmd(2010);n9c(932,1,{2347:1},pV);_.vh=function(a){return new pV(this.c,gbc(this.b,a),this.a)};_.wh=MNd;_.xh=KMd;_.yh=xNd;_.sd=xNd;_.zh=function(a,b,c,d){var e;e=$wnd.Math.min(this.b.c,this.b.a);FHb(a,dbc(this.b),this.a,b,e)};_.a=false;var CFc=Mmd(932);n9c(668,1,{},LV);var EFc=Mmd(668);n9c(1790,1,{},QV);_.e=null;_.f=0;var FFc=Mmd(1790);n9c(1789,1,{},UV);var GFc=Mmd(1789);n9c(1788,1,{},XV);_.a=0;_.d=0;var HFc=Mmd(1788);n9c(1785,1,{},ZV);_.Th=GNd;_.Uh=INd;var IFc=Mmd(1785);n9c(656,1,{},bW);_.Bh=function(a){return _V(this,a)};_.Ch=function(a,b,c){this.a.Th(b.a.Kl())&&$V(this,a,b.e,_V(this,b.a.Hl()),c);aW(this,a,b.b.c,c)};var JFc=Mmd(656);n9c(1675,1,{},hW);_.Bh=HNd;_.Ch=function(a,b,c){var d;cW(a,b,c);d=!Hnd(UBd,c)&&b.j&&b.a.am()?uBd:c;fW(this,a,b,d);gW(a,b.b.c,c)};var KFc=Mmd(1675);n9c(949,1,{},oW,pW);var kW;var LFc=Mmd(949);n9c(1876,1,{},uW);var MFc=Mmd(1876);n9c(2105,1,{},yW);_.b=0;_.c=0;_.e=0;var OFc=Mmd(2105);n9c(556,1,{556:1},BW);var NFc=Mmd(556);n9c(2011,1,{},IW);var CW,DW,EW;var PFc=Mmd(2011);n9c(689,1,{},RW);_.a=false;var QFc=Mmd(689);n9c(688,1,{},_W,aX);_.c=0;_.d=0;var SFc=Mmd(688);n9c(549,10,{549:1,3:1,11:1,10:1},fX);_.a=0;var bX,cX;var RFc=Nmd(549,Q5c,gX);n9c(2062,320,LCd,hX);_.Mh=function(){return this.a.c.a};_.Rh=function(a,b){OU(this.a,a,b);OU(this.b,a,b)};var TFc=Mmd(2062);n9c(159,1,{},jX);_.a=0;_.b=false;var UFc=Mmd(159);n9c(1787,1,{},lX);_.Th=GNd;_.Uh=function(a){var b,c,d;d=(i1b(),a>0&&a<=126?h1b[a-1].f:0.77);c=this.a.ce(new pad);b=this.a.ce(new qad(d,0));return $wnd.Math.abs(b.a-c.a)/this.a.Yd()};var VFc=Mmd(1787);n9c(1786,1,{},mX);_.Th=function(a){return a==0};_.Uh=INd;var WFc=Mmd(1786);n9c(2060,1,{},oX);var YFc=Mmd(2060);n9c(2061,1,{},rX);_.a=0;var XFc=Mmd(2061);n9c(804,1,{},vX);_.gh=function(){return tX(this)};_.qh=function(a){uX(this,a)};var ZFc=Mmd(804);n9c(1554,1,{},yX);_.gh=function(){return new hbc(0,0,-1,-1)};_.qh=wMd;var wX;var $Fc=Mmd(1554);n9c(1461,1,{},BX);_.gh=function(){var a,b,c,d;a=new V9b;b=new qad(this.a.c,this.a.a);for(d=new Frd(this.b);d.a0?1:3.5)*this.c.Yd();h=(b<0?1:3.5)*this.c.Yd();j=kH(e,new qad(0,g));l=kH(e,new qad(0,-g));m=kH(f,new qad(0,-h));n=kH(f,new qad(0,h));HHb(a,this.a,vuc(quc(T1c,1),tBd,5,0,[j,l,m,n,j]));break;case 5:gZ(this,a,b,3.5);break;case 6:iZ(this,a,b);break;case 7:kY(this,a);break;case 8:lY(this,a);break;case 9:pY(this,a);break;case 10:oY(this,a);break;case 11:mY(this,a);break;case 12:gY(this,a);break;case 13:o=sac(this.e.pi(this.d),this.e.qi(this.d));q=new qad(0,0);r=new qad(o,0);s=b<0?q:r;t=lad(s,new qad(6*this.c.Yd()*b,3*this.c.Yd()));u=new qad(t.a,-t.b);v=b<0?new qad(t.a,0):q;w=b>0?new qad(t.a,0):r;HHb(a,this.a,vuc(quc(T1c,1),tBd,5,0,[s,t,u,s]));hZ(a,v,w,this.f);break;case 14:gZ(this,a,b,1);}};_.li=function(a,b,c,d,e,f){eZ(a,b,c,d,e,f)};_.mi=function(a){var b,c,d;b=new qad(sac(this.e.pi(this.d),this.e.qi(this.d))*0.5,0);for(d=this.d.$h().Qb();d.Rc();){c=d.Sc();a.tf(kH(b,c.d),c.c,this.i,nZ(this.b,c.a,c.b))}};_.ni=function(a,b,c,d){hZ(a,b,c,d)};_.oi=function(a){return a?0.15:0.05};var qGc=Mmd(1673);n9c(1674,1,{},oZ);var kZ=0,lZ=0;var pGc=Mmd(1674);n9c(1784,1,{},pZ);_.pi=function(a){return tac(a._h(),a.ai(),7.5*this.a.Yd()*0.65)};_.qi=function(a){return tac(a.ai(),a._h(),7.5*this.a.Yd()*0.65)};var rGc=Mmd(1784);n9c(1783,1,{},qZ);_.pi=function(a){return a.Yh()};_.qi=function(a){return a.Zh()};var sGc=Mmd(1783);n9c(1782,1,{},rZ);_.pi=function(a){return a._h()};_.qi=function(a){return a.ai()};var tGc=Mmd(1782);n9c(865,863,{},xZ);_.ki=function(a,b,c){var d,e,f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A;switch(this.d.w.k){case 4:case 5:case 6:case 0:nY(this,a);break;case 1:d=sac(this.e.pi(this.d),this.e.qi(this.d));e=new qad(0,0);f=new qad(d,0);g=1.5*this.c.Yd()*1.5*b;h=kH(e,new qad(0,g));j=kH(f,new qad(0,g));l=kH(e,new qad(0,-g));m=kH(f,new qad(0,-g));uZ(this,a,h,j,this.f);uZ(this,a,l,m,this.f);qY(this,a,d,g,0);break;case 2:rY(this,a);break;case 3:n=sac(this.e.pi(this.d),this.e.qi(this.d));o=new qad(0,0);q=new qad(n,0);r=1.5*this.c.Yd()*1.5*b;s=kH(o,new qad(0,r));t=kH(q,new qad(0,r));u=kH(o,new qad(0,-r));v=kH(q,new qad(0,-r));w=1.5*this.c.Yd();A=3*this.c.Yd();uZ(this,a,s,t,this.f);tZ(this,a,u,v,w,A,this.f);break;case 7:kY(this,a);break;case 8:lY(this,a);break;case 9:pY(this,a);break;case 10:oY(this,a);break;case 11:mY(this,a);break;case 12:gY(this,a);break;case 13:sZ(this,a);break;case 14:sZ(this,a);}};_.li=function(a,b,c,d,e,f){tZ(this,a,b,c,d,e,f)};_.ni=function(a,b,c,d){uZ(this,a,b,c,d)};var uGc=Mmd(865);n9c(1676,1,{},yZ);_.Dh=function(a,b,c,d){hY(this.a,a,b,c,d)};var vGc=Mmd(1676);n9c(864,1,{},AZ);_.Dh=function(a,b,c,d){hY(this.a,a,b,c,d);zZ(this,a,(O1b(),M1b)==b.n?d:c,b)};var wGc=Mmd(864);n9c(1677,867,{},NZ);_.Wh=function(){return DZ(this)};_.Xh=function(){return FZ(this)};_.Yh=function(){return GZ(this)};_.Zh=function(){return !this.d&&((O1b(),M1b)==this.n?(this.d=GX(this,this.i)):(this.d=tac(this.k.e,GX(this,this.i),FZ(this)*(this.w.a==(s6b(),r6b)||this.w.a==l6b||this.w.a==p6b?0.8:1)))),this.d};_._h=function(){return HZ(this)};_.ai=function(){return IZ(this)};_.ph=function(){return KZ(this)};var xGc=Mmd(1677);n9c(519,1,{175:1,247:1,519:1},SZ);_.dg=function(a){return QZ(this,a)};_.gh=ONd;_.oh=ONd;_.Jh=function(){return DX(this.c)};_.Kh=PNd;_.Lh=function(){return LZ(this.c)};_.ph=function(){return KZ(this.c)};_.sd=xNd;_.qh=function(a){RZ(this,a,this.a.a,this.a.b)};_.rh=function(a,b){cU(this.d).Dh(a,this.c,b,b)};var OZ;var zGc=Mmd(519);n9c(643,1,{},UZ);var yGc=Mmd(643);n9c(427,1,hDd);_.gh=function(){return cbc(this.d,$wnd.Math.max(this.b.Yd()*10,1)*0.5)};_.oh=BMd;_.Jh=function(){return dbc(this.d)};_.Kh=PNd;_.Lh=function(){return this.d.b};_.ph=JNd;_.sd=xNd;_.qh=function(a){VZ(this,a)};_.rh=function(a,b){this.si(a,this.c==null?null:b,this.a==null?null:b)};var AGc=Mmd(427);n9c(529,427,hDd,XZ);_.dg=function(a){var b,c,d;b=$wnd.Math.max(this.b.Yd()*10,1)/2;c=cbc(this.d,b);d=cbc(this.d,-b);return a.a>c.b.a&&a.b>c.b.b&&a.ad.b.a&&a.b>d.b.b&&a.a0&&x9c(m4,this.a.a)};var m4;var QHc=Mmd(2106);n9c(380,10,{380:1,3:1,11:1,10:1},v4);var r4,s4,t4;var PHc=Nmd(380,Q5c,x4);n9c(824,1,{},B4);_.Hd=function(a){return z4(this,a)};var RHc=Mmd(824);n9c(2107,1,{},C4);var SHc=Mmd(2107);n9c(1882,2318,{},F4);_.Wi=function(a,b,c){Hqd(c.n,mnd(a),b);!!b&&b.k&&ptd(c.f,b)};_.Ri=function(a,b,c){var d;if(Hnd(DDd,a)){d=u3(b)[0];Mtd(c.e,DDd)?Iqd(c,DDd,god(',',vuc(quc(M5c,1),lyd,466,0,[c.e.a.get(DDd),d]))):Otd(c.e,DDd,d);return}a==null?Atd(c.d,null,b):Otd(c.e,a,b)};_.Xi=AMd;_.Ti=function(){return D4};var D4;var THc=Mmd(1882);n9c(1684,1,{},S4);_.c=false;var XHc=Mmd(1684);n9c(1796,1,{},W4);var WHc=Mmd(1796);n9c(537,1,{537:1},X4);_.nh=function(a){Wr(this.b,a)};var UHc=Mmd(537);n9c(1797,537,{537:1},Z4);_.nh=function(a){var b;b=G3(a);if(!b){Wr(this.b,a);return}Y4(Fqd(this.a.a,YBd),b.a,b.b)};var VHc=Mmd(1797);n9c(750,_Ad,{},$4);_.Id=function(a){var b;return b=new mab(a,Q0((P0(),K0))),c8(b)+EDd};var ZHc=Mmd(750);n9c(682,1,{682:1},_4);_.a=0;var $Hc=Mmd(682);n9c(550,1,{},b5);_.Y=function(){var a,b,c;a=new yod;if(this.a.length>69){c=this.a.length/69|0;for(b=0;b0&&a.rm((kcc(),Ybc),'u')};var EIc=Mmd(2089);n9c(2080,1,{},M7);var K7;var FIc=Mmd(2080);n9c(749,_Ad,{},N7);_.md=WMd;_.Id=function(a){var b;return b=new b9(a,Q0((P0(),K0))),c8(b)+EDd};var GIc=Mmd(749);var PIc=Omd();n9c(496,1,RDd);_.Ad=function(a){return Zr(this.j,a,0)};var IIc=Mmd(496);n9c(796,496,RDd);_.bj=XNd;_.Ad=function(a){return Q7(this,a)};var HIc=Mmd(796);n9c(797,496,RDd);_.dj=function(a){Wr(this.c,a)};_.Ad=function(a){return Y7(this,a)};var T7;var KIc=Mmd(797);n9c(1368,1,{},_7);var JIc=Mmd(1368);n9c(776,1,RDd);_.hj=function(){return new Srd(vuc(quc(PIc,1),lyd,131,0,[this.gj(),this.ij()]))};_.aj=function(){return c8(this)};_.e=false;_.f=null;var LIc=Mmd(776);n9c(798,496,RDd);_.jj=function(a){f8(this,a)};var OIc=Mmd(798);n9c(1370,1,{},q8);_.lj=function(a){return new Srd(vuc(quc(tHc,1),lyd,179,0,[new b2(new Srd(vuc(quc(tWc,1),zBd,49,0,[a])),b1b(a.Ji()))]))};_.mj=function(a){var b,c;c=new Srd(vuc(quc(tWc,1),zBd,49,0,[a.c,a.d]));b=new b2(c,b1b(d1b(a.b)));return new Srd(vuc(quc(tHc,1),lyd,179,0,[b]))};_.nj=function(a){var b;if(!a.k&&!!a.n&&!a.n.sd()){b=new b2((Xrd(),Xrd(),Urd),b1b(d1b(a.n)));X1(b,a);return new Srd(vuc(quc(tHc,1),lyd,179,0,[b]))}return Xrd(),Xrd(),Urd};var MIc=Mmd(1370);n9c(1371,1370,{},s8);_.lj=function(a){return r8(new Srd(vuc(quc(tWc,1),zBd,49,0,[a])),a)};_.mj=function(a){return r8(new Srd(vuc(quc(tWc,1),zBd,49,0,[a.c,a.d])),a)};_.nj=function(a){var b,c,d,e,f;if(!!a.n&&!a.n.sd()){d=d1b(a.n).Qb();b=(Xrd(),Xrd(),Urd);e=a;if(a.k){d.Sc();b=dsd(a.r);e=a.o}f=new is;while(d.Rc()){c=new b2(b,d.Sc());X1(c,e);f.a[f.a.length]=c}return f}return Xrd(),Xrd(),Urd};var NIc=Mmd(1371);n9c(330,1,SDd);var VIc=Mmd(330);n9c(2009,330,SDd,u8);_.wg=function(){return kcc(),Pbc};_.oj=function(a){return a=='a'?'a;a':'A'};var QIc=Mmd(2009);n9c(667,1,{});_.oj=function(a){switch(a){case '*':return ' -2';case '0':return ' -1';}return w8(a)};var RIc=Mmd(667);n9c(2004,330,SDd,z8);_.wg=function(){return kcc(),Rbc};_.oj=function(a){return 'X'+a};var SIc=Mmd(2004);n9c(2005,330,SDd,A8);_.wg=function(){return kcc(),Sbc};_.oj=function(a){return 'h'+a};var TIc=Mmd(2005);n9c(1781,1,{},H8);var B8;var UIc=Mmd(1781);n9c(1779,667,{},K8);_.wg=YNd;_.Zi=ZNd;var WIc=Mmd(1779);n9c(2006,330,SDd,L8);_.wg=function(){return kcc(),Ubc};_.oj=function(a){return 'R'+a};var XIc=Mmd(2006);n9c(2007,330,SDd,M8);_.wg=function(){return kcc(),Vbc};_.oj=function(a){return 'r'+a};var YIc=Mmd(2007);n9c(1780,667,{},N8);_.wg=WNd;_.Zi=$Nd;var ZIc=Mmd(1780);n9c(2008,330,SDd,O8);_.wg=function(){return kcc(),Xbc};_.oj=function(a){return 'H'+a};var $Ic=Mmd(2008);n9c(1778,667,{},P8);_.wg=function(){return kcc(),Ybc};_.Zi=_Nd;_.oj=function(a){return ' 1'};var _Ic=Mmd(1778);n9c(1373,796,RDd,Q8);_.bj=wMd;_.cj=function(a){var b,c,d;d=new is;for(c=new qsd(dsd(a.n).b.Qb());c.b.Rc();){b=c.b.Sc();Zr(this.b,b,0)!=-1?Xr(d,dsd(b.a.r)):(d.a[d.a.length]=b,true)}return d};_.aj=function(){var a,b,c,d;c=new yod;for(b=new Frd(this.j);b.a0&&nod(d,' PARENT='+Hab((Cnd(),''+e)))}d.a+=oyd}d.a+='M V30 END SGROUP\n';return d.a};var nJc=Mmd(1372);var Iab,Jab;var Nab;n9c(184,10,{184:1,3:1,11:1,10:1},Zab);var Pab,Qab,Rab,Sab,Tab,Uab,Vab,Wab,Xab;var oJc=Nmd(184,Q5c,$ab);n9c(978,1,{},cbb);_.fc=function(){return abb(this)};_.c=0;var pJc=Mmd(978);n9c(2215,1,{},dbb);_.pj=function(a){qod(this.a,a)};_.qj=function(a){nod(this.a,a)};_.Y=UNd;var qJc=Mmd(2215);n9c(2211,1,{},ebb);_.fc=function(){return this.a>=this.b.length?-1:Dnd(this.b,this.a++)};_.a=0;var rJc=Mmd(2211);n9c(564,1,{},ibb,jbb);_.pj=function(a){fbb(this,a)};_.qj=function(a){gbb(this,a)};_.Y=KPd;var sJc=Mmd(564);n9c(567,1,{},mbb,obb);_.fc=function(){return lbb(this)};var tJc=Mmd(567);n9c(945,1,{});_.rj=UMd;var uJc=Mmd(945);n9c(2315,1,{});_.tj=function(a){return sbb(this,a)};var vJc=Mmd(2315);n9c(946,1,{});_.uj=function(a){return ubb(this,a)};var yJc=Mmd(946);n9c(2053,946,{},vbb);_.uj=function(a){var b,c,d,e,f,g,h;b=ubb(this,a);if(b){g=(d=kld(this.b,XDd),d?Dld(d.a):null);h=(e=kld(this.b,YDd),e?Dld(e.a):null);g==null||Hnd(g,'-1')||h==null?nXb(b,Wcb(this.a,(f=kld(this.b,ZDd),((f?Dld(f.a):null)!=null?new CXb(false):new CXb(true)).a?(RTb(),MTb):(RTb(),NTb)))):nXb(b,Vcb(this.a,(c=kld(this.b,ZDd),((c?Dld(c.a):null)!=null?new CXb(false):new CXb(true)).a?(RTb(),MTb):(RTb(),NTb)),Xmd(g,10),Xmd(h,10)))}return b};_.vj=function(a){var b;return b=kld(this.b,ZDd),yXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a.a,a)};_.wj=function(a){var b;return b=kld(this.b,ZDd),zXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a.a,a)};_.xj=function(a){var b,c,d;d=T(this.a.a,a.b)?a.c:a.b;b=(c=kld(this.b,ZDd),yXb((c?Dld(c.a):null)!=null?new CXb(false):new CXb(true),this.a.a,d));mXb(b,(vXb(),rXb));return b};var wJc=Mmd(2053);n9c(2056,946,{},wbb);_.vj=function(a){var b;return b=kld(this.b,ZDd),AXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a,a)};_.wj=function(a){var b;return b=kld(this.b,ZDd),BXb((b?Dld(b.a):null)!=null?new CXb(false):new CXb(true),this.a,a)};_.xj=function(a){var b,c,d,e,f;if(Zr(C2b(this.a),a.b,0)!=-1){d=a.b;e=a.c}else{d=a.c;e=a.b}f=T(this.a.c,d)?(vXb(),sXb):(vXb(),tXb);if(U(e)==sXc){b=(c=kld(this.b,ZDd),AXb((c?Dld(c.a):null)!=null?new CXb(false):new CXb(true),this.a,e));mXb(b,f);return b}return null};var xJc=Mmd(2056);n9c(264,2315,$Dd);var aKc=Mmd(264);n9c(1856,264,$Dd,zbb);_.sj=function(a){var b,c,d,e,f,g,h,j,l,m,n;if(Hnd(a.Uo(),'MPolyline')){n=Abb(a.So());if(n){d=new tfb;d.d=n;h=a.To();for(e=0;e=0&&eld(b,qEd,(Cnd(),''+(c+1)))}};var GKc=Mmd(1767);n9c(845,1,{},kgb);var IKc=Mmd(845);n9c(1545,421,{},sgb);var HKc=Mmd(1545);n9c(820,1,{},wgb);var JKc=Mmd(820);n9c(1768,886,{},xgb);_.Nj=lOd;var KKc=Mmd(1768);n9c(904,1,{},Agb);var MKc=Mmd(904);n9c(1871,1,{},Bgb);_.a=0;_.b=0;_.c=0;var NKc=Mmd(1871);n9c(2311,1,{});_.Oj=function(a){return Cgb(this,a)};var QKc=Mmd(2311);n9c(1770,2311,{},Dgb);_.Pj=function(){return 'x2'};_.Qj=function(){return 'y2'};var OKc=Mmd(1770);n9c(1769,2311,{},Egb);_.Oj=function(a){var b;b=Cgb(this,a);Iqd(b,'z3',$md(a.Ki()));return b};_.Pj=function(){return 'x3'};_.Qj=function(){return 'y3'};var PKc=Mmd(1769);n9c(1771,846,{},Kgb); -var SKc=Mmd(1771);n9c(1772,1,{},Qgb);var RKc=Mmd(1772);n9c(2290,1,{});var Rgb;var VKc=Mmd(2290);n9c(1283,2290,{},Tgb);_.Rj=wMd;_.Sj=wMd;var TKc=Mmd(1283);n9c(675,2290,{},Wgb);_.Rj=function(a){Ugb(this,a.d);Ugb(this,a.c);Ugb(this,a.a)};_.Sj=function(a){Xr(this.a,a.Me())};var UKc=Mmd(675);n9c(841,1,{},ahb);_.e=0;var bLc=Mmd(841);n9c(1542,1,{},ghb);var WKc=Mmd(1542);n9c(419,1,qFd,Jhb);_.Mj=function(a){return Bhb(this,a)};var _Kc=Mmd(419);n9c(842,1,{},Lhb);var XKc=Mmd(842);n9c(1539,1,{},Rhb);var YKc=Mmd(1539);n9c(1540,1,{},Xhb);var ZKc=Mmd(1540);n9c(1541,1,{},aib);var $Kc=Mmd(1541);n9c(2300,1,{});var bib;var kLc=Mmd(2300);n9c(1538,2300,{},dib);_.Tj=function(a,b,c,d){var e,f;f=ybc(a._l());if(f!=null){e=ugb(this.a.c,_Ed);eld(e,WDd,b+'.prop1');eld(e,azd,tEd);eld(e,KEd,c);eld(e,aFd,'xsd:string');Lkd(e,vgb(this.a.c,f));Lkd(d,e)}};var aLc=Mmd(1538);var eib;n9c(252,_Ad,{},Fib,Gib);_.Id=function(a){return Cib(this,a,(Sgb(),Rgb))};_.b=0;var cLc=Mmd(252);n9c(843,1,{},Qib);_.a=0;var dLc=Mmd(843);n9c(1548,1,qFd,Tib);_.Mj=function(a){var b,c,d;for(d=new Vqd((new Sqd(this.a)).a);d.b;){c=Uqd(d);b=c.Ok().Mj(a);if(b!=null){return c.yp()+'.'+b}}return null};var eLc=Mmd(1548);n9c(1546,421,{},Vib);var fLc=Mmd(1546);n9c(1665,421,{},Xib);var gLc=Mmd(1665);n9c(319,10,{319:1,3:1,11:1,10:1},cjb);var Yib,Zib,$ib,_ib,ajb;var hLc=Nmd(319,Q5c,djb);n9c(1544,1,qFd,ejb);_.Mj=function(a){var b;if(Zr(this.b,a,0)!=-1){b=Bhb(this.a,a);if(b!=null){return this.c+'.'+b}}return null};var iLc=Mmd(1544);n9c(1543,2300,{},fjb);_.Tj=ENd;var jLc=Mmd(1543);n9c(1773,1,{},gjb);_.Wg=function(a,b){var c,d;return c=(RTb(),MTb)==a.e?a.b*2:a.b,d=MTb==b.e?b.b*2:b.b,cd?1:0};_.V=qMd;var lLc=Mmd(1773);n9c(1666,421,{},ljb);var mLc=Mmd(1666);n9c(1774,_Ad,{},njb);_.Id=function(a){return mjb(a)};var uLc=Mmd(1774);n9c(288,10,{288:1,3:1,11:1,10:1},xjb,yjb);var qjb,rjb,sjb,tjb,ujb;var qLc=Nmd(288,Q5c,zjb);n9c(366,10,uFd);var Ajb,Bjb;var pLc=Nmd(366,Q5c,Ejb);n9c(1776,366,uFd,Fjb);_.Uj=function(a,b){return pvc((qmd(),pmd))===pvc(b)?a:'no'+a};var nLc=Nmd(1776,pLc,null);n9c(1777,366,uFd,Gjb);_.Uj=function(a,b){return a+'='+s9c(b)};var oLc=Nmd(1777,pLc,null);n9c(436,1,{},Mjb,Njb,Ojb);var rLc=Mmd(436);n9c(435,10,{435:1,3:1,11:1,10:1},Tjb);var Pjb,Qjb,Rjb;var sLc=Nmd(435,Q5c,Ujb);n9c(1775,1,{},Xjb);_.mh=function(a){a==(g9b(),b9b)?Vjb(this,oyd):a==Z8b||a==$8b?Jjb(this.a,(vjb(),qjb),(qmd(),a.a?true:false)):a==_8b||a==a9b?Jjb(this.a,(vjb(),sjb),(qmd(),a.a?true:false)):a==d9b||a==f9b?Kjb(this.a,(Sjb(),Pjb).a):a==c9b?Kjb(this.a,(Sjb(),Qjb).a):a==e9b&&Kjb(this.a,(Sjb(),Rjb).a)};_.nh=function(a){Vjb(this,a)};_.Y=function(){return s9c(this.c.b)};var tLc=Mmd(1775);n9c(760,1,{});var wLc=Mmd(760);n9c(1209,1,{},qkb);var xLc=Mmd(1209);n9c(1194,1,{},skb);o9c(_,{clientRect:{'get':function(){return new tkb(xJb(this.a.j))}}});o9c(_,{transformation:{'get':function(){return new ukb(this.a.j.e.b/(Os(),Ls),this.a.j.c)}}});_.transform=function(a,b,c){wIb(this.a,a,b,c)&&cmb(this.b)};var ALc=Mmd(1194);n9c(1195,1,{},tkb);o9c(_,{bottom:{'get':function(){return $wnd.Math.max(this.d,this.d+this.a)}}});o9c(_,{height:{'get':AMd}});o9c(_,{left:{'get':function(){return $wnd.Math.min(this.c,this.c+this.b)}}});o9c(_,{right:{'get':function(){return $wnd.Math.max(this.c,this.c+this.b)}}});o9c(_,{top:{'get':function(){return $wnd.Math.min(this.d,this.d+this.a)}}});o9c(_,{width:{'get':KMd}});o9c(_,{x:{'get':VMd}});o9c(_,{y:{'get':BMd}});_.a=0;_.b=0;_.c=0;_.d=0;var yLc=Mmd(1195);n9c(1196,1,{},ukb);o9c(_,{dx:{'get':AMd}});o9c(_,{dy:{'get':KMd}});o9c(_,{zoomRatio:{'get':VMd}});_.a=0;_.b=0;_.c=0;var zLc=Mmd(1196);n9c(1113,1,{},ykb);var DLc=Mmd(1113);n9c(134,1,{134:1},Akb);var BLc=Mmd(134);n9c(1114,1,{},Ckb);var CLc=Mmd(1114);n9c(1312,1,{},Ekb);_.b=false;var ELc=Mmd(1312);n9c(593,1,{},Hkb);var GLc=Mmd(593);n9c(253,1,{},Jkb);_.md=function(){return Ikb(this)};var FLc=Mmd(253);n9c(768,1,{},Kkb);_.Hf=function(){Oe(this.a,this.b)};_.If=function(a){this.c=a};var ILc=Mmd(768);n9c(1205,1,Vyd,Mkb);_.eb=function(){Uv(this.a.c)};var HLc=Mmd(1205);n9c(1472,1,{2372:1,2373:1,13:1},Nkb);var JLc=Mmd(1472);n9c(1078,1,{},Ykb);var MLc=Mmd(1078);n9c(1079,1,{},$kb);_.gc=GNd;var KLc=Mmd(1079);n9c(1080,1,{},_kb);_.gc=function(a){return !qtd(this.a,a)};var LLc=Mmd(1080);var t8c=Omd();n9c(271,1,{271:1,572:1},blb,clb);_.Wj=function(a){var b;return b=new xKb(this.a,a),bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[b,new Qvd,new Qvd])))};var QLc=Mmd(271);n9c(470,271,{271:1,470:1,572:1},elb,flb);var OLc=Mmd(470);n9c(1013,1,SGd,jlb);_.Xj=function klb(){return $wnd.marvin.ImageExporter};_.Yj=function(a){return a!=null&&kvc(a,470)};var glb=false;var NLc=Mmd(1013);n9c(1014,1,SGd,olb);_.Xj=function plb(){return $wnd.marvin.ImageExporter};_.Yj=function(a){return a!=null&&kvc(a,271)};var llb=false;var PLc=Mmd(1014);n9c(200,1,{200:1,572:1},Tlb,Vlb);_.Zj=function(){var a;a=this.s.b.T;kvc(a.T,71)&&vg(this.s.b.T)};_.$j=function(a,b){var c;c=a;c.name!=null&&!!hnb(c.toolbar)?Pkb(this.s,new Zob(c.name,c['image-url']||c.imageUrl,b),hnb(c.toolbar)):pxb(new qxb('addButton has been called with invalid parameter'))};_._j=function(a){wSb(this.F,(Xrd(),new ksd(a)))};_.Pb=function(){yQ(this.q.f,new oB(this.G));Pe(Te(this.p.a))};_.ak=function(){xQ(this.q.f)};_.bk=function(){return fLb((C1(),k1),(g3(),f3)).Id(Vw(this.q))};_.ck=function(){var a;a=fLb((C1(),m1),(g3(),f3));return a.Id(Vw(this.q))};_.dk=function(a,b){var c,d;C1();if(H1(a)){d=us(b);c=d?d.extra||null:null;return ylb(this,H1(a),d,c)}else return l2(),n2(a)?xlb(this,n2(a),b):(bf(),cf($wnd.Promise.reject(df('Unknown format'))))};_.ek=function(){return kPb(this.f.o)};_.fk=function(){return TOb(sOb(rOb(new tOb(this.G.C),dsd(this.G.A.r))),vOb(uOb(dsd(this.G.A.s))))};_.gk=function(){return Blb(Plb(_j(this.D,(kA(),hA))?I1():(C1(),Q0((P0(),N0))?j1:i1)),Plb(Jlb(_j(this.D,hA)?F1():(C1(),Q0((P0(),N0))?j1:i1))))};_.hk=function(a){Ilb(this,(C1(),k1),a,false)};_.ik=function(a){Ilb(this,(C1(),m1),a,false)};_.jk=function(a,b){return bf(),bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[new umb(this,new bLb(this.d,H1(a),b,false)),new gf,new jf])))};_.sd=function(){return Cdb(Vw(this.q))};_.kk=function(a,b){if(a==null){return}b?Fr(this.v,a,b):Hr(this.v,a)};_.lk=function(a,b){a!=null&&!!b&&Br(this.v,a,b)};_.mk=function(a){!!a&&Br(this.v,'molchange',a)};_.nk=function(a){Ilb(this,(C1(),k1),a,true)};_.ok=function(a){Ilb(this,(C1(),m1),a,true)};_.pk=function(a,b){return bf(),bf(),cf(new $wnd.Promise(q9c(kf.prototype.rb,kf,[new umb(this,new bLb(this.d,H1(a),b,true)),new gf,new jf])))};_.qk=function(a){Pu(this.G,a);a&&yQ(this.G.p.f,new eE(this.G.C,true))};_.rk=function(a){var b,c,d,e;d=jPb(a,vuc(quc(E$c,1),lyd,0,2,[kPb(this.f.o)]));nIb(this.f,d);e=YOb(d);c=(DOb(),HOb(TGd in d?LOb(d[TGd]):(null,COb),new qPb));Klb(this,e,c);Nlb(this,WGd in d?LOb(d[WGd]):(null,COb));Llb(this,XGd in d?LOb(d[XGd]):(null,COb));Qlb(this,YGd in d?LOb((qmd(),d[YGd]?true:false)):(null,COb));wlb(this,ZGd in d?LOb((qmd(),d[ZGd]?true:false)):(null,COb));tlb(this,bHd in d?LOb(d[bHd]):(null,COb));b=UGd in d?LOb((qmd(),d[UGd]?true:false)):(null,COb);b.a&&FOb(b)&&Tt(this.q.c,(cu(),_t),EOb(b));this.G.w.Hf()};_.sk=function(a){var b,c,d;c=us(a);d=new F$b;b=new a0(this.G.C,new $u,new Ev);__(b,c,d);Ry(this.G.A);Ou(this.G,d.a);Pe(Te(this.p.a))};_.tk=function(a){$jb(this.C,a)};_.t=0;var qlb;var xMc=Mmd(200);n9c(1041,1,Xyd,Xlb);_.tb=mOd;var RLc=Mmd(1041);n9c(1040,1,Vyd,Ylb);_.eb=function(){Rlb(this.a);JNb(this.a.u,new Zlb(this))};var WLc=Mmd(1040);n9c(722,1,{2329:1},Zlb);_.jb=function(a){Rlb(this.a.a)};var SLc=Mmd(722);n9c(1056,1,{},$lb);_.nb=function(a){mf(lf(this.a,new _lb(a)),new amb(a))};var VLc=Mmd(1056);n9c(1057,1,Xyd,_lb);_.tb=function(a){this.a.pb(a.b)};var TLc=Mmd(1057);n9c(1058,1,Xyd,amb);_.tb=HOd;var ULc=Mmd(1058);n9c(729,1,Xyd,bmb);_.tb=mOd;var XLc=Mmd(729);n9c(1042,1,Vyd,dmb);_.eb=function(){cmb(this)};var YLc=Mmd(1042);n9c(1052,1,{},fmb);var ZLc=Mmd(1052);n9c(1053,1,Wyd,gmb);_.sb=nOd;var $Lc=Mmd(1053);n9c(1044,1,Xyd,hmb);_.tb=wMd;var _Lc=Mmd(1044);n9c(1054,1,Wyd,imb);_.sb=function(a){return a.a};var aMc=Mmd(1054);n9c(1047,1,eBd,jmb);_.Ud=function(a){Oe(this.a.p,this.b)};var bMc=Mmd(1047);n9c(1055,1,Wyd,kmb);_.sb=nOd;var cMc=Mmd(1055);n9c(1048,1,{194:1},lmb);_.Zd=function(){Oe(this.a.p,this.b)};var dMc=Mmd(1048);n9c(1049,1,{2360:1},mmb);var eMc=Mmd(1049);n9c(1050,1,{2361:1},nmb);var fMc=Mmd(1050);n9c(1051,1,{989:1},omb);_.vg=function(a){a.a==2&&zlb(this.a,sGd);a.a==1&&zlb(this.a,rGd)};var gMc=Mmd(1051);n9c(2263,1,{});_.ob=function(a){this.uk(pmb(a.ab()))};_.pb=wMd;var tTc=Mmd(2263);n9c(728,2263,{},rmb);_.uk=function(a){qmb(a)};var hMc=Mmd(728);n9c(1038,1037,{},smb);var iMc=Mmd(1038);n9c(471,1,Vyd,tmb);_.eb=function(){zlb(this.b,this.a)};var jMc=Mmd(471);n9c(586,1,{},umb);_.nb=function(a){this.a.nb(new vmb(this.b,a))};var kMc=Mmd(586);n9c(1039,1,{},vmb);_.ob=function(a){Pe(Te(this.b.p.a));this.a.ob(a)};_.pb=function(a){Pe(Te(this.b.p.a));this.a.pb(a)};var lMc=Mmd(1039);var mMc=Omd();n9c(1036,1,{},xmb);_.ob=function(a){var b;wmb((b=this,a,b))};_.pb=function(a){Slb(this.b,this.a,ytc(a.a,new Htc)?dHd:null)};_.a=0;var nMc=Mmd(1036);n9c(1035,1,eBd,ymb);_.Ud=function(a){Dkb(this.a,a.a.sd())};var oMc=Mmd(1035);n9c(1043,1,{},zmb);_.md=function(){return this.a.o};var pMc=Mmd(1043);n9c(1045,1,{},Amb);_.vk=function(a){return new Bmb(this.a,a)};var qMc=Mmd(1045);n9c(1046,1,Xyd,Bmb);_.tb=function(a){Ilb(this.a,this.b,a,true)};var rMc=Mmd(1046);n9c(741,1,{},Dmb);var sMc=Mmd(741);n9c(394,200,{200:1,394:1,572:1},Fmb,Gmb,Hmb);_.wk=function(){return Alb(this)};_.xk=function(){return us(this.j.a)};_.yk=function(){return Clb(this)};_.zk=function(a){Vkb(this.s,a)};_.Ak=function(a){Olb(this,a)};_.Bk=function(a){Xkb(this.s,a)};var uMc=Mmd(394);n9c(1016,1,SGd,Lmb);_.Xj=function Nmb(){return $wnd.marvin.Sketch};_.Yj=function(a){return a!=null&&kvc(a,394)};var Imb=false;var tMc=Mmd(1016);n9c(721,1,SGd,Rmb);_.Xj=function Tmb(){return $wnd.marvin.Sketch};_.Yj=function(a){return a!=null&&kvc(a,200)};var Omb=false;var vMc=Mmd(721);n9c(395,1,{2359:1,395:1,12:1,572:1,712:1},Zmb,$mb);_.V=function(a){return Vmb(this,a)};_.eb=function(){Ymb(this.a)};_.Xj=function _mb(){return $wnd.marvin.Sketch.Function};_.Yj=function(a){return a!=null&&kvc(a,395)};var Umb=false;var wMc=Mmd(395);n9c(251,10,{251:1,3:1,11:1,10:1},fnb,gnb);_.b=false;var anb,bnb,cnb,dnb;var yMc=Nmd(251,Q5c,inb);n9c(1390,1,{},knb);var AMc=Mmd(1390);n9c(1391,1,Vyd,lnb);_.eb=function(){qmb(this.a)};var zMc=Mmd(1391);n9c(1308,1,Vyd,nnb);_.eb=function(){mnb(this)};var BMc=Mmd(1308);n9c(1204,1,{},onb);var CMc=Mmd(1204);n9c(1210,760,{},snb);_.Vj=function(a,b){var c,d;if(!Cqd(this.a,a)){return}c=Eqd(this.a,a);d=(b.a&&b.b!=null?b.b:'').length==0;Hqb(c,d?null:Eqd(this.b,a))};var DMc=Mmd(1210);n9c(1304,1,{461:1,1000:1,13:1,2371:1},tnb);_.ed=oOd;_.jd=oOd;var FMc=Mmd(1304);n9c(1305,221,{},unb);_.ic=function(){mnb(this.a)};var EMc=Mmd(1305);n9c(789,1,{},Gnb);_.md=function(){return Anb(this)};var KMc=Mmd(789);n9c(1324,1,{},Inb);_.ob=function(a){this.a.a.uk(a.ab())};_.pb=function(a){Hnb(this,a)};var GMc=Mmd(1324);n9c(1325,1,{},Knb);_.ob=LOd;_.pb=function(a){Jnb(this,a)};var HMc=Mmd(1325);n9c(1326,1,{},Mnb);var IMc=Mmd(1326);n9c(1323,1,{},Nnb);_.Hd=function(a){var b;return b=QOb(s9c(a)),_db(this.a.c,b.b)};var JMc=Mmd(1323);n9c(1385,1,{},Pnb);var MMc=Mmd(1385);n9c(1386,1,{},Xnb);var LMc=Mmd(1386);n9c(1104,1,{},_nb);var NMc=Mmd(1104);n9c(1503,66,iHd,aob);_.db=function(){var a;a=hx(Lu(this.a.i));if(dsd(a.r).b.vd()+dsd(a.s).b.vd()+dsd(a.A).b.vd()+dsd(a.t).b.vd()+dsd(a.q).b.vd()+dsd(a.w).b.vd()+dsd(a.C).b.vd()+dsd(a.B).b.vd()+dsd(a.u).b.vd()==1&&!dsd(a.r).a.sd()){yQ(this.a.f,new sA(dsd(a.r).a.zd(0),this.a.i));return true}return false};_.De=function(a){ud(this,Byd,(qmd(),hy(hx(Lu(this.a.i)))?true:false))};var OMc=Mmd(1503);n9c(1648,66,jHd,cob);_.db=function(){if(this.c){yQ(this.b.f,new uA(this.c,this.b.i,this.b.i.A));this.b.i.w.Hf();this.c=null;return true}return false};_.De=function(a){bob(this)};_.Zd=function(){bob(this)};var PMc=Mmd(1648);n9c(135,66,kHd,gob,hob);_.db=function(){return dob(this)};_.ag=function(){ud(this,Fyd,(qmd(),T(this.d,this.c.a)?true:false))};var WNc=Mmd(135);n9c(280,135,kHd);_.db=function(){return iob(this)};var QNc=Mmd(280);n9c(621,280,{60:1,214:1,621:1,12:1,13:1,19:1},mob);_.db=function(){var a,b,c,d;if(hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null){b=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;lO(this,new PA(this.c.i,this.a,new Srd(vuc(quc(tWc,1),zBd,49,0,[b]))));wic((pic(),oic),new pob(this,b));this.c.i.w.Hf();this.c.a.Rd();this.c.i.w.Hf();return true}else{a=this.c.a;if(kvc(a,649)&&!!a.p&&!!Ku(this.c.i,a.p)){c=this.c.a;d=Ku(this.c.i,c.p);lO(this,new PA(this.c.i,this.a,new Srd(vuc(quc(tWc,1),zBd,49,0,[d]))));this.c.i.w.Hf();this.c.i.w.Hf();return true}}return iob(this)};_.fb=function(a){return lob(this,a)};_.Ck=function(){return !(kvc(this.a,93)&&dsd(this.c.i.A.r).b.vd()>1)&&!dsd(this.c.i.A.r).a.sd()};_.Dk=function(){lO(this,new PA(this.c.i,this.a,dsd(this.c.i.A.r)));this.c.i.w.Hf()};var RMc=Mmd(621);n9c(1410,1,Izd,pob);_.eb=pOd;var QMc=Mmd(1410);n9c(677,280,kHd,rob,sob);_.db=function(){var a,b,c,d,e,f,g,h;b=iy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.s).a.zd(0):null;if(!!b&&!Ex(this.c.i.A,b)){e=iy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.s).a.zd(0):null;lO(this,gB(this.c.i,this.a,(Xrd(),new ksd(e))));wic((pic(),oic),new tob(this,e));this.c.i.w.Hf();this.c.a.Rd();return true}else{d=my(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.A).a.zd(0):null;if(!!d&&!Ex(this.c.i.A,d)){f=my(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.A).a.zd(0):null;lO(this,dB(this.c.i,this.a,f));dx(Mu(this.c.i),jw(this.c.i,(!f.d&&P3b(f),kH(f.a.Lh(),f.d))));this.c.a.Rd();return true}else{c=ky(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.u).a.zd(0):null;if(!!c&&!Ex(this.c.i.A,c)){g=ky(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.u).a.zd(0):null;lO(this,jB(this.c.i,this.a,g));dx(Mu(this.c.i),jw(this.c.i,Aac((h=mUb(g.a),h.a),g.b.Lh())));this.c.a.Rd();return true}else{a=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;if(!!a&&!Ex(this.c.i.A,a)&&((s6b(),m6b)==this.a||h6b==this.a||q6b==this.a||f6b==this.a||l6b==this.a||r6b==this.a||p6b==this.a)){qob(this);this.c.a.Rd();return true}}}}return iob(this)};_.Ck=function(){var a;a=new Cy(this.c.i.A);return !dsd(a.s).a.sd()||!dsd(a.A).a.sd()||!dsd(a.u).a.sd()||dsd(a.r).b.vd()+dsd(a.s).b.vd()+dsd(a.A).b.vd()+dsd(a.t).b.vd()+dsd(a.q).b.vd()+dsd(a.w).b.vd()+dsd(a.C).b.vd()+dsd(a.B).b.vd()+dsd(a.u).b.vd()==1&&!dsd(a.r).a.sd()};_.Dk=function(){var a,b,c,d,e,f,g,h;b=new wB;d=false;h=new Cy(this.c.i.A);if(!dsd(h.s).a.sd()){uB(b,gB(this.c.i,this.a,dsd(h.s)));d=true}if(!dsd(h.A).a.sd()){uB(b,eB(this.c.i,this.a,dsd(h.A)));d=true}if(!dsd(h.u).a.sd()){uB(b,kB(this.c.i,this.a,dsd(h.u)));d=true}if(d){c=vB(b,this.c.i);yQ(this.c.f,c)}if(dsd(h.r).b.vd()+dsd(h.s).b.vd()+dsd(h.A).b.vd()+dsd(h.t).b.vd()+dsd(h.q).b.vd()+dsd(h.w).b.vd()+dsd(h.C).b.vd()+dsd(h.B).b.vd()+dsd(h.u).b.vd()==1&&!dsd(h.r).a.sd()){a=dsd(h.r).a.zd(0);g=xH(H9b(a.Lh(),false,K9b(a),LBd),a,this.c.i);f=new S2b(this.a,a,g);e=new By;lsd(dsd(this.c.i.C.n),g)||mx(e,g);nx(e,f);lO(this,new PC(this.c.i,e))}};var TMc=Mmd(677);n9c(1835,1,Izd,tob);_.eb=function(){dx(Mu(this.a.c.i),jw(this.a.c.i,D2b(this.b)))};var SMc=Mmd(1835);n9c(830,66,{60:1,245:1,830:1,12:1,13:1,19:1},wob);_.db=function(){var a;if(!(!!this.b.a.a&&!!vob(this,this.b.a.a.a))){return false}a=this.b.a.a.a;return qmd(),iO(vob(this,a),a)?true:false};_.De=function(a){ud(this,Byd,(qmd(),!!this.b.a.a&&!!vob(this,this.b.a.a.a)?true:false))};var UMc=Mmd(830);n9c(1488,66,nHd,xob);_.db=function(){var a,b;b=MWb();a=new pB(this.a.i,b);this.a.i.n&&(a=new AB(this.a.i,vuc(quc(PEc,1),ABd,38,0,[a,new eE(b,true)])));yQ(this.a.f,a);ud(this,Fyd,(qmd(),omd));this.a.i.w.Hf();return true};_.Ud=function(a){ud(this,Byd,(qmd(),!!this.a.i.C&&!Cdb(this.a.i.C)?true:false))};var VMc=Mmd(1488);n9c(1508,66,Hyd,yob);_.db=function(){!Sx(this.a.i.A)&&Ry(this.a.i.A);Yw(this.a,this.a.d);return true};var WMc=Mmd(1508);n9c(423,66,Hyd,zob,Aob,Bob);_.db=function(){this.a.eb();ud(this,Fyd,(qmd(),omd));return true};var XMc=Mmd(423);n9c(1493,1,pHd,Mob);_.md=function(){return Cob(this)};_.ne=function(){var a,b,c;b=Dob(this);c=Vw(this.a);a=b?new VA(c,!Eob(this,b),b):new eE(c,!c.e);yQ(this.a.f,a);return true};_.Ek=function(){if(O0b(Vw(this.a))){return Iob(this)||Fob(this,Lu(this.a.i).b)}return true};var YMc=Mmd(1493);n9c(1645,66,jHd,Oob);_.db=function(){if(this.c.a.vd()!=0){yQ(this.b.f,new BB(this.c,this.b.i));this.b.i.w.Hf();return true}return false};_.De=function(a){Nob(this)};_.Zd=function(){Nob(this)};var ZMc=Mmd(1645);n9c(1501,1,pHd,Sob);_.ne=function(){var a;a=Rob(this);!!a&&yQ(this.a.f,KB(dsd(a.r),this.a.i.C));return true};_.Ek=function(){var a,b;b=this.a.i;if(!Sx(b.A)){a=b.C;if(dsd(a.n).b.vd()>0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))){return !!Rob(this)}}return false};var $Mc=Mmd(1501);n9c(635,1,{},Yob);_.a=false;var _Mc=Mmd(635);n9c(1081,66,Hyd,Zob);_.db=function(){if(this.a){Ymb(this.a.a);return true}return false};var aNc=Mmd(1081);n9c(1478,66,Hyd,$ob);_.db=function(){nEb(new pEb(this.a.a));ud(this,Fyd,(qmd(),false));return false};var bNc=Mmd(1478);n9c(1486,280,kHd,_ob);_.db=function(){var a;if(hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null){a=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;lO(this,new dE(this.c.i,-1,new Srd(vuc(quc(tWc,1),zBd,49,0,[a]))));wic((pic(),oic),new bpb(this,a));this.c.i.w.Hf();this.c.a.Rd();this.c.i.w.Hf();return true}return iob(this)};_.Ck=qOd;_.Dk=function(){lO(this,new dE(this.c.i,-1,dsd(this.c.i.A.r)));!this.e&&(this.e=new Cqc);vqc(this.e,new ae,this)};var dNc=Mmd(1486);n9c(1487,1,Izd,bpb);_.eb=pOd;var cNc=Mmd(1487);n9c(633,280,kHd,cpb);_.Ck=qOd;_.Dk=function(){this.a.Ag(new Cy(this.c.i.A))};var eNc=Mmd(633);n9c(1489,66,Hyd,epb);_.db=function(){if(Sx(this.b.i.A)){if((!this.a||!this.a.b.c.c.M)&&!Sx(hx(Lu(this.b.i)))){dpb(this,hx(Lu(this.b.i)));return true}}else{dpb(this,this.b.i.A);Ry(this.b.i.A);return true}return false};var fNc=Mmd(1489);n9c(1481,66,iHd,fpb);_.db=function(){var a;if(Sx(this.b)){return false}a=QVb(this.a.i.C,this.b);Gy(a,new qad(0.77,-0.77));yQ(this.a.f,RC(this.a.i,a));Ry(this.a.i.A);Ou(this.a.i,a);return true};_.De=function(a){Dx(this.b);qx(this.b,gpb(this.a.i));ud(this,Byd,(qmd(),Sx(this.b)?false:true))};var gNc=Mmd(1481);n9c(1482,280,kHd,hpb);_.Ck=function(){return !Sx(this.c.i.A)};_.Dk=function(){lO(this,new DD(this.c.i,this.c.i.A));!this.e&&(this.e=new Cqc);vqc(this.e,new ae,this)};var hNc=Mmd(1482);var kpb,lpb,mpb;n9c(1748,1747,fAd,opb);var iNc=Mmd(1748);n9c(1490,66,Hyd,qpb);_.db=function(){Jv(this.a);ud(this,Fyd,(qmd(),false));return true};var jNc=Mmd(1490);n9c(1491,66,rHd,rpb);_.db=function(){ud(this,Fyd,(qmd(),false));if(!Sx(this.a.A)){Kv(this.a,this.a.A);return true}return false};_.Zd=function(){ud(this,Byd,(qmd(),Sx(this.a.A)?false:true))};var kNc=Mmd(1491);n9c(839,1,pHd);var lNc=Mmd(839);n9c(610,1,{},upb);var mNc=Mmd(610);n9c(1484,280,kHd,vpb);_.db=function(){var a;if(hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null){a=hy(Lu(this.c.i).b)?dsd(Lu(this.c.i).b.r).a.zd(0):null;lO(this,new dE(this.c.i,1,new Srd(vuc(quc(tWc,1),zBd,49,0,[a]))));wic((pic(),oic),new xpb(this,a));this.c.i.w.Hf();this.c.a.Rd();this.c.i.w.Hf();return true}return iob(this)};_.Ck=qOd;_.Dk=function(){lO(this,new dE(this.c.i,1,dsd(this.c.i.A.r)));!this.e&&(this.e=new Cqc);vqc(this.e,new ae,this)};var oNc=Mmd(1484);n9c(1485,1,Izd,xpb);_.eb=pOd;var nNc=Mmd(1485);n9c(1506,135,{60:1,214:1,12:1,143:1,13:1,19:1},ypb);_.Ud=function(a){ud(this,Byd,(qmd(),St(this.c.c,(cu(),_t)).Pd()?false:true))};var pNc=Mmd(1506);n9c(426,66,rHd,zpb,Apb);_.db=function(){if(this.c){yQ(this.a.f,this.b.Fk(this.a.i.A,this.c));return true}return false};_.Zd=function(){this.c=$z(this.a.i.A);Bd(this,!!this.c)};var uNc=Mmd(426);n9c(1639,1,{},Jpb);_.Fk=function(a,b){return Dpb(this.a,a,b)};var qNc=Mmd(1639);n9c(1640,1,{},Kpb);_.Fk=function(a,b){return Epb(this.a,a,b)};var rNc=Mmd(1640);n9c(1641,1,{},Lpb);_.Fk=function(a,b){return Fpb(this.a,a,b)};var sNc=Mmd(1641);n9c(1642,1,{},Mpb);_.Fk=function(a,b){return Gpb(this.a,a,b)};var tNc=Mmd(1642);n9c(832,280,kHd,Tpb);_.Ck=function(){var a;a=this.c.i.A;return (dsd(a.r).b.vd()>1||!dsd(a.u).a.sd())&&(dsd(a.r).b.vd()<2||aVb(this.c.i.C,dsd(a.r)))&&Opb(this,a)};_.Dk=function(){Rpb(this)};var wNc=Mmd(832);n9c(509,1,Izd,Upb);_.eb=function(){yQ(this.a.c.f,this.b);Ry(this.a.c.i.A)};var vNc=Mmd(509);n9c(1637,832,kHd,Xpb);_.Ck=function(){var a;a=this.c.i.A;return (dsd(a.s).b.vd()+dsd(a.A).b.vd()+dsd(a.u).b.vd()>0&&dsd(a.r).a.sd()||dsd(a.r).b.vd()>1)&&Opb(this,a)};_.Dk=function(){var a,b,c,d,e;e=this.c.i.A;c=jL(dsd(e.r));if(c){a=new kud(dsd(e.r));a.a.qp(c)!=null;d=new By;rx(d,new W0b(a,c,Vpb));b=new PC(this.c.i,d);xic((pic(),oic),new Upb(this,b))}else dsd(e.s).b.vd()+dsd(e.A).b.vd()+dsd(e.u).b.vd()>0&&dsd(e.r).a.sd()?xic((pic(),oic),new Ypb(this,e)):Rpb(this)};var Vpb;var yNc=Mmd(1637);n9c(1638,1,Izd,Ypb);_.eb=function(){var a;a=vB(uB(uB(uB(new wB,gB(this.a.c.i,(Wpb(),Vpb),dsd(this.b.s))),eB(this.a.c.i,Vpb,dsd(this.b.A))),kB(this.a.c.i,Vpb,dsd(this.b.u))),this.a.c.i);yQ(this.a.c.f,a);Ry(this.a.c.i.A)};var xNc=Mmd(1638);n9c(308,66,sHd,Zpb);_.db=function(){return !!this.b&&this.b.ne()};_.Gk=function(){ud(this,Byd,(qmd(),!!this.b&&this.b.Ek()?true:false))};var zNc=Mmd(308);n9c(1492,308,sHd,_pb);_.Gk=function(){ud(this,Byd,(qmd(),!!this.b&&this.b.Ek()?true:false));ud(this,Fyd,!!this.a&&Cob(this.a)?true:false)};var ANc=Mmd(1492);n9c(499,1,{},bqb);var DNc=Mmd(499);n9c(1327,1,{245:1,13:1},cqb);_.De=function(a){aqb(this.a)};var BNc=Mmd(1327);n9c(1328,1,{194:1},dqb);_.Zd=function(){aqb(this.a)};var CNc=Mmd(1328);n9c(510,280,kHd,eqb);_.Ck=function(){this.a.a=suc(_5c,lyd,1,0,5,1);aP(this.b)||Xr(this.a,Uac(Yac(new Cy(this.c.i.A))));return this.a.a.length!=0};_.Dk=function(){var a,b,c;if(this.a.a.length!=0){a=new By;for(c=new Frd(this.a);c.adsd(e.r).b.vd()){c=new Wgb;a=new utd(dsd(d.n));Qqd(a,dsd(e.r));f=Cib(this.d,d,c);b=Yqb(new Zqb(Vgb(c,cWb(d))),a);return Rqb(this,f,b)}mf(lf(this.b.Qi(d),new Tqb(this)),new Vqb(this,d));return true};_.c=false;var fOc=Mmd(812);n9c(1430,1,Xyd,Tqb);_.tb=function(a){Qqb(this.a,a.b)};var cOc=Mmd(1430);n9c(1431,1,Xyd,Vqb);_.tb=function(a){var b;Uqb((b=this,a,b))};var dOc=Mmd(1431);n9c(1432,1,Xyd,Wqb);_.tb=function(a){yQ(this.a.a.f,new sD(this.a.a.i,a,this.a.a.i.A))};var eOc=Mmd(1432);n9c(903,1,{},Zqb);var hOc=Mmd(903);n9c(1823,1,{},_qb);_.Wg=function(a,b){return $qb(a,b)};_.V=qMd;var gOc=Mmd(1823);n9c(676,1,Xyd,arb);_.tb=function(a){yQ(this.a.f,new pB(this.a.i,a))};var iOc=Mmd(676);n9c(1437,1,pHd,frb);_.ne=function(){var a,b,c,d,e;c=Vw(this.a);b=dsd(c.n);if(!b.a.sd()&&!Nr(cWb(c),b)){e=this.a.i;if(Sx(e.A)){if(dsd(c.p).b.vd()>1){return crb(this,null,drb(dsd(c.p)))}}else{a=new $s((qmd(),false));d=erb(this,e.A,a);if(!dsd(d.s).a.sd()){return crb(this,d,a.a)}}}return false};var kOc=Mmd(1437);n9c(1438,1,Xyd,grb);_.tb=function(a){yQ(this.a.a.f,new xA(this.a.a.i,a,this.b))};var jOc=Mmd(1438);n9c(622,1,pHd);var lOc=Mmd(622);n9c(1436,622,pHd,irb);_.ne=function(){var a,b;a=Vw(this.b);if(dsd(a.n).b.vd()>0&&dsd(a.k).b.vd()==1&&Q0b(dsd(a.k).a.zd(0))){b=xnb(this.c,sLb(this.a,a));if(b){bt(b,new arb(this.b));return true}}return false};var mOc=Mmd(1436);n9c(1435,622,pHd,lrb);_.ne=function(){var a,b,c,d,e,f,g,h;e=Vw(this.b);a=dsd(e.n);if(!a.a.sd()&&!Nr(cWb(e),a)){b=null;if(Sx(this.b.i.A)){h=sLb(this.a,e);d=jrb(dsd(Vw(this.b).n))}else{g=krb(this);if(g.a.length==0){return false}c=new Wgb;h=tLb(this.a,e,c);b=Yqb(new Zqb(Vgb(c,cWb(e))),g);d=jrb(g)}f=Bnb(this.c,h,d,b);if(f){bt(f,new arb(this.b));return true}}return false};var nOc=Mmd(1435);n9c(1433,622,pHd,prb);_.ne=function(){var a,b,c;if(!mrb(this)){a=new Wgb;b=Vw(this.b);c=Fnb(this.c,tLb(this.a,b,a));if(c){bt(c,new qrb(this,new trb(Vgb(a,cWb(b)))));return true}return false}orb(this);!!this.b.i&&$v(this.b.i);return true};var pOc=Mmd(1433);n9c(1434,1,Xyd,qrb);_.tb=function(a){rrb(this.b,a);nrb(this.a)};var oOc=Mmd(1434);n9c(671,1,Xyd,trb,urb);_.tb=function(a){rrb(this,a)};var qOc=Mmd(671);var vrb,wrb,xrb;var Brb,Crb,Drb,Erb,Frb,Grb,Hrb,Irb,Jrb,Krb,Lrb,Mrb,Nrb,Orb,Prb,Qrb,Rrb,Srb,Trb,Urb,Vrb,Wrb,Xrb,Yrb,Zrb,$rb,_rb,asb,bsb,csb,dsb,esb,fsb,gsb,hsb,isb,jsb,ksb,lsb,msb,nsb,osb,psb,qsb,rsb,ssb,tsb,usb,vsb,wsb,xsb,ysb,zsb,Asb,Bsb,Csb,Dsb,Esb,Fsb,Gsb,Hsb,Isb,Jsb,Ksb,Lsb,Msb,Nsb,Osb,Psb,Qsb,Rsb;n9c(1142,1,{},jub);var rOc=Mmd(1142);n9c(1322,1,{},mub);var sOc=Mmd(1322);var nub;n9c(1017,1,{},tub);var tOc=Mmd(1017);n9c(650,1,Vyd);_.eb=function(){var a;a=this.Hk(this.a);a||this.b.a.md().Zb()};var uOc=Mmd(650);n9c(1635,650,Vyd,vub);_.Hk=function(a){return bwb(a,$zd)};var vOc=Mmd(1635);n9c(1634,650,Vyd,wub);_.Hk=function(a){return bwb(a,Zzd)};var wOc=Mmd(1634);n9c(1636,650,Vyd,xub);_.Hk=function(a){return bwb(a,Yzd)};var xOc=Mmd(1636);n9c(648,1,Vyd,yub);_.eb=function(){this.a.a.md().Zb()};var yOc=Mmd(648);n9c(1329,1,{},Nub);var DOc=Mmd(1329);n9c(1330,1,AHd,Oub);_.Ik=function(){Mub(this.a)};_.Jk=function(a){Mub(this.a)};var zOc=Mmd(1330); -n9c(1331,1,{},Rub);var AOc=Mmd(1331);n9c(1333,1,Xyd,Sub);_.tb=function(a){X5b(a.jh(),true);Iub(this.a,this.b,a.Me().zd(0))};var BOc=Mmd(1333);n9c(1332,1,Xyd,Vub);_.tb=function(a){Qm(this.a.e,false)};var COc=Mmd(1332);n9c(1313,1,{},evb);var EOc=Mmd(1313);n9c(1302,1,{},kvb);var IOc=Mmd(1302);n9c(1303,1,Rzd,mvb);_.nc=function(a){tlc(a.a);!!a.a&&slc(a.a);lvb(this,a.a)};var FOc=Mmd(1303);n9c(125,10,{125:1,3:1,11:1,10:1},Evb);var nvb,ovb,pvb,qvb,rvb,svb,tvb,uvb,vvb,wvb,xvb,yvb,zvb,Avb,Bvb,Cvb;var GOc=Nmd(125,Q5c,Fvb);n9c(781,1,{781:1},Ivb);var HOc=Mmd(781);n9c(1347,1,{},Mvb);var JOc=Mmd(1347);n9c(792,1,{},Tvb);var KOc=Mmd(792);n9c(1348,1,{},Xvb);var MOc=Mmd(1348);n9c(1349,1,Xyd,Yvb);_.tb=function(a){Rvb(this.a.a,a)};var LOc=Mmd(1349);n9c(1211,1,{2368:1,2369:1,2333:1,13:1},_vb);_.Kk=function(a){$vb(this,a)};var NOc=Mmd(1211);n9c(1321,1,{},cwb);var OOc=Mmd(1321);n9c(692,1,{},ewb);var POc=Mmd(692);n9c(1427,1,{},kwb);var ROc=Mmd(1427);n9c(1428,2263,{},lwb);_.uk=sOd;var QOc=Mmd(1428);n9c(1568,1,BHd,nwb);_.Zb=function(){var a;a=uwb(this.b);LNb(this.a,new owb(this));Lg(a)};var TOc=Mmd(1568);n9c(1569,1,{},owb);_.ob=function(a){var b;ywb((b=this,a,b).a.b,new wt(new HNb,new At((Ewb(),Dwb),cHd)))};_.pb=function(a){mwb(this.a,a)};var SOc=Mmd(1569);n9c(1716,1,{},Awb);var pwb,qwb,rwb,swb;var UOc=Mmd(1716);n9c(546,10,{546:1,3:1,11:1,10:1},Fwb);var Cwb,Dwb;var VOc=Nmd(546,Q5c,Gwb);n9c(2022,1,qAd,Lwb);_.Cb=AMd;var WOc=Mmd(2022);n9c(897,1,BHd,Pwb);_.Zb=function(){Owb(this)};var ZOc=Mmd(897);n9c(1818,1,Jyd,Qwb);_.hb=function(a){yp(this.b,fxb(this.a));ixb(this.a,null)};var XOc=Mmd(1818);n9c(1819,1,Jyd,Rwb);_.hb=function(a){Nwb(this.a,Cp(this.b))};var YOc=Mmd(1819);n9c(1609,1,{},Zwb);_.md=function(){return Twb(this)};_.ob=wMd;_.pb=function(a){Wwb(this,a)};_.a=false;var $Oc=Mmd(1609);n9c(2033,2032,qAd,$wb);var aPc=Mmd(2033);n9c(2034,_Ad,{},cxb);_.Id=function(a){return bxb(a)};var _wb;var _Oc=Mmd(2034);n9c(2031,1,qAd,kxb);_.Cb=LNd;var bPc=Mmd(2031);n9c(1976,wBd,xBd,lxb);_.Tf=function(){this.b=this.c.Ji();this.c.Ni(this.a);$v(this.d)};_.Uf=function(){this.c.Ni(this.b);$v(this.d)};var cPc=Mmd(1976);n9c(1739,1,BHd,nxb);_.Zb=DOd;var dPc=Mmd(1739);n9c(400,1,BHd,qxb);_.Zb=function(){pxb(this)};var fPc=Mmd(400);n9c(1105,1,pAd,sxb);_.ed=function(a){a.a&&FEb(this.a)};var ePc=Mmd(1105);n9c(1429,1,{},txb);_.uk=sOd;var gPc=Mmd(1429);n9c(1807,1,{2388:1},uxb);var hPc=Mmd(1807);n9c(1570,1,{124:1,72:1},zxb);_.tb=function(a){vxb(this,a)};_.vk=function(a){return new Exb(this,a)};_.Zb=function(){Lxb(this.d,this,new Cxb(this))};var lPc=Mmd(1570);n9c(1571,1,Xyd,Cxb);_.tb=function(a){wxb(this.a,a)};var iPc=Mmd(1571);n9c(1572,1,Vyd,Dxb);_.eb=function(){gg(Jxb(this.a.d),true)};var jPc=Mmd(1572);n9c(1573,1,Xyd,Exb);_.tb=function(a){yxb(this.a,this.b,a)};var kPc=Mmd(1573);n9c(1574,1,{},Mxb);var pPc=Mmd(1574);n9c(851,1,Jyd,Nxb);_.hb=function(a){!!this.a.j&&vxb(this.a.j,new Pxb(this.a,this.b))};_.b=false;var mPc=Mmd(851);n9c(1575,1,RHd,Oxb);_.Lk=function(a){!!this.a.i&&Bxb(this.a.i,this.a.e)};var nPc=Mmd(1575);n9c(1576,1,{2386:1},Pxb);_.b=false;var oPc=Mmd(1576);var Qxb=0;n9c(547,10,{547:1,3:1,11:1,10:1},Wxb);_.a=0;_.b=0;var Txb,Uxb;var qPc=Nmd(547,Q5c,Xxb);n9c(896,66,{60:1,2342:1,12:1,19:1},Zxb);_.kb=function(a){!this.a&&(this.a=new Nvd);dvd(this.a.a);ud(this,Fyd,(qmd(),false))};_.db=function(){ud(this,Fyd,Yxb(this,Fyd));!this.a&&(this.a=new Nvd);dvd(this.a.a);return true};_.fb=function(a){return Yxb(this,a)};_.b=false;var rPc=Mmd(896);n9c(1968,66,{60:1,2342:1,270:1,12:1,19:1},byb);_.kb=function(a){zd(a.f)&&zd(this.a)?ud(this.a,Fyd,(qmd(),omd)):pvc((qmd(),pmd))===pvc($xb(this,Fyd))&&ud(this,Fyd,omd)};_.db=function(){var a;if(zd(this.b)){a=cyb(this.b);return ayb(this,a)}else if(zd(this.c)){a=cyb(this.c);return ayb(this,a)}rd(this.a);return true};_.fb=function(a){return $xb(this,a)};_.ib=function(a){ud(this,a.a,a.b)};_.gb=function(a,b){_xb(this,a,b)};var sPc=Mmd(1968);n9c(852,1,{270:1,124:1},myb);_.ib=function(a){if(Hnd(Fyd,a.a)&&pvc((qmd(),pmd))===pvc(a.b)){if(this.a.M){ryb(this.a,false)}else{ud(this.e,Fyd,(qmd(),omd));ud(this.d,Fyd,omd)}}};_.Zb=function(){lyb(this);Lg(this.a);xm(this.a)};var wPc=Mmd(852);n9c(1584,103,mzd,syb);_.Wb=function(a){ryb(this,a)};_.fd=function(){ud(this.a.d,Fyd,(qmd(),false));ud(this.a.e,Fyd,false);gg(this.a.c,false);ryb(this,false)};var tPc=Mmd(1584);n9c(1585,1,Jyd,tyb);_.hb=function(a){kyb(this.a)};var uPc=Mmd(1585);n9c(1586,1,Kyd,uyb);_.ib=function(a){if(Hnd(Fyd,a.a)){if(pvc((qmd(),pmd))===pvc(a.b)){gg(this.b,true);Lg(this.a.a)}else pmd==Yxb(this.c,Fyd)||gg(this.b,false)}};var vPc=Mmd(1586);n9c(211,1,ZHd);_.Pk=function(){return this.Qk()&&(!this.f||!Cqd(this.f,this.Nk())||!T(this.Ok(),Eqd(this.f,this.Nk())))};_.Rk=function(a){vyb(this,a)};_.j=true;var xPc=Mmd(211);n9c(2137,211,ZHd,xyb);_.Nk=function(){return kcc(),dcc};_.Ok=function(){var a;return a=Rf(this.a).selectedIndex,a==0?(qmd(),true):a==1?(qmd(),false):null};_.Mk=function(){var a;this.a=new Xgd;Lgd(this.a,UHd);Lgd(this.a,VHd);Lgd(this.a,'');hg(this.a,$Hd);if(this.b){Ugd(this.a,0)}else if(this.f){a=Eqd(this.f,(kcc(),dcc));Ugd(this.a,a==null?2:a?0:1)}return new Srd(vuc(quc(D3c,1),_Hd,21,0,[this.a]))};_.Qk=function(){var a;return a=Qgd(this.a),(a==0?(qmd(),true):a==1?(qmd(),false):null)!=null};_.b=false;var yPc=Mmd(2137);n9c(1590,1,BHd,Fyb);_.Zb=function(){Dyb(this)};_.k=null;var CPc=Mmd(1590);n9c(1591,1,Jyd,Hyb);_.hb=function(a){Eyb(this.a)};var zPc=Mmd(1591);n9c(854,1,Izd,Iyb);_.eb=function(){var a,b,c,d;if(!this.a.f.M){Dyb(this.a);return}c=Pf(this.a.f);d=Qf(this.a.f);b=(Tf(this.a.f)-this.c)/2|0;a=(Sf(this.a.f)-this.b)/2|0;Zg(this.a.f,c-b,d-a)};_.b=0;_.c=0;var APc=Mmd(854);n9c(1592,1,RHd,Jyb);_.Lk=function(a){var b,c,d;d=Tf(this.a.f);b=Sf(this.a.f);c=Rf(this.a.a).selectedIndex;Cyb(this.a,this.b[c]);Byb(this.a,d,b)};var BPc=Mmd(1592);n9c(924,1,{924:1},Uyb);_.Ok=function(){return Pyb(this),this.j};_.Qk=function(){return Syb(this)};var DPc=Mmd(924);n9c(2127,211,ZHd,Zyb);_.Nk=function(){return kcc(),jcc};_.Ok=function(){return Xyb(this)};_.Mk=function(){var a,b,c,d,e;d=new es;e=new $yb;this.a=new Did(Wyb(this),new kjd,e);hg(this.a,this.b==(Kbc(),Cbc)?nId:oId);Wr(d,this.a);a=new ped;if(this.b==Cbc){BEb(this.a.a,new _yb(this,a));og(this.a.a,new azb(this,a),(qoc(),qoc(),poc));og(this.a.a,new bzb(this,a),(_oc(),_oc(),$oc));og(this.a.a,new czb(this,a),(ipc(),ipc(),hpc));og(this.a.a,new dzb(this,a),(Qpc(),Qpc(),Ppc));d.a[d.a.length]=a}if(this.f){b=Eqd(this.f,(kcc(),jcc));if(b!=null){c=Vyb(b);if(this.b==Jbc&&c>0||this.b==Cbc&&c>0&&c<119||this.b==Gbc&&(i1b(),c>0&&c<=126&&h1b[c-1].a==0)){Bid(this.a,b);this.b==Cbc&&Cic((pic(),new ezb(this,a)),200)}}}return d};_.Qk=function(){var a,b;b=Xyb(this);if(b==null||b.length==0){return false}if(this.b==(Kbc(),Jbc)&&Vyb(b)<1){return false}if(this.b==Cbc){a=Vyb(b);if(a<1||a>118){return false}}else if(this.b==Gbc){a=Vyb(b);i1b();if(!(a>0&&a<=126&&h1b[a-1].a==0)){return false}}return true};var LPc=Mmd(2127);n9c(2128,678,{},$yb);_.hd=wOd;var EPc=Mmd(2128);n9c(2129,1,eBd,_yb);_.Ud=tOd;var FPc=Mmd(2129);n9c(2130,1,RHd,azb);_.Lk=tOd;var GPc=Mmd(2130);n9c(2131,1,Hzd,bzb);_.cc=tOd;var HPc=Mmd(2131);n9c(2132,1,GAd,czb);_.oc=tOd;var IPc=Mmd(2132);n9c(2133,1,HAd,dzb);_.mc=tOd;var JPc=Mmd(2133);n9c(960,1,{},ezb);_.Gc=function(){var a;a=Vyb(Xyb(this.a));a>0&&a<119?jjc(Rf(this.b),pId+a+'<\/b>'):(Rf(this.b).innerHTML='',undefined);return false};var KPc=Mmd(960);n9c(982,1,{},fzb);_.Wg=function(a,b){var c,d,e;return c=new Srd(a$b()),d=Tr(c,a),e=Tr(c,b),d==e?0:d=0&&b.a<255||IEb(this.a.b,mnd(0))};var aQc=Mmd(2144);n9c(334,10,{334:1,3:1,11:1,10:1},iAb);var dAb,eAb,fAb,gAb;var bQc=Nmd(334,Q5c,kAb);n9c(1587,1,BHd,pAb);_.Zb=function(){!!this.c&&Lg(this.c)};var fQc=Mmd(1587);n9c(1588,1,Jyd,qAb);_.hb=function(a){nAb(this.a,this.b)};var dQc=Mmd(1588);n9c(1589,1,RHd,rAb);_.Lk=function(a){nDb(this.b,Rf(this.c).selectedIndex);oAb(this.a)};var eQc=Mmd(1589);n9c(1969,1,{2394:1,465:1,21:1},IAb);_.Cb=function(){return DAb(this)};_.Sk=function(){return GAb(this)};_.d=false;var nQc=Mmd(1969);n9c(1972,1,eBd,KAb);_.Ud=function(a){if(a.a){rl(this.a,false)}else{rl(this.a,true);Rf(this.a).focus()}};var gQc=Mmd(1972);n9c(1970,1,{},OAb);_.Tk=function(a,b){return LAb(a,b)};_.Vk=function(a){return MAb(a)};_.Wk=function(a){return NAb(a)};_.Uk=function(a){var b;if(!a.c){b=a.c?null:a.f;if(!!b&&NAb(b.b)){return mnd(b.a)}}return null};var hQc=Mmd(1970);n9c(685,1,BId,RAb);_.Cb=VMd;_.Sk=function(){var b,c;c=new eCb(pl(this.a));if(c.a){try{b=EEb(this.a);PAb(this,b)&&(c.c=b,c.b=false)}catch(a){a=H8c(a);if(kvc(a,46)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}}try{mCb(this.b,c)}catch(a){a=H8c(a);if(kvc(a,268)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}return true};var jQc=Mmd(685);n9c(1971,1,DId,SAb);_.Xk=yOd;var iQc=Mmd(1971);n9c(289,10,{289:1,3:1,11:1,10:1},XAb);var TAb,UAb,VAb;var kQc=Nmd(289,Q5c,YAb);n9c(548,1,BId,ZAb);_.Cb=vOd;_.Sk=function(){try{mCb(this.a,this.b)}catch(a){a=H8c(a);if(kvc(a,268)){return false}else throw I8c(a)}return true};var lQc=Mmd(548);n9c(686,1,{},aBb);_.Tk=function(a,b){return $Ab(a,b)};_.Vk=function(a){return _Ab(a)};_.Wk=function(a){return (WAb(),UAb)==a};_.Uk=function(a){var b;if(!a.c){b=a.c?null:a.f;if(x9c(new RegExp(sCd),b)){return mnd(Xmd(b,10))}}return null};var mQc=Mmd(686);n9c(1734,1,Wyd,nBb);_.sb=function(a){return cBb(this,a)};var oQc=Mmd(1734);n9c(2323,1,{});_.Yk=UMd;_.Zk=xNd;var PQc=Mmd(2323);n9c(2070,2323,{},uBb);_.$k=function(a){return tBb(this,a)};var pQc=Mmd(2070);n9c(2116,1,BId,BBb);_.Cb=BMd;_.Sk=function(){var b,c;if(yBb(this)){b=xBb(this);try{c=new eCb(true);c.c=b;c.b=false;mCb(this.a,c);return true}catch(a){a=H8c(a);if(!kvc(a,268))throw I8c(a)}}zBb(this,true);return false};_.b=null;var xQc=Mmd(2116);n9c(2117,678,{},CBb);_.hd=wOd;var qQc=Mmd(2117);n9c(2118,1,eBd,DBb);_.Ud=xOd;var rQc=Mmd(2118);n9c(2119,1,RHd,EBb);_.Lk=xOd;var sQc=Mmd(2119);n9c(2120,1,Hzd,FBb);_.cc=xOd;var tQc=Mmd(2120);n9c(2121,1,GAd,GBb);_.oc=xOd;var uQc=Mmd(2121);n9c(2122,1,HAd,HBb);_.mc=xOd;var vQc=Mmd(2122);n9c(959,1,{},IBb);_.Gc=function(){var a;a=Vyb(xBb(this.a));a>0&&a<119?jjc(Rf(this.b),pId+a+'<\/b>'):(Rf(this.b).innerHTML='',undefined);return false};var wQc=Mmd(959);n9c(2123,1,BId,LBb);_.Cb=VMd;_.Sk=function(){var b,c;c=new eCb(true);try{b=EEb(this.b);if(KBb(this,b)){return true}c.c=b;c.b=false;mCb(this.a,c)}catch(a){a=H8c(a);if(kvc(a,45)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}return true};var zQc=Mmd(2123);n9c(2124,1,RHd,MBb);_.Lk=yOd;var yQc=Mmd(2124);n9c(2219,1,{},QBb);_.Hd=function(a){return OBb(a)};_.Id=function(a){return PBb(a)};var AQc=Mmd(2219);n9c(974,_Ad,{},SBb);_.Hd=function(a){return RBb(a)};_.Id=zOd;var BQc=Mmd(974);n9c(1733,1,{},_Bb);var CQc=Mmd(1733);n9c(458,1,{},eCb);_.md=VMd;_.Pd=AMd;_._k=KMd;_.a=false;_.b=true;_.c=null;var DQc=Mmd(458);n9c(2125,1,{465:1},kCb);_.Sk=function(){var b,c;b=!!this.a&&pl(this.a)?$_b(Ngd(this.a,Rf(this.a).selectedIndex)):null;c=new eCb(pl(this.c));!!b&&(c.c=b,c.b=false);try{mCb(this.b,c)}catch(a){a=H8c(a);if(kvc(a,268)){Tic(Rf(this.c),CId);return false}else throw I8c(a)}return true};var FQc=Mmd(2125);n9c(2126,1,RHd,lCb);_.Lk=function(a){gCb(this.a)};var EQc=Mmd(2126);n9c(192,1,{192:1},tCb,uCb);_.md=function(){return nCb(this)};_.Pd=KMd;_._k=VMd;_.b=true;_.c=true;var GQc=Mmd(192);n9c(456,1,{},zCb);_.md=function(){return wCb(this)};_.Pd=function(){return pl(this.b)};_._k=function(){return xCb(this)};var HQc=Mmd(456);n9c(566,1,BId,BCb);_.Cb=BMd;_.Sk=function(){var b,c;c=new eCb(true);try{if(!xCb(this.e)){b=null;pl(this.c)&&(b=EEb(this.c));dCb(c,this.b.Tk(wCb(this.e),b))}mCb(this.a,c)}catch(a){a=H8c(a);if(kvc(a,45)){zBb(this,true);return false}else throw I8c(a)}return true};var KQc=Mmd(566);n9c(2182,1,RHd,CCb);_.Lk=function(a){var b;zBb(this.a,false);b=!xCb(this.c)&&this.b.Wk(wCb(this.c));rl(this.a.c,b)};var IQc=Mmd(2182);n9c(2183,1,DId,DCb);_.Xk=function(a){zBb(this.a,false)};var JQc=Mmd(2183);n9c(376,2323,{},ECb);_.$k=function(a){if(a==null){throw I8c(new JCb)}return a};var LQc=Mmd(376);n9c(2071,2323,{},FCb);_.Zk=FNd;_.$k=zOd;var MQc=Mmd(2071);n9c(953,2323,{},HCb);_.Yk=AMd;_.$k=function(a){return GCb(this,a)};_.Zk=FNd;_.b=0;_.c=0;var NQc=Mmd(953);n9c(268,45,{268:1,3:1,45:1,42:1},ICb,JCb);var OQc=Mmd(268);n9c(2303,1,{});var QQc=Mmd(2303);n9c(1593,1,BHd,OCb);_.Zb=function(){!!this.b&&Lg(this.b.a)};var XQc=Mmd(1593);n9c(1598,1,{},QCb);var RQc=Mmd(1598);n9c(1599,1,Vyd,RCb);_.eb=function(){NCb(this.a)};var SQc=Mmd(1599);var SCb,TCb,UCb,VCb;n9c(1594,2303,{},XCb);_.Yf=AOd;_.$f=function(a,b){O2b(a,b)};_.al=function(a){return a?'On':'Off'};_.bl=function(){return vuc(quc(L5c,1),lyd,583,8,[(qmd(),omd),pmd])};var TQc=Mmd(1594);n9c(1595,2303,{},YCb);_.Yf=function(a){return a.e};_.$f=function(a,b){N2b(a,b)};_.al=function(a){var b;return b=a.a,b!=null?Snd(a.j!=null?a.j:''+a.k,'_',' ').toLowerCase()+' - '+b:Snd(a.j!=null?a.j:''+a.k,'_',' ').toLowerCase()};_.bl=function(){return Xcc(),vuc(quc(ZYc,1),nyd,206,0,[Wcc,Rcc,Ucc,Scc,Tcc,Vcc])};var UQc=Mmd(1595);n9c(1596,2303,{},ZCb);_.Yf=function(a){return a.j};_.$f=function(a,b){K2b(a,b)};_.al=COd;_.bl=function(){return Ccc(),vuc(quc(XYc,1),nyd,236,0,[zcc,Bcc,Acc])};var VQc=Mmd(1596);n9c(1597,2303,{},$Cb);_.Yf=BOd;_.$f=function(a,b){a.o!=b&&(a.i=false);yTb(a,b)};_.al=COd;_.bl=function(){return x6b()};var WQc=Mmd(1597);n9c(1600,1,{},bDb);var _Qc=Mmd(1600);n9c(1602,1,Jyd,cDb);_.hb=function(a){!!this.a&&NCb(this.a.a)};var YQc=Mmd(1602);n9c(1603,1,BHd,dDb);_.Zb=DOd;var ZQc=Mmd(1603);n9c(1601,1,RHd,hDb);_.Lk=function(a){!!this.b&&qDb(this.b,Rf(this.a).selectedIndex)};var $Qc=Mmd(1601);n9c(433,1,{},pDb);_.a=-1;_.d=-1;_.e=-1;var bRc=Mmd(433);n9c(1735,1,{},rDb);var aRc=Mmd(1735);n9c(1607,1,BHd,tDb);_.Zb=DOd;var dRc=Mmd(1607);n9c(1608,1,Jyd,uDb);_.hb=function(a){sDb(this.a);rm(this.a.a,false)};var cRc=Mmd(1608);n9c(1610,1,BHd,xDb);_.Zb=function(){Lg(this.b)};var jRc=Mmd(1610);n9c(1611,1,pAd,yDb);_.ed=function(a){a.a&&wic((pic(),oic),new zDb(this))};var fRc=Mmd(1611);n9c(1612,1,Izd,zDb);_.eb=function(){Tfd(this.a.a.d)};var eRc=Mmd(1612);n9c(1613,1,DId,ADb);_.Xk=function(a){var b,c,d,e;for(e=new Vqd((new Sqd(this.a.a)).a);e.b;){c=Uqd(e);b=c.yp().f;if(!!b&&(jlc(a.a)&hyd)==b.a){c.Ok().eb();rm(this.a.b,false);!!a.a&&slc(a.a);tlc(a.a);return}}for(d=new Vqd((new Sqd(this.a.a)).a);d.b;){c=Uqd(d);b=c.yp().f;if(!!b&&(jlc(a.a)&hyd)==Bmd(b.a)){c.Ok().eb();rm(this.a.b,false);!!a.a&&slc(a.a);tlc(a.a);return}}};var gRc=Mmd(1613);n9c(1614,1,Vyd,CDb);_.eb=function(){BDb(this)};var hRc=Mmd(1614);n9c(1615,1,Jyd,DDb);_.hb=function(a){BDb(this.a)};var iRc=Mmd(1615);n9c(104,10,{104:1,3:1,11:1,10:1},ZDb,$Db);var EDb,FDb,GDb,HDb,IDb,JDb,KDb,LDb,MDb,NDb,ODb,PDb,QDb,RDb,SDb,TDb,UDb,VDb,WDb,XDb;var kRc=Nmd(104,Q5c,_Db);n9c(1616,1,BHd,eEb);_.Zb=DOd;var nRc=Mmd(1616);n9c(1617,1,Jyd,fEb);_.hb=function(a){dEb(this.a,this.b)};var lRc=Mmd(1617);n9c(234,1,{234:1},gEb);var mRc=Mmd(234);n9c(829,1,{},jEb);_.md=function(){return new KL(null,null)};_.ob=wMd;_.pb=function(a){iEb(this,a)};var oRc=Mmd(829);n9c(424,1,BHd,pEb);_.Zb=function(){nEb(this)};_.f=false;var sRc=Mmd(424);n9c(1604,1,Hzd,qEb);_.cc=function(a){if(nlc(a.a)==13){oEb(this.a);sEb(this.a.c);!!a.a&&slc(a.a);tlc(a.a)}};var pRc=Mmd(1604);n9c(1605,1,Jyd,rEb);_.hb=function(a){oEb(this.a);sEb(this.a.c)};var qRc=Mmd(1605);n9c(1606,103,mzd,tEb);_.Vb=function(){sEb(this)};_.fd=function(){kEb(this.a);kEb(this.a);rm(this,false)};var rRc=Mmd(1606);n9c(1977,1,qAd,AEb);_.Cb=CNd;var BRc=Mmd(1977);n9c(793,485,nAd);_.Ok=function(){return DEb(this)};_.Ib=function(a){var b;b=(abd(),zcd((ujc(),a).type));(b&896)!=0?tg(this,a):tg(this,a)};_.Kb=tMd;_.c=false;var L4c=Mmd(793);n9c(674,793,nAd,LEb);var M4c=Mmd(674);n9c(1979,674,nAd,NEb);var tRc=Mmd(1979);n9c(925,1,{925:1},PEb);_.a=0;var vRc=Mmd(925);n9c(1980,1,{},SEb);var uRc=Mmd(1980);n9c(1978,1,{},UEb);var wRc=Mmd(1978);n9c(2075,1,{},WEb);var zRc=Mmd(2075);n9c(2076,1,Jyd,XEb);_.hb=function(a){yEb(this.a.n)};var xRc=Mmd(2076);n9c(2077,1,Jyd,YEb);_.hb=function(a){zEb(this.a.n)};var yRc=Mmd(2077);var ZEb;n9c(2232,1,fAd,_Eb);_.Ic=EOd;_.a=false;var ARc=Mmd(2232);n9c(1619,1,BHd,cFb);_.Zb=function(){var a;Lg((a=new Bm,oed(a.d,'R-logic'),Cg(a,(new AEb(dsd(Vw(this.a).v),new eFb(this,a))).e),a))};var DRc=Mmd(1619);n9c(1620,1,{},eFb);_.ob=wMd;_.pb=function(a){dFb(this,a)};var CRc=Mmd(1620);n9c(2042,1,{},iFb);_.Hd=function(a){return gFb(a)};var ERc=Mmd(2042);n9c(2199,_Ad,{},kFb);_.Id=function(a){return a==null?'':s9c(a)};var jFb;var FRc=Mmd(2199);n9c(2225,1,qAd,lFb);_.Cb=AMd;var HRc=Mmd(2225);n9c(2226,1,Izd,nFb);_.eb=function(){mFb(Rf(this.a.a))};var GRc=Mmd(2226);n9c(895,1,qAd,qFb);_.Cb=VMd;var JRc=Mmd(895);n9c(1808,1,Jyd,rFb);_.hb=function(a){!!this.a.b&&!!this.b&&fGb(this.b,this.a.b,this.a.a)};var IRc=Mmd(1808);n9c(522,1,UId);_.Cb=AMd;_.Fb=function(a){oqc(this.b,a)};var eSc=Mmd(522);n9c(1964,522,UId,wFb);_.cl=function(a){return a.b};var KRc=Mmd(1964);n9c(1814,1,Jyd,xFb);_.hb=function(a){var b,c;c=EFb(this.a);b='marvinjs-output.'+uFb(this.c.d).c[0];this.b?this.b.dl(c,b):MFb(this.c,c)};var LRc=Mmd(1814);n9c(1577,1,BHd,AFb);_.Zb=function(){Lg(this.a);xm(this.a);$Fb(this.b)};var yFb;var PRc=Mmd(1577);n9c(1579,1,{},DFb);_.dl=function(a,b){CFb(a,b)};var MRc=Mmd(1579);n9c(1580,1,{},FFb);_.md=function(){return EFb(this)};_.c=false;var NRc=Mmd(1580);n9c(1578,522,UId,GFb);_.cl=function(a){return a.zi()};var ORc=Mmd(1578);n9c(1725,1,qAd,NFb);_.Cb=LNd;var HFb=200,IFb=200,JFb=32;var URc=Mmd(1725);n9c(1727,1,eBd,PFb);_.Ud=function(a){var b;b=a.a;b.a?VFb(this.a.a,true):VFb(this.a.a,false)};var QRc=Mmd(1727);n9c(1728,522,UId,QFb);_.cl=function(a){return (a.j!=null?a.j:''+a.k).toLowerCase()};var RRc=Mmd(1728);n9c(1729,1,Vyd,RFb);_.eb=function(){gg(this.a.c,true)};var SRc=Mmd(1729);n9c(1726,522,UId,WFb);_.cl=function(a){return Yr(TFb,Tr(SFb,a))};var SFb,TFb;var TRc=Mmd(1726);n9c(1723,1,qAd,_Fb);_.Cb=LNd;var WRc=Mmd(1723);n9c(1724,1,{},dGb);var VRc=Mmd(1724);n9c(1809,1,{},gGb);_.dl=function(a,b){fGb(this,a,b)};var _Rc=Mmd(1809);n9c(1810,1,eBd,hGb);_.Ud=function(a){var b,c,d;b=a.a;bGb(this.d,!b.Di());c=dLb(this.b,b,(g3(),f3));d=new mGb(this,b);c?mf(lf(c.Qi(this.c),new iGb(d)),new jGb(d)):lGb(d,new Uc('Renderer has not been found for this format: '+b.Ic()))};var $Rc=Mmd(1810);n9c(1812,1,Xyd,iGb);_.tb=function(a){kGb(this.a,a)};var XRc=Mmd(1812);n9c(1813,1,Xyd,jGb);_.tb=function(a){lGb(this.a,a)};var YRc=Mmd(1813);n9c(1811,1,{},mGb);var ZRc=Mmd(1811);n9c(2023,1,qAd,nGb);_.Cb=AMd;var cSc=Mmd(2023);n9c(2024,1,Jyd,oGb);_.hb=function(a){var b;b=new pGb(this,this.b);wic((pic(),oic),b)};var bSc=Mmd(2024);n9c(2025,1,Izd,pGb);_.eb=function(){vg(this.a.a.a);gg(this.b.a.c,true)};var aSc=Mmd(2025);n9c(1581,1,RHd,qGb);_.Lk=function(a){Zt(this.a,uFb(this.a))};var dSc=Mmd(1581);n9c(922,1,{},uGb);_.dl=function(a,b){wic((pic(),oic),new zGb(this.a.sb(a),b))};var iSc=Mmd(922);n9c(1966,1,Wyd,wGb);_.sb=zOd;var fSc=Mmd(1966);n9c(1967,1,Wyd,yGb);_.sb=function(a){var b;return this.a?xGb(rGb(a,_Id,true)):(b=new Blob([a],{type:'plain/text'}),URL.createObjectURL(b))};_.a=false;var gSc=Mmd(1967);n9c(1965,1,Izd,zGb);_.eb=function(){var a;a=new nFb(this.a);wic((pic(),oic),a)};var hSc=Mmd(1965);n9c(1815,1,{},CGb);_.dl=function(a,b){tGb()&&!!this.a&&GGb(sGb(a),b)};var jSc=Mmd(1815);n9c(1816,1,{},DGb);_.dl=function(a,b){GGb(rGb(a,_Id,this.b),b)};_.b=false;var kSc=Mmd(1816);n9c(921,1,{},HGb);_.dl=function(a,b){GGb(a,b)};var EGb;var lSc=Mmd(921);n9c(1628,1,BHd,NGb);_.Zb=function(){Lg(MGb(this))};var nSc=Mmd(1628);n9c(1629,1,Jyd,OGb);_.hb=function(a){var b,c;c=LGb(Sgd(this.d,Rf(this.d).selectedIndex));b=LGb(Sgd(this.b,Rf(this.b).selectedIndex));if(b==null&&c==null){gg(this.c,true)}else if(!Hnd(DBd,b)||!Hnd(DBd,c)){gg(this.c,false);yQ(this.a.b.f,new cE(this.a.b.i,c,b));rm(MGb(this.a),false)}else{rm(MGb(this.a),false)}};var mSc=Mmd(1629);n9c(856,1,{},RGb);var sSc=Mmd(856);n9c(1630,1,{},UGb);var rSc=Mmd(1630);n9c(1631,1,Jyd,VGb);_.hb=function(a){TGb(this.a)};var oSc=Mmd(1631);n9c(1632,1,Hzd,WGb);_.cc=function(a){nlc(a.a)==13&&TGb(this.a)};var pSc=Mmd(1632);n9c(1633,1,Izd,XGb);_.eb=function(){sl(this.a.e)};var qSc=Mmd(1633);n9c(2151,1,{},$Gb);var zSc=Mmd(2151);n9c(2152,1,{},eHb);var ySc=Mmd(2152);n9c(2153,1,Jyd,fHb);_.hb=function(a){dHb(this.a)};var tSc=Mmd(2153);n9c(2154,1,pAd,gHb);_.ed=function(a){a.a&&wic((pic(),oic),new hHb(this))};var vSc=Mmd(2154);n9c(2155,1,Izd,hHb);_.eb=function(){sl(this.a.a.e)};var uSc=Mmd(2155);n9c(2156,1,Hzd,iHb);_.cc=function(a){nlc(a.a)==13&&dHb(this.a)};var wSc=Mmd(2156);n9c(2157,1,Izd,jHb);_.eb=function(){gg(this.a.c,false);rm(this.a.b,false)};var xSc=Mmd(2157);n9c(1621,1,{},lHb);var ESc=Mmd(1621);n9c(1622,1,Jyd,mHb);_.hb=function(a){var b;b=this.a.d.a.Jo();bod(this.a.d.a.ld()).length==0&&(b='');nHb(this.a.b);sQ(this.a.a,b)};var ASc=Mmd(1622);n9c(1623,103,mzd,oHb);_.Vb=function(){nHb(this)};_.Wb=function(a){rm(this,a);eq(this.a)};var BSc=Mmd(1623);n9c(1624,1,pAd,pHb);_.ed=function(a){a.a&&wic((pic(),oic),new qHb(this))};var DSc=Mmd(1624);n9c(1625,1,Izd,qHb);_.eb=function(){iid(this.a.a.d)};var CSc=Mmd(1625);n9c(1582,1,BHd,sHb);_.Zb=function(){Lg(this.b);AHb(this.d)};var GSc=Mmd(1582);n9c(1583,1,Jyd,tHb);_.hb=function(a){rHb(this.a)};var FSc=Mmd(1583);n9c(878,1,{},BHb);var KSc=Mmd(878);n9c(1730,1,RHd,CHb);_.Lk=function(a){vHb(this.a)};var HSc=Mmd(1730);n9c(1731,1,Jyd,DHb);_.hb=function(a){wHb(this.a)};var ISc=Mmd(1731);n9c(1732,1,RHd,EHb);_.Lk=function(a){uHb(this.a)};var JSc=Mmd(1732);n9c(2284,1,{});_.vf=function(a,b,c,d){var e,f,g,h,j,l,m,n;if((iU(),fU)==d.c){n=c*this.Yd();if(rac(a.a,a.b,0,b.a,b.b,0)>n){h=tac(a,b,n/2);j=tac(b,a,n/2)}else{h=a;j=b}l=!d.b?new vT(false,c,true,d.a):new uT(false,c,true,d.b);HHb(this,l,vuc(quc(T1c,1),tBd,5,0,[h,j]))}else{d.b?LHb(this,d):(f=this.el(),fU==d.c?Ogc(f,d.a):Vgc(f,d.a));e=this.el();e.save();Ugc(e,d.e*(d.d?this.Yd():1));g=rac(a.a,a.b,0,b.a,b.b,0);Ygc(e,a.a,a.b);Mgc(e,$wnd.Math.atan2(b.b-a.b,b.a-a.a));e.beginPath();m=c*this.Yd();e.arc(0,0,m,QBd,$Cd,false);e.moveTo(0,-m);e.lineTo(g,-m);e.arc(g,0,m,$Cd,QBd,false);e.moveTo(0,m);e.lineTo(g,m);e.stroke();e.restore()}};_.wf=function(a,b,c,d){GHb(this,a,b,c,d)};_.zf=function(a,b){HHb(this,a,b)};var LSc=Mmd(2284);n9c(2274,1,{});_.Jf=function(a,b,c){return GIb(this.hl(),a,b,c,this.Yd())};var MSc=Mmd(2274);n9c(1309,1,{},NHb);_.uc=function(a,b){MHb(this,a,b)};_.b=false;var NSc=Mmd(1309);n9c(745,2274,qAd,BIb);_.Cb=FOd;_.el=function(){return _Hb(this)};_.Af=VMd;_.pe=BMd;_.Kf=LNd;_.Pf=function(){return dIb(this)};_.hl=IMd;_.Yd=function(){return this.j.e.b};_.Bf=function(a){mIb(this,a)};_.uh=function(a){if(!a&&!this.d||!!this.d&&!!a&&GQ(this.d,a)){return}this.d=a;cJb(this.i,(Lz(),Iz),true)};_.Lf=function(a){Rgc(_Ib(this.i,this.b).Vn(),(a?(ihc(),ahc):(ihc(),ghc)).a)};_.Mf=function(a){Qgc(_Ib(this.i,this.b).Vn(),a)};_.uc=function(a,b){if(this.p.Un().width==a&&this.p.Un().height==b){return}oIb(this,a,b)};_.$d=function(a){return rIb(this,a)};_._d=function(a){return sIb(this,a)};_.ae=function(a){return tIb(this,a)};_.be=function(a){return uIb(this,a)};_.ce=function(a){return vIb(this,a)};_.d=null;var OHb;var RSc=Mmd(745);n9c(1087,1,{},CIb);var OSc=Mmd(1087);n9c(1088,1,{},DIb);var PSc=Mmd(1088);n9c(1294,2284,{},FIb);_.Pb=function(){var a,b;b=bIb(this.c);a=aIb(this.c);Dgc(_Hb(this.a),0,0,b,a)};_.sf=function(a,b,c,d){var e,f,g,h,j,l,m,n,o,q,r;e=cbc(a,1.5*this.b.j.e.b);f=d.a==null?uBd:d.a;g=_Hb(this.a);l=g.lineWidth;Ugc(g,d.e*(d.d?this.b.j.e.b:1));m=g.strokeStyle;g.strokeStyle=f;g.save();g.beginPath();q=e.b.a;r=e.b.b;j=e.a;o=e.c;h=$wnd.Math.min(10*this.b.j.e.b,o/3);g.moveTo(q+h,r);g.lineTo(q,r);g.lineTo(q,r+j);g.lineTo(q+h,r+j);g.moveTo(q+o-h,r);g.lineTo(q+o,r);g.lineTo(q+o,r+j);g.lineTo(q+o-h,r+j);g.stroke();g.restore();g.lineWidth=l;g.strokeStyle=m;if(b!=null&&b.length!=0){n=new p0((pR(),nR),(NT(),ET),true);sJb(this.d,g,new qad(q+o+h/2,r),b,f,n)}if(c!=null&&c.length!=0){n=new p0((pR(),hR),(NT(),ET),true);sJb(this.d,g,new qad(q+o+h/2,r+j),c,f,n)}g.restore()};_.tf=function(a,b,c,d){EIb(this,a,b,c,d)};_.el=function(){return _Hb(this.a)};_.Yd=function(){return this.b.j.e.b}; -_.uf=function(a,b){var c,d,e;c=a;(iU(),fU)==b.c&&(c=cbc(a,b.e*(b.d?this.b.j.e.b:1)));e=_Hb(this.a);Sgc(e,(ohc(),lhc).a);Tgc(e,(uhc(),rhc).a);e.beginPath();Lgc(e,c.b.a,c.b.b,c.c,c.a);b.b?LHb(this,b):(d=_Hb(this.a),fU==b.c?Ogc(d,b.a):Vgc(d,b.a));if(fU==b.c){e.fill()}else{Ugc(_Hb(this.a),b.e*(b.d?this.b.j.e.b:1));e.stroke()}};_.xf=function(a,b,c,d,e,f){var g,h;if((iU(),fU)==f.c){return}h=_Hb(this.a);Sgc(h,(ohc(),mhc).a);Tgc(h,(uhc(),thc).a);h.beginPath();h.arc(a,b,c,d,e,false);Ugc(h,f.e*(f.d?this.b.j.e.b:1));f.b?LHb(this,f):(g=_Hb(this.a),fU==f.c?Ogc(g,f.a):Vgc(g,f.a));h.stroke()};_.fl=function(a,b,c,d,e){var f,g,h,j,l,m,n,o,q,r,s,t,u,v,w,A,B;if((iU(),fU)==a.c){return}u=c.a-b.a;v=c.b-b.b;t=rac(b.a,b.b,0,c.a,c.b,0);h=d/t;m=e/t;g=_Hb(this.a);Sgc(g,(hU==a.c?(ohc(),mhc):(ohc(),lhc)).a);Tgc(g,(uhc(),thc).a);a.b?LHb(this,a):(f=_Hb(this.a),fU==a.c?Ogc(f,a.a):Vgc(f,a.a));Ugc(g,a.e*(a.d?this.b.j.e.b:1));w=qvc($wnd.Math.floor((t+e)/(d+e)));r=(t+e-(d+e)*w)/2;s=r/t;g.beginPath();A=b.a+s*u;B=b.b+s*v;g.moveTo(A,B);j=h*u;l=h*v;n=m*u;o=m*v;for(q=0;q0){return a}return 0};_.Rl=function(){return !this.j&&j2b(this),this.f};_.Tl=function(){return l2b(this)};_.Vl=function(){var a;a=m2b(this);Hqd(a,(kcc(),ecc),mnd((!this.j&&j2b(this),this.f)));return a};_.Yl=JMd;_.Zl=function(){if(this.k!=null){if(Hnd('*',this.k)){return '\u2217'}return this.k}return k2b(this)};_.cm=dPd;_.dm=function(a){this.j=null;iTb(this,a)};_.jm=function(a){q2b(this,a)};_.nm=function(a){r2b(this,a)};_.pm=function(a){s2b(this,a)};_.qm=function(a){t2b(this,a)};_.rm=function(a,b){var c,d;sTb(this,a,b);a==(kcc(),Nbc)&&jTb(this,b);a==Zbc&&p2b(this,b);a==$bc&&kTb(this,b.a);a==acc&&nTb(this,b);a==fcc&&(i1b(),!m1b(k2b(this),false))&&(i1b(),!o1b(k2b(this),false))&&s2b(this,b.a);if(a==hcc){d=b;tTb(this,!d?(X1b(),U1b):d)}if(a==ecc){c=b;!!c&&r2b(this,c.a)}};_.um=function(a){this.i=a};_.b=0;_.d=0;_.e=null;_.f=0;var sXc=Mmd(68);n9c(63,2302,{715:1,116:1,460:1,294:1,197:1,2331:1,295:1,296:1,196:1,63:1,999:1},S2b,T2b);_.im=function(a){xTb(this,a)};_.bf=function(a){if(Zr(this.a,a,0)==-1&&Zr(kXb(a),this,0)!=-1){return Wr(this.a,a)}return false};_.Hi=function(a){this.b=_0b(a,this.b)};_.Me=function(){return C2b(this)};_.Wm=LNd;_.Xm=cPd;_.Ji=function(){return d1b(this.b)};_.Oe=bPd;_.Lh=function(){return D2b(this)};_.Vl=function(){return F2b(this)};_.Xl=function(){return X1b(),U1b};_.Ym=CNd;_._l=aOd;_.Ki=function(){return (this.c.Ki()+this.d.Ki())/2};_.Li=function(){return !!this.b&&!this.b.sd()};_.Zm=function(){return this.i&&(s6b(),h6b)==this.o};_.cm=dPd;_.Ni=function(a){this.b=a?new js(a):null};_.qm=function(a){M2b(this,a)};_.ym=function(a){P2b(this,a)};_.vm=function(a){Q2b(this,a)};_.i=false;var tXc=Mmd(63);n9c(57,10,{57:1,3:1,11:1,10:1},C3b);var U2b,V2b,W2b,X2b,Y2b,Z2b,$2b,_2b,a3b,b3b,c3b,d3b,e3b,f3b,g3b,h3b,i3b,j3b,k3b,l3b,m3b,n3b,o3b,p3b,q3b,r3b,s3b,t3b,u3b,v3b,w3b,x3b,y3b,z3b,A3b;var uXc=Nmd(57,Q5c,E3b);n9c(93,146,{146:1,49:1,116:1,244:1,294:1,197:1,295:1,105:1,338:1,296:1,196:1,93:1},H3b,I3b,J3b);_.Dl=function(){var a;return a=new J3b(this.b,this.q),oTb(a,new Tac(this.s,this.t)),En(a,this.a),a};_.Bl=lOd;_.Hl=ROd;_.Il=function(){return 'R#'};_.Nl=ROd;_.Ql=ROd;_.Tl=ROd;_.Vl=function(){var a;a=gTb(this);Hqd(a,(kcc(),Nbc),this.k);Hqd(a,icc,mnd(this.b));Hqd(a,_bc,d1b(this.v));Hqd(a,Zbc,this.a);return a};_.Wl=ePd;_.Zl=function(){var a;if(this.k!=null){return this.k}a='R';this.b>0&&(a='R'+this.b);return a};_.am=xNd;_.hm=wMd;_.pm=wMd;_.qm=function(a){rTb(this,a);a.lp((kcc(),Nbc))&&jTb(this,a.np(Nbc));a.lp(icc)&&G3b(this,a.np(icc).a);a.lp(Zbc)&&En(this,a.np(Zbc))};_.rm=function(a,b){sTb(this,a,b);a==(kcc(),Nbc)&&jTb(this,b);a==icc&&G3b(this,b.a);a==Zbc&&(this.a=b,undefined)};_.sm=wMd;_.tm=wMd;_.b=0;var vXc=Mmd(93);n9c(210,2302,{116:1,460:1,717:1,210:1,999:1},Q3b,R3b,S3b);_.Me=function(){if(this.a){return new Srd(vuc(quc(tWc,1),zBd,49,0,[this.a]))}return Xrd(),Xrd(),Urd};_.Lh=function(){return !this.d&&P3b(this),kH(this.a.Lh(),this.d)};_.Ki=function(){return this.a.Ki()};var wXc=Mmd(210);n9c(707,1,{707:1,11:1},Z3b);_.Z=function(a){return U3b(this,a)};_.V=function(a){var b,c;if(kvc(a,707)){c=a;if(c.c.length!=this.c.length){return false}for(b=0;b=1009000)&&(c=a.ownerDocument.defaultView.getComputedStyle(a,null),c.direction=='rtl')){return Ojc(a.scrollLeft||0)-(((a.scrollWidth||0)|0)-(a.clientWidth|0))}return Ojc(a.scrollLeft||0)};_.Kn=function hkc(a,b){return a===b||!!(a.compareDocumentPosition(b)&16)};_.Mn=function ikc(a){var b=a.ownerDocument;var c=a.cloneNode(true);var d=b.createElement('DIV');d.appendChild(c);outer=d.innerHTML;c.innerHTML='';return outer};var N$c=Mmd(1148);n9c(2282,2281,aKd);_.sn=function jkc(a,b){var c=a.createElement(SHd);c.setAttribute(uDd,b);return c};_.yn=function kkc(a){return a.currentTarget||$wnd};_.Cn=function(a){var b,c;c=a.getBoundingClientRect&&a.getBoundingClientRect();b=c?c.left+Bjc(this,a.ownerDocument):lkc(a);return ujc(),b|0};_.Dn=function(a){var b,c,d;b=a.getBoundingClientRect&&a.getBoundingClientRect();c=b?b.top+Cjc(this,a.ownerDocument):mkc(a);return ujc(),c|0};_.In=function(a){if(!Ind('body',(ujc(),a).tagName)&&a.ownerDocument.defaultView.getComputedStyle(a,'').direction=='rtl'){return Ojc(a.scrollLeft||0)-(((a.scrollWidth||0)|0)-(a.clientWidth|0))}return Ojc(a.scrollLeft||0)};_.Jn=function nkc(a){return typeof a.tabIndex!=$Id?a.tabIndex:-1};var O$c=Mmd(2282);n9c(1147,2282,aKd,okc);_.An=function pkc(a){var b=a.target;b&&b.nodeType==3&&(b=b.parentNode);return b};_.Nn=function(a){return a.body};var Q$c=Mmd(1147);n9c(67,10,fKd);var ylc,zlc,Alc,Blc,Clc,Dlc,Elc,Flc,Glc,Hlc,Ilc,Jlc,Klc,Llc,Mlc,Nlc,Olc,Plc,Qlc;var j_c=Nmd(67,Q5c,Tlc);n9c(1238,67,fKd,Ulc);var a_c=Nmd(1238,j_c,null);n9c(1247,67,fKd,Vlc);var S$c=Nmd(1247,j_c,null);n9c(1248,67,fKd,Wlc);var T$c=Nmd(1248,j_c,null);n9c(1249,67,fKd,Xlc);var U$c=Nmd(1249,j_c,null);n9c(1250,67,fKd,Ylc);var V$c=Nmd(1250,j_c,null);n9c(1251,67,fKd,Zlc);var W$c=Nmd(1251,j_c,null);n9c(1252,67,fKd,$lc);var X$c=Nmd(1252,j_c,null);n9c(1253,67,fKd,_lc);var Y$c=Nmd(1253,j_c,null);n9c(1254,67,fKd,amc);var Z$c=Nmd(1254,j_c,null);n9c(1255,67,fKd,bmc);var $$c=Nmd(1255,j_c,null);n9c(1256,67,fKd,cmc);var _$c=Nmd(1256,j_c,null);n9c(1239,67,fKd,dmc);var b_c=Nmd(1239,j_c,null);n9c(1240,67,fKd,emc);var c_c=Nmd(1240,j_c,null);n9c(1241,67,fKd,fmc);var d_c=Nmd(1241,j_c,null);n9c(1242,67,fKd,gmc);var e_c=Nmd(1242,j_c,null);n9c(1243,67,fKd,hmc);var f_c=Nmd(1243,j_c,null);n9c(1244,67,fKd,imc);var g_c=Nmd(1244,j_c,null);n9c(1245,67,fKd,jmc);var h_c=Nmd(1245,j_c,null);n9c(1246,67,fKd,kmc);var i_c=Nmd(1246,j_c,null);n9c(277,10,gKd);var lmc,mmc,nmc;var n_c=Nmd(277,Q5c,qmc);n9c(1257,277,gKd,rmc);var k_c=Nmd(1257,n_c,null);n9c(1258,277,gKd,smc);var l_c=Nmd(1258,n_c,null);n9c(1259,277,gKd,tmc);var m_c=Nmd(1259,n_c,null);n9c(222,10,hKd);var umc,vmc,wmc,xmc;var s_c=Nmd(222,Q5c,Amc);n9c(1260,222,hKd,Bmc);var o_c=Nmd(1260,s_c,null);n9c(1261,222,hKd,Cmc);var p_c=Nmd(1261,s_c,null);n9c(1262,222,hKd,Dmc);var q_c=Nmd(1262,s_c,null);n9c(1263,222,hKd,Emc);var r_c=Nmd(1263,s_c,null);n9c(223,10,iKd);var Fmc,Gmc,Hmc,Imc;var x_c=Nmd(223,Q5c,Lmc);n9c(1264,223,iKd,Mmc);var t_c=Nmd(1264,x_c,null);n9c(1265,223,iKd,Nmc);var u_c=Nmd(1265,x_c,null);n9c(1266,223,iKd,Omc);var v_c=Nmd(1266,x_c,null);n9c(1267,223,iKd,Pmc);var w_c=Nmd(1267,x_c,null);n9c(224,10,jKd);var Qmc,Rmc,Smc,Tmc;var C_c=Nmd(224,Q5c,Wmc);n9c(1268,224,jKd,Xmc);var y_c=Nmd(1268,C_c,null);n9c(1269,224,jKd,Ymc);var z_c=Nmd(1269,C_c,null);n9c(1270,224,jKd,Zmc);var A_c=Nmd(1270,C_c,null);n9c(1271,224,jKd,$mc);var B_c=Nmd(1271,C_c,null);n9c(225,10,kKd);var _mc,anc,bnc,cnc;var H_c=Nmd(225,Q5c,fnc);n9c(1272,225,kKd,gnc);var D_c=Nmd(1272,H_c,null);n9c(1273,225,kKd,hnc);var E_c=Nmd(1273,H_c,null);n9c(1274,225,kKd,inc);var F_c=Nmd(1274,H_c,null);n9c(1275,225,kKd,jnc);var G_c=Nmd(1275,H_c,null);n9c(117,10,lKd);var knc,lnc,mnc,nnc,onc,pnc,qnc,rnc,snc;var R_c=Nmd(117,Q5c,vnc);n9c(1229,117,lKd,wnc);var I_c=Nmd(1229,R_c,null);n9c(1230,117,lKd,xnc);var J_c=Nmd(1230,R_c,null);n9c(1231,117,lKd,ync);var K_c=Nmd(1231,R_c,null);n9c(1232,117,lKd,znc);var L_c=Nmd(1232,R_c,null);n9c(1233,117,lKd,Anc);var M_c=Nmd(1233,R_c,null);n9c(1234,117,lKd,Bnc);var N_c=Nmd(1234,R_c,null);n9c(1235,117,lKd,Cnc);var O_c=Nmd(1235,R_c,null);n9c(1236,117,lKd,Dnc);var P_c=Nmd(1236,R_c,null);n9c(1237,117,lKd,Enc);var Q_c=Nmd(1237,R_c,null);n9c(188,10,mKd);var Fnc,Gnc,Hnc,Inc,Jnc;var X_c=Nmd(188,Q5c,Mnc);n9c(1276,188,mKd,Nnc);var S_c=Nmd(1276,X_c,null);n9c(1277,188,mKd,Onc);var T_c=Nmd(1277,X_c,null);n9c(1278,188,mKd,Pnc);var U_c=Nmd(1278,X_c,null);n9c(1279,188,mKd,Qnc);var V_c=Nmd(1279,X_c,null);n9c(1280,188,mKd,Rnc);var W_c=Nmd(1280,X_c,null);var Snc,Tnc=false,Unc,Vnc,Wnc;n9c(1217,1,Izd,_nc);_.eb=function(){(Xnc(),Tnc)&&Ync()};var Y_c=Mmd(1217);n9c(1216,1,{},goc);var aoc;var Z_c=Mmd(1216);n9c(nKd,fBd,{});_.Wd=function(){return this.On()};var ioc;var g0c=Mmd(nKd);n9c(2019,nKd,{},ooc);_.Vd=function(a){Ch(a.a,null)};_.On=function(){return moc};var moc;var $_c=Mmd(2019);n9c(1763,nKd,{},roc);_.Vd=function(a){a.Lk(this)};_.On=function(){return poc};var poc;var __c=Mmd(1763);n9c(2297,nKd,{});var n0c=Mmd(2297);n9c(oKd,2297,{});var u0c=Mmd(oKd);n9c(1817,oKd,{},woc);_.Vd=function(a){a.hb(this)};_.On=function(){return uoc};var uoc;var a0c=Mmd(1817);n9c(2287,nKd,{});var b0c=Mmd(2287);n9c(1387,nKd,{},zoc);_.Vd=function(a){a.nc(this)};_.On=function(){return xoc};var xoc;var c0c=Mmd(1387);n9c(1212,2287,{},Coc);_.Vd=function(a){!!this.a&&slc(this.a);Jvb(a.a,new ewb(this.a.clipboardData||$wnd.clipboardData))};_.On=function(){return Aoc};var Aoc;var d0c=Mmd(1212);n9c(1213,2287,{},Foc);_.Vd=function(a){!!this.a&&slc(this.a);Kvb(a.a,new ewb(this.a.clipboardData||$wnd.clipboardData))};_.On=function(){return Doc};var Doc;var e0c=Mmd(1213);n9c(145,1,{},Hoc);_.X=VMd;_.Y=function(){return 'Event type'};_.c=0;var Goc=0;var t5c=Mmd(145);n9c(80,145,{},Ioc);var S0c=Mmd(80);n9c(96,80,{96:1},Joc);var f0c=Mmd(96);n9c(1715,oKd,{},Moc);_.Vd=function(a){DG(a,this)};_.On=function(){return Koc};var Koc;var h0c=Mmd(1715);n9c(2295,nKd,{});var Noc;var j0c=Mmd(2295);n9c(1392,1,{},Ooc);_.a=false;var i0c=Mmd(1392);n9c(1393,2295,{},Soc);_.Vd=function(a){var b;Roc((b=this,a,b))};_.On=function(){return Poc};var Poc;var k0c=Mmd(1393);n9c(1394,2295,{},Voc);_.Vd=function(a){var b,c;tlc(this.a);!!this.a&&slc(this.a);b=(c=OLb(this.a.dataTransfer||null),c?c:null);ILb(a.a,b)};_.On=function(){return Toc};var Toc;var l0c=Mmd(1394);n9c(1564,nKd,{},Yoc);_.Vd=function(a){bj(a.a)};_.On=function(){return Woc};var Woc;var m0c=Mmd(1564);n9c(2306,nKd,{});var q0c=Mmd(2306);n9c(2307,2306,{});var o0c=Mmd(2307);n9c(1662,2307,{},apc);_.Vd=function(a){a.cc(this)};_.On=function(){return $oc};var $oc;var p0c=Mmd(1662);n9c(2037,2306,{},dpc);_.Vd=function(a){a.Xk(this)};_.On=function(){return bpc};var bpc;var r0c=Mmd(2037);n9c(1714,2307,{},gpc);_.Vd=function(a){a.dc(this)};_.On=function(){return epc};var epc;var s0c=Mmd(1714);n9c(1526,oKd,{},jpc);_.Vd=function(a){a.oc(this)};_.On=function(){return hpc};var hpc;var t0c=Mmd(1526);n9c(1528,oKd,{},mpc);_.Vd=function(a){a.pc(this)};_.On=function(){return kpc};var kpc;var v0c=Mmd(1528);n9c(1530,oKd,{},ppc);_.Vd=function(a){a.qc(this)};_.On=function(){return npc};var npc;var w0c=Mmd(1530);n9c(1529,oKd,{},spc);_.Vd=function(a){a.rc(this)};_.On=function(){return qpc};var qpc;var x0c=Mmd(1529);n9c(1527,oKd,{},vpc);_.Vd=function(a){a.sc(this)};_.On=function(){return tpc};var tpc;var y0c=Mmd(1527);n9c(770,2287,{},ypc);_.Vd=function(a){a.Kk(this)};_.On=function(){return wpc};var wpc; -var B0c=Mmd(770);n9c(1214,1,{2333:1,13:1},zpc);_.Kk=function(a){var b,c;b=(c=new ypc,En(c,a.a),Uo(c,a.b),c);wic((pic(),oic),new Apc(this,b))};var A0c=Mmd(1214);n9c(1215,1,Izd,Apc);_.eb=function(){$vb(this.a.a,this.b)};var z0c=Mmd(1215);n9c(1562,1,{},Dpc);var C0c=Mmd(1562);n9c(2299,2297,{});var Epc;var G0c=Mmd(2299);n9c(1672,2299,{},Hpc);_.Vd=function(a){a.jc(this)};_.On=function(){return Fpc};var Fpc;var D0c=Mmd(1672);n9c(1671,2299,{},Kpc);_.Vd=function(a){a.kc(this)};_.On=function(){return Ipc};var Ipc;var E0c=Mmd(1671);n9c(1458,1,{},Lpc);_.a=false;var F0c=Mmd(1458);n9c(1531,2299,{},Opc);_.Vd=function(a){a.lc(this)};_.On=function(){return Mpc};var Mpc;var H0c=Mmd(1531);n9c(1670,2299,{},Rpc);_.Vd=function(a){a.mc(this)};_.On=function(){return Ppc};var Ppc;var I0c=Mmd(1670);n9c(1804,oKd,{},Upc);_.Vd=function(a){a.kd(this)};_.On=function(){return Spc};var Spc;var J0c=Mmd(1804);n9c(1106,fBd,{},Wpc);_.Vd=function(a){a.ed(this)};_.Wd=function(){return Vpc};_.a=false;var Vpc;var K0c=Mmd(1106);n9c(2026,fBd,{},Zpc);_.Vd=function(a){var b;b=$pc(a.a,mnd(this.b.a));!b||!b.a||(this.a=true)};_.Wd=function(){return Ypc};_.a=false;var Ypc;var L0c=Mmd(2026);n9c(1282,fBd,{},aqc);_.Vd=function(a){a.$b(this)};_.Wd=function(){return _pc};var _pc;var M0c=Mmd(1282);n9c(1762,fBd,{},dqc);_.Vd=function(a){Qed(a.b,a.d.c,a.a)};_.Wd=function(){return cqc};var cqc;var N0c=Mmd(1762);n9c(1362,fBd,{},gqc);_.Vd=function(a){a.jd(this)};_.Wd=function(){return fqc};_.a=0;var fqc;var O0c=Mmd(1362);n9c(2027,fBd,{},jqc);_.Vd=function(a){a.bc(this)};_.Wd=function(){return iqc};var iqc;var P0c=Mmd(2027);n9c(2269,1,{});var u5c=Mmd(2269);n9c(2293,2269,EBd);var R0c=Mmd(2293);n9c(301,1,EBd,qqc,rqc);_.Fb=function(a){oqc(this,a)};var V0c=Mmd(301);n9c(107,2269,{},Cqc);_.Pn=kPd;_.b=0;_.c=false;var B5c=Mmd(107);n9c(1069,107,{},Eqc);_.Pn=kPd;var U0c=Mmd(1069);n9c(626,1,Tzd,Fqc);_.tc=function(){Zld(this.a)};var X0c=Mmd(626);n9c(356,2293,EBd,Iqc);_.Fb=function(a){lqc(this,a)};var Y0c=Mmd(356);n9c(274,52,wKd,Jqc);var C5c=Mmd(274);n9c(479,274,wKd,Lqc);var Z0c=Mmd(479);n9c(1299,1,{},Pqc);_.b=0;var f1c=Mmd(1299);n9c(1300,221,{},Qqc);_.ic=function(){Oqc(this.a)};var $0c=Mmd(1300);n9c(595,1,{},Yqc);_.d=false;_.f=0;var Rqc,Sqc;var b1c=Mmd(595);n9c(1125,1,{},$qc);_.Qn=function(a){if(a.readyState==4){Dkd(a);Nqc(this.b,this.a)}};var _0c=Mmd(1125);n9c(404,1,{},_qc);_.Y=AMd;var a1c=Mmd(404);n9c(229,45,xKd,arc);var c1c=Mmd(229);n9c(1467,229,xKd,brc);var d1c=Mmd(1467);n9c(2017,229,xKd,crc);var e1c=Mmd(2017);n9c(2292,1,{});var h1c=Mmd(2292);n9c(1301,2292,{},drc);var g1c=Mmd(1301);n9c(525,1,{525:1},Lrc);var jrc;var t1c=Mmd(525);n9c(920,525,{920:1,525:1},Prc);var Nrc;var j1c=Mmd(920);n9c(70,10,{70:1,3:1,11:1,10:1},Csc);var Trc,Urc,Vrc,Wrc,Xrc,Yrc,Zrc,$rc,_rc,asc,bsc,csc,dsc,esc,fsc,gsc,hsc,isc,jsc,ksc,lsc,msc,nsc,osc,psc,qsc,rsc,ssc,tsc,usc,vsc,wsc,xsc,ysc,zsc,Asc;var i1c=Nmd(70,Q5c,Dsc);n9c(2320,1,{});var u1c=Mmd(2320);n9c(2321,2320,{});var k1c=Mmd(2321);n9c(405,10,{405:1,3:1,11:1,10:1},Isc);var Esc,Fsc,Gsc;var l1c=Nmd(405,Q5c,Jsc);n9c(1126,1,{},Osc);var Ksc;var m1c=Mmd(1126);n9c(706,1,{},itc);_.b=0;_.c=false;_.d=0;_.e=0;_.f=3;_.i=false;_.j=3;_.k=40;_.n=0;_.o=0;_.p=1;_.q=1;_.r='-';_.s='';_.u='';_.v='';_.w=false;var Psc;var n1c=Mmd(706);n9c(2224,1,{},mtc);_.a=0;var o1c=Mmd(2224);n9c(2220,1,{},stc);var p1c=Mmd(2220);n9c(2003,2321,{},utc);var r1c=Mmd(2003);n9c(2021,2003,{},vtc);var q1c=Mmd(2021);n9c(861,1,{861:1},wtc);_.a=false;_.b=0;var s1c=Mmd(861);n9c(156,1,VKd,Htc,Itc,Jtc);_.Z=function(a){return pnd(P8c(this.r.getTime()),P8c(a.r.getTime()))};_.V=function(a){return kvc(a,156)&&O8c(P8c(this.r.getTime()),P8c(a.r.getTime()))};_.X=function(){var a;a=P8c(this.r.getTime());return d9c(f9c(a,_8c(a,32)))};_.Y=function(){var a,b,c;c=-this.r.getTimezoneOffset();a=(c>=0?'+':'')+(c/60|0);b=Ktc($wnd.Math.abs(c)%60);return (Lsd(),Jsd)[this.r.getDay()]+' '+Ksd[this.r.getMonth()]+' '+Ktc(this.r.getDate())+' '+Ktc(this.r.getHours())+':'+Ktc(this.r.getMinutes())+':'+Ktc(this.r.getSeconds())+' GMT'+a+b+' '+this.r.getFullYear()};var f7c=Mmd(156);n9c(2058,156,VKd,Mtc);_.a=false;_.b=0;_.c=0;_.d=0;_.e=0;_.f=0;_.i=false;_.j=0;_.k=0;_.n=0;_.o=0;_.p=0;_.q=0;var v1c=Mmd(2058);n9c(2322,1,{});_.Rn=UMd;_.Sn=UMd;var D1c=Mmd(2322);n9c(940,2322,{940:1},Ptc);_.V=function(a){if(!kvc(a,940)){return false}return nt(this.a,a.a)};_.X=lPd;_.Rn=WMd;_.Y=function(){return Otc(this)};var w1c=Mmd(940);n9c(980,2322,{},Ttc);_.Y=function(){return rmd(this.a)};_.a=false;var Qtc,Rtc;var x1c=Mmd(980);n9c(452,52,{452:1,3:1,45:1,52:1,42:1},Utc,Vtc);var y1c=Mmd(452);n9c(2205,2322,{},Ytc);_.Y=function(){return iyd};var Wtc;var z1c=Mmd(2205);n9c(709,2322,{709:1},Ztc);_.V=function(a){if(!kvc(a,709)){return false}return this.a==a.a};_.X=function(){return qvc(this.a)};_.Y=function $tc(){return this.a+''};_.a=0;var A1c=Mmd(709);n9c(941,2322,{941:1},duc);_.V=function(a){if(!kvc(a,941)){return false}return nt(this.a,a.a)};_.X=lPd;_.Sn=WMd;_.Y=function(){return cuc(this)};var B1c=Mmd(941);var euc;n9c(710,2322,{710:1},puc);_.V=function(a){if(!kvc(a,710)){return false}return Hnd(this.a,a.a)};_.X=mPd;_.Y=function(){return Shc(this.a)};var C1c=Mmd(710);var xuc;var $uc,_uc,avc,bvc;n9c(377,45,{377:1,3:1,45:1,42:1},A9c,B9c);var E1c=Mmd(377);n9c(1749,1,{},D9c);_.ql=function(a,b){Rk(this.a,new B9c('Unable to retrieve external resource',b))};_.rl=function(a,b){var c,d;d=b.a.responseText;c=gl(d);C9c(this,c)};var H1c=Mmd(1749);n9c(1750,1,PAd,E9c);_.Ic=function(){return this.a.b.d};_.ld=KMd;var G1c=Mmd(1750);n9c(265,1,{2375:1,77:1},F9c);_.Ic=KMd;_.a=0;_.d=0;var J1c=Mmd(265);n9c(2222,1,cLd,G9c);_.Qc=AMd;_.V=nPd;_.X=mPd;var K1c=Mmd(2222);n9c(2231,1,{},I9c);var L1c=Mmd(2231);n9c(365,1,cLd,J9c);_.Qc=AMd;_.V=nPd;_.X=mPd;_.Y=oPd;var M1c=Mmd(365);var K9c,L9c,M9c,N9c,O9c,P9c;n9c(33,1,{2236:1},U9c);_.Qc=AMd;_.V=function(a){return T9c(this,a)};_.X=mPd;_.Y=oPd;var N1c=Mmd(33);var V9c;n9c(1975,1,{},aad);_.Hd=function(a){return _9c(a)};var $9c;var O1c=Mmd(1975);n9c(1974,_Ad,{},dad);_.Id=function(a){return cad(a)};var bad;var P1c=Mmd(1974);n9c(1661,1,{},fad);_.Hd=function(a){return s9c(a)};var ead;var R1c=Mmd(1661);n9c(1660,_Ad,{},had);_.Id=zOd;var gad;var S1c=Mmd(1660);n9c(5,1,{5:1},pad,qad,rad);_.V=function(a){return jad(this,a)};_.X=function(){return kad(this)};_.Y=function(){return oad(this)};_.a=0;_.b=0;var T1c=Mmd(5);n9c(571,1,{},tad);var U1c=Mmd(571);var uad;n9c(2227,1,{},yad);var V1c=Mmd(2227);n9c(KKd,1,{13:1});var W1c=Mmd(KKd);n9c(2277,1,{});_.Vn=function(){return this.Un().getContext('2d')};var Z1c=Mmd(2277);n9c(352,10,{352:1,3:1,11:1,10:1},Pad);var Lad,Mad,Nad;var X1c=Nmd(352,Q5c,Rad);n9c(2275,1,{});var Y1c=Mmd(2275);var Tad=null,Uad,Vad=true;var Zad=null,$ad,_ad;var qbd;n9c(1149,fBd,{},Abd);_.Vd=function(a){Vg(a.a,this);xbd.c=false};_.Wd=function(){return wbd};_.Xd=function(){ybd(this)};_.a=false;_.b=false;_.c=false;var wbd,xbd;var $1c=Mmd(1149);n9c(1118,2277,{},Cbd);_.Tn=AMd;_.Un=function(){return Rf(this.a)};_.Vn=function(){return Rf(this.a).getContext('2d')};_.Wn=function(){return Rf(this.a).toDataURL()};_.Xn=function(a){return a?sjc(Rf(this.a),a.a):Rf(this.a).toDataURL()};var a2c=Mmd(1118);n9c(1095,2275,{},Ebd);_.Yn=function(){return Dbd()};_.Zn=function(){return ol(),zgc(skc($doc))};var _1c=Mmd(1095);var Fbd,Gbd;n9c(1532,1,EBd,Mbd);_.Fb=function(a){oqc(this.a,a)};var b2c=Mmd(1532);n9c(1533,1,{},Nbd);var c2c=Mmd(1533);n9c(1524,2277,{},Pbd);_.Tn=KMd;_.Un=function(){return Rf(this.b)};_.Vn=function(){return !this.a&&(this.a=Ead(Rf(this.b).width,Rf(this.b).height)),this.a};_.Wn=function(){return Iad((!this.a&&(this.a=Ead(Rf(this.b).width,Rf(this.b).height)),this.a))};_.Xn=function(a){if((Oad(),Nad)==a||!a){return Iad((!this.a&&(this.a=Ead(Rf(this.b).width,Rf(this.b).height)),this.a))}return null};var f2c=Mmd(1524);n9c(1525,485,nAd,Rbd);var d2c=Mmd(1525);n9c(1353,2275,{},Sbd);_.Yn=function(){return Qbd()};_.Zn=function(){return Gad()};var e2c=Mmd(1353);var Tbd=false,Ubd,Vbd,Wbd=0,Xbd=0,Ybd=false;n9c(1068,fBd,{},hcd);_.Vd=function(a){null.Ip()};_.Wd=function(){return fcd};var fcd;var h2c=Mmd(1068);var icd='',jcd;n9c(588,301,EBd,ncd);var i2c=Mmd(588);var ocd,pcd,qcd=false;n9c(1307,1,Bzd,ucd);_.$b=function(a){fdd((rcd(),pcd))};var j2c=Mmd(1307);n9c(1306,fBd,{},xcd);_.Vd=function(a){Ii(a.a,100)};_.Wd=function(){return vcd};var vcd;var k2c=Mmd(1306);n9c(411,1,jLd);var ycd=false;var p2c=Mmd(411);n9c(2288,411,jLd);_.$n=function(a){if(Hnd((ujc(),a).type,sKd)){return tjc.An(a)}if(Hnd(a.type,rKd)){return tjc.zn(a)}return null};_._n=function Qcd(a,b){var c=0,d=a.firstChild;while(d){if(d.nodeType==1){if(b==c)return d;++c}d=d.nextSibling}return null};_.ao=function Rcd(a){var b=0,c=a.firstChild;while(c){c.nodeType==1&&++b;c=c.nextSibling}return b};_.bo=function Scd(a,b){var c=0,d=a.firstChild;while(d){if(d===b){return c}d.nodeType==1&&++c;d=d.nextSibling}return -1};_.co=function(){Jcd()};_.eo=function Ucd(a,b,c){var d=0,e=a.firstChild,f=null;while(e){if(e.nodeType==1){if(d==c){f=e;break}++d}e=e.nextSibling}a.insertBefore(b,f)};_.fo=function(a){Acd(this);Ecd==a&&(Ecd=null)};_.go=function(a){Acd(this);Ecd=a};_.ho=function(a,b){var c,d;Acd(this);c=Dcd;d=c[b]||c['_default_'];a.addEventListener(b,d,false)};_.io=function(a,b){Acd(this);Kcd(a,b)};var Dcd,Ecd,Fcd,Gcd,Hcd;var n2c=Mmd(2288);n9c(1224,2288,jLd,Xcd);_.co=function(){Jcd();Wcd()};_.io=function(a,b){Acd(this);Kcd(a,b);b&eLd&&a.addEventListener(dLd,(Icd(),Gcd),false)};var l2c=Mmd(1224);n9c(2289,2288,jLd);var m2c=Mmd(2289);n9c(1225,2289,jLd,Ycd);var o2c=Mmd(1225);n9c(2028,1,{},bdd);_.a=null;var r2c=Mmd(2028);n9c(2029,1,{},ddd);_.a=0;var q2c=Mmd(2029);n9c(1395,1,{},hdd);var s2c=Mmd(1395);n9c(599,1,{599:1},ndd);_.jo=function odd(){return $wnd.location.hash};var u2c=Mmd(599);n9c(1218,599,{599:1},pdd);_.jo=function qdd(){var a=$wnd.location.href;var b=a.indexOf('#');return b>0?a.substring(b):''};var t2c=Mmd(1218);n9c(592,399,lzd,udd);_.Nb=function(a){rdd(this,a)};_.Ob=function(a){yo(this,a)};_.Rb=function(a){return tdd(this,a)};var v2c=Mmd(592);n9c(446,485,nAd,ydd,zdd);_.$c=function(){return cjc((abd(),this.U))};_._c=pPd;var w2c=Mmd(446);n9c(1101,479,wKd,Ddd);var Add,Bdd;var z2c=Mmd(1101);n9c(1102,1,{},Fdd);_.ko=function(a){a.Hb()};var x2c=Mmd(1102);n9c(1103,1,{},Gdd);_.ko=function(a){a.Jb()};var y2c=Mmd(1103);n9c(108,673,nAd,Hdd,Idd);var B2c=Mmd(108);n9c(690,Uzd,oLd,Mdd);_.Nb=function(a){Ldd(this,!a?null:a.Cb())};_.Ob=function(a){Ldd(this,a)};_.Pb=function(){this.p.Pb()};_.Qb=function(){return this.p.Qb()};_.Rb=function(a){return this.p.Rb(a)};var Jdd;var G2c=Mmd(690);n9c(691,1,{691:1});_.lo=function(a,b,c,d){d?(b.innerHTML=c||'',undefined):(ujc(),tjc).Ln(b,c);Hnd('',c)?!!b.parentNode&&a.removeChild(b):Nic(a,b,a.firstChild)};var F2c=Mmd(691);n9c(2038,691,{691:1},Ndd);_.lo=function(a,b,c,d){a.style[pLd]=bzd;d?(b.innerHTML=c||'',undefined):(ujc(),tjc).Ln(b,c);Hnd('',c)?!!b.parentNode&&a.removeChild(b):Nic(a,b,a.firstChild);a.style[pLd]=''};var C2c=Mmd(2038);n9c(2039,691,{691:1},Odd);_.lo=function(a,b,c,d){a.style[nzd]=ozd;d?(b.innerHTML=c||'',undefined):(ujc(),tjc).Ln(b,c);Hnd('',c)?!!b.parentNode&&a.removeChild(b):Nic(a,b,a.firstChild);wic((pic(),oic),new Pdd(a))};var E2c=Mmd(2039);n9c(2040,1,Izd,Pdd);_.eb=function(){this.a.style[nzd]=''};var D2c=Mmd(2040);n9c(208,673,nAd,Udd);_.$c=function(){return cjc(this.b)};_.Kb=function(){abd();this.b.__listener=this};_.Lb=function(){abd();this.b.__listener=null;Sdd(this,this.P?(qmd(),this.b.checked?true:false):(qmd(),this.b.defaultChecked?true:false))};_._c=function(a){!!this.b&&ljc(this.b,a)};_.Mb=function(a){this.Q==-1?obd(this.b,a|tbd(this.b)):this.Q==-1?obd((abd(),this.U),a|(this.U.__eventBits||0)):(this.Q|=a)};var I2c=Mmd(208);n9c(1100,1,{},Vdd);_.ko=function(a){yg(a,null)};var J2c=Mmd(1100);n9c(1891,1,{});_.Y=KMd;var N2c=Mmd(1891);n9c(121,1891,{},$dd);_.a=0;var M2c=Mmd(121);n9c(1717,399,lzd);_.Nb=qPd;_.Ob=function(a){var b;b=aed();abd();Lic(this.U,lbd(b));oo(this,a,b);bed(b,a)};_.Rb=function(a){return ced(this,a)};var _dd;var Q2c=Mmd(1717);n9c(1721,489,{},ged);_.jn=function(){if(this.d){this.a.style[czd]=fzd;mg(this.a,true);mg(this.b,false);this.b.style[czd]=fzd}else{mg(this.a,false);this.a.style[czd]=fzd;this.b.style[czd]=fzd;mg(this.b,true)}this.a.style[yAd]=tzd;this.b.style[yAd]=tzd;this.a=null;this.b=null;this.e.Ab(false);this.e=null};_.kn=function(){this.a.style[yAd]=ozd;this.b.style[yAd]=ozd;eed(this,0);mg(this.a,true);mg(this.b,true)};_.ln=function(a){eed(this,a)};_.a=null;_.b=null;_.c=-1;_.d=false;_.e=null;var P2c=Mmd(1721);n9c(1453,64,mzd,jed);_.Sb=function(){return ied(this)};var T2c=Mmd(1453);n9c(763,1,NAd,led);_.jd=function(a){this.a.p=a.a};var U2c=Mmd(763);n9c(490,29,kzd);var E3c=Mmd(490);n9c(27,490,rLd,ped,red);_.Wc=rPd;_.Xc=sPd;_.Yc=tPd;_.Zc=uPd;var F3c=Mmd(27);n9c(186,27,rLd,ted,ued,ved);var t3c=Mmd(186);n9c(1157,186,rLd,wed);var V2c=Mmd(1157);n9c(1158,1,Szd,xed);_.oc=function(a){om(this.a,a)};_.pc=function(a){pm(this.a,a)};_.qc=wMd;_.rc=wMd;_.sc=function(a){qm(this.a,a)};var W2c=Mmd(1158);n9c(637,1,{},Aed);_.c=false;var Y2c=Mmd(637);n9c(606,Uzd,oLd,Jed);_.Nb=function(a){Ced(this,!a?null:a.Cb())};_.Ob=function(a){Ced(this,a)};_.Pb=function(){Eed(this,null)};_.Qb=function(){return Njd(this,vuc(quc(R4c,1),_Hd,29,0,[this.a.O]))};_.Rb=function(a){return Ded(this,a)};_.c=false;var Bed;var b3c=Mmd(606);n9c(1226,64,mzd,Ked);_.Ib=function(a){switch(abd(),zcd((ujc(),a).type)){case 1:tjc.Bn(a);Hed(this.a,!this.a.c);}};var Z2c=Mmd(1226);n9c(1227,489,{},Ned);_.jn=function(){this.b||gg(this.a.a,false);Rf(this.a.a).style[czd]='auto';this.a=null};_.kn=function(){Led(this,(1+$wnd.Math.cos(jBd))/2);if(this.b){gg(this.a.a,true);this.a.a.O.Ab(true)}};_.ln=function(a){Led(this,a)};_.b=false;var $2c=Mmd(1227);n9c(774,29,{573:1,36:1,2370:1,13:1,24:1,35:1,31:1,21:1,28:1,29:1},Oed);_.$b=function(a){Qed(this.b,this.d.c,this.a)};var a3c=Mmd(774);n9c(1228,1,{},Red);var _2c=Mmd(1228);var Sed,Ted;n9c(1801,611,lzd,jfd);_.Rb=function(a){return efd(this,a)};var Wed,Xed,Yed,Zed,$ed,_ed,afd;var f3c=Mmd(1801);n9c(321,1,{},kfd);var c3c=Mmd(321);n9c(892,1,{892:1},lfd);_.c='';_.f='';var d3c=Mmd(892);n9c(672,1,{672:1},mfd);_.a=0;var e3c=Mmd(672);n9c(894,485,nAd,nfd);var g3c=Mmd(894);n9c(898,2276,lzd);_.Pb=function(){tfd(this)};_.Qb=function(){return new fgd(this)};_.Rb=function(a){return Bfd(this,a)};var s3c=Mmd(898);n9c(267,898,lzd,Ifd);_.mo=function(a){return rfd(this,a),vfd((abd(),this.c),a)};_.no=function(){return (abd(),this.c).rows.length};_.oo=function(a,b){var c,d;Hfd(this,a);if(b<0){throw I8c(new lmd('Cannot create a column with a negative index: '+b))}c=(rfd(this,a),vfd((abd(),this.c),a));d=b+1-c;d>0&&pfd(this.c,a,d)};var i3c=Mmd(267);n9c(899,1,{},Nfd);var p3c=Mmd(899);n9c(923,899,{923:1},Qfd);var h3c=Mmd(923);n9c(893,64,{95:1,36:1,24:1,35:1,31:1,71:1,79:1,21:1,64:1,28:1,29:1,39:1},Ufd);_.Wc=rPd;_.Xc=sPd;_.Yc=tPd;_.Zc=uPd;var Rfd;var k3c=Mmd(893);n9c(438,898,lzd,$fd);_.mo=IPd;_.no=KMd;_.oo=function(a,b){Wfd(this,a);if(b<0){throw I8c(new lmd('Cannot access a column with a negative index: '+b))}if(b>=this.a){throw I8c(new lmd(tLd+b+uLd+this.a))}};_.a=0;_.b=0;var m3c=Mmd(438);n9c(2041,399,lzd,cgd);_.Ob=function(a){oo(this,a,(abd(),this.U))};var n3c=Mmd(2041);n9c(1821,1,{},fgd);_.Sc=function(){return egd(this)};_.Rc=function(){return this.b0&&(b=(!this.d&&Cl(this,this.o),this.d.a^1),a=yl(this,b),Cl(this,a));Al(this)};_.bd=function(){var a,b;!this.d&&Cl(this,this.o);(1&this.d.a)>0&&(b=(!this.d&&Cl(this,this.o),this.d.a^1),a=yl(this,b),Cl(this,a))};_.cd=function(){var a,b;!this.d&&Cl(this,this.o);(1&this.d.a)<=0&&(b=(!this.d&&Cl(this,this.o),this.d.a^1),a=yl(this,b),Cl(this,a))};var b4c=Mmd(371);n9c(1831,485,nAd,kid);_.Hb=function(){ql(this);this.a.Ko()};_.Jb=function(){ug(this);this.a.No()};var c4c=Mmd(1831);n9c(478,592,zLd,pid);var lid,mid,nid;var g4c=Mmd(478);n9c(1098,1,{},tid);_.ko=function(a){a.Gb()&&a.Jb()};var d4c=Mmd(1098);n9c(1099,1,Bzd,uid);_.$b=function(a){rid()};var e4c=Mmd(1099);n9c(1097,478,zLd,vid);var f4c=Mmd(1097);n9c(761,1,{},xid);_.Sc=function(){return wid(this)};_.Rc=AMd;_.Tc=function(){!!this.b&&this.c.Rb(this.b)};_.a=false;_.b=null;var h4c=Mmd(761);n9c(543,Uzd,Vzd,Did);_.e=20;_.i=true;var r4c=Mmd(543);n9c(1847,1,{},Fid);var k4c=Mmd(1847);n9c(1849,1,{341:1,1003:1,143:1,13:1},Gid);_.cc=function(a){var b;switch(nlc(a.a)){case 40:Jn(this.a.d);this.a.d.d.M&&!!a.a&&slc(a.a);break;case 38:Kn(this.a.d);this.a.d.d.M&&!!a.a&&slc(a.a);break;case 13:case 9:b=In(this.a.d);!b?this.a.d.d.Vb():zid(this.a,b);}};_.dc=function(a){yid(this.a)};_.Ud=function(a){qg(this.a,a)};var j4c=Mmd(1849);n9c(1848,1,{},Iid);var l4c=Mmd(1848);n9c(1846,1,Izd,Jid);_.eb=function(){Hid(this.a,this.b)};var m4c=Mmd(1846);n9c(1845,618,kzd,Mid);var q4c=Mmd(1845);n9c(906,369,{31:1,369:1,906:1,28:1},Nid);var p4c=Mmd(906);n9c(907,1,{},Oid);_.a=20;var s4c=Mmd(907);n9c(908,1,{},Pid);var t4c=Mmd(908);n9c(1719,Uzd,CLd);var w4c=Mmd(1719);n9c(1722,Uzd,Vzd,Xid);_.Ib=function(a){if(!this.a){return}switch(abd(),zcd((ujc(),a).type)){case 1:Vid(this.c,this);break;case 128:((a.keyCode|0)&hyd)==13&&Vid(this.c,this);(a.keyCode|0)&hyd;(a.shiftKey?1:0)|(a.metaKey?8:0)|(a.ctrlKey?2:0)|(a.altKey?4:0);}tg(this,a);this.p.Ib(a)};_.a=true;var v4c=Mmd(1722);n9c(532,Uzd,{36:1,24:1,35:1,31:1,71:1,174:1,21:1,2244:1,28:1,29:1,39:1},ajd);_.Ob=function(a){throw I8c(new God('A tabText parameter must be specified with add().'))};_.Pb=function(){while(this.a.i.c>0){_id(this,to(this.a,0))}};_.Qb=function(){return new Ljd(this.a.i)};_.Rb=function(a){return _id(this,a)};var z4c=Mmd(532);n9c(1718,1717,lzd,djd);_.Ob=function(a){throw I8c(new God('Use TabPanel.add() to alter the DeckPanel'))};_.Pb=function(){throw I8c(new God('Use TabPanel.clear() to alter the DeckPanel'))};_.Rb=function(a){return cjd(this,a)};var x4c=Mmd(1718);n9c(1720,1719,CLd,ejd);var y4c=Mmd(1720);n9c(794,793,nAd);_.Ok=function(){var a;return a=DEb(this),a==null?'':a};var B4c=Mmd(794);n9c(613,794,nAd,jjd);var A4c=Mmd(613);n9c(150,794,nAd,kjd);var C4c=Mmd(150);n9c(1359,1,RHd,mjd);_.Lk=function(a){Zt(this.a,this.a.Ok())};var F4c=Mmd(1359);n9c(231,10,DLd);var njd,ojd,pjd,qjd;var K4c=Nmd(231,Q5c,tjd);n9c(1355,231,DLd,ujd);var G4c=Nmd(1355,K4c,null);n9c(1356,231,DLd,vjd);var H4c=Nmd(1356,K4c,null);n9c(1357,231,DLd,wjd);var I4c=Nmd(1357,K4c,null);n9c(1358,231,DLd,xjd);var J4c=Nmd(1358,K4c,null);n9c(92,611,lzd,Bjd);_.Nb=function(a){yjd(this,!a?null:a.Cb())};_.Ob=function(a){yjd(this,a)};_.Rb=function(a){return zjd(this,a)};var N4c=Mmd(92);n9c(775,1,aBd,Ijd);_.Qb=function(){return new Ljd(this)};_.c=0;var P4c=Mmd(775);n9c(353,1,{},Ljd);_.Sc=function(){return Jjd(this)};_.Rc=function(){return this.b<\/div>';wic((pic(),oic),new ikd(a))}return a};_.Go=function(a){return ekd?yjc((ujc(),a)):a};_.Ho=function(a){return ekd?a:Ajc((ujc(),a))};_.Io=function(a,b){a.style['clip']=b;a.style[pLd]=(Rlc(),bzd);a.style[pLd]=''};var ekd=false;var W4c=Mmd(1360);n9c(1361,1,Izd,ikd);_.eb=function(){this.a.style[yAd]=(Jmc(),'auto')};var V4c=Mmd(1361);n9c(443,1,{443:1});_.vc=function(){return abd(),Pkc($doc)};_.Jo=wPd;_.ld=wPd;_.zc=function(){obd(this.f,8189)};_.Ko=function(){this.Ac()};_.Ac=function(){this.zc()};_.Lo=function jkd(a){a?this.f.focus():this.f.blur()};_.Mo=function(a){this.f[OHd]=a};_.No=tMd;var _4c=Mmd(443);n9c(939,443,FLd);_.vc=function rkd(){return $doc.createElement('iframe')};_.Jo=function(){return !this.b?this.f.contentWindow.document.body.innerHTML:Yic(this.b)};_.ld=function(){return !this.b?this.Oo():Zic(this.b)};_.Oo=function skd(){return this.f.contentWindow.document.body.textContent};_.zc=function tkd(){var b=this.f;var c=b.contentWindow;b.__gwt_handler=Yxd(function(a){bbd(a,b)});b.__gwt_focusHandler=function(a){if(b.__gwt_isFocused){return}b.__gwt_isFocused=true;b.__gwt_handler(a)};b.__gwt_blurHandler=function(a){if(!b.__gwt_isFocused){return}b.__gwt_isFocused=false;b.__gwt_handler(a)};c.addEventListener(cAd,b.__gwt_handler,true);c.addEventListener(dAd,b.__gwt_handler,true);c.addEventListener(eAd,b.__gwt_handler,true);c.addEventListener(pKd,b.__gwt_handler,true);c.addEventListener(tKd,b.__gwt_handler,true);c.addEventListener(qKd,b.__gwt_handler,true);c.addEventListener(sKd,b.__gwt_handler,true);c.addEventListener(rKd,b.__gwt_handler,true);c.addEventListener(TId,b.__gwt_handler,true);c.addEventListener(Yyd,b.__gwt_focusHandler,true);c.addEventListener(Zyd,b.__gwt_blurHandler,true)};_.Ko=function ukd(){var a=this;a.Po();setTimeout(Yxd(function(){if(a.f.contentWindow!=null){a.f.contentWindow.document.designMode='On';a.Ac()}}),1)};_.to=function(a){kkd(this,'InsertHTML',a)};_.uo=function(){return mkd(this,'Bold')};_.vo=function(){return mkd(this,Oyd)};_.wo=function(){return mkd(this,'Subscript')};_.xo=function(){return mkd(this,GLd)};_.Ac=function(){if(!this.c){return}this.c=false;this.e=true;if(this.b){pkd(this,Yic(this.b));nkd(this,!this.b?lkd(this):!this.b[mAd]);this.b=null}this.zc();if(this.d){this.d=false;this.c?(this.d=true):this.Qo(true)}};_.Po=function(){this.c=true;this.d=false};_.yo=function(){kkd(this,'RemoveFormat',null)};_.Lo=function(a){this.c?(this.d=a):this.Qo(a)};_.Qo=function(a){okd(this,a)};_.Mo=function(a){!this.b?pkd(this,a):jjc(this.b,a)};_.zo=function(){kkd(this,'Bold',Mzd)};_.Ao=function(){kkd(this,Oyd,Mzd)};_.Bo=function(){kkd(this,'Subscript',Mzd)};_.Co=function(){kkd(this,GLd,Mzd)};_.Fc=function vkd(){var a=this.f;var b=a.contentWindow;b.removeEventListener(cAd,a.__gwt_handler,true);b.removeEventListener(dAd,a.__gwt_handler,true);b.removeEventListener(eAd,a.__gwt_handler,true);b.removeEventListener(pKd,a.__gwt_handler,true);b.removeEventListener(tKd,a.__gwt_handler,true);b.removeEventListener(qKd,a.__gwt_handler,true);b.removeEventListener(sKd,a.__gwt_handler,true);b.removeEventListener(rKd,a.__gwt_handler,true);b.removeEventListener(TId,a.__gwt_handler,true);b.removeEventListener(Yyd,a.__gwt_focusHandler,true);b.removeEventListener(Zyd,a.__gwt_blurHandler,true);a.__gwt_handler=null;a.__gwt_focusHandler=null;a.__gwt_blurHandler=null};_.No=function(){var a,b;this.e=false;if(this.c){this.c=false;return}this.Fc();b=!this.b?this.f.contentWindow.document.body.innerHTML:Yic(this.b);a=!this.b?lkd(this):!this.b[mAd];this.b=(abd(),wkc($doc));jjc(this.b,b);!this.b?nkd(this,a):(this.b[mAd]=!a,undefined)};_.c=false;_.d=false;_.e=false;var $4c=Mmd(939);n9c(2044,939,FLd,wkd);_.Ko=function xkd(){var a=this;var b=a.f;a.Po();a.a=true;b.onload=Yxd(function(){b.onload=null;b.contentWindow.onfocus=function(){b.contentWindow.onfocus=null;b.contentWindow.onmouseover=null;b.contentWindow.document.designMode='On'};b.contentWindow.onmouseover=b.contentWindow.onfocus;a.Ac()})};_.Qo=function(a){var b,c,d;if(this.a){this.a=false;b=this.f;c=b.contentWindow;c.removeEventListener(Yyd,b.__gwt_focusHandler,true);c.removeEventListener(Zyd,b.__gwt_blurHandler,true);c.focus();c.blur();c.focus();c.addEventListener(Yyd,b.__gwt_focusHandler,true);c.addEventListener(Zyd,b.__gwt_blurHandler,true);d=document.createEvent(cKd);d.initEvent(Yyd,false,false);c.dispatchEvent(d)}else{okd(this,a)}};_.a=false;var Y4c=Mmd(2044);n9c(2043,939,FLd,ykd);_.Oo=function zkd(){return this.f.contentWindow.document.body.innerText};_.zc=function Akd(){var b=this.f;var c=b.contentWindow;b.__gwt_handler=function(a){bbd(a,b)};c.addEventListener(cAd,b.__gwt_handler,true);c.addEventListener(dAd,b.__gwt_handler,true);c.addEventListener(eAd,b.__gwt_handler,true);c.addEventListener(pKd,b.__gwt_handler,true);c.addEventListener(tKd,b.__gwt_handler,true);c.addEventListener(qKd,b.__gwt_handler,true);c.addEventListener(sKd,b.__gwt_handler,true);c.addEventListener(rKd,b.__gwt_handler,true);c.addEventListener(TId,b.__gwt_handler,true);c.onfocus=function(a){bbd(a,b)};c.onblur=function(a){bbd(a,b)}};_.Fc=function Bkd(){var a=this.f;var b=a.contentWindow;b.removeEventListener(cAd,a.__gwt_handler,true);b.removeEventListener(dAd,a.__gwt_handler,true);b.removeEventListener(eAd,a.__gwt_handler,true);b.removeEventListener(pKd,a.__gwt_handler,true);b.removeEventListener(tKd,a.__gwt_handler,true);b.removeEventListener(qKd,a.__gwt_handler,true);b.removeEventListener(sKd,a.__gwt_handler,true);b.removeEventListener(rKd,a.__gwt_handler,true);b.removeEventListener(TId,a.__gwt_handler,true);a.__gwt_handler=null;a.onfocus=null;a.onblur=null};var Z4c=Mmd(2043);n9c(625,52,sJd);var a5c=Mmd(625);var Ikd;n9c(149,1,{149:1});_.V=function(a){if(kvc(a,149)){return this.a==a.a}return false};_.Xo=AMd;_.X=lPd;var f5c=Mmd(149);n9c(318,149,HLd,Okd);_.So=function(){return new lld(uld(this.a))};_.To=function(){return new jld(vld(this.a))};_.Uo=function(){return Bld(this.a)};_.Vo=function(){return Pkd(Fld(this.a))};_.Wo=function(){return Ild(this.a)};_.Y=function(){return (old(),old(),nld).bp(this)};var m5c=Mmd(318);n9c(1864,318,HLd,Qkd);var b5c=Mmd(1864);n9c(912,318,ILd);_.Ro=function(){return wld(this.a)};var d5c=Mmd(912);n9c(913,912,{1011:1,297:1,2348:1,149:1},Skd);_.Y=function(){var a,b,c;a=new yod;c=Und(wld(this.a),'(?=[;&<>\'"])',-1);for(b=0;b')){a.a+='>';nod(a,c[b].substr(1))}else{a.a+=''+c[b]}}return a.a};var p5c=Mmd(913);n9c(1865,913,{2391:1,1011:1,297:1,2348:1,149:1},Tkd);_.Y=function(){var a;a=new Aod('';return a.a};var c5c=Mmd(1865);n9c(1866,912,ILd,Ukd);_.Y=function(){var a;a=new Aod('';return a.a};var e5c=Mmd(1866);n9c(290,625,sJd,Vkd);var g5c=Mmd(290);n9c(310,625,{310:1,3:1,45:1,52:1,42:1},Wkd,Xkd);var h5c=Mmd(310);n9c(1867,318,HLd,Zkd);var i5c=Mmd(1867);n9c(1868,318,{2381:1,297:1,149:1},bld);var j5c=Mmd(1868);n9c(1869,318,{2380:1,297:1,149:1},gld);var k5c=Mmd(1869);n9c(158,149,{149:1},jld);_.Yo=xPd;_.Zo=function(a){return ild(this,a)};_.Y=function(){var a,b;a=new yod;for(b=0;b0){var e=d.item(0);e.parentNode.tagName=='body'&&Wld(e.childNodes[1].innerHTML)}return c};var q5c=Mmd(1766);n9c(358,1,{293:1},Yld);_.tc=function(){Xld(this)};var x5c=Mmd(358);n9c(1070,1,{293:1},$ld);_.tc=function(){Zld(this)};var y5c=Mmd(1070);n9c(1071,1,{2330:1},_ld);_.eb=function(){uqc(this.a,this.d,this.c,this.b)};var z5c=Mmd(1071);n9c(736,1,{2330:1},amd);_.eb=function(){wqc(this.a,this.d,this.c,this.b)};var A5c=Mmd(736);n9c(2258,1,{});var F5c=Mmd(2258);n9c(2259,2258,{});var D5c=Mmd(2259);n9c(132,45,{132:1,3:1,45:1,42:1},bmd);var E5c=Mmd(132);n9c(1029,2259,{},cmd);var G5c=Mmd(1029);n9c(581,132,{132:1,3:1,581:1,45:1,42:1},dmd);var H5c=Mmd(581);n9c(393,1,{466:1});_.Y=AMd;var I5c=Mmd(393);n9c(166,52,{3:1,166:1,45:1,52:1,42:1},jmd);var J5c=Mmd(166);n9c(73,52,LLd,kmd,lmd);var V5c=Mmd(73);n9c(823,73,LLd,mmd,nmd);var K5c=Mmd(823);dvc={3:1,583:1,11:1};var omd,pmd;var L5c=Mmd(583);n9c(392,1,{3:1,392:1,11:1},umd);_.Z=function(a){return this.a-a.a};_.V=function(a){return kvc(a,392)&&a.a==this.a};_.X=AMd;_.Y=function(){return Cnd(),String.fromCharCode(this.a)};_.a=0;var smd,tmd;var N5c=Mmd(392);var Emd;n9c(467,1,{3:1,467:1});var Vmd;var $5c=Mmd(467);evc={3:1,11:1,725:1,467:1};var P5c=Mmd(725);n9c(386,42,{3:1,42:1},_md);var R5c=Mmd(386);n9c(20,52,NLd,and,bnd,cnd);var T5c=Mmd(20);n9c(110,52,sJd,dnd,end);var U5c=Mmd(110);n9c(215,467,{3:1,11:1,215:1,467:1},gnd);_.Z=function(a){return hnd(this.a,a.a)};_.V=function(a){return fnd(this,a)};_.X=AMd;_.Y=function(){return $md(this.a)};_.a=0;var W5c=Mmd(215);var nnd;n9c(2454,1,{});n9c(83,585,sJd,tnd,und);_._=function(a){return new TypeError(a)};var Y5c=Mmd(83);var vnd,wnd,xnd,ynd;n9c(65,20,{3:1,45:1,20:1,65:1,52:1,42:1},And);var Z5c=Mmd(65);n9c(468,393,{466:1},ood,pod);var d6c=Mmd(468);n9c(26,393,{466:1,26:1},yod,zod,Aod);var e6c=Mmd(26);n9c(469,73,{3:1,45:1,73:1,52:1,469:1,42:1},Bod);var f6c=Mmd(469);n9c(2458,1,{});var Cod;n9c(86,52,sJd,Fod,God);var i6c=Mmd(86);n9c(50,467,{3:1,11:1,467:1,50:1},fpd,gpd,hpd,ipd,jpd,kpd,lpd,mpd);_.Z=function(a){return Ood(this,a)};_.V=function(a){return Rod(this,a)};_.X=function(){return Vod(this)};_.Y=function(){return Dpd(this,0)};_.b=-2;_.c=0;_.d=0;_.e=0;var Hod,Iod,Jod,Kod,Lod,Mod;var j6c=Mmd(50);var zpd,Apd;var jqd,kqd;n9c(343,1,ULd);_.Z=function(a){return Fnd(this.a,a.a)};_.V=function(a){var b;if(a===this){return true}if(!kvc(a,343)){return false}b=a;return Hnd(this.a,b.a)};_.X=mPd;_.Y=AMd;var k6c=Mmd(343);n9c(1028,20,NLd,tqd);var l6c=Mmd(1028);n9c(580,20,{3:1,45:1,20:1,52:1,42:1,580:1},uqd);var m6c=Mmd(580);n9c(46,45,{3:1,45:1,42:1,46:1},vqd);var n6c=Mmd(46);var J7c=Omd();n9c(2266,1,VLd);_.kp=function(a){return wqd(this,a)};_.lp=function(a){return !!xqd(this,a,false)};_.V=function(a){var b,c,d;if(a===this){return true}if(!kvc(a,212)){return false}d=a;if(this.vd()!=d.vd()){return false}for(c=d.mp().Qb();c.Rc();){b=c.Sc();if(!this.kp(b)){return false}}return true};_.np=function(a){return Bqd(xqd(this,a,false))};_.X=function(){return $rd(this.mp())};_.sd=zPd;_.op=function(){return new ard(this)};_.pp=function(a,b){throw I8c(new God('Put not supported on this map'))};_.qp=function(a){return Bqd(xqd(this,a,true))};_.vd=function(){return this.mp().vd()};_.Y=function(){var a,b,c;c=new cvd(', ','{','}');for(b=this.mp().Qb();b.Rc();){a=b.Sc();avd(c,zqd(this,a.yp())+'='+zqd(this,a.Ok()))}return !c.a?c.c:c.e.length==0?c.a.a:c.a.a+(''+c.e)};var D6c=Mmd(2266);n9c(347,2266,VLd);_.Pb=function(){this.d=new Ctd(this);this.e=new Qtd};_.lp=function(a){return Cqd(this,a)};_.rp=function(a){return Dqd(this,a,this.e)||Dqd(this,a,this.d)};_.mp=function(){return new Sqd(this)};_.np=function(a){return Eqd(this,a)};_.pp=function(a,b){return Hqd(this,a,b)};_.qp=function(a){return Jqd(this,a)};_.vd=function(){return Mqd(this)};var r6c=Mmd(347);n9c(WLd,2260,XLd);_.V=function(a){return Pqd(this,a)};_.X=function(){return $rd(this)};_.ud=function(a){return Qqd(this,a)};var J6c=Mmd(WLd);n9c(54,WLd,XLd,Sqd);_.qd=function(a){return Rqd(this,a)};_.Qb=function(){return new Vqd(this.a)};_.td=function(a){var b;if(Rqd(this,a)){b=a.yp();this.a.qp(b);return true}return false};_.vd=CPd;var q6c=Mmd(54);n9c(55,1,{},Vqd);_.Sc=function(){return Uqd(this)};_.Rc=KMd;_.Tc=function(){this.c.Tc();this.c=null;this.b=Tqd(this)};_.b=false;var p6c=Mmd(55);n9c(250,1,{},Zqd);_.Rc=function(){return Wqd(this)};_.Sc=function(){return Xqd(this)};_.Tc=APd;_.b=0;_.c=-1;var s6c=Mmd(250);n9c(344,250,{},$qd);_.Tc=APd;_.up=function(a){this.a.yd(this.b,a);++this.b;this.c=-1};_.vp=function(){return this.b>0};_.wp=function(){return this.a.zd(this.c=--this.b)};_.xp=function(a){this.a.Ed(this.c,a)};var t6c=Mmd(344);n9c(345,2261,ZAd,_qd);_.yd=function(a,b){this.c.yd(this.a+a,b);++this.b};_.zd=function(a){return this.c.zd(this.a+a)};_.Dd=function(a){var b;b=this.c.Dd(this.a+a);--this.b;return b};_.Ed=function(a,b){return this.c.Ed(this.a+a,b)};_.vd=KMd;_.a=0;_.b=0;var u6c=Mmd(345);n9c(32,WLd,XLd,ard);_.qd=BPd;_.Qb=function(){var a;return a=this.a.mp().Qb(),new brd(a)};_.td=function(a){if(this.a.lp(a)){this.a.qp(a);return true}return false};_.vd=CPd;var x6c=Mmd(32);n9c(41,1,{},brd);_.Rc=DPd;_.Sc=function(){var a;return a=this.a.Sc(),a.yp()};_.Tc=EPd;var w6c=Mmd(41);n9c(74,2260,YAd,drd);_.qd=function(a){return crd(this,a)};_.Qb=function(){var a;return a=this.a.mp().Qb(),new erd(a)};_.vd=CPd;var z6c=Mmd(74);n9c(111,1,{},erd);_.Rc=DPd;_.Sc=function(){var a;return a=this.a.Sc(),a.Ok()};_.Tc=EPd;var y6c=Mmd(111);n9c(397,1,{397:1,185:1});_.V=function(a){var b;if(!kvc(a,185)){return false}b=a;return Gud(this.d,b.yp())&&Gud(this.e,b.Ok())};_.yp=BMd;_.Ok=CNd;_.X=function(){return Hud(this.d)^Hud(this.e)};_.zp=function(a){return frd(this,a)};_.Y=function(){return this.d+'='+this.e};var A6c=Mmd(397);n9c(300,397,{397:1,300:1,185:1},grd);var B6c=Mmd(300);n9c(2278,1,YLd);_.V=function(a){var b;if(!kvc(a,185)){return false}b=a;return Gud(this.yp(),b.yp())&&Gud(this.Ok(),b.Ok())};_.X=function(){return Hud(this.yp())^Hud(this.Ok())};_.Y=function(){return this.yp()+'='+this.Ok()};var C6c=Mmd(2278);n9c(2304,2266,VLd);_.kp=function(a){return hrd(this,a)};_.lp=function(a){return ird(this,a)};_.mp=function(){return new jrd(this)};_.np=function(a){return Bqd(evd(this,a))};_.op=function(){return new krd(this)};var H6c=Mmd(2304);n9c(859,WLd,XLd,jrd);_.qd=function(a){return kvc(a,185)&&hrd(this.a,a)};_.Qb=function(){return new vvd(this.a)};_.td=function(a){var b;if(kvc(a,185)){b=a;return mvd(this.a,b)}return false};_.vd=MOd;var E6c=Mmd(859);n9c(285,WLd,XLd,krd);_.qd=function(a){return ird(this.a,a)};_.Qb=function(){var a;return a=new vvd((new xvd(this.a)).a),new lrd(a)};_.td=function(a){if(ird(this.a,a)){lvd(this.a,a);return true}return false};_.vd=MOd;var G6c=Mmd(285);n9c(286,1,{},lrd);_.Rc=function(){return Wqd(this.a.a)};_.Sc=function(){var a;return a=tvd(this.a),a.yp()};_.Tc=function(){uvd(this.a)};var F6c=Mmd(286);n9c(2308,2261,ZAd);_.yd=function(a,b){var c;c=this.Cd(a);c.up(b)};_.zd=function(b){var c;c=this.Cd(b);try{return c.Sc()}catch(a){a=H8c(a);if(kvc(a,147)){throw I8c(new lmd("Can't get element "+b))}else throw I8c(a)}};_.Qb=function(){return nud(this,0)};_.Dd=function(b){var c,d;c=this.Cd(b);try{d=c.Sc();c.Tc();return d}catch(a){a=H8c(a);if(kvc(a,147)){throw I8c(new lmd("Can't remove element "+b))}else throw I8c(a)}};_.Ed=function(b,c){var d,e;d=this.Cd(b);try{e=d.Sc();d.xp(c);return e}catch(a){a=H8c(a);if(kvc(a,147)){throw I8c(new lmd("Can't set element "+b))}else throw I8c(a)}};var I6c=Mmd(2308);n9c(826,2260,YAd,zrd);_.od=function(a){Iud(a);this.a[this.c]=a;this.c=this.c+1&this.a.length-1;qrd(this);return true};_.qd=function(a){return ord(new Drd(this),a)};_.sd=function(){return rrd(this)};_.Qb=function(){return new Drd(this)};_.td=function(a){return urd(new Drd(this),a)};_.vd=function(){return yrd(this)};_.xd=function(a){var b;b=this.c-this.b&this.a.length-1;a.lengthb&&(a[b]=null);return a};_.b=0;_.c=0;var L6c=Mmd(826);n9c(629,1,{},Drd);_.Rc=function(){return this.a!=this.b};_.Sc=function(){return Brd(this)};_.Tc=function(){Crd(this)};_.a=0;_.b=0;_.c=-1;var K6c=Mmd(629);n9c(9,1,{},Frd);_.Rc=function(){return this.a>24}return b};var j8c=Mmd(727);n9c(1027,726,ULd,Nwd);_.Ep=function(a){var b,c,d,e,f,g,h;g=a.length;b=0;for(f=0;f=gyd?2:1;d<128?++b:d=gyd?2:1;h+=Mwd(c,h,d)}return c};var k8c=Mmd(1027);n9c(2453,1,{});var Ywd=0;var $wd,_wd=0,axd;n9c(2000,1,{});_.j=0;_.n=0;var m8c=Mmd(2000);n9c(2001,2000,{},nxd);_.a=0;_.b=0;_.c=0;_.d=0;_.e=0;_.i=0;var n8c=Mmd(2001);n9c(2296,1,{});var o8c=Mmd(2296);n9c(1456,2296,{});var p8c=Mmd(1456);n9c(638,1,{638:1},oxd);_.V=function(a){var b;if(!kvc(a,638)){return false}b=a;return Rod(b.b,this.b)&&Rod(b.c,this.c)&&Rod(b.a,this.a)};_.X=function(){return Vod(this.b)^Vod(this.c)^Vod(this.a)};var q8c=Mmd(638);n9c(1457,1456,{},pxd);var r8c=Mmd(1457);n9c(2002,1,{},txd);var s8c=Mmd(2002);n9c(2267,1,{});var v8c=Mmd(2267);n9c(1067,2267,{},Ixd);var u8c=Mmd(1067);var Rxd;var b6c=Mmd(null);var svc=Pmd('C');var uvc=Pmd('I');var w8c=Pmd('Z');var vvc=Pmd('J');var rvc=Pmd('B');var tvc=Pmd('D');var Yxd=(eic(),hic);var gwtOnLoad=gwtOnLoad=j9c;h9c(u9c);k9c('permProps',[[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,'safari']],[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,pMd]],[[mMd,nMd],[oMd,'safari']]]);$sendStats('moduleStartup', 'moduleEvalEnd');gwtOnLoad(__gwtModuleFunction.__errFn, __gwtModuleFunction.__moduleName, __gwtModuleFunction.__moduleBase, __gwtModuleFunction.__softPermutationId,__gwtModuleFunction.__computePropValue);$sendStats('moduleStartup', 'end');$gwt && $gwt.permProps && __gwtModuleFunction.__moduleStartupDone($gwt.permProps); -//# sourceURL=gui-0.js - diff --git a/public/marvinjs/gui/FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt b/public/marvinjs/gui/FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt deleted file mode 100644 index d2099e125..000000000 --- a/public/marvinjs/gui/FDD4CCF60B6B099FFCE46E616BE8A8F6.cache.txt +++ /dev/null @@ -1,2 +0,0 @@ -[ -"Arg\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 7.2857 3.3804 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2857 2.5554 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 6.5679 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8554 2.5554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1429 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4250 2.5554 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0000 2.5554 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 1.3179 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9982 2.1429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7161 2.5554 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 2 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Arg\nM SAP 1 3 1 0 Al 10 0 Br 8 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nMgCl\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Mg 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 MgCl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ClMg\nM END\n> \nMgCl\n\n> \nClMg\n\n$$$$\nc-C16H31\n Mrv15c7 12111511552D \n\n 16 16 0 0 0 0 999 V2000\n 2.1434 1.4223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7183 2.0140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5182 1.8119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7432 1.0182 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1683 0.4265 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3932 -0.3673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8183 -0.9589 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0433 -1.7527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4684 -2.3444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6685 -2.1423 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4435 -1.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6436 -1.1466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4187 -0.3528 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9936 0.2389 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7686 1.0326 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3435 1.6243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 1 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 c-C16H31\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C16H31\n\n$$$$\nc-C3H5\n Mrv15c7 12111511552D \n\n 3 3 0 0 0 0 999 V2000\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 1 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 c-C3H5\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C3H5\n\n$$$$\nBTC\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BTC\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBTC\n\n$$$$\nCt\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Ct\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nCt\n\n$$$$\nCOs-Bu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COs-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuCO\nM END\n> \nCOs-Bu\n\n> \ns-BuCO\n\n$$$$\nC13H27\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n 5.4730 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1875 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.9020 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.6164 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.3309 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.0454 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.7599 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.4743 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1888 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.9033 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.6177 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.3322 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.0467 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 C13H27\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H27C13\nM END\n> \nC13H27\n\n> \nH27C13\n\n$$$$\nCy\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Cy\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCy\n\n$$$$\nPmc\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8545 0.3627 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3848 -0.5558 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 3 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 2 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 13 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 16 18 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Pmc\nM SAP 1 1 16 0 1\nM SDS EXP 1 1\nM END\n> \nPmc\n\n$$$$\nCe\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Ce\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCe\n\n$$$$\n4Py\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 4Py\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \n4Py\n\n$$$$\nC16H33\n Mrv15c7 12111511552D \n\n 16 15 0 0 0 0 999 V2000\n 5.9961 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.7105 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.4250 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.1395 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.8539 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.5684 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.2829 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.9974 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.7118 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.4263 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.1408 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8552 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5697 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2842 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9987 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.7131 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 C16H33\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H33C16\nM END\n> \nC16H33\n\n> \nH33C16\n\n$$$$\nADRibof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADRibof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADRibof\n\n$$$$\ns-Butyl\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 s-Butyl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-Butyl\n\n$$$$\no-C6H4\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 o-C6H4\nM SAP 1 2 2 0 1 1 0 2\nM SDS EXP 1 1\nM MJS SAT 1 o-C6H4\nM END\n> \no-C6H4\n\n> \no-C6H4\n\n$$$$\nCys\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4304 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Cys\nM SAP 1 3 1 0 Al 5 0 Br 4 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nSnMe3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Sn 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SnMe3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me3Sn\nM END\n> \nSnMe3\n\n> \nMe3Sn\n\n$$$$\nCyt\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Cyt\nM SAP 1 2 6 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nCyt\n\n$$$$\nBDAllos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDAllos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDAllos\n\n$$$$\nEE\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 EE\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nEE\n\n$$$$\nOEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 OEt\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtO\nM END\n> \nOEt\n\n> \nEtO\n\n$$$$\nc-C7H13\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.8566 1.3632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5999 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7834 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2691 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4441 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0703 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1133 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 1 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 c-C7H13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C7H13\n\n$$$$\np-Tolyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 p-Tolyl\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \np-Tolyl\n\n$$$$\nOnPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OnPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 nPrO\nM END\n> \nOnPr\n\n> \nnPrO\n\n$$$$\nSi-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Si-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrS\nM END\n> \nSi-Pr\n\n> \ni-PrS\n\n$$$$\nDPTBS\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3020 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\n 6 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 13 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 DPTBS\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nDPTBS\n\n$$$$\nNHAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmNH\nM END\n> \nNHAm\n\n> \nAmNH\n\n$$$$\nHmb\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 3 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Hmb\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nHmb\n\n$$$$\nU\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.3819 -1.7224 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1665 -1.4675 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 -2.5070 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.3020 -2.5070 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0470 -1.7224 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7376 -1.4675 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9091 -0.6605 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6937 -0.4056 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4784 -0.1506 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9487 -1.1902 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4388 0.3790 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6119 -3.1745 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4324 -3.0882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9173 -3.7557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5817 -4.5094 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0667 -5.1768 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7613 -4.5956 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2763 -3.9282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4559 -4.0144 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 2 0 0 0 0\n 5 14 1 6 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 17 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 14 20 1 0 0 0 0\n 20 21 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 U\nM SDS EXP 1 1\nM END\n> \nU\n\n$$$$\nAsu\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 2.1434 -4.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.5375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -5.7750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Asu\nM SAP 1 2 1 0 1 11 0 2\nM SDS EXP 1 1\nM END\n> \nAsu\n\n$$$$\nEt\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Et\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nEt\n\n$$$$\nAsx\n Mrv15c7 12111511552D \n\n 8 7 1 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 L 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 5 F 2 7 8\nM ALS 5 2 F N O \nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Asx\nM SAP 1 2 1 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADRibop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADRibop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADRibop\n\n$$$$\nZ\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Z\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nZ\n\n$$$$\nIps\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ips\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nIps\n\n$$$$\nNHBn\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NHBn\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnNH\nM END\n> \nNHBn\n\n> \nBnNH\n\n$$$$\nIPA\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 IPA\nM SDS EXP 1 1\nM END\n> \nIPA\n\n$$$$\nOBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuO\nM END\n> \nOBu\n\n> \nBuO\n\n$$$$\nc-Hx\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 c-Hx\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nc-Hx\n\n$$$$\nNHt-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHt-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmNH\nM END\n> \nNHt-Am\n\n> \nt-AmNH\n\n$$$$\nn-Hex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 n-Hex\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Hex\n\n$$$$\nOBz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 OBz\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BzO\nM END\n> \nOBz\n\n> \nBzO\n\n$$$$\nNHBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuNH\nM END\n> \nNHBu\n\n> \nBuNH\n\n$$$$\nAsn\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Asn\nM SAP 1 3 1 0 Al 7 0 Br 5 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADFruct\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADFruct\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADFruct\n\n$$$$\nMgBr\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Mg 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 MgBr\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BrMg\nM END\n> \nMgBr\n\n> \nBrMg\n\n$$$$\nAsp\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Asp\nM SAP 1 3 1 0 Al 7 0 Br 5 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\niAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 iAm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \niAm\n\n$$$$\nFt\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n -1.4534 -0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6284 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1435 -1.3654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3984 -2.1500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1435 -0.0305 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3984 0.7541 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 6 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Ft\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nFt\n\n$$$$\nADIdose\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADIdose\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADIdose\n\n$$$$\nH2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 1.6500 0.0000 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 H2\nM SDS EXP 1 1\nM END\n> \nH2\n\n$$$$\nOTBDMS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTBDMS\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TBDMSO\nM END\n> \nOTBDMS\n\n> \nTBDMSO\n\n$$$$\nOPfp\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 OPfp\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PfpO\nM END\n> \nOPfp\n\n> \nPfpO\n\n$$$$\nt-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 t-C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nt-C4H9\n\n$$$$\nc-C20H39\n Mrv15c7 12111511552D \n\n 20 20 0 0 0 0 999 V2000\n 2.8579 2.0862 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3743 2.7295 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1897 2.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4887 1.8351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9723 1.1917 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2712 0.4228 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7548 -0.2206 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0538 -0.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5374 -1.6329 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8364 -2.4018 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3199 -3.0452 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5045 -2.9197 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2056 -2.1507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3902 -2.0252 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0912 -1.2563 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6076 -0.6129 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3086 0.1560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8251 0.7994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5261 1.5683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0425 2.2117 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 1 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 c-C20H39\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C20H39\n\n$$$$\niBu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 iBu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \niBu\n\n$$$$\nPiv\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Piv\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPiv\n\n$$$$\nProp\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Prop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nProp\n\n$$$$\nAmyl\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Amyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAmyl\n\n$$$$\nPic\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Pic\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPic\n\n$$$$\nPCl5\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.4924 0.4849 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5701 -0.7846 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4924 -0.4849 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5701 0.7846 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 PCl5\nM SDS EXP 1 1\nM END\n> \nPCl5\n\n$$$$\nPiP\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.1105 -2.0625 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6039 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 2 0 0 0 0\nM CHG 3 1 -1 6 -1 7 -1\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PiP\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PPi\nM END\n> \nPiP\n\n> \nPPi\n\n$$$$\nC25H51\n Mrv15c7 12111511552D \n\n 25 24 0 0 0 0 999 V2000\n 12.8980 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6125 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3270 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0414 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7559 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.4704 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.1849 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.8993 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6138 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3283 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.0427 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.7572 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.4717 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.1862 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.9006 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.6151 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.3296 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.0440 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.7585 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 26.4730 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.1874 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.9019 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 28.6164 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 29.3309 7.8592 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 30.0453 8.2717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 C25H51\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H51C25\nM END\n> \nC25H51\n\n> \nH51C25\n\n$$$$\nPCl3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PCl3\nM SDS EXP 1 1\nM END\n> \nPCl3\n\n$$$$\nCOOAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmOOC\nM END\n> \nCOOAm\n\n> \nAmOOC\n\n$$$$\nAIBN\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 2.1434 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.1270 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3020 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -2.1434 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 3 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 AIBN\nM SDS EXP 1 1\nM END\n> \nAIBN\n\n$$$$\nPht\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.4125 -2.8579 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.8579 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Pht\nM SAP 1 2 2 0 1 9 0 2\nM SDS EXP 1 1\nM END\n> \nPht\n\n$$$$\nc-C18H35\n Mrv15c7 12111511552D \n\n 18 18 0 0 0 0 999 V2000\n 2.5006 1.5918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9924 2.2542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 2.1596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1398 1.4025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6480 0.7401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9758 -0.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4841 -0.6794 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 -1.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3202 -2.0989 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5006 -2.0043 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0089 -2.6667 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 -2.5721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8615 -1.8150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3533 -1.1526 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0255 -0.3955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5172 0.2669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 1.0240 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6811 1.6864 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 1 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 c-C18H35\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C18H35\n\n$$$$\nNHAc\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHAc\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AcNH\nM END\n> \nNHAc\n\n> \nAcNH\n\n$$$$\nm-Tol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 m-Tol\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nm-Tol\n\n$$$$\nPhe\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7125 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7125 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7125 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Phe\nM SAP 1 2 1 0 Al 10 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADThreo\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 ADThreo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADThreo\n\n$$$$\nH2SO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 H2SO4\nM SDS EXP 1 1\nM END\n> \nH2SO4\n\n$$$$\nC8\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.0000 -0.3524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4241 -0.4698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1701 -0.1175 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8482 -0.5873 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5942 -0.2349 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2723 -0.7047 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0183 -0.3524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 C8\nM SAP 1 2 1 0 1 8 0 2\nM SDS EXP 1 1\nM END\n> \nC8\n\n$$$$\nC7\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 C7\nM SAP 1 2 1 0 1 7 0 2\nM SDS EXP 1 1\nM END\n> \nC7\n\n$$$$\nC9\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 C9\nM SAP 1 2 1 0 1 9 0 2\nM SDS EXP 1 1\nM END\n> \nC9\n\n$$$$\nC4\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.0000 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7796 -0.5401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4032 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1827 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 C4\nM SAP 1 2 1 0 1 4 0 2\nM SDS EXP 1 1\nM END\n> \nC4\n\n$$$$\nC3\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 C3\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nC3\n\n$$$$\nC6\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.0000 -0.3278 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7571 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4195 -0.4917 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1766 -0.1639 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8390 -0.6556 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5961 -0.3278 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 C6\nM SAP 1 2 1 0 1 6 0 2\nM SDS EXP 1 1\nM END\n> \nC6\n\n$$$$\nC5\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 C5\nM SAP 1 2 1 0 1 5 0 2\nM SDS EXP 1 1\nM END\n> \nC5\n\n$$$$\nNHn-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHn-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuNH\nM END\n> \nNHn-Bu\n\n> \nn-BuNH\n\n$$$$\ni-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 i-C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-C4H9\n\n$$$$\nSO3H\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SO3H\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HO3S\nM END\n> \nSO3H\n\n> \nHO3S\n\n$$$$\nCOOneoAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOneoAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmOOC\nM END\n> \nCOOneoAm\n\n> \nneoAmOOC\n\n$$$$\nBDThreo\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 BDThreo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDThreo\n\n$$$$\nAc\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Ac\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAc\n\n$$$$\nAd\n Mrv15c7 12111511552D \n\n 10 12 0 0 0 0 999 V2000\n 0.1163 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -1.6585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -0.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -0.1208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -1.6156 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5873 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 4 10 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 2 9 1 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 5 6 1 0 0 0 0\n 8 10 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ad\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAd\n\n$$$$\nAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAm\n\n$$$$\nTacm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.1105 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Tacm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nTacm\n\n$$$$\nSuc\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Suc\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nSuc\n\n$$$$\nC2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 C2\nM SAP 1 2 1 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nC2\n\n$$$$\nc-C10H19\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 1.4289 1.5039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2391 1.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7792 1.0361 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5091 0.2566 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6990 0.1007 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.6789 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6188 -0.8348 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0787 -0.2111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3488 0.5684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1589 0.7243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 c-C10H19\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C10H19\n\n$$$$\nOSiME3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OSiME3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SiMe3O\nM END\n> \nOSiME3\n\n> \nSiMe3O\n\n$$$$\nPhF\n Mrv15c7 12111511552D \n\n 19 22 0 0 0 0 999 V2000\n 1.9339 -3.1605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -2.7480 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -1.9230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -1.5105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6484 -1.9230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6484 -2.7480 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -0.6855 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6014 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3464 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8985 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7054 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9604 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4084 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5214 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2665 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4595 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0925 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1624 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9694 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 7 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 PhF\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nPhF\n\n$$$$\n2-Fur\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 2-Fur\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \n2-Fur\n\n$$$$\nHis\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.8625 1.9393 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 2.3518 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.5679 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.6268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9804 -0.1554 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1554 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1018 0.6268 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 3.1768 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8625 3.5893 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 4 8 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 His\nM SAP 1 3 1 0 Al 9 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nBu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBu\n\n$$$$\nBt\n Mrv15c7 12111511552D \n\n 9 10 0 0 0 0 999 V2000\n 1.1387 -1.3654 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 1 9 1 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Bt\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBt\n\n$$$$\nBs\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Bs\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nBs\n\n$$$$\nNHn-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHn-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmNH\nM END\n> \nNHn-Am\n\n> \nn-AmNH\n\n$$$$\nPfp\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Pfp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nPfp\n\n$$$$\nBz\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Bz\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBz\n\n$$$$\nc-C6H11\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 c-C6H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C6H11\n\n$$$$\nBDArabif\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDArabif\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDArabif\n\n$$$$\nSta\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n -1.9393 -2.0250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9339 -1.1946 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.6464 -0.7821 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2214 -0.7875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2214 0.0375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -1.9339 0.4500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5036 0.4500 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.2143 0.0429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5036 1.2750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2143 1.6821 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9268 1.2696 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Sta\nM SAP 1 2 6 0 Al 10 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCO\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CO\nM SAP 1 2 1 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nCO\n\n$$$$\nBn\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Bn\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBn\n\n$$$$\nOn-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 On-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-PrO\nM END\n> \nOn-Pr\n\n> \nn-PrO\n\n$$$$\nBDArabip\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDArabip\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDArabip\n\n$$$$\nCN\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CN\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NC\nM END\n> \nCN\n\n> \nNC\n\n$$$$\nOSiEt3\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 3 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OSiEt3\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SiEt3O\nM END\n> \nOSiEt3\n\n> \nSiEt3O\n\n$$$$\nTMAH\n Mrv15c7 12111511552D \n\n 6 4 0 0 0 0 999 V2000\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM CHG 2 2 1 6 -1\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 TMAH\nM SDS EXP 1 1\nM END\n> \nTMAH\n\n$$$$\nCO2neo-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2neo-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmO2C\nM END\n> \nCO2neo-Am\n\n> \nneo-AmO2C\n\n$$$$\nCOCl\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COCl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ClCO\nM END\n> \nCOCl\n\n> \nClCO\n\n$$$$\nADArabip\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADArabip\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADArabip\n\n$$$$\nH2O2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 H2O2\nM SDS EXP 1 1\nM END\n> \nH2O2\n\n$$$$\nTec\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -4.5375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Tec\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nTec\n\n$$$$\ni-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 i-Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-Am\n\n$$$$\nCOOEt\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 COOEt\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtOOC\nM END\n> \nCOOEt\n\n> \nEtOOC\n\n$$$$\nLev\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Lev\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nLev\n\n$$$$\nLeu\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n -0.1929 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Leu\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADLyxof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADLyxof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADLyxof\n\n$$$$\nTcp\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Tcp\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nTcp\n\n$$$$\nCOCO\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.6500 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COCO\nM SAP 1 2 3 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nCOCO\n\n$$$$\nN3\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 N3\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nN3\n\n$$$$\nCOBr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COBr\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BrCO\nM END\n> \nCOBr\n\n> \nBrCO\n\n$$$$\nN2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 N2\nM SDS EXP 1 1\nM END\n> \nN2\n\n$$$$\nCOBu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuCO\nM END\n> \nCOBu\n\n> \nBuCO\n\n$$$$\nC23H47\n Mrv15c7 12111511552D \n\n 23 22 0 0 0 0 999 V2000\n 11.6605 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.3750 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.0895 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8039 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5184 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2329 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9474 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.6618 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.3763 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.0908 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.8052 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.5197 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.2342 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.9487 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.6631 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.3776 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.0921 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.8065 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.5210 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.2355 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.9499 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 26.6644 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.3789 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 C23H47\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H47C23\nM END\n> \nC23H47\n\n> \nH47C23\n\n$$$$\nHcy\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Hcy\nM SAP 1 3 1 0 Al 6 0 Br 5 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nMe\n Mrv15c7 12111511552D \n\n 1 0 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 1 1\nM SMT 1 Me\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMe\n\n$$$$\nCO2i-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2i-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmO2C\nM END\n> \nCO2i-Am\n\n> \ni-AmO2C\n\n$$$$\nADXylop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADXylop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADXylop\n\n$$$$\nEDC\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n -3.0493 1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3349 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6204 1.5395 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9059 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 EDC\nM SDS EXP 1 1\nM END\n> \nEDC\n\n$$$$\nNC\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NC\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CN\nM END\n> \nNC\n\n> \nCN\n\n$$$$\nCOOBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuOOC\nM END\n> \nCOOBu\n\n> \nBuOOC\n\n$$$$\nCO2n-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2n-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuO2C\nM END\n> \nCO2n-Bu\n\n> \nn-BuO2C\n\n$$$$\nPcb\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Pcb\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPcb\n\n$$$$\n4Abz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 4Abz\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \n4Abz\n\n$$$$\nneo-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 neo-C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nneo-C5H11\n\n$$$$\nADXylof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADXylof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADXylof\n\n$$$$\nMs\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Ms\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nMs\n\n$$$$\nO2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 O2\nM SDS EXP 1 1\nM END\n> \nO2\n\n$$$$\nNO\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NO\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ON\nM END\n> \nNO\n\n> \nON\n\n$$$$\nOK\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 OK\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KO\nM END\n> \nOK\n\n> \nKO\n\n$$$$\nXan\n Mrv15c7 12111511552D \n\n 14 16 0 0 0 0 999 V2000\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 2 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Xan\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nXan\n\n$$$$\nADLyxop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADLyxop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADLyxop\n\n$$$$\nCOOBn\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 COOBn\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnOOC\nM END\n> \nCOOBn\n\n> \nBnOOC\n\n$$$$\nTrisyl\n Mrv15c7 12111511552D \n\n 18 18 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 6 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 4 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\n 10 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 16 18 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Trisyl\nM SAP 1 1 16 0 1\nM SDS EXP 1 1\nM END\n> \nTrisyl\n\n$$$$\nDMAP\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DMAP\nM SDS EXP 1 1\nM END\n> \nDMAP\n\n$$$$\nSiEt3\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 SiEt3\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et3Si\nM END\n> \nSiEt3\n\n> \nEt3Si\n\n$$$$\nDdz\n Mrv15c7 12111511552D \n\n 16 16 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7309 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5559 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 7 10 2 0 0 0 0\n 3 10 1 0 0 0 0\n 5 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 11 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Ddz\nM SAP 1 1 15 0 1\nM SDS EXP 1 1\nM END\n> \nDdz\n\n$$$$\nNs\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Ns\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nNs\n\n$$$$\nDPIPS\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 5 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 DPIPS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDPIPS\n\n$$$$\nCO2n-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2n-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmO2C\nM END\n> \nCO2n-Am\n\n> \nn-AmO2C\n\n$$$$\nDSorbo\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DSorbo\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDSorbo\n\n$$$$\nMEM\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 MEM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMEM\n\n$$$$\nNp\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Np\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nNp\n\n$$$$\nHex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Hex\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nHex\n\n$$$$\nKMnO4\n Mrv15c7 12111511552D \n\n 6 4 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Mn 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 2 0 0 0 0\n 3 6 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 KMnO4\nM SDS EXP 1 1\nM END\n> \nKMnO4\n\n$$$$\nPbp\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Pbp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nPbp\n\n$$$$\nDRibul\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DRibul\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDRibul\n\n$$$$\nC3H7\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 C3H7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H7C3\nM END\n> \nC3H7\n\n> \nH7C3\n\n$$$$\ni-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 i-Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-Bu\n\n$$$$\nVal\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Val\nM SAP 1 2 5 0 Al 6 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nDIAD\n Mrv15c7 12111511552D \n\n 14 13 0 0 0 0 999 V2000\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 9 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 DIAD\nM SDS EXP 1 1\nM END\n> \nDIAD\n\n$$$$\nMe3N\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Me3N\nM SDS EXP 1 1\nM END\n> \nMe3N\n\n$$$$\nPbf\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 3.2789 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2789 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9934 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7079 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9934 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2789 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2789 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5645 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5645 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7798 1.0799 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2949 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6818 0.9645 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6818 -0.1395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7798 -0.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7079 -0.4125 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4223 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7079 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 11 14 1 0 0 0 0\n 8 14 1 0 0 0 0\n 5 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 15 17 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Pbf\nM SAP 1 1 15 0 1\nM SDS EXP 1 1\nM END\n> \nPbf\n\n$$$$\nDde\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Dde\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDde\n\n$$$$\nNHiAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHiAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmNH\nM END\n> \nNHiAm\n\n> \niAmNH\n\n$$$$\nOCN\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 OCN\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NCO\nM END\n> \nOCN\n\n> \nNCO\n\n$$$$\nOBn\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OBn\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnO\nM END\n> \nOBn\n\n> \nBnO\n\n$$$$\nc-C21H41\n Mrv15c7 12111511552D \n\n 21 21 0 0 0 0 999 V2000\n 3.3596 2.4353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9899 2.9676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6909 2.5327 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4939 1.7315 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8853 0.9180 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4504 0.2170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8400 -0.5102 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4050 -1.2112 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7947 -1.9384 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3597 -2.6395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5351 -2.6133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1002 -3.3143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2756 -3.2882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8860 -2.5610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3209 -1.8599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9313 -1.1328 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3662 -0.4317 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9766 0.2955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4115 0.9965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0219 1.7237 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4569 2.4247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 1 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 c-C21H41\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C21H41\n\n$$$$\nDTagat\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DTagat\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDTagat\n\n$$$$\nc-C25H49\n Mrv15c7 12111511552D \n\n 25 25 0 0 0 0 999 V2000\n 4.0795 3.1622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7073 3.6974 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4104 3.2657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2171 2.4637 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6122 1.6520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1806 0.9490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5736 0.2236 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1419 -0.4795 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5349 -1.2048 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1032 -1.9079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4962 -2.6333 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0645 -3.3363 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2398 -3.3140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8081 -4.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9834 -3.9947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5904 -3.2693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0221 -2.5662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6291 -1.8409 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0608 -1.1378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6678 -0.4124 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0995 0.2906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7065 1.0160 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1382 1.7190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7452 2.4444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1769 3.1474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\n 1 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 c-C25H49\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C25H49\n\n$$$$\nI2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 I2\nM SDS EXP 1 1\nM END\n> \nI2\n\n$$$$\nOTIPS\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.5230 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 4 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 OTIPS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TIPSO\nM END\n> \nOTIPS\n\n> \nTIPSO\n\n$$$$\nCO2tAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2tAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmO2C\nM END\n> \nCO2tAm\n\n> \ntAmO2C\n\n$$$$\nPac\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Pac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPac\n\n$$$$\nOH2+\n Mrv15c7 12111511552D \n\n 1 0 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 O 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 1 1 1\nM STY 1 1 SUP\nM SAL 1 1 1\nM SMT 1 OH2+\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 +H2O\nM END\n> \nOH2+\n\n> \n+H2O\n\n$$$$\nOneoAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OneoAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmO\nM END\n> \nOneoAm\n\n> \nneoAmO\n\n$$$$\nCPh3\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 CPh3\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Ph3C\nM END\n> \nCPh3\n\n> \nPh3C\n\n$$$$\nPal\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n 7.9480 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.6625 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.3770 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0914 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.8059 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.5204 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.2349 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.9493 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6638 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3783 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0927 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.8072 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.5217 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.2362 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.9506 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6651 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3796 5.4138 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Pal\nM SAP 1 1 16 0 1\nM SDS EXP 1 1\nM END\n> \nPal\n\n$$$$\nAc2O\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Ac2O\nM SDS EXP 1 1\nM END\n> \nAc2O\n\n$$$$\nBDLyxop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDLyxop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDLyxop\n\n$$$$\nNHt-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHt-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuNH\nM END\n> \nNHt-Bu\n\n> \nt-BuNH\n\n$$$$\nOAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmO\nM END\n> \nOAm\n\n> \nAmO\n\n$$$$\n2ClZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 2ClZ\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \n2ClZ\n\n$$$$\nXaa\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 R 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Xaa\nM SAP 1 2 1 0 Al 4 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nOi-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Oi-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmO\nM END\n> \nOi-Am\n\n> \ni-AmO\n\n$$$$\nBDLyxof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDLyxof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDLyxof\n\n$$$$\nOAc\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OAc\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AcO\nM END\n> \nOAc\n\n> \nAcO\n\n$$$$\nOTos\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 OTos\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TosO\nM END\n> \nOTos\n\n> \nTosO\n\n$$$$\nMCA\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 7 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 12 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 6 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 3 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 MCA\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMCA\n\n$$$$\nDan\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 4 13 1 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 14 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dan\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nDan\n\n$$$$\nIm\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Im\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nIm\n\n$$$$\nBam\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Bam\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBam\n\n$$$$\nFarnesyl\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 6.1875 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7750 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5375 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Farnesyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nFarnesyl\n\n$$$$\nc-C24H47\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 3.5724 2.7715 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0594 3.4374 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8796 3.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2128 2.5939 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7258 1.9279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0590 1.1732 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5720 0.5073 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9052 -0.2474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4182 -0.9133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7514 -1.6681 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2644 -2.3340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5976 -3.0887 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1106 -3.7546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2904 -3.6658 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9572 -2.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1370 -2.8223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8038 -2.0676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2908 -1.4017 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9576 -0.6470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4446 0.0190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1114 0.7737 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5984 1.4396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2651 2.1943 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7521 2.8602 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 1 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 c-C24H47\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C24H47\n\n$$$$\nDRibos\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DRibos\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDRibos\n\n$$$$\nCO2tBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2tBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuO2C\nM END\n> \nCO2tBu\n\n> \ntBuO2C\n\n$$$$\nCO2i-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2i-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-BuO2C\nM END\n> \nCO2i-Bu\n\n> \ni-BuO2C\n\n$$$$\nt-Butyl\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 t-Butyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nt-Butyl\n\n$$$$\nDErythu\n Mrv15c7 12111511552D \n\n 8 7 0 0 1 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DErythu\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDErythu\n\n$$$$\nCOOn-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOn-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmOOC\nM END\n> \nCOOn-Am\n\n> \nn-AmOOC\n\n$$$$\nDEryth\n Mrv15c7 12111511552D \n\n 8 7 0 0 1 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.9520 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DEryth\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDEryth\n\n$$$$\nIBX\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n 0.4243 -1.7779 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -1.3654 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4743 -2.1191 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8838 0.7541 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 2 12 1 0 0 0 0\n 7 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 IBX\nM SDS EXP 1 1\nM END\n> \nIBX\n\n$$$$\nCONEt2\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CONEt2\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et2NCO\nM END\n> \nCONEt2\n\n> \nEt2NCO\n\n$$$$\nOTre\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OTre\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TreO\nM END\n> \nOTre\n\n> \nTreO\n\n$$$$\nt-C6H13\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 t-C6H13\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nt-C6H13\n\n$$$$\nCOsBu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COsBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 sBuCO\nM END\n> \nCOsBu\n\n> \nsBuCO\n\n$$$$\nCOCF3\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COCF3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CF3CO\nM END\n> \nCOCF3\n\n> \nCF3CO\n\n$$$$\nCOOneo-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOneo-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmOOC\nM END\n> \nCOOneo-Am\n\n> \nneo-AmOOC\n\n$$$$\nDdiv\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 6 14 1 0 0 0 0\n 14 15 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Ddiv\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDdiv\n\n$$$$\nTBAF\n Mrv15c7 12111511552D \n\n 18 16 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 F 0 5 0 0 0 0 0 0 0 0 0 0\n 3.4032 2.7692 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 2.3567 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 1.5317 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 1.1192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 0.2942 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 4.8321 -0.5308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 -0.9433 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1177 -1.7683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 -2.1808 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0071 0.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5946 -0.4203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7696 -0.4203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3571 0.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6571 0.2942 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0696 -0.4203 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6571 -1.1347 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8321 -1.1347 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 6 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\nM CHG 2 1 -1 6 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 TBAF\nM SDS EXP 1 1\nM END\n> \nTBAF\n\n$$$$\nTFMSA\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.6500 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 1 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 2 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 TFMSA\nM SDS EXP 1 1\nM END\n> \nTFMSA\n\n$$$$\ncHx\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 cHx\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncHx\n\n$$$$\nEDCI\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n -3.0493 1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3349 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6204 1.5395 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9059 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 EDCI\nM SDS EXP 1 1\nM END\n> \nEDCI\n\n$$$$\nster\n Mrv15c7 12111511552D \n\n 17 20 0 0 0 0 999 V2000\n 2.8390 -1.6970 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0683 -2.4895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8928 -2.5163 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4247 -3.1470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2368 -3.0018 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5171 -2.2259 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9853 -1.5952 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2655 -0.8192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0777 -0.6740 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.6095 -1.3047 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.4216 -1.1595 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9534 -1.7902 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.6731 -2.5662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.8610 -2.7114 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3292 -2.0807 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1731 -1.7404 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5218 -1.2340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 6 15 1 0 0 0 0\n 10 15 1 0 0 0 0\n 7 16 1 0 0 0 0\n 3 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 1 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 ster\nM SDS EXP 1 1\nM END\n> \nster\n\n$$$$\nDIEA\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DIEA\nM SDS EXP 1 1\nM END\n> \nDIEA\n\n$$$$\nMOM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MOM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMOM\n\n$$$$\nSiMe3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SiMe3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me3Si\nM END\n> \nSiMe3\n\n> \nMe3Si\n\n$$$$\nTosyl\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tosyl\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTosyl\n\n$$$$\ns-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 s-Am\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-Am\n\n$$$$\nCOONa\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COONa\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaOOC\nM END\n> \nCOONa\n\n> \nNaOOC\n\n$$$$\nHSO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 1 3 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 HSO4\nM SDS EXP 1 1\nM END\n> \nHSO4\n\n$$$$\nDmnb\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 8 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\n 3 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Dmnb\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \nDmnb\n\n$$$$\nCOOn-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOn-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuOOC\nM END\n> \nCOOn-Bu\n\n> \nn-BuOOC\n\n$$$$\nCBr3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CBr3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Br3C\nM END\n> \nCBr3\n\n> \nBr3C\n\n$$$$\nDXylos\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DXylos\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDXylos\n\n$$$$\n4-OMe-Bz\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 3 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 4-OMe-Bz\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \n4-OMe-Bz\n\n$$$$\nEDANS\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0329 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6829 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 5 14 1 0 0 0 0\n 10 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 15 17 2 0 0 0 0\n 15 18 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 EDANS\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nEDANS\n\n$$$$\nCOtBu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COtBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuCO\nM END\n> \nCOtBu\n\n> \ntBuCO\n\n$$$$\nHMPA\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 HMPA\nM SDS EXP 1 1\nM END\n> \nHMPA\n\n$$$$\nTs\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ts\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTs\n\n$$$$\nTMP\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.1067 4.7652 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6078 4.3527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6078 3.5277 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 3.1152 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 2.2902 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.6548 1.8053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9097 1.0206 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.4248 0.3532 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.7347 1.0206 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -2.2197 0.3532 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8841 -0.4005 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3690 -1.0679 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8539 -1.7354 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.7016 -1.5528 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.0365 -0.5830 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9897 1.8053 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0367 3.5277 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.7512 3.1152 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0367 4.3527 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 4.7652 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.3222 5.5902 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 5 4 1 1 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 12 14 1 0 0 0 0\n 12 15 2 0 0 0 0\n 9 16 1 0 0 0 0\n 5 16 1 0 0 0 0\n 4 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 17 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 2 20 1 0 0 0 0\n 20 21 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 TMP\nM SDS EXP 1 1\nM END\n> \nTMP\n\n$$$$\nTMT\n Mrv15c7 12111511552D \n\n 25 27 0 0 0 0 999 V2000\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -3.5724 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.5724 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 13 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 10 17 1 0 0 0 0\n 9 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 21 24 1 0 0 0 0\n 24 25 2 0 0 0 0\n 18 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 TMT\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nTMT\n\n$$$$\nTMS\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 TMS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nTMS\n\n$$$$\nm-Phenylene\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.0000 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 m-Phenylene\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nm-Phenylene\n\n$$$$\nTf\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.6500 1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Tf\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTf\n\n$$$$\nAac\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Aac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAac\n\n$$$$\nDmoc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Dmoc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDmoc\n\n$$$$\nNva\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1929 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Nva\nM SAP 1 2 5 0 Al 6 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nN+Me3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM CHG 1 2 1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 N+Me3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me3N+\nM END\n> \nN+Me3\n\n> \nMe3N+\n\n$$$$\nCOOMe\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COOMe\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeOOC\nM END\n> \nCOOMe\n\n> \nMeOOC\n\n$$$$\nSu\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Su\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nSu\n\n$$$$\nAbu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Abu\nM SAP 1 2 4 0 Al 5 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nC5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H11C5\nM END\n> \nC5H11\n\n> \nH11C5\n\n$$$$\nCl2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Cl2\nM SDS EXP 1 1\nM END\n> \nCl2\n\n$$$$\nNaph\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Naph\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nNaph\n\n$$$$\nAbz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Abz\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nAbz\n\n$$$$\nAMCA\n Mrv15c7 12111511552D \n\n 15 16 0 0 0 0 999 V2000\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 2 15 1 0 0 0 0\n 9 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 AMCA\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nAMCA\n\n$$$$\nDMF\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 DMF\nM SDS EXP 1 1\nM END\n> \nDMF\n\n$$$$\nDME\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DME\nM SDS EXP 1 1\nM END\n> \nDME\n\n$$$$\nOSu\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0198 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OSu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SuO\nM END\n> \nOSu\n\n> \nSuO\n\n$$$$\nDMA\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DMA\nM SDS EXP 1 1\nM END\n> \nDMA\n\n$$$$\nAcN\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 AcN\nM SDS EXP 1 1\nM END\n> \nAcN\n\n$$$$\nMMT\n Mrv15c7 12111511552D \n\n 21 23 0 0 0 0 999 V2000\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 MMT\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMMT\n\n$$$$\nBiotinyl\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n -3.8821 0.6357 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n -3.3301 0.0226 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -2.9176 0.7371 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1106 0.5655 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0244 -0.2549 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -1.3099 -0.6674 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5955 -0.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1190 -0.6674 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8335 -0.2549 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5480 -0.6674 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2624 -0.2549 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.7781 -0.5905 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -2.2260 -1.2036 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n -3.1906 -1.3050 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -3.9975 -1.1334 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -4.6106 -1.6855 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -4.0838 -0.3130 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 5 12 1 0 0 0 0\n 2 12 1 0 0 0 0\n 12 13 1 6 0 0 0\n 12 14 1 1 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 15 17 1 0 0 0 0\n 2 17 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Biotinyl\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nBiotinyl\n\n$$$$\nc-C12H23\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 1 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 c-C12H23\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C12H23\n\n$$$$\nDMS\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 DMS\nM SDS EXP 1 1\nM END\n> \nDMS\n\n$$$$\nDMT\n Mrv15c7 12111511552D \n\n 23 25 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 19 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 16 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 DMT\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDMT\n\n$$$$\nOTf\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTf\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TfO\nM END\n> \nOTf\n\n> \nTfO\n\n$$$$\nOTs\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 OTs\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TsO\nM END\n> \nOTs\n\n> \nTsO\n\n$$$$\nEsc\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 4.5375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -2.2539 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 2 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Esc\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nEsc\n\n$$$$\nC4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H9C4\nM END\n> \nC4H9\n\n> \nH9C4\n\n$$$$\nAcm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Acm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAcm\n\n$$$$\nSs-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ss-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmS\nM END\n> \nSs-Am\n\n> \ns-AmS\n\n$$$$\nTHP\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 THP\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nTHP\n\n$$$$\nMTBE\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 MTBE\nM SDS EXP 1 1\nM END\n> \nMTBE\n\n$$$$\ncyclobutyl\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 cyclobutyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclobutyl\n\n$$$$\nCONMe2\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CONMe2\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me2NCO\nM END\n> \nCONMe2\n\n> \nMe2NCO\n\n$$$$\nn-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 n-C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C5H11\n\n$$$$\nTHF\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 THF\nM SDS EXP 1 1\nM END\n> \nTHF\n\n$$$$\nCH2CH2Ph\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CH2CH2Ph\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhCh2CH2\nM END\n> \nCH2CH2Ph\n\n> \nPhCh2CH2\n\n$$$$\nPv\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Pv\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPv\n\n$$$$\nPr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Pr\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPr\n\n$$$$\n2BrZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 2BrZ\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \n2BrZ\n\n$$$$\nSer\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4304 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ser\nM SAP 1 3 1 0 Al 5 0 Br 4 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nAde\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 2.7600 -1.7201 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0673 -1.2720 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3329 -1.6479 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1208 -2.4452 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2970 -2.4898 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.7201 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6402 -1.1998 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6819 -0.3759 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4163 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1090 -0.4481 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 2 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Ade\nM SAP 1 2 6 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nAde\n\n$$$$\nNHs-Bu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHs-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuNH\nM END\n> \nNHs-Bu\n\n> \ns-BuNH\n\n$$$$\nDGalac\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DGalac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDGalac\n\n$$$$\nPy\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Py\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPy\n\n$$$$\nGua\n Mrv15c7 12111511552D \n\n 11 12 0 0 0 0 999 V2000\n 3.4524 -2.3946 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7168 -2.0211 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0255 -2.4714 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2899 -2.0979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2455 -1.2741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4484 -1.0617 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.7542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5201 -2.3946 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9368 -0.8238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8925 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6724 -1.1973 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 4 8 1 0 0 0 0\n 5 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Gua\nM SAP 1 2 8 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nGua\n\n$$$$\nSO2Ph\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 SO2Ph\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhSO2\nM END\n> \nSO2Ph\n\n> \nPhSO2\n\n$$$$\nC24H49\n Mrv15c7 12111511552D \n\n 24 23 0 0 0 0 999 V2000\n 10.9461 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.6605 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.3750 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.0895 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8039 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5184 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2329 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9474 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.6618 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.3763 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.0908 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.8052 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.5197 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.2342 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.9487 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.6631 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.3776 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.0921 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.8065 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.5210 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.2355 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 25.9499 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 26.6644 7.1447 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 27.3789 7.5572 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 C24H49\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H49C24\nM END\n> \nC24H49\n\n> \nH49C24\n\n$$$$\nAlloc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Alloc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nAlloc\n\n$$$$\nCOOPr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COOPr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrOOC\nM END\n> \nCOOPr\n\n> \nPrOOC\n\n$$$$\nCONH2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 CONH2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NH2CO\nM END\n> \nCONH2\n\n> \nNH2CO\n\n$$$$\nPh\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ph\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPh\n\n$$$$\nc-C14H27\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 1.7862 0.8851 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3263 1.5088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 1.3529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4064 0.5733 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8664 -0.0503 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 -0.8299 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5963 -1.4535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7862 -1.2976 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2461 -1.9213 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 -1.7654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1659 -0.9858 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7060 -0.3622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 0.4174 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9760 1.0410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 1 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 c-C14H27\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C14H27\n\n$$$$\nPyl\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 1.6071 -1.6768 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9911 -1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.1875 -1.2964 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2250 -0.5786 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3268 0.0321 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0768 -0.3000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.7946 0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7946 0.9375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5071 -0.3000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2196 0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9375 -0.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6500 0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3625 -0.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0804 0.1125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 6.0804 0.9375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.7929 -0.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.5107 0.1125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 1 1 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 6 0 0 0\n 14 16 1 0 0 0 0\n 16 17 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Pyl\nM SAP 1 2 15 0 Al 16 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nn-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 n-C4H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C4H9\n\n$$$$\nCO2iPr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2iPr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrO2C\nM END\n> \nCO2iPr\n\n> \niPrO2C\n\n$$$$\nDansyl\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 4 13 1 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 14 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dansyl\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nDansyl\n\n$$$$\nAlCl3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Al 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 AlCl3\nM SDS EXP 1 1\nM END\n> \nAlCl3\n\n$$$$\nDHP\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DHP\nM SDS EXP 1 1\nM END\n> \nDHP\n\n$$$$\nOiPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrO\nM END\n> \nOiPr\n\n> \niPrO\n\n$$$$\nPOCl3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 POCl3\nM SDS EXP 1 1\nM END\n> \nPOCl3\n\n$$$$\nNaNO2\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NaNO2\nM SDS EXP 1 1\nM END\n> \nNaNO2\n\n$$$$\nNaNO3\n Mrv15c7 12111511552D \n\n 5 3 0 0 0 0 999 V2000\n 1.6500 1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 2 0 0 0 0\nM CHG 4 1 1 2 -1 3 1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NaNO3\nM SDS EXP 1 1\nM END\n> \nNaNO3\n\n$$$$\nTFE\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 TFE\nM SDS EXP 1 1\nM END\n> \nTFE\n\n$$$$\nCOOPh\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 COOPh\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhOOC\nM END\n> \nCOOPh\n\n> \nPhOOC\n\n$$$$\nDIC\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.8875 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DIC\nM SDS EXP 1 1\nM END\n> \nDIC\n\n$$$$\nNpys\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 4 10 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Npys\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nNpys\n\n$$$$\nSs-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Ss-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuS\nM END\n> \nSs-Bu\n\n> \ns-BuS\n\n$$$$\nTES\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TES\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nTES\n\n$$$$\nSK\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SK\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KS\nM END\n> \nSK\n\n> \nKS\n\n$$$$\nSec\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4304 0.0000 Se 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Sec\nM SAP 1 3 1 0 Al 5 0 Br 4 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCOEt\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COEt\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtCO\nM END\n> \nCOEt\n\n> \nEtCO\n\n$$$$\nIndole\n Mrv15c7 12111511552D \n\n 9 10 0 0 0 0 999 V2000\n -0.1435 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6284 -0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1435 -1.3654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6411 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0701 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3556 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Indole\nM SDS EXP 1 1\nM END\n> \nIndole\n\n$$$$\nNHs-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHs-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmNH\nM END\n> \nNHs-Am\n\n> \ns-AmNH\n\n$$$$\nCOOtAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOtAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmOOC\nM END\n> \nCOOtAm\n\n> \ntAmOOC\n\n$$$$\nOMs\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OMs\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MsO\nM END\n> \nOMs\n\n> \nMsO\n\n$$$$\nC12H25\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 3.5211 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2355 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6645 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3789 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0934 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8079 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5224 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2368 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9513 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6658 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3802 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 C12H25\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H25C12\nM END\n> \nC12H25\n\n> \nH25C12\n\n$$$$\nKOH\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 KOH\nM SDS EXP 1 1\nM END\n> \nKOH\n\n$$$$\ni-Pr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 i-Pr\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ni-Pr\n\n$$$$\nSO2Cl\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SO2Cl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ClSO2\nM END\n> \nSO2Cl\n\n> \nClSO2\n\n$$$$\ntAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 tAm\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \ntAm\n\n$$$$\nt-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 t-Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nt-Bu\n\n$$$$\nCOSH\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COSH\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HSCO\nM END\n> \nCOSH\n\n> \nHSCO\n\n$$$$\nNle\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7625 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Nle\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nOMe\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 OMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeO\nM END\n> \nOMe\n\n> \nMeO\n\n$$$$\nCpm\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.2382 1.7138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Cpm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCpm\n\n$$$$\nTcboc\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tcboc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTcboc\n\n$$$$\nUra\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 6 8 1 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Ura\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nUra\n\n$$$$\nBenzyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Benzyl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBenzyl\n\n$$$$\nONp\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\nM CHG 2 8 1 9 -1\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ONp\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NpO\nM END\n> \nONp\n\n> \nNpO\n\n$$$$\nSneoAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 SneoAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmS\nM END\n> \nSneoAm\n\n> \nneoAmS\n\n$$$$\nONa\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 ONa\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaO\nM END\n> \nONa\n\n> \nNaO\n\n$$$$\ni-C3H7\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 i-C3H7\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ni-C3H7\n\n$$$$\ntBu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 tBu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ntBu\n\n$$$$\nBDEryth\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 BDEryth\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDEryth\n\n$$$$\nMDPS\n Mrv15c7 12111511552D \n\n 14 15 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 9 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 MDPS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nMDPS\n\n$$$$\nBhoc\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 4 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 11 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Bhoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBhoc\n\n$$$$\nCO2n-Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2n-Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-PrO2C\nM END\n> \nCO2n-Pr\n\n> \nn-PrO2C\n\n$$$$\nt-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 t-Am\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nt-Am\n\n$$$$\nPro\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n -0.1446 2.3518 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2375 0.6268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9804 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1554 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1018 0.6268 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Pro\nM SAP 1 2 7 0 Al 2 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nAcet\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Acet\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAcet\n\n$$$$\nEtOH\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 EtOH\nM SDS EXP 1 1\nM END\n> \nEtOH\n\n$$$$\nOMe3Si\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OMe3Si\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SiMe3O\nM END\n> \nOMe3Si\n\n> \nSiMe3O\n\n$$$$\nTIPS\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 TIPS\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nTIPS\n\n$$$$\nBDGulos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDGulos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDGulos\n\n$$$$\nCOPh\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COPh\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhCO\nM END\n> \nCOPh\n\n> \nPhCO\n\n$$$$\nBDGluco\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDGluco\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDGluco\n\n$$$$\nCOPr\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 COPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrCO\nM END\n> \nCOPr\n\n> \nPrCO\n\n$$$$\nH3PO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 H3PO4\nM SDS EXP 1 1\nM END\n> \nH3PO4\n\n$$$$\nNMe2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NMe2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Me2N\nM END\n> \nNMe2\n\n> \nMe2N\n\n$$$$\n4BrZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 2 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 4BrZ\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n4BrZ\n\n$$$$\nDPsico\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DPsico\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDPsico\n\n$$$$\ns-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 s-C5H11\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-C5H11\n\n$$$$\nBDXylof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDXylof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDXylof\n\n$$$$\nC6H5\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 C6H5\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nC6H5\n\n$$$$\nAla\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 6 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Ala\nM SAP 1 2 3 0 Al 4 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nOLi\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Li 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 OLi\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 LiO\nM END\n> \nOLi\n\n> \nLiO\n\n$$$$\nCO2iBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2iBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iBuO2C\nM END\n> \nCO2iBu\n\n> \niBuO2C\n\n$$$$\nC7H15\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 C7H15\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H15C7\nM END\n> \nC7H15\n\n> \nH15C7\n\n$$$$\nBDXylop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDXylop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDXylop\n\n$$$$\nMTM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MTM\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nMTM\n\n$$$$\nc-C17H33\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 2.6371 1.7025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2708 2.2308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9690 1.7914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7669 0.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1531 0.1755 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7137 -0.5227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0987 -1.2524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 -1.9507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8348 -1.9192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3954 -2.6175 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5710 -2.5860 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1860 -1.8564 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6255 -1.1581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2405 -0.4285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6799 0.2698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2949 0.9994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7343 1.6977 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 1 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 c-C17H33\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C17H33\n\n$$$$\nHClO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 HClO4\nM SDS EXP 1 1\nM END\n> \nHClO4\n\n$$$$\nAMP\n Mrv15c7 12111511552D \n\n 23 25 0 0 1 0 999 V2000\n 0.7145 -1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7846 -0.2549 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2695 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7846 1.0799 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.0396 1.8646 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -1.8242 2.1195 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8242 2.9445 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -2.4916 3.4294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4054 4.2499 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.0728 4.7348 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -3.7403 5.2197 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.5879 5.4023 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -3.5577 4.0674 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.0396 3.1994 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7846 3.9841 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5546 2.5320 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.2704 2.5320 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 7 6 1 6 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 12 14 1 0 0 0 0\n 12 15 2 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 1 1 0 0 0\n 16 18 1 0 0 0 0\n 7 18 1 0 0 0 0\n 18 19 1 1 0 0 0\n 6 20 1 0 0 0 0\n 3 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 2 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 AMP\nM SDS EXP 1 1\nM END\n> \nAMP\n\n$$$$\nAll\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 All\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAll\n\n$$$$\nNps\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Nps\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nNps\n\n$$$$\ns-C4H9\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 s-C4H9\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-C4H9\n\n$$$$\nCO2iAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2iAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmO2C\nM END\n> \nCO2iAm\n\n> \niAmO2C\n\n$$$$\nOs-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Os-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuO\nM END\n> \nOs-Bu\n\n> \ns-BuO\n\n$$$$\nMSM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MSM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMSM\n\n$$$$\nCOOK\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 COOK\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KOOC\nM END\n> \nCOOK\n\n> \nKOOC\n\n$$$$\nCOOH\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COOH\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HOOC\nM END\n> \nCOOH\n\n> \nHOOC\n\n$$$$\nNpe\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\nM CHG 2 9 1 10 -1\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Npe\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nNpe\n\n$$$$\nCOiPr\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 COiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrCO\nM END\n> \nCOiPr\n\n> \niPrCO\n\n$$$$\nDNPS\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 4 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 2 0 0 0 0\nM CHG 4 1 -1 2 1 11 1 12 -1\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 DNPS\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nDNPS\n\n$$$$\nTPP\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM CHG 1 7 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 TPP\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTPP\n\n$$$$\nHippuryl\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Hippuryl\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nHippuryl\n\n$$$$\ncycloheptyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.8566 1.3632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5999 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7834 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2691 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4441 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0703 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1133 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 1 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 cycloheptyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncycloheptyl\n\n$$$$\nC16\n Mrv15c7 12111511552D \n\n 16 15 0 0 0 0 999 V2000\n 0.0000 -0.3847 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7298 -0.7694 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4279 -0.3298 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1577 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8558 -0.2748 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5856 -0.6595 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2837 -0.2198 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0135 -0.6046 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7115 -0.1649 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4413 -0.5496 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1394 -0.1099 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8692 -0.4946 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5673 -0.0550 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2971 -0.4397 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9952 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7250 -0.3847 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 C16\nM SAP 1 2 1 0 1 16 0 2\nM SDS EXP 1 1\nM END\n> \nC16\n\n$$$$\nC17\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 C17\nM SAP 1 2 1 0 1 17 0 2\nM SDS EXP 1 1\nM END\n> \nC17\n\n$$$$\nC18\n Mrv15c7 12111511552D \n\n 18 17 0 0 0 0 999 V2000\n 0.0000 -0.3880 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7281 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4281 -0.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1562 -0.0485 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8562 -0.4850 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5843 -0.0970 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2844 -0.5335 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0124 -0.1455 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7125 -0.5820 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4405 -0.1940 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1406 -0.6305 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8687 -0.2425 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5687 -0.6790 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2968 -0.2910 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9968 -0.7275 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7249 -0.3395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4249 -0.7760 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1530 -0.3880 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 C18\nM SAP 1 2 1 0 1 18 0 2\nM SDS EXP 1 1\nM END\n> \nC18\n\n$$$$\nC19\n Mrv15c7 12111511552D \n\n 19 18 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 C19\nM SAP 1 2 1 0 1 19 0 2\nM SDS EXP 1 1\nM END\n> \nC19\n\n$$$$\nCoA\n Mrv15c7 12111511552D \n\n 48 50 0 0 1 0 999 V2000\n 5.9065 -7.4227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3190 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.7315 -5.9937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6045 -6.2957 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8900 -6.7082 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1755 -6.2957 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7630 -7.0102 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5880 -5.5812 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4611 -5.8832 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7466 -6.2957 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1591 -7.0102 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3341 -5.5812 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0321 -6.7082 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3177 -6.2957 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6032 -6.7082 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.5169 -7.5287 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2900 -7.7002 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7025 -6.9857 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -1.5230 -6.8995 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1505 -6.3727 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3220 -5.5657 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2911 -5.0136 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8431 -5.6267 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2610 -4.4006 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9042 -4.4616 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6256 -8.4539 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2131 -9.1684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7651 -9.7815 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.5188 -9.4459 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.2725 -9.7815 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.3587 -10.6019 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -2.9399 -9.2965 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8537 -8.4761 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1000 -8.1405 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4326 -8.6254 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0334 -7.1207 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 7.0334 -7.9457 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 7.7479 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.7479 -5.8832 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 8.4624 -7.1207 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 9.1768 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.8913 -7.1207 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6058 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6058 -5.8832 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3202 -7.1207 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 12.0347 -6.7082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.7492 -7.1207 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.4637 -6.7082 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 2 0 0 0 0\n 10 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 15 14 1 1 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 6 0 0 0\n 18 20 1 0 0 0 0\n 15 20 1 0 0 0 0\n 20 21 1 6 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\n 22 25 2 0 0 0 0\n 17 26 1 1 0 0 0\n 26 27 1 0 0 0 0\n 27 28 2 0 0 0 0\n 28 29 1 0 0 0 0\n 29 30 2 0 0 0 0\n 30 31 1 0 0 0 0\n 30 32 1 0 0 0 0\n 32 33 2 0 0 0 0\n 33 34 1 0 0 0 0\n 34 35 2 0 0 0 0\n 26 35 1 0 0 0 0\n 29 35 1 0 0 0 0\n 2 36 1 0 0 0 0\n 36 37 1 6 0 0 0\n 36 38 1 0 0 0 0\n 38 39 2 0 0 0 0\n 38 40 1 0 0 0 0\n 40 41 1 0 0 0 0\n 41 42 1 0 0 0 0\n 42 43 1 0 0 0 0\n 43 44 2 0 0 0 0\n 43 45 1 0 0 0 0\n 45 46 1 0 0 0 0\n 46 47 1 0 0 0 0\n 47 48 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 15 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45\nM SAL 1 3 46 47 48\nM SMT 1 CoA\nM SAP 1 1 48 0 1\nM SDS EXP 1 1\nM END\n> \nCoA\n\n$$$$\ntHex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 tHex\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \ntHex\n\n$$$$\nGln\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Gln\nM SAP 1 3 1 0 Al 8 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nC10\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -0.3659 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7394 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4260 -0.4574 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1654 -0.0915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8520 -0.5489 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5914 -0.1830 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2780 -0.6404 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0174 -0.2744 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7040 -0.7318 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4435 -0.3659 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 C10\nM SAP 1 2 1 0 1 10 0 2\nM SDS EXP 1 1\nM END\n> \nC10\n\n$$$$\nGlp\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 1.2804 2.3518 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5679 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2375 0.6268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9804 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1554 -0.1554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3321 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1018 0.6268 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 6 8 1 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Glp\nM SAP 1 2 8 0 Al 1 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nBOP\n Mrv15c7 12111511552D \n\n 27 27 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4792 -1.6610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7342 -0.8764 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 -0.2633 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5411 -0.7049 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 5.3481 -0.5334 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6031 0.2513 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1181 0.9187 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6031 1.5861 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3877 1.3312 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1022 1.7437 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8166 1.3312 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8166 0.5062 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1022 0.0937 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3877 0.5062 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7127 -1.5119 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4973 -1.7668 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0996 -2.0639 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3696 0.1021 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9827 0.6541 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5850 0.3570 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 13 21 1 0 0 0 0\n 16 21 1 0 0 0 0\n 11 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\n 11 25 1 0 0 0 0\n 25 26 1 0 0 0 0\n 25 27 1 0 0 0 0\nM CHG 2 2 -1 11 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 12 16 17 18 19 20 21 22 23 24 25 26 27\nM SMT 1 BOP\nM SDS EXP 1 1\nM END\n> \nBOP\n\n$$$$\nC11\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 C11\nM SAP 1 2 1 0 1 11 0 2\nM SDS EXP 1 1\nM END\n> \nC11\n\n$$$$\nOi-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Oi-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrO\nM END\n> \nOi-Pr\n\n> \ni-PrO\n\n$$$$\nC12\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 0.0000 -0.3745 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7351 -0.7490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4270 -0.2996 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1621 -0.6741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8540 -0.2247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5891 -0.5992 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2809 -0.1498 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0160 -0.5243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7079 -0.0749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4430 -0.4494 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1349 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8700 -0.3745 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 C12\nM SAP 1 2 1 0 1 12 0 2\nM SDS EXP 1 1\nM END\n> \nC12\n\n$$$$\nC13\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 C13\nM SAP 1 2 1 0 1 13 0 2\nM SDS EXP 1 1\nM END\n> \nC13\n\n$$$$\nC14\n Mrv15c7 12111511552D \n\n 14 13 0 0 0 0 999 V2000\n 0.0000 -0.3804 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7321 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4275 -0.4438 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1596 -0.0634 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8551 -0.5072 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5871 -0.1268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2826 -0.5706 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0147 -0.1902 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7101 -0.6340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4422 -0.2536 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1377 -0.6974 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8697 -0.3170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5652 -0.7608 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2973 -0.3804 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 C14\nM SAP 1 2 1 0 1 14 0 2\nM SDS EXP 1 1\nM END\n> \nC14\n\n$$$$\nC20H41\n Mrv15c7 12111511552D \n\n 20 19 0 0 0 0 999 V2000\n 8.4711 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.1855 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9000 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6145 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3289 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.0434 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.7579 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.4724 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.1868 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.9013 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.6158 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.3302 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.0447 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.7592 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.4737 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.1881 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.9026 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.6171 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.3315 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.0460 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 C20H41\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H41C20\nM END\n> \nC20H41\n\n> \nH41C20\n\n$$$$\nC15\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 C15\nM SAP 1 2 1 0 1 15 0 2\nM SDS EXP 1 1\nM END\n> \nC15\n\n$$$$\nGlu\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Glu\nM SAP 1 3 1 0 Al 8 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nGlx\n Mrv15c7 12111511552D \n\n 9 8 1 0 0 0 999 V2000\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 L 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6054 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 6 F 2 7 8\nM ALS 6 2 F N O \nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Glx\nM SAP 1 2 1 0 Al 8 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nADTagat\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADTagat\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADTagat\n\n$$$$\nGly\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 Gly\nM SAP 1 2 1 0 Al 3 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nDXylul\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DXylul\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDXylul\n\n$$$$\nCH2CH3\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CH2CH3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CH3CH2\nM END\n> \nCH2CH3\n\n> \nCH3CH2\n\n$$$$\no-Phenylene\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 o-Phenylene\nM SAP 1 2 2 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \no-Phenylene\n\n$$$$\nADAltro\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADAltro\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADAltro\n\n$$$$\nCOOiPr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COOiPr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrOOC\nM END\n> \nCOOiPr\n\n> \niPrOOC\n\n$$$$\nC25\n Mrv15c7 12111511552D \n\n 25 24 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5749 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2894 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0039 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7184 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.4328 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.1473 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 C25\nM SAP 1 2 1 0 1 25 0 2\nM SDS EXP 1 1\nM END\n> \nC25\n\n$$$$\nC23\n Mrv15c7 12111511552D \n\n 23 22 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5749 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2894 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0039 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7184 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 C23\nM SAP 1 2 1 0 1 23 0 2\nM SDS EXP 1 1\nM END\n> \nC23\n\n$$$$\nC24\n Mrv15c7 12111511552D \n\n 24 23 0 0 0 0 999 V2000\n 0.0000 -0.3944 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7246 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4285 -0.4303 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1531 -0.0359 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8570 -0.4662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5816 -0.0717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2855 -0.5020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0101 -0.1076 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7140 -0.5379 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4386 -0.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1425 -0.5737 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8671 -0.1793 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5710 -0.6096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2955 -0.2151 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9994 -0.6454 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7240 -0.2510 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4279 -0.6813 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1525 -0.2869 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8564 -0.7172 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5810 -0.3227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2849 -0.7530 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0095 -0.3586 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.7134 -0.7889 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.4380 -0.3944 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 C24\nM SAP 1 2 1 0 1 24 0 2\nM SDS EXP 1 1\nM END\n> \nC24\n\n$$$$\nCOMU\n Mrv15c7 12111511552D \n\n 27 26 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 3.4650 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 3.0525 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 2.2275 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0218 1.8150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3073 2.2275 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0218 0.9900 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 0.5775 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 -0.2475 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 -0.6600 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 -1.4850 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 -1.8975 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 -2.7225 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4507 -3.1350 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 -2.7225 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7363 -1.8975 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 -0.2475 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 6.8797 -0.6600 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1652 0.5775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3073 0.5775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5929 0.1650 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 17 22 1 0 0 0 0\n 16 23 2 0 0 0 0\n 23 24 1 0 0 0 0\n 23 25 1 0 0 0 0\n 13 26 1 0 0 0 0\n 26 27 3 0 0 0 0\nM CHG 2 2 -1 23 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 12 16 17 18 19 20 21 22 23 24 25 26 27\nM SMT 1 COMU\nM SDS EXP 1 1\nM END\n> \nCOMU\n\n$$$$\nC21\n Mrv15c7 12111511552D \n\n 21 20 0 0 0 0 999 V2000\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8592 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5737 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2881 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0026 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7171 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4315 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1460 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8605 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5749 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2894 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 C21\nM SAP 1 2 1 0 1 21 0 2\nM SDS EXP 1 1\nM END\n> \nC21\n\n$$$$\nC22\n Mrv15c7 12111511552D \n\n 22 21 0 0 0 0 999 V2000\n 0.0000 -0.3927 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7255 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4284 -0.4320 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1539 -0.0393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8568 -0.4713 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5823 -0.0785 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2852 -0.5105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0107 -0.1178 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7136 -0.5498 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4391 -0.1571 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1420 -0.5891 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8675 -0.1964 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5704 -0.6283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2960 -0.2356 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9988 -0.6676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7244 -0.2749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4272 -0.7069 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1528 -0.3142 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8556 -0.7461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5812 -0.3534 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.2840 -0.7854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0096 -0.3927 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 C22\nM SAP 1 2 1 0 1 22 0 2\nM SDS EXP 1 1\nM END\n> \nC22\n\n$$$$\nC20\n Mrv15c7 12111511552D \n\n 20 19 0 0 0 0 999 V2000\n 0.0000 -0.3906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7267 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4283 -0.4340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1550 -0.0434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8566 -0.4774 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5832 -0.0868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2848 -0.5208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0115 -0.1302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7131 -0.5642 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4398 -0.1736 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1414 -0.6076 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8681 -0.2170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5697 -0.6510 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2964 -0.2604 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9980 -0.6944 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.7246 -0.3038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.4263 -0.7378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.1529 -0.3472 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.8545 -0.7812 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.5812 -0.3906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 C20\nM SAP 1 2 1 0 1 20 0 2\nM SDS EXP 1 1\nM END\n> \nC20\n\n$$$$\nCOOtBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOtBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuOOC\nM END\n> \nCOOtBu\n\n> \ntBuOOC\n\n$$$$\np-C6H4\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 p-C6H4\nM SAP 1 2 4 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \np-C6H4\n\n$$$$\nTNP\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 1.4289 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 2 0 0 0 0\n 6 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\nM CHG 6 1 -1 2 1 10 1 11 -1 13 1 14 -1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 TNP\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTNP\n\n$$$$\nAoa\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.0000 -0.5401 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7796 -0.8101 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4032 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1827 -0.5401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8064 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Aoa\nM SAP 1 2 1 0 1 4 0 2\nM SDS EXP 1 1\nM END\n> \nAoa\n\n$$$$\nPoc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Poc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nPoc\n\n$$$$\nHATU\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4792 1.7111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7342 0.9265 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 0.3134 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5411 0.7550 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -0.0297 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3112 -0.6971 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -1.3645 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 4.5411 -2.1492 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 5.5807 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5807 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 0.1279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 -1.5221 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0932 1.3680 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 5.9002 1.1965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8382 2.1527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 14 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\n 11 22 2 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\nM CHG 4 2 -1 14 1 15 -1 22 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 HATU\nM SDS EXP 1 1\nM END\n> \nHATU\n\n$$$$\n2-OHEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 2-OHEt\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \n2-OHEt\n\n$$$$\nCpe\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Cpe\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nCpe\n\n$$$$\nOPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 OPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrO\nM END\n> \nOPr\n\n> \nPrO\n\n$$$$\nPhacm\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Phacm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPhacm\n\n$$$$\no-Nos\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 o-Nos\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \no-Nos\n\n$$$$\nt-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 t-C5H11\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nt-C5H11\n\n$$$$\nOleoyl\n Mrv15c7 12111511552D \n\n 19 18 0 0 0 0 999 V2000\n -1.2888 7.5059 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5743 7.0934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.5743 6.2684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1401 5.8559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1401 5.0309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8546 4.6184 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8546 3.7934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5691 3.3809 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5691 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2836 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9980 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4270 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1414 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8559 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.5704 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2849 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9993 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7138 2.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 Oleoyl\nM SAP 1 1 18 0 1\nM SDS EXP 1 1\nM END\n> \nOleoyl\n\n$$$$\nN2+\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1 2 3 0 0 0 0\nM CHG 1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 N2+\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nN2+\n\n$$$$\nTroc\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Troc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTroc\n\n$$$$\nOPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 OPh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhO\nM END\n> \nOPh\n\n> \nPhO\n\n$$$$\nBDIdose\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDIdose\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDIdose\n\n$$$$\nCOMe\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeCO\nM END\n> \nCOMe\n\n> \nMeCO\n\n$$$$\nMPM\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 MPM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nMPM\n\n$$$$\nOs-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Os-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmO\nM END\n> \nOs-Am\n\n> \ns-AmO\n\n$$$$\nN+Et4\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM CHG 1 3 1\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 N+Et4\nM SDS EXP 1 1\nM MJS SAT 1 Et4N+\nM END\n> \nN+Et4\n\n> \nEt4N+\n\n$$$$\nSMPT\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.2700 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5401 -0.7796 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4032 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3502 -0.9355 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6203 -1.7150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4304 -1.8709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9705 -1.2473 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7806 -1.4032 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0507 -2.1827 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7004 -0.4677 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8903 -0.3118 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 4 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 SMPT\nM SAP 1 2 3 0 1 8 0 2\nM SDS EXP 1 1\nM END\n> \nSMPT\n\n$$$$\nN+Et3\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM CHG 1 3 1\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 N+Et3\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et3N+\nM END\n> \nN+Et3\n\n> \nEt3N+\n\n$$$$\nNHi-Pr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHi-Pr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrNH\nM END\n> \nNHi-Pr\n\n> \ni-PrNH\n\n$$$$\nCeoc\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 -1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 -1.0164 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Ceoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nCeoc\n\n$$$$\nBum\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Bum\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBum\n\n$$$$\nNHneo-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHneo-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmNH\nM END\n> \nNHneo-Am\n\n> \nneo-AmNH\n\n$$$$\nCOOiAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOiAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmOOC\nM END\n> \nCOOiAm\n\n> \niAmOOC\n\n$$$$\nPF6\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\nM CHG 1 2 -1\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 PF6\nM SDS EXP 1 1\nM END\n> \nPF6\n\n$$$$\nDManno\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DManno\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDManno\n\n$$$$\np-Phenylene\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 1.6500 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 p-Phenylene\nM SAP 1 2 4 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \np-Phenylene\n\n$$$$\nBtm\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Btm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBtm\n\n$$$$\nc-C9H17\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 1.1333 1.6186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9086 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3211 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1778 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5458 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7208 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0888 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0544 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3581 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 1 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 c-C9H17\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C9H17\n\n$$$$\nTyr\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n -0.7125 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7125 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4304 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7125 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7125 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 4 10 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Tyr\nM SAP 1 3 1 0 Al 11 0 Br 8 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCOOiBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOiBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iBuOOC\nM END\n> \nCOOiBu\n\n> \niBuOOC\n\n$$$$\nNpes\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\n 7 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 4 14 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Npes\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nNpes\n\n$$$$\nDTBS\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.6500 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 8 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 DTBS\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nDTBS\n\n$$$$\nIle\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n -0.1929 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Ile\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\n1-Naph\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 1-Naph\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \n1-Naph\n\n$$$$\nPyBOP\n Mrv15c7 12111511552D \n\n 33 36 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3537 -1.3465 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 -0.5396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8966 -0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5097 -0.6791 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1742 -1.4328 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3167 -0.5076 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 6.1237 -0.3360 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3786 0.4486 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8937 1.1160 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3786 1.7835 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1632 1.5285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8777 1.9410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5922 1.5285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5922 0.7035 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8777 0.2910 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1632 0.7035 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4882 -1.3145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2419 -1.6501 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1556 -2.4706 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3487 -2.6421 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9362 -1.9276 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1452 0.2994 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3915 0.6350 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4777 1.4554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2847 1.6270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6972 0.9125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 8 12 1 0 0 0 0\n 11 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 15 23 1 0 0 0 0\n 18 23 1 0 0 0 0\n 13 24 1 0 0 0 0\n 24 25 1 0 0 0 0\n 25 26 1 0 0 0 0\n 26 27 1 0 0 0 0\n 27 28 1 0 0 0 0\n 24 28 1 0 0 0 0\n 13 29 1 0 0 0 0\n 29 30 1 0 0 0 0\n 30 31 1 0 0 0 0\n 31 32 1 0 0 0 0\n 32 33 1 0 0 0 0\n 29 33 1 0 0 0 0\nM CHG 2 2 -1 13 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 3 31 32 33\nM SMT 1 PyBOP\nM SDS EXP 1 1\nM END\n> \nPyBOP\n\n$$$$\nPI3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PI3\nM SDS EXP 1 1\nM END\n> \nPI3\n\n$$$$\nADManno\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADManno\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADManno\n\n$$$$\nt-Hex\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 t-Hex\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nt-Hex\n\n$$$$\ndA\n Mrv15c7 12111511552D \n\n 21 23 0 0 1 0 999 V2000\n 0.6659 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6979 -0.8244 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4279 -1.2088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2020 -0.9236 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7125 -1.5717 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2538 -2.2575 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5390 -3.0316 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.3330 -3.2559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3650 -4.0803 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.0507 -4.5389 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9964 -5.3622 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6822 -5.8208 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2563 -5.7267 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5908 -4.3655 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.3666 -5.1594 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5669 -5.3622 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0804 -3.7174 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4599 -2.0332 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7620 -2.4731 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0320 -2.0887 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.2643 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 7 6 1 1 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 11 13 2 0 0 0 0\n 9 14 1 0 0 0 0\n 14 15 1 1 0 0 0\n 15 16 1 0 0 0 0\n 14 17 1 0 0 0 0\n 7 17 1 0 0 0 0\n 6 18 1 0 0 0 0\n 3 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 2 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 dA\nM SAP 1 2 16 0 1 11 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndA\n\n$$$$\ndC\n Mrv15c7 12111511552D \n\n 19 20 0 0 1 0 999 V2000\n 0.2426 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5278 -0.7741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3408 -0.9142 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6260 -1.6883 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4391 -1.8284 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0982 -2.3224 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2852 -2.1823 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4082 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3834 -3.0965 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1774 -3.3208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2094 -4.1452 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.8951 -4.6038 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8408 -5.4271 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5266 -5.8857 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1007 -5.7916 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4353 -4.4304 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2110 -5.2243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4113 -5.4271 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9248 -3.7823 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 9 6 1 1 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\n 11 16 1 0 0 0 0\n 16 17 1 1 0 0 0\n 17 18 1 0 0 0 0\n 16 19 1 0 0 0 0\n 9 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 dC\nM SAP 1 2 18 0 1 13 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndC\n\n$$$$\nOTMS\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OTMS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TMSO\nM END\n> \nOTMS\n\n> \nTMSO\n\n$$$$\nBzh\n Mrv15c7 12111511552D \n\n 13 14 0 0 0 0 999 V2000\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 1 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Bzh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBzh\n\n$$$$\nBzl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Bzl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBzl\n\n$$$$\nBDPsico\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 1 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDPsico\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDPsico\n\n$$$$\nDIPEA\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DIPEA\nM SDS EXP 1 1\nM END\n> \nDIPEA\n\n$$$$\nring25\n Mrv15c7 12111511552D \n\n 25 25 0 0 0 0 999 V2000\n 4.0795 3.1622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7073 3.6974 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4104 3.2657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2171 2.4637 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6122 1.6520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1806 0.9490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5736 0.2236 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1419 -0.4795 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5349 -1.2048 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1032 -1.9079 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4962 -2.6333 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0645 -3.3363 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2398 -3.3140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8081 -4.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9834 -3.9947 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5904 -3.2693 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0221 -2.5662 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6291 -1.8409 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0608 -1.1378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6678 -0.4124 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0995 0.2906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7065 1.0160 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1382 1.7190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7452 2.4444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1769 3.1474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 24 25 1 0 0 0 0\n 1 25 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 10 16 17 18 19 20 21 22 23 24 25\nM SMT 1 ring25\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring25\n\n$$$$\nring24\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 3.5724 2.7715 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0594 3.4374 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8796 3.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.2128 2.5939 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7258 1.9279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0590 1.1732 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5720 0.5073 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9052 -0.2474 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4182 -0.9133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7514 -1.6681 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2644 -2.3340 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5976 -3.0887 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1106 -3.7546 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2904 -3.6658 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9572 -2.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1370 -2.8223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8038 -2.0676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2908 -1.4017 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9576 -0.6470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4446 0.0190 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1114 0.7737 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5984 1.4396 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2651 2.1943 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7521 2.8602 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 1 0 0 0 0\n 1 24 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 ring24\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring24\n\n$$$$\nring23\n Mrv15c7 12111511552D \n\n 23 23 0 0 0 0 999 V2000\n 3.7198 2.9119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3672 3.4233 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0536 2.9656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8304 2.1714 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1950 1.3455 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7373 0.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1029 -0.0805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6452 -0.7669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0108 -1.5065 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5531 -2.1929 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9187 -2.9324 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4610 -3.6188 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6377 -3.5657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2721 -2.8261 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4489 -2.7729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0833 -2.0334 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5409 -1.3470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1753 -0.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6330 0.0790 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2674 0.8186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7251 1.5050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3595 2.2445 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8172 2.9309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 1 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 ring23\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring23\n\n$$$$\nring22\n Mrv15c7 12111511552D \n\n 22 22 0 0 0 0 999 V2000\n 3.2151 2.3029 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6850 2.9810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 2.9132 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8595 2.1673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3897 1.4891 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7421 0.7432 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2722 0.0650 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6246 -0.6810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1548 -1.3591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 -2.1051 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0373 -2.7832 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2151 -2.7154 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7453 -3.3935 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 -3.3257 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5707 -2.5798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0405 -1.9016 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6882 -1.1557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1580 -0.4775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8056 0.2685 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2755 0.9466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 1.6926 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3929 2.3707 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 1 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 ring22\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring22\n\n$$$$\nring20\n Mrv15c7 12111511552D \n\n 20 20 0 0 0 0 999 V2000\n 2.8579 2.0862 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3743 2.7295 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1897 2.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4887 1.8351 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9723 1.1917 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2712 0.4228 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7548 -0.2206 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0538 -0.9895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5374 -1.6329 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8364 -2.4018 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3199 -3.0452 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5045 -2.9197 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2056 -2.1507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3902 -2.0252 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0912 -1.2563 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6076 -0.6129 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3086 0.1560 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8251 0.7994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5261 1.5683 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0425 2.2117 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 1 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 ring20\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring20\n\n$$$$\nCO2i-Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2i-Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrO2C\nM END\n> \nCO2i-Pr\n\n> \ni-PrO2C\n\n$$$$\nring21\n Mrv15c7 12111511552D \n\n 21 21 0 0 0 0 999 V2000\n 3.3596 2.4353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9899 2.9676 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6909 2.5327 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4939 1.7315 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8853 0.9180 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4504 0.2170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8400 -0.5102 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4050 -1.2112 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7947 -1.9384 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3597 -2.6395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5351 -2.6133 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1002 -3.3143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2756 -3.2882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8860 -2.5610 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3209 -1.8599 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9313 -1.1328 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3662 -0.4317 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9766 0.2955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4115 0.9965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0219 1.7237 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4569 2.4247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 1 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 ring21\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring21\n\n$$$$\nDPPA\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 2.3645 0.1914 0.0000 N 0 5 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.5230 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 4 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 DPPA\nM SDS EXP 1 1\nM END\n> \nDPPA\n\n$$$$\nCOt-Bu\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COt-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuCO\nM END\n> \nCOt-Bu\n\n> \nt-BuCO\n\n$$$$\nc-C4H7\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 c-C4H7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C4H7\n\n$$$$\n3Py\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 3Py\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \n3Py\n\n$$$$\nNHneoAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHneoAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmNH\nM END\n> \nNHneoAm\n\n> \nneoAmNH\n\n$$$$\nCOOi-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOi-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmOOC\nM END\n> \nCOOi-Am\n\n> \ni-AmOOC\n\n$$$$\nC11H23\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 4.2355 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.6645 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.3789 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0934 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.8079 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.5224 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.2368 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9513 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6658 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3802 3.2704 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 C11H23\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H23C11\nM END\n> \nC11H23\n\n> \nH23C11\n\n$$$$\nADPsico\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADPsico\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADPsico\n\n$$$$\nring19\n Mrv15c7 12111511552D \n\n 19 19 0 0 0 0 999 V2000\n 2.9988 2.2083 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 2.7027 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3335 2.2273 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0898 1.4391 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4327 0.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9574 -0.0703 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3036 -0.8191 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8283 -1.4934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1745 -2.2422 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6992 -2.9165 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8776 -2.8419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5313 -2.0931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7097 -2.0186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3634 -1.2697 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8388 -0.5955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4925 0.1534 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9679 0.8276 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6216 1.5764 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0970 2.2507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 1 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 ring19\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring19\n\n$$$$\nring16\n Mrv15c7 12111511552D \n\n 16 16 0 0 0 0 999 V2000\n 2.1434 1.4223 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7183 2.0140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5182 1.8119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7432 1.0182 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1683 0.4265 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3932 -0.3673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8183 -0.9589 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0433 -1.7527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4684 -2.3444 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6685 -2.1423 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4435 -1.3486 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6436 -1.1466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4187 -0.3528 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9936 0.2389 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7686 1.0326 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3435 1.6243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 1 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 ring16\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring16\n\n$$$$\nring15\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 2.2742 1.5127 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9604 1.9708 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6081 1.4598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3222 0.6859 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6197 -0.1665 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1086 -0.8141 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4140 -1.5805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9030 -2.2282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0866 -2.1095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7812 -1.3431 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9648 -1.2244 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6594 -0.4580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1704 0.1897 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8650 0.9561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3760 1.6038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 1 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 ring15\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring15\n\n$$$$\nring18\n Mrv15c7 12111511552D \n\n 18 18 0 0 0 0 999 V2000\n 2.5006 1.5918 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9924 2.2542 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 2.1596 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1398 1.4025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6480 0.7401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9758 -0.0170 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4841 -0.6794 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8119 -1.4365 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3202 -2.0989 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5006 -2.0043 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0089 -2.6667 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 -2.5721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8615 -1.8150 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3533 -1.1526 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0255 -0.3955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5172 0.2669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1894 1.0240 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6811 1.6864 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 1 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 ring18\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring18\n\n$$$$\nring17\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 2.6371 1.7025 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2708 2.2308 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9690 1.7914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7669 0.9915 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1531 0.1755 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7137 -0.5227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0987 -1.2524 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 -1.9507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8348 -1.9192 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3954 -2.6175 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5710 -2.5860 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1860 -1.8564 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6255 -1.1581 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2405 -0.4285 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6799 0.2698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2949 0.9994 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7343 1.6977 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 1 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 ring17\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring17\n\n$$$$\nC18H37\n Mrv15c7 12111511552D \n\n 18 17 0 0 0 0 999 V2000\n 7.2336 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9480 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.6625 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.3770 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0914 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.8059 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.5204 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.2349 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.9493 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6638 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3783 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0927 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.8072 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.5217 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.2362 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.9506 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6651 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3796 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 C18H37\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H37C18\nM END\n> \nC18H37\n\n> \nH37C18\n\n$$$$\nring12\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 1 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ring12\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring12\n\n$$$$\nring11\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 1.5424 0.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2919 1.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8514 0.5812 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4477 -0.1383 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6078 -1.0268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0015 -1.5863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2138 -1.3410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0324 -0.5362 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2447 -0.2909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0633 0.5140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6696 1.0735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 1 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 ring11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring11\n\n$$$$\nring14\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 1.7862 0.8851 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3263 1.5088 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 1.3529 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4064 0.5733 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8664 -0.0503 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1364 -0.8299 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5963 -1.4535 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7862 -1.2976 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2461 -1.9213 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 -1.7654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1659 -0.9858 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7060 -0.3622 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4360 0.4174 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9760 1.0410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 1 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 ring14\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring14\n\n$$$$\ndT\n Mrv15c7 12111511552D \n\n 20 21 0 0 1 0 999 V2000\n 2.1113 -0.2801 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5834 -0.9142 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8687 -1.6883 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3408 -2.3224 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6260 -3.0965 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4200 -3.3208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4520 -4.1452 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1378 -4.6038 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0834 -5.4271 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7692 -5.8857 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3434 -5.7916 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6779 -4.4304 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4536 -5.2243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6539 -5.4271 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1674 -3.7823 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5278 -2.1823 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.8164 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2426 -1.4082 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7704 -0.7741 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4852 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 5 4 1 1 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\n 7 12 1 0 0 0 0\n 12 13 1 1 0 0 0\n 13 14 1 0 0 0 0\n 12 15 1 0 0 0 0\n 5 15 1 0 0 0 0\n 4 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 16 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 2 19 1 0 0 0 0\n 19 20 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 dT\nM SAP 1 2 14 0 1 9 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndT\n\n$$$$\nring13\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 1.9097 0.9582 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5480 1.4809 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2423 1.0353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0331 0.2372 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4121 -0.5822 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9665 -1.2765 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1424 -1.2378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6968 -1.9321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8727 -1.8933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4942 -1.1603 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9398 -0.4660 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5613 0.2671 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0069 0.9614 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 1 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 ring13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring13\n\n$$$$\nring10\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 1.4289 1.5039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2391 1.6598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7792 1.0361 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5091 0.2566 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6990 0.1007 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.6789 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6188 -0.8348 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0787 -0.2111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3488 0.5684 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1589 0.7243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ring10\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring10\n\n$$$$\nCOOi-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOi-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-BuOOC\nM END\n> \nCOOi-Bu\n\n> \ni-BuOOC\n\n$$$$\nBDAltro\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDAltro\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDAltro\n\n$$$$\nCO2neoAm\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2neoAm\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neoAmO2C\nM END\n> \nCO2neoAm\n\n> \nneoAmO2C\n\n$$$$\nNaCl\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NaCl\nM SDS EXP 1 1\nM END\n> \nNaCl\n\n$$$$\nNHBoc\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.4125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NHBoc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BocNH\nM END\n> \nNHBoc\n\n> \nBocNH\n\n$$$$\ndG\n Mrv15c7 12111511552D \n\n 22 24 0 0 1 0 999 V2000\n 3.2237 -1.0602 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4072 -1.1782 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1011 -1.9443 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2846 -2.0624 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7741 -1.4142 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6995 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0320 -2.5238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8260 -2.7481 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1112 -3.5222 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.9051 -3.7465 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9371 -4.5709 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.6229 -5.0296 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5686 -5.8528 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2543 -6.3114 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8285 -6.2173 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1630 -4.8561 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.9387 -5.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1390 -5.8528 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6525 -4.2080 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0802 -0.6481 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5697 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8967 -0.5301 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 4 8 1 0 0 0 0\n 9 8 1 1 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 2 0 0 0 0\n 11 16 1 0 0 0 0\n 16 17 1 1 0 0 0\n 17 18 1 0 0 0 0\n 16 19 1 0 0 0 0\n 9 19 1 0 0 0 0\n 5 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 20 22 1 0 0 0 0\n 2 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 dG\nM SAP 1 2 18 0 1 13 0 2\nM SCL 1 DNA\nM SDS EXP 1 1\nM END\n> \ndG\n\n$$$$\nPMB\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 PMB\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPMB\n\n$$$$\nMMTr\n Mrv15c7 12111511552D \n\n 21 23 0 0 0 0 999 V2000\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 MMTr\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMMTr\n\n$$$$\nDTalos\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DTalos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDTalos\n\n$$$$\nHOAt\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.8838 -2.1500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -1.3654 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 HOAt\nM SDS EXP 1 1\nM END\n> \nHOAt\n\n$$$$\nCO2sBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2sBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 sBuO2C\nM END\n> \nCO2sBu\n\n> \nsBuO2C\n\n$$$$\nPMP\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PMP\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nPMP\n\n$$$$\np-Tol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 p-Tol\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \np-Tol\n\n$$$$\nBDRibop\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDRibop\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDRibop\n\n$$$$\nSn-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Sn-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuS\nM END\n> \nSn-Bu\n\n> \nn-BuS\n\n$$$$\nSO2NH2\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SO2NH2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NH2SO2\nM END\n> \nSO2NH2\n\n> \nNH2SO2\n\n$$$$\nLys\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 1.0446 1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7625 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Lys\nM SAP 1 3 7 0 Al 8 0 Br 1 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nHOBt\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.8838 -2.1500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -1.3654 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 -0.6979 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 -0.0305 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.1271 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -0.2854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 -1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 2 10 1 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 HOBt\nM SDS EXP 1 1\nM END\n> \nHOBt\n\n$$$$\nBDRibof\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 BDRibof\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDRibof\n\n$$$$\nOiAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OiAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmO\nM END\n> \nOiAm\n\n> \niAmO\n\n$$$$\ncHex\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 cHex\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \ncHex\n\n$$$$\nn-C6H13\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 n-C6H13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C6H13\n\n$$$$\nC14H29\n Mrv15c7 12111511552D \n\n 14 13 0 0 0 0 999 V2000\n 4.7586 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.4730 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.1875 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.9020 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.6164 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.3309 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.0454 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.7599 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.4743 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1888 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.9033 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.6177 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.3322 3.5724 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.0467 3.9849 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 C14H29\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H29C14\nM END\n> \nC14H29\n\n> \nH29C14\n\n$$$$\ns-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 s-Bu\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \ns-Bu\n\n$$$$\nMDIPS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 MDIPS\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nMDIPS\n\n$$$$\nTBS\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TBS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nTBS\n\n$$$$\nTBT\n Mrv15c7 12111511552D \n\n 33 33 0 0 0 0 999 V2000\n 2.1434 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0164 3.1895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8414 1.7605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8414 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.0164 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9684 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3184 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2704 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4454 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 1.7605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 3.1895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\n 13 16 1 0 0 0 0\n 12 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 17 19 1 0 0 0 0\n 17 20 1 0 0 0 0\n 8 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\n 22 25 1 0 0 0 0\n 21 26 1 0 0 0 0\n 26 27 1 0 0 0 0\n 26 28 1 0 0 0 0\n 26 29 1 0 0 0 0\n 5 30 1 0 0 0 0\n 30 31 1 0 0 0 0\n 30 32 1 0 0 0 0\n 30 33 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 3 31 32 33\nM SMT 1 TBT\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTBT\n\n$$$$\nDNBZ\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 1.4289 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 8 11 2 0 0 0 0\n 4 11 1 0 0 0 0\n 6 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 12 14 2 0 0 0 0\nM CHG 4 1 -1 2 1 12 1 13 -1\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 DNBZ\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDNBZ\n\n$$$$\ntrans-Cinnamyl\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 trans-Cinnamyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ntrans-Cinnamyl\n\n$$$$\nc-C23H45\n Mrv15c7 12111511552D \n\n 23 23 0 0 0 0 999 V2000\n 3.7198 2.9119 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3672 3.4233 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0536 2.9656 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8304 2.1714 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1950 1.3455 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7373 0.6591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1029 -0.0805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6452 -0.7669 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0108 -1.5065 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5531 -2.1929 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9187 -2.9324 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4610 -3.6188 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6377 -3.5657 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2721 -2.8261 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4489 -2.7729 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0833 -2.0334 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5409 -1.3470 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1753 -0.6074 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6330 0.0790 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2674 0.8186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7251 1.5050 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3595 2.2445 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8172 2.9309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 22 23 1 0 0 0 0\n 1 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 c-C23H45\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C23H45\n\n$$$$\nPO3H\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\nM CHG 1 1 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PO3H\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HO3P\nM END\n> \nPO3H\n\n> \nHO3P\n\n$$$$\nH2PO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 H2PO4\nM SDS EXP 1 1\nM END\n> \nH2PO4\n\n$$$$\nOxyma\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 3.3000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Oxyma\nM SDS EXP 1 1\nM END\n> \nOxyma\n\n$$$$\nSn-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Sn-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmS\nM END\n> \nSn-Am\n\n> \nn-AmS\n\n$$$$\nDEAD\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 2.0625 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DEAD\nM SDS EXP 1 1\nM END\n> \nDEAD\n\n$$$$\nMes\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 2 0 0 0 0\n 2 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Mes\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nMes\n\n$$$$\nDEAE\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 DEAE\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDEAE\n\n$$$$\nMet\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7625 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Met\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nNEt2\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NEt2\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Et2N\nM END\n> \nNEt2\n\n> \nEt2N\n\n$$$$\nNEt3\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 NEt3\nM SDS EXP 1 1\nM MJS SAT 1 Et3N\nM END\n> \nNEt3\n\n> \nEt3N\n\n$$$$\nB2H6\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 B 0 0 0 0 0 4 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 B 0 0 0 0 0 4 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 B2H6\nM SDS EXP 1 1\nM END\n> \nB2H6\n\n$$$$\nPyrim\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Pyrim\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPyrim\n\n$$$$\nMeb\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Meb\nM SDS EXP 1 1\nM END\n> \nMeb\n\n$$$$\nm-C6H4\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.0000 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 m-C6H4\nM SAP 1 2 1 0 1 3 0 2\nM SDS EXP 1 1\nM END\n> \nm-C6H4\n\n$$$$\nneo-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 neo-Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nneo-Am\n\n$$$$\no-Tolyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 o-Tolyl\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \no-Tolyl\n\n$$$$\nTDS\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 TDS\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTDS\n\n$$$$\nScm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Scm\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nScm\n\n$$$$\nDmab\n Mrv15c7 12111511552D \n\n 23 24 0 0 0 0 999 V2000\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2494 0.0862 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 7 13 1 0 0 0 0\n 5 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 15 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 18 20 1 0 0 0 0\n 18 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 14 22 1 0 0 0 0\n 22 23 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 Dmab\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \nDmab\n\n$$$$\nSiAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 SiAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iAmS\nM END\n> \nSiAm\n\n> \niAmS\n\n$$$$\n5-TAMRA\n Mrv15c7 12111511552D \n\n 31 34 0 0 0 0 999 V2000\n 5.7158 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0573 -0.5701 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 11 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 6 17 1 0 0 0 0\n 14 18 2 0 0 0 0\n 18 19 1 0 0 0 0\n 18 20 1 0 0 0 0\n 10 21 1 0 0 0 0\n 21 22 2 0 0 0 0\n 22 23 1 0 0 0 0\n 23 24 2 0 0 0 0\n 24 25 1 0 0 0 0\n 25 26 2 0 0 0 0\n 24 27 1 0 0 0 0\n 27 28 2 0 0 0 0\n 21 28 1 0 0 0 0\n 22 29 1 0 0 0 0\n 29 30 1 0 0 0 0\n 29 31 2 0 0 0 0\nM CHG 2 18 1 30 -1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\nM SAL 1 1 31\nM SMT 1 5-TAMRA\nM SAP 1 1 25 0 1\nM SDS EXP 1 1\nM END\n> \n5-TAMRA\n\n$$$$\nTEA\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TEA\nM SDS EXP 1 1\nM END\n> \nTEA\n\n$$$$\nStAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 StAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmS\nM END\n> \nStAm\n\n> \ntAmS\n\n$$$$\nADGalac\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADGalac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADGalac\n\n$$$$\nCCl4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CCl4\nM SDS EXP 1 1\nM END\n> \nCCl4\n\n$$$$\nStBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 StBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuS\nM END\n> \nStBu\n\n> \ntBuS\n\n$$$$\nSar\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Sar\nM SAP 1 2 2 0 Al 4 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nCCl3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CCl3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Cl3C\nM END\n> \nCCl3\n\n> \nCl3C\n\n$$$$\nNosyl\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Nosyl\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nNosyl\n\n$$$$\nNIS\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0198 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NIS\nM SDS EXP 1 1\nM END\n> \nNIS\n\n$$$$\nBDSorbo\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 1 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDSorbo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDSorbo\n\n$$$$\nNHZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHZ\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 ZNH\nM END\n> \nNHZ\n\n> \nZNH\n\n$$$$\nC2H5\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 C2H5\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H5C2\nM END\n> \nC2H5\n\n> \nH5C2\n\n$$$$\nFpmp\n Mrv15c7 12111511552D \n\n 15 16 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 9 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 Fpmp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nFpmp\n\n$$$$\nTEMPO\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 1.2448 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1842 1.8695 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.2822 -0.7752 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8125 0.1433 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\nM RAD 1 11 2\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 TEMPO\nM SDS EXP 1 1\nM END\n> \nTEMPO\n\n$$$$\nCOOi-Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 COOi-Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-PrOOC\nM END\n> \nCOOi-Pr\n\n> \ni-PrOOC\n\n$$$$\nPCC\n Mrv15c7 12111511552D \n\n 11 10 0 0 0 0 999 V2000\n 0.0000 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cr 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4252 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1397 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1397 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4252 -0.8250 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 2.7107 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7107 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM CHG 2 1 -1 9 1\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 PCC\nM SDS EXP 1 1\nM END\n> \nPCC\n\n$$$$\nADSorbo\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 6 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADSorbo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADSorbo\n\n$$$$\nHCl\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 HCl\nM SDS EXP 1 1\nM END\n> \nHCl\n\n$$$$\nNBS\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0198 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NBS\nM SDS EXP 1 1\nM END\n> \nNBS\n\n$$$$\nEthyl\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Ethyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nEthyl\n\n$$$$\nBDManno\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDManno\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDManno\n\n$$$$\nPipoc\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Pipoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nPipoc\n\n$$$$\nAllyl\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 Allyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nAllyl\n\n$$$$\nNCO\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NCO\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 OCN\nM END\n> \nNCO\n\n> \nOCN\n\n$$$$\nMal\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Mal\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nMal\n\n$$$$\nNCS\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NCS\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 SCN\nM END\n> \nNCS\n\n> \nSCN\n\n$$$$\nDLyxos\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DLyxos\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDLyxos\n\n$$$$\nDDQ\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 3 0 0 0 0\n 7 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 3 0 0 0 0\n 10 13 1 0 0 0 0\n 2 13 1 0 0 0 0\n 13 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 DDQ\nM SDS EXP 1 1\nM END\n> \nDDQ\n\n$$$$\nTBMPS\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8414 1.7605 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0164 3.1895 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 3 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 TBMPS\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nTBMPS\n\n$$$$\nCbz\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Cbz\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nCbz\n\n$$$$\nDCC\n Mrv15c7 12111511552D \n\n 15 16 0 0 0 0 999 V2000\n 3.5724 -2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 1.2375 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1447 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4302 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 10 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 DCC\nM SDS EXP 1 1\nM END\n> \nDCC\n\n$$$$\nTrityl\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 Trityl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTrityl\n\n$$$$\nDCE\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 DCE\nM SDS EXP 1 1\nM END\n> \nDCE\n\n$$$$\nMbs\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Mbs\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nMbs\n\n$$$$\n2Pip\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 2Pip\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \n2Pip\n\n$$$$\nDCB\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DCB\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDCB\n\n$$$$\nOneo-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Oneo-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmO\nM END\n> \nOneo-Am\n\n> \nneo-AmO\n\n$$$$\nDCM\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 DCM\nM SDS EXP 1 1\nM END\n> \nDCM\n\n$$$$\nc-C19H37\n Mrv15c7 12111511552D \n\n 19 19 0 0 0 0 999 V2000\n 2.9988 2.2083 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6592 2.7027 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3335 2.2273 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0898 1.4391 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4327 0.6040 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9574 -0.0703 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3036 -0.8191 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.8283 -1.4934 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1745 -2.2422 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6992 -2.9165 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8776 -2.8419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5313 -2.0931 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7097 -2.0186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3634 -1.2697 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8388 -0.5955 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4925 0.1534 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9679 0.8276 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6216 1.5764 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0970 2.2507 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 1 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 c-C19H37\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C19H37\n\n$$$$\nMbh\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 11 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 8 15 1 0 0 0 0\n 6 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 3 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Mbh\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nMbh\n\n$$$$\nSt-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 St-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmS\nM END\n> \nSt-Am\n\n> \nt-AmS\n\n$$$$\nDIdose\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DIdose\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDIdose\n\n$$$$\nDThreo\n Mrv15c7 12111511552D \n\n 8 7 0 0 1 0 999 V2000\n -0.1914 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.9520 1.9520 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DThreo\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDThreo\n\n$$$$\nDAllos\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DAllos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDAllos\n\n$$$$\nDAltro\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DAltro\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDAltro\n\n$$$$\nPO3H2\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PO3H2\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H2PO3\nM END\n> \nPO3H2\n\n> \nH2PO3\n\n$$$$\nC22H45\n Mrv15c7 12111511552D \n\n 22 21 0 0 0 0 999 V2000\n 9.7086 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.4230 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1375 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.8520 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.5664 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.2809 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.9954 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.7099 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.4243 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.1388 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.8533 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.5677 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.2822 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.9967 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.7112 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.4256 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.1401 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.8546 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.5690 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.2835 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.9980 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.7124 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 C22H45\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H45C22\nM END\n> \nC22H45\n\n> \nH45C22\n\n$$$$\nPdCl2\n Mrv15c7 12111511552D \n\n 3 0 0 0 0 0 999 V2000\n 0.4125 0.0000 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0\n 2.7696 0.0000 0.0000 Cl 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.0000 0.0000 Pd 0 2 0 0 0 0 0 0 0 0 0 0\nM CHG 3 1 -1 2 -1 3 2\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 PdCl2\nM SDS EXP 1 1\nM END\n> \nPdCl2\n\n$$$$\nADAarabif\n Mrv15c7 12111511552D \n\n 10 10 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 2 9 1 0 0 0 0\n 9 10 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 ADAarabif\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADAarabif\n\n$$$$\nPBr3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PBr3\nM SDS EXP 1 1\nM END\n> \nPBr3\n\n$$$$\nSt-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 St-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuS\nM END\n> \nSt-Bu\n\n> \nt-BuS\n\n$$$$\nSMCC\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 5.1309 -2.2763 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.9716 -1.4668 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1909 -1.2000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0316 -0.3906 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2510 -0.1238 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6296 -0.6665 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8489 -0.3997 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2275 -0.9424 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4233 -0.7587 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0991 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.4668 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5427 -2.0882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3014 -1.7641 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0095 -2.1873 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7889 -1.4759 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5696 -1.7427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 8 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 6 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 3 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 SMCC\nM SAP 1 2 11 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nSMCC\n\n$$$$\nNHi-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHi-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmNH\nM END\n> \nNHi-Am\n\n> \ni-AmNH\n\n$$$$\nCO2Bn\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 CO2Bn\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BnO2C\nM END\n> \nCO2Bn\n\n> \nBnO2C\n\n$$$$\nTfa\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Tfa\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTfa\n\n$$$$\nOt-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Ot-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuO\nM END\n> \nOt-Bu\n\n> \nt-BuO\n\n$$$$\nPMBM\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 4 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 PMBM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPMBM\n\n$$$$\nCO2Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuO2C\nM END\n> \nCO2Bu\n\n> \nBuO2C\n\n$$$$\nOTBS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.8250 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTBS\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TBSO\nM END\n> \nOTBS\n\n> \nTBSO\n\n$$$$\nSneo-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Sneo-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 neo-AmS\nM END\n> \nSneo-Am\n\n> \nneo-AmS\n\n$$$$\nTBDPS\n Mrv15c7 12111511552D \n\n 17 18 0 0 0 0 999 V2000\n 0.4125 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 5 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 TBDPS\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTBDPS\n\n$$$$\nMnO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 Mn 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 MnO2\nM SDS EXP 1 1\nM END\n> \nMnO2\n\n$$$$\nNpeoc\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n -2.1434 0.4125 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -2.8579 1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 4 14 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Npeoc\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \nNpeoc\n\n$$$$\nHPO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 2 3 -1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 HPO4\nM SDS EXP 1 1\nM END\n> \nHPO4\n\n$$$$\nDmb\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 8 11 2 0 0 0 0\n 3 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Dmb\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nDmb\n\n$$$$\nPhenyl\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Phenyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nPhenyl\n\n$$$$\n2-4DCZ\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 2 0 0 0 0\n 2 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 2-4DCZ\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n2-4DCZ\n\n$$$$\nCO2Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmO2C\nM END\n> \nCO2Am\n\n> \nAmO2C\n\n$$$$\nOt-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Ot-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmO\nM END\n> \nOt-Am\n\n> \nt-AmO\n\n$$$$\nBDFruct\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 1.9268 1.5559 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1198 1.7274 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.0157 1.7274 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4652 -0.8227 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2857 -0.7365 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 3 2 1 1 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 6 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 3 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDFruct\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDFruct\n\n$$$$\ncyclooctyl\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.9959 1.4904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0738 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 -0.6654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0821 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 1 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 cyclooctyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclooctyl\n\n$$$$\nNBu4\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n -1.4289 3.9039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 3.4914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 2.6664 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 2.2539 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 1.4289 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 0.1914 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.6336 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.0461 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 5 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\nM CHG 1 5 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 NBu4\nM SDS EXP 1 1\nM END\n> \nNBu4\n\n$$$$\nC17H35\n Mrv15c7 12111511552D \n\n 17 16 0 0 0 0 999 V2000\n 7.9480 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.6625 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.3770 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.0914 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.8059 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.5204 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.2349 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.9493 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.6638 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.3783 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.0927 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.8072 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.5217 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.2362 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.9506 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.6651 5.0013 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.3796 5.4138 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 C17H35\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H35C17\nM END\n> \nC17H35\n\n> \nH35C17\n\n$$$$\nHNO3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 HNO3\nM SDS EXP 1 1\nM END\n> \nHNO3\n\n$$$$\nNO3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NO3\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 O3N\nM END\n> \nNO3\n\n> \nO3N\n\n$$$$\n4ClZ\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 2 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 4ClZ\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n4ClZ\n\n$$$$\nHNO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 HNO2\nM SDS EXP 1 1\nM END\n> \nHNO2\n\n$$$$\nNO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.9520 -1.1270 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NO2\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 O2N\nM END\n> \nNO2\n\n> \nO2N\n\n$$$$\nNitroso\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Nitroso\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nNitroso\n\n$$$$\niPr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 iPr\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \niPr\n\n$$$$\nBenzoyl\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Benzoyl\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nBenzoyl\n\n$$$$\nMob\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 3 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Mob\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nMob\n\n$$$$\nSAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 SAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 AmS\nM END\n> \nSAm\n\n> \nAmS\n\n$$$$\nCDI\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n 1.8185 0.5823 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5330 0.1698 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5330 -0.6552 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2004 -1.1401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9455 -1.9248 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1205 -1.9248 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8655 -1.1401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2475 0.5823 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3337 1.4028 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1407 1.5743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5532 0.8598 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0011 0.2467 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 4 0 0 0 0\n 4 5 4 0 0 0 0\n 5 6 4 0 0 0 0\n 6 7 4 0 0 0 0\n 3 7 4 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 4 0 0 0 0\n 9 10 4 0 0 0 0\n 10 11 4 0 0 0 0\n 11 12 4 0 0 0 0\n 8 12 4 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 CDI\nM SDS EXP 1 1\nM END\n> \nCDI\n\n$$$$\ncyclopentyl\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 cyclopentyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclopentyl\n\n$$$$\nC15H31\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 6.7105 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.4250 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.1395 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.8539 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.5684 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.2829 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.9974 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.7118 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.4263 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.1408 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.8552 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.5697 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.2842 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.9987 4.2868 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.7131 4.6993 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 C15H31\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H31C15\nM END\n> \nC15H31\n\n> \nH31C15\n\n$$$$\nOtBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 OtBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuO\nM END\n> \nOtBu\n\n> \ntBuO\n\n$$$$\nMoz\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 3 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Moz\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nMoz\n\n$$$$\nThr\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.4750 -1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4304 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 6 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Thr\nM SAP 1 3 5 0 Al 6 0 Br 3 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nc-C13H25\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 1.9097 0.9582 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5480 1.4809 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2423 1.0353 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0331 0.2372 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4121 -0.5822 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9665 -1.2765 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1424 -1.2378 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6968 -1.9321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8727 -1.8933 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4942 -1.1603 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9398 -0.4660 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5613 0.2671 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0069 0.9614 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 1 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 c-C13H25\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C13H25\n\n$$$$\nThy\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Thy\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nThy\n\n$$$$\nCF3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CF3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 F3C\nM END\n> \nCF3\n\n> \nF3C\n\n$$$$\nNvoc\n Mrv15c7 12111511552D \n\n 17 17 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 9 14 2 0 0 0 0\n 3 14 1 0 0 0 0\n 8 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 15 17 2 0 0 0 0\nM CHG 2 15 1 16 -1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Nvoc\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nNvoc\n\n$$$$\nSCN\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.6500 -0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 3 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 SCN\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NCS\nM END\n> \nSCN\n\n> \nNCS\n\n$$$$\nCONHMe\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CONHMe\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeNHCO\nM END\n> \nCONHMe\n\n> \nMeNHCO\n\n$$$$\no-Tol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 o-Tol\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \no-Tol\n\n$$$$\nBrosyl\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Brosyl\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nBrosyl\n\n$$$$\nHBTU\n Mrv15c7 12111511552D \n\n 24 24 0 0 0 0 999 V2000\n 0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -0.0000 0.0000 P 0 5 0 0 0 0 0 0 0 0 0 0\n -0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4125 0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8250 -0.0000 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4792 1.7111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7342 0.9265 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1821 0.3134 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5411 0.7550 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -0.0297 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3112 -0.6971 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7961 -1.3645 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 4.5411 -2.1492 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 5.5807 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.5807 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 0.1279 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -0.2846 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.0096 -1.1096 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.2952 -1.5221 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0932 1.3680 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 5.9002 1.1965 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8382 2.1527 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 14 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 2 0 0 0 0\n 16 21 1 0 0 0 0\n 11 22 2 0 0 0 0\n 22 23 1 0 0 0 0\n 22 24 1 0 0 0 0\nM CHG 4 2 -1 14 1 15 -1 22 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 HBTU\nM SDS EXP 1 1\nM END\n> \nHBTU\n\n$$$$\nOtAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 OtAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmO\nM END\n> \nOtAm\n\n> \ntAmO\n\n$$$$\nNHTs\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHTs\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TsNH\nM END\n> \nNHTs\n\n> \nTsNH\n\n$$$$\nDMIPS\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 DMIPS\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nDMIPS\n\n$$$$\nBic\n Mrv15c7 12111511552D \n\n 13 14 0 0 0 0 999 V2000\n 4.7812 4.4104 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7812 3.5854 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0668 3.1729 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0668 2.3479 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 0.8555 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 1.5229 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 2.1904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 2.3479 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 8 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 5 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Bic\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBic\n\n$$$$\nOPMB\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 3 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 OPMB\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PMBO\nM END\n> \nOPMB\n\n> \nPMBO\n\n$$$$\nSnBu3\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n 5.3329 5.5539 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 5.1414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 4.3164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 3.9039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 3.0789 0.0000 Sn 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 SnBu3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Bu3Sn\nM END\n> \nSnBu3\n\n> \nBu3Sn\n\n$$$$\nTeoc\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.1250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -2.2539 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Teoc\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTeoc\n\n$$$$\n2OHPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 2OHPh\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \n2OHPh\n\n$$$$\nCOOt-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOt-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuOOC\nM END\n> \nCOOt-Bu\n\n> \nt-BuOOC\n\n$$$$\nSBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 SBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BuS\nM END\n> \nSBu\n\n> \nBuS\n\n$$$$\n2-6DCZ\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 2-6DCZ\nM SAP 1 1 11 0 1\nM SDS EXP 1 1\nM END\n> \n2-6DCZ\n\n$$$$\nKNO3\n Mrv15c7 12111511552D \n\n 5 3 0 0 0 0 999 V2000\n 1.6500 1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 2 0 0 0 0\nM CHG 4 1 1 2 -1 3 1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 KNO3\nM SDS EXP 1 1\nM END\n> \nKNO3\n\n$$$$\nKNO2\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 KNO2\nM SDS EXP 1 1\nM END\n> \nKNO2\n\n$$$$\nDip\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Dip\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nDip\n\n$$$$\nn-Pr\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 n-Pr\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Pr\n\n$$$$\nCO2Et\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CO2Et\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtO2C\nM END\n> \nCO2Et\n\n> \nEtO2C\n\n$$$$\nPhOMe\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PhOMe\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeOPh\nM END\n> \nPhOMe\n\n> \nMeOPh\n\n$$$$\ncyclopropyl\n Mrv15c7 12111511552D \n\n 3 3 0 0 0 0 999 V2000\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 1 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 cyclopropyl\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ncyclopropyl\n\n$$$$\nSEM\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n -0.6039 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 5 7 1 0 0 0 0\n 5 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 SEM\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nSEM\n\n$$$$\nNHOH\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NHOH\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HONH\nM END\n> \nNHOH\n\n> \nHONH\n\n$$$$\nADEryth\n Mrv15c7 12111511552D \n\n 8 8 0 0 1 0 999 V2000\n 0.5678 1.9393 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3297 -0.8227 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 ADEryth\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADEryth\n\n$$$$\nc-C15H29\n Mrv15c7 12111511552D \n\n 15 15 0 0 0 0 999 V2000\n 2.2742 1.5127 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9604 1.9708 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6081 1.4598 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3222 0.6859 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6197 -0.1665 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1086 -0.8141 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4140 -1.5805 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9030 -2.2282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0866 -2.1095 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7812 -1.3431 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9648 -1.2244 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6594 -0.4580 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1704 0.1897 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8650 0.9561 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3760 1.6038 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 1 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 c-C15H29\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C15H29\n\n$$$$\nTBDMS\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 4 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 TBDMS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nTBDMS\n\n$$$$\nUMP\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.3819 -1.7224 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1665 -1.4675 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 -2.5070 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.3020 -2.5070 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0470 -1.7224 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7376 -1.4675 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.9091 -0.6605 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6937 -0.4056 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -2.4784 -0.1506 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.9487 -1.1902 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4388 0.3790 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6119 -3.1745 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4324 -3.0882 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9173 -3.7557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.5817 -4.5094 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.0667 -5.1768 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7613 -4.5956 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2763 -3.9282 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4559 -4.0144 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 2 0 0 0 0\n 5 14 1 6 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 17 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 14 20 1 0 0 0 0\n 20 21 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 UMP\nM SDS EXP 1 1\nM END\n> \nUMP\n\n$$$$\nDbpoc\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.8875 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 -1.0164 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 -1.8414 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Dbpoc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nDbpoc\n\n$$$$\nADAllos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADAllos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADAllos\n\n$$$$\nPO(OEt)2\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 PO(OEt)2\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (EtO)2OP\nM END\n> \nPO(OEt)2\n\n> \n(EtO)2OP\n\n$$$$\nTmob\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 5 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 3 12 1 0 0 0 0\n 12 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Tmob\nM SAP 1 1 13 0 1\nM SDS EXP 1 1\nM END\n> \nTmob\n\n$$$$\nONO2\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM CHG 2 2 1 3 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 ONO2\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NO2O\nM END\n> \nONO2\n\n> \nNO2O\n\n$$$$\nSPDP\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.0000 -0.5401 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7796 -0.8101 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4032 -0.2700 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1827 -0.5401 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8064 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 SPDP\nM SAP 1 2 1 0 1 4 0 2\nM SDS EXP 1 1\nM END\n> \nSPDP\n\n$$$$\nn-C3H7\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 n-C3H7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-C3H7\n\n$$$$\nEt4N\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM CHG 1 3 1\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Et4N\nM SDS EXP 1 1\nM END\n> \nEt4N\n\n$$$$\nSES\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 1.6500 2.8579 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 2.1434 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.7309 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 7 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 SES\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nSES\n\n$$$$\nC21H43\n Mrv15c7 12111511552D \n\n 21 20 0 0 0 0 999 V2000\n 10.4230 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.1375 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.8520 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.5664 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.2809 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.9954 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.7099 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.4243 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.1388 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.8533 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.5677 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.2822 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.9967 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.7112 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.4256 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.1401 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.8546 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.5690 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.2835 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 23.9980 6.4302 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 24.7124 6.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 C21H43\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H43C21\nM END\n> \nC21H43\n\n> \nH43C21\n\n$$$$\nCHL\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CHL\nM SDS EXP 1 1\nM END\n> \nCHL\n\n$$$$\nPOI3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 I 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 POI3\nM SDS EXP 1 1\nM END\n> \nPOI3\n\n$$$$\nNMP\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.5678 1.9393 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5678 1.1143 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.8843 0.8843 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 NMP\nM SDS EXP 1 1\nM END\n> \nNMP\n\n$$$$\nCHO\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 CHO\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 OHC\nM END\n> \nCHO\n\n> \nOHC\n\n$$$$\nDArabi\n Mrv15c7 12111511552D \n\n 10 9 0 0 1 0 999 V2000\n 1.7605 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 1 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DArabi\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDArabi\n\n$$$$\nTmb\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 2 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tmb\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTmb\n\n$$$$\nNHCbz\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHCbz\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 CbzNH\nM END\n> \nNHCbz\n\n> \nCbzNH\n\n$$$$\nCOOt-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOt-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmOOC\nM END\n> \nCOOt-Am\n\n> \nt-AmOOC\n\n$$$$\nPPh3\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 PPh3\nM SDS EXP 1 1\nM MJS SAT 1 Ph3P\nM END\n> \nPPh3\n\n> \nPh3P\n\n$$$$\nPPh2\n Mrv15c7 12111511552D \n\n 13 14 0 0 0 0 999 V2000\n 2.1434 -0.4125 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 1 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 PPh2\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Ph2P\nM END\n> \nPPh2\n\n> \nPh2P\n\n$$$$\nSEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 SEt\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtS\nM END\n> \nSEt\n\n> \nEtS\n\n$$$$\nADTalos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADTalos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADTalos\n\n$$$$\nMthp\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 3 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Mthp\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nMthp\n\n$$$$\nNHPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 NHPh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhNH\nM END\n> \nNHPh\n\n> \nPhNH\n\n$$$$\nNHPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrNH\nM END\n> \nNHPr\n\n> \nPrNH\n\n$$$$\nOn-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 On-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-AmO\nM END\n> \nOn-Am\n\n> \nn-AmO\n\n$$$$\nAcOH\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 AcOH\nM SDS EXP 1 1\nM END\n> \nAcOH\n\n$$$$\ntHexyl\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 tHexyl\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \ntHexyl\n\n$$$$\nC19H39\n Mrv15c7 12111511552D \n\n 19 18 0 0 0 0 999 V2000\n 9.1855 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 9.9000 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 10.6145 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 11.3289 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.0434 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 12.7579 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 13.4724 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.1868 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 14.9013 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 15.6158 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 16.3302 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.0447 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 17.7592 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 18.4737 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.1881 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 19.9026 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 20.6171 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 21.3315 5.7158 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 22.0460 6.1283 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 C19H39\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H39C19\nM END\n> \nC19H39\n\n> \nH39C19\n\n$$$$\nc-C22H43\n Mrv15c7 12111511552D \n\n 22 22 0 0 0 0 999 V2000\n 3.2151 2.3029 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.6850 2.9810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 2.9132 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.8595 2.1673 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.3897 1.4891 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.7421 0.7432 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2722 0.0650 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6246 -0.6810 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.1548 -1.3591 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.5072 -2.1051 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.0373 -2.7832 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.2151 -2.7154 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.7453 -3.3935 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 -3.3257 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5707 -2.5798 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0405 -1.9016 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6882 -1.1557 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1580 -0.4775 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.8056 0.2685 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2755 0.9466 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9231 1.6926 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3929 2.3707 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 21 22 1 0 0 0 0\n 1 22 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 7 16 17 18 19 20 21 22\nM SMT 1 c-C22H43\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C22H43\n\n$$$$\nDMPS\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 DMPS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDMPS\n\n$$$$\nPOBr3\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 POBr3\nM SDS EXP 1 1\nM END\n> \nPOBr3\n\n$$$$\nPO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 3 1 -1 3 -1 4 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 PO4\nM SDS EXP 1 1\nM END\n> \nPO4\n\n$$$$\nPO3\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\nM CHG 2 1 -1 4 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 PO3\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 O3P\nM END\n> \nPO3\n\n> \nO3P\n\n$$$$\nDMPM\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 3 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 DMPM\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDMPM\n\n$$$$\nCO2s-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2s-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmO2C\nM END\n> \nCO2s-Am\n\n> \ns-AmO2C\n\n$$$$\nCOF\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 COF\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 FCO\nM END\n> \nCOF\n\n> \nFCO\n\n$$$$\ni-C5H11\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 i-C5H11\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \ni-C5H11\n\n$$$$\nBeoc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Beoc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nBeoc\n\n$$$$\nDTBMS\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6039 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3020 -0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 7 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 DTBMS\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDTBMS\n\n$$$$\nPNB\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 3 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 7 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 4 11 1 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 PNB\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nPNB\n\n$$$$\nSiPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrS\nM END\n> \nSiPr\n\n> \niPrS\n\n$$$$\nTol\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Tol\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nTol\n\n$$$$\nBmv\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n -0.7145 3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 Bmv\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nBmv\n\n$$$$\n2-Abz\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 2-Abz\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \n2-Abz\n\n$$$$\nSPh\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 SPh\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhS\nM END\n> \nSPh\n\n> \nPhS\n\n$$$$\nTos\n Mrv15c7 12111511552D \n\n 10 10 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Tos\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nTos\n\n$$$$\nSPy\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 SPy\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nSPy\n\n$$$$\nMts\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 2 0 0 0 0\n 2 9 1 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 10 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Mts\nM SAP 1 1 10 0 1\nM SDS EXP 1 1\nM END\n> \nMts\n\n$$$$\nSPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 SPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrS\nM END\n> \nSPr\n\n> \nPrS\n\n$$$$\nMtt\n Mrv15c7 12111511552D \n\n 20 22 0 0 0 0 999 V2000\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 9 14 1 0 0 0 0\n 8 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 2 0 0 0 0\n 15 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 Mtt\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nMtt\n\n$$$$\nOn-Bu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 On-Bu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 n-BuO\nM END\n> \nOn-Bu\n\n> \nn-BuO\n\n$$$$\nMtr\n Mrv15c7 12111511552D \n\n 14 14 0 0 0 0 999 V2000\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 9 11 2 0 0 0 0\n 3 11 1 0 0 0 0\n 8 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 12 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Mtr\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nMtr\n\n$$$$\nBDTalos\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 6 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDTalos\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDTalos\n\n$$$$\nneoAm\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 neoAm\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nneoAm\n\n$$$$\nTpt\n Mrv15c7 12111511552D \n\n 20 24 0 0 0 0 999 V2000\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5664 -1.1000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5664 -0.2750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2809 0.1375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9954 -0.2750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9954 -1.1000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2809 -1.5125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 1 0 0 0 0\n 4 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 1 14 1 0 0 0 0\n 12 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 5 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 18 19 1 0 0 0 0\n 19 20 2 0 0 0 0\n 15 20 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 5 16 17 18 19 20\nM SMT 1 Tpt\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nTpt\n\n$$$$\nPtBu3\n Mrv15c7 12111511552D \n\n 13 12 0 0 0 0 999 V2000\n -0.6039 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.3020 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2539 1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.5230 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 10 13 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 PtBu3\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nPtBu3\n\n$$$$\nP(OMe)2\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 P(OMe)2\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (MeO)2P\nM END\n> \nP(OMe)2\n\n> \n(MeO)2P\n\n$$$$\nNHMe\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NHMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeNH\nM END\n> \nNHMe\n\n> \nMeNH\n\n$$$$\nGMP\n Mrv15c7 12111511552D \n\n 24 26 0 0 1 0 999 V2000\n 4.0668 2.3479 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3523 1.1104 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 0.6979 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 -0.1271 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.1104 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9233 1.9354 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6378 2.3479 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 2.1904 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6538 1.5229 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1387 0.8555 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8838 2.9750 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.0992 3.2299 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0992 4.0549 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.5683 4.5399 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.4820 5.3603 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.1495 5.8453 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n -1.8169 6.3302 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6646 6.5127 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.6344 5.1778 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8838 4.3099 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.1387 5.0945 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3687 3.6424 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.1937 3.6424 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 2 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 12 9 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 6 0 0 0\n 15 16 1 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 1 0 0 0 0\n 17 19 1 0 0 0 0\n 17 20 2 0 0 0 0\n 14 21 1 0 0 0 0\n 21 22 1 1 0 0 0\n 21 23 1 0 0 0 0\n 12 23 1 0 0 0 0\n 23 24 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 9 16 17 18 19 20 21 22 23 24\nM SMT 1 GMP\nM SDS EXP 1 1\nM END\n> \nGMP\n\n$$$$\nNHiPr\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 NHiPr\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 iPrNH\nM END\n> \nNHiPr\n\n> \niPrNH\n\n$$$$\nn-Am\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 n-Am\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Am\n\n$$$$\nCONHEt\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 CONHEt\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtNHCO\nM END\n> \nCONHEt\n\n> \nEtNHCO\n\n$$$$\nNHtBu\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 NHtBu\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tBuNH\nM END\n> \nNHtBu\n\n> \ntBuNH\n\n$$$$\nCO2K\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 K 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CO2K\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 KO2C\nM END\n> \nCO2K\n\n> \nKO2C\n\n$$$$\nDGluco\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 1 0 0 0\n 9 11 1 0 0 0 0\n 11 12 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DGluco\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDGluco\n\n$$$$\nOTHP\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 OTHP\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 THPO\nM END\n> \nOTHP\n\n> \nTHPO\n\n$$$$\nCO2Me\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CO2Me\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeO2C\nM END\n> \nCO2Me\n\n> \nMeO2C\n\n$$$$\nCO2H\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 CO2H\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 HO2C\nM END\n> \nCO2H\n\n> \nHO2C\n\n$$$$\nC9H19\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 2.9980 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4270 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1414 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8559 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.5704 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2849 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9993 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7138 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 C9H19\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H19C9\nM END\n> \nC9H19\n\n> \nH19C9\n\n$$$$\nc-C5H9\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 c-C5H9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C5H9\n\n$$$$\nn-Bu\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 n-Bu\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nn-Bu\n\n$$$$\nBpoc\n Mrv15c7 12111511552D \n\n 18 19 0 0 0 0 999 V2000\n -0.1105 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 2 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\n 10 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 13 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Bpoc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nBpoc\n\n$$$$\nCMP\n Mrv15c7 12111511552D \n\n 21 22 0 0 1 0 999 V2000\n 0.7145 6.7661 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 5.9411 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 5.5286 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 4.7036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 4.2911 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 4.2911 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 4.7036 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 5.5286 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 3.4661 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.3819 2.9812 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.1270 2.1965 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.6119 1.5291 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2763 0.7754 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7613 0.1080 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2462 -0.5595 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0938 -0.3769 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4287 0.5929 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3020 2.1965 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.1830 1.5291 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0470 2.9812 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7376 3.2361 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 9 6 1 6 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 6 0 0 0\n 12 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 1 0 0 0 0\n 14 16 1 0 0 0 0\n 14 17 2 0 0 0 0\n 11 18 1 0 0 0 0\n 18 19 1 1 0 0 0\n 18 20 1 0 0 0 0\n 9 20 1 0 0 0 0\n 20 21 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 6 16 17 18 19 20 21\nM SMT 1 CMP\nM SDS EXP 1 1\nM END\n> \nCMP\n\n$$$$\nCO2s-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2s-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuO2C\nM END\n> \nCO2s-Bu\n\n> \ns-BuO2C\n\n$$$$\nAcAc\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 AcAc\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM END\n> \nAcAc\n\n$$$$\nHse\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.9500 1.9500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9500 1.1250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.2375 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5250 1.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1929 0.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6679 0.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3804 1.1250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Hse\nM SAP 1 2 1 0 Al 6 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nQxc\n Mrv15c7 12111511552D \n\n 12 13 0 0 0 0 999 V2000\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 5 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 3 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Qxc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nQxc\n\n$$$$\nNHtAm\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 NHtAm\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 tAmNH\nM END\n> \nNHtAm\n\n> \ntAmNH\n\n$$$$\nC8H17\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.0461 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 C8H17\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H17C8\nM END\n> \nC8H17\n\n> \nH17C8\n\n$$$$\nCOOs-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 4 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 COOs-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-AmOOC\nM END\n> \nCOOs-Am\n\n> \ns-AmOOC\n\n$$$$\nCS2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 1 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 CS2\nM SDS EXP 1 1\nM END\n> \nCS2\n\n$$$$\nBr2\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Br 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 Br2\nM SDS EXP 1 1\nM END\n> \nBr2\n\n$$$$\nc-C11H21\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 1.5424 0.8427 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.2919 1.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8514 0.5812 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4477 -0.1383 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6078 -1.0268 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0015 -1.5863 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2138 -1.3410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.0324 -0.5362 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2447 -0.2909 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0633 0.5140 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6696 1.0735 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 1 11 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 c-C11H21\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C11H21\n\n$$$$\nC10H21\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 2.2836 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.9980 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.4270 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.1414 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.8559 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.5704 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.2849 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.9993 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 8.7138 2.5559 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 C10H21\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H21C10\nM END\n> \nC10H21\n\n> \nH21C10\n\n$$$$\nTrt\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 Trt\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM END\n> \nTrt\n\n$$$$\nCO2t-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 CO2t-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-BuO2C\nM END\n> \nCO2t-Bu\n\n> \nt-BuO2C\n\n$$$$\nDEIPS\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 0.0000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 DEIPS\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \nDEIPS\n\n$$$$\nAdoc\n Mrv15c7 12111511552D \n\n 13 15 0 0 0 0 999 V2000\n 0.1373 -3.7210 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1373 -2.8960 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -2.4835 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -1.6585 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1163 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -1.6156 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -1.2419 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0368 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3012 -0.1208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5657 -0.4945 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8517 -0.9111 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5873 -2.0322 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 4 13 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 8 13 1 0 0 0 0\n 10 12 1 0 0 0 0\n 4 12 1 0 0 0 0\n 6 11 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Adoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAdoc\n\n$$$$\nTrp\n Mrv15c7 12111511552D \n\n 14 15 0 0 0 0 999 V2000\n -1.7571 0.3107 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -1.2054 0.9268 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.3964 0.7554 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 -0.0321 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.6268 -0.6964 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1446 -1.3661 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6429 -1.1089 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6429 -0.2839 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3554 0.1286 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0679 -0.2839 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0679 -1.1089 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.3554 -1.5214 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4625 1.7089 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.2661 1.8804 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 7 12 1 0 0 0 0\n 2 13 1 0 0 0 0\n 13 14 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 14 1 2 3 4 5 6 7 8 9 10 11 12 13 14\nM SMT 1 Trp\nM SAP 1 3 1 0 Al 13 0 Br 6 0 Cx\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nP(OEt)2\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 P(OEt)2\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (EtO)2P\nM END\n> \nP(OEt)2\n\n> \n(EtO)2P\n\n$$$$\nSi-Am\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 Si-Am\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 i-AmS\nM END\n> \nSi-Am\n\n> \ni-AmS\n\n$$$$\nTre\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 Tre\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nTre\n\n$$$$\nAmoc\n Mrv15c7 12111511552D \n\n 18 20 0 0 0 0 999 V2000\n 0.7145 3.7125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 10 11 1 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 16 17 1 0 0 0 0\n 17 18 2 0 0 0 0\n 5 18 1 0 0 0 0\n 13 18 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 3 16 17 18\nM SMT 1 Amoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nAmoc\n\n$$$$\nDpp\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n 4.2868 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7158 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 2 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 12 13 1 0 0 0 0\n 13 14 2 0 0 0 0\n 14 15 1 0 0 0 0\n 15 16 2 0 0 0 0\n 11 16 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dpp\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDpp\n\n$$$$\nHFIP\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 -1.4289 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 -1.1270 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -0.3020 0.0000 F 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 1 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 HFIP\nM SDS EXP 1 1\nM END\n> \nHFIP\n\n$$$$\nDMTr\n Mrv15c7 12111511552D \n\n 23 25 0 0 0 0 999 V2000\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -5.3625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.9500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -5.3625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -6.1875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -4.1250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -3.7125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 6 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 10 15 1 0 0 0 0\n 9 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 19 20 1 0 0 0 0\n 20 21 1 0 0 0 0\n 19 22 1 0 0 0 0\n 22 23 2 0 0 0 0\n 16 23 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 8 16 17 18 19 20 21 22 23\nM SMT 1 DMTr\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM END\n> \nDMTr\n\n$$$$\nOTES\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 3 7 1 0 0 0 0\n 7 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OTES\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TESO\nM END\n> \nOTES\n\n> \nTESO\n\n$$$$\nBDGalac\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 6 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 6 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 BDGalac\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBDGalac\n\n$$$$\nCO2t-Am\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 3.3000 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 3 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 CO2t-Am\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 t-AmO2C\nM END\n> \nCO2t-Am\n\n> \nt-AmO2C\n\n$$$$\nSLi\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Li 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SLi\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 LiS\nM END\n> \nSLi\n\n> \nLiS\n\n$$$$\nFmoc\n Mrv15c7 12111511552D \n\n 17 19 0 0 0 0 999 V2000\n 0.5050 -3.1605 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -2.7480 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2195 -1.9230 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -1.5105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9339 -0.6855 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6014 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.4084 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9604 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.7054 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8985 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3464 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5214 0.5840 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2665 -0.2006 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4595 -0.3721 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0925 0.2410 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1624 1.0256 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9694 1.1971 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 6 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 5 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 12 17 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 2 16 17\nM SMT 1 Fmoc\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nFmoc\n\n$$$$\nCO2Na\n Mrv15c7 12111511552D \n\n 4 2 0 0 0 0 999 V2000\n 1.6500 -1.4289 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 CO2Na\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaO2C\nM END\n> \nCO2Na\n\n> \nNaO2C\n\n$$$$\n2-6Clb\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 2 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 2-6Clb\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \n2-6Clb\n\n$$$$\nCOOs-Bu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOs-Bu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 s-BuOOC\nM END\n> \nCOOs-Bu\n\n> \ns-BuOOC\n\n$$$$\nNHEt\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 NHEt\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 EtNH\nM END\n> \nNHEt\n\n> \nEtNH\n\n$$$$\nPEG4\n Mrv15c7 12111511552D \n\n 12 11 0 0 0 0 999 V2000\n 7.8700 -0.3745 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 7.1349 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.4430 -0.4494 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.7079 -0.0749 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0160 -0.5243 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2809 -0.1498 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5891 -0.5992 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8540 -0.2247 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1621 -0.6741 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4270 -0.2996 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7351 -0.7490 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.3745 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 PEG4\nM SAP 1 2 12 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nPEG4\n\n$$$$\n2-Naph\n Mrv15c7 12111511552D \n\n 10 11 0 0 0 0 999 V2000\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 2 0 0 0 0\n 3 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 1 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 2-Naph\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \n2-Naph\n\n$$$$\nMpc\n Mrv15c7 12111511552D \n\n 13 13 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 -3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\n 8 11 1 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 13 1 2 3 4 5 6 7 8 9 10 11 12 13\nM SMT 1 Mpc\nM SAP 1 1 12 0 1\nM SDS EXP 1 1\nM END\n> \nMpc\n\n$$$$\nPEG3\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 5.7158 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 5.0013 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 PEG3\nM SAP 1 2 9 0 1 1 0 2\nM SDS EXP 1 1\nM END\n> \nPEG3\n\n$$$$\nCO2Pr\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 CO2Pr\nM SAP 1 1 5 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PrO2C\nM END\n> \nCO2Pr\n\n> \nPrO2C\n\n$$$$\nc-C8H15\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.9959 1.4904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0738 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 -0.6654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0821 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 1 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 c-C8H15\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nc-C8H15\n\n$$$$\nPO(OMe)2\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 P 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 PO(OMe)2\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM MJS SAT 1 (MeO)2OP\nM END\n> \nPO(OMe)2\n\n> \n(MeO)2OP\n\n$$$$\nDoc\n Mrv15c7 12111511552D \n\n 10 9 0 0 0 0 999 V2000\n 2.6664 -2.3645 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.9520 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.3645 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 0.5230 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 4 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 10 1 2 3 4 5 6 7 8 9 10\nM SMT 1 Doc\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nDoc\n\n$$$$\nm-Tolyl\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 m-Tolyl\nM SAP 1 1 4 0 1\nM SDS EXP 1 1\nM END\n> \nm-Tolyl\n\n$$$$\nNHTos\n Mrv15c7 12111511552D \n\n 11 11 0 0 0 0 999 V2000\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1105 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 2 7 1 0 0 0 0\n 5 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 8 10 2 0 0 0 0\n 8 11 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 11 1 2 3 4 5 6 7 8 9 10 11\nM SMT 1 NHTos\nM SAP 1 1 9 0 1\nM SDS EXP 1 1\nM MJS SAT 1 TosNH\nM END\n> \nNHTos\n\n> \nTosNH\n\n$$$$\nSMe\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SMe\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 MeS\nM END\n> \nSMe\n\n> \nMeS\n\n$$$$\nDFruct\n Mrv15c7 12111511552D \n\n 12 11 0 0 1 0 999 V2000\n 1.0461 1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7605 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4289 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 2.4750 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1895 1.8414 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 3.1895 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9039 1.4289 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 3.9039 0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6184 2.6664 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3329 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0474 1.8414 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 6 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 1 0 0 0\n 5 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 2 0 0 0 0\n 9 11 1 0 0 0 0\n 11 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 DFruct\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM END\n> \nDFruct\n\n$$$$\nDns\n Mrv15c7 12111511552D \n\n 16 17 0 0 0 0 999 V2000\n -0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -2.4750 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8875 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 14 16 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 1 16\nM SMT 1 Dns\nM SAP 1 1 14 0 1\nM SDS EXP 1 1\nM END\n> \nDns\n\n$$$$\nring9\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 1.1333 1.6186 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9086 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.3211 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1778 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5458 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7208 -0.7208 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0888 -0.1905 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0544 0.6219 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.3581 1.3364 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 1 0 0 0 0\n 1 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 ring9\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring9\n\n$$$$\nSO2\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 0.0000 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.6500 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 SO2\nM SAP 1 2 2 0 1 2 0 2\nM SDS EXP 1 1\nM END\n> \nSO2\n\n$$$$\nBoc\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8875 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -1.5395 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 1 3 1 0 0 0 0\n 1 4 1 0 0 0 0\n 1 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 Boc\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM END\n> \nBoc\n\n$$$$\nring8\n Mrv15c7 12111511552D \n\n 8 8 0 0 0 0 999 V2000\n 0.9959 1.4904 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0738 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7581 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 -0.6654 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 -0.3497 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0821 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.2337 1.1747 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 1 8 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 ring8\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring8\n\n$$$$\nH2O\n Mrv15c7 12111511552D \n\n 3 2 0 0 0 0 999 V2000\n 0.7145 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 0.4125 0.0000 H 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 H2O\nM SDS EXP 1 1\nM END\n> \nH2O\n\n$$$$\nOrn\n Mrv15c7 12111511552D \n\n 8 7 0 0 0 0 999 V2000\n 1.7625 1.8429 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.1875 1.8429 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.9054 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.6179 1.8429 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 4.6179 2.6679 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 5.3304 1.4304 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 6.0482 1.8429 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 6 0 0 0\n 5 7 1 0 0 0 0\n 7 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 Orn\nM SAP 1 2 6 0 Al 7 0 Br\nM SCL 1 AA\nM SDS EXP 1 1\nM END\n$$$$\nring5\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 ring5\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring5\n\n$$$$\nC6H13\n Mrv15c7 12111511552D \n\n 6 5 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 C6H13\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM MJS SAT 1 H13C6\nM END\n> \nC6H13\n\n> \nH13C6\n\n$$$$\nring4\n Mrv15c7 12111511552D \n\n 4 4 0 0 0 0 999 V2000\n 0.4125 0.9959 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9959 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4125 -0.1709 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1709 0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 1 4 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 ring4\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring4\n\n$$$$\nFor\n Mrv15c7 12111511552D \n\n 2 1 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 For\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nFor\n\n$$$$\nring7\n Mrv15c7 12111511552D \n\n 7 7 0 0 0 0 999 V2000\n 0.8566 1.3632 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5999 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7834 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2691 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.4441 -0.4441 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0703 0.2009 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1133 1.0053 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 1 7 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 ring7\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring7\n\n$$$$\nSO4\n Mrv15c7 12111511552D \n\n 5 4 0 0 0 0 999 V2000\n 0.8250 -0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.8250 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 1.6500 -0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 2 0 0 0 0\nM CHG 2 1 -1 3 -1\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 SO4\nM SDS EXP 1 1\nM END\n> \nSO4\n\n$$$$\nring6\n Mrv15c7 12111511552D \n\n 6 6 0 0 0 0 999 V2000\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 1 6 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 6 1 2 3 4 5 6\nM SMT 1 ring6\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring6\n\n$$$$\nDnp\n Mrv15c7 12111511552D \n\n 12 12 0 0 0 0 999 V2000\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 3 5 2 0 0 0 0\n 2 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 8 10 2 0 0 0 0\n 7 11 1 0 0 0 0\n 11 12 2 0 0 0 0\n 1 12 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 Dnp\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nDnp\n\n$$$$\nring3\n Mrv15c7 12111511552D \n\n 3 3 0 0 0 0 999 V2000\n 0.2382 0.8888 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.6507 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.1743 0.1743 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 1 3 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 3 1 2 3\nM SMT 1 ring3\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nring3\n\n$$$$\nCOOsBu\n Mrv15c7 12111511552D \n\n 7 6 0 0 0 0 999 V2000\n -0.1914 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.5230 1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.1105 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.9520 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.6664 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3809 1.1270 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 3 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 7 1 2 3 4 5 6 7\nM SMT 1 COOsBu\nM SAP 1 1 6 0 1\nM SDS EXP 1 1\nM MJS SAT 1 sBuOOC\nM END\n> \nCOOsBu\n\n> \nsBuOOC\n\n$$$$\nBom\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Bom\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nBom\n\n$$$$\nDMSO\n Mrv15c7 12111511552D \n\n 4 3 0 0 0 0 999 V2000\n 1.2375 0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 4 1 2 3 4\nM SMT 1 DMSO\nM SDS EXP 1 1\nM END\n> \nDMSO\n\n$$$$\n3-Fur\n Mrv15c7 12111511552D \n\n 5 5 0 0 0 0 999 V2000\n 0.5678 1.1143 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2352 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.9803 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1553 -0.1553 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.0997 0.6294 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 1 5 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 5 1 2 3 4 5\nM SMT 1 3-Fur\nM SAP 1 1 3 0 1\nM SDS EXP 1 1\nM END\n> \n3-Fur\n\n$$$$\nMsc\n Mrv15c7 12111511552D \n\n 9 8 0 0 0 0 999 V2000\n 4.1250 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -1.4289 0.0000 S 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -0.6039 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 3.3000 -2.2539 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.4750 -1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.0625 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 2 0 0 0 0\n 2 4 2 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 Msc\nM SAP 1 1 8 0 1\nM SDS EXP 1 1\nM END\n> \nMsc\n\n$$$$\nSNa\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 S 0 5 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 1 2 -1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 SNa\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 NaS\nM END\n> \nSNa\n\n> \nNaS\n\n$$$$\nTIPDS\n Mrv15c7 12111511552D \n\n 15 14 0 0 0 0 999 V2000\n 0.0000 -1.5787 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -1.9912 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -2.8162 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -1.5787 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.9912 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -1.5787 0.0000 Si 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -1.9912 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 4.2868 -1.5787 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -2.8162 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.8579 -0.7537 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -0.3412 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 3.5724 -0.3412 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.7537 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.3412 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.7645 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 7 9 1 0 0 0 0\n 6 10 1 0 0 0 0\n 10 11 1 0 0 0 0\n 10 12 1 0 0 0 0\n 4 13 1 0 0 0 0\n 13 14 1 0 0 0 0\n 13 15 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SMT 1 TIPDS\nM SAP 1 2 4 0 1 6 0 2\nM SDS EXP 1 1\nM END\n> \nTIPDS\n\n$$$$\nADGluco\n Mrv15c7 12111511552D \n\n 12 12 0 0 1 0 999 V2000\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n 2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 2.1434 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n 0.7145 -1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 2 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 1 0 0 0 0 0 0 0 0 0\n -0.7145 1.2375 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 2 1 1 1 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 1 6 0 0 0\n 5 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 1 0 0 0\n 7 9 1 0 0 0 0\n 9 10 1 6 0 0 0\n 9 11 1 0 0 0 0\n 2 11 1 0 0 0 0\n 11 12 1 1 0 0 0\nM STY 1 1 SUP\nM SAL 1 12 1 2 3 4 5 6 7 8 9 10 11 12\nM SMT 1 ADGluco\nM SAP 1 1 1 0 1\nM SDS EXP 1 1\nM END\n> \nADGluco\n\n$$$$\nCO2Ph\n Mrv15c7 12111511552D \n\n 9 9 0 0 0 0 999 V2000\n 0.0000 3.3000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 2.0625 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 1 0 0 0 0\n 4 5 2 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 2 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 4 9 1 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 9 1 2 3 4 5 6 7 8 9\nM SMT 1 CO2Ph\nM SAP 1 1 2 0 1\nM SDS EXP 1 1\nM MJS SAT 1 PhO2C\nM END\n> \nCO2Ph\n\n> \nPhO2C\n\n$$$$\nNaOH\n Mrv15c7 12111511552D \n\n 2 0 0 0 0 0 999 V2000\n 0.8250 0.0000 0.0000 O 0 5 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 Na 0 3 0 0 0 0 0 0 0 0 0 0\nM CHG 2 1 -1 2 1\nM STY 1 1 SUP\nM SAL 1 2 1 2\nM SMT 1 NaOH\nM SDS EXP 1 1\nM END\n> \nNaOH\n\n$$$$\nP+Ph3\n Mrv15c7 12111511552D \n\n 19 21 0 0 0 0 999 V2000\n -0.7145 -2.8875 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -1.6500 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.4750 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -0.7145 -0.4125 0.0000 P 0 3 0 0 0 0 0 0 0 0 0 0\n 0.0000 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.7145 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 -0.4125 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 -0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.8579 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -2.1434 1.2375 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n -1.4289 0.8250 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 2 0 0 0 0\n 2 3 1 0 0 0 0\n 3 4 2 0 0 0 0\n 4 5 1 0 0 0 0\n 5 6 2 0 0 0 0\n 1 6 1 0 0 0 0\n 4 7 1 0 0 0 0\n 7 8 1 0 0 0 0\n 8 9 2 0 0 0 0\n 9 10 1 0 0 0 0\n 10 11 2 0 0 0 0\n 11 12 1 0 0 0 0\n 12 13 2 0 0 0 0\n 8 13 1 0 0 0 0\n 7 14 1 0 0 0 0\n 14 15 2 0 0 0 0\n 15 16 1 0 0 0 0\n 16 17 2 0 0 0 0\n 17 18 1 0 0 0 0\n 18 19 2 0 0 0 0\n 14 19 1 0 0 0 0\nM CHG 1 7 1\nM STY 1 1 SUP\nM SAL 1 15 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15\nM SAL 1 4 16 17 18 19\nM SMT 1 P+Ph3\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 Ph3P+\nM END\n> \nP+Ph3\n\n> \nPh3P+\n\n$$$$\nOBoc\n Mrv1722009201714142D \n\n 8 7 0 0 0 0 999 V2000\n 0.4125 2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 1.4289 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 1.0164 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 1.8414 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -0.7145 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 0.0000 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 OBoc\nM SAP 1 1 7 0 1\nM SDS EXP 1 1\nM MJS SAT 1 BocO\nM END\n> \nOBoc\n\n> \nBocO\n\n$$$$\nNBoc\n Mrv1722009201714142D \n\n 8 7 0 0 0 0 999 V2000\n 0.4125 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -0.7145 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 0.1105 -1.1270 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.5395 -0.3020 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -1.4289 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 0.8250 -2.1434 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n 1.2375 -2.8579 0.0000 N 0 0 0 0 0 0 0 0 0 0 0 0\n 0.0000 -2.1434 0.0000 O 0 0 0 0 0 0 0 0 0 0 0 0\n 1 2 1 0 0 0 0\n 2 3 1 0 0 0 0\n 2 4 1 0 0 0 0\n 2 5 1 0 0 0 0\n 5 6 1 0 0 0 0\n 6 7 1 0 0 0 0\n 6 8 2 0 0 0 0\nM STY 1 1 SUP\nM SAL 1 8 1 2 3 4 5 6 7 8\nM SMT 1 NBoc\nM SAP 1 2 7 0 1 7 0 2\nM SDS EXP 1 1\nM MJS SAT 1 BocN\nM END\n> \nNBoc\n\n> \nBocN\n\n$$$$\n"] \ No newline at end of file diff --git a/public/marvinjs/gui/clear.cache.gif b/public/marvinjs/gui/clear.cache.gif deleted file mode 100644 index e565824aafafe632011b281cba976baf8b3ba89a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43 qcmZ?wbhEHbWMp7uXkcLY4+e@qSs1y10y+#p0Fq%~V)9{Rum%7ZWeN!Z diff --git a/public/marvinjs/gui/css/editor.css b/public/marvinjs/gui/css/editor.css deleted file mode 100644 index 457615b34..000000000 --- a/public/marvinjs/gui/css/editor.css +++ /dev/null @@ -1,61 +0,0 @@ -@charset "utf-8"; -/* CSS Document */ - -.mjs-body{ - color: black; - margin: 0px; - border: 0px; - padding: 0px; - overflow: hidden; - background-color: white; - height:100vh; - width: 100vw; - direction: ltr; -} - -.mjs-body noscript > div { - width: 442px; - position: absolute; - top: 50%; - left: 50%; - margin: -40px 0 0 -246px; - background-color: white; - border: 1px solid red; - padding: 20px; -} - -.mjs-body noscript > div > p { - font-family: sans-serif; - color: red; - margin: 0; -} - -.mjs-top, -.mjs-top table td, -.mjs-top select, -.mjs-top button { - font-family: Arial Unicode MS, Arial, sans-serif; - font-size: small; -} - -.mjs-top a, -.mjs-top a:visited { - color: #0066cc; - text-decoration:none; -} - -.mjs-top a:hover { - color: #0066cc; - text-decoration:underline; -} - -.mjs-top select { - background: white; -} - -/* UIBinder:InlineBar */ -.mjs-toolbar div.horizontal, .mjs-touchToolbar div.horizontal { - display: -webkit-inline-flex; - display: -ms-inline-flex; - display: inline-flex; -} diff --git a/public/marvinjs/gui/css/editor.min.css b/public/marvinjs/gui/css/editor.min.css deleted file mode 100644 index 9f83d34a6..000000000 --- a/public/marvinjs/gui/css/editor.min.css +++ /dev/null @@ -1 +0,0 @@ -@charset "utf-8";.mjs-body{color:black;margin:0;border:0;padding:0;overflow:hidden;background-color:white;height:100vh;width:100vw;direction:ltr}.mjs-body noscript>div{width:442px;position:absolute;top:50%;left:50%;margin:-40px 0 0 -246px;background-color:white;border:1px solid red;padding:20px}.mjs-body noscript>div>p{font-family:sans-serif;color:red;margin:0}.mjs-top,.mjs-top table td,.mjs-top select,.mjs-top button{font-family:Arial Unicode MS,Arial,sans-serif;font-size:small}.mjs-top a,.mjs-top a:visited{color:#06c;text-decoration:none}.mjs-top a:hover{color:#06c;text-decoration:underline}.mjs-top select{background:white}.mjs-toolbar div.horizontal,.mjs-touchToolbar div.horizontal{display:-webkit-inline-flex;display:-ms-inline-flex;display:inline-flex} \ No newline at end of file diff --git a/public/marvinjs/gui/gui.nocache.js b/public/marvinjs/gui/gui.nocache.js deleted file mode 100644 index 64c213699..000000000 --- a/public/marvinjs/gui/gui.nocache.js +++ /dev/null @@ -1,25 +0,0 @@ -function gui(){var N='bootstrap',O='begin',P='gwt.codesvr.gui=',Q='gwt.codesvr=',R='gui',S='startup',T='DUMMY',U=0,V=1,W='iframe',X='position:absolute; width:0; height:0; border:none; left: -1000px;',Y=' top: -1000px;',Z='CSS1Compat',$='',_='',ab='<\/head><\/body><\/html>',bb='undefined',cb='readystatechange',db=10,eb='script',fb='javascript',gb='Failed to load ',hb='moduleStartup',ib='scriptTagAdded',jb='moduleRequested',kb='meta',lb='name',mb='gui::',nb='::',ob='gwt:property',pb='content',qb='=',rb='gwt:onPropertyErrorFn',sb='Bad handler "',tb='" for "gwt:onPropertyErrorFn"',ub='gwt:onLoadErrorFn',vb='" for "gwt:onLoadErrorFn"',wb='#',xb='?',yb='/',zb='img',Ab='clear.cache.gif',Bb='baseUrl',Cb='gui.nocache.js',Db='base',Eb='//',Fb='gecko.variant',Gb='user.agent',Hb='gecko1_8',Ib='none',Jb='trident',Kb='ie11',Lb='std',Mb=2,Nb='onLoad',Ob='default',Pb='webkit',Qb='safari',Rb='msie',Sb=11,Tb='ie10',Ub=9,Vb='ie9',Wb=8,Xb='ie8',Yb='gecko',Zb=3,$b=4,_b='selectingPermutation',ac='gui.devmode.js',bc='5C5DC5E8F823390618266388A9FBC038',cc=':1',dc=':2',ec='foobar',fc=':3',gc=':4',hc=':5',ic=':',jc='.cache.js',kc='loadExternalRefs',lc='end',mc='http:',nc='file:',oc='_gwt_dummy_',pc='__gwtDevModeHook:gui',qc='Ignoring non-whitelisted Dev Mode URL: ',rc=':moduleBase',sc='head';var n=window;var o=document;q(N,O);function p(){var a=n.location.search;return a.indexOf(P)!=-1||a.indexOf(Q)!=-1} -function q(a,b){if(n.__gwtStatsEvent){n.__gwtStatsEvent({moduleName:R,sessionId:n.__gwtStatsSessionId,subSystem:S,evtGroup:a,millis:(new Date).getTime(),type:b})}} -gui.__sendStats=q;gui.__moduleName=R;gui.__errFn=null;gui.__moduleBase=T;gui.__softPermutationId=U;gui.__computePropValue=null;gui.__getPropMap=null;gui.__installRunAsyncCode=function(){};gui.__gwtStartLoadingFragment=function(){return null};gui.__gwt_isKnownPropertyValue=function(){return false};gui.__gwt_getMetaProperty=function(){return null};var r=null;var s=n.__gwt_activeModules=n.__gwt_activeModules||{};s[R]={moduleName:R};gui.__moduleStartupDone=function(e){var f=s[R].bindings;s[R].bindings=function(){var a=f?f():{};var b=e[gui.__softPermutationId];for(var c=U;c=U){continue}if(j==ob){k=i.getAttribute(pb);if(k){var l,m=k.indexOf(qb);if(m>=U){j=k.substring(U,m);l=k.substring(m+V)}else{j=k;l=_}c[j]=l}}else if(j==rb){k=i.getAttribute(pb);if(k){try{d=eval(k)}catch(a){alert(sb+k+tb)}}}else if(j==ub){k=i.getAttribute(pb);if(k){try{e=eval(k)}catch(a){alert(sb+k+vb)}}}}}__gwt_getMetaProperty=function(a){var b=c[a];return b==null?null:b};r=d;gui.__errFn=e} -function B(){function e(a){var b=a.lastIndexOf(wb);if(b==-1){b=a.length}var c=a.indexOf(xb);if(c==-1){c=a.length}var d=a.lastIndexOf(yb,Math.min(c,b));return d>=U?a.substring(U,d+V):_} -function f(a){if(a.match(/^\w+:\/\//)){}else{var b=o.createElement(zb);b.src=a+Ab;a=e(b.src)}return a} -function g(){var a=__gwt_getMetaProperty(Bb);if(a!=null){return a}return _} -function h(){var a=o.getElementsByTagName(eb);for(var b=U;bU){return a[a.length-V].href}return _} -function j(){var a=o.location;return a.href==a.protocol+Eb+a.host+a.pathname+a.search+a.hash} -var k=g();if(k==_){k=h()}if(k==_){k=i()}if(k==_&&j()){k=e(o.location.href)}k=f(k);return k} -function C(a){if(a.match(/^\//)){return a}if(a.match(/^[a-zA-Z]+:\/\//)){return a}return gui.__moduleBase+a} -function D(){var f=[];var g=U;function h(a,b){var c=f;for(var d=U,e=a.length-V;d=db&&b=Ub&&b=Wb&&b=Sb}())return Hb;return Qb};i[Gb]={'gecko1_8':U,'ie10':V,'ie8':Mb,'ie9':Zb,'safari':$b};__gwt_isKnownPropertyValue=function(a,b){return b in i[a]};gui.__getPropMap=function(){var a={};for(var b in i){if(i.hasOwnProperty(b)){a[b]=k(b)}}return a};gui.__computePropValue=k;n.__gwt_activeModules[R].bindings=gui.__getPropMap;q(N,_b);if(p()){return C(ac)}var l;try{h([Kb,Ob,Hb],bc);h([Lb,Ob,Hb],bc+cc);h([Ib,Ob,Qb],bc+dc);h([Kb,ec,Hb],bc+fc);h([Lb,ec,Hb],bc+gc);h([Ib,ec,Qb],bc+hc);l=f[k(Fb)][k(Nb)][k(Gb)];var m=l.indexOf(ic);if(m!=-1){g=parseInt(l.substring(m+V),db);l=l.substring(U,m)}}catch(a){}gui.__softPermutationId=g;return C(l+jc)} -function F(){if(!n.__gwt_stylesLoaded){n.__gwt_stylesLoaded={}}q(kc,O);q(kc,lc)} -A();gui.__moduleBase=B();s[R].moduleBase=gui.__moduleBase;var G=D();if(n){var H=!!(n.location.protocol==mc||n.location.protocol==nc);n.__gwt_activeModules[R].canRedirect=H;function I(){var b=oc;try{n.sessionStorage.setItem(b,b);n.sessionStorage.removeItem(b);return true}catch(a){return false}} -if(H&&I()){var J=pc;var K=n.sessionStorage[J];if(!/^http:\/\/(localhost|127\.0\.0\.1)(:\d+)?\/.*$/.test(K)){if(K&&(window.console&&console.log)){console.log(qc+K)}K=_}if(K&&!n[J]){n[J]=true;n[J+rc]=B();var L=o.createElement(eb);L.src=K;var M=o.getElementsByTagName(sc)[U];M.insertBefore(L,M.firstElementChild||M.children[U]);return false}}}F();q(N,lc);w(G);return true} -gui.succeeded=gui(); \ No newline at end of file diff --git a/public/marvinjs/gui/lib/promise-1.0.0.min.js b/public/marvinjs/gui/lib/promise-1.0.0.min.js deleted file mode 100644 index 8c87983f3..000000000 --- a/public/marvinjs/gui/lib/promise-1.0.0.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(){var a,b,c,d;!function(){var e={},f={};a=function(a,b,c){e[a]={deps:b,callback:c}},d=c=b=function(a){function c(b){if("."!==b.charAt(0))return b;for(var c=b.split("/"),d=a.split("/").slice(0,-1),e=0,f=c.length;f>e;e++){var g=c[e];if(".."===g)d.pop();else{if("."===g)continue;d.push(g)}}return d.join("/")}if(d._eak_seen=e,f[a])return f[a];if(f[a]={},!e[a])throw new Error("Could not find module "+a);for(var g,h=e[a],i=h.deps,j=h.callback,k=[],l=0,m=i.length;m>l;l++)"exports"===i[l]?k.push(g={}):k.push(b(c(i[l])));var n=j.apply(this,k);return f[a]=g||n}}(),a("promise/all",["./utils","exports"],function(a,b){"use strict";function c(a){var b=this;if(!d(a))throw new TypeError("You must pass an array to all.");return new b(function(b,c){function d(a){return function(b){f(a,b)}}function f(a,c){h[a]=c,0===--i&&b(h)}var g,h=[],i=a.length;0===i&&b([]);for(var j=0;j - - - -Marvin JS - v19.11.0 - - - - - - - - -
    - -
    -
    -

    - Documentation -

    -
    - -
    -

    - Examples -

    -
    - - diff --git a/public/marvinjs/js/lib/jquery-1.9.1.min.js b/public/marvinjs/js/lib/jquery-1.9.1.min.js deleted file mode 100644 index 006e95310..000000000 --- a/public/marvinjs/js/lib/jquery-1.9.1.min.js +++ /dev/null @@ -1,5 +0,0 @@ -/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license -//@ sourceMappingURL=jquery.min.map -*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="
    a",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="
    t
    ",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="
    ",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj; -return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},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)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="
    ",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}: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},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?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},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===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]||st.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]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(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){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&>(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/\s*$/g,At={option:[1,""],legend:[1,"
    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:b.support.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?""!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l) -}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("