recipes: x-libs/gtk2: make GTK+-2 more stable
[dragora.git] / patches / gtk2 / 004_gtk+-ximian-gtk2-filesel-navbutton-5.patch
blob8b57c727e03545ca6cac9625b435663e35493789
1 From: Debian GNOME Maintainers
2 <pkg-gnome-maintainers@lists.alioth.debian.org>
3 Date: Sun, 13 Jul 2003 21:26:49 +0900
4 Subject: Ximian patch to improve the GtkFileSel UI
6 Requested by Ross Burton in 2003.
8 TODO: What does this patch do and why do we have it?
10 [Jonathan Brandmeyer: Use ~/Desktop instead of ~/.gnome2-desktop]
12 Forwarded: no
13 ---
14 gtk/gtkfilesel.c | 291 +++++++++++++--
15 gtk/stock-icons/ximian-icons.h | 825 +++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 1089 insertions(+), 27 deletions(-)
17 create mode 100644 gtk/stock-icons/ximian-icons.h
19 diff --git a/gtk/gtkfilesel.c b/gtk/gtkfilesel.c
20 index 245bdf1..084bb63 100644
21 --- a/gtk/gtkfilesel.c
22 +++ b/gtk/gtkfilesel.c
23 @@ -80,9 +80,13 @@
24 #include "gtkeventbox.h"
25 #include "gtkoptionmenu.h"
27 +#include "gtkimage.h"
29 #define WANT_HPANED 1
30 #include "gtkhpaned.h"
32 +#include "stock-icons/ximian-icons.h"
34 #include "gtkalias.h"
36 #ifdef G_OS_WIN32
37 @@ -318,6 +322,9 @@ static gint cmpl_last_valid_char (CompletionState* cmpl_state)
39 static gchar* cmpl_completion_fullname (const gchar*, CompletionState* cmpl_state);
41 +static void home_clicked (GtkWidget *widget, gpointer data);
42 +static void desktop_clicked (GtkWidget *widget, gpointer data);
43 +static void documents_clicked (GtkWidget *widget, gpointer data);
45 /* Directory operations. */
46 static CompletionDir* open_ref_dir (gchar* text_to_complete,
47 @@ -627,6 +634,10 @@ gtk_file_selection_init (GtkFileSelection *filesel)
48 GtkWidget *spacer;
49 GtkDialog *dialog;
51 + GdkPixbuf *ipixbuf;
52 + GtkWidget *bbox, *home_button, *desk_button, *docs_button, *xbox;
53 + GtkWidget *lbox;
55 GtkListStore *model;
56 GtkTreeViewColumn *column;
58 @@ -640,18 +651,9 @@ gtk_file_selection_init (GtkFileSelection *filesel)
59 filesel->main_vbox = dialog->vbox;
60 gtk_container_set_border_width (GTK_CONTAINER (filesel), 10);
62 - /* The horizontal box containing create, rename etc. buttons */
63 - filesel->button_area = gtk_hbutton_box_new ();
64 - gtk_button_box_set_layout (GTK_BUTTON_BOX (filesel->button_area), GTK_BUTTONBOX_START);
65 - gtk_box_set_spacing (GTK_BOX (filesel->button_area), 0);
66 - gtk_box_pack_start (GTK_BOX (filesel->main_vbox), filesel->button_area,
67 - FALSE, FALSE, 0);
68 - gtk_widget_show (filesel->button_area);
70 - gtk_file_selection_show_fileop_buttons (filesel);
72 /* hbox for pulldown menu */
73 pulldown_hbox = gtk_hbox_new (TRUE, 5);
74 + gtk_container_set_border_width (GTK_CONTAINER (pulldown_hbox), 4);
75 gtk_box_pack_start (GTK_BOX (filesel->main_vbox), pulldown_hbox, FALSE, FALSE, 0);
76 gtk_widget_show (pulldown_hbox);
78 @@ -663,14 +665,27 @@ gtk_file_selection_init (GtkFileSelection *filesel)
80 /* The horizontal box containing the directory and file listboxes */
82 + xbox = gtk_hbox_new (FALSE, 0);
83 + gtk_box_pack_start (GTK_BOX (filesel->main_vbox), xbox, TRUE, TRUE, 0);
84 + gtk_widget_show (xbox);
86 + bbox = gtk_vbox_new (FALSE, 0);
87 + gtk_box_pack_start (GTK_BOX (xbox), bbox, FALSE, FALSE, 5);
88 + gtk_widget_show (bbox);
90 + lbox = gtk_vbox_new (FALSE, 0);
91 + gtk_box_pack_start (GTK_BOX (xbox), lbox, TRUE, TRUE, 5);
92 + gtk_widget_show (lbox);
94 spacer = gtk_hbox_new (FALSE, 0);
95 gtk_widget_set_size_request (spacer, -1, 5);
96 - gtk_box_pack_start (GTK_BOX (filesel->main_vbox), spacer, FALSE, FALSE, 0);
97 + gtk_box_pack_start (GTK_BOX (lbox), spacer, FALSE, FALSE, 0);
98 gtk_widget_show (spacer);
100 list_hbox = gtk_hbox_new (FALSE, 5);
101 - gtk_box_pack_start (GTK_BOX (filesel->main_vbox), list_hbox, TRUE, TRUE, 0);
102 + gtk_box_pack_start (GTK_BOX (lbox), list_hbox, TRUE, TRUE, 0);
103 gtk_widget_show (list_hbox);
105 if (WANT_HPANED)
106 list_container = g_object_new (GTK_TYPE_HPANED,
107 "visible", TRUE,
108 @@ -682,9 +697,78 @@ gtk_file_selection_init (GtkFileSelection *filesel)
110 spacer = gtk_hbox_new (FALSE, 0);
111 gtk_widget_set_size_request (spacer, -1, 5);
112 - gtk_box_pack_start (GTK_BOX (filesel->main_vbox), spacer, FALSE, FALSE, 0);
113 + gtk_box_pack_start (GTK_BOX (lbox), spacer, FALSE, FALSE, 0);
114 gtk_widget_show (spacer);
117 + /* The Pretty Icons */
119 + home_button = gtk_button_new ();
120 + gtk_container_set_border_width (GTK_CONTAINER (home_button), 4);
121 + gtk_box_pack_start (GTK_BOX (bbox), home_button, FALSE, FALSE, 0);
122 + gtk_widget_show (home_button);
124 + g_signal_connect (G_OBJECT (home_button), "clicked",
125 + G_CALLBACK (home_clicked), filesel);
127 + xbox = gtk_vbox_new (FALSE, 0);
128 + gtk_container_add (GTK_CONTAINER (home_button), xbox);
129 + gtk_widget_show (xbox);
131 + ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_home_48, FALSE, NULL);
132 + label = gtk_image_new_from_pixbuf (ipixbuf);
133 + gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0);
134 + gtk_widget_show (label);
136 + label = gtk_label_new_with_mnemonic ("_Home");
137 + gtk_label_set_mnemonic_widget (GTK_LABEL (label), home_button);
138 + gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0);
139 + gtk_widget_show (label);
141 + desk_button = gtk_button_new ();
142 + gtk_container_set_border_width (GTK_CONTAINER (desk_button), 4);
143 + gtk_box_pack_start (GTK_BOX (bbox), desk_button, FALSE, FALSE, 0);
144 + gtk_widget_show (desk_button);
146 + g_signal_connect (G_OBJECT (desk_button), "clicked",
147 + G_CALLBACK (desktop_clicked), filesel);
149 + xbox = gtk_vbox_new (FALSE, 0);
150 + gtk_container_add (GTK_CONTAINER (desk_button), xbox);
151 + gtk_widget_show (xbox);
153 + ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_desktop_48, FALSE, NULL);
154 + label = gtk_image_new_from_pixbuf (ipixbuf);
155 + gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0);
156 + gtk_widget_show (label);
158 + label = gtk_label_new_with_mnemonic ("D_esktop");
159 + gtk_label_set_mnemonic_widget (GTK_LABEL (label), desk_button);
160 + gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0);
161 + gtk_widget_show (label);
163 + docs_button = gtk_button_new ();
164 + gtk_container_set_border_width (GTK_CONTAINER (docs_button), 4);
165 + gtk_box_pack_start (GTK_BOX (bbox), docs_button, FALSE, FALSE, 0);
166 + gtk_widget_show (docs_button);
168 + g_signal_connect (G_OBJECT (docs_button), "clicked",
169 + G_CALLBACK (documents_clicked), filesel);
171 + xbox = gtk_vbox_new (FALSE, 0);
172 + gtk_container_add (GTK_CONTAINER (docs_button), xbox);
173 + gtk_widget_show (xbox);
175 + ipixbuf = gdk_pixbuf_new_from_inline (-1, stock_documents_48, FALSE, NULL);
176 + label = gtk_image_new_from_pixbuf (ipixbuf);
177 + gtk_box_pack_start (GTK_BOX (xbox), label, FALSE, FALSE, 0);
178 + gtk_widget_show (label);
180 + label = gtk_label_new_with_mnemonic ("Docu_ments");
181 + gtk_label_set_mnemonic_widget (GTK_LABEL (label), docs_button);
182 + gtk_box_pack_end (GTK_BOX (xbox), label, FALSE, FALSE, 0);
183 + gtk_widget_show (label);
185 /* The directories list */
187 model = gtk_list_store_new (1, G_TYPE_STRING);
188 @@ -757,6 +841,15 @@ gtk_file_selection_init (GtkFileSelection *filesel)
189 gtk_widget_show (filesel->file_list);
190 gtk_widget_show (scrolled_win);
192 + /* The horizontal box containing create, rename etc. buttons */
193 + filesel->button_area = gtk_hbox_new (FALSE, 0);
194 + gtk_box_set_spacing (GTK_BOX (filesel->button_area), 0);
195 + gtk_box_pack_start (GTK_BOX (lbox), filesel->button_area,
196 + FALSE, FALSE, 0);
197 + gtk_widget_show (filesel->button_area);
199 + gtk_file_selection_show_fileop_buttons (filesel);
201 /* action area for packing buttons into. */
202 filesel->action_area = gtk_hbox_new (TRUE, 0);
203 gtk_box_pack_start (GTK_BOX (filesel->main_vbox), filesel->action_area,
204 @@ -1012,39 +1105,94 @@ gtk_file_selection_new (const gchar *title)
205 void
206 gtk_file_selection_show_fileop_buttons (GtkFileSelection *filesel)
208 + GtkWidget *label;
209 + GtkWidget *bbox;
211 g_return_if_fail (GTK_IS_FILE_SELECTION (filesel));
213 /* delete, create directory, and rename */
214 if (!filesel->fileop_c_dir)
216 - filesel->fileop_c_dir = gtk_button_new_with_mnemonic (_("_New Folder"));
217 + filesel->fileop_c_dir = gtk_button_new ();
218 + gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_c_dir), 4);
220 + bbox = gtk_hbox_new (FALSE, 2);
221 + gtk_container_add (GTK_CONTAINER (filesel->fileop_c_dir), bbox);
223 + label = gtk_image_new_from_stock (GTK_STOCK_OPEN, GTK_ICON_SIZE_BUTTON);
224 + gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0);
225 + gtk_widget_show (label);
227 + label = gtk_label_new_with_mnemonic (_("_New Folder"));
228 + gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_c_dir);
229 + gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0);
230 + gtk_widget_show (label);
232 + gtk_widget_show (bbox);
234 g_signal_connect (filesel->fileop_c_dir, "clicked",
235 - G_CALLBACK (gtk_file_selection_create_dir),
236 - filesel);
237 + G_CALLBACK (gtk_file_selection_create_dir),
238 + (gpointer) filesel);
239 gtk_box_pack_start (GTK_BOX (filesel->button_area),
240 - filesel->fileop_c_dir, TRUE, TRUE, 0);
241 + filesel->fileop_c_dir, FALSE, FALSE, 0);
242 gtk_widget_show (filesel->fileop_c_dir);
246 if (!filesel->fileop_del_file)
248 - filesel->fileop_del_file = gtk_button_new_with_mnemonic (_("De_lete File"));
249 + filesel->fileop_del_file = gtk_button_new ();
250 + gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_del_file), 4);
252 + bbox = gtk_hbox_new (FALSE, 2);
253 + gtk_container_add (GTK_CONTAINER (filesel->fileop_del_file), bbox);
255 + label = gtk_image_new_from_stock (GTK_STOCK_DELETE,
256 + GTK_ICON_SIZE_BUTTON);
257 + gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0);
258 + gtk_widget_show (label);
260 + label = gtk_label_new (_("De_lete File"));
261 + gtk_label_set_use_underline (GTK_LABEL (label), TRUE);
262 + gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_del_file);
263 + gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0);
264 + gtk_widget_show (label);
266 + gtk_widget_show (bbox);
268 g_signal_connect (filesel->fileop_del_file, "clicked",
269 G_CALLBACK (gtk_file_selection_delete_file),
270 - filesel);
271 - gtk_box_pack_start (GTK_BOX (filesel->button_area),
272 - filesel->fileop_del_file, TRUE, TRUE, 0);
273 + (gpointer) filesel);
274 + gtk_box_pack_end (GTK_BOX (filesel->button_area),
275 + filesel->fileop_del_file, FALSE, FALSE, 0);
276 gtk_widget_show (filesel->fileop_del_file);
280 if (!filesel->fileop_ren_file)
282 - filesel->fileop_ren_file = gtk_button_new_with_mnemonic (_("_Rename File"));
283 + filesel->fileop_ren_file = gtk_button_new ();
284 + gtk_container_set_border_width (GTK_CONTAINER (filesel->fileop_ren_file), 4);
286 + bbox = gtk_hbox_new (FALSE, 2);
287 + gtk_container_add (GTK_CONTAINER (filesel->fileop_ren_file), bbox);
289 + label = gtk_image_new_from_stock (GTK_STOCK_SAVE_AS,
290 + GTK_ICON_SIZE_BUTTON);
291 + gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0);
292 + gtk_widget_show (label);
294 + label = gtk_label_new (_("_Rename File"));
295 + gtk_label_set_use_underline (GTK_LABEL (label), TRUE);
296 + gtk_label_set_mnemonic_widget (GTK_LABEL (label), filesel->fileop_ren_file);
297 + gtk_box_pack_start (GTK_BOX (bbox), label, FALSE, FALSE, 0);
298 + gtk_widget_show (label);
300 + gtk_widget_show (bbox);
302 g_signal_connect (filesel->fileop_ren_file, "clicked",
303 G_CALLBACK (gtk_file_selection_rename_file),
304 - filesel);
305 - gtk_box_pack_start (GTK_BOX (filesel->button_area),
306 - filesel->fileop_ren_file, TRUE, TRUE, 0);
307 + (gpointer) filesel);
308 + gtk_box_pack_end (GTK_BOX (filesel->button_area),
309 + filesel->fileop_ren_file, FALSE, FALSE, 0);
310 gtk_widget_show (filesel->fileop_ren_file);
313 @@ -1752,6 +1900,95 @@ gtk_file_selection_update_fileops (GtkFileSelection *fs)
314 gtk_widget_set_sensitive (fs->fileop_ren_file, sensitive);
317 +static void
318 +home_clicked (GtkWidget *widget, gpointer data)
320 + char *dir;
322 + dir = g_strdup_printf ("%s/", g_get_home_dir());
324 + gtk_file_selection_populate (GTK_FILE_SELECTION (data),
325 + dir, FALSE, FALSE);
326 + g_free (dir);
328 + gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry);
331 +static char *
332 +get_desktop_directory (void)
334 + char *filename;
335 + struct stat buf;
337 + filename = g_build_filename (g_get_home_dir (), "Desktop", NULL);
338 + if (lstat (filename, &buf) == 0)
340 + if (S_ISLNK (buf.st_mode))
342 + char link_target[MAXPATHLEN + 1];
343 + int len;
345 + len = readlink (filename, link_target, MAXPATHLEN);
346 + if (len > 0)
348 + char *desktop_filename;
349 + /* Add a trailing / if there isn't already one */
350 + link_target[len] = '\0';
351 + if (link_target[len - 1] == G_DIR_SEPARATOR)
353 + link_target[len - 1] = '\0';
356 + if (!strcmp (link_target, "Desktop"))
358 + g_free (filename);
359 + return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL);
362 + desktop_filename = g_build_filename (g_get_home_dir (), "Desktop", NULL);
363 + if (!strcmp (link_target, desktop_filename))
365 + g_free (desktop_filename);
366 + g_free (filename);
367 + return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL);
369 + g_free (desktop_filename);
373 + g_free (filename);
375 + return g_build_filename (g_get_home_dir (), "Desktop", G_DIR_SEPARATOR_S, NULL);
379 +static void
380 +desktop_clicked (GtkWidget *widget, gpointer data)
382 + char *dir;
384 + dir = get_desktop_directory ();
385 + gtk_file_selection_populate (GTK_FILE_SELECTION (data),
386 + dir, FALSE, FALSE);
387 + g_free (dir);
389 + gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry);
392 +static void
393 +documents_clicked (GtkWidget *widget, gpointer data)
395 + char *dir;
396 + dir = g_strdup_printf ("%s/Documents/", g_get_home_dir ());
398 + gtk_file_selection_populate (GTK_FILE_SELECTION (data),
399 + dir, FALSE, FALSE);
401 + g_free (dir);
403 + gtk_widget_grab_focus (GTK_FILE_SELECTION (data)->selection_entry);
406 static gint
407 gtk_file_selection_key_press (GtkWidget *widget,
408 GdkEventKey *event,
409 diff --git a/gtk/stock-icons/ximian-icons.h b/gtk/stock-icons/ximian-icons.h
410 new file mode 100644
411 index 0000000..e8173a8
412 --- /dev/null
413 +++ b/gtk/stock-icons/ximian-icons.h
414 @@ -0,0 +1,825 @@
415 +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */
417 +static const guint8 stock_desktop_48[] =
418 +{ ""
419 + /* Pixbuf magic (0x47646b50) */
420 + "GdkP"
421 + /* length: header (24) + pixel_data (6692) */
422 + "\0\0\32<"
423 + /* pixdata_type (0x2010002) */
424 + "\2\1\0\2"
425 + /* rowstride (276) */
426 + "\0\0\1\24"
427 + /* width (69) */
428 + "\0\0\0E"
429 + /* height (45) */
430 + "\0\0\0-"
431 + /* pixel_data: */
432 + "\377\0\0\0\0\332\0\0\0\0\204\0\0\0\1\252\0\0\0\0\204\0\0\0\1\221\0\0"
433 + "\0\0\3\0\0\0\2\0\0\0\5\0\0\0\10\202\0\0\0\11\3\0\0\0\10\0\0\0\5\0\0\0"
434 + "\3\245\0\0\0\1\4\0\0\0\2\0\0\0\3\0\0\0\6\0\0\0\10\202\0\0\0\11\3\0\0"
435 + "\0\10\0\0\0\5\0\0\0\2\216\0\0\0\0\2\0\0\0\2\0\0\0_\204\0\0\0\377\4\0"
436 + "\0\0m\0\0\0\26\0\0\0\17\0\0\0\13\244\0\0\0\12\2\0\0\0\14\0\0\0\202\204"
437 + "\0\0\0\377\4\0\0\0l\0\0\0\23\0\0\0\10\0\0\0\2\215\0\0\0\0\3\0\0\0\5\0"
438 + "\0\0\377\266\276\312\377\202\245\257\276\377\1s}\214\377\252\0\0\0\377"
439 + "\1\266\276\312\377\202\220\234\257\377\5s}\214\377\0\0\0\377\0\0\0)\0"
440 + "\0\0\23\0\0\0\5\214\0\0\0\0\11\0\0\0\1\0\0\0\10\0\0\0\377\220\234\257"
441 + "\377Ug\204\377DRj\377MNA\377\310\311\274\377\333\334\314\377\231\323"
442 + "\324\300\377\4\322\323\300\377\321\323\277\377\321\323\276\377\321\322"
443 + "\276\377\203\320\321\275\377\4\317\320\274\377\316\320\274\377\315\320"
444 + "\273\377\315\317\272\377\202\315\316\271\377\13\315\315\271\377\314\315"
445 + "\271\377qr^\377\245\257\276\377Ug\204\377DRj\377\0\0\0\377\0\0\0<\0\0"
446 + "\0\35\0\0\0\10\0\0\0\1\213\0\0\0\0\7\0\0\0\1\0\0\0\11\0\0\0\377\220\234"
447 + "\257\377DRj\377abR\377\227\230\177\377\231\274\276\237\377\32\273\275"
448 + "\236\377\273\275\235\377\272\274\235\377\271\273\234\377\270\273\233"
449 + "\377\270\272\232\377\267\271\231\377\266\270\231\377\265\270\230\377"
450 + "\265\267\227\377\264\266\226\377\263\266\225\377\263\265\225\377\262"
451 + "\264\224\377\261\264\223\377\260\263\222\377\260\262\221\377\257\262"
452 + "\221\377or\\\377\220\234\257\377DRj\377\0\0\0\377\0\0\0E\0\0\0\"\0\0"
453 + "\0\12\0\0\0\1\213\0\0\0\0\6\0\0\0\1\0\0\0\12\0\0\0\377s}\214\377abR\377"
454 + "\227\230\177\377\231\274\276\237\377\33\273\275\236\377\272\274\235\377"
455 + "\271\274\234\377\271\273\233\377\270\272\233\377\267\271\232\377\267"
456 + "\271\231\377\266\270\230\377\265\267\227\377\264\267\227\377\264\266"
457 + "\226\377\263\265\225\377\262\265\224\377\261\264\223\377\261\263\223"
458 + "\377\260\263\222\377\257\262\221\377\257\261\220\377\256\260\217\377"
459 + "\255\260\217\377np[\377\220\234\257\377\0\0\0\377\0\0\0F\0\0\0#\0\0\0"
460 + "\12\0\0\0\1\213\0\0\0\0\5\0\0\0\1\0\0\0\10\0\0\0m\0\0\0\377\273\274\254"
461 + "\377\230\274\276\237\377\35\273\275\236\377\272\275\235\377\272\274\235"
462 + "\377\271\273\234\377\270\272\233\377\270\272\232\377\267\271\231\377"
463 + "\266\270\231\377\265\270\230\377\265\267\227\377\264\266\226\377\263"
464 + "\266\225\377\262\265\225\377\262\264\224\377\261\264\223\377\260\263"
465 + "\222\377\260\262\221\377\257\261\221\377\256\261\220\377\255\260\217"
466 + "\377\255\257\216\377\254\257\215\377\226\231|\377\0\0\0\377\0\0\0\253"
467 + "\0\0\0A\0\0\0\37\0\0\0\11\0\0\0\1\214\0\0\0\0\4\0\0\0\6\0\0\0\26\0\0"
468 + "\0\377\323\324\300\377\227\274\276\237\377\36\273\275\236\377\272\274"
469 + "\235\377\271\273\234\377\271\273\233\377\270\272\233\377\267\271\232"
470 + "\377\266\271\231\377\266\270\230\377\265\267\227\377\264\267\227\377"
471 + "\264\266\226\377\263\265\225\377\262\265\224\377\261\264\223\377\261"
472 + "\263\223\377\260\262\222\377\257\262\221\377\256\261\220\377\256\260"
473 + "\217\377\255\260\217\377\254\257\216\377\254\256\215\377\253\256\214"
474 + "\377\226\230z\377\0\0\0\377\0\0\0V\0\0\0""6\0\0\0\27\0\0\0\6\0\0\0\1"
475 + "\214\0\0\0\0\4\0\0\0\3\0\0\0\17\0\0\0\377\323\324\300\377\211\274\276"
476 + "\237\377\1z{g\377\214\0\0\0\377\36[\\L\377\267\271\232\377\271\273\234"
477 + "\377\270\272\233\377\267\272\232\377\267\271\231\377\266\270\230\377"
478 + "\265\270\230\377\265\267\227\377\264\266\226\377\263\266\225\377\262"
479 + "\265\224\377\262\264\224\377\261\263\223\377\260\263\222\377\257\262"
480 + "\221\377\257\261\220\377\256\261\220\377\255\260\217\377\255\257\216"
481 + "\377\254\257\215\377\253\256\214\377\252\255\214\377\252\255\213\377"
482 + "\225\227y\377\0\0\0\377\0\0\0O\0\0\0,\0\0\0\20\0\0\0\3\215\0\0\0\0\4"
483 + "\0\0\0\2\0\0\0\14\0\0\0\377\323\324\300\377\211\274\276\237\377\3\0\0"
484 + "\0\377\323\323\323\377\366\366\366\377\210\377\377\377\377\40\371\371"
485 + "\371\377\332\332\332\377XXX\377,-%\377\263\265\226\377\266\270\231\377"
486 + "\266\271\231\377\266\270\230\377\265\267\227\377\264\267\226\377\263"
487 + "\266\226\377\263\265\225\377\262\264\224\377\261\264\223\377\261\263"
488 + "\222\377\260\262\222\377\257\262\221\377\256\261\220\377\256\260\217"
489 + "\377\255\260\216\377\254\257\216\377\253\256\215\377\253\256\214\377"
490 + "\252\255\213\377\251\254\212\377\251\253\212\377\224\226x\377\0\0\0\377"
491 + "\0\0\0K\0\0\0&\0\0\0\14\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0"
492 + "\377\323\324\300\377\211\274\276\237\377\2\0\0\0\377\366\366\366\377"
493 + "\212\377\377\377\377\5\307\307\307\377\321\321\321\377\326\326\326\377"
494 + "\0\0\0\377\260\262\223\377\202\264\267\227\377\30\264\266\226\377\263"
495 + "\265\225\377\262\265\224\377\262\264\224\377\261\263\223\377\260\263"
496 + "\222\377\257\262\221\377\257\261\220\377\256\261\220\377\255\260\217"
497 + "\377\254\257\216\377\254\257\215\377\253\256\214\377\252\255\214\377"
498 + "\252\254\213\377\251\254\212\377\250\253\211\377\247\252\210\377\223"
499 + "\226x\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0"
500 + "\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237\377\1\0\0\0\377"
501 + "\207\377\377\377\377#\376\376\376\377\377\377\377\377\376\376\376\377"
502 + "\375\375\375\377\300\300\300\377\341\341\341\377\360\360\360\377\233"
503 + "\233\233\377\0\0\0\377\255\257\220\377\262\265\225\377\263\265\225\377"
504 + "\262\264\224\377\261\264\223\377\260\263\222\377\260\262\222\377\257"
505 + "\262\221\377\256\261\220\377\256\260\217\377\255\260\216\377\254\257"
506 + "\216\377\253\256\215\377\253\255\214\377\252\255\213\377\251\254\212"
507 + "\377\250\253\212\377\250\253\211\377\247\252\210\377\246\251\207\377"
508 + "\222\225v\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4"
509 + "\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237\377\1\0\0"
510 + "\0\377\205\377\377\377\377%\376\376\376\377\375\375\375\377\374\374\373"
511 + "\377\375\375\375\377\374\374\373\377\373\373\373\377\257\257\256\377"
512 + "\351\351\351\377\377\377\377\377\337\337\337\377\217\217\217\377\0\0"
513 + "\0\377\253\256\216\377\260\263\222\377\261\263\223\377\260\263\222\377"
514 + "\257\262\221\377\257\261\220\377\256\261\217\377\255\260\217\377\254"
515 + "\257\216\377\254\256\215\377\253\256\214\377\252\255\213\377\251\254"
516 + "\213\377\251\254\212\377\250\253\211\377\247\252\210\377\247\252\207"
517 + "\377\246\251\207\377\245\250\206\377\220\224u\377\0\0\0\377\0\0\0I\0"
518 + "\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324"
519 + "\300\377\211\274\276\237\377\1\0\0\0\377\203\377\377\377\377\32\376\376"
520 + "\376\377\375\375\375\377\374\374\373\377\373\373\373\377\372\372\371"
521 + "\377\373\373\373\377\372\372\371\377\371\371\370\377\244\244\243\377"
522 + "\360\360\360\377\377\377\377\377\364\364\364\377\317\317\317\377\242"
523 + "\242\242\37744+\377\252\255\215\377\257\261\220\377\257\262\221\377\256"
524 + "\261\220\377\255\260\217\377\255\257\216\377\254\257\215\377\253\256"
525 + "\215\377\253\255\214\377\252\255\213\377\251\254\212\377\202\250\253"
526 + "\211\377\13\247\252\210\377\246\251\207\377\245\251\206\377\245\250\205"
527 + "\377\244\247\205\377\220\222t\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0"
528 + "\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274"
529 + "\276\237\377\15\0\0\0\377\377\377\377\377\376\376\376\377\375\375\375"
530 + "\377\374\374\373\377\373\373\373\377\372\372\371\377\371\371\370\377"
531 + "\370\370\367\377\371\371\370\377\370\370\367\377\370\367\366\377\236"
532 + "\236\236\377\206\0\0\0\377\30VWG\377\252\255\215\377\256\260\217\377"
533 + "\255\260\217\377oq\\\377\15\15\13\3779.'\377\214\214p\377\245\247\207"
534 + "\377\251\254\212\377\250\253\211\377\247\252\210\377\246\252\207\377"
535 + "\246\251\207\377\245\250\206\377\244\247\205\377\244\247\204\377\243"
536 + "\246\203\377\217\221s\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215"
537 + "\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\211\274\276\237"
538 + "\377+\0\0\0\377\377\377\377\377\374\374\373\377\373\373\373\377\372\372"
539 + "\371\377\371\371\370\377\370\370\367\377\370\367\366\377\367\366\365"
540 + "\377\370\367\366\377\367\366\365\377\366\366\364\377\364\363\362\377"
541 + "\336\335\334\377\323\322\320\377\267\267\265\377\237\236\235\377poo\377"
542 + "ebZ\377\0\0\0\377\242\244\206\377op[\377\24\24\21\377E\77\77\377\347"
543 + "\254\243\377\302[K\377,\30\23\377\201\204i\377\250\253\211\377\247\252"
544 + "\210\377\246\251\207\377\245\250\206\377\245\250\205\377\244\247\205"
545 + "\377\243\246\204\377\242\246\203\377\242\245\202\377\216\220q\377\0\0"
546 + "\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12"
547 + "\0\0\0\377\323\324\300\377\210\274\276\237\377,\273\275\236\377\0\0\0"
548 + "\377\377\377\377\377\372\372\371\377\371\371\370\377\370\370\367\377"
549 + "\370\367\366\377\367\366\365\377\366\366\364\377\365\364\363\377\366"
550 + "\366\364\377\365\364\363\377\364\363\362\377\362\362\360\377\344\344"
551 + "\342\377\332\331\327\377\330\330\326\377\315\314\312\377\257\256\254"
552 + "\377\210\204{\377\0\0\0\377\21\21\14\377D@5\377\350\332\260\377\240\231"
553 + "\223\377\235NB\377n#\26\377\40\17\12\377or[\377\246\251\207\377\246\251"
554 + "\206\377\245\250\206\377\244\247\205\377\243\247\204\377\243\246\203"
555 + "\377\242\245\202\377\241\245\202\377\241\244\201\377\215\220p\377\0\0"
556 + "\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12"
557 + "\0\0\0\377\323\324\300\377\207\274\276\237\377-\273\275\236\377\272\274"
558 + "\235\377\0\0\0\377\377\377\377\377\370\370\367\377\370\367\366\377\367"
559 + "\366\365\377\366\366\364\377\365\364\363\377\364\363\362\377\363\363"
560 + "\361\377\364\363\362\377\363\363\361\377\362\362\360\377\357\357\355"
561 + "\377\356\355\353\377\355\354\352\377\351\350\346\377\325\324\323\377"
562 + "\275\274\273\377\21\17\15\377,*#\377\360\337\253\377\320\264f\377\272"
563 + "\214,\377x_2\3774\30\23\377\31\26\22\377\202\205j\377\242\245\203\377"
564 + "\245\250\206\377\245\250\205\377\244\247\204\377\243\246\204\377\242"
565 + "\246\203\377\242\245\202\377\241\244\201\377\240\244\200\377\237\243"
566 + "\200\377\214\217p\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0"
567 + "\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377\205\274\276\237\377"
568 + "\202\273\275\236\377\6\272\274\235\377\271\273\234\377\0\0\0\377\377"
569 + "\377\377\377\366\365\364\377\365\365\363\377\202\364\363\362\377%\363"
570 + "\363\361\377\362\362\360\377\361\361\357\377\362\362\360\377\361\361"
571 + "\357\377\361\360\356\377\356\355\353\377\354\353\351\377\352\351\347"
572 + "\377\332\326\315\377\26\25\21\377-,&\377\362\342\262\377\320\264e\377"
573 + "\270\211+\377\244q\24\377O4\6\377\33\27\15\377su]\377\234\237\177\377"
574 + "\244\247\204\377\243\246\204\377\244\247\205\377\243\247\204\377\243"
575 + "\246\203\377\242\245\202\377\241\245\202\377\240\244\201\377\240\243"
576 + "\200\377\237\242\177\377\236\242~\377\213\216o\377\0\0\0\377\0\0\0I\0"
577 + "\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324"
578 + "\300\377\204\274\276\237\3770\273\275\236\377\272\274\235\377\272\274"
579 + "\234\377\271\273\234\377\270\272\233\377\0\0\0\377\377\377\377\377\364"
580 + "\363\362\377\363\362\361\377\362\362\360\377\360\360\356\377\357\357"
581 + "\355\377\361\360\356\377\360\357\355\377\361\360\356\377\360\357\355"
582 + "\377\357\356\354\377\354\353\351\377\305\303\274\377\25\24\16\377-,&"
583 + "\377\362\343\263\377\320\265g\377\271\215/\377\247r\26\377Z=\11\377\33"
584 + "\25\7\377[]J\377\233\236~\377\242\245\203\377\243\246\204\377\242\246"
585 + "\203\377\244\247\204\377\243\246\204\377\242\246\203\377\242\245\202"
586 + "\377\241\244\201\377\240\243\200\377\237\243\200\377\237\242\177\377"
587 + "\236\241~\377\235\241}\377\211\215m\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0"
588 + "\13\0\0\0\2\215\0\0\0\0\4\0\0\0\1\0\0\0\12\0\0\0\377\323\324\300\377"
589 + "\202\274\276\237\3772\273\275\236\377\273\275\235\377\272\274\235\377"
590 + "\271\273\234\377\270\273\233\377\270\272\232\377\267\271\231\377\0\0"
591 + "\0\377\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377"
592 + "\360\360\356\377\357\357\355\377\361\360\356\377\360\357\355\377\361"
593 + "\360\356\377\360\357\355\377\351\350\346\377<8/\377+(\36\377\360\337"
594 + "\247\377\320\264h\377\276\2202\377\260|\33\377`A\13\377\30\20\1\377="
595 + ">1\377\225\230z\377\242\245\203\377\243\247\204\377\243\246\203\377\244"
596 + "\247\205\377\243\247\204\377\243\246\203\377\242\245\202\377\241\244"
597 + "\201\377\240\244\201\377\240\243\200\377\237\242\177\377\236\242~\377"
598 + "\235\241}\377\235\240}\377\234\240|\377\210\214l\377\0\0\0\377\0\0\0"
599 + "I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\20\0\0\0\1\0\0\0\12\0\0\0\377\323"
600 + "\324\300\377\274\276\237\377\273\275\236\377\272\274\235\377\271\274"
601 + "\234\377\271\273\233\377\270\272\233\377\267\271\232\377\267\271\231"
602 + "\377\266\270\230\377\0\0\0\377\377\377\377\377\360\360\356\377\202\357"
603 + "\357\355\377\2\357\356\354\377\356\355\353\377\203\355\354\352\377!\347"
604 + "\346\344\377NJB\377\256\247\240\377\315\265\221\377\305\236@\377\267"
605 + "\202\36\377bD\16\377\36\27\7\377:84\377\0\0\0\377\214\216q\377\244\247"
606 + "\205\377\243\246\204\377\242\246\203\377\244\247\204\377\243\246\203"
607 + "\377\242\245\203\377\241\245\202\377\241\244\201\377\240\243\200\377"
608 + "\237\243\177\377\237\242\177\377\236\241~\377\235\241}\377\234\240|\377"
609 + "\234\237{\377\233\237{\377\207\213k\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0"
610 + "\13\0\0\0\2\215\0\0\0\0\21\0\0\0\1\0\0\0\12\0\0\0\377\322\323\300\377"
611 + "\272\275\235\377\272\274\235\377\271\273\234\377\270\272\233\377\270"
612 + "\272\232\377\267\271\231\377\266\270\231\377\265\270\230\377\265\267"
613 + "\227\377\0\0\0\377\377\377\377\377\355\355\353\377\355\354\352\377\203"
614 + "\354\353\351\377$\353\352\350\377\351\350\345\377\353\352\350\377\37"
615 + "\37\37\377&$\40\377\220~i\377\232zU\377{`3\377\26\20\7\377DDC\377\270"
616 + "\267\264\377\233\225\212\377\0\0\0\377\216\220s\377\243\246\203\377\244"
617 + "\247\205\377\243\246\204\377\242\246\203\377\242\245\202\377\241\244"
618 + "\201\377\240\244\201\377\240\243\200\377\237\242\177\377\236\242~\377"
619 + "\235\241}\377\235\240}\377\234\240|\377\233\237{\377\232\236z\377\232"
620 + "\235y\377\207\212j\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0"
621 + "\0\0\0\20\0\0\0\1\0\0\0\12\0\0\0\377\321\323\277\377\271\273\234\377"
622 + "\271\273\233\377\270\272\233\377\267\271\232\377\266\271\231\377\266"
623 + "\270\230\377\265\267\227\377\264\267\227\377\264\266\226\377\0\0\0\377"
624 + "\377\377\377\377\353\352\350\377\202\351\350\346\377\1\350\347\345\377"
625 + "\202\350\347\344\377\2\347\346\343\377\36\35\35\377\202\24\24\24\377"
626 + "\37\26\26\23\377\"!\37\377LLJ\377\261\260\255\377\322\321\315\377\331"
627 + "\330\324\377\237\231\216\377\0\0\0\377\217\222t\377\244\247\204\377\243"
628 + "\246\203\377\242\245\203\377\241\245\202\377\241\244\201\377\240\243"
629 + "\200\377\237\243\177\377\236\242\177\377\236\241~\377\235\241}\377\234"
630 + "\240|\377\234\237{\377\233\236{\377\232\236z\377\231\235y\377\231\234"
631 + "x\377\206\211i\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0"
632 + "\0\20\0\0\0\1\0\0\0\12\0\0\0\377\321\322\276\377\270\272\233\377\267"
633 + "\272\232\377\267\271\231\377\266\270\230\377\265\270\230\377\265\267"
634 + "\227\377\264\266\226\377\263\266\225\377\262\265\224\377\0\0\0\377\377"
635 + "\377\377\377\347\346\343\377\203\346\345\342\377%\345\344\341\377\346"
636 + "\344\341\377\345\344\340\377\340\336\333\377\320\317\313\377\302\302"
637 + "\276\377\303\303\277\377\320\317\313\377\330\327\323\377\331\330\324"
638 + "\377\330\326\322\377\331\327\323\377\237\231\215\377\0\0\0\377\216\221"
639 + "s\377\242\246\203\377\242\245\202\377\241\244\201\377\240\244\200\377"
640 + "\237\243\200\377\237\242\177\377\236\242~\377\235\241}\377\235\240|\377"
641 + "\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235x\377\230"
642 + "\234x\377\227\233w\377\205\210h\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13"
643 + "\0\0\0\2\215\0\0\0\0\30\0\0\0\1\0\0\0\12\0\0\0\377\320\321\275\377\267"
644 + "\271\232\377\266\271\231\377\266\270\230\377\265\267\227\377\264\267"
645 + "\226\377\263\266\226\377\263\265\225\377\262\264\224\377\261\264\223"
646 + "\377\0\0\0\377\371\371\371\377\344\343\340\377\343\342\337\377\343\342"
647 + "\336\377\344\342\337\377\344\343\337\377\342\341\335\377\343\342\336"
648 + "\377\342\341\335\377\340\337\333\377\203\333\332\326\377\35\332\330\324"
649 + "\377\334\332\326\377\331\327\323\377\330\326\322\377\236\230\215\377"
650 + "\0\0\0\377\215\220q\377\241\245\202\377\241\244\201\377\240\243\200\377"
651 + "\237\242\177\377\236\242~\377\236\241~\377\235\240}\377\234\240|\377"
652 + "\233\237{\377\233\236z\377\232\236z\377\231\235y\377\231\234x\377\230"
653 + "\234w\377\227\233v\377\226\232v\377\204\207g\377\0\0\0\377\0\0\0I\0\0"
654 + "\0%\0\0\0\13\0\0\0\2\215\0\0\0\0""8\0\0\0\1\0\0\0\12\0\0\0\377\320\321"
655 + "\275\377\266\270\230\377\265\270\230\377\264\267\227\377\264\266\226"
656 + "\377\263\265\225\377\262\265\224\377\262\264\224\377\261\263\223\377"
657 + "\260\263\222\377\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334"
658 + "\377\341\340\334\377\340\337\333\377\342\341\335\377\340\337\333\377"
659 + "\341\340\334\377\340\337\333\377\341\340\334\377\337\336\332\377\340"
660 + "\336\332\377\335\333\327\377\334\332\326\377\331\327\323\377\330\326"
661 + "\321\377\327\325\321\377\235\227\213\377\0\0\0\377\214\217p\377\240\243"
662 + "\200\377\237\243\200\377\237\242\177\377\236\241~\377\235\241}\377\234"
663 + "\240|\377\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235"
664 + "x\377\230\234x\377\227\233w\377\227\233v\377\226\232u\377\225\231t\377"
665 + "\202\206f\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\30"
666 + "\0\0\0\1\0\0\0\12\0\0\0\377\317\320\274\377\265\267\227\377\264\266\226"
667 + "\377\263\266\226\377\263\265\225\377\262\264\224\377\261\264\223\377"
668 + "\260\263\222\377\260\262\222\377\257\262\221\377\0\0\0\377\321\321\321"
669 + "\377\341\337\333\377\340\336\332\377\337\336\332\377\336\335\331\377"
670 + "\340\337\333\377\336\335\331\377\340\336\332\377\336\335\331\377\340"
671 + "\336\332\377\202\336\334\330\377\202\334\332\326\377\34\330\326\322\377"
672 + "\327\326\321\377\325\323\316\377\233\225\212\377\0\0\0\377\213\216o\377"
673 + "\237\242\177\377\236\242~\377\236\241~\377\235\240}\377\234\240|\377"
674 + "\233\237{\377\233\236z\377\232\236z\377\231\235y\377\230\234x\377\230"
675 + "\234w\377\227\233v\377\226\232v\377\226\231u\377\225\231t\377\224\230"
676 + "s\377\202\205e\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0"
677 + "\0\32\0\0\0\1\0\0\0\12\0\0\0\377\315\320\273\377\264\266\226\377\263"
678 + "\265\225\377\262\265\224\377\261\264\223\377\261\263\223\377\260\263"
679 + "\222\377\257\262\221\377\257\261\220\377\256\261\217\377\0\0\0\377\231"
680 + "\230\221\377\243\236\222\377\244\236\223\377\243\235\222\377\243\235"
681 + "\221\377\243\235\222\377\241\234\220\377\242\234\220\377\241\234\220"
682 + "\377\242\234\220\377\241\233\217\377\241\233\220\377\202\237\231\215"
683 + "\377\202\235\227\214\377\21\233\226\212\377gcY\377\0\0\0\377\213\215"
684 + "o\377\236\241~\377\235\241}\377\234\240|\377\234\237{\377\233\237{\377"
685 + "\232\236z\377\231\235y\377\231\235x\377\230\234w\377\227\233w\377\227"
686 + "\232v\377\226\232u\377\225\231t\377\202\224\230s\377\7\224\227s\377\202"
687 + "\205e\377\0\0\0\377\0\0\0I\0\0\0%\0\0\0\13\0\0\0\2\215\0\0\0\0\16\0\0"
688 + "\0\2\0\0\0\14\0\0\0\377\315\317\271\377\263\265\225\377\262\264\224\377"
689 + "\261\264\223\377\260\263\222\377\260\262\221\377\257\262\221\377\256"
690 + "\261\220\377\255\260\217\377\255\257\216\377moY\377\222\0\0\0\377\17"
691 + "WZF\377\216\221q\377\235\240}\377\234\240|\377\233\237{\377\233\236z"
692 + "\377\232\235y\377\231\235y\377\230\234x\377\230\233w\377\227\233v\377"
693 + "\226\232u\377\225\231u\377\225\231t\377\224\230s\377\203\224\227s\377"
694 + "\6\202\205e\377\0\0\0\377\0\0\0K\0\0\0&\0\0\0\14\0\0\0\2\215\0\0\0\0"
695 + "\34\0\0\0\3\0\0\0\202\0\0\0\377\326\327\306\377\261\264\223\377\261\263"
696 + "\223\377\260\263\222\377\257\262\221\377\256\261\220\377\256\260\217"
697 + "\377\255\260\217\377\254\257\216\377\254\256\215\377\251\254\212\377"
698 + "\240\242\202\377\225\230{\377\224\227y\377\222\225w\377\222\224v\377"
699 + "\221\224v\377\221\223v\377\220\222u\377\217\222t\377\217\222s\377\216"
700 + "\221r\377\215\220r\377\214\220q\377\214\217p\377\202\213\216o\377\16"
701 + "\212\215o\377\212\214n\377\216\221q\377\227\232x\377\234\237{\377\233"
702 + "\236{\377\232\236z\377\231\235y\377\231\234x\377\230\234w\377\227\233"
703 + "w\377\226\232v\377\226\232u\377\225\231t\377\202\224\230s\377\204\224"
704 + "\227s\377\6\202\205e\377\0\0\0\377\0\0\0\243\0\0\0,\0\0\0\20\0\0\0\3"
705 + "\215\0\0\0\0\17\0\0\0\6\0\0\0\377v\204\234\377rr^\377\260\263\222\377"
706 + "\260\262\221\377\257\261\221\377\256\261\220\377\255\260\217\377\255"
707 + "\257\216\377\254\257\215\377\253\256\215\377\252\255\214\377\252\255"
708 + "\213\377\251\254\212\377\202\250\253\211\377\33\247\252\210\377\246\251"
709 + "\207\377\245\250\206\377\245\250\205\377\244\247\205\377\243\246\204"
710 + "\377\242\246\203\377\242\245\202\377\241\244\201\377\240\244\201\377"
711 + "\240\243\200\377\237\242\177\377\236\242~\377\235\241}\377\235\240}\377"
712 + "\234\237|\377\233\237{\377\232\236z\377\232\235y\377\231\235y\377\230"
713 + "\234x\377\230\233w\377\227\233v\377\226\232u\377\225\231u\377\225\231"
714 + "t\377\224\230s\377\206\224\227s\377\7z}_\377\222\230\242\377\0\0\0\377"
715 + "\0\0\0""6\0\0\0\27\0\0\0\6\0\0\0\1\213\0\0\0\0\15\0\0\0\1\0\0\0\10\0"
716 + "\0\0\377Ug\204\377v\204\234\377pr]\377\256\261\220\377\256\260\217\377"
717 + "\255\260\216\377\254\257\216\377\253\256\215\377\253\256\214\377\252"
718 + "\255\213\377\202\251\254\212\377\34\250\253\211\377\247\252\210\377\246"
719 + "\251\207\377\246\251\206\377\245\250\206\377\244\247\205\377\243\247"
720 + "\204\377\243\246\203\377\242\245\202\377\241\245\202\377\241\244\201"
721 + "\377\240\243\200\377\237\243\177\377\236\242~\377\236\241~\377\235\240"
722 + "}\377\234\240|\377\233\237{\377\233\236z\377\232\236z\377\231\235y\377"
723 + "\231\234x\377\230\234w\377\227\233v\377\226\232v\377\226\232u\377\225"
724 + "\231t\377\224\230s\377\210\224\227s\377\7\266\276\312\377DRj\377\0\0"
725 + "\0\377\0\0\0A\0\0\0\37\0\0\0\11\0\0\0\1\213\0\0\0\0\3\0\0\0\1\0\0\0\12"
726 + "\0\0\0\377\202Ug\204\377\11v\204\234\377\213\215r\377\217\220u\377\227"
727 + "\232|\377\226\231{\377\226\230{\377\226\230z\377\225\227y\377\224\226"
728 + "x\377\202\223\226x\377\32\222\225w\377\221\224v\377\221\224u\377\220"
729 + "\223t\377\220\222t\377\217\222s\377\217\221r\377\216\220q\377\215\220"
730 + "p\377\214\220p\377\214\217p\377\213\216o\377\212\216n\377\212\215m\377"
731 + "\211\214m\377\210\214l\377\207\213k\377\207\212j\377\207\212i\377\206"
732 + "\211i\377\205\210i\377\205\210h\377\204\207g\377\203\207f\377\203\206"
733 + "f\377\202\206e\377\210\202\205e\377\10\245\257\276\377Ug\204\377DRj\377"
734 + "\0\0\0\377\0\0\0G\0\0\0#\0\0\0\12\0\0\0\1\213\0\0\0\0\3\0\0\0\1\0\0\0"
735 + "\12\0\0\0\377\2036AU\377\1KUd\377\252\0\0\0\377\1\204\214\230\377\202"
736 + "6AU\377\6+4D\377\0\0\0\377\0\0\0F\0\0\0#\0\0\0\12\0\0\0\1\213\0\0\0\0"
737 + "\3\0\0\0\1\0\0\0\10\0\0\0\211\204\0\0\0\377\4\0\0\0\253\0\0\0V\0\0\0"
738 + "O\0\0\0K\244\0\0\0I\2\0\0\0K\0\0\0\243\204\0\0\0\377\5\0\0\0\247\0\0"
739 + "\0=\0\0\0\36\0\0\0\10\0\0\0\1\214\0\0\0\0\12\0\0\0\5\0\0\0\23\0\0\0*"
740 + "\0\0\0=\0\0\0F\0\0\0G\0\0\0A\0\0\0""6\0\0\0,\0\0\0&\244\0\0\0%\13\0\0"
741 + "\0&\0\0\0,\0\0\0""6\0\0\0A\0\0\0G\0\0\0F\0\0\0=\0\0\0*\0\0\0\24\0\0\0"
742 + "\5\0\0\0\1\214\0\0\0\0\4\0\0\0\2\0\0\0\11\0\0\0\23\0\0\0\36\202\0\0\0"
743 + "#\4\0\0\0\37\0\0\0\27\0\0\0\20\0\0\0\14\244\0\0\0\13\4\0\0\0\14\0\0\0"
744 + "\20\0\0\0\27\0\0\0\37\202\0\0\0#\4\0\0\0\36\0\0\0\24\0\0\0\11\0\0\0\2"
745 + "\216\0\0\0\0\3\0\0\0\2\0\0\0\5\0\0\0\10\202\0\0\0\12\3\0\0\0\11\0\0\0"
746 + "\6\0\0\0\3\246\0\0\0\2\3\0\0\0\3\0\0\0\6\0\0\0\11\202\0\0\0\12\3\0\0"
747 + "\0\10\0\0\0\6\0\0\0\2\221\0\0\0\0\205\0\0\0\1\251\0\0\0\0\205\0\0\0\1"
748 + "\315\0\0\0\0"};
751 +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */
753 +static const guint8 stock_home_48[] =
754 +{ ""
755 + /* Pixbuf magic (0x47646b50) */
756 + "GdkP"
757 + /* length: header (24) + pixel_data (6699) */
758 + "\0\0\32C"
759 + /* pixdata_type (0x2010002) */
760 + "\2\1\0\2"
761 + /* rowstride (280) */
762 + "\0\0\1\30"
763 + /* width (70) */
764 + "\0\0\0F"
765 + /* height (45) */
766 + "\0\0\0-"
767 + /* pixel_data: */
768 + "\217\0\0\0\0\17\27\30\24A\40!\35|&&#\377$%!\377\"#\37\377!\"\36\377\37"
769 + "\40\34\377\35\36\32\377\34\35\32\377\33\34\30\377\31\32\26\377\30\31"
770 + "\25\377\27\30\24\374\27\30\24\255\27\30\24$\267\0\0\0\0\2\27\30\24\341"
771 + "\330\331\323\377\212\365\365\360\377\3\361\362\354\377{|u\377\27\30\24"
772 + "\227\267\0\0\0\0\3\27\30\24\345\353\353\345\377\361\362\353\377\211\345"
773 + "\346\330\377\4\356\357\346\377\347\347\341\377\32\33\27\352\27\30\24"
774 + "\4\266\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354\342\377\212\336"
775 + "\337\316\377\3\354\355\343\377qql\377\27\30\24N\266\0\0\0\0\3\27\30\24"
776 + "\345\353\353\345\377\354\354\342\377\212\336\337\316\377\3\340\341\321"
777 + "\377\324\325\317\377/0+\377\230\27\30\24\377\2\27\30\24\376\27\30\24"
778 + "k\234\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354\342\377\213\336"
779 + "\337\316\377\2\346\347\332\377\364\364\357\377\227\365\365\360\377\4"
780 + "\364\364\357\377\325\326\310\377\40!\34\377\27\30\24\25\233\0\0\0\0\3"
781 + "\27\30\24\345\353\353\345\377\354\354\342\377\214\336\337\316\377\1\343"
782 + "\344\325\377\227\347\350\333\377\4\343\344\325\377\336\337\316\377+,"
783 + "'\377\27\30\24\32\233\0\0\0\0\3\27\30\24\345\353\353\345\377\354\354"
784 + "\342\377\246\336\337\316\377\2+,'\377\27\30\24\32\233\0\0\0\0\6\27\30"
785 + "\24\345\353\353\345\377\354\354\342\377\335\336\315\377\331\332\312\377"
786 + "\324\325\305\377\212\323\324\305\377\212\323\324\304\377\1\322\323\303"
787 + "\377\212\321\322\302\377\2\322\323\303\377\331\332\312\377\202\336\337"
788 + "\316\377\2+,'\377\27\30\24\32\233\0\0\0\0\13\27\30\24\345\353\353\345"
789 + "\377\354\354\342\377\333\334\313\377\310\311\272\377\233\234\220\377"
790 + "\213\214\206\377\214\214\210\377\215\215\210\377\215\216\210\377\216"
791 + "\216\211\377\202\216\216\212\377\11\216\216\213\377\216\217\213\377\217"
792 + "\220\213\377\220\220\214\377\220\221\214\377\221\221\214\377\221\221"
793 + "\215\377\221\222\216\377\222\222\216\377\202\223\223\217\377\202\224"
794 + "\224\220\377\2\224\224\221\377\224\225\221\377\202\224\224\221\377\1"
795 + "\224\224\220\377\202\223\224\220\377\202\223\223\220\377\10\222\222\217"
796 + "\377\221\221\216\377\202\202z\377\303\304\265\377\335\336\315\377\336"
797 + "\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353\345"
798 + "\377\354\354\342\377\332\333\312\377\266\267\251\377\234\234\231\377"
799 + "\225\377\377\377\377\20\375\375\375\377\373\373\373\377\371\371\371\377"
800 + "\367\367\367\377\366\366\366\377\364\364\364\377\362\362\362\377\360"
801 + "\360\360\377\356\356\356\377\354\354\354\377\307\307\307\377\233\234"
802 + "\221\377\333\334\313\377\336\337\316\377+,'\377\27\30\24\32\233\0\0\0"
803 + "\0\6\27\30\24\345\353\353\345\377\354\354\342\377\332\333\312\377\260"
804 + "\261\244\377\273\273\272\377\224\377\377\377\377\21\376\376\376\377\374"
805 + "\374\374\377\372\372\372\377\370\370\370\377\366\366\366\377\364\364"
806 + "\364\377\363\363\363\377\361\361\361\377\357\357\357\377\355\355\355"
807 + "\377\353\353\353\377\343\343\343\377\210\210\177\377\333\334\313\377"
808 + "\336\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353"
809 + "\345\377\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272"
810 + "\377\223\377\377\377\377\22\376\376\376\377\374\374\374\377\372\372\372"
811 + "\377\370\370\370\377\366\366\366\377\364\364\364\377\363\363\363\377"
812 + "\361\361\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351"
813 + "\351\351\377\341\341\341\377\210\210\177\377\333\334\313\377\336\337"
814 + "\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353\345\377"
815 + "\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272\377\222"
816 + "\377\377\377\377\23\376\376\376\377\374\374\374\377\372\372\372\377\370"
817 + "\370\370\377\367\367\367\377\365\365\365\377\363\363\363\377\361\361"
818 + "\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351\351\351"
819 + "\377\350\350\350\377\340\340\340\377\210\210\177\377\333\334\313\377"
820 + "\336\337\316\377+,'\377\27\30\24\32\233\0\0\0\0\6\27\30\24\345\353\353"
821 + "\345\377\354\354\342\377\332\333\312\377\260\261\244\377\273\273\272"
822 + "\377\221\377\377\377\377\24\376\376\376\377\374\374\374\377\372\372\372"
823 + "\377\370\370\370\377\367\367\367\377\365\365\365\377\363\363\363\377"
824 + "\361\361\361\377\357\357\357\377\355\355\355\377\353\353\353\377\351"
825 + "\351\351\377\350\350\350\377\346\346\346\377\336\336\336\377\210\210"
826 + "\177\377\333\334\313\377\336\337\316\377+,'\377\27\30\24\32\233\0\0\0"
827 + "\0\6\27\30\24\345\353\353\345\377\354\354\342\377\332\333\312\377\260"
828 + "\261\244\377\273\273\272\377\221\377\377\377\377\24\375\375\375\377\373"
829 + "\373\373\377\371\371\371\377\367\367\367\377\365\365\365\377\363\363"
830 + "\363\377\362\362\362\377\360\360\360\377\356\356\356\377\354\354\354"
831 + "\377\352\352\352\377\350\350\350\377\346\346\346\377\344\344\344\377"
832 + "\334\334\334\377\207\207~\377\332\333\312\377\334\335\314\377+,&\377"
833 + "\27\30\24\32\226\0\0\0\0\205\0\0\0\1\6\27\30\24\346\353\353\345\377\354"
834 + "\354\342\377\332\333\312\377\260\261\244\377\273\273\272\377\220\377"
835 + "\377\377\377\26\375\375\375\377\373\373\373\377\371\371\371\377\367\367"
836 + "\367\377\365\365\365\377\363\363\363\377\362\362\362\377\360\360\360"
837 + "\377\356\356\356\377\354\354\354\377\352\352\352\377\350\350\350\377"
838 + "\346\346\346\377\344\344\344\377\342\342\342\377\332\332\332\377\205"
839 + "\206~\377\330\331\311\377\333\334\313\377+,&\377\26\27\23\32\0\0\0\1"
840 + "\223\0\0\0\0\202\0\0\0\1\2\25\26\22\12\26\27\23\32\203\25\26\23\33\6"
841 + "\27\30\24\351\326\326\320\377\327\327\315\377\306\307\270\377\241\242"
842 + "\226\377\253\253\251\377\217\350\350\347\377\26\346\346\346\377\344\344"
843 + "\344\377\342\342\342\377\341\341\340\377\340\340\337\377\336\336\336"
844 + "\377\334\334\334\377\332\332\332\377\330\331\330\377\327\327\326\377"
845 + "\325\325\325\377\323\323\323\377\322\322\322\377\320\320\320\377\317"
846 + "\317\316\377\315\315\314\377\306\306\305\377zzs\377\304\305\266\377\306"
847 + "\307\270\377()$\377\26\27\23""2\203\26\27\23\32\1\0\0\0\1\217\0\0\0\0"
848 + "\202\0\0\0\1\2\25\26\22\30\27\30\24\324\227-.(\377\203-.'\377\204,.'"
849 + "\377\210,-'\377\204+-&\377\207+,&\377\3$&\40\377\27\30\24\371\26\27\23"
850 + "#\215\0\0\0\0\202\0\0\0\1\3\0\0\0\3\26\27\24h]_R\377\221\305\307\264"
851 + "\377\10\304\307\264\377\304\306\264\377\303\305\263\377\303\305\262\377"
852 + "\302\305\262\377\302\304\262\377\301\304\261\377\300\303\260\377\202"
853 + "\300\302\260\377\12\277\302\257\377\276\301\257\377\276\300\256\377\275"
854 + "\300\256\377\275\277\256\377\275\277\255\377\274\276\255\377\273\276"
855 + "\254\377\273\275\254\377\272\275\253\377\202\271\274\253\377\16\271\273"
856 + "\252\377\270\273\251\377\267\272\251\377\267\271\251\377\266\271\250"
857 + "\377\266\271\247\377\265\270\247\377\265\267\247\377\264\267\246\377"
858 + "\263\266\246\377\217\223|\377()\"\377\27\27\24F\0\0\0\1\213\0\0\0\0\202"
859 + "\0\0\0\1\4\0\0\0\3\0\0\0\4\25\26\22""4DF;\377\217\305\307\264\377\10"
860 + "\304\307\264\377\304\306\264\377\303\305\263\377\303\305\262\377\302"
861 + "\305\262\377\302\304\262\377\301\304\261\377\300\303\260\377\202\300"
862 + "\302\260\377\5\277\302\257\377\276\301\257\377\276\300\256\377\275\300"
863 + "\256\377\275\277\256\377\202\274\276\255\377\12\273\276\255\377\272\275"
864 + "\253\377\272\274\253\377\270\273\252\377\267\272\251\377\267\272\250"
865 + "\377\266\271\247\377\266\270\247\377\264\267\246\377\263\266\245\377"
866 + "\202\262\265\244\377\12\261\264\242\377\260\263\242\377\257\262\241\377"
867 + "\255\260\236\377\223\227\201\377\201\205n\376\31\33\27\377\24\25\22\35"
868 + "\0\0\0\2\0\0\0\1\212\0\0\0\0\12\0\0\0\1\0\0\0\3\0\0\0\4\0\0\0\7\7\7\6"
869 + "\15\37!\33\366\301\303\257\377\305\307\264\377\304\307\263\377\255\260"
870 + "\225\377\202\252\256\222\377\202\252\255\221\377\1\251\255\221\377\202"
871 + "\251\255\220\377\202\251\254\220\377*\247\253\217\377\246\252\216\377"
872 + "\245\251\215\377\245\251\214\377\244\250\213\377\242\246\212\377\241"
873 + "\245\211\377\240\244\207\377\237\243\207\377\235\241\206\377\235\241"
874 + "\204\377\234\240\204\377\233\237\203\377\232\236\202\377\230\234\201"
875 + "\377\227\233\200\377\227\233\177\377\225\231~\377\224\230~\377\223\227"
876 + "|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223x\377"
877 + "\216\222x\377\215\221w\377\214\220v\377\213\217v\377\212\216u\377\212"
878 + "\216t\377\211\215t\377\210\214s\377\207\213r\377\206\212q\377\205\211"
879 + "q\377ejY\377\27\30\24\346\0\0\0\6\0\0\0\4\0\0\0\2\0\0\0\1\210\0\0\0\0"
880 + "\12\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\11\0\0\0\14\27\27\24\306\251"
881 + "\253\230\377\305\307\264\377\303\305\261\377\207\244\250\212\377,\243"
882 + "\247\211\377\242\246\210\377\241\245\210\377\241\245\207\377\240\244"
883 + "\206\377\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204"
884 + "\377\234\240\203\377\233\237\202\377\232\236\202\377\231\235\201\377"
885 + "\230\234\200\377\227\233\200\377\227\233\177\377\226\232~\377\225\231"
886 + "~\377\224\230}\377\223\227|\377\222\226|\377\222\226{\377\221\225z\377"
887 + "\220\224z\377\217\223y\377\216\222x\377\216\222w\377\215\221w\377\214"
888 + "\220v\377\213\217u\377\212\216u\377\211\215t\377\211\215s\377\210\214"
889 + "s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377"
890 + "MSH\377\27\30\24\266\0\0\0\11\0\0\0\6\0\0\0\4\202\0\0\0\1\206\0\0\0\0"
891 + "\202\0\0\0\1\11\0\0\0\4\0\0\0\6\0\0\0\11\0\0\0\15\0\0\0\21\26\27\23\223"
892 + "\207\211x\377\305\307\264\377\304\307\264\377\205\244\250\212\377\10"
893 + "\243\247\211\377\242\246\210\377\241\245\210\377\241\245\207\377\240"
894 + "\244\206\377\237\243\206\377\236\242\205\377\235\241\204\377\202\234"
895 + "\240\203\377\4\233\237\202\377\232\236\201\377\231\235\201\377\230\234"
896 + "\200\377\202\227\233\177\377\17\226\232~\377\225\231}\377\224\230|\377"
897 + "\223\227|\377\222\226{\377\222\226z\377\221\225z\377\220\224y\377\217"
898 + "\223x\377\216\222x\377\216\222w\377\215\221v\377\214\220v\377\213\217"
899 + "u\377\212\216t\377\202\211\215s\377\4\210\214r\377\207\213q\377\206\212"
900 + "q\377\205\211p\377\202\204\210o\377\11\203\207n\377\200\205l\3778\77"
901 + "7\377\26\26\23\210\0\0\0\16\0\0\0\11\0\0\0\5\0\0\0\3\0\0\0\1\206\0\0"
902 + "\0\0\11\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\14\0\0\0\21\0\0\0\25\23"
903 + "\24\20f`cU\377\202\305\307\264\377\1\246\252\215\377\202\244\250\212"
904 + "\3773\243\247\211\377\242\246\211\377\241\245\210\377\241\245\207\377"
905 + "\240\244\206\377\237\243\206\377\236\242\205\377\235\241\204\377\234"
906 + "\240\204\377\233\237\203\377\233\237\202\377\232\236\202\377\231\235"
907 + "\201\377\232\236\202\377\234\240\205\377\232\236\204\377\226\232~\377"
908 + "\225\231}\377\224\230}\377\223\227|\377\222\226{\377\221\225{\377\220"
909 + "\224z\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220"
910 + "v\377\213\217v\377\212\216u\377\212\216t\377\211\215t\377\210\214s\377"
911 + "\207\213r\377\206\212q\377\205\211q\377\205\211p\377\204\210o\377\203"
912 + "\207o\377\202\206n\377\201\205m\377\200\204m\377ryf\377(,(\377\23\24"
913 + "\20]\0\0\0\22\0\0\0\15\0\0\0\11\0\0\0\4\0\0\0\2\0\0\0\1\205\0\0\0\0A"
914 + "\0\0\0\1\0\0\0\4\0\0\0\6\0\0\0\12\0\0\0\21\0\0\0\25\0\0\0\33\14\15\13"
915 + "868/\377\304\307\264\377\305\307\264\377\251\254\220\377\243\247\211"
916 + "\377\242\246\211\377\241\245\210\377\241\245\207\377\240\244\206\377"
917 + "\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377\233"
918 + "\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230\234"
919 + "\200\377\227\233\177\377\247\253\224\377\311\313\275\377\301\303\263"
920 + "\377\224\230}\377\223\227|\377\222\226|\377\244\247\222\377\223\227}"
921 + "\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220v\377"
922 + "\213\217v\377\212\216u\377\212\216t\377\211\215t\377\210\214s\377\207"
923 + "\213r\377\206\212q\377\205\211q\377\205\211p\377\204\210o\377\203\207"
924 + "o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177\203k\377"
925 + "aj]\376\31\33\27\377\14\14\12""3\0\0\0\32\0\0\0\22\0\0\0\13\0\0\0\7\0"
926 + "\0\0\4\0\0\0\1\204\0\0\0\0\202\0\0\0\1A\0\0\0\4\0\0\0\10\0\0\0\15\0\0"
927 + "\0\22\0\0\0\33\0\0\0\40\0\0\0(\32\32\26\352\274\276\251\377\304\307\264"
928 + "\377\251\255\222\377\241\245\210\377\241\245\207\377\240\244\206\377"
929 + "\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377\233"
930 + "\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230\234"
931 + "\200\377\227\233\177\377\226\232\177\377\226\232~\377\241\245\214\377"
932 + "\310\312\274\377\305\307\270\377\230\234\202\377\254\257\234\377\300"
933 + "\303\264\377\306\310\272\377\305\307\271\377\262\265\243\377\232\235"
934 + "\206\377\214\220v\377\213\217v\377\212\216u\377\212\216t\377\211\215"
935 + "t\377\210\214s\377\207\213r\377\206\212q\377\205\211q\377\205\211p\377"
936 + "\204\210o\377\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177"
937 + "\203l\377\177\203k\377~\202j\377{\200i\377LWO\377\27\30\24\352\0\0\0"
938 + "(\0\0\0\37\0\0\0\31\0\0\0\17\0\0\0\11\0\0\0\4\0\0\0\2\0\0\0\1\203\0\0"
939 + "\0\0\37\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\17\0\0\0\25\0\0\0\34\0"
940 + "\0\0(\0\0\0/\25\26\22\301\234\237\215\377\303\305\262\377\251\255\222"
941 + "\377\237\243\206\377\236\242\205\377\235\241\204\377\234\240\204\377"
942 + "\234\240\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230"
943 + "\234\200\377\227\233\200\377\227\233\177\377\226\232~\377\225\231~\377"
944 + "\224\230}\377\223\227|\377\232\236\206\377\307\311\273\377\306\311\273"
945 + "\377\202\305\310\272\377\2\305\307\272\377\305\307\271\377\202\304\306"
946 + "\271\377\21\303\305\270\377\267\271\252\377\235\241\214\377\212\216u"
947 + "\377\210\214s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377"
948 + "\204\210o\377\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177"
949 + "\203l\377\177\203k\377~\202k\377\202|\200i\377\13ovd\377BKD\377\25\26"
950 + "\22\304\0\0\0""1\0\0\0(\0\0\0\34\0\0\0\24\0\0\0\12\0\0\0\6\0\0\0\3\0"
951 + "\0\0\1\203\0\0\0\0\16\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\11\0\0\0\21\0\0\0"
952 + "\30\0\0\0\37\0\0\0,\0\0\0:\22\23\20\232y{l\377\302\304\262\377\252\255"
953 + "\224\377\235\241\204\377\202\234\240\203\377\4\233\237\202\377\232\236"
954 + "\201\377\231\235\201\377\230\234\200\377\202\227\233\177\377\13\226\232"
955 + "~\377\225\231}\377\224\230|\377\223\227|\377\225\231\177\377\253\256"
956 + "\231\377\301\303\264\377\306\310\272\377\305\310\272\377\305\307\272"
957 + "\377\305\307\271\377\202\304\306\271\377\202\303\305\270\377\203\302"
958 + "\304\267\377\3\274\276\257\377\243\246\223\377\212\216v\377\202\204\210"
959 + "o\377\7\203\207n\377\202\206m\377\201\205l\377\200\204l\377\177\203k"
960 + "\377\177\203j\377~\202j\377\204|\200i\377\13bl^\3776>7\377\22\23\20\242"
961 + "\0\0\0;\0\0\0""0\0\0\0\40\0\0\0\30\0\0\0\14\0\0\0\7\0\0\0\3\0\0\0\1\203"
962 + "\0\0\0\0\36\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\12\0\0\0\21\0\0\0\30\0\0\0"
963 + "!\0\0\0""1\0\0\0\77\14\15\13{PRG\377\300\303\260\377\252\256\226\377"
964 + "\233\237\203\377\233\237\202\377\232\236\202\377\231\235\201\377\230"
965 + "\234\200\377\227\233\177\377\226\232\177\377\226\232~\377\225\231}\377"
966 + "\224\230}\377\223\227|\377\231\235\204\377\260\263\240\377\304\306\270"
967 + "\377\306\310\272\377\305\310\272\377\305\307\272\377\202\304\306\271"
968 + "\377\1\303\305\271\377\202\303\305\270\377\4\302\304\270\377\302\304"
969 + "\267\377\301\303\267\377\301\303\266\377\202\300\302\266\377\11\276\300"
970 + "\263\377\270\272\254\377\241\244\222\377\207\213t\377\200\204m\377\177"
971 + "\203l\377\177\203k\377~\202j\377}\201j\377\205|\200i\377\14z\177h\377"
972 + "WcZ\377','\377\15\16\14\204\0\0\0K\0\0\0""6\0\0\0#\0\0\0\31\0\0\0\16"
973 + "\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\33\0\0\0\2\0\0\0\5\0\0\0\12\0\0"
974 + "\0\21\0\0\0\31\0\0\0$\0\0\0""1\0\0\0F\3\3\3^()#\376\276\300\256\377\254"
975 + "\257\227\377\232\236\202\377\231\235\201\377\230\234\200\377\227\233"
976 + "\177\377\226\232\177\377\226\232~\377\225\231}\377\224\230}\377\223\227"
977 + "|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223x\377"
978 + "\274\276\257\377\202\304\306\271\377\1\303\305\271\377\202\303\305\270"
979 + "\377\4\302\304\270\377\302\304\267\377\301\303\267\377\301\303\266\377"
980 + "\202\300\302\266\377\11\300\302\265\377\277\301\265\377\256\261\241\377"
981 + "\201\205m\377\200\204m\377\177\203l\377\177\203k\377~\202j\377}\201j"
982 + "\377\207|\200i\377\14ovd\377S`X\377\31\33\27\377\5\5\4s\0\0\0R\0\0\0"
983 + ">\0\0\0'\0\0\0\33\0\0\0\17\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\34\0"
984 + "\0\0\1\0\0\0\4\0\0\0\11\0\0\0\21\0\0\0\30\0\0\0$\0\0\0""3\0\0\0E\0\0"
985 + "\0_\25\26\22\345\255\257\235\377\255\260\232\377\230\234\200\377\227"
986 + "\233\177\377\226\232\177\377\226\232~\377\225\231}\377\224\230}\377\223"
987 + "\227|\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217\223"
988 + "x\377\216\222x\377\215\221w\377\263\265\244\377\303\305\271\377\202\303"
989 + "\305\270\377\4\302\304\270\377\302\304\267\377\301\303\267\377\301\303"
990 + "\266\377\202\300\302\266\377\1\300\302\265\377\202\277\301\265\377\6"
991 + "\276\300\264\377\245\250\230\377\177\203l\377\177\203k\377~\202j\377"
992 + "}\201j\377\211|\200i\377\13bl^\377JVO\377\26\27\23\360\0\0\0d\0\0\0\\"
993 + "\0\0\0A\0\0\0)\0\0\0\33\0\0\0\17\0\0\0\10\0\0\0\3\205\0\0\0\0!\0\0\0"
994 + "\1\0\0\0\3\0\0\0\10\0\0\0\20\0\0\0\27\0\0\0\"\0\0\0""2\0\0\0D\0\0\0\\"
995 + "\22\23\20\304\214\216~\377\256\261\233\377\226\232\177\377\225\231~\377"
996 + "\225\231}\377\224\230}\377\223\227|\377\222\226{\377\221\225{\377\220"
997 + "\224z\377\220\224y\377\217\223x\377\216\222x\377\215\221w\377\214\220"
998 + "v\377\213\217v\377\252\255\232\377\303\305\270\377\302\304\270\377\220"
999 + "\224|\377\207\213r\377\206\212r\377\220\224~\377\202\300\302\266\377"
1000 + "\202\277\301\265\377\202\276\300\264\377\3\276\300\263\377\235\240\216"
1001 + "\377~\202k\377\213|\200i\377\14z\177h\377WcZ\377BKD\377\23\24\21\327"
1002 + "\0\0\0i\0\0\0Z\0\0\0A\0\0\0*\0\0\0\33\0\0\0\16\0\0\0\7\0\0\0\2\206\0"
1003 + "\0\0\0\21\0\0\0\2\0\0\0\6\0\0\0\16\0\0\0\25\0\0\0\37\0\0\0/\0\0\0A\0"
1004 + "\0\0Z\16\17\14\246ik]\377\257\262\235\377\224\230}\377\224\230|\377\223"
1005 + "\227{\377\222\226z\377\221\225z\377\220\224y\377\202\217\223x\377\17"
1006 + "\216\222w\377\215\221v\377\214\220v\377\213\217u\377\212\216t\377\212"
1007 + "\216s\377\241\244\220\377\302\304\267\377\301\303\266\377\224\227\201"
1008 + "\377\205\211p\377\205\211o\377\216\221z\377\277\301\265\377\277\301\264"
1009 + "\377\203\276\300\263\377\202\275\277\262\377\1\223\226\203\377\214|\200"
1010 + "i\377\14nuc\377VbY\3776>7\377\20\20\15\275\0\0\0r\0\0\0V\0\0\0\77\0\0"
1011 + "\0&\0\0\0\32\0\0\0\15\0\0\0\6\0\0\0\1\206\0\0\0\0\32\0\0\0\1\0\0\0\5"
1012 + "\0\0\0\13\0\0\0\23\0\0\0\36\0\0\0,\0\0\0=\0\0\0U\10\10\7\207AB9\377\260"
1013 + "\263\237\377\222\226{\377\221\225{\377\220\224z\377\220\224y\377\217"
1014 + "\223y\377\216\222x\377\215\221w\377\214\220v\377\213\217v\377\213\217"
1015 + "u\377\212\216t\377\211\215t\377\210\214s\377\207\213r\377\227\233\205"
1016 + "\377\202\300\302\266\377\5\227\232\205\377\203\207o\377\202\206n\377"
1017 + "\211\215w\377\276\300\264\377\202\275\277\263\377\1\275\277\262\377\203"
1018 + "\274\276\262\377\1\213\217{\377\214|\200i\377\14bk^\377VbY\377','\377"
1019 + "\13\13\11\243\0\0\0s\0\0\0S\0\0\0:\0\0\0$\0\0\0\30\0\0\0\13\0\0\0\3\0"
1020 + "\0\0\1\206\0\0\0\0\"\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\20\0\0\0\32\0\0\0"
1021 + "(\0\0\0""9\0\0\0N\1\1\1j\35\36\32\371\255\260\234\377\220\224z\377\217"
1022 + "\223y\377\217\223x\377\216\222x\377\215\221w\377\214\220v\377\213\217"
1023 + "u\377\212\216u\377\212\216t\377\211\215s\377\210\214s\377\207\213r\377"
1024 + "\206\212q\377\205\211q\377\215\220z\377\300\302\265\377\277\301\265\377"
1025 + "\233\236\212\377\201\205m\377\200\204l\377\207\212u\377\275\277\263\377"
1026 + "\275\277\262\377\205\274\276\262\377\1\204\207r\377\213|\200i\377\14"
1027 + "z~h\377WcZ\377S`X\377\31\34\30\377\4\4\4\210\0\0\0p\0\0\0O\0\0\0""5\0"
1028 + "\0\0\"\0\0\0\25\0\0\0\10\0\0\0\2\210\0\0\0\0\12\0\0\0\2\0\0\0\6\0\0\0"
1029 + "\16\0\0\0\27\0\0\0#\0\0\0""5\0\0\0H\0\0\0`\24\25\21\335\226\232\207\377"
1030 + "\202\216\222x\377\4\215\221w\377\214\220v\377\213\217v\377\212\216u\377"
1031 + "\202\211\215t\377\16\210\214s\377\207\213r\377\206\212q\377\205\211q"
1032 + "\377\204\210p\377\204\210o\377\203\207p\377\246\251\230\377\246\250\227"
1033 + "\377\221\225\201\377\177\203l\377\177\203k\377\201\205n\377\235\240\216"
1034 + "\377\206\234\237\215\377\1}\200j\377\213|\200i\377\14nuc\377VbY\377J"
1035 + "UN\377\26\27\23\362\0\0\0{\0\0\0e\0\0\0J\0\0\0""1\0\0\0\37\0\0\0\17\0"
1036 + "\0\0\7\0\0\0\2\210\0\0\0\0\35\0\0\0\1\0\0\0\4\0\0\0\13\0\0\0\22\0\0\0"
1037 + "\36\0\0\0-\0\0\0\77\0\0\0U\21\22\17\272y{m\377\215\221w\377\214\220v"
1038 + "\377\213\217v\377\212\216u\377\211\215t\377\211\215s\377\210\214s\377"
1039 + "\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377\203"
1040 + "\207o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177\203"
1041 + "k\377~\202k\377\225|\200i\377\14ak^\377VbY\377BKD\377\23\24\21\327\0"
1042 + "\0\0m\0\0\0Y\0\0\0B\0\0\0*\0\0\0\32\0\0\0\14\0\0\0\5\0\0\0\1\210\0\0"
1043 + "\0\0\22\0\0\0\1\0\0\0\3\0\0\0\7\0\0\0\20\0\0\0\30\0\0\0%\0\0\0""5\0\0"
1044 + "\0E\15\16\14\220Y[N\377\213\217v\377\212\216t\377\211\215s\377\210\214"
1045 + "s\377\210\214r\377\207\213q\377\206\212q\377\205\211p\377\202\204\210"
1046 + "o\377\7\203\207n\377\202\206m\377\201\205l\377\200\204l\377\177\203k"
1047 + "\377\177\203j\377~\202j\377\223|\200i\377\17z\177h\377x}g\377v{g\377"
1048 + "pvd\377VcZ\377VbY\3776>7\377\20\21\16\266\0\0\0]\0\0\0J\0\0\0""2\0\0"
1049 + "\0!\0\0\0\26\0\0\0\12\0\0\0\3\212\0\0\0\0\30\0\0\0\2\0\0\0\5\0\0\0\14"
1050 + "\0\0\0\22\0\0\0\35\0\0\0)\0\0\0""6\10\10\7Z13+\377\214\220x\377\210\214"
1051 + "s\377\207\213r\377\206\212q\377\205\211q\377\204\210p\377\204\210o\377"
1052 + "\203\207o\377\202\206n\377\201\205m\377\200\204m\377\177\203l\377\177"
1053 + "\203k\377~\202j\377}\201j\377\204|\200i\377\21z\177h\377x}g\377v{g\377"
1054 + "sye\377qxe\377ovd\377mtc\377krb\377hqa\377fo`\377dm_\377bk^\377_j]\377"
1055 + "]h\\\377[f\\\377Yd[\377VcZ\377\206VbY\377\11','\377\15\16\13\207\0\0"
1056 + "\0F\0\0\0""4\0\0\0%\0\0\0\32\0\0\0\16\0\0\0\7\0\0\0\2\212\0\0\0\0\34"
1057 + "\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\17\0\0\0\24\0\0\0\34\0\0\0&\0\0\0""1"
1058 + "\30\31\25\354hkX\377{\177h\377x|f\377uze\377rwc\377pvb\377lsa\377jq_"
1059 + "\377gn^\377el]\377bi[\377`hZ\377]eY\377ZdX\377XbW\377VaV\377T`V\377R"
1060 + "^U\377P]T\377\226P\\T\377\12MXQ\377\30\32\26\377\10\10\7M\0\0\0-\0\0"
1061 + "\0\"\0\0\0\32\0\0\0\21\0\0\0\12\0\0\0\3\0\0\0\1\213\0\0\0\0\11\0\0\0"
1062 + "\1\0\0\0\4\0\0\0\10\0\0\0\16\0\0\0\23\0\0\0\30\0\0\0\40\17\17\15N\26"
1063 + "\27\23\332\240\27\30\24\352\210\27\30\24\351\11\26\27\24\344\21\22\17"
1064 + "h\0\0\0!\0\0\0\36\0\0\0\30\0\0\0\20\0\0\0\11\0\0\0\5\0\0\0\1\215\0\0"
1065 + "\0\0\7\0\0\0\1\0\0\0\3\0\0\0\7\0\0\0\12\0\0\0\16\0\0\0\21\0\0\0\24\211"
1066 + "\0\0\0\25\234\0\0\0\24\202\0\0\0\23\205\0\0\0\22\5\0\0\0\16\0\0\0\14"
1067 + "\0\0\0\7\0\0\0\5\0\0\0\2\217\0\0\0\0\4\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0"
1068 + "\5\203\0\0\0\6\252\0\0\0\5\202\0\0\0\4\202\0\0\0\2\1\0\0\0\1\223\0\0"
1069 + "\0\0\216\0\0\0\1\254\0\0\0\0"};
1072 +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */
1074 +static const guint8 stock_documents_48[] =
1075 +{ ""
1076 + /* Pixbuf magic (0x47646b50) */
1077 + "GdkP"
1078 + /* length: header (24) + pixel_data (3237) */
1079 + "\0\0\14\275"
1080 + /* pixdata_type (0x2010002) */
1081 + "\2\1\0\2"
1082 + /* rowstride (192) */
1083 + "\0\0\0\300"
1084 + /* width (48) */
1085 + "\0\0\0""0"
1086 + /* height (48) */
1087 + "\0\0\0""0"
1088 + /* pixel_data: */
1089 + "\377\0\0\0\0\377\0\0\0\0\363\0\0\0\0\1XXX\2\240\0\0\0\0\1\0\0\0Y\213"
1090 + "\0\0\0\377\7\0\0\0\366\0\0\0\362\16\16\16\377(((\377aaa\333\0\0\0\10"
1091 + "\0\0\0\1\235\0\0\0\0\3\0\0\0\377\323\323\323\377\366\366\366\377\210"
1092 + "\377\377\377\377\1\371\371\371\377\202\371\371\370\377\6\347\347\347"
1093 + "\377\344\344\344\377\315\315\315\377\37\37\37\344\0\0\0\24\0\0\0\2\234"
1094 + "\0\0\0\0\2\0\0\0\377\366\366\366\377\212\377\377\377\377\11\371\371\370"
1095 + "\377\357\357\356\377\257\257\256\377\351\351\351\377\377\377\377\377"
1096 + "\263\263\263\377888\375\0\0\0\16\0\0\0\2\233\0\0\0\0\1\0\0\0\377\202"
1097 + "\377\377\377\377\205yyy\377\2xxx\377yyy\377\202xxx\377\12\371\371\370"
1098 + "\377\356\356\356\377\244\244\243\377\360\360\360\377\377\377\377\377"
1099 + "\364\364\364\377\253\253\253\377\5\5\5\231\0\0\0\13\0\0\0\1\232\0\0\0"
1100 + "\0\1\0\0\0\377\205\377\377\377\377\11\376\376\376\377\375\375\375\377"
1101 + "\374\374\373\377\375\375\375\377\374\374\373\377\373\373\373\377\371"
1102 + "\371\370\377\362\362\362\377\236\236\236\377\204\0\0\0\377\3\0\0\0\330"
1103 + "\0\0\0\33\0\0\0\5\225\0\0\0\0\1\0\0\0Y\205\0\0\0\377\202\377\377\377"
1104 + "\377\1yyy\377\202xxx\377\202www\377\16vvv\377www\377vvv\377vvu\377\371"
1105 + "\371\370\377\364\364\364\377\324\324\323\377\271\267\266\377\203\203"
1106 + "\201\377\204\203\201\377jgc\377\0\0\0\343\0\0\0&\0\0\0\7\225\0\0\0\0"
1107 + "\3\0\0\0\377\323\323\323\377\366\366\366\377\202\377\377\377\377\26\0"
1108 + "\0\0\377\377\377\377\377\376\376\376\377\375\375\375\377\374\374\373"
1109 + "\377\373\373\373\377\372\372\371\377\371\371\370\377\370\370\367\377"
1110 + "\371\371\370\377\370\370\367\377\370\367\366\377\371\371\370\377\363"
1111 + "\362\361\377\340\340\337\377\334\332\330\377\312\312\310\377\266\266"
1112 + "\264\377rpl\377\0\0\0\356\0\0\0)\0\0\0\10\225\0\0\0\0\2\0\0\0\377\366"
1113 + "\366\366\377\203\377\377\377\377\16\0\0\0\377\377\377\377\377\374\374"
1114 + "\373\377www\377vvv\377vvu\377uuu\377uut\377utt\377uut\377utt\377tts\377"
1115 + "\364\363\362\377\361\360\357\377\202\360\357\355\377\6\345\344\342\377"
1116 + "\304\303\300\377\201}t\377\0\0\0\377\0\0\0,\0\0\0\11\225\0\0\0\0\1\0"
1117 + "\0\0\377\202\377\377\377\377\202yyy\377\13\0\0\0\377\377\377\377\377"
1118 + "\372\372\371\377\371\371\370\377\370\370\367\377\370\367\366\377\367"
1119 + "\366\365\377\366\366\364\377\365\364\363\377\366\366\364\377\365\364"
1120 + "\363\377\204\364\363\362\377\1\353\352\350\377\202\341\337\334\377\4"
1121 + "\213\206}\377\0\0\0\377\0\0\0.\0\0\0\11\220\0\0\0\0\1\0\0\0Y\205\0\0"
1122 + "\0\377\204\377\377\377\377\7\0\0\0\377\377\377\377\377\370\370\367\377"
1123 + "uut\377utt\377tts\377tss\377\204ssr\377\2rrq\377qqp\377\202ppo\377\7"
1124 + "llk\377jih\377\341\337\334\377\244\236\223\377\0\0\0\377\0\0\0/\0\0\0"
1125 + "\11\220\0\0\0\0\3\0\0\0\377\323\323\323\377\366\366\366\377\202\377\377"
1126 + "\377\377\1\0\0\0\377\202\377\377\377\377\6yyy\377xxx\377\0\0\0\377\377"
1127 + "\377\377\377\366\365\364\377\365\365\363\377\202\364\363\362\377\20\363"
1128 + "\363\361\377\362\362\360\377\361\361\357\377\362\362\360\377\361\361"
1129 + "\357\377\361\360\356\377\356\355\353\377\354\353\351\377\347\346\343"
1130 + "\377\342\341\337\377\344\343\340\377\341\337\334\377\244\236\223\377"
1131 + "\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\2\0\0\0\377\366\366\366\377\203"
1132 + "\377\377\377\377\12\0\0\0\377\377\377\377\377\376\376\376\377\375\375"
1133 + "\375\377\374\374\373\377\0\0\0\377\377\377\377\377\364\363\362\377sr"
1134 + "r\377rrq\377\202qqp\377\17rqp\377qqp\377rqp\377qqp\377qpo\377oon\377"
1135 + "nml\377llj\377lkj\377kji\377\341\337\334\377\244\236\223\377\0\0\0\377"
1136 + "\0\0\0/\0\0\0\11\220\0\0\0\0\1\0\0\0\377\202\377\377\377\377\202yyy\377"
1137 + "\33\0\0\0\377\377\377\377\377\374\374\373\377www\377vvv\377\0\0\0\377"
1138 + "\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377\360"
1139 + "\360\356\377\357\357\355\377\361\360\356\377\360\357\355\377\361\360"
1140 + "\356\377\360\357\355\377\357\356\354\377\354\353\351\377\350\347\345"
1141 + "\377\345\344\341\377\344\343\340\377\342\341\336\377\341\337\334\377"
1142 + "\244\236\223\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\1\0\0\0\377\204"
1143 + "\377\377\377\377\10\0\0\0\377\377\377\377\377\372\372\371\377\371\371"
1144 + "\370\377\370\370\367\377\0\0\0\377\377\377\377\377\360\360\356\377\202"
1145 + "\230\250\265\377\4\230\250\264\377\230\247\264\377\227\247\263\377\355"
1146 + "\354\352\377\202poo\377\13oon\377nml\377mmk\377kki\377kjh\377jjh\377"
1147 + "\340\337\333\377\241\234\220\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0"
1148 + "\0\1\0\0\0\377\202\377\377\377\377\21yyy\377xxx\377\0\0\0\377\377\377"
1149 + "\377\377\370\370\367\377uut\377utt\377\0\0\0\377\377\377\377\377\355"
1150 + "\355\353\377\227\247\263\377\276\274\307\377\355\337\261\377\227\246"
1151 + "\263\377\226\246\262\377\351\350\345\377\353\352\350\377\202\351\350"
1152 + "\345\377\12\345\344\341\377\346\344\341\377\343\342\336\377\337\336\332"
1153 + "\377\336\335\331\377\335\334\330\377\241\233\220\377\0\0\0\377\0\0\0"
1154 + "/\0\0\0\11\220\0\0\0\0\17\0\0\0\377\377\377\377\377\376\376\376\377\375"
1155 + "\375\375\377\374\374\373\377\0\0\0\377\377\377\377\377\366\365\364\377"
1156 + "\365\365\363\377\364\363\362\377\0\0\0\377\377\377\377\377\353\352\350"
1157 + "\377\225\245\261\377\274\272\305\377\202\353\336\257\377\17\225\244\261"
1158 + "\377\347\346\343\377nml\377mmk\377mlk\377lki\377kki\377jig\377ihf\377"
1159 + "hhf\377\334\333\327\377\241\233\220\377\0\0\0\377\0\0\0/\0\0\0\11\220"
1160 + "\0\0\0\0\40\0\0\0\377\377\377\377\377\374\374\373\377www\377vvv\377\0"
1161 + "\0\0\377\377\377\377\377\364\363\362\377srr\377rrq\377\0\0\0\377\377"
1162 + "\377\377\377\347\346\343\377\224\243\260\377\273\271\304\377\352\335"
1163 + "\256\377\351\334\256\377\224\243\257\377\345\344\340\377\346\344\341"
1164 + "\377\345\344\340\377\344\343\337\377\342\341\335\377\340\337\333\377"
1165 + "\336\335\331\377\334\333\327\377\333\331\325\377\331\327\323\377\237"
1166 + "\231\215\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\16\0\0\0\377\377\377"
1167 + "\377\377\372\372\371\377\371\371\370\377\370\370\367\377\0\0\0\377\377"
1168 + "\377\377\377\364\363\362\377\363\362\361\377\362\362\360\377\0\0\0\377"
1169 + "\371\371\371\377\344\343\340\377\223\242\256\377\202\272\267\302\377"
1170 + "\5\272\270\302\377\222\241\255\377\343\342\336\377kjh\377kki\377\202"
1171 + "jjh\377\11ihf\377hgf\377hge\377ffd\377\330\326\322\377\236\230\215\377"
1172 + "\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\10\0\0\0\377\377\377\377\377\370"
1173 + "\370\367\377uut\377utt\377\0\0\0\377\377\377\377\377\360\360\356\377"
1174 + "\202qqp\377\26\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334"
1175 + "\377\341\340\334\377\340\337\333\377\342\341\335\377\340\337\333\377"
1176 + "\341\340\334\377\340\337\333\377\341\340\334\377\337\336\332\377\340"
1177 + "\336\332\377\335\333\327\377\334\332\326\377\331\327\323\377\330\326"
1178 + "\321\377\327\325\321\377\235\227\213\377\0\0\0\377\0\0\0/\0\0\0\11\220"
1179 + "\0\0\0\0\25\0\0\0\377\377\377\377\377\366\365\364\377\365\365\363\377"
1180 + "\364\363\362\377\0\0\0\377\377\377\377\377\355\355\353\377\355\354\352"
1181 + "\377\354\353\351\377\0\0\0\377\321\321\321\377\341\337\333\377\340\336"
1182 + "\332\377\337\336\332\377\336\335\331\377\340\337\333\377\336\335\331"
1183 + "\377\340\336\332\377\336\335\331\377\340\336\332\377\202\336\334\330"
1184 + "\377\202\334\332\326\377\7\330\326\322\377\327\326\321\377\325\323\316"
1185 + "\377\233\225\212\377\0\0\0\377\0\0\0/\0\0\0\11\220\0\0\0\0\10\0\0\0\377"
1186 + "\377\377\377\377\364\363\362\377srr\377rrq\377\0\0\0\377\377\377\377"
1187 + "\377\353\352\350\377\202nnm\377\15\0\0\0\377\231\230\221\377\243\236"
1188 + "\222\377\244\236\223\377\243\235\222\377\243\235\221\377\243\235\222"
1189 + "\377\241\234\220\377\242\234\220\377\241\234\220\377\242\234\220\377"
1190 + "\241\233\217\377\241\233\220\377\202\237\231\215\377\202\235\227\214"
1191 + "\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\220\0\0\0\0\10"
1192 + "\0\0\0\377\377\377\377\377\364\363\362\377\363\362\361\377\362\362\360"
1193 + "\377\0\0\0\377\377\377\377\377\347\346\343\377\202\346\345\342\377\1"
1194 + "\221\220\216\377\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\220\0\0\0\0\3"
1195 + "\0\0\0\377\377\377\377\377\360\360\356\377\202\357\357\355\377\3\0\0"
1196 + "\0\377\371\371\371\377\344\343\340\377\202kki\377\6jig\377ba_\377YXV"
1197 + "\377WWU\377WVT\377WWU\377\202VVT\377\11\265\264\261\377\264\262\257\377"
1198 + "\263\261\256\377\261\257\254\377\260\256\253\377\200{s\377\0\0\0\377"
1199 + "\0\0\0U\0\0\0""6\202\0\0\0/\3\0\0\0*\0\0\0\27\0\0\0\4\220\0\0\0\0\33"
1200 + "\0\0\0\377\377\377\377\377\355\355\353\377poo\377oon\377\0\0\0\377\355"
1201 + "\355\355\377\341\340\335\377\341\337\334\377\341\340\334\377\340\337"
1202 + "\333\377\336\335\331\377\330\330\324\377\331\330\324\377\330\327\323"
1203 + "\377\331\330\324\377\327\326\322\377\330\326\322\377\325\323\317\377"
1204 + "\324\322\316\377\321\317\313\377\320\316\311\377\317\315\311\377\227"
1205 + "\221\206\377\0\0\0\377\0\0\0""6\0\0\0\22\202\0\0\0\11\2\0\0\0\10\0\0"
1206 + "\0\4\221\0\0\0\0\3\0\0\0\377\377\377\377\377\353\352\350\377\202\351"
1207 + "\350\346\377\13\0\0\0\377\321\321\321\377\341\337\333\377\340\336\332"
1208 + "\377\337\336\332\377\336\335\331\377\340\337\333\377\336\335\331\377"
1209 + "\340\336\332\377\336\335\331\377\340\336\332\377\202\336\334\330\377"
1210 + "\202\334\332\326\377\7\330\326\322\377\327\326\321\377\325\323\316\377"
1211 + "\233\225\212\377\0\0\0\377\0\0\0/\0\0\0\11\225\0\0\0\0\3\0\0\0\377\377"
1212 + "\377\377\377\347\346\343\377\202mlk\377\15\0\0\0\377\231\230\221\377"
1213 + "\243\236\222\377\244\236\223\377\243\235\222\377\243\235\221\377\243"
1214 + "\235\222\377\241\234\220\377\242\234\220\377\241\234\220\377\242\234"
1215 + "\220\377\241\233\217\377\241\233\220\377\202\237\231\215\377\202\235"
1216 + "\227\214\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\225\0"
1217 + "\0\0\0\6\0\0\0\377\371\371\371\377\344\343\340\377\343\342\337\377\343"
1218 + "\342\336\377\217\216\214\377\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\225"
1219 + "\0\0\0\0\26\0\0\0\377\355\355\355\377\341\340\335\377\341\337\334\377"
1220 + "\341\340\334\377\334\333\327\377\315\314\311\377\273\272\266\377\267"
1221 + "\266\263\377\266\265\262\377\267\266\263\377\265\265\261\377\266\265"
1222 + "\261\377\264\262\257\377\263\261\256\377\261\257\254\377\260\256\252"
1223 + "\377\257\255\252\377\200{q\377\0\0\0\377\0\0\0U\0\0\0""6\202\0\0\0/\3"
1224 + "\0\0\0*\0\0\0\27\0\0\0\4\225\0\0\0\0\13\0\0\0\377\321\321\321\377\341"
1225 + "\337\333\377\340\336\332\377\337\336\332\377\336\335\331\377\334\333"
1226 + "\327\377\327\326\322\377\330\326\322\377\326\325\321\377\330\326\322"
1227 + "\377\202\326\324\320\377\202\324\322\316\377\7\320\316\312\377\317\316"
1228 + "\311\377\315\313\306\377\225\217\205\377\0\0\0\377\0\0\0""6\0\0\0\22"
1229 + "\202\0\0\0\11\2\0\0\0\10\0\0\0\4\226\0\0\0\0\15\0\0\0\377\231\230\221"
1230 + "\377\243\236\222\377\244\236\223\377\243\235\222\377\243\235\221\377"
1231 + "\243\235\222\377\241\234\220\377\242\234\220\377\241\234\220\377\242"
1232 + "\234\220\377\241\233\217\377\241\233\220\377\202\237\231\215\377\202"
1233 + "\235\227\214\377\5\233\226\212\377gcY\377\0\0\0\377\0\0\0.\0\0\0\11\232"
1234 + "\0\0\0\0\1\0\0\0^\222\0\0\0\377\3\0\0\0}\0\0\0*\0\0\0\10\232\0\0\0\0"
1235 + "\3\0\0\0\4\0\0\0\27\0\0\0*\220\0\0\0/\3\0\0\0*\0\0\0\27\0\0\0\4\233\0"
1236 + "\0\0\0\2\0\0\0\4\0\0\0\10\220\0\0\0\11\2\0\0\0\10\0\0\0\4\377\0\0\0\0"
1237 + "\377\0\0\0\0\345\0\0\0\0"};