<div dir="ltr"><div>Oups, sorry, I&#39;ve got a local change on DataStream (use uft8 for storing Stream) that messed the mcz...<br></div>Could someone delete this commit?<br>I&#39;ll issue a new one...<br></div><div class="gmail_extra">
<br><br><div class="gmail_quote">2014-07-20 22:34 GMT+02:00  <span dir="ltr">&lt;<a href="mailto:commits@source.squeak.org" target="_blank">commits@source.squeak.org</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Nicolas Cellier uploaded a new version of MorphicExtras to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/MorphicExtras-nice.151.mcz" target="_blank">http://source.squeak.org/trunk/MorphicExtras-nice.151.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: MorphicExtras-nice.151<br>
Author: nice<br>
Time: 20 July 2014, 10:33:57.067 pm<br>
UUID: 2d247adf-926d-4df7-9733-8aebe93007a0<br>
Ancestors: MorphicExtras-kfr.150<br>
<br>
Don&#39;t use RWBinaryOrTextStream where a simple WriteStream would perfectly do the job.<br>
<br>
=============== Diff against MorphicExtras-kfr.150 ===============<br>
<br>
Item was changed:<br>
  BooklikeMorph subclass: #BookMorph<br>
        instanceVariableNames: &#39;pages currentPage&#39;<br>
        classVariableNames: &#39;MethodHolders VersionNames VersionTimes&#39;<br>
        poolDictionaries: &#39;&#39;<br>
        category: &#39;MorphicExtras-Books&#39;!<br>
<br>
  !BookMorph commentStamp: &#39;&lt;historical&gt;&#39; prior: 0!<br>
  A collection of pages, each of which is a place to put morphs.  Allows one or another page to show; orchestrates the page transitions; offers control panel for navigating among pages and for adding and deleting pages.<br>

<br>
  To write a book out to the disk or to a file server, decide what folder it goes in.  Construct a url to a typical page:<br>
        file://myDisk/folder/myBook1.sp<br>
  or<br>
        <a href="ftp://aServer/folder/myBook1.sp" target="_blank">ftp://aServer/folder/myBook1.sp</a><br>
<br>
  Choose &quot;send all pages to server&quot; from the book&#39;s menu (press the &lt;&gt; part of the controls).  Choose &quot;use page numbers&quot;.  Paste in the url.<br>
<br>
  To load an existing book, find its &quot;.bo&quot; file in the file list browser.  Choose &quot;load as book&quot;.<br>
<br>
  To load an existing book from its url, execute:<br>
