From 7608332865a01c65a10424e5580a287ff4eb17a7 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Thu, 7 Jan 2010 14:31:12 +0000 Subject: [PATCH] Refactor / rename git-svn-id: https://svn.argeo.org/slc/trunk@3253 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- eclipse/features/org.argeo.slc.ide/.project | 17 + .../features/org.argeo.slc.ide/feature.xml | 52 ++ .../org.argeo.slc.ide.branding/.classpath | 7 + .../org.argeo.slc.ide.branding/.project | 28 + .../META-INF/MANIFEST.MF | 12 + .../build.properties | 7 + .../icons/argeo-icon-100104-256.png | Bin 0 -> 10716 bytes .../icons/argeo-logo-100104.xpm | 571 ++++++++++++++++++ .../org.argeo.slc.ide.product | 145 +++++ .../org.argeo.slc.ide.branding/plugin.xml | 45 ++ .../plugin_customization.ini | 2 + .../org.argeo.slc.ide.branding/splash.bmp | Bin 0 -> 403614 bytes .../plugins/org.argeo.slc.ide.ui/.classpath | 7 + eclipse/plugins/org.argeo.slc.ide.ui/.project | 28 + .../.settings/org.eclipse.jdt.core.prefs | 12 + .../org.argeo.slc.ide.ui/META-INF/MANIFEST.MF | 21 + .../org.argeo.slc.ide.ui/build.properties | 6 + .../icons/argeo-icon-100104-256.png | Bin 0 -> 10716 bytes .../org.argeo.slc.ide.ui/icons/slc-launch.gif | Bin 0 -> 223 bytes .../plugins/org.argeo.slc.ide.ui/plugin.xml | 139 +++++ .../org.argeo.slc.ide.ui/slc-sdk-dev.target | 194 ++++++ .../argeo/slc/ide/ui/DeployedSlcSystem.java | 50 ++ .../argeo/slc/ide/ui/EmbeddedSlcSystem.java | 34 ++ .../org/argeo/slc/ide/ui/SlcIdeUiPlugin.java | 44 ++ .../slc/ide/ui/SlcMainPreferencePage.java | 26 + .../slc/ide/ui/SlcPerspectiveFactory.java | 27 + .../java/org/argeo/slc/ide/ui/SlcSystem.java | 10 + .../ide/ui/launch/osgi/SlcLaunchShortcut.java | 283 +++++++++ .../preferences/SlcLaunchPreferencePage.java | 34 ++ .../SlcScriptLaunchConfigurationTab.java | 191 ++++++ .../SlcScriptLaunchConfigurationTabGroup.java | 16 + .../script/SlcScriptLaunchDelegate.java | 258 ++++++++ .../script/SlcScriptLaunchShortcut.java | 127 ++++ .../SlcScriptLaunchShortcutWithDialog.java | 11 + .../ide/ui/launch/script/SlcScriptUtils.java | 23 + 35 files changed, 2427 insertions(+) create mode 100644 eclipse/features/org.argeo.slc.ide/.project create mode 100644 eclipse/features/org.argeo.slc.ide/feature.xml create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/.classpath create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/.project create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/META-INF/MANIFEST.MF create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/build.properties create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/icons/argeo-icon-100104-256.png create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/icons/argeo-logo-100104.xpm create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/org.argeo.slc.ide.product create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/plugin.xml create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/plugin_customization.ini create mode 100644 eclipse/plugins/org.argeo.slc.ide.branding/splash.bmp create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/.classpath create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/.project create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/.settings/org.eclipse.jdt.core.prefs create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/META-INF/MANIFEST.MF create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/build.properties create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/icons/argeo-icon-100104-256.png create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/icons/slc-launch.gif create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/plugin.xml create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/slc-sdk-dev.target create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/DeployedSlcSystem.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/EmbeddedSlcSystem.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcIdeUiPlugin.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcMainPreferencePage.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcPerspectiveFactory.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcSystem.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/SlcLaunchShortcut.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/preferences/SlcLaunchPreferencePage.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTab.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTabGroup.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchDelegate.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcut.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcutWithDialog.java create mode 100644 eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptUtils.java diff --git a/eclipse/features/org.argeo.slc.ide/.project b/eclipse/features/org.argeo.slc.ide/.project new file mode 100644 index 000000000..bcaa4814e --- /dev/null +++ b/eclipse/features/org.argeo.slc.ide/.project @@ -0,0 +1,17 @@ + + + org.argeo.slc.ide + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/eclipse/features/org.argeo.slc.ide/feature.xml b/eclipse/features/org.argeo.slc.ide/feature.xml new file mode 100644 index 000000000..9507dacc2 --- /dev/null +++ b/eclipse/features/org.argeo.slc.ide/feature.xml @@ -0,0 +1,52 @@ + + + + + Simplify running scripts based on Argeo SLC + + + + Copyright 2008 Mathieu Baudier + + + + SLC - Software LifeCycle framework + +Copyright 2008 Mathieu Baudier - Argeo e.U. + +Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an &quot;AS IS&quot; BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + + + + + + + + + + diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/.classpath b/eclipse/plugins/org.argeo.slc.ide.branding/.classpath new file mode 100644 index 000000000..6cf1a3bd9 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.branding/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/.project b/eclipse/plugins/org.argeo.slc.ide.branding/.project new file mode 100644 index 000000000..c7576520a --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.branding/.project @@ -0,0 +1,28 @@ + + + org.argeo.slc.ide.branding + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/META-INF/MANIFEST.MF b/eclipse/plugins/org.argeo.slc.ide.branding/META-INF/MANIFEST.MF new file mode 100644 index 000000000..baedb4a3f --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.branding/META-INF/MANIFEST.MF @@ -0,0 +1,12 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Argeo IDE +Bundle-SymbolicName: org.argeo.slc.ide.branding;singleton:=true +Bundle-Version: 0.12.1.D20100107_1516 +Bundle-Vendor: Argeo.org +Require-Bundle: org.eclipse.ui;bundle-version="3.5.1", + org.eclipse.osgi;bundle-version="3.5.1", + org.eclipse.core.runtime;bundle-version="3.5.0", + org.eclipse.jdt.ui;bundle-version="3.5.1", + org.eclipse.ui.console;bundle-version="3.4.0" +Bundle-RequiredExecutionEnvironment: J2SE-1.5 diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/build.properties b/eclipse/plugins/org.argeo.slc.ide.branding/build.properties new file mode 100644 index 000000000..b06e874f3 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.branding/build.properties @@ -0,0 +1,7 @@ +bin.includes = META-INF/,\ + plugin_customization.ini,\ + plugin.xml,\ + icons/,\ + splash.bmp,\ + . +source.. = src/main/java/ diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/icons/argeo-icon-100104-256.png b/eclipse/plugins/org.argeo.slc.ide.branding/icons/argeo-icon-100104-256.png new file mode 100644 index 0000000000000000000000000000000000000000..a9af08836dc8d229623613658ddbe78a7f5b8230 GIT binary patch literal 10716 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 c #30567E", +", c #0E62B9", +"' c #0266CD", +") c #44505D", +"! c #1E5C9C", +"~ c #43505D", +"{ c #FC8E01", +"] c #0066CF", +"^ c #1E5C9D", +"/ c #FD8F00", +"( c #0166CE", +"_ c #43505E", +": c #FB8E01", +"< c #1D5C9E", +"[ c #0D62B9", +"} c #375473", +"| c #F58C04", +"1 c #355577", +"2 c #42505F", +"3 c #1F5C9B", +"4 c #4A4E52", +"5 c #F78C03", +"6 c #0265CC", +"7 c #0564C7", +"8 c #155FAD", +"9 c #1D5D9F", +"0 c #345577", +"a c #FA8E02", +"b c #0C62BB", +"c c #425160", +"d c #1260B2", +"e c #44505C", +"f c #F98D02", +"g c #1360AF", +"h c #1C5DA0", +"i c #255A90", +"j c #4C4D4F", +"k c #0365CA", +"l c #195EA6", +"m c #425161", +"n c #0863C3", +"o c #39536E", +"p c #1B5DA1", +"q c #175FA9", +"r c #474F57", +"s c #F38B05", +"t c #155FAC", +"u c #415162", +"v c #2B5886", +"w c #E5860B", +"x c #0863C2", +"y c #2D5783", +"z c #1B5DA2", +"A c #0B62BC", +"B c #3E5266", +"C c #CC7C16", +"D c #1061B5", +"E c #0864C3", +"F c #494E53", +"G c #B8751E", +"H c #175EA9", +"I c #27598E", +"J c #1A5DA3", +"K c #FA8D02", +"L c #4A4E51", +"M c #405163", +"N c #E4850B", +"O c #1A5EA4", +"P c #165FAA", +"Q c #225B95", +"R c #0F61B6", +"S c #0764C4", +"T c #365575", +"U c #E3850C", +"V c #D47F12", +"W c #CE7D15", +"X c #C97B17", +"Y c #C47919", +"Z c #BF771B", +"` c #CB7C16", +" . c #ED8907", +".. c #B17221", +"+. c #0A63C0", +"@. c #1B5DA3", +"#. c #28598C", +"$. c #2F5780", +"%. c #32567B", +"&. c #355575", +"*. c #39536F", +"=. c #3C5269", +"-. c #3D5268", +";. c #355576", +">. c #31567D", +",. c #2D5784", +"'. c #28598B", +"). c #185EA8", +"!. c #0E61B8", +"~. c #175EA8", +"{. c #205C99", +"]. c #29598A", +"^. c #3B536C", +"/. c #3B536B", +"(. c #365474", +"_. c #145FAE", +":. c #405164", +"<. c #195EA5", +"[. c #2E5781", +"}. c #415161", +"|. c #2B5887", +"1. c #F18A06", +"2. c #A46E27", +"3. c #7E5F38", +"4. c #585148", +"5. c #5E5346", +"6. c #806037", +"7. c #A36D28", +"8. c #D88111", +"9. c #3F5265", +"0. c #4D4D4E", +"a. c #31567C", +"b. c #185EA6", +"c. c #32567C", +"d. c #494E54", +"e. c #2E5782", +"f. c #385471", +"g. c #185EA7", +"h. c #4B4D50", +"i. c #4C4D4E", +"j. c #2F577F", +"k. c #484F55", +"l. c #F88D02", +"m. c #C0781B", +"n. c #7A5E39", +"o. c #4E4D4D", +"p. c #725B3D", +"q. c #D68011", +"r. c #1161B3", +"s. c #2C5885", +"t. c #464F58", +"u. c #0565C8", +"v. c #265A90", +"w. c #3A536D", +"x. c #4B4E50", +"y. c #0465CA", +"z. c #2A5889", +"A. c #0963C0", +"B. c #DD830E", +"C. c #98692C", +"D. c #595148", +"E. c #A76F26", +"F. c #A26D28", +"G. c #1460AF", +"H. c #335579", +"I. c #45505B", +"J. c #1E5C9E", +"K. c #715A3D", +"L. c #6E593F", +"M. c #E2850C", +"N. c #EE8907", +"O. c #33567A", +"P. c #215B97", +"Q. c #385470", +"R. c #2F5781", +"S. c #4A4E53", +"T. c #3F5266", +"U. c #255A91", +"V. c #3C526A", +"W. c #7C5F38", +"X. c #565049", +"Y. c #B9751E", +"Z. c #A46D27", +"`. c #484F56", +" + c #EB8808", +".+ c #906630", +"++ c #4E4E4C", +"@+ c #896333", +"#+ c #F68C04", +"$+ c #F28A05", +"%+ c #0D62BA", +"&+ c #464F59", +"*+ c #BC761D", +"=+ c #54504A", +"-+ c #7F6037", +";+ c #F88D03", +">+ c #A86F25", +",+ c #1260B1", +"'+ c #205C9A", +")+ c #1360B0", +"!+ c #FB8E02", +"~+ c #625544", +"{+ c #345578", +"]+ c #3A536E", +"^+ c #265A8F", +"/+ c #775D3B", +"(+ c #99692C", +"_+ c #A16C28", +":+ c #0C62BC", +"<+ c #0B62BD", +"[+ c #DF830E", +"}+ c #605445", +"|+ c #9C6B2A", +"1+ c #FD8E01", +"2+ c #E1840D", +"3+ c #0764C3", +"4+ c #0764C5", +"5+ c #39546F", +"6+ c #BB761D", +"7+ c #705A3E", +"8+ c #1C5DA1", +"9+ c #235B94", +"0+ c #1161B4", +"a+ c #B07222", +"b+ c #0F61B7", +"c+ c #215B98", +"d+ c #504E4C", +"e+ c #2C5886", +"f+ c #9F6C29", +"g+ c #D37F13", +"h+ c #235B95", +"i+ c #504E4B", +"j+ c #DF840D", +"k+ c #215B99", +"l+ c #836135", +"m+ c #E88709", +"n+ c #D17E14", +"o+ c #635543", +"p+ c #3E5267", +"q+ c #165FAB", +"r+ c #8F6630", +"s+ c #D58012", +"t+ c #2B5888", +"u+ c #28598D", +"v+ c #4B4E51", +"w+ c #9B6A2B", +"x+ c #E6860A", +"y+ c #454F5A", +"z+ c #3D5269", +"A+ c #635544", +"B+ c #0A63BF", +"C+ c #DB820F", +"D+ c #8C6532", +"E+ c #1F5C9C", +"F+ c #1061B4", +"G+ c #C1781B", +"H+ c #0963C1", +"I+ c #675742", +"J+ c #524F4B", +"K+ c #BD771C", +"L+ c #6B5840", +"M+ c #F68C03", +"N+ c #B17222", +"O+ c #A56E27", +"P+ c #5A5247", +"Q+ c #474F58", +"R+ c #8D6531", +"S+ c #816036", +"T+ c #C87B18", +"U+ c #755C3C", +"V+ c #D98110", +"W+ c #6A5840", +"X+ c #3C536A", +"Y+ c #30577F", +"Z+ c #EF8A06", +"`+ c #595248", +" @ c #E8870A", +".@ c #97692D", +"+@ c #534F4A", +"@@ c #DE830E", +"#@ c #8B6432", +"$@ c #4F4E4C", +"%@ c #D27F13", +"&@ c #AC7024", +"*@ c #C67A18", +"=@ c #735B3C", +"-@ c #0465C8", +";@ c #BA761E", +">@ c #695741", +",@ c #EA8709", +"'@ c #AA7025", +")@ c #AE7123", +"!@ c #EF8907", +"~@ c #96682D", +"{@ c #534F4B", +"]@ c #484E55", +"^@ c #29598B", +"/@ c #8A6432", +"(@ c #C57A19", +"_@ c #42515F", +":@ c #F48B04", +"<@ c #AD7123", +"[@ c #5E5345", +"}@ c #575148", +"|@ c #E6860B", +"1@ c #94682E", +"2@ c #0B63BE", +"3@ c #3F5164", +"4@ c #CF7E14", +"5@ c #2A5888", +"6@ c #C3791A", +"7@ c #B7751F", +"8@ c #665642", +"9@ c #F48B05", +"0@ c #AB7024", +"a@ c #ED8908", +"b@ c #575149", +"c@ c #93672F", +"d@ c #DA8210", +"e@ c #876334", +"f@ c #7B5E39", +"g@ c #C2781A", +"h@ c #6F5A3E", +"i@ c #655642", +"j@ c #AF7122", +"k@ c #1460AE", +"l@ c #225B97", +"m@ c #7C5E39", +"n@ c #255A92", +"o@ c #375472", +"p@ c #2C5884", +"q@ c #D48012", +"r@ c #C77B18", +"s@ c #D78111", +"t@ c #45505A", +"u@ c #F28B05", +"v@ c #DC820F", +"w@ c #514F4B", +"x@ c #0365CC", +"y@ c #EA8809", +"z@ c #B47420", +"A@ c #6C5840", +"B@ c #B47320", +"C@ c #B27321", +"D@ c #B7741F", +"E@ c #5C5346", +"F@ c #CF7D14", +"G@ c #C77A18", +"H@ c #0E61B7", +"I@ c #AA7024", +"J@ c #2D5884", +"K@ c #9E6B2A", +"L@ c #7D5F38", +"M@ c #1160B3", +"N@ c #EC8808", +"O@ c #896433", +"P@ c #245A92", +"Q@ c #5F5445", +"R@ c #335578", +"S@ c #4E4D4C", +"T@ c #9C6B2B", +"U@ c #55504A", +"V@ c #225B96", +"W@ c #205B99", +"X@ c #A76E26", +"Y@ c #E98709", +"Z@ c #A06C29", +"`@ c #5B5247", +" # c #615444", +".# c #CF7D15", +"+# c #856235", +"@# c #0B62BE", +"## c #27598D", +"$# c #97682D", +"%# c #A96F25", +"&# c #6D593F", +"*# c #6C593F", +"=# c #B57420", +"-# c #92672F", +";# c #695841", +"># c #95682E", +",# c #BE771C", +"'# c #5C5247", +")# c #395470", +"!# c #43505F", +" . ", +" . . . ", +" . . . . ", +" . . . . . . + ", +" . . . . . . . . + ", +" . . . . . . . . . . @ ", +" . . . . . . . . . . . . @ # # # # # # # # # # # # # # # ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . , . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' ) - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ! - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' ~ - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # { . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^ - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( _ - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # : . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . < - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . [ } # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ . . . . . . . . . . . . . . . . . . . . . . . . . . . . > 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( 2 - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 4 - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 5 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 0 - - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # a . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( c - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . d e - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # f . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . g . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . h - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; i j - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 5 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . l . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( m - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . n o - - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . p - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . q r - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # s . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; u - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * v - - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # w . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . y . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A B - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # C . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . D ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; u - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 F - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # G . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . I . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . J - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; u - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # K . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ! ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x L . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] M - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . q - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . O - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x D P h Q = 9 P R S . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . T # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / U V W X Y Z ` .# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * +.d O 9 P R x ' . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P ", +" . . . . . . . . . . . . . . . . . $ D @.= #.v $.%.&.*.=.-.*.;.>.,.'.= ).+.] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . !.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ ~.{.].%.^./.(.>.v = _.% . . . . . . . . . . . ] :.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ <.[._ - - - - - - - - - - }.|._.' . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . R # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 1.` 2.3.4.- - - - - - - - 5.6.7.8.# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # K 6. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( t > 9.r - - - - - - - - 0.r M a.b.& . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . v ", +" . . . . . . . . . . . & 8 I c.=.r - - - - - - - - - - - - - - - - - - - - d./.e.z & . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . f. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' g.;.h.- - - - - - - - - - - i.M $.8 ; . . . . . . . <.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +.j.j - - - - - - - - - - - - - - - - k.= 6 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . [. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # l.m.n.o.- - - - - - - - - - - - - - - - p.Z K # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # q. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . r.s.t.- - - - - - - - - - - - - - - - - 4 0 p u.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + ", +" . . . . . . . ( d v.w.x.- - - - - - - - - - - - - - - - - F > _.; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . y.z.r - - - - - - - - - - - ) I A.. . . . ] 9.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x e.h.- - - - - - - ) z ] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # B.C.D.- - - - - - - - 5.E.f # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # F. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b._ - - - - - - - - - x.v % . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z ", +" . . . . . G.H.F - - - - - - - - - - I.J.] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 j . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 ) - - - - - - - i.j.E . . b.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ~.d.- - - - - } y.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ` K.- - - - - - - L.M.# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + O.- - - - - - I.l . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; w. ", +" . $ P.u - - - - - - - - /., . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Q. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % R.- - - - - S.v.& T.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . U.0.- - - V.S . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <.- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # B.W.- - - - - X.Y.# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Z. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . J r - - - - (.A.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <. ", +" 4 - - - - - j ].; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b e - - - - - `.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' H.- - - T.b . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 `. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # +.+++- - - - @+#+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # $+5. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & 1 - - - - S.P . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] /. ", +" - - - > ; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S i. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %+&+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . [.- - - -.@ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # *+=+- - - - -+;+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # >+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * f.- - - k.,+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . q ", +" z.] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . /. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %+t.- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . '+- - - v.] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . )+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # !+C.- - - - .+K # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | ~+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; {+- - - !.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ]+ ", +" ^+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . ].- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . [ t.- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . )+h.- - P . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] ) # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N./+- - - (+: # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # _+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $.- - - :+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 ", +" R . . . . . . . . . . . . . . . . . . . . . . . . . . . . g.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . n t.- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' ~ - - <+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > # # # # # # # # # # # # # # # # # # # # # # # # # # # # # [+}+- - - |+1+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 2+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z.- - - 3+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & `. ", +" ; . . . . . . . . . . . . . . . . . . . . . . . . . . . 4+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] 5+- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . {.- # # # # # # # # # # # # # # # # # # # # # # # # # # # # +}+- - - 6+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 7+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . h - - - 8+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . e. ", +" S . . . . . . . . . . . . . . . . . . . . . . . . . . . . _ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9+- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 I.- - y.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 0+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # #+L.- - - U # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # a+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . u.&+- - S . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . D - ", +" ; . . . . . . . . . . . . . . . . . . . . . . . . . . . a.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+x.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . c+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 j # # # # # # # # # # # # # # # # # # # # # # # # # # # { 6.- - - ;+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N.d+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . e+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B ", +" ' . . . . . . . . . . . . . . . . . . . . . . . . . . . '+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & u - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . =.- - ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . T. # # # # # # # # # # # # # # # # # # # # # # # # # # # # f+- - - g+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 6. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . , j - - 4+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . h+ ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . ,+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . U.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 j - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $.- # # # # # # # # # # # # # # # # # # # # # # # # # # # N i+- - j+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # *+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^.- - ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . S - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 &+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # l+- - / # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # m+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . p - - $ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . e ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . d. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . J.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . R.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @.- # # # # # # # # # # # # # # # # # # # # # # # # # # # n+- - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # o+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . M - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $. ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . p+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] M - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . -.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . q+- # # # # # # # # # # # # # # # # # # # # # # # # # # / L.- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # r+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . O.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . r.- # # # # # # # # # # # # # # # # # # # # # # # # # # # s+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 6+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . t+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ j ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . u+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . v+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b - # # # # # # # # # # # # # # # # # # # # # # # # # # # w+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # x+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( y+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z+ ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' S.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . % - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E - # # # # # # # # # # # # # # # # # # # # # # # # # # # A+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # }+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . e.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . _.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . d - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . B+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & - # # # # # # # # # # # # # # # # # # # # # # # # # # C+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # D+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . >.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . F+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . U.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . S - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . j - # # # # # # # # # # # # # # # # # # # # # # # # # # # F.- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # G - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & F - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . F+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . * - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & - - # # # # # # # # # # # # # # # # # # # # # # # # # # # -+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # G+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . )+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & j ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . * 4 - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . F - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # I+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / X /+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . M ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ - . . . . . . . . . . . . . . . . . . . . . . . . . . . . , - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . e - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . R - - # # # # # # # # # # # # # # # # # # # # # # # # # # 1+J+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # : K+L+- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . c.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . G.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . q+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # +- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # M+N+~+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . u+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . v+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . <.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . >.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . h - # # # # # # # # # # # # # # # # # # # # # # # # # # # g+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 1.O+P+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * h.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Q+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^ - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Q - # # # # # # # # # # # # # # # # # # # # # # # # # # # Y - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # m+(+=+- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ~.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . _ - . . . . . . . . . . . . . . . . . . . . . . . . . . . . U.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . '.- # # # # # # # # # # # # # # # # # # # # # # # # # # # X - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # [+R+d+- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . < - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . R - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . t+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . &+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $.- # # # # # # # # # # # # # # # # # # # # # # # # # # # W - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # V S+o.- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . e+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . /.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . j.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . a. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ;.- # # # # # # # # # # # # # # # # # # # # # # # # # # # V - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / T+U+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] h. ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . f.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . D - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . =.- # # # # # # # # # # # # # # # # # # # # # # # # # # # V+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # !+6+W+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . f.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . I.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . {+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . *. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & x.- # # # # # # # # # # # # # # # # # # # # # # # # # # # [+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #+a+}+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . X+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . u - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Y+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . q+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P - - # # # # # # # # # # # # # # # # # # # # # # # # # # # +- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Z+Z.`+- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . M - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . s.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . V. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |.- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # X. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # @.@+@- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . I.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . /.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . #.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . :.- # # # # # # # # # # # # # # # # # # # # # # # # # # # # p.- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # @@#@$@- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . d.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . U.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # .+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # %@6.- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] 0.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # &@- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / *@=@- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . {+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . -@ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . >.- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # X - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # K ;@>@- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . >.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . y+- # # # # # # # # # # # # # # # # # # # # # # # # # # # # ,@'@{ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | )@}+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # !@F.4.- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ;.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] H+8 '+^+z.e.a.;.Q.V.:.w.Y+U.@.D @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - 6 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H.- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # x+~@{@- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . j - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . f.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & ).#.{+9.4 - - - - - - - - - - - - - - - - - ]@p+H.^@z . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . , 0.- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # B./@$@- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ]@- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . w.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H+'+} v+- - - - - - - - - - - - - - - - ~ . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - -@. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 0 - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # n+3.- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . I.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . -.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' E+9.- - - - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+0.- # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 1+(@p.- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . u - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . :.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( < _ - - - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - :+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . T - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # K Y.I+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . -.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z _@- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . D - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # :@<@[@- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . o - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( y - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . } - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N._+}@- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . T - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . y.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % f.- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - 8 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |@1@{@- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Y+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +.M - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - g.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2@`.- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # C+@+++- - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 3@- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - d . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % M - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 4@W.- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . < - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5@- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - :+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; (.- - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 1+6@7+- - - - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . v.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . g 0.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - b+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z.- - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # f 7@8@- - - - - # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] F . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . R.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k e - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - g . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . h - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 9@0@5.- - - - - # # # ;+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . -. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . /.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . h - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - H . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . r.v+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # a@f+b@- - - - # # # # # a . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; S.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . f.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . r.t.- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N c@J+- - - - # # # # # # # { . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4+j - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - e.& . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . < v+- - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # d@e@++- - - - # # # # # # # # # f . . . . . . . . . . . . . . . . . . . . . . . . . . . . . t - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . J - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . k+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - :.!.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( e+- - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # W f@- - - - - # # # # # # # # # # f . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 d. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^@- ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . . (.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - 4 c+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ *.- - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # { g@h@- - - - - # # # # # # # # # # # # { . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . f.- ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . , _ - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # *+i@- - - - - # # # # # # # # # # # # # # # a . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . l - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( `.- ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . . Q+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . J S.- - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # j@- - - - # # # # # # # # # # # # # # # # # l. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & 4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . d - - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . ' 0.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k@/.- - - - { # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # { p. # # # # # # # # # # # # # # # # # # # K . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . {+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . '.- - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . H+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . = - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ,+]+- - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # @@ # # # # # # # # # # # # # # # # # # # # / . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9.- ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . R - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . l@- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . F+f.- - - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # '@ # # # # # # # # # # # # # # # # # # # # # # # f . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % d. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x - - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . <+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . < - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( ,+T - - - - - : # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # l.m@ # # # # # # # # # # # # # # # # # # # # # # # # # # l. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . n@ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^ - - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . l - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B+3 1 ]@- - - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # V # # # # # # # # # # # # # # # # # # # # # # # # # # # # : . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 3@ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . o@- - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . ; i. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; 8 ).b * . . . . . . . . . . . . . . . . . . . % ).,._@- - - - - - - f # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # T+ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H+i.- ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . . I.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . F+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S U.~ - - - i._ Q.%.p@I l@8+P r.A !.8 p Q ].Y+(.-.e j - - - - - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # q@ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # r@- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] f. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . I - - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . . >.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . :+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] t 0 j - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # s@ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # !+I+- - ] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ,+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; e - - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . . h - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . r.9.- - - - - - - - - - - - - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # s+ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # a+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ]. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P - - ", +". . . . . . . . . . . . . . . . . . . . . . . . . . . . . E i. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . % y i.- - - - | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / B. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Z+D.- - ; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; c+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 0 - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . >. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . j - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . k@t@- - - - # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # S+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b i.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B+4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . `.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . 2@]@- - - u@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # { # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # a+- - - * . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^@ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ) - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . '.- - - { # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # v@w@- - ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . !.0.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( ]. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . $.- - @# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #+I+- - * . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( 6 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . &.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x@ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . t+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . J.- . . . . . . u@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # : 3.- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . F+- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * 7 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @.- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . @ M . . . . . . . . . . . . . . . . . . . . . . . . # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # r+- - - % . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; /.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . y@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # F.- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . c+- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . `. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . :@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # z@- - - <+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +.S.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . f. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . / # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N+o.- - $ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Q.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . u+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Z.- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . J.- - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ).- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . N # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / .@- - - D . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b d.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # l.#@- - - b+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ c - - ", +" 7 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . -. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . { # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # j+A@- - - x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( f.- - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E+- . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . * B@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # C@{@- - - 6 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5@- - - ", +" @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % d. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x D@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N.6.- - - - '+; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . < - - - ", +" ; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . R. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <+ Y # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ` E@- - - I ; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 i.- - ", +" + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x k. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . <+ F@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # l.C.- - - - 5@; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ! 0.- - ", +" D . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . v. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %+ G@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # [+A@- - - z.; . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . '+0.- - ", +" d . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . k@j H@. . . . . . . . . . . . . . . . . . . . . . . . . . . . . k -. . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - ] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ^+ 7@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # / C@J+- - - |.* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . h+- - - ", +" , . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S &+- H.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . , . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+ I@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 4@K.- - - - o@E . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & >.- - - ", +" B+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % /.- - 6 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . )+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - <+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . J@ K@1+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # C+L@- - - - _ M@. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B+T.- - - ", +" S . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + p+- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - u.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E S+N@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # w O@o.- - - - S.3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P `.- - - ", +" )+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A.m - - - & . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - S . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . P@ Q@` # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # .~@i+- - - - R@x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % v i.- - - ", +" ].* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . q y+- - - 7 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . x . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - 2@. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & Q+ S@T@!+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # :@F.U@- - - - d.V@( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @.y+- - - ", +" B %+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 >.- - - - k . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( /.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - M H@. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ;. =@8.# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # f j@P+- - - - - 9.r.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . :+5+- - - - ", +" 4 V@] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] O &+- - - P@( . . . . . . . . . . . . . . . . . . . . . . . . . . . 5@- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - |.7 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E+- o.R+ +# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # f Y.~+- - - - 0.{+D . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B+e.x.- - - ", +" ]+t ] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; J 3@- - - - W@. . . . . . . . . . . . . . . . . . . . . . . . . . ).- - - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - k.9+6 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H+- =+X@;+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # Y@Z@`@- - - - - 5+8 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . , %.j - - - - ", +" - }.k+y.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ' h }.- - - - k+] . . . . . . . . . . . . . . . . . . . . . . . B+`.- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - - e #.H@. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . :. - #<@s # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # .#+#$@- - - - - - p+h % . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( 8 (.0.- - - - ", +" - d.v @#. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 0+,.r - - - - - O.$ . . . . . . . . . . . . . . . . . . . . . M@y+- - . . . . . . . . . . . . . . . . . . . . . . . . . . . . > - - - _@^@R ( . . . . . . . . . . . . . . . . . . . . . . . . . . . & H+R t z P.##y H.o 3@y+h.- h.I.p+o@> z.h+<.@ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ].- - U@$#U # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # N %#>@- - - - - - v+{+<.& . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( _.[.r - - - - - ", +" - 0.(.! [ ; . . . . . . . . . . . . . . . . . . . . . . . . . . . . ; b+v.c - - - - - M P . . . . . . . . . . . . . . . . . . y.= x.- - - . P J J J J J J J J J J J J J J J J J J J J J J J J J J w.- - - - v+9.%.U.b.A $ ' . . . . . . . ; @ b ,+b.E+U.|.c.f.p+e 4 - - - - - - - - - - - - - - - - - - - - - - i.-.U.7 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . g - - o.6.6@:@# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # U >+&#- - - - - - - - d.a.h <+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . n O e.Q+- - - - - - ", +" - - - d.Q.I t u.. . . . . . . . . . . . . . . . . . . . ; [ c+1 `.- - - - - - - w.)+] . . . . . . . . . . . . % t z.`.- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - x.`.e u p+u Q+i.- - - - - - - - - - - - - - - - - - - - - - - - S.t+% . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & - - - w@3.B@Y@# # # # # # # # # # # # # # # # # # # # # # # # # # # 1.X Z@*#- - - - - - - - - r (.U.k@4+. . . . . . . . . . . . . . . . . . . . . . . . 6 !.'+c.~ - - - - - - - ", +" - - - - 0.M %.p@##V@9 g.)+, x y.@ +.!.,+P ! z.;.M v+- - - - - - - - &+Y+p d B+% n [ )+g.^ s.B j - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - m [ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . F - - - &#c@=#8.;+# # # # # # # # # # # # # # # # # #+[+6+-#;#o.- - - - - - - - - - - S.:.&.|.P.g.8 M@!.@#n u.k + +.%+F+g q ^ #.%./.y+0.- - - - - - - - ", +" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - k.[ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . _ - - - - - $@A@e@>#7.a+,#` .#X Y ,#G C@F./@p.'#- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ", +" - - - - - - - - - - - - - - - - - - - - - - - - {+& . . . . . . . . . . . . . . . . . . . . . . . . . . . . =.- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ", +" !.. . . . . . . . . . . . . . . . . . . . . . . . . . . . (.- - - - - - - - - - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . Y+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . ].- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . h+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . P.- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . i - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z.- ", +" . . . . . 6 . . . . . . . . . . . . . . . . . . . . . . . . . . . . e.- ", +" . . . . . . . & . . . . . . . . . . . . . . . . . . . . . . . . . . . . H.- ", +" . . . . . . . . . * . . . . . . . . . . . . . . . . . . . . . . . . . . . . . M - ", +" . . . . . . . . . . ] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 j - ", +" . . . . . . . . . . . . . ( . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . D - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . E+- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . {+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & 4 - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . l - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . S v+- ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . z.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 F - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . u+- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %+v+- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( -.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . i - - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . )+x.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . %+k.- - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . n e - - ", +" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + 9.- - - ", +" S . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2@_@- - - ", +" d.'+] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . D Q+- - - ", +" - )#H+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . l S.- - - ", +" k.9+* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . & [.- - - - ", +" - !#l . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b+u - - - ", +" - w.b+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . % u+x.- - - ", +" i.Y++.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 h+r - - - - ", +" j c., . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( ^ I.- - - - ", +" - 0.(.,+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ] O m - - - - ", +" - - /.@.& . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . t p+- - - - ", +" - d.$.,+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . b ^+u - - - - ", +" - - _ ^+A . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2@U.9.- - - - - - ", +" - - - _ y ~.y.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . H+9+-.- - - - - - ", +" - - - x.o = ,+y.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ( %+z z.V.0.- - - - - ", +" - - - - i.}.%.h+g 7 . . . . . . . . . . . . . . . . . . . . . . . . . . & 0+3 e.z+4 - - - - - - - ", +" - - - - - - d.M o@[.i h t ,+R %+B+S u.y.E b 0+8 <.^ Q I |.Y+1 M j - - - - - - - - - ", +" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ", +" - - - - - - - - - - - - - - - - - - "}; diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/org.argeo.slc.ide.product b/eclipse/plugins/org.argeo.slc.ide.branding/org.argeo.slc.ide.product new file mode 100644 index 000000000..ec3e83181 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.branding/org.argeo.slc.ide.product @@ -0,0 +1,145 @@ + + + + + + + + + %productBlurb + + + + + + + + -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts + + + + + + + + + + + + + + + + org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6 + + + + http://www.eclipse.org/legal/epl-v10.html + + Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + +b) in the case of each subsequent Contributor: + +i) changes to the Program, and + +ii) additions to the Program; + +where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + +a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + +b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + +c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + +d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + +a) it complies with the terms and conditions of this Agreement; and + +b) its license agreement: + +i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + +ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + +iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + +iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + +a) it must be made available under this Agreement; and + +b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. + + + + + + + + + + + + + + + + diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/plugin.xml b/eclipse/plugins/org.argeo.slc.ide.branding/plugin.xml new file mode 100644 index 000000000..19b35d1d0 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.branding/plugin.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/plugin_customization.ini b/eclipse/plugins/org.argeo.slc.ide.branding/plugin_customization.ini new file mode 100644 index 000000000..9c412a408 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.branding/plugin_customization.ini @@ -0,0 +1,2 @@ +org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP=true +org.eclipse.ui/defaultPerspectiveId=org.argeo.slc.ide.ui.slcPerspective \ No newline at end of file diff --git a/eclipse/plugins/org.argeo.slc.ide.branding/splash.bmp b/eclipse/plugins/org.argeo.slc.ide.branding/splash.bmp new file mode 100644 index 0000000000000000000000000000000000000000..ee502f3094cee88bb2264f444ce54d6aa4c5b030 GIT binary patch literal 403614 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 KAfpg~SN}hRcX|Z? literal 0 HcmV?d00001 diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/.classpath b/eclipse/plugins/org.argeo.slc.ide.ui/.classpath new file mode 100644 index 000000000..6cf1a3bd9 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/.project b/eclipse/plugins/org.argeo.slc.ide.ui/.project new file mode 100644 index 000000000..ad44979dd --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/.project @@ -0,0 +1,28 @@ + + + org.argeo.slc.ide.ui + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/.settings/org.eclipse.jdt.core.prefs b/eclipse/plugins/org.argeo.slc.ide.ui/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..05eb2567a --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +#Fri Aug 29 11:26:23 CEST 2008 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.5 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.5 diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/META-INF/MANIFEST.MF b/eclipse/plugins/org.argeo.slc.ide.ui/META-INF/MANIFEST.MF new file mode 100644 index 000000000..2d86f2d46 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/META-INF/MANIFEST.MF @@ -0,0 +1,21 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: SLC IDE UI +Bundle-SymbolicName: org.argeo.slc.ide.ui;singleton:=true +Bundle-Version: 0.12.1.D20100107_1516 +Bundle-Activator: org.argeo.slc.ide.ui.SlcIdeUiPlugin +Require-Bundle: org.eclipse.ui, + org.eclipse.core.runtime, + org.eclipse.debug.core, + org.eclipse.jdt.launching, + org.eclipse.debug.ui, + org.eclipse.jdt.core, + org.eclipse.ui.console, + org.eclipse.jdt.debug.ui, + org.eclipse.ui.ide, + org.eclipse.core.variables, + org.eclipse.pde.build, + org.eclipse.pde.ui;bundle-version="3.4.0", + org.eclipse.jdt.ui;bundle-version="3.4.2" +Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Bundle-Vendor: Argeo diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/build.properties b/eclipse/plugins/org.argeo.slc.ide.ui/build.properties new file mode 100644 index 000000000..739511cdb --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/build.properties @@ -0,0 +1,6 @@ +source.. = src/main/java/ +bin.includes = META-INF/,\ + .,\ + plugin.xml,\ + icons/,\ + slc-sdk-dev.target diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/icons/argeo-icon-100104-256.png b/eclipse/plugins/org.argeo.slc.ide.ui/icons/argeo-icon-100104-256.png new file mode 100644 index 0000000000000000000000000000000000000000..a9af08836dc8d229623613658ddbe78a7f5b8230 GIT binary patch literal 10716 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 O=A_0jy-syS25SJFSX2-I literal 0 HcmV?d00001 diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/plugin.xml b/eclipse/plugins/org.argeo.slc.ide.ui/plugin.xml new file mode 100644 index 000000000..cce27f985 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/plugin.xml @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/slc-sdk-dev.target b/eclipse/plugins/org.argeo.slc.ide.ui/slc-sdk-dev.target new file mode 100644 index 000000000..273cc6057 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/slc-sdk-dev.target @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/DeployedSlcSystem.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/DeployedSlcSystem.java new file mode 100644 index 000000000..89924322a --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/DeployedSlcSystem.java @@ -0,0 +1,50 @@ +package org.argeo.slc.ide.ui; + +import java.io.File; +import java.io.IOException; +import java.util.List; +import java.util.Vector; + +import org.eclipse.core.runtime.CoreException; +import org.eclipse.jdt.launching.IVMInstall; +import org.eclipse.jdt.launching.JavaRuntime; + +public class DeployedSlcSystem implements SlcSystem { + private File baseDir; + private String relLibDir = "lib"; + + public DeployedSlcSystem(String baseDirPath) { + try { + this.baseDir = new File(baseDirPath).getCanonicalFile(); + } catch (IOException e) { + throw new RuntimeException("Cannot get path for " + baseDirPath, e); + } + } + + public String[] getClasspath() throws CoreException { + List classpath = new Vector(); + File libDir = new File(baseDir.getPath() + File.separator + relLibDir); + File[] files = libDir.listFiles(); + for (File file : files) { + try { + classpath.add(file.getCanonicalPath()); + } catch (IOException e) { + throw new RuntimeException("Cannot get path for " + file, e); + } + } + return classpath.toArray(new String[classpath.size()]); + } + + public IVMInstall getVmInstall() throws CoreException { + return JavaRuntime.getDefaultVMInstall(); + } + + public String getAntHome() { + return baseDir.getPath(); + } + + public String getJavaLibraryPath() { + return baseDir.getPath() + File.separator + "bin"; + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/EmbeddedSlcSystem.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/EmbeddedSlcSystem.java new file mode 100644 index 000000000..e2414e0e0 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/EmbeddedSlcSystem.java @@ -0,0 +1,34 @@ +package org.argeo.slc.ide.ui; + +import org.argeo.slc.ide.ui.launch.preferences.SlcLaunchPreferencePage; +import org.eclipse.core.runtime.CoreException; +import org.eclipse.jdt.core.IJavaProject; +import org.eclipse.jdt.launching.IVMInstall; +import org.eclipse.jdt.launching.JavaRuntime; + +public class EmbeddedSlcSystem implements SlcSystem { + private final IJavaProject project; + + public EmbeddedSlcSystem(IJavaProject project) { + this.project = project; + } + + public String[] getClasspath() throws CoreException { + return JavaRuntime.computeDefaultRuntimeClassPath(project); + } + + public String getJavaLibraryPath() { + String javaLibPath = SlcIdeUiPlugin.getDefault() + .getPreferenceStore().getString( + SlcLaunchPreferencePage.PREF_SLC_RUNTIME_LOCATION); + if (javaLibPath == null || javaLibPath.equals("")) + return null; + else + return javaLibPath; + } + + public IVMInstall getVmInstall() throws CoreException { + return JavaRuntime.getVMInstall(project); + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcIdeUiPlugin.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcIdeUiPlugin.java new file mode 100644 index 000000000..c9ddd4b8d --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcIdeUiPlugin.java @@ -0,0 +1,44 @@ +package org.argeo.slc.ide.ui; + +import org.eclipse.ui.plugin.AbstractUIPlugin; +import org.osgi.framework.BundleContext; + +/** + * The activator class controls the plug-in life cycle + */ +public class SlcIdeUiPlugin extends AbstractUIPlugin { + + // The plug-in ID + public static final String ID = "org.argeo.slc.ide.ui"; + + // The shared instance + private static SlcIdeUiPlugin plugin; + + /** + * The constructor + */ + public SlcIdeUiPlugin() { + } + + @Override + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + } + + @Override + public void stop(BundleContext context) throws Exception { + plugin = null; + super.stop(context); + } + + /** + * Returns the shared instance + * + * @return the shared instance + */ + public static SlcIdeUiPlugin getDefault() { + return plugin; + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcMainPreferencePage.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcMainPreferencePage.java new file mode 100644 index 000000000..d0917153e --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcMainPreferencePage.java @@ -0,0 +1,26 @@ +package org.argeo.slc.ide.ui; + +import org.eclipse.jface.preference.FieldEditorPreferencePage; +import org.eclipse.ui.IWorkbench; +import org.eclipse.ui.IWorkbenchPreferencePage; + +public class SlcMainPreferencePage extends FieldEditorPreferencePage implements + IWorkbenchPreferencePage { + public SlcMainPreferencePage() { +// IPreferenceStore store = SlcIdePlugin.getDefault().getPreferenceStore(); +// setPreferenceStore(store); + setDescription("Argeo SLC Preferences"); + } + + @Override + protected void createFieldEditors() { +// addField(new DirectoryFieldEditor(PREF_SLC_RUNTIME_LOCATION, +// "SLC Runtime", getFieldEditorParent())); +// addField(new DirectoryFieldEditor(PREF_EMBEDDED_JAVA_LIBRARY_PATH, +// "Embedded Java Library Path", getFieldEditorParent())); + } + + public void init(IWorkbench workbench) { + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcPerspectiveFactory.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcPerspectiveFactory.java new file mode 100644 index 000000000..7c0084e21 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcPerspectiveFactory.java @@ -0,0 +1,27 @@ +package org.argeo.slc.ide.ui; + +import org.eclipse.jdt.ui.JavaUI; +import org.eclipse.ui.IFolderLayout; +import org.eclipse.ui.IPageLayout; +import org.eclipse.ui.IPerspectiveFactory; +import org.eclipse.ui.console.IConsoleConstants; + +public class SlcPerspectiveFactory implements IPerspectiveFactory { + + public void createInitialLayout(IPageLayout layout) { + // Get the editor area. + String editorArea = layout.getEditorArea(); + + IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.LEFT, 0.25f, + editorArea); + topLeft.addView(JavaUI.ID_PACKAGES); + + IFolderLayout bottom = layout.createFolder("bottom", IPageLayout.BOTTOM, 0.66f, + editorArea); + bottom.addView(IConsoleConstants.ID_CONSOLE_VIEW); + bottom.addView(IPageLayout.ID_TASK_LIST); + + layout.addActionSet("org.eclipse.debug.ui.launchActionSet"); + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcSystem.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcSystem.java new file mode 100644 index 000000000..ff797c66a --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/SlcSystem.java @@ -0,0 +1,10 @@ +package org.argeo.slc.ide.ui; + +import org.eclipse.core.runtime.CoreException; +import org.eclipse.jdt.launching.IVMInstall; + +public interface SlcSystem { + public String[] getClasspath() throws CoreException; + public String getJavaLibraryPath(); + public IVMInstall getVmInstall() throws CoreException; +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/SlcLaunchShortcut.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/SlcLaunchShortcut.java new file mode 100644 index 000000000..fb34e27fe --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/osgi/SlcLaunchShortcut.java @@ -0,0 +1,283 @@ +package org.argeo.slc.ide.ui.launch.osgi; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.StringTokenizer; + +import org.eclipse.core.resources.IProject; +import org.eclipse.core.runtime.Assert; +import org.eclipse.core.runtime.CoreException; +import org.eclipse.debug.core.ILaunchConfigurationType; +import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; +import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants; +import org.eclipse.jdt.launching.IVMInstall; +import org.eclipse.jdt.launching.IVMInstall2; +import org.eclipse.jdt.launching.IVMInstallType; +import org.eclipse.jdt.launching.JavaRuntime; +import org.eclipse.jface.dialogs.ErrorDialog; +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.jface.viewers.IStructuredSelection; +import org.eclipse.osgi.service.resolver.BundleDescription; +import org.eclipse.pde.core.plugin.IPluginModelBase; +import org.eclipse.pde.core.plugin.PluginRegistry; +import org.eclipse.pde.ui.launcher.IPDELauncherConstants; +import org.eclipse.pde.ui.launcher.OSGiLaunchShortcut; +import org.eclipse.swt.widgets.DirectoryDialog; +import org.eclipse.swt.widgets.Display; +import org.eclipse.swt.widgets.Shell; + +public class SlcLaunchShortcut extends OSGiLaunchShortcut { + public final static String VMS_PROPERTY_PREFIX = "slc.launch.vm"; + + private Boolean debug = false; + + private String springOsgiExtenderId = "org.springframework.osgi.extender"; + private String slcSupportEquinoxId = "org.argeo.slc.support.equinox"; + // private String slcAgentId = "org.argeo.slc.agent"; + // private String osgiBootId = "org.argeo.slc.osgiboot"; + + private ISelection selection = null; + private StringBuffer name = null; + + private final List defaultBundlesToStart = new ArrayList(); + private List bundlesToStart = new ArrayList(); + + public SlcLaunchShortcut() { + super(); + defaultBundlesToStart.add(springOsgiExtenderId); + defaultBundlesToStart.add(slcSupportEquinoxId); + // defaultBundlesToStart.add(slcAgentId); + } + + public void launch(ISelection selection, String mode) { + this.selection = selection; + this.name = new StringBuffer(); + + bundlesToStart = new ArrayList(); + bundlesToStart.addAll(defaultBundlesToStart); + // Evaluate selection + if (selection != null) { + addSelectedProjects(bundlesToStart); + } + + super.launch(selection, mode); + + // Reset + this.selection = null; + this.name = null; + bundlesToStart = null; + } + + protected void initializeConfiguration( + ILaunchConfigurationWorkingCopy configuration) { + try { + super.initializeConfiguration(configuration); + + // Convert bundle lists + String targetBundles = configuration.getAttribute( + IPDELauncherConstants.TARGET_BUNDLES, ""); + configuration.setAttribute(IPDELauncherConstants.TARGET_BUNDLES, + convertBundleList(bundlesToStart, targetBundles)); + + String wkSpaceBundles = configuration.getAttribute( + IPDELauncherConstants.WORKSPACE_BUNDLES, ""); + configuration.setAttribute(IPDELauncherConstants.WORKSPACE_BUNDLES, + convertBundleList(bundlesToStart, wkSpaceBundles)); + + // Update other default information + configuration.setAttribute( + IPDELauncherConstants.DEFAULT_AUTO_START, false); + configuration.setAttribute(IPDELauncherConstants.CONFIG_CLEAR_AREA, + true); + String defaultVmArgs = configuration.getAttribute( + IJavaLaunchConfigurationConstants.ATTR_VM_ARGUMENTS, ""); + StringBuffer vmArgs = new StringBuffer(defaultVmArgs); + vmArgs.append(" -Xmx256m"); + + // Add locations of JVMs + addVmSysProperty(vmArgs, "default", JavaRuntime + .getDefaultVMInstall()); + IVMInstallType[] vmTypes = JavaRuntime.getVMInstallTypes(); + for (IVMInstallType vmType : vmTypes) { + // System.out.println("vmType: id=" + vmType.getId() + ", name=" + // + vmType.getName() + ", toString=" + vmType); + for (IVMInstall vmInstall : vmType.getVMInstalls()) { + // printVm("", vmInstall); + // properties based on name + addVmSysProperty(vmArgs, vmInstall.getName(), vmInstall); + if (vmInstall instanceof IVMInstall2) { + // properties based on version + IVMInstall2 vmInstall2 = (IVMInstall2) vmInstall; + String version = vmInstall2.getJavaVersion(); + addVmSysProperty(vmArgs, version, vmInstall); + + List tokens = new ArrayList(); + StringTokenizer st = new StringTokenizer(version, "."); + while (st.hasMoreTokens()) + tokens.add(st.nextToken()); + if (tokens.size() >= 2) + addVmSysProperty(vmArgs, tokens.get(0) + "." + + tokens.get(1), vmInstall); + } + } + } + configuration.setAttribute( + IJavaLaunchConfigurationConstants.ATTR_VM_ARGUMENTS, vmArgs + .toString()); + + // Choose working directory + Shell shell = Display.getCurrent().getActiveShell(); + DirectoryDialog dirDialog = new DirectoryDialog(shell); + dirDialog.setText("Working Directory"); + dirDialog.setMessage("Choose the working directory"); + String dir = dirDialog.open(); + if (dir != null) + configuration + .setAttribute( + IJavaLaunchConfigurationConstants.ATTR_WORKING_DIRECTORY, + dir); + + } catch (CoreException e) { + Shell shell = Display.getCurrent().getActiveShell(); + ErrorDialog.openError(shell, "Error", + "Cannot execute SLC launch shortcut", e.getStatus()); + } + + } + + protected void addVmSysProperty(StringBuffer vmArgs, String suffix, + IVMInstall vmInstall) { + addSysProperty(vmArgs, VMS_PROPERTY_PREFIX + "." + suffix, vmInstall + .getInstallLocation().getPath()); + } + + protected void addSysProperty(StringBuffer vmArgs, String key, String value) { + String str = "-D" + key + "=" + value; + if (str.contains(" ")) + str = "\"" + str + "\""; + vmArgs.append(" " + str); + } + + protected void printVm(String prefix, IVMInstall vmInstall) { + System.out.println(prefix + " vmInstall: id=" + vmInstall.getId() + + ", name=" + vmInstall.getName() + ", installLocation=" + + vmInstall.getInstallLocation() + ", toString=" + vmInstall); + if (vmInstall instanceof IVMInstall2) { + IVMInstall2 vmInstall2 = (IVMInstall2) vmInstall; + System.out.println(" vmInstall: javaVersion=" + + vmInstall2.getJavaVersion()); + } + // printVm("Default", JavaRuntime.getDefaultVMInstall()); + // IExecutionEnvironment[] execEnvs = JavaRuntime + // .getExecutionEnvironmentsManager() + // .getExecutionEnvironments(); + // for (IExecutionEnvironment execEnv : execEnvs) { + // System.out.println("execEnv: id=" + execEnv.getId() + ", desc=" + // + execEnv.getDescription()); + // if (execEnv.getId().startsWith("J2SE") + // || execEnv.getId().startsWith("Java")) { + // IVMInstall vmInstall = execEnv.getDefaultVM(); + // printVm("", vmInstall); + // } + // } + + } + + protected String convertBundleList(List bundlesToStart, + String original) { + StringBuffer bufBundles = new StringBuffer(1024); + StringTokenizer stComa = new StringTokenizer(original, ","); + boolean first = true; + while (stComa.hasMoreTokens()) { + if (first) + first = false; + else + bufBundles.append(','); + + String tkComa = stComa.nextToken(); + int indexAt = tkComa.indexOf('@'); + boolean modified = false; + if (indexAt >= 0) { + String bundelId = tkComa.substring(0, indexAt); + + if (bundlesToStart.contains(bundelId)) { + bufBundles.append(bundelId).append('@').append( + "default:true"); + modified = true; + if (debug) + System.out.println("Will start " + bundelId); + } + } + + if (!modified) + bufBundles.append(tkComa); + } + String output = bufBundles.toString(); + return output; + } + + protected void addSelectedProjects(List bundlesToStart) { + Assert.isNotNull(selection); + + Map bundleProjects = new HashMap(); + for (IPluginModelBase modelBase : PluginRegistry.getWorkspaceModels()) { + IProject bundleProject = modelBase.getUnderlyingResource() + .getProject(); + bundleProjects.put(bundleProject.getName(), modelBase); + } + + IStructuredSelection sSelection = (IStructuredSelection) selection; + for (Iterator it = sSelection.iterator(); it.hasNext();) { + Object obj = it.next(); + if (obj instanceof IProject) { + IProject project = (IProject) obj; + if (bundleProjects.containsKey(project.getName())) { + IPluginModelBase modelBase = bundleProjects.get(project + .getName()); + + BundleDescription bundleDescription = null; + if (modelBase.isFragmentModel()) { + BundleDescription[] hosts = modelBase + .getBundleDescription().getHost().getHosts(); + for (BundleDescription bd : hosts) { + if (debug) + System.out.println("Host for " + + modelBase.getBundleDescription() + .getSymbolicName() + ": " + + bd.getSymbolicName()); + bundleDescription = bd; + } + } else { + bundleDescription = modelBase.getBundleDescription(); + } + + if (bundleDescription != null) { + String symbolicName = bundleDescription + .getSymbolicName(); + String bundleName = bundleDescription.getName(); + + bundlesToStart.add(symbolicName); + + if (name.length() > 0) + name.append(" "); + if (bundleName != null) + name.append(bundleName); + else + name.append(symbolicName); + } + } + } + } + } + + protected String getName(ILaunchConfigurationType type) { + if (name != null && !name.toString().trim().equals("")) + return name.toString(); + else + return "SLC"; + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/preferences/SlcLaunchPreferencePage.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/preferences/SlcLaunchPreferencePage.java new file mode 100644 index 000000000..24c675760 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/preferences/SlcLaunchPreferencePage.java @@ -0,0 +1,34 @@ +package org.argeo.slc.ide.ui.launch.preferences; + +import org.argeo.slc.ide.ui.SlcIdeUiPlugin; +import org.eclipse.jface.preference.DirectoryFieldEditor; +import org.eclipse.jface.preference.FieldEditorPreferencePage; +import org.eclipse.ui.IWorkbench; +import org.eclipse.ui.IWorkbenchPreferencePage; + +public class SlcLaunchPreferencePage extends FieldEditorPreferencePage implements + IWorkbenchPreferencePage { + public final static String PREF_SLC_RUNTIME_LOCATION = SlcIdeUiPlugin.ID + + ".slcRuntimeLocation"; + public final static String PREF_EMBEDDED_JAVA_LIBRARY_PATH = SlcIdeUiPlugin.ID + + ".embeddedJavaLibraryPath"; + + public SlcLaunchPreferencePage() { +// IPreferenceStore store = SlcUiLaunchPlugin.getDefault() +// .getPreferenceStore(); +// setPreferenceStore(store); + setDescription("Argeo SLC Launch Preferences"); + } + + @Override + protected void createFieldEditors() { + addField(new DirectoryFieldEditor(PREF_SLC_RUNTIME_LOCATION, + "SLC Runtime", getFieldEditorParent())); + addField(new DirectoryFieldEditor(PREF_EMBEDDED_JAVA_LIBRARY_PATH, + "Embedded Java Library Path", getFieldEditorParent())); + } + + public void init(IWorkbench workbench) { + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTab.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTab.java new file mode 100644 index 000000000..f73a8ca5c --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTab.java @@ -0,0 +1,191 @@ +package org.argeo.slc.ide.ui.launch.script; + +import org.eclipse.core.resources.IResource; +import org.eclipse.core.resources.ResourcesPlugin; +import org.eclipse.core.runtime.CoreException; +import org.eclipse.debug.core.ILaunchConfiguration; +import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; +import org.eclipse.debug.ui.AbstractLaunchConfigurationTab; +import org.eclipse.jface.window.Window; +import org.eclipse.swt.SWT; +import org.eclipse.swt.events.ModifyEvent; +import org.eclipse.swt.events.ModifyListener; +import org.eclipse.swt.events.SelectionEvent; +import org.eclipse.swt.events.SelectionListener; +import org.eclipse.swt.layout.GridData; +import org.eclipse.swt.layout.GridLayout; +import org.eclipse.swt.widgets.Button; +import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Label; +import org.eclipse.swt.widgets.Text; +import org.eclipse.ui.dialogs.ResourceSelectionDialog; + +public class SlcScriptLaunchConfigurationTab extends + AbstractLaunchConfigurationTab { + + private Text scriptTF; + private Text propertiesTF; + private Text runtimeTF; + private Text targetsTF; + private Button pre093B; + + public void createControl(Composite parent) { + Composite body = new Composite(parent, SWT.NONE); + setControl(body); + body.setLayout(new GridLayout(1, false)); + body.setFont(parent.getFont()); + + createLabel(body, "Script location"); + scriptTF = createSingleText(body); + createWorkspaceButton(body); + + createLabel(body, "Runtime"); + runtimeTF = createSingleText(body); + + createLabel(body, "Targets"); + targetsTF = createSingleText(body); + + createLabel(body, "Properties"); + propertiesTF = createMultipleText(body, 10); + + pre093B = createCheckBox(body, "Pre SLC v0.9.3"); + } + + public String getName() { + return "SLC"; + } + + public void initializeFrom(ILaunchConfiguration configuration) { + try { + scriptTF.setText(configuration.getAttribute( + SlcScriptUtils.ATTR_SCRIPT, "")); + + boolean pre093 = configuration.getAttribute( + SlcScriptUtils.ATTR_PRE093, false); + + propertiesTF.setText(configuration.getAttribute( + SlcScriptUtils.ATTR_PROPERTIES, "")); + runtimeTF.setText(configuration.getAttribute( + SlcScriptUtils.ATTR_RUNTIME, "")); + targetsTF.setText(configuration.getAttribute( + SlcScriptUtils.ATTR_TARGETS, "")); + pre093B.setSelection(pre093); + } catch (CoreException e) { + throw new RuntimeException("Cannot initialize tab", e); + } + + } + + public void performApply(ILaunchConfigurationWorkingCopy configuration) { + configuration.setAttribute(SlcScriptUtils.ATTR_SCRIPT, scriptTF + .getText()); + configuration.setAttribute(SlcScriptUtils.ATTR_PROPERTIES, propertiesTF + .getText()); + configuration.setAttribute(SlcScriptUtils.ATTR_RUNTIME, runtimeTF + .getText()); + configuration.setAttribute(SlcScriptUtils.ATTR_TARGETS, targetsTF + .getText()); + configuration.setAttribute(SlcScriptUtils.ATTR_PRE093, pre093B + .getSelection()); + } + + public void setDefaults(ILaunchConfigurationWorkingCopy configuration) { + configuration.setAttribute(SlcScriptUtils.ATTR_SCRIPT, ""); + configuration.setAttribute(SlcScriptUtils.ATTR_PROPERTIES, ""); + configuration.setAttribute(SlcScriptUtils.ATTR_RUNTIME, ""); + configuration.setAttribute(SlcScriptUtils.ATTR_TARGETS, ""); + configuration.setAttribute(SlcScriptUtils.ATTR_PRE093, false); + } + + // UI Utils + protected Label createLabel(Composite parent, String text) { + Label t = new Label(parent, SWT.NONE | SWT.WRAP); + t.setText(text); + t.setFont(parent.getFont()); + GridData gd = new GridData(GridData.FILL_HORIZONTAL); + gd.horizontalSpan = 1; + t.setLayoutData(gd); + return t; + } + + protected Text createSingleText(Composite parent) { + Text t = new Text(parent, SWT.SINGLE | SWT.BORDER); + t.setFont(parent.getFont()); + GridData gd = new GridData(GridData.FILL_HORIZONTAL); + gd.horizontalSpan = 1; + t.setLayoutData(gd); + t.addModifyListener(modifyListener); + return t; + } + + protected Text createMultipleText(Composite parent, int verticalSpan) { + Text t = new Text(parent, SWT.MULTI | SWT.BORDER); + t.setFont(parent.getFont()); + GridData gd = new GridData(GridData.FILL, GridData.FILL, true, true); + gd.horizontalSpan = 1; + gd.verticalSpan = verticalSpan; + t.setLayoutData(gd); + t.addModifyListener(modifyListener); + return t; + } + + protected Button createCheckBox(Composite parent, String label) { + Button b = new Button(parent, SWT.CHECK); + b.setFont(parent.getFont()); + b.setText(label); + b.addSelectionListener(selectionListener); + return b; + + } + + protected Button createWorkspaceButton(Composite parent) { + Button b = new Button(parent, SWT.PUSH); + b.setFont(parent.getFont()); + b.setText("Workspace..."); + b.addSelectionListener(new SelectionListener() { + public void widgetDefaultSelected(SelectionEvent e) { + } + + public void widgetSelected(SelectionEvent e) { + handleWorkspaceLocationButtonSelected(); + } + }); + return b; + } + + protected void handleWorkspaceLocationButtonSelected() { + ResourceSelectionDialog dialog; + dialog = new ResourceSelectionDialog(getShell(), ResourcesPlugin + .getWorkspace().getRoot(), "Select a file"); + if (dialog.open() == Window.OK) { + Object[] results = dialog.getResult(); + if (results == null || results.length < 1) { + return; + } + IResource resource = (IResource) results[0]; + scriptTF.setText(SlcScriptUtils + .convertToWorkspaceLocation(resource)); + updateLaunchConfigurationDialog(); + } + } + + // LISTENERS + /** + * Modify listener that simply updates the owning launch configuration + * dialog. + */ + private ModifyListener modifyListener = new ModifyListener() { + public void modifyText(ModifyEvent evt) { + updateLaunchConfigurationDialog(); + } + }; + private SelectionListener selectionListener = new SelectionListener() { + public void widgetDefaultSelected(SelectionEvent e) { + } + + public void widgetSelected(SelectionEvent e) { + updateLaunchConfigurationDialog(); + } + }; + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTabGroup.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTabGroup.java new file mode 100644 index 000000000..e7d54a3cd --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchConfigurationTabGroup.java @@ -0,0 +1,16 @@ +package org.argeo.slc.ide.ui.launch.script; + +import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup; +import org.eclipse.debug.ui.CommonTab; +import org.eclipse.debug.ui.ILaunchConfigurationDialog; +import org.eclipse.debug.ui.ILaunchConfigurationTab; + +public class SlcScriptLaunchConfigurationTabGroup extends + AbstractLaunchConfigurationTabGroup { + + public void createTabs(ILaunchConfigurationDialog dialog, String mode) { + ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { + new SlcScriptLaunchConfigurationTab(), new CommonTab() }; + setTabs(tabs); + } +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchDelegate.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchDelegate.java new file mode 100644 index 000000000..75d8ce7a8 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchDelegate.java @@ -0,0 +1,258 @@ +package org.argeo.slc.ide.ui.launch.script; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.util.List; +import java.util.Properties; +import java.util.Vector; + +import org.argeo.slc.ide.ui.DeployedSlcSystem; +import org.argeo.slc.ide.ui.EmbeddedSlcSystem; +import org.argeo.slc.ide.ui.SlcSystem; +import org.argeo.slc.ide.ui.SlcIdeUiPlugin; +import org.argeo.slc.ide.ui.launch.preferences.SlcLaunchPreferencePage; +import org.eclipse.core.resources.IFile; +import org.eclipse.core.resources.IProject; +import org.eclipse.core.resources.ResourcesPlugin; +import org.eclipse.core.runtime.CoreException; +import org.eclipse.core.runtime.IPath; +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Path; +import org.eclipse.core.runtime.Status; +import org.eclipse.core.variables.IStringVariableManager; +import org.eclipse.core.variables.VariablesPlugin; +import org.eclipse.debug.core.DebugPlugin; +import org.eclipse.debug.core.ILaunch; +import org.eclipse.debug.core.ILaunchConfiguration; +import org.eclipse.debug.core.ILaunchManager; +import org.eclipse.jdt.core.IJavaProject; +import org.eclipse.jdt.core.IType; +import org.eclipse.jdt.core.JavaCore; +import org.eclipse.jdt.core.JavaModelException; +import org.eclipse.jdt.launching.AbstractJavaLaunchConfigurationDelegate; +import org.eclipse.jdt.launching.IVMRunner; +import org.eclipse.jdt.launching.VMRunnerConfiguration; +import org.eclipse.jface.dialogs.ErrorDialog; +import org.eclipse.swt.widgets.Shell; + +public class SlcScriptLaunchDelegate extends + AbstractJavaLaunchConfigurationDelegate { + public static final String ID = "org.argeo.slc.launch.slcScriptLaunchType"; + + public final static String ANT_MAIN = "org.apache.tools.ant.Main"; + public final static String SLC_MAIN = "org.argeo.slc.cli.SlcMain"; + + @SuppressWarnings("deprecation") + public void launch(ILaunchConfiguration configuration, String mode, + ILaunch launch, IProgressMonitor monitor) throws CoreException { + if (!saveBeforeLaunch(configuration, mode, monitor)) + return; + + String scriptLocation = configuration.getAttribute( + SlcScriptUtils.ATTR_SCRIPT, ""); + if (scriptLocation.equals("")) + abort("Script has to be provided", null, 1); + + IStringVariableManager manager = VariablesPlugin.getDefault() + .getStringVariableManager(); + scriptLocation = manager.performStringSubstitution(scriptLocation); + IPath path = new Path(scriptLocation); + IFile[] files = ResourcesPlugin.getWorkspace().getRoot() + .findFilesForLocation(path); + + if (files.length == 0) + abort("Coulkd not find related file", null, 1); + + IFile file = (IFile) files[0]; + DebugPlugin + .logMessage("Launching " + file.getLocation().toFile(), null); + + boolean pre093 = configuration.getAttribute(SlcScriptUtils.ATTR_PRE093, + false); + + // Retrieve SLC Runtime + SlcSystem slcSystem = findSlcSystem(file, pre093); + if (slcSystem == null) + return; + + IVMRunner vmRunner = slcSystem.getVmInstall().getVMRunner(mode); + final VMRunnerConfiguration vmConfig; + if (pre093) { + vmConfig = createPre093Config(slcSystem, file, mode); + } else { + vmConfig = createConfig(slcSystem, file, mode, configuration); + } + vmRunner.run(vmConfig, launch, monitor); + } + + protected SlcSystem findSlcSystem(IFile file, boolean pre093) + throws CoreException { + SlcSystem slcSystem = null; + + IProject project = file.getProject(); + if (project.getNature("org.eclipse.jdt.core.javanature") != null) { + IJavaProject javaProject = JavaCore.create(project); + if (checkProjectForEmbedded(javaProject, pre093)) { + slcSystem = new EmbeddedSlcSystem(javaProject); + } + } + + if (slcSystem == null) { + String slcRuntimePath = SlcIdeUiPlugin.getDefault() + .getPreferenceStore().getString( + SlcLaunchPreferencePage.PREF_SLC_RUNTIME_LOCATION); + if (slcRuntimePath == null || slcRuntimePath.equals("")) { + showError("SLC Runtime path is not set. Set it in Windows > Preferences > SLC"); + return null; + } + + slcSystem = new DeployedSlcSystem(slcRuntimePath); + } + + return slcSystem; + } + + protected boolean checkProjectForEmbedded(IJavaProject project, + boolean pre093) { + try { + IType mainType = null; + if (pre093) + mainType = project.findType(ANT_MAIN); + else + mainType = project.findType(SLC_MAIN); + + if (mainType == null) + return false; + else + return true; + } catch (JavaModelException e) { + e.printStackTrace(); + return false; + } + } + + // Regular SLC + protected VMRunnerConfiguration createConfig(SlcSystem deployedSlc, + IFile file, String mode, ILaunchConfiguration configuration) + throws CoreException { + VMRunnerConfiguration vmConfig = new VMRunnerConfiguration(SLC_MAIN, + deployedSlc.getClasspath()); + vmConfig.setVMArguments(getVmArguments(deployedSlc)); + vmConfig.setWorkingDirectory(file.getLocation().toFile().getParent()); + vmConfig.setProgramArguments(getProgramArguments(deployedSlc, file, + mode, configuration)); + return vmConfig; + } + + protected String[] getVmArguments(SlcSystem deployedSlc) { + List list = new Vector(); + if (deployedSlc.getJavaLibraryPath() != null) + list.add("-Djava.library.path=" + deployedSlc.getJavaLibraryPath()); + return list.toArray(new String[list.size()]); + } + + protected String[] getProgramArguments(SlcSystem deployedSlc, IFile file, + String mode, ILaunchConfiguration configuration) + throws CoreException { + List list = new Vector(); + + list.add("--mode"); + list.add("single"); + + // Script + list.add("--script"); + list.add(file.getLocation().toFile().getAbsolutePath()); + + // Runtime + String runtime = configuration.getAttribute( + SlcScriptUtils.ATTR_RUNTIME, ""); + if (!runtime.equals("")) { + list.add("--runtime"); + list.add(runtime); + } + + // Targets + String targets = configuration.getAttribute( + SlcScriptUtils.ATTR_TARGETS, ""); + if (!targets.equals("")) { + list.add("--targets"); + list.add(targets); + } + + // Properties + Properties properties = new Properties(); + String str = configuration.getAttribute(SlcScriptUtils.ATTR_PROPERTIES, + ""); + ByteArrayInputStream in = new ByteArrayInputStream(str.getBytes()); + try { + properties.load(in); + } catch (IOException e) { + throw new RuntimeException("Cannot read properties", e); + } finally { + if (in != null) + try { + in.close(); + } catch (IOException e) { + // silent + } + } + + for (Object key : properties.keySet()) { + list.add("-p"); + StringBuffer buf = new StringBuffer(""); + buf.append(key).append('=').append(properties.get(key)); + list.add(buf.toString()); + } + + // Debug mode + if (mode.equals(ILaunchManager.DEBUG_MODE)) { + list.add("--property"); + list.add("log4j.logger.org.argeo.slc=DEBUG"); + } + return list.toArray(new String[list.size()]); + } + + // Pre SLC v0.9.3 + protected VMRunnerConfiguration createPre093Config(SlcSystem deployedSlc, + IFile file, String mode) throws CoreException { + VMRunnerConfiguration vmConfig = new VMRunnerConfiguration(ANT_MAIN, + deployedSlc.getClasspath()); + vmConfig.setVMArguments(getPre093VmArguments(deployedSlc)); + vmConfig.setWorkingDirectory(file.getLocation().toFile().getParent()); + vmConfig.setProgramArguments(getPre093ProgramArguments(deployedSlc, + file, mode)); + return vmConfig; + } + + protected String[] getPre093VmArguments(SlcSystem deployedSlc) { + List list = new Vector(); + // list.add("-Dant.home=" + deployedSlc.getAntHome()); + if (deployedSlc.getJavaLibraryPath() != null) + list.add("-Djava.library.path=" + deployedSlc.getJavaLibraryPath()); + return list.toArray(new String[list.size()]); + } + + protected String[] getPre093ProgramArguments(SlcSystem deployedSlc, + IFile file, String mode) { + List list = new Vector(); + list.add("-f"); + list.add(file.getLocation().toFile().getAbsolutePath()); + if (mode.equals(ILaunchManager.DEBUG_MODE)) { + list.add("-d"); + } + return list.toArray(new String[list.size()]); + } + + // Utilities + private static void showError(String message) { + Shell shell = SlcIdeUiPlugin.getDefault().getWorkbench() + .getActiveWorkbenchWindow().getShell(); + + IStatus status = new Status(IStatus.ERROR, SlcIdeUiPlugin.ID, + message); + ErrorDialog.openError(shell, "Error", "Cannot launch SLC script", + status); + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcut.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcut.java new file mode 100644 index 000000000..dfb0044f5 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcut.java @@ -0,0 +1,127 @@ +package org.argeo.slc.ide.ui.launch.script; + +import org.argeo.slc.ide.ui.SlcIdeUiPlugin; +import org.eclipse.core.resources.IFile; +import org.eclipse.core.runtime.CoreException; +import org.eclipse.core.runtime.IPath; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Status; +import org.eclipse.debug.core.DebugPlugin; +import org.eclipse.debug.core.ILaunchConfiguration; +import org.eclipse.debug.core.ILaunchConfigurationType; +import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; +import org.eclipse.debug.core.ILaunchManager; +import org.eclipse.debug.ui.DebugUITools; +import org.eclipse.debug.ui.IDebugUIConstants; +import org.eclipse.debug.ui.ILaunchShortcut; +import org.eclipse.jface.dialogs.ErrorDialog; +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.jface.viewers.IStructuredSelection; +import org.eclipse.swt.widgets.Shell; +import org.eclipse.ui.IEditorPart; + +public class SlcScriptLaunchShortcut implements ILaunchShortcut { + private boolean showDialog = false; + + public void launch(ISelection selection, String mode) { + try { + if (!(selection instanceof IStructuredSelection)) { + throw new RuntimeException("Unknown selection " + + selection.getClass()); + } + IStructuredSelection sSelection = (IStructuredSelection) selection; + if (sSelection.size() != 1) { + throw new RuntimeException("Can only launch one SLC script."); + } + Object obj = sSelection.iterator().next(); + if (!(obj instanceof IFile)) { + throw new RuntimeException("Can only launch files."); + } + IFile file = ((IFile) obj); + + ILaunchManager manager = DebugPlugin.getDefault() + .getLaunchManager(); + ILaunchConfigurationType type = manager + .getLaunchConfigurationType(SlcScriptLaunchDelegate.ID); + + // Find or create config + String configLocation = SlcScriptUtils + .convertToWorkspaceLocation(file); + ILaunchConfiguration config = findLaunchConfiguration( + configLocation, manager.getLaunchConfigurations(type)); + if (config == null) { + ILaunchConfigurationWorkingCopy wc = type.newInstance(null, + generateName(file)); + wc.setAttribute(SlcScriptUtils.ATTR_SCRIPT, configLocation); + wc.setMappedResources(new IFile[] { file }); + config = wc.doSave(); + } + + // Launch + launch(config, mode); + } catch (CoreException e) { + Shell shell = SlcIdeUiPlugin.getDefault().getWorkbench() + .getActiveWorkbenchWindow().getShell(); + ErrorDialog.openError(shell, "Error", + "Cannot execute SLC launch shortcut", e.getStatus()); + } + + } + + protected String generateName(IFile file) { + IPath relativePath = file.getProjectRelativePath(); + String name = relativePath.toString(); + int idx = name.lastIndexOf(".xml"); + if (idx > 0) + name = name.substring(0, idx); + + if (name.startsWith("src/main/slc/root/")) + name = name.substring("src/main/slc/root/".length()); + else if (name.startsWith("src/main/slc/")) + name = name.substring("src/main/slc/".length()); + + name = name.replace('/', '.');// otherwise not properly saved + return name; + } + + protected ILaunchConfiguration findLaunchConfiguration( + String configLocation, ILaunchConfiguration[] configs) + throws CoreException { + for (ILaunchConfiguration config : configs) { + String loc = config.getAttribute(SlcScriptUtils.ATTR_SCRIPT, ""); + if (loc.equals(configLocation)) { + return config; + } + } + return null; + } + + protected void launch(ILaunchConfiguration configuration, String mode) + throws CoreException { + if (showDialog) { + IStatus status = new Status(IStatus.INFO, SlcIdeUiPlugin.ID, + "Configure SLC Launch"); + String groupId; + if (mode.equals(ILaunchManager.DEBUG_MODE)) { + groupId = IDebugUIConstants.ID_DEBUG_LAUNCH_GROUP; + } else { + groupId = IDebugUIConstants.ID_RUN_LAUNCH_GROUP; + } + DebugUITools.openLaunchConfigurationDialog(SlcIdeUiPlugin + .getDefault().getWorkbench().getActiveWorkbenchWindow() + .getShell(), configuration, groupId, status); + } else { + DebugUITools.launch(configuration, mode); + } + + } + + public void launch(IEditorPart editor, String mode) { + // not (yet) implemented + } + + public void setShowDialog(boolean showDialog) { + this.showDialog = showDialog; + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcutWithDialog.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcutWithDialog.java new file mode 100644 index 000000000..9e8dd3e35 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptLaunchShortcutWithDialog.java @@ -0,0 +1,11 @@ +package org.argeo.slc.ide.ui.launch.script; + + +public class SlcScriptLaunchShortcutWithDialog extends SlcScriptLaunchShortcut { + + public SlcScriptLaunchShortcutWithDialog() { + super(); + setShowDialog(true); + } + +} diff --git a/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptUtils.java b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptUtils.java new file mode 100644 index 000000000..9a5bc42c9 --- /dev/null +++ b/eclipse/plugins/org.argeo.slc.ide.ui/src/main/java/org/argeo/slc/ide/ui/launch/script/SlcScriptUtils.java @@ -0,0 +1,23 @@ +package org.argeo.slc.ide.ui.launch.script; + +import org.eclipse.core.resources.IResource; +import org.eclipse.core.variables.VariablesPlugin; + +public class SlcScriptUtils { + + public final static String ATTR_SCRIPT = "script"; + public final static String ATTR_PROPERTIES = "properties"; + public final static String ATTR_RUNTIME = "runtime"; + public final static String ATTR_TARGETS = "targets"; + public final static String ATTR_PRE093 = "pre093"; + + public static String convertToWorkspaceLocation(IResource resource) { + return VariablesPlugin.getDefault().getStringVariableManager() + .generateVariableExpression("workspace_loc", + resource.getFullPath().toString()); + } + + private SlcScriptUtils() { + + } +} -- 2.39.2