+ ¦(URLMorph grabURL: &#39;<a href="ftp://aServer/folder/myBook1.sp" target="_blank">ftp://aServer/folder/myBook1.sp</a>&#39;) book: true.<br>
- ¦(URLMorph grabURL: &#39;<a href="ftp://aServer/folder/myBook1.sp" target="_blank">ftp://aServer/folder/myBook1.sp</a>&#39;) book: true.<br>
<br>
  Multiple people may modify a book.  If other people may have changed a book you have on your screen, choose &quot;reload all from server&quot;.<br>
<br>
  Add or modify a page, and choose &quot;send this page to server&quot;.<br>
<br>
  The polite thing to do is to reload before changing a book.  Then write one or all pages soon after making your changes.  If you store a stale book, it will wipe out changes that other people made in the mean time.<br>

<br>
  Pages may be linked to each other.  To create a named link to a new page, type the name of the page in a text area in a page.  Select it and do Cmd-6.  Choose &#39;link to&#39;.  A new page of that name will be added at the back of the book.  Clicking on the blue text flips to that page.<br>

        To create a link to an existing page, first name the page.  Go to that page and Cmd-click on it.  The name of the page is below the page.  Click in it and backspace and type.  Return to the page you are linking from.  Type the name. Cmd-6, &#39;link to&#39;.<br>

<br>
  Text search:  Search for a set of fragments.  allStrings collects text of fields.  Turn to page with all fragments on it and highlight the first one.  Save the container and offset in properties: #searchContainer, #searchOffset, #searchKey.  Search again from there.  Clear those at each page turn, or change of search key.<br>

<br>
  [rules about book indexes and pages:  Index and pages must live in the same directory. They have the same file prefix, followed by .bo for the index or 4.sp for a page (or x4.sp).  When a book is moved to a new directory, the load routine gets the new urls for all pages and saves those in the index.  Book stores index url in property #url.<br>

      Allow mulitple indexes (books) on the same shared set of pages.  If book has a url in same directory as pages, allow them to have different prefixes.<br>
        save all pages first time, save one page first time, fromRemoteStream: (first time)<br>
        save all pages normal , save one page normal, reload<br>
        where I check if same dir]<br>
  URLMorph holds url of both page and book.!<br>
<br>
Item was changed:<br>
  ----- Method: BooklikeMorph&gt;&gt;fullControlSpecs (in category &#39;page controls&#39;) -----<br>
  fullControlSpecs<br>
<br>
        ^ {<br>
                #spacer.<br>
                #variableSpacer.<br>
                {&#39;-&#39;.           #deletePage.                            &#39;Delete this page&#39; translated}.<br>
                #spacer.<br>
+               {&#39;«&#39;.           #firstPage.                             &#39;First page&#39; translated}.<br>
-               {&#39;«&#39;.           #firstPage.                             &#39;First page&#39; translated}.<br>
                #spacer.<br>
                {&#39;&lt;&#39;.           #previousPage.                  &#39;Previous page&#39; translated}.<br>
                #spacer.<br>
+               {&#39;·&#39;.           #invokeBookMenu.                &#39;Click here to get a menu of options for this book.&#39; translated}.<br>
-               {&#39;·&#39;.           #invokeBookMenu.                &#39;Click here to get a menu of options for this book.&#39; translated}.<br>
                #spacer.<br>
                {&#39;&gt;&#39;.           #nextPage.                              &#39;Next page&#39; translated}.<br>
                #spacer.<br>
+               { &#39;»&#39;.          #lastPage.                              &#39;Final page&#39; translated}.<br>
-               { &#39;»&#39;.          #lastPage.                              &#39;Final page&#39; translated}.<br>
                #spacer.<br>
                {&#39;+&#39;.           #insertPage.                            &#39;Add a new page after this one&#39; translated}.<br>
                #variableSpacer.<br>
+               {&#39;³&#39;.           #fewerPageControls.     &#39;Fewer controls&#39; translated}<br>
-               {&#39;³&#39;.           #fewerPageControls.     &#39;Fewer controls&#39; translated}<br>
  }<br>
  !<br>
<br>
Item was changed:<br>
  ----- Method: BooklikeMorph&gt;&gt;shortControlSpecs (in category &#39;page controls&#39;) -----<br>
  shortControlSpecs<br>
  ^ {<br>
                #spacer.<br>
                #variableSpacer.<br>
                {&#39;&lt;&#39;.           #previousPage.                  &#39;Previous page&#39; translated}.<br>
                #spacer.<br>
+               {&#39;·&#39;.           #invokeBookMenu.                &#39;Click here to get a menu of options for this book.&#39; translated}.<br>
-               {&#39;·&#39;.           #invokeBookMenu.                &#39;Click here to get a menu of options for this book.&#39; translated}.<br>
                #spacer.<br>
                {&#39;&gt;&#39;.           #nextPage.                              &#39;Next page&#39; translated}.<br>
                #spacer.<br>
                #variableSpacer.<br>
+               {&#39;³&#39;.           #showMoreControls.              &#39;More controls&#39; translated}<br>
-               {&#39;³&#39;.           #showMoreControls.              &#39;More controls&#39; translated}<br>
  }<br>
  !<br>
<br>
Item was changed:<br>
  SketchMorph subclass: #FatBitsPaint<br>
        instanceVariableNames: &#39;formToEdit magnification brush brushSize brushColor lastMouse currentTools currentSelectionMorph selectionAnchor backgroundColor&#39;<br>
        classVariableNames: &#39;FormClipboard&#39;<br>
        poolDictionaries: &#39;&#39;<br>
        category: &#39;MorphicExtras-AdditionalWidgets&#39;!<br>
<br>
  !FatBitsPaint commentStamp: &#39;&lt;historical&gt;&#39; prior: 0!<br>
  Extensions to FatBitsPaint<br>
<br>
  With the goal of making FatBitsPaint a fairly nifty Form fixer-upper in the Squeak/morphic environment, I have started this set of extensions. It will probably be updated as the mood strikes, so keep an eye out for new versions.<br>

<br>
  First, some basic operating instructions:<br>
<br>
  Get a Form and send it the message #morphEdit. To get started, you can try:<br>
<br>
          (Form fromUser) morphEdit<br>
<br>
  And there is the form in all its glory. Control click on the form to get theFatBitsPaint menu and choose the &quot;keep this menu up&quot; item. This will be your main tool/command palette. With it you can:<br>
+ ¥ Change the magnification<br>
+ ¥ Change the brush size (in original scale pixels)<br>
+ ¥ Change the brush color (via a ColorPickerMorph)<br>
- ¥ Change the magnification<br>
- ¥ Change the brush size (in original scale pixels)<br>
- ¥ Change the brush color (via a ColorPickerMorph)<br>
<br>
  Now to some of the enhancements:<br>
<br>
  (25 September 1999 2:38:25 pm )<br>
<br>
+ ¥ ColorPickerMorphs now have a label below that indicates their use (you might have more than one open)<br>
+ ¥ A quirk that could get the brush size out of alignment with the pixel size is fixed.<br>
+ ¥ A background has been added so that you can see the full extent of the Form and so that you can observe the effect of translucent pixels in the form.<br>
+ ¥ A menu item has been added to change the background color so that you can simulate the real environment the form will be displayed in.<br>
+ ¥ The magnification and brush size menus now highlight their current value.<br>
+ ¥ An inspect option has been added to the menu so that you can do arbitrary things to the form.<br>
+ ¥ A file out option has been added to write the form to a file.<br>
- ¥ ColorPickerMorphs now have a label below that indicates their use (you might have more than one open)<br>
- ¥ A quirk that could get the brush size out of alignment with the pixel size is fixed.<br>
- ¥ A background has been added so that you can see the full extent of the Form and so that you can observe the effect of translucent pixels in the form.<br>
- ¥ A menu item has been added to change the background color so that you can simulate the real environment the form will be displayed in.<br>
- ¥ The magnification and brush size menus now highlight their current value.<br>
- ¥ An inspect option has been added to the menu so that you can do arbitrary things to the form.<br>
- ¥ A file out option has been added to write the form to a file.<br>
<br>
  (25 September 1999 10:02:13 pm )<br>
<br>
+ ¥ New menu item: Tools allows you to choose between (for now) Paint Brush (all there was before) and Selections. Selections allows you to select rectangular regions of the form where the next menu takes over.<br>
+ ¥ New menu item: Selections gives you choices:<br>
+         ¥ edit separately - opens a new editor on the selected rectangle. Useful for cropping.<br>
+         ¥ copy - copies the selection rectangle to a clipboard. Can be pasted to this or another FatBitsPaint.<br>
+         ¥ cut - does a copy and clears the selection to transparent.<br>
+         ¥ paste - paints the contents of the clipboard over the current selection. Only the starting point of the selection matters - the extent is controlled by the clipboard.<br>
- ¥ New menu item: Tools allows you to choose between (for now) Paint Brush (all there was before) and Selections. Selections allows you to select rectangular regions of the form where the next menu takes over.<br>
- ¥ New menu item: Selections gives you choices:<br>
-         ¥ edit separately - opens a new editor on the selected rectangle. Useful for cropping.<br>
-         ¥ copy - copies the selection rectangle to a clipboard. Can be pasted to this or another FatBitsPaint.<br>
-         ¥ cut - does a copy and clears the selection to transparent.<br>
-         ¥ paste - paints the contents of the clipboard over the current selection. Only the starting point of the selection matters - the extent is controlled by the clipboard.<br>
<br>
  !<br>
<br>
Item was changed:<br>
  ----- Method: GraphicalDictionaryMenu&gt;&gt;encodeToWorkspace (in category &#39;menu commands&#39;) -----<br>
  encodeToWorkspace<br>
+       | stream encodedStream pict text |<br>
+       pict := formChoices at: currentIndex.<br>
+       stream := ByteArray new writeStream.<br>
+       PNGReadWriter putForm: pict onStream: stream.<br>
+       encodedStream := stream contents base64Encoded.<br>
+       text := Workspace open model.<br>
+       text contents: &#39;Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: &#39;&#39;&#39;, encodedStream,&#39;&#39;&#39; readStream)&#39;!<br>
- | stream encodedStream pict text |<br>
- pict := formChoices at: currentIndex.<br>
- stream := RWBinaryOrTextStream on: (String new).<br>
- PNGReadWriter putForm: pict onStream: stream.<br>
- encodedStream := stream contents asByteArray base64Encoded.<br>
- text := (Workspace open) model.<br>
- text contents: &#39;Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: &#39;&#39;&#39;, encodedStream,&#39;&#39;&#39; readStream)&#39;!<br>
<br>
Item was changed:<br>
  ----- Method: PostscriptEncoder class&gt;&gt;macToPSCharacterChart (in category &#39;configuring&#39;) -----<br>
  macToPSCharacterChart<br>
        &quot;mac char code, PS char code&quot;<br>
        ^#(<br>
+               (128 999)  &quot;Ä&quot;<br>
+               (129 999)  &quot;Å&quot;<br>
+               (130 999)  &quot;Ç&quot;<br>
+               (131 999)  &quot;É&quot;<br>
+               (132 999)  &quot;Ñ&quot;<br>
+               (133 999)  &quot;Ö&quot;<br>
+               (134 999)  &quot;Ü&quot;<br>
+               (135 999)  &quot;á&quot;<br>
+               (136 999)  &quot;à&quot;<br>
+               (137 999)  &quot;â&quot;<br>
+               (138 999)  &quot;ä&quot;<br>
+               (139 999)  &quot;ã&quot;<br>
+               (140 999)  &quot;å&quot;<br>
+               (141 999)  &quot;ç&quot;<br>
+               (142 999)  &quot;é&quot;<br>
+               (143 999)  &quot;è&quot;<br>
+               (144 999)  &quot;ê&quot;<br>
+               (145 999)  &quot;ë&quot;<br>
+               (146 999)  &quot;í&quot;<br>
+               (147 999)  &quot;ì&quot;<br>
+               (148 999)  &quot;î&quot;<br>
+               (149 999)  &quot;ï&quot;<br>
+               (150 999)  &quot;ñ&quot;<br>
+               (151 999)  &quot;ó&quot;<br>
+               (152 999)  &quot;ò&quot;<br>
+               (153 999)  &quot;ô&quot;<br>
+               (154 999)  &quot;ö&quot;<br>
+               (155 999)  &quot;õ&quot;<br>
+               (156 999)  &quot;ú&quot;<br>
+               (157 999)  &quot;ù&quot;<br>
+               (158 999)  &quot;û&quot;<br>
+               (159 999)  &quot;ü&quot;<br>
+               (160 999)  &quot;†&quot;<br>
+               (161 202)  &quot;°&quot;<br>
+               (162 162)  &quot;¢&quot;<br>
+               (163 163)  &quot;£&quot;<br>
+               (164 167)  &quot;§&quot;<br>
+               (165 183)  &quot;·&quot;<br>
+               (166 182)  &quot;¶&quot;<br>
+               (167 251)  &quot;ß&quot;<br>
+               (168 999)  &quot;®&quot;<br>
+               (169 999)  &quot;©&quot;<br>
+               (170 999)  &quot;™&quot;<br>
+               (171 999)  &quot;´&quot;<br>
+               (172 999)  &quot;¨&quot;<br>
+               (173 999)  &quot;€&quot;<br>
+               (174 225)  &quot;Æ&quot;<br>
+               (175 999)  &quot;Ø&quot;<br>
+               (176 999)  &quot; &quot;<br>
+               (177 999)  &quot;±&quot;<br>
+               (178 999)  &quot;Š&quot;<br>
+               (179 999)  &quot; &quot;<br>
+               (180 165)  &quot;¥&quot;<br>
+               (181 999)  &quot;µ&quot;<br>
+               (182 999)  &quot;Ž&quot;<br>
+               (183 999)  &quot; &quot;<br>
+               (184 999)  &quot; &quot;<br>
+               (185 999)  &quot;š&quot;<br>
+               (186 999)  &quot; &quot;<br>
+               (187 227)  &quot;ª&quot;<br>
+               (188 235)  &quot;º&quot;<br>
+               (189 999)  &quot;ž&quot;<br>
+               (190 241)  &quot;æ&quot;<br>
+               (191 999)  &quot;ø&quot;<br>
+               (192 191)  &quot;¿&quot;<br>
+               (193 166)  &quot;¡&quot;<br>
+               (194 999)  &quot;¬&quot;<br>
+               (195 999)  &quot;¦&quot;<br>
+               (196 999)  &quot;ƒ&quot;<br>
+               (197 999)  &quot;­&quot;<br>
+               (198 999)  &quot;²&quot;<br>
+               (199 171)  &quot;«&quot;<br>
+               (200 187)  &quot;»&quot;<br>
+               (201 188)  &quot;…&quot;<br>
+               (202 999)  &quot; &quot;<br>
+               (203 999)  &quot;À&quot;<br>
+               (204 999)  &quot;Ã&quot;<br>
+               (205 999)  &quot;Õ&quot;<br>
+               (206 234)  &quot;Œ&quot;<br>
+               (207 250)  &quot;œ&quot;<br>
+               (208 999)  &quot;–&quot;<br>
+               (209 999)  &quot;—&quot;<br>
+               (210 999)  &quot;“&quot;<br>
+               (211 999)  &quot;”&quot;<br>
+               (212 999)  &quot;‘&quot;<br>
+               (213 999)  &quot;’&quot;<br>
+               (214 999)  &quot;÷&quot;<br>
+               (215 999)  &quot;³&quot;<br>
+               (216 999)  &quot;ÿ&quot;<br>
+               (217 999)  &quot;Ÿ&quot;<br>
+               (218 999)  &quot;¹&quot;<br>
+               (219 999)  &quot;¤&quot;<br>
+               (220 999)  &quot;‹&quot;<br>
+               (221 999)  &quot;›&quot;<br>
+               (222 999)  &quot;¼&quot;<br>
+               (223 999)  &quot;½&quot;<br>
+               (224 999)  &quot;‡&quot;<br>
+               (225 999)  &quot;·&quot;<br>
+               (226 999)  &quot;‚&quot;<br>
+               (227 999)  &quot;„&quot;<br>
+               (228 999)  &quot;‰&quot;<br>
+               (229 999)  &quot;Â&quot;<br>
+               (230 999)  &quot;Ê&quot;<br>
+               (231 999)  &quot;Á&quot;<br>
+               (232 999)  &quot;Ë&quot;<br>
+               (233 999)  &quot;È&quot;<br>
+               (234 999)  &quot;Í&quot;<br>
+               (235 999)  &quot;Î&quot;<br>
+               (236 999)  &quot;Ï&quot;<br>
+               (237 999)  &quot;Ì&quot;<br>
+               (238 999)  &quot;Ó&quot;<br>
+               (239 999)  &quot;Ô&quot;<br>
+               (240 999)  &quot;¾&quot;<br>
+               (241 999)  &quot;Ò&quot;<br>
+               (242 999)  &quot;Ú&quot;<br>
+               (243 999)  &quot;Û&quot;<br>
+               (244 999)  &quot;Ù&quot;<br>
+               (245 999)  &quot;Ð&quot;<br>
+               (246 999)  &quot;ˆ&quot;<br>
+               (247 999)  &quot;˜&quot;<br>
+               (248 999)  &quot;¯&quot;<br>
+               (249 999)  &quot;×&quot;<br>
+               (250 999)  &quot;Ý&quot;<br>
+               (251 999)  &quot;Þ&quot;<br>
+               (252 999)  &quot;¸&quot;<br>
+               (253 999)  &quot;ð&quot;<br>
+               (254 999)  &quot;ý&quot;<br>
+               (255 999)  &quot;þ&quot;<br>
-               (128 999)  &quot;Ä&quot;<br>
-               (129 999)  &quot;Å&quot;<br>
-               (130 999)  &quot;Ç&quot;<br>
-               (131 999)  &quot;É&quot;<br>
-               (132 999)  &quot;Ñ&quot;<br>
-               (133 999)  &quot;Ö&quot;<br>
-               (134 999)  &quot;Ü&quot;<br>
-               (135 999)  &quot;á&quot;<br>
-               (136 999)  &quot;à&quot;<br>
-               (137 999)  &quot;â&quot;<br>
-               (138 999)  &quot;ä&quot;<br>
-               (139 999)  &quot;ã&quot;<br>
-               (140 999)  &quot;å&quot;<br>
-               (141 999)  &quot;ç&quot;<br>
-               (142 999)  &quot;é&quot;<br>
-               (143 999)  &quot;è&quot;<br>
-               (144 999)  &quot;ê&quot;<br>
-               (145 999)  &quot;ë&quot;<br>
-               (146 999)  &quot;í&quot;<br>
-               (147 999)  &quot;ì&quot;<br>
-               (148 999)  &quot;î&quot;<br>
-               (149 999)  &quot;ï&quot;<br>
-               (150 999)  &quot;ñ&quot;<br>
-               (151 999)  &quot;ó&quot;<br>
-               (152 999)  &quot;ò&quot;<br>
-               (153 999)  &quot;ô&quot;<br>
-               (154 999)  &quot;ö&quot;<br>
-               (155 999)  &quot;õ&quot;<br>
-               (156 999)  &quot;ú&quot;<br>
-               (157 999)  &quot;ù&quot;<br>
-               (158 999)  &quot;û&quot;<br>
-               (159 999)  &quot;ü&quot;<br>
-               (160 999)  &quot;†&quot;<br>
-               (161 202)  &quot;°&quot;<br>
-               (162 162)  &quot;¢&quot;<br>
-               (163 163)  &quot;£&quot;<br>
-               (164 167)  &quot;§&quot;<br>
-               (165 183)  &quot;·&quot;<br>
-               (166 182)  &quot;¶&quot;<br>
-               (167 251)  &quot;ß&quot;<br>
-               (168 999)  &quot;®&quot;<br>
-               (169 999)  &quot;©&quot;<br>
-               (170 999)  &quot;™&quot;<br>
-               (171 999)  &quot;´&quot;<br>
-               (172 999)  &quot;¨&quot;<br>
-               (173 999)  &quot;€&quot;<br>
-               (174 225)  &quot;Æ&quot;<br>
-               (175 999)  &quot;Ø&quot;<br>
-               (176 999)  &quot; &quot;<br>
-               (177 999)  &quot;±&quot;<br>
-               (178 999)  &quot;Š&quot;<br>
-               (179 999)  &quot; &quot;<br>
-               (180 165)  &quot;¥&quot;<br>
-               (181 999)  &quot;µ&quot;<br>
-               (182 999)  &quot;Ž&quot;<br>
-               (183 999)  &quot; &quot;<br>
-               (184 999)  &quot; &quot;<br>
-               (185 999)  &quot;š&quot;<br>
-               (186 999)  &quot; &quot;<br>
-               (187 227)  &quot;ª&quot;<br>
-               (188 235)  &quot;º&quot;<br>
-               (189 999)  &quot;ž&quot;<br>
-               (190 241)  &quot;æ&quot;<br>
-               (191 999)  &quot;ø&quot;<br>
-               (192 191)  &quot;¿&quot;<br>
-               (193 166)  &quot;¡&quot;<br>
-               (194 999)  &quot;¬&quot;<br>
-               (195 999)  &quot;¦&quot;<br>
-               (196 999)  &quot;ƒ&quot;<br>
-               (197 999)  &quot;­&quot;<br>
-               (198 999)  &quot;²&quot;<br>
-               (199 171)  &quot;«&quot;<br>
-               (200 187)  &quot;»&quot;<br>
-               (201 188)  &quot;…&quot;<br>
-               (202 999)  &quot; &quot;<br>
-               (203 999)  &quot;À&quot;<br>
-               (204 999)  &quot;Ã&quot;<br>
-               (205 999)  &quot;Õ&quot;<br>
-               (206 234)  &quot;Œ&quot;<br>
-               (207 250)  &quot;œ&quot;<br>
-               (208 999)  &quot;–&quot;<br>
-               (209 999)  &quot;—&quot;<br>
-               (210 999)  &quot;“&quot;<br>
-               (211 999)  &quot;”&quot;<br>
-               (212 999)  &quot;‘&quot;<br>
-               (213 999)  &quot;’&quot;<br>
-               (214 999)  &quot;÷&quot;<br>
-               (215 999)  &quot;³&quot;<br>
-               (216 999)  &quot;ÿ&quot;<br>
-               (217 999)  &quot;Ÿ&quot;<br>
-               (218 999)  &quot;¹&quot;<br>
-               (219 999)  &quot;¤&quot;<br>
-               (220 999)  &quot;‹&quot;<br>
-               (221 999)  &quot;›&quot;<br>
-               (222 999)  &quot;¼&quot;<br>
-               (223 999)  &quot;½&quot;<br>
-               (224 999)  &quot;‡&quot;<br>
-               (225 999)  &quot;·&quot;<br>
-               (226 999)  &quot;‚&quot;<br>
-               (227 999)  &quot;„&quot;<br>
-               (228 999)  &quot;‰&quot;<br>
-               (229 999)  &quot;Â&quot;<br>
-               (230 999)  &quot;Ê&quot;<br>
-               (231 999)  &quot;Á&quot;<br>
-               (232 999)  &quot;Ë&quot;<br>
-               (233 999)  &quot;È&quot;<br>
-               (234 999)  &quot;Í&quot;<br>
-               (235 999)  &quot;Î&quot;<br>
-               (236 999)  &quot;Ï&quot;<br>
-               (237 999)  &quot;Ì&quot;<br>
-               (238 999)  &quot;Ó&quot;<br>
-               (239 999)  &quot;Ô&quot;<br>
-               (240 999)  &quot;¾&quot;<br>
-               (241 999)  &quot;Ò&quot;<br>
-               (242 999)  &quot;Ú&quot;<br>
-               (243 999)  &quot;Û&quot;<br>
-               (244 999)  &quot;Ù&quot;<br>
-               (245 999)  &quot;Ð&quot;<br>
-               (246 999)  &quot;ˆ&quot;<br>
-               (247 999)  &quot;˜&quot;<br>
-               (248 999)  &quot;¯&quot;<br>
-               (249 999)  &quot;×&quot;<br>
-               (250 999)  &quot;Ý&quot;<br>
-               (251 999)  &quot;Þ&quot;<br>
-               (252 999)  &quot;¸&quot;<br>
-               (253 999)  &quot;ð&quot;<br>
-               (254 999)  &quot;ý&quot;<br>
-               (255 999)  &quot;þ&quot;<br>
        )!<br>
<br>
<br>
</blockquote></div><br></div>