Can search in notes and slices
[sfinx.git] / faraon / x11_ui.C
blob15d6019127e58110c0e1a94fe5c29b56fb5d1bed
1 // generated by Fast Light User Interface Designer (fluid) version 1,0108
3 #include <libintl.h>
4 #include "x11_ui.H"
5 #include <faraon.H>
6 #include <FL/fl_ask.H>
7 #include <FL/Fl_Preferences.H>
8 #include <Flek/Fl_Toggle_Tree.H>
9 #include "slice.xpm"
10 #include "note.xpm"
11 #include "file.xpm"
12 static Fl_Pixmap slice_pixmap(slice_xpm_data); 
13 static Fl_Pixmap note_pixmap(note_xpm_data); 
14 static Fl_Pixmap file_pixmap(file_xpm_data); 
15 Fl_Toggle_Tree *config_tree; 
16 Fl_Toggle_Tree *slices_tree; 
17 Fl_Toggle_Tree *select_slice_tree; 
18 Fl_Toggle_Tree *notes_tree; 
19 Fl_Toggle_Tree *files_tree; 
20 static Fl_Toggle_Tree *fill_tree; 
21 static Fl_Toggle_Tree *browse_tree; 
22 sfinx_slice_t *fill_tree_except; 
23 u32_t fill_tree_mask; 
24 static sfinx_file_t current_file(SFINX_FILES_MODULE_UNSORTED_TREE_REQUEST); 
26 static void fill_objects_tree(Fl_Toggle_Tree *ft, u32_t m, sfinx_slice_t *except, bool force) {
27   fill_tree = ft;
28 fill_tree_mask = m;
29 fill_tree_except = except;
30 app->refresh_slices(force);
33 static void relink_slice_action() {
34   sfinx_slice_t slice(SFINX_SLICE_RELINK);
35 // slice to be relinked
36 Fl_Toggle_Node *node = slices_tree->selected();
37 if (!node)
38         return;
39 Fl_Toggle_Node *snode = select_slice_tree->selected();
40 if (!snode)
41         return;
42 sfinx_slice_t *selected = (sfinx_slice_t *)snode->user_data();
43 sfinx_slice_t *rslice = (sfinx_slice_t *)node->user_data();
44 slice.id = rslice->id;
45 // new parent id
46 slice.parent_id = selected->id;
47 debug("moving from %lld to %lld", rslice->parent_id, selected->id);
48 app->sfinx.send(slice);
49 fill_objects_tree(slices_tree, SFINX_SLICE_OBJECT, 0, 1); // force refresh
52 static void select_note_atag_action() {
53   sfinx_object_t *obj;
54 Fl_Toggle_Node *node = select_slice_tree->selected();
55 if (!node)
56         return;
57 if (node->can_open()) // slice
58         obj = ((sfinx_slice_t *)node->user_data())->object();
59 else // object
60         obj = (sfinx_object_t *)node->user_data();
61 Fl_Toggle_Node *snode = notes_tree->selected();
62 sfinx_object_t *sobj = (sfinx_object_t *)snode->user_data();
63 if (sobj == obj) // try to self tag
64         return;
65 if (note_mtag_b->user_data() && !obj->cmp((sfinx_object_t *)note_mtag_b->user_data())) // already set as main tag
66         return;
67 for (int i = 1; i <= note_tags_br->size(); i++) {
68         if (!obj->cmp((sfinx_object_t *)note_tags_br->data(i))) // already set as additional tag
69                 return;
71 string s = obj->name + " [ " + obj->description + " ]";
72 note_tags_br->add(s.c_str(), obj);
73 note_tags_br->redraw();
76 static void select_note_mtag_action() {
77   sfinx_object_t *obj;
78 Fl_Toggle_Node *node = select_slice_tree->selected();
79 if (!node)
80         return;
81 if (node->can_open()) // slice
82         obj = ((sfinx_slice_t *)node->user_data())->object();
83 else // object
84         obj = (sfinx_object_t *)node->user_data();
85 Fl_Toggle_Node *snode = notes_tree->selected();
86 sfinx_object_t *sobj = (sfinx_object_t *)snode->user_data();
87 if (sobj == obj) // try to self tag
88         return;
89 note_mtag_b->user_data(obj);
90 note_mtag_b->copy_label((obj->name + " [ " + obj->description + " ]").c_str());
91 note_mtag_b->redraw();
92 // check for additional slices if it is here - remove it
93 for (int i = 1; i <= note_tags_br->size(); i++) {
94         if (!obj->cmp((sfinx_object_t *)note_tags_br->data(i))) {
95                 note_tags_br->remove(i);
96                 return;
97         }
101 static void select_file_mtag_action() {
102   sfinx_object_t *obj;
103 Fl_Toggle_Node *node = select_slice_tree->selected();
104 if (!node)
105         return;
106 if (node->can_open()) // slice
107         obj = ((sfinx_slice_t *)node->user_data())->object();
108 else // object
109         obj = (sfinx_object_t *)node->user_data();
110 file_mtag_b->user_data(obj);
111 file_mtag_b->copy_label((obj->name + " [ " + obj->description + " ]").c_str());
112 file_mtag_b->redraw();
113 // check for additional tags if it is here - remove it
114 for (int i = 1; i <= file_tags_br->size(); i++) {
115         if (!obj->cmp((sfinx_object_t *)file_tags_br->data(i))) {
116                 file_tags_br->remove(i);
117                 return;
118         }
122 static void select_file_atag_action() {
123   sfinx_object_t *obj;
124 Fl_Toggle_Node *node = select_slice_tree->selected();
125 if (!node)
126         return;
127 string s;
128 if (node->can_open()) { // slice
129         obj = ((sfinx_slice_t *)node->user_data())->object();
130         s = obj->name + " [ " + obj->description + " ]";
131 } else { // object
132         obj = (sfinx_object_t *)node->user_data();
133         s = obj->name + obj->description;
135 if (file_mtag_b->user_data() && !obj->cmp((sfinx_object_t *)file_mtag_b->user_data())) // already set as main tag
136         return;
137 for (int i = 1; i <= file_tags_br->size(); i++) {
138         if (!obj->cmp((sfinx_object_t *)file_tags_br->data(i))) // already set as additional tag
139                 return;
141 file_tags_br->add(s.c_str(), obj);
142 file_tags_br->redraw();
145 static void search_add_slice_action() {
146   for (int i = 1; i <= search_slices_br->size(); i++) {
147 //      if (search_slices_br->data(i) == to_voidp(current_slice_id))
148 //              return;
150 //sfinx_slice_t *slice = (sfinx_slice_t *)slices_tree->selected()->user_data();
151 //search_slices_br->add(slice->name(), to_voidp(current_slice_id));
152 search_slices_br->redraw();
155 static void slices_tree_cb(Fl_Widget *, void *) {
156   Fl_Toggle_Node *node = slices_tree->selected();
157 if (!node)
158         return;
159 if (!Fl::event_clicks())
160         return;
161 void (*select_slice_action)(void) = (void (*)())(slices_w->user_data());
162 if (select_slice_action) {
163         slices_w->hide();
164         slices_w->user_data(0);
165         select_slice_action();
169 static void notes_tree_cb(Fl_Widget *, void *) {
170   Fl_Toggle_Node *node = notes_tree->selected();
171 if (!node)
172         return;
173 //current_note_id = from_voidp(node->user_data());
174 //current_slice_name = node->label();
175 if (!Fl::event_clicks())
176         return;
177 void (*select_note_action)(void) = (void (*)())(notes_w->user_data());
178 if (select_note_action) {
179         notes_w->user_data(0);
180         select_note_action();
184 static void browse_tree_cb(Fl_Widget *, void *) {
185   Fl_Toggle_Node *node = browse_tree->selected();
186 if (!node)
187         return;
188 if (!Fl::event_clicks())
189         return;
190 void (*browse_action)(void) = (void (*)())(browse_w->user_data());
191 if (browse_action) {
192         browse_w->hide();
193         browse_w->user_data(0);
194         browse_action();
198 static void files_tree_cb(Fl_Widget *, void *) {
199   Fl_Toggle_Node *node = files_tree->selected();
200 if (!node)
201         return;
202 sfinx_object_t *obj;
203 string type;
204 if (node->can_open()) { // slice
205         obj = ((sfinx_slice_t *)node->user_data())->object();
206         type = "Slice";
207 } else { // file
208         obj = (sfinx_object_t *)node->user_data();
209         type = "File";
211 // set mtime/etime
212 char buf[256];
213 int eyear, emonth, eday, ehour, emin, esec, cyear, cmonth, cday, chour, cmin, csec;
214 obj->etime.GetDate(eyear, emonth, eday);
215 obj->etime.GetTime(ehour, emin, esec);
216 obj->ctime.GetDate(cyear, cmonth, cday);
217 obj->ctime.GetTime(chour, cmin, csec);
218 sprintf(buf, "Modified: %02d/%02d/%04d %02d:%02d:%02d | Last Status Changed: %02d/%02d/%04d %02d:%02d:%02d", cday, cmonth,
219         cyear, chour, cmin, csec, eday, emonth, eyear, ehour, emin, esec);
220 files_module_status_to->value((type + ": " + obj->name + " | " + buf).c_str());
221 if (!Fl::event_clicks())
222         return;
223 void (*select_file_action)(void) = (void (*)())(files_module_w->user_data());
224 if (select_file_action) {
225         files_module_w->user_data(0);
226         select_file_action();
230 static void select_slice_tree_cb(Fl_Widget *, void *) {
231   if (!Fl::event_clicks())
232         return;
233 select_slice_b->do_callback();
236 static void write_preferences() {
237   app->server_name = config_sfinx_server_name_i->value();
238 app->files_module_conf.clear();
239 app->files_module_conf.add(FILES_MODULE_UNSORTED_PATH,
240         config_files_module_unsorted_path_i->value());
241 app->files_module_conf.add(FILES_MODULE_SORTED_TREE_PATH,
242         config_files_module_sorted_path_i->value());
243 app->files_module_conf.add(FILES_MODULE_DESC_FILE_NAME,
244         config_files_module_desc_file_name_i->value());
245 app->files_module_conf.add(FILES_MODULE_DESC_FILE_ENABLE,
246         gen_desc_files_b->value());
247 app->write_preferences();
250 static void config_tree_cb(Fl_Widget *, void *) {
251   static Fl_Group *prev_group;
252 Fl_Toggle_Node *node = config_tree->selected();
253 if (node) {
254         Fl_Group *gr = *((Fl_Group **)(node->user_data()));
255         if (prev_group)
256                 prev_group->hide();
257         prev_group = gr;
258          gr->show();
259 //config_tree->unselect();
263 static void fill_config_tree() {
264   config_tree->add_next("Connection", 0, 0, (void *)&config_connection_gr);
265 config_tree->add_next("Files Module", 0, 0, (void *)&config_files_module_gr);
266 config_tree->add_next("Confirmation", 0, 0, (void *)&config_confirmation_gr);
267 config_tree->callback(config_tree_cb);
268 config_tree->edit_on_reselect(0);
271 Fl_Double_Window *main_w=(Fl_Double_Window *)0;
273 static void cb_main_w(Fl_Double_Window*, void*) {
274   if (fl_choice("Really quit ?", "No", "Yes", 0L))
275         F::shutdown(0);
278 static void cb_Preferences(Fl_Menu_*, void*) {
279   app->read_preferences();
280 config_sfinx_server_name_i->value(app->server_name.c_str());
281 preferences_w->show();
284 static void cb_Exit(Fl_Menu_*, void*) {
285   if (fl_choice("Really quit ?", "No", "Yes", 0L))
286         F::shutdown(0);
289 static void cb_AI(Fl_Menu_*, void*) {
290   if (!app->connected()) {
291  fl_message("Not connected to Sfinx Server !");
292  return;
296 static void cb_Slices(Fl_Menu_*, void*) {
297   if (!app->connected()) {
298  fl_message("Not connected to Sfinx Server !");
299  return;
301 fill_objects_tree(slices_tree, 1 << SFINX_SLICE_OBJECT, 0, 0); // fluid bugs if any default params exists !
302 slices_w->show();
305 static void cb_Knowledge(Fl_Menu_*, void*) {
306   if (!app->connected()) {
307  fl_message("Not connected to Sfinx Server !");
308  return;
312 static void cb_Tasks(Fl_Menu_*, void*) {
313   if (!app->connected()) {
314  fl_message("Not connected to Sfinx Server !");
315  return;
319 static void cb_Messages(Fl_Menu_*, void*) {
320   if (!app->connected()) {
321  fl_message("Not connected to Sfinx Server !");
322  return;
326 static void cb_Contacts(Fl_Menu_*, void*) {
327   if (!app->connected()) {
328  fl_message("Not connected to Sfinx Server !");
329  return;
333 static void cb_Events(Fl_Menu_*, void*) {
334   if (!app->connected()) {
335  fl_message("Not connected to Sfinx Server !");
336  return;
340 static void cb_Files(Fl_Menu_*, void*) {
341   if (!app->connected()) {
342  fl_message("Not connected to Sfinx Server !");
343  return;
345 if (current_file.tid() == SFINX_FILES_MODULE_UNSORTED_TREE_REQUEST) {
346         if (app->sfinx.send(current_file))
347                 return;
348 } else
349         fill_objects_tree(files_tree, (1 << SFINX_FILE_OBJECT), 0, 0);
350 files_module_w->show();
353 static void cb_Notes(Fl_Menu_*, void*) {
354   if (!app->connected()) {
355  fl_message("Not connected to Sfinx Server !");
356  return;
358 // ÒÉÓÕÅÍ ÄÅÒÅ×Ï ÚÁÍÅÔÏË
359 fill_objects_tree(notes_tree, 1 << SFINX_NOTE_OBJECT, 0, 0); // fluid bugs if any default params exists !
360 notes_w->show();
363 static void cb_search_mi(Fl_Menu_*, void*) {
364   if (!app->connected()) {
365  fl_message("Not connected to Sfinx Server !");
366  return;
368 search_i->take_focus();
369 search_w->show();
372 static void cb_Reader(Fl_Menu_*, void*) {
373   if (!app->connected()) {
374  fl_message("Not connected to Sfinx Server !");
375  return;
379 static void cb_AI1(Fl_Menu_*, void*) {
380   if (!app->connected()) {
381  fl_message("Not connected to Sfinx Server !");
382  return;
386 static void cb_Knowledge1(Fl_Menu_*, void*) {
387   if (!app->connected()) {
388  fl_message("Not connected to Sfinx Server !");
389  return;
393 static void cb_Indexing(Fl_Menu_*, void*) {
394   if (!app->connected()) {
395  fl_message("Not connected to Sfinx Server !");
396  return;
400 static void cb_Check(Fl_Menu_*, void*) {
401   if (!app->connected()) {
402  fl_message("Not connected to Sfinx Server !");
403  return;
407 static void cb_DB(Fl_Menu_*, void*) {
408   if (!app->connected()) {
409  fl_message("Not connected to Sfinx Server !");
410  return;
414 static void cb_Clear(Fl_Menu_*, void*) {
415   log_br->clear();
418 static void cb_About(Fl_Menu_*, void*) {
419   about_w->show();
422 Fl_Menu_Item menu_[] = {
423  {gettext("Connection"), 0,  0, 0, 64, FL_ENGRAVED_LABEL, 0, 14, 0},
424  {gettext("Connect to ..."), 0x80063,  0, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
425  {gettext("Connect to default server"), 0,  0, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
426  {gettext("Disconnect from Sfinx"), 0,  0, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
427  {gettext("Connection Info"), 0x80069,  0, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
428  {gettext("Sfinx Stat"), 0,  0, 0, 129, FL_ENGRAVED_LABEL, 0, 14, 0},
429  {gettext("Preferences"), 0x80070,  (Fl_Callback*)cb_Preferences, 0, 128, FL_ENGRAVED_LABEL, 0, 14, 0},
430  {gettext("Exit"), 0x80078,  (Fl_Callback*)cb_Exit, 0, 0, FL_ENGRAVED_LABEL, 0, 14, 0},
431  {0,0,0,0,0,0,0,0,0},
432  {gettext("Modules"), 0,  0, 0, 64, FL_ENGRAVED_LABEL, 0, 14, 0},
433  {gettext("AI Module"), 0x61,  (Fl_Callback*)cb_AI, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
434  {gettext("Slices"), 0x73,  (Fl_Callback*)cb_Slices, 0, 0, FL_ENGRAVED_LABEL, 0, 14, 0},
435  {gettext("Knowledge Module"), 0x6b,  (Fl_Callback*)cb_Knowledge, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
436  {gettext("Tasks"), 0x74,  (Fl_Callback*)cb_Tasks, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
437  {gettext("Messages"), 0x6d,  (Fl_Callback*)cb_Messages, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
438  {gettext("Contacts"), 0x63,  (Fl_Callback*)cb_Contacts, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
439  {gettext("Events"), 0x65,  (Fl_Callback*)cb_Events, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
440  {gettext("Files"), 0x66,  (Fl_Callback*)cb_Files, 0, 0, FL_ENGRAVED_LABEL, 0, 14, 0},
441  {gettext("Notes"), 0x6e,  (Fl_Callback*)cb_Notes, 0, 0, FL_ENGRAVED_LABEL, 0, 14, 0},
442  {0,0,0,0,0,0,0,0,0},
443  {gettext("Tools"), 0,  0, 0, 64, FL_ENGRAVED_LABEL, 0, 14, 0},
444  {gettext("Browser && Searcher"), 0x62,  (Fl_Callback*)cb_search_mi, 0, 0, FL_ENGRAVED_LABEL, 0, 14, 0},
445  {gettext("Reader"), 0x72,  (Fl_Callback*)cb_Reader, 0, 129, FL_ENGRAVED_LABEL, 0, 14, 0},
446  {gettext("AI Tracer"), 0x40061,  (Fl_Callback*)cb_AI1, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
447  {gettext("Knowledge Tracer"), 0x4006b,  (Fl_Callback*)cb_Knowledge1, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
448  {gettext("Indexing machine"), 0x40069,  (Fl_Callback*)cb_Indexing, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
449  {gettext("Check Sfinx DB"), 0x40064,  (Fl_Callback*)cb_Check, 0, 1, FL_ENGRAVED_LABEL, 0, 14, 0},
450  {gettext("DB Backups"), 0x40062,  (Fl_Callback*)cb_DB, 0, 129, FL_ENGRAVED_LABEL, 0, 14, 0},
451  {gettext("Clear log window"), 0x10063,  (Fl_Callback*)cb_Clear, 0, 0, FL_ENGRAVED_LABEL, 0, 14, 0},
452  {0,0,0,0,0,0,0,0,0},
453  {gettext("                                                                             \
454                                                                               \
455       "), 0,  0, 0, 65, FL_ENGRAVED_LABEL, 0, 14, 0},
456  {0,0,0,0,0,0,0,0,0},
457  {gettext("Help"), 0,  0, 0, 64, FL_ENGRAVED_LABEL, 0, 14, 0},
458  {gettext("Manual     "), 0xffbe,  0, 0, 129, FL_ENGRAVED_LABEL, 0, 14, 0},
459  {gettext("About"), 0x80061,  (Fl_Callback*)cb_About, 0, 0, FL_ENGRAVED_LABEL, 0, 14, 0},
460  {0,0,0,0,0,0,0,0,0},
461  {0,0,0,0,0,0,0,0,0}
464 Fl_Output *status_bar_o=(Fl_Output *)0;
466 Fl_Browser *log_br=(Fl_Browser *)0;
468 Fl_Double_Window *preferences_w=(Fl_Double_Window *)0;
470 static void cb_Cancel(Fl_Button*, void*) {
471   preferences_w->hide();
474 static void cb_Apply(Fl_Button*, void*) {
475   write_preferences();
476 preferences_w->hide();
479 Fl_Scroll *prefs_tree_scroll=(Fl_Scroll *)0;
481 Fl_Group *config_connection_gr=(Fl_Group *)0;
483 Fl_Input *config_sfinx_server_name_i=(Fl_Input *)0;
485 Fl_Menu_Item menu_Minimum[] = {
486  {gettext("User Name && Passsword"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
487  {gettext("RSA Key"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
488  {0,0,0,0,0,0,0,0,0}
491 Fl_Menu_Item menu_Minimum1[] = {
492  {gettext("Debug Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
493  {gettext("Chat Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
494  {gettext("Info Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
495  {gettext("Notice Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
496  {gettext("Warning Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
497  {gettext("Error Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
498  {gettext("Alert Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
499  {gettext("Critical Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
500  {gettext("Fatal Level"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
501  {0,0,0,0,0,0,0,0,0}
504 Fl_Menu_Item menu_Minimum2[] = {
505  {gettext("Plain Stream"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
506  {gettext("AES Stream"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
507  {0,0,0,0,0,0,0,0,0}
510 Fl_Group *config_files_module_gr=(Fl_Group *)0;
512 Fl_Input *config_files_module_unsorted_path_i=(Fl_Input *)0;
514 Fl_Input *config_files_module_sorted_path_i=(Fl_Input *)0;
516 Fl_Check_Button *gen_desc_files_b=(Fl_Check_Button *)0;
518 Fl_Input *config_files_module_desc_file_name_i=(Fl_Input *)0;
520 Fl_Check_Button *process_files_mime_type_b=(Fl_Check_Button *)0;
522 Fl_Group *config_confirmation_gr=(Fl_Group *)0;
524 Fl_Check_Button *exit_confirm_b=(Fl_Check_Button *)0;
526 Fl_Double_Window *select_slice_w=(Fl_Double_Window *)0;
528 static void cb_Cancel1(Fl_Button*, void*) {
529   select_slice_w->hide();
532 Fl_Button *select_slice_b=(Fl_Button *)0;
534 static void cb_select_slice_b(Fl_Button*, void*) {
535   Fl_Toggle_Node *node = select_slice_tree->selected();
536 if (!node)
537         return;
538 void (*select_slice_action)() = (void (*)())(select_slice_w->user_data());
539 if (select_slice_action) {
540         select_slice_w->user_data(0);
541         select_slice_action();
543 select_slice_w->hide();
546 Fl_Scroll_Resize *select_slice_tree_scroll=(Fl_Scroll_Resize *)0;
548 Fl_Double_Window *slices_w=(Fl_Double_Window *)0;
550 static void cb_Cancel2(Fl_Button*, void*) {
551   slices_w->hide();
554 static void cb_Delete(Fl_Button*, void*) {
555   Fl_Toggle_Node *node = slices_tree->selected();
556 if (!node)
557         return;
558 sfinx_slice_t *slice = (sfinx_slice_t *)node->user_data();
559 if (slice->id == 1) // Root Slice can't be deleted
560         return;
561 // set safe deletion mode
562 slice_deletion_type_ch->value(0);
563 data_deletion_type_ch->value(0);
564 delete_sfinx_slice_to->value(slice->name());
565 delete_slice_w->show();
568 Fl_Scroll_Resize *slices_tree_scroll=(Fl_Scroll_Resize *)0;
570 static void cb_Edit(Fl_Button*, void*) {
571   Fl_Toggle_Node *node = slices_tree->selected();
572 if (!node)
573         return;
574 sfinx_slice_t *slice = (sfinx_slice_t *)node->user_data();
575 edit_slice_w->user_data((void *)slice);
576 app->sfinx.send(SFINX_EDIT_SLICE_REQUEST, (u32_t)slice->id);
577 edit_slice_w->label("Edit Sfinx Slice");
580 Fl_Output *slices_status_to=(Fl_Output *)0;
582 static void cb_New(Fl_Button*, void*) {
583   Fl_Toggle_Node *node = slices_tree->selected();
584 if (!node) {
585         fl_alert("Please select slice connection point !");
586         return;
588 edit_slice_w->user_data(0); // new slice
589 slice_name_i->value(0);
590 slice_directory_i->value(0);
591 slice_name_i->take_focus();
592 slice_description_i->value(0);
593 sfinx_slice_t *slice = (sfinx_slice_t *)slices_tree->selected()->user_data();
594 edit_slice_to->value(string(string("Parent slice: ") + slice->name()).c_str());
595 edit_slice_w->label("New Sfinx Slice");
596 edit_slice_w->show();
599 static void cb_Relink(Fl_Button*, void*) {
600   Fl_Toggle_Node *node = slices_tree->selected();
601 if (!node)
602         return;
603 sfinx_slice_t *slice = (sfinx_slice_t *)node->user_data();
604 if (slice->id == 1) // root slice can't be relinked
605         return;
606 fill_objects_tree(select_slice_tree, SFINX_SLICE_OBJECT, slice, 0);
607 select_slice_w->user_data((void *)relink_slice_action);
608 select_slice_w->show();
611 static void cb_Search(Fl_Button*, void*) {
612   search_mi->do_callback(0, (void *)0);
615 Fl_Double_Window *edit_slice_w=(Fl_Double_Window *)0;
617 Fl_Input *slice_name_i=(Fl_Input *)0;
619 Fl_Input *slice_directory_i=(Fl_Input *)0;
621 Fl_Input *slice_description_i=(Fl_Input *)0;
623 static void cb_Ok(Fl_Return_Button*, void*) {
624   if (!slice_name_i->size()) {
625         fl_message("Missing slice name !");
626         return;
628 sfinx_slice_t *eslice = (sfinx_slice_t *)edit_slice_w->user_data();
629 sfinx_slice_t slice;
630 if (eslice) {
631         slice.tid(SFINX_EDIT_SLICE);
632         slice.id = eslice->id; // edited slice id
633         slice.parent_id = eslice->parent_id;
634 } else {
635         slice.tid(SFINX_NEW_SLICE);
636         sfinx_slice_t *s =  (sfinx_slice_t *)(slices_tree->selected()->user_data());
637         slice.parent_id = s->id; // parent id for new slice
639 slice.name(slice_name_i->value());
640 slice.directory(slice_directory_i->value());
641 slice.description(slice_description_i->value());
642 app->sfinx.send(slice);
643 edit_slice_w->hide();
644 fill_objects_tree(slices_tree, 1 << SFINX_SLICE_OBJECT, 0, 1); // force refresh;
647 static void cb_Cancel3(Fl_Button*, void*) {
648   edit_slice_w->hide();
651 Fl_Output *edit_slice_to=(Fl_Output *)0;
653 Fl_Double_Window *delete_slice_w=(Fl_Double_Window *)0;
655 static void cb_Cancel4(Fl_Button*, void*) {
656   delete_slice_w->hide();
659 static void cb_Delete1(Fl_Button*, void*) {
660   // need to confirm deletion ?!
661 bool recursivly = slice_deletion_type_ch->value();
662 sfinx_slice_t *slice = (sfinx_slice_t *)slices_tree->selected()->user_data();
663 app->sfinx.send(data_deletion_type_ch->value() ?
664         (recursivly ? SFINX_DELETE_SLICE_ASSOC_DATA_RECURSIVLY : SFINX_DELETE_SLICE_ASSOC_DATA) :
665         (recursivly ? SFINX_DELETE_SLICE_MARK_DATA_UNSORTED_RECURSIVLY : SFINX_DELETE_SLICE_MARK_DATA_UNSORTED),
666         (u32_t)slice->id);
667 app->sfinx.send(recursivly ? SFINX_DELETE_SLICE_RECURSIVLY : SFINX_DELETE_SLICE_WITH_REATTACH,
668         (u32_t)slice->id);
669 delete_slice_w->hide();
670 fill_objects_tree(slices_tree, 1 << SFINX_SLICE_OBJECT, 0, 1); // force refresh;
673 Fl_Output *delete_sfinx_slice_to=(Fl_Output *)0;
675 Fl_Choice *slice_deletion_type_ch=(Fl_Choice *)0;
677 Fl_Menu_Item menu_slice_deletion_type_ch[] = {
678  {gettext("Attach subslices to parent"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
679  {gettext("Delete all subslices recursivly"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
680  {0,0,0,0,0,0,0,0,0}
683 Fl_Choice *data_deletion_type_ch=(Fl_Choice *)0;
685 Fl_Menu_Item menu_data_deletion_type_ch[] = {
686  {gettext("Mark all data \'Unsorted\'"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
687  {gettext("Delete all data"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
688  {0,0,0,0,0,0,0,0,0}
691 Fl_Double_Window *progress_w=(Fl_Double_Window *)0;
693 Fl_Progress *progress_bar=(Fl_Progress *)0;
695 Fl_Box *progress_l=(Fl_Box *)0;
697 Fl_Double_Window *files_module_w=(Fl_Double_Window *)0;
699 static void cb_Cancel5(Fl_Button*, void*) {
700   files_module_w->hide();
703 Fl_Output *files_module_status_to=(Fl_Output *)0;
705 Fl_Button *classify_file_b=(Fl_Button *)0;
707 static void cb_classify_file_b(Fl_Button*, void*) {
708   int n = files_module_tree_br->value();
709 if (!n)
710         return;
711 sfinx_file_t *file = ((sfinx_files_vector_t *)files_module_tree_br->user_data())->files[n - 1];
712 string path;
713 app->files_module_conf.get(FILES_MODULE_UNSORTED_PATH, path);
714 char buf[256];
715 int eyear, emonth, eday, ehour, emin, esec, cyear, cmonth, cday, chour, cmin, csec;
716 file->etime.GetDate(eyear, emonth, eday);
717 file->etime.GetTime(ehour, emin, esec);
718 file->ctime.GetDate(cyear, cmonth, cday);
719 file->ctime.GetTime(chour, cmin, csec);
720 sprintf(buf, "%llu bytes | Modified: %02d/%02d/%04d %02d:%02d:%02d | Last Status Changed: %02d/%02d/%04d %02d:%02d:%02d", file->fsize, cday, cmonth,
721         cyear, chour, cmin, csec, eday, emonth, eyear, ehour, emin, esec);
722 string t = "URL: " + path + current_file.name + "/" + file->name + " | " + file->mimetype + " | Size: " + buf;
723 classify_file_to->value(t.c_str());
724 file_title_i->value(0);
725 file_name_i->value(file->name.c_str());
726 // save orig file name
727 file->orig_name = file->name;
728 file->tid(SFINX_FILES_MODULE_CLASSIFY_REQUEST); // new file
729 file_title_i->take_focus();
730 file_authority_i->value(0);
731 file_description_i->value(0);
732 file_comments_i->value(0);
733 sorted_location_b->value(1);
734 file_compress_b->value(1);
735 file_gen_csum_b->value(1);
736 file_mtag_b->label("Main Slice (Not Set)");
737 file_mtag_b->user_data(0); // ÔÕÔÁ ÈÒÁÎÉÔÓÑ mtag
738 file_tags_br->clear();
739 classify_file_w->user_data((void *)file);
740 classify_file_w->label("Classify File");
741 classify_file_w->show();
744 static void cb_Edit1(Fl_Button*, void*) {
745   Fl_Toggle_Node *node = files_tree->selected();
746 if (!node || node->can_open()) {
747         fl_alert("Please select file to edit !");
748         return;
750 sfinx_object_t *obj = (sfinx_object_t *) node->user_data();
751 if (obj->type != SFINX_FILE_OBJECT)
752         bug();
753 sfinx_file_t file(SFINX_FILES_MODULE_EDIT_REQUEST);
754 file.id = obj->id;
755 app->sfinx.send(file);
758 Fl_Browser *files_module_tree_br=(Fl_Browser *)0;
760 static void cb_files_module_tree_br(Fl_Browser*, void*) {
761   if (!Fl::event_clicks())
762         return;
763 sfinx_files_vector_t *tree = (sfinx_files_vector_t *) files_module_tree_br->user_data();
764 int n = files_module_tree_br->value();
765 if (tree->files[n - 1]->is_directory) { // ÀÚÅÒ ÓÍÅÎÉÌ ÄÉÒÅËÔÏÒÉÀ
766         current_file.id = tree->files[n - 1]->id;
767         current_file.mtag.id = tree->files[n - 1]->mtag.id;
768         current_file.name += ('/' + tree->files[n - 1]->name);
769         app->sfinx.send(current_file);
770 } else {
771         if (!(tree->files[n - 1]->id)) // classify file
772                 classify_file_b->do_callback();
776 static void cb_Delete2(Fl_Button*, void*) {
777   if (current_file.tid() == SFINX_FILES_MODULE_UNSORTED_TREE_REQUEST) { // unsorted tree
778         int n = files_module_tree_br->value();
779         if (!n)
780                 return;
781         sfinx_file_t *file = ((sfinx_files_vector_t *)files_module_tree_br->user_data())->files[n - 1];
782         string path;    // sure ?
783         string message = "Deleting ";
784         if (file->is_directory)
785                 message += "directory";
786         else
787                 message += "file";
788         message += (" \'" + file->name + "\'. Are you sure ?");
789         if (fl_choice(message.c_str(), "Yes", "No", 0L))
790                 return;
791         file->tid(SFINX_FILES_MODULE_UNSORTED_DELETE);
792         app->sfinx.send(file); // check for errors ?
793         app->sfinx.send(current_file);
794 } else { // sorted tree
795         Fl_Toggle_Node *node = files_tree->selected();
796         if (!node || node->can_open())
797                 return;
798         sfinx_object_t *obj = (sfinx_object_t *) node->user_data();
799         string message = "Delete or Unsort \'" + obj->name + "\' ?";
800         int res = fl_choice(message.c_str(), "Cancel", "Unsort", "Delete");
801         sfinx_file_t file;
802         file.id = obj->id;
803         file.mtag.slice_id = obj->slice_id; 
804         if (!res)
805                 return;
806         if (res == 2) // delete
807                 file.tid(SFINX_FILES_MODULE_SORTED_UNLINK);
808         else
809                 file.tid(SFINX_FILES_MODULE_UNSORT);
810         app->sfinx.send(file);
811         fill_objects_tree(files_tree, (1 << SFINX_FILE_OBJECT), 0, 1); // fluid bugs if any default params exists !
816 Fl_Button *select_files_tree_b=(Fl_Button *)0;
818 static void cb_select_files_tree_b(Fl_Button*, void*) {
819   current_file.name.clear();
820 current_file.orig_name.clear();
821 if (select_files_tree_b->user_data()) {
822         current_file.tid(SFINX_FILES_MODULE_UNSORTED_TREE_REQUEST);
823         current_file.id = 0;
824         select_files_tree_b->user_data(0);
825         app->sfinx.send(current_file);
826 } else {
827         select_files_tree_b->user_data((void *)1);
828         select_files_tree_b->label("Show Unsorted");
829         select_files_tree_b->redraw();
830         current_file.tid(0);
831         files_module_status_to->value("Sorted Files Tree");
832         current_file.id = 1; // root id
833         files_module_tree_br->hide();
834         files_tree_scroll->resize(files_tree_scroll->x(), files_tree_scroll->y(), files_module_tree_br->w(), files_module_tree_br->h());
835         files_module_w->resizable(files_tree_scroll);
836         fill_objects_tree(files_tree, 1 << SFINX_FILE_OBJECT, 0, 0); // fluid bugs if any default params exists !
837         files_tree_scroll->show();
841 static void cb_Up(Fl_Button*, void*) {
842   const char *p = strrchr(current_file.name.c_str(), '/');
843 if (!p) {
844         if (!current_file.name.size())
845                 return;
846         current_file.name.clear();
847 } else {
848         char path[1024];
849         path[0] = 0;
850         strncat(path, current_file.name.c_str(), p - current_file.name.c_str());
851         current_file.name = path;
852         current_file.id = current_file.mtag.id;
854 app->sfinx.send(current_file);
857 static void cb_Reload(Fl_Button*, void*) {
858   app->sfinx.send(current_file);
861 static void cb_Select(Fl_Button*, void*) {
862   //for (int i = 1; i <= files_module_tree_br->size(); i++)
863 //      files_module_tree_br->select(i);
866 static void cb_Unselect(Fl_Button*, void*) {
867   files_module_tree_br->deselect();
870 Fl_Scroll_Resize *files_tree_scroll=(Fl_Scroll_Resize *)0;
872 Fl_Double_Window *classify_file_w=(Fl_Double_Window *)0;
874 static void cb_Cancel6(Fl_Button*, void*) {
875   classify_file_w->hide();
878 Fl_Input *file_title_i=(Fl_Input *)0;
880 Fl_Input *file_authority_i=(Fl_Input *)0;
882 Fl_Input *file_description_i=(Fl_Input *)0;
884 Fl_Input *file_comments_i=(Fl_Input *)0;
886 Fl_Output *classify_file_to=(Fl_Output *)0;
888 static void cb_Ok1(Fl_Return_Button*, void*) {
889   if (!file_mtag_b->user_data()) {
890         fl_alert("You have to select Main Slice for file !");
891         return;
893 if (!file_name_i->size()) {
894         fl_alert("File must have some name !");
895         return;
897 sfinx_file_t *file = (sfinx_file_t *)classify_file_w->user_data();
898 file->name = file_name_i->value();
899 file->title = file_title_i->value();
900 file->authority = file_authority_i->value();
901 file->description = file_description_i->value();
902 file->comments = file_comments_i->value();
903 file->sorted_location = sorted_location_b->value();
904 file->store_compressed = file_compress_b->value();
905 file->generate_csum = file_gen_csum_b->value();
906 sfinx_object_t *obj = (sfinx_object_t *)file_mtag_b->user_data();
907 file->mtag.id = obj->id;
908 file->mtag.type = obj->type;
909 file->mtag.slice_id = obj->slice_id;
910 file_mtag_b->user_data(0);
911 file->tags.clear();
912 for (int i = 1; i <= file_tags_br->size(); i++) {
913         obj = (sfinx_object_t *)file_tags_br->data(i);
914         file->tags.push_back(*obj);
915         file_tags_br->data(i, 0);
917 app->sfinx.send(file);
920 Fl_Check_Button *sorted_location_b=(Fl_Check_Button *)0;
922 Fl_Check_Button *file_crypt_b=(Fl_Check_Button *)0;
924 Fl_Check_Button *file_compress_b=(Fl_Check_Button *)0;
926 Fl_Button *file_mtag_b=(Fl_Button *)0;
928 static void cb_file_mtag_b(Fl_Button*, void*) {
929   fill_objects_tree(select_slice_tree, (1 << SFINX_SLICE_OBJECT) | (1 << SFINX_FILE_OBJECT) | (1 << SFINX_NOTE_OBJECT), 0, 0); // fluid bugs if any default params exists !
930 select_slice_w->user_data((void *)select_file_mtag_action);
931 select_slice_w->show();
934 Fl_Browser *file_tags_br=(Fl_Browser *)0;
936 Fl_Button *file_add_tag_b=(Fl_Button *)0;
938 static void cb_file_add_tag_b(Fl_Button*, void*) {
939   fill_objects_tree(select_slice_tree, (1 << SFINX_SLICE_OBJECT) | (1 << SFINX_FILE_OBJECT) | (1 << SFINX_NOTE_OBJECT), 0, 0); // fluid bugs if any default params exists !
940 select_slice_w->user_data((void *)select_file_atag_action);
941 select_slice_w->show();
944 Fl_Button *file_remove_tag_b=(Fl_Button *)0;
946 static void cb_file_remove_tag_b(Fl_Button*, void*) {
947   for (int i = file_tags_br->size(); i >= 1; i--) {
948         if (file_tags_br->selected(i))
949                 file_tags_br->remove(i);
953 Fl_Input *file_name_i=(Fl_Input *)0;
955 Fl_Check_Button *file_gen_csum_b=(Fl_Check_Button *)0;
957 Fl_Double_Window *notes_w=(Fl_Double_Window *)0;
959 static void cb_Cancel7(Fl_Button*, void*) {
960   notes_w->hide();
963 Fl_Output *notes_module_status_to=(Fl_Output *)0;
965 static void cb_New1(Fl_Button*, void*) {
966   Fl_Toggle_Node *node = notes_tree->selected();
967 if (!node) {
968         fl_alert("Please select slice connection point !");
969         return;
971 sfinx_note_t *note = new sfinx_note_t(SFINX_NOTES_MODULE_ADD);
972 edit_note_w->user_data((void *)note);
973 sfinx_object_t *obj;
974 if (node->can_open()) // slice
975         obj = ((sfinx_slice_t *)node->user_data())->object();
976 else // object
977         obj = (sfinx_object_t *) node->user_data();
978 note_mtag_b->user_data(obj);
979 note_mtag_b->copy_label((obj->name + " [ " + obj->description + " ]").c_str()); 
980 note_mtag_b->redraw();
981 note_name_i->value(0);
982 note_url_i->value(0);
983 note_text_i->value(0);
984 note_name_i->take_focus();
985 edit_note_w->label("New Note");
986 edit_note_w->show();
989 static void cb_Edit2(Fl_Button*, void*) {
990   Fl_Toggle_Node *node = notes_tree->selected();
991 if (!node || node->can_open()) {
992         fl_alert("Please select note to edit !");
993         return;
995 sfinx_object_t *obj = (sfinx_object_t *) node->user_data();
996 if (obj->type != SFINX_NOTE_OBJECT)
997         bug();
998 sfinx_note_t note(SFINX_NOTES_MODULE_EDIT_REQUEST);
999 note.id = obj->id;
1000 app->sfinx.send(note);
1003 Fl_Scroll_Resize *notes_tree_scroll=(Fl_Scroll_Resize *)0;
1005 static void cb_Delete3(Fl_Button*, void*) {
1006   Fl_Toggle_Node *node = notes_tree->selected();
1007 if (!node || node->can_open())
1008         return;
1009 sfinx_object_t *obj = (sfinx_object_t *) node->user_data();
1010 delete_sfinx_note_to->value(obj->name.c_str());
1011 delete_note_w->user_data(obj);
1012 delete_note_w->show();
1015 Fl_Double_Window *edit_note_w=(Fl_Double_Window *)0;
1017 static void cb_Cancel8(Fl_Button*, void*) {
1018   edit_note_w->hide();
1021 Fl_Input *note_name_i=(Fl_Input *)0;
1023 Fl_Input *note_url_i=(Fl_Input *)0;
1025 Fl_Input *note_text_i=(Fl_Input *)0;
1027 Fl_Output *edit_note_to=(Fl_Output *)0;
1029 static void cb_Ok2(Fl_Return_Button*, void*) {
1030   if (!note_mtag_b->user_data()) {
1031         fl_alert("You have to select Main Object for note !");
1032         return;
1034 if (!note_name_i->size()) {
1035         fl_alert("Note must have some name !");
1036         return;
1038 if (!note_text_i->size()) {
1039         fl_alert("Note must have some text !");
1040         return;
1042 sfinx_note_t *note = (sfinx_note_t *)edit_note_w->user_data();
1043 note->name = note_name_i->value();
1044 note->url = note_url_i->value();
1045 note->text = note_text_i->value();
1046 sfinx_object_t *obj = (sfinx_object_t *)note_mtag_b->user_data();
1047 note->mtag.id = obj->id;
1048 note->mtag.type = obj->type;
1049 note->mtag.slice_id = obj->slice_id;
1050 note_mtag_b->user_data(0);
1051 note->tags.clear();
1052 for (int i = 1; i <= note_tags_br->size(); i++) {
1053         obj = (sfinx_object_t *)note_tags_br->data(i);
1054         note->tags.push_back(*obj);
1055         note_tags_br->data(i, 0);
1057 app->sfinx.send(note);
1058 delete note;
1059 edit_note_w->user_data(0);
1062 Fl_Button *note_mtag_b=(Fl_Button *)0;
1064 static void cb_note_mtag_b(Fl_Button*, void*) {
1065   fill_objects_tree(select_slice_tree, (1 << SFINX_SLICE_OBJECT) | (1 << SFINX_FILE_OBJECT) | (1 << SFINX_NOTE_OBJECT), 0, 0); // fluid bugs if any default params exists !
1066 slices_w->user_data((void *)select_note_mtag_action);
1067 slices_w->show();
1070 Fl_Browser *note_tags_br=(Fl_Browser *)0;
1072 Fl_Button *note_add_tag_b=(Fl_Button *)0;
1074 static void cb_note_add_tag_b(Fl_Button*, void*) {
1075   fill_objects_tree(select_slice_tree, (1 << SFINX_SLICE_OBJECT) | (1 << SFINX_FILE_OBJECT) | (1 << SFINX_NOTE_OBJECT), 0, 0); // fluid bugs if any default params exists !
1076 slices_w->user_data((void *)select_note_atag_action);
1077 slices_w->show();
1080 Fl_Button *note_remove_tag_b=(Fl_Button *)0;
1082 static void cb_note_remove_tag_b(Fl_Button*, void*) {
1083   for (int i = note_tags_br->size(); i >= 1; i--) {
1084         if (note_tags_br->selected(i))
1085                 note_tags_br->remove(i);
1089 Fl_Choice *note_secured_ch=(Fl_Choice *)0;
1091 Fl_Menu_Item menu_note_secured_ch[] = {
1092  {gettext("None"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
1093  {gettext("Crypted Text"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
1094  {0,0,0,0,0,0,0,0,0}
1097 Fl_Double_Window *delete_note_w=(Fl_Double_Window *)0;
1099 static void cb_Cancel9(Fl_Button*, void*) {
1100   delete_note_w->hide();
1103 static void cb_Delete4(Fl_Button*, void*) {
1104   sfinx_object_t *obj = (sfinx_object_t *) delete_note_w->user_data();
1105 sfinx_note_t note(note_deletion_type_ch->value() ? SFINX_NOTES_MODULE_UNLINK : SFINX_NOTES_MODULE_UNSORT);
1106 note.id = obj->id;
1107 note.mtag.slice_id = obj->slice_id;
1108 app->sfinx.send(note);
1109 delete_note_w->user_data(0);
1110 delete_note_w->hide();
1111 fill_objects_tree(notes_tree, (1 << SFINX_SLICE_OBJECT) | (1 << SFINX_NOTE_OBJECT), 0, 1); // force refresh;
1114 Fl_Output *delete_sfinx_note_to=(Fl_Output *)0;
1116 Fl_Choice *note_deletion_type_ch=(Fl_Choice *)0;
1118 Fl_Menu_Item menu_note_deletion_type_ch[] = {
1119  {gettext("Mark all data \'Unsorted\'"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
1120  {gettext("Delete all data"), 0,  0, 0, 0, FL_NORMAL_LABEL, 0, 14, 0},
1121  {0,0,0,0,0,0,0,0,0}
1124 Fl_Double_Window *search_browser_w=(Fl_Double_Window *)0;
1126 static void cb_Cancela(Fl_Button*, void*) {
1127   search_browser_w->hide();
1130 Fl_Browser *search_browser_br=(Fl_Browser *)0;
1132 Fl_Choice *goto_page_ch=(Fl_Choice *)0;
1134 Fl_Double_Window *browse_w=(Fl_Double_Window *)0;
1136 static void cb_Cancelb(Fl_Button*, void*) {
1137   browse_w->hide();
1140 Fl_Output *browse_status_to=(Fl_Output *)0;
1142 static void cb_Edit3(Fl_Button*, void*) {
1143   /*Fl_Toggle_Node *node = browse_tree->selected();
1144 if (!node || node->can_open()) {
1145         fl_alert("Please select object to edit !");
1146         return;
1148 sfinx_object_t *obj = (sfinx_object_t *) node->user_data();
1149 if (obj->type != SFINX_NOTE_OBJECT)
1150         bug();
1151 sfinx_note_t note(SFINX_NOTES_MODULE_EDIT_REQUEST);
1152 note.id = obj->id;
1153 app->sfinx.send(note);*/;
1156 Fl_Scroll_Resize *browse_scroll=(Fl_Scroll_Resize *)0;
1158 static void cb_Delete5(Fl_Button*, void*) {
1159   /*Fl_Toggle_Node *node = notes_tree->selected();
1160 if (!node || node->can_open())
1161         return;
1162 sfinx_object_t *obj = (sfinx_object_t *) node->user_data();
1163 delete_sfinx_note_to->value(obj->name.c_str());
1164 delete_note_w->user_data(obj);
1165 delete_note_w->show();*/;
1168 Fl_Double_Window *search_w=(Fl_Double_Window *)0;
1170 static void cb_Cancelc(Fl_Button*, void*) {
1171   search_w->hide();
1174 static void cb_Search1(Fl_Return_Button*, void*) {
1175   sfinx_search_query_t query;
1176 query.pattern = search_i->value();
1177 if (search_in_files_b->value())
1178         query.add_area(SFINX_SEARCH_IN_FILES);
1179 // add restrictions ...
1180 app->sfinx.send(query);
1183 Fl_Check_Button *search_in_files_b=(Fl_Check_Button *)0;
1185 Fl_Browser *search_slices_br=(Fl_Browser *)0;
1187 Fl_Button *search_add_slice_b=(Fl_Button *)0;
1189 static void cb_search_add_slice_b(Fl_Button*, void*) {
1190   app->refresh_slices();
1191 slices_w->user_data((void *)search_add_slice_action);
1192 slices_w->show();
1195 static void cb_Remove(Fl_Button*, void*) {
1196   for (int i = search_slices_br->size(); i >= 1; i--) {
1197         if (search_slices_br->selected(i))
1198                 search_slices_br->remove(i);
1202 Fl_Input *search_i=(Fl_Input *)0;
1204 static void cb_Browse(Fl_Button*, void*) {
1205   fill_objects_tree(browse_tree, (1 << SFINX_SLICE_OBJECT) | (1 << SFINX_FILE_OBJECT) | (1 << SFINX_NOTE_OBJECT), 0, 0); // fluid bugs if any default params exists !
1206 browse_w->show();
1209 Fl_Double_Window *about_w=(Fl_Double_Window *)0;
1211 static void cb_Ok3(Fl_Button*, void*) {
1212   about_w->hide();
1215 #include <FL/Fl_Image.H>
1216 static unsigned char idata_sfinx[] =
1217 {38,109,233,40,111,235,40,111,235,43,114,238,43,114,238,45,116,240,45,116,
1218 240,45,116,240,45,116,240,45,116,240,45,116,240,45,116,240,45,116,240,45,116,
1219 240,45,116,240,46,116,240,51,115,239,53,114,239,55,116,241,55,116,241,55,116,
1220 241,53,114,239,50,111,238,50,111,238,48,109,234,48,109,234,48,109,234,48,109,
1221 234,48,109,234,48,109,234,48,109,234,48,110,233,51,109,232,50,109,229,47,105,
1222 230,44,102,227,44,102,227,44,102,227,43,101,226,46,104,229,52,109,238,50,107,
1223 236,45,102,231,43,100,229,43,100,229,45,102,231,50,107,238,49,109,239,38,106,
1224 231,39,110,234,39,108,235,39,109,233,43,108,234,44,108,231,45,107,230,51,110,
1225 230,50,106,225,52,105,221,53,102,220,55,102,216,59,102,217,59,102,215,57,103,
1226 215,52,105,217,35,107,215,41,122,229,38,119,226,24,105,212,24,102,213,35,111,
1227 223,34,107,218,22,92,204,36,103,220,37,102,220,38,98,222,39,99,223,43,98,224,44,
1228 98,224,45,96,223,44,98,220,38,101,214,35,103,212,38,101,215,36,98,219,36,96,
1229 229,33,91,234,36,90,242,35,90,245,32,86,244,29,88,242,28,89,242,26,92,238,26,93,
1230 233,25,95,227,25,94,221,26,94,221,27,90,221,29,89,222,29,88,224,29,88,224,29,88,
1231 224,29,88,224,29,88,224,29,88,224,24,83,219,24,83,219,27,86,222,27,86,222,27,86,
1232 222,27,86,222,27,86,222,29,88,224,24,83,219,22,81,217,22,81,217,20,79,215,20,79,
1233 215,22,81,217,22,81,217,24,83,219,21,79,215,18,76,212,17,76,212,15,74,210,15,74,
1234 210,17,76,212,15,77,212,15,81,217,9,78,217,6,79,218,40,111,235,40,111,235,43,
1235 114,238,44,115,239,43,114,238,45,116,240,45,116,240,45,116,240,45,116,240,45,
1236 116,240,45,116,240,45,116,240,45,116,240,45,116,240,45,116,240,47,115,240,51,
1237 115,239,55,116,241,55,116,241,55,116,241,55,116,241,53,114,239,49,110,237,48,
1238 109,236,48,109,234,48,109,234,48,109,234,48,109,234,48,109,234,48,109,234,48,
1239 109,234,48,109,234,51,109,232,50,108,231,47,105,230,47,105,230,44,102,227,44,
1240 102,227,47,105,230,47,105,230,50,107,236,50,107,236,47,104,233,45,102,231,45,
1241 102,231,47,104,233,50,107,238,48,107,235,44,108,232,42,108,231,43,108,234,44,
1242 110,233,45,109,233,46,108,231,46,106,230,47,105,228,49,105,226,51,106,225,53,
1243 105,225,54,105,223,52,101,220,52,101,220,52,101,220,47,104,220,40,110,224,37,
1244 115,226,37,112,227,32,107,222,32,107,224,38,110,228,37,108,226,30,99,218,35,101,
1245 221,36,100,223,37,98,223,39,98,224,39,98,224,40,98,224,42,97,224,40,98,221,36,
1246 102,215,35,103,214,37,102,218,34,98,221,33,96,227,34,93,231,35,91,238,35,90,242,
1247 32,89,240,30,90,240,30,92,239,26,91,233,24,92,227,25,94,223,25,95,219,27,95,
1248 220,27,90,221,29,89,222,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,
1249 224,29,88,224,27,86,222,27,86,222,27,86,222,27,86,222,27,86,222,27,86,222,27,86,
1250 222,24,83,219,22,81,217,22,81,217,20,79,215,20,79,215,22,81,217,22,81,217,24,83,
1251 219,21,79,215,21,79,215,17,76,212,15,74,210,15,74,210,17,76,212,18,80,215,17,81,
1252 217,2,71,210,0,72,211,45,115,239,45,115,239,45,114,241,47,117,241,47,117,241,47,
1253 117,239,49,119,241,49,119,241,47,117,239,47,117,239,47,117,239,47,117,239,47,
1254 117,239,47,117,239,47,117,241,48,116,241,53,117,241,55,116,241,55,116,243,55,
1255 116,243,55,116,241,52,113,238,50,111,238,49,110,237,48,109,236,48,109,236,48,
1256 109,236,48,109,236,48,109,234,48,109,234,48,109,236,48,109,234,51,109,234,51,
1257 109,234,49,107,232,47,105,230,45,100,226,45,100,226,47,105,230,47,105,230,50,
1258 107,236,50,107,236,47,104,233,47,104,233,47,104,233,47,104,233,50,107,236,50,
1259 108,234,51,109,234,49,107,230,48,106,229,47,105,228,46,106,228,43,103,227,45,
1260 103,229,43,101,227,46,105,231,47,106,232,47,106,234,43,102,230,43,102,232,42,
1261 101,231,42,101,231,37,97,227,47,115,240,35,105,229,32,100,227,38,106,233,47,114,
1262 244,42,110,237,40,105,233,37,102,230,35,100,228,35,100,228,35,100,228,37,100,
1263 229,36,99,228,36,99,228,36,100,226,36,102,224,32,101,218,33,104,218,32,101,220,
1264 35,101,223,32,100,225,33,98,228,36,95,233,37,96,236,34,93,233,32,94,231,31,95,
1265 231,29,96,227,28,96,223,30,98,221,29,98,219,31,97,220,29,92,223,31,91,224,31,90,
1266 226,31,90,226,31,90,226,31,90,226,31,90,226,32,91,227,31,90,226,31,90,226,29,88,
1267 224,29,88,224,27,86,222,24,83,219,24,83,219,24,83,219,24,83,219,24,83,219,22,81,
1268 217,22,81,217,22,81,217,22,81,217,24,83,219,24,83,219,23,81,217,21,79,215,17,76,
1269 212,17,76,212,17,76,212,17,76,212,18,80,215,19,83,219,1,68,208,0,69,209,47,117,
1270 241,47,117,241,47,116,243,49,119,243,49,119,241,49,119,241,50,118,241,50,118,
1271 241,49,119,241,49,119,240,50,118,241,50,118,241,49,119,241,49,119,241,50,118,
1272 243,52,117,243,56,120,244,57,118,243,57,118,245,57,118,245,55,116,241,53,114,
1273 239,50,111,238,48,109,236,50,111,238,50,111,238,50,111,238,50,111,238,50,111,
1274 236,50,111,236,50,111,238,50,111,238,53,111,237,51,109,234,50,108,234,47,105,
1275 231,49,104,231,49,104,231,47,105,231,49,107,233,50,108,234,51,109,235,50,107,
1276 236,47,105,231,47,104,233,50,108,234,50,107,236,51,106,232,59,110,235,57,109,
1277 231,54,106,228,53,107,229,48,104,227,48,103,229,44,102,228,41,98,227,47,107,239,
1278 43,105,238,42,106,240,38,104,240,36,102,240,36,102,240,36,99,238,36,98,235,52,
1279 112,245,37,95,229,31,87,222,45,101,238,53,111,247,47,105,241,41,99,233,43,103,
1280 236,38,100,233,36,100,232,37,101,233,35,102,233,36,105,235,35,104,234,34,104,
1281 234,34,105,231,31,103,224,32,104,224,32,102,224,33,103,225,33,103,225,33,103,
1282 227,35,100,228,33,96,225,33,96,225,34,99,225,34,99,225,31,99,222,33,99,219,32,
1283 98,218,32,98,218,33,99,221,31,94,225,34,94,227,34,93,229,34,93,229,31,90,226,
1284 31,90,226,32,91,227,31,90,226,34,93,229,34,93,229,31,90,226,29,88,224,27,86,
1285 222,24,83,219,24,83,219,22,81,217,27,86,222,24,83,219,22,81,217,22,81,217,22,81,
1286 217,22,81,217,24,83,219,27,86,222,23,81,217,23,81,217,20,79,215,20,79,215,20,79,
1287 215,20,79,215,20,82,217,19,83,219,9,76,216,8,77,217,52,122,246,52,122,246,53,
1288 121,246,50,118,243,48,118,240,49,119,241,50,118,243,50,118,241,49,119,241,49,
1289 119,241,50,118,243,50,118,243,49,119,241,49,119,241,50,118,243,52,117,243,58,
1290 122,246,60,121,246,59,120,245,60,121,246,57,118,243,53,114,239,50,111,238,48,
1291 109,236,50,111,236,50,111,236,50,111,238,50,111,238,50,111,236,50,111,236,50,
1292 111,238,50,111,238,54,111,240,52,110,236,50,107,236,50,107,236,49,104,233,49,
1293 104,233,50,107,236,50,108,234,49,107,233,49,107,232,49,107,233,51,109,234,51,
1294 109,235,49,107,232,51,106,233,53,107,231,60,110,233,58,108,229,56,106,229,55,
1295 105,230,50,101,228,48,101,229,45,100,229,41,98,229,45,105,238,43,107,243,40,107,
1296 247,37,104,245,36,104,247,34,102,245,35,102,245,39,100,242,55,102,242,48,89,229,
1297 45,86,226,54,95,235,58,104,242,53,100,238,48,97,236,47,100,238,42,100,236,39,
1298 101,238,36,102,238,34,102,239,32,104,240,31,105,240,29,105,242,31,105,240,30,
1299 103,232,32,103,231,31,102,228,31,102,226,31,103,224,32,104,224,33,103,224,34,
1300 105,223,29,99,213,31,101,215,31,101,215,33,100,213,34,100,213,35,100,216,35,100,
1301 218,34,98,221,38,98,230,38,98,231,36,96,229,36,96,229,34,93,229,35,94,230,31,90,
1302 226,31,90,226,36,95,231,34,93,229,34,93,229,31,90,226,29,88,224,27,86,222,24,83,
1303 219,24,83,219,27,86,222,27,86,222,24,83,219,22,81,217,22,81,217,24,83,219,27,86,
1304 222,27,86,222,24,83,219,24,83,219,22,81,217,22,81,217,22,81,217,22,81,217,22,84,
1305 219,21,85,221,13,80,221,13,81,224,55,123,248,55,123,248,57,122,248,55,120,246,
1306 53,121,244,53,121,244,52,117,243,51,116,242,53,121,244,53,121,244,55,120,246,
1307 55,120,246,53,121,244,53,121,244,55,120,246,55,120,246,60,124,248,62,123,248,
1308 62,123,248,60,121,246,57,118,243,53,114,239,50,111,238,48,109,236,53,114,239,
1309 53,114,239,53,114,241,53,114,241,53,114,239,53,114,239,53,114,241,53,114,241,
1310 53,112,240,54,111,240,52,109,238,50,107,236,52,106,238,52,106,238,50,107,236,
1311 50,108,234,49,107,233,49,107,232,51,109,234,51,109,234,51,109,234,50,108,233,
1312 50,105,231,51,107,230,57,108,233,56,106,231,56,105,233,53,102,230,54,103,232,
1313 50,100,231,48,101,231,45,99,231,46,104,237,44,106,241,44,106,243,43,106,245,43,
1314 106,245,43,106,245,44,106,243,51,103,238,59,94,224,71,98,227,72,97,226,63,92,
1315 220,60,93,222,61,98,228,62,102,234,49,96,228,47,99,234,44,102,236,41,105,241,38,
1316 106,243,35,108,246,31,107,245,31,108,248,31,106,247,30,101,241,33,101,238,33,
1317 101,234,31,102,230,34,105,229,34,106,226,34,107,222,33,106,217,32,104,214,32,
1318 104,212,33,104,212,37,105,216,36,102,215,39,101,220,39,99,223,39,98,226,40,100,
1319 233,40,99,235,38,98,231,38,98,231,36,95,231,34,93,229,34,93,229,31,90,226,34,93,
1320 229,34,93,229,34,93,229,31,90,226,29,88,224,29,88,224,27,86,222,27,86,222,27,86,
1321 222,27,86,222,24,83,219,24,83,219,24,83,219,24,83,219,27,86,222,27,86,222,27,86,
1322 222,27,86,222,24,83,219,22,81,217,22,81,217,24,83,219,25,87,222,24,88,224,12,79,
1323 219,11,80,220,60,124,248,60,124,248,58,122,246,58,122,246,58,122,246,55,119,243,
1324 55,119,245,55,119,245,55,119,243,55,119,243,55,119,245,55,119,245,55,119,245,
1325 55,119,245,55,119,245,55,119,245,62,123,248,62,123,248,62,123,248,59,120,245,
1326 57,118,243,53,114,239,50,111,238,48,109,236,53,114,239,53,114,239,53,114,239,
1327 53,114,239,53,114,239,53,114,239,53,114,239,53,114,241,56,115,243,53,112,242,
1328 52,109,238,50,107,236,51,108,237,50,107,236,50,107,236,52,110,236,47,106,232,
1329 48,108,232,51,109,235,53,111,236,53,111,236,51,109,232,50,108,231,49,107,232,
1330 49,104,233,49,103,235,50,102,237,50,102,237,52,102,235,52,102,233,52,102,233,
1331 52,102,233,48,101,229,50,103,231,50,103,231,53,107,233,57,108,233,58,108,231,
1332 63,109,231,70,107,222,65,86,191,103,116,218,108,120,222,78,93,196,64,85,190,79,
1333 105,215,79,110,226,56,95,214,54,100,222,48,101,229,44,102,235,38,104,240,35,107,
1334 245,31,106,247,32,107,252,33,105,251,34,100,249,32,96,245,34,99,243,36,102,240,
1335 35,104,233,36,108,229,36,108,226,35,108,221,34,108,215,35,107,215,36,106,217,
1336 38,105,220,40,102,223,42,101,229,43,100,233,42,98,235,44,101,240,44,101,240,40,
1337 99,235,38,97,233,37,96,232,34,93,229,34,93,229,30,89,225,31,90,226,31,90,226,
1338 31,90,226,31,90,226,31,90,226,31,90,226,31,91,224,29,89,222,29,88,224,27,86,
1339 222,27,86,222,24,83,219,24,83,219,27,86,222,27,86,222,29,88,224,29,88,224,27,86,
1340 222,24,83,219,24,83,219,24,83,219,24,83,219,25,87,222,26,90,226,13,79,217,12,79,
1341 219,64,125,250,61,122,247,62,123,248,60,121,246,60,121,246,57,118,243,57,118,
1342 245,57,118,245,57,118,243,57,118,243,57,118,245,57,118,245,57,118,245,57,118,
1343 245,57,118,245,57,118,245,64,125,250,64,125,250,62,123,248,62,123,248,57,118,
1344 243,53,114,239,50,111,238,48,109,236,53,114,239,53,114,239,53,114,239,53,114,
1345 239,53,114,239,53,114,239,53,114,239,53,114,241,56,115,245,53,112,242,52,109,
1346 240,50,107,236,50,107,236,50,107,236,50,107,236,52,110,236,46,105,231,48,108,
1347 232,53,111,236,56,114,237,56,115,235,54,113,233,50,109,229,46,106,230,44,102,
1348 235,47,105,239,47,103,238,48,102,236,52,102,233,53,102,230,55,103,229,60,104,
1349 227,57,99,217,60,101,215,63,101,212,69,106,213,75,108,213,77,109,208,83,111,208,
1350 90,110,197,79,87,159,129,130,195,136,137,204,94,98,169,72,81,156,94,109,190,95,
1351 116,207,69,99,197,61,100,205,55,101,213,51,103,225,44,101,230,42,106,240,38,105,
1352 245,37,104,247,37,101,250,36,95,249,40,95,250,40,95,247,40,98,242,37,101,235,40,
1353 108,233,38,108,229,37,108,224,33,106,217,34,106,217,35,104,221,38,104,226,41,
1354 101,231,42,98,235,46,97,242,46,97,242,47,102,244,44,101,240,40,99,235,40,99,235,
1355 38,97,233,36,95,231,34,93,229,34,93,229,29,88,224,31,90,226,31,90,226,31,90,
1356 226,31,90,226,31,90,226,34,94,227,34,94,227,29,88,224,27,86,222,27,86,222,24,83,
1357 219,24,83,219,27,86,222,27,86,222,29,88,224,29,88,224,27,86,222,27,86,222,24,83,
1358 219,24,83,219,27,86,222,25,87,222,26,90,224,16,82,220,15,83,220,60,121,246,60,
1359 121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,
1360 121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,
1361 121,246,57,118,245,57,118,245,57,118,245,57,118,245,57,118,245,57,118,245,57,
1362 118,245,57,118,245,56,117,242,55,116,241,55,116,243,55,116,243,55,116,241,54,
1363 115,240,55,116,243,55,116,243,58,117,247,59,116,249,59,116,249,59,116,247,59,
1364 116,247,59,116,247,59,116,245,59,117,243,51,109,235,51,109,232,47,106,226,43,
1365 102,220,52,111,227,68,127,243,60,121,238,40,102,225,52,117,247,41,105,239,66,
1366 124,255,54,109,238,65,116,241,75,124,243,36,79,192,82,119,226,69,98,200,73,96,
1367 190,103,120,208,89,101,183,111,119,194,124,131,199,117,123,183,216,219,255,250,
1368 246,255,232,224,245,192,184,207,187,183,210,105,105,141,82,89,135,151,163,221,
1369 60,78,150,72,99,180,61,96,188,84,125,230,35,80,195,41,92,217,67,121,253,22,75,
1370 213,49,101,246,18,65,217,37,82,237,51,96,247,50,101,246,43,99,236,45,105,235,45,
1371 110,236,36,104,227,38,108,229,37,107,229,38,106,233,38,100,235,42,99,240,42,94,
1372 242,45,91,246,43,93,244,40,95,239,39,96,235,38,97,233,35,94,230,36,95,231,34,93,
1373 229,34,93,229,34,93,229,31,90,226,29,88,224,29,88,224,27,86,222,27,86,222,29,88,
1374 224,29,88,224,31,90,226,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,
1375 224,29,88,224,29,88,224,31,90,226,31,90,226,29,88,224,27,86,222,24,83,219,24,83,
1376 219,22,81,217,18,80,215,23,89,227,22,90,227,61,120,246,60,121,246,61,120,246,60,
1377 121,246,61,120,246,60,121,246,61,120,246,60,121,246,61,120,246,60,121,246,61,
1378 120,246,60,121,246,61,120,246,60,121,246,61,120,246,60,121,246,57,118,245,57,
1379 118,245,57,118,245,57,118,245,57,118,245,57,118,245,57,118,245,57,118,245,55,
1380 116,241,55,116,241,55,116,243,55,116,243,55,116,241,55,116,241,55,116,243,54,
1381 114,244,53,110,243,53,110,243,53,109,244,54,111,244,54,111,244,54,111,242,54,
1382 111,240,54,112,238,53,111,237,60,118,241,59,118,236,50,109,225,51,111,225,61,
1383 121,235,58,117,233,49,110,227,38,100,223,46,105,231,24,78,200,66,115,233,60,106,
1384 217,76,115,218,78,111,204,90,114,200,120,136,214,95,102,172,102,102,162,74,67,
1385 119,81,68,114,125,109,146,167,153,179,255,249,255,224,213,207,255,250,234,234,
1386 220,209,224,211,205,232,223,228,185,182,199,83,86,117,128,136,182,75,90,147,103,
1387 123,192,61,86,170,78,108,204,68,102,209,47,84,199,81,119,242,40,77,207,73,106,
1388 245,73,105,248,59,94,236,45,84,223,43,90,222,48,101,231,45,104,232,33,98,224,38,
1389 106,233,40,107,238,41,104,243,38,99,242,41,97,246,45,96,249,45,91,249,45,91,247,
1390 40,95,239,39,96,235,38,97,233,36,95,231,36,95,231,36,95,231,34,93,229,34,93,
1391 229,31,90,226,31,90,226,29,88,224,27,86,222,27,86,222,29,88,224,31,90,226,31,90,
1392 226,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,
1393 224,31,90,226,31,90,226,28,87,223,29,88,224,27,86,222,24,83,219,22,81,217,20,82,
1394 217,13,77,213,11,77,213,61,118,247,60,119,247,61,118,247,60,119,247,61,118,247,
1395 60,119,247,61,119,245,60,119,245,61,118,247,60,119,247,61,118,247,60,119,247,
1396 61,118,247,60,119,247,61,118,247,60,119,247,57,118,243,57,118,243,57,118,245,
1397 57,118,245,57,118,243,57,118,243,57,118,245,57,118,245,55,116,243,56,117,244,
1398 55,116,243,55,116,243,55,116,241,56,117,242,55,116,243,53,113,243,53,109,244,
1399 53,109,244,53,109,246,53,109,244,54,111,244,54,111,242,54,111,240,54,112,238,
1400 51,109,235,60,118,241,62,122,242,53,114,229,51,111,225,56,116,228,58,118,230,
1401 59,115,226,92,144,254,25,72,180,130,172,255,49,85,179,70,100,188,94,117,195,
1402 117,132,197,185,192,247,197,195,245,194,186,227,247,230,255,255,230,255,236,203,
1403 220,234,198,208,238,202,202,255,231,219,246,231,200,255,247,207,224,204,167,192,
1404 171,140,182,165,145,191,180,174,110,107,114,28,26,47,109,108,142,132,135,180,
1405 118,124,184,136,149,219,85,102,182,57,74,162,116,135,230,68,87,190,73,88,203,76,
1406 92,213,70,92,214,67,95,218,69,107,230,70,115,240,50,103,231,25,84,214,42,104,
1407 239,39,102,243,41,101,249,44,101,252,41,96,249,45,96,250,47,93,251,45,91,246,40,
1408 95,239,39,96,235,38,97,233,38,97,233,36,95,231,36,95,231,37,96,232,34,93,229,
1409 34,93,229,31,90,226,29,88,224,29,88,224,29,88,224,29,88,224,31,90,226,34,93,
1410 229,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,224,29,88,
1411 224,31,90,226,31,90,226,28,87,223,29,88,224,27,86,222,24,83,219,24,83,219,24,83,
1412 219,20,82,217,20,82,217,63,120,249,63,120,249,63,120,249,63,120,249,63,120,249,
1413 63,120,249,63,121,247,63,121,247,63,120,249,63,120,249,63,120,249,63,120,249,
1414 63,120,249,63,120,249,63,120,249,62,121,249,61,120,246,60,121,246,60,121,248,
1415 60,121,248,60,121,246,60,121,246,60,121,248,60,121,248,57,118,245,57,118,245,
1416 57,118,245,57,118,245,57,118,243,57,118,243,57,117,247,56,116,248,58,114,249,
1417 59,115,252,58,114,251,58,114,251,58,114,249,59,116,247,59,116,247,59,117,243,
1418 47,105,230,51,109,232,54,113,233,55,116,231,56,116,228,58,118,228,57,115,222,
1419 59,108,210,87,123,217,71,99,182,57,81,155,127,146,212,186,201,255,200,208,255,
1420 252,250,255,227,218,249,248,232,255,214,191,209,235,204,212,245,207,206,211,166,
1421 160,217,171,158,235,192,173,232,197,167,255,246,205,255,246,197,255,230,183,113,
1422 84,44,255,248,217,205,187,167,10,0,0,255,251,255,157,141,154,125,111,134,210,
1423 200,235,175,169,213,87,85,135,103,102,160,102,102,166,111,113,187,88,90,173,91,
1424 96,187,90,100,197,77,96,198,73,101,211,69,108,225,54,102,226,36,91,220,47,104,
1425 243,45,103,247,43,100,251,45,100,253,46,100,252,44,95,248,48,95,247,48,95,245,
1426 43,98,240,41,99,235,38,97,233,38,97,233,38,97,233,36,95,231,36,95,231,36,95,
1427 231,34,93,229,34,93,229,31,90,226,31,90,226,31,90,226,31,90,226,34,93,229,34,93,
1428 229,31,90,226,31,90,226,31,90,226,31,90,226,31,90,226,31,90,226,31,90,226,31,90,
1429 226,31,90,226,31,90,226,31,90,226,29,88,224,29,88,224,27,86,222,27,86,222,24,83,
1430 219,31,90,226,31,90,226,63,120,249,63,120,249,63,120,249,63,120,249,63,120,249,
1431 63,120,249,63,120,249,63,120,249,63,120,249,63,120,249,63,120,249,63,120,249,
1432 63,120,249,63,120,249,63,120,249,62,121,249,61,120,246,60,121,246,60,121,246,
1433 60,121,246,60,121,246,60,121,246,60,121,246,60,121,246,57,118,243,57,118,243,
1434 57,118,245,57,118,245,57,118,243,57,118,243,57,117,247,56,116,248,58,114,251,
1435 59,115,254,59,115,254,58,114,253,58,114,249,58,115,246,61,115,247,60,115,242,
1436 58,113,239,51,110,230,50,109,227,56,116,230,60,122,231,57,118,224,53,108,211,
1437 57,98,188,106,125,193,113,119,169,192,196,234,251,252,255,206,203,230,255,250,
1438 255,192,171,186,255,233,242,255,247,250,234,203,200,213,173,161,221,176,157,215,
1439 165,140,245,198,170,255,235,203,255,228,192,255,231,192,247,208,167,125,86,47,
1440 164,128,92,188,158,132,241,216,196,255,250,236,180,157,149,255,232,229,169,140,
1441 144,204,181,189,201,179,192,186,165,182,226,207,229,176,157,185,125,111,146,142,
1442 133,178,142,139,192,122,126,189,86,98,174,56,77,166,50,82,185,55,96,212,56,105,
1443 233,48,102,237,46,103,246,45,101,248,44,100,247,45,100,244,47,100,242,46,97,238,
1444 46,98,236,42,98,235,41,99,235,40,99,235,38,97,233,38,97,233,38,97,233,36,95,
1445 231,36,95,231,36,95,231,36,95,231,34,93,229,34,93,229,34,93,229,34,93,229,36,95,
1446 231,36,95,231,31,90,226,31,90,226,31,90,226,31,90,226,31,90,226,31,90,226,31,90,
1447 226,31,90,226,31,90,226,31,90,226,31,90,226,29,88,224,29,88,224,30,89,225,29,88,
1448 224,27,86,222,24,83,219,24,83,219,68,123,252,68,123,252,68,123,252,68,123,252,
1449 68,123,252,68,123,252,68,123,252,68,123,252,68,123,252,68,123,252,68,123,252,
1450 68,123,252,68,123,252,68,123,252,68,123,252,66,123,252,63,122,248,62,123,248,
1451 62,123,248,62,123,248,62,123,248,62,123,248,62,123,248,62,123,248,60,121,246,
1452 60,121,246,60,121,248,60,121,246,60,121,246,60,121,246,60,121,248,58,118,250,
1453 53,109,246,54,110,249,54,109,251,54,110,249,53,109,244,54,111,242,54,111,240,
1454 56,111,238,72,127,253,61,117,238,56,113,229,58,115,228,59,117,225,60,115,216,
1455 67,116,208,88,120,193,194,197,242,254,240,255,255,244,254,255,243,247,255,249,
1456 251,207,183,181,240,205,201,247,210,201,227,194,179,211,176,154,194,150,123,224,
1457 175,143,239,187,150,245,197,159,254,216,177,222,186,150,244,203,171,168,124,95,
1458 255,240,212,124,78,52,255,230,208,29,0,0,255,238,220,133,96,80,184,142,128,235,
1459 195,183,248,214,202,255,230,219,181,147,137,125,91,82,213,180,175,213,184,186,
1460 143,123,134,157,145,165,160,154,188,131,135,183,96,109,179,70,94,182,62,96,203,
1461 55,97,218,55,105,236,49,102,240,49,104,246,47,104,245,45,101,238,45,102,235,48,
1462 101,233,48,101,233,45,101,236,41,99,235,40,99,235,40,99,235,38,97,233,38,97,233,
1463 38,97,233,38,98,231,38,97,233,38,97,233,36,95,231,34,93,229,34,93,229,36,95,
1464 231,38,97,233,38,97,233,34,93,229,34,93,229,34,93,229,34,93,229,34,93,229,34,93,
1465 229,34,93,229,34,93,229,31,90,226,31,90,226,31,90,226,31,90,226,31,90,226,29,88,
1466 224,29,88,224,30,89,225,22,81,217,22,82,215,69,122,252,69,122,252,69,122,252,69,
1467 122,252,69,122,252,69,122,252,69,122,254,69,122,254,69,122,252,69,122,252,69,
1468 122,252,69,122,252,69,122,252,69,122,252,69,122,252,68,123,252,63,122,248,62,
1469 123,248,62,123,248,62,123,248,62,123,248,62,123,248,62,123,248,62,123,248,60,
1470 121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,121,246,60,121,248,58,
1471 118,250,54,110,247,54,109,251,54,110,249,54,110,247,52,110,243,53,112,240,53,
1472 112,240,54,112,237,65,123,246,63,119,238,62,117,233,61,115,224,61,112,217,72,
1473 119,211,114,153,228,169,191,241,255,250,255,221,193,192,247,207,197,145,103,89,
1474 255,246,234,255,240,223,248,203,180,255,215,188,255,223,192,255,227,192,213,169,
1475 132,218,169,129,240,191,150,235,190,148,255,218,176,248,215,182,234,206,185,255,
1476 246,234,184,132,119,177,117,106,211,152,138,169,112,95,217,160,143,143,88,68,
1477 226,171,150,211,161,136,144,105,76,186,147,116,209,164,133,177,131,98,190,145,
1478 112,133,94,65,145,114,94,158,135,127,165,150,157,145,139,165,115,121,169,90,107,
1479 177,74,100,193,57,95,206,59,104,229,54,104,237,47,103,238,46,104,237,46,105,233,
1480 45,103,228,48,104,227,47,102,228,45,102,235,44,101,240,41,98,237,41,99,235,40,
1481 99,235,38,98,231,38,98,231,38,98,230,40,100,233,38,98,231,36,96,229,36,96,229,
1482 36,95,231,36,95,231,39,96,235,41,98,237,34,93,229,34,93,229,34,93,229,34,93,
1483 229,34,93,229,34,93,229,34,93,229,34,93,229,31,90,226,32,91,227,31,90,226,31,90,
1484 226,31,90,226,31,90,226,31,90,226,31,90,226,29,89,222,29,89,221,69,122,252,69,
1485 122,252,69,122,252,69,122,252,69,122,252,69,122,252,69,122,254,69,122,254,69,
1486 122,252,69,122,252,69,122,252,69,122,252,69,122,252,69,122,252,69,122,252,68,
1487 123,252,63,122,250,62,123,248,62,123,250,62,123,248,62,123,248,62,123,248,62,
1488 123,248,62,123,248,61,120,246,60,121,246,61,120,246,60,122,245,60,122,245,59,
1489 121,244,60,121,246,61,120,248,58,114,249,59,115,252,57,115,248,56,116,246,55,
1490 119,242,54,120,240,54,118,241,56,118,239,51,110,230,62,115,231,73,116,228,73,
1491 111,210,70,102,189,96,123,190,173,192,235,249,254,255,226,208,206,255,245,229,
1492 240,192,170,251,201,178,225,184,162,236,196,171,145,96,66,247,198,165,251,211,
1493 176,255,238,203,241,191,154,240,186,148,255,212,173,242,197,158,255,220,184,255,
1494 227,196,255,236,219,24,0,0,54,0,0,87,23,13,84,22,7,249,186,168,173,111,90,245,
1495 183,160,253,196,169,254,203,172,255,241,206,252,208,169,214,167,125,203,152,109,
1496 175,124,79,255,208,166,221,179,141,197,162,134,154,124,113,105,84,91,75,66,95,
1497 77,78,132,85,98,177,82,106,206,69,102,218,61,102,230,55,105,236,47,104,235,47,
1498 106,236,42,103,230,44,105,230,43,103,233,44,101,240,45,100,244,45,100,244,42,99,
1499 238,40,99,235,38,98,230,36,100,226,37,101,227,39,103,227,37,101,225,37,97,227,
1500 35,95,227,36,94,228,38,95,234,41,96,238,43,98,240,35,92,231,35,92,231,35,92,
1501 231,34,93,229,35,92,231,34,93,229,35,92,231,35,93,229,33,90,229,32,89,228,32,89,
1502 228,31,90,228,32,89,228,31,90,228,31,90,228,31,90,226,26,86,219,26,86,218,63,
1503 118,247,65,120,249,68,123,252,70,125,254,70,125,254,70,125,254,70,124,255,68,
1504 122,254,68,123,252,68,123,252,68,123,250,65,120,247,65,120,249,63,118,247,63,
1505 118,247,61,118,247,60,119,247,63,122,250,64,123,253,65,124,252,65,124,252,62,
1506 121,249,62,121,249,60,119,245,70,128,254,66,126,250,65,123,248,62,122,246,59,
1507 119,239,58,118,238,57,117,239,55,113,238,56,113,242,67,126,252,65,130,250,48,
1508 118,230,41,115,222,50,124,231,51,123,234,46,111,227,73,130,246,66,109,222,111,
1509 136,239,87,98,180,202,201,255,208,199,226,248,234,234,251,232,217,239,212,193,
1510 247,215,192,255,229,203,250,210,184,254,217,190,255,225,199,222,176,150,225,175,
1511 148,247,193,167,220,164,139,221,161,135,225,165,137,214,157,128,230,176,148,255,
1512 213,187,255,227,200,255,235,210,183,147,123,223,172,151,125,71,47,150,98,74,189,
1513 138,111,190,134,107,252,198,170,244,195,165,255,225,192,242,193,160,255,208,172,
1514 254,208,172,255,219,181,222,170,131,240,187,145,196,142,98,178,126,87,122,72,49,
1515 103,60,54,65,34,49,35,14,53,78,67,133,99,101,188,56,70,177,66,92,213,69,108,239,
1516 55,105,240,38,97,235,33,100,240,27,99,237,23,90,231,55,111,255,48,99,250,33,84,
1517 235,29,84,228,37,95,231,39,103,229,31,97,217,26,93,208,40,107,220,40,107,220,42,
1518 107,225,41,100,226,43,100,233,42,95,235,44,94,241,44,94,241,38,90,235,36,91,233,
1519 36,91,233,35,92,231,36,91,233,35,92,231,36,91,233,36,92,231,41,96,238,38,93,
1520 235,33,88,230,30,87,228,29,84,226,30,87,228,32,89,230,34,91,230,27,85,221,27,85,
1521 219,61,118,247,63,120,249,66,123,252,68,125,254,68,125,254,68,125,254,68,125,
1522 255,66,123,254,66,123,252,66,123,252,66,123,252,63,120,249,63,120,249,63,120,
1523 249,60,117,246,61,118,247,60,119,249,62,121,251,64,121,252,66,123,254,65,124,
1524 252,62,121,249,63,120,249,61,119,245,67,125,251,67,125,250,65,123,248,62,120,
1525 243,62,122,242,60,121,238,61,120,238,58,118,238,59,119,241,63,125,244,61,128,
1526 241,55,127,237,55,129,236,56,130,237,57,127,238,57,117,227,79,127,235,32,64,163,
1527 83,94,176,122,114,174,172,147,176,255,227,228,176,138,115,255,227,194,254,223,
1528 194,255,247,221,239,209,183,255,228,201,255,218,191,217,176,148,255,226,200,243,
1529 191,167,242,184,162,249,187,164,255,191,169,237,175,152,230,169,148,255,201,178,
1530 255,209,186,221,177,152,255,232,206,100,59,31,194,144,117,171,120,93,242,195,
1531 167,255,231,201,130,77,46,186,135,104,235,188,158,255,210,180,236,186,153,223,
1532 173,140,235,186,153,255,215,179,241,187,153,220,162,124,219,158,114,202,139,98,
1533 139,78,50,110,57,43,61,20,24,27,0,22,50,31,77,65,55,124,109,110,202,78,92,199,
1534 55,84,204,50,93,223,49,102,240,38,104,244,37,108,250,42,108,255,52,106,255,47,
1535 96,250,37,86,240,38,90,236,38,96,232,41,105,229,36,103,220,29,99,211,37,108,
1536 216,40,108,219,41,106,222,41,101,225,45,99,233,44,95,236,45,92,240,46,93,241,42,
1537 92,239,40,92,237,38,93,235,38,93,235,38,93,235,38,93,235,38,93,235,38,93,235,
1538 42,95,237,40,93,235,33,88,232,31,86,230,31,86,230,31,86,230,32,89,230,32,89,
1539 228,33,89,228,33,89,226,63,120,249,63,120,249,66,123,252,68,125,254,68,126,252,
1540 68,126,252,68,125,254,68,125,254,66,123,252,66,123,252,66,123,252,66,123,252,
1541 63,120,249,63,120,249,63,120,249,61,118,247,63,122,252,63,122,252,66,123,254,
1542 66,123,254,65,122,251,66,123,252,63,120,249,63,121,247,65,123,249,65,123,248,
1543 65,123,248,63,121,244,62,123,240,62,123,238,62,123,238,61,124,238,64,130,243,
1544 57,124,237,57,126,243,63,134,252,62,131,250,57,122,240,62,119,234,75,122,228,
1545 60,95,187,133,153,226,187,187,239,117,98,128,198,161,168,189,141,129,229,173,
1546 148,215,164,133,255,228,200,210,184,157,255,249,225,255,238,213,249,212,185,255,
1547 233,204,247,196,169,255,208,183,255,217,193,255,196,172,233,171,148,212,150,127,
1548 211,150,129,252,196,173,255,217,194,254,208,184,242,197,168,238,191,163,195,141,
1549 117,255,201,178,225,174,145,169,116,85,209,154,124,241,186,156,255,227,197,255,
1550 215,185,255,218,189,255,205,174,255,203,171,255,200,169,255,206,176,247,187,153,
1551 214,151,110,193,128,90,128,62,36,94,38,23,38,3,1,14,0,2,7,0,15,5,0,40,77,75,140,
1552 86,92,178,82,101,204,61,94,209,49,93,218,49,103,235,50,109,247,50,108,252,50,
1553 100,251,50,97,249,49,99,248,47,99,244,44,100,237,44,105,232,41,105,228,35,104,
1554 221,38,107,224,37,106,223,41,106,226,45,104,230,46,99,231,48,97,236,49,95,240,
1555 46,94,240,45,96,241,45,97,242,43,98,242,43,98,242,43,98,240,43,98,240,43,98,
1556 242,43,98,242,38,93,235,38,93,235,36,91,233,33,88,230,30,87,228,30,87,228,32,89,
1557 230,32,89,228,35,91,230,35,91,228,63,120,249,66,123,252,68,125,254,68,125,254,
1558 70,128,254,70,128,254,68,125,254,69,126,255,69,126,255,68,125,254,66,123,254,
1559 66,123,254,66,123,252,64,121,250,63,120,249,63,120,249,63,122,252,63,122,252,
1560 66,123,254,68,125,255,68,125,254,66,123,252,63,120,249,63,121,247,63,121,247,
1561 63,121,246,63,121,246,65,123,246,65,126,243,65,126,241,64,125,240,64,127,240,
1562 61,131,242,52,124,235,59,128,247,64,130,253,60,119,247,53,103,228,68,107,224,
1563 97,125,224,98,115,185,95,101,149,234,225,254,24,0,7,211,167,156,210,152,130,
1564 255,192,167,255,197,171,255,243,216,255,225,200,243,217,194,255,241,219,243,203,
1565 178,216,168,145,243,193,170,183,131,110,215,160,140,176,119,99,205,143,122,255,
1566 197,175,255,204,179,255,196,172,254,196,172,255,204,178,255,223,197,172,118,92,
1567 61,3,0,78,20,0,150,96,72,255,212,188,215,159,136,179,124,103,193,145,123,147,
1568 101,78,203,151,129,219,163,140,223,166,139,192,132,106,248,188,162,255,193,165,
1569 205,139,107,189,123,91,135,69,47,105,52,38,42,9,4,13,0,0,5,0,5,0,0,16,2,0,38,81,
1570 81,141,136,144,225,103,123,218,64,95,201,66,106,220,65,110,235,43,92,223,48,93,
1571 234,51,96,241,55,103,247,52,103,244,45,101,236,43,101,234,43,106,235,45,110,236,
1572 41,109,234,41,109,234,42,106,232,43,102,232,49,101,236,48,98,233,49,96,236,48,
1573 97,238,43,94,237,42,94,239,42,94,239,40,95,239,40,95,237,40,95,237,40,95,239,
1574 40,95,239,38,93,235,38,93,235,36,91,233,36,91,233,32,89,230,32,89,230,32,89,
1575 230,32,89,228,30,86,225,30,86,223,63,120,249,66,123,252,68,125,254,70,127,255,
1576 70,128,254,70,128,253,70,128,254,68,126,252,68,125,254,68,125,254,68,125,254,
1577 66,123,252,66,123,252,66,123,252,63,120,249,63,120,249,64,121,252,66,123,254,
1578 68,125,255,68,125,255,67,126,254,67,126,254,66,123,252,63,121,247,65,123,249,
1579 65,123,248,64,124,248,64,124,246,66,127,244,67,128,243,66,129,243,64,130,242,
1580 51,123,233,54,126,237,63,129,252,67,124,255,63,109,246,71,101,233,98,116,228,
1581 134,139,223,161,153,202,127,115,137,8,0,5,23,0,0,244,196,173,157,93,65,255,213,
1582 191,239,174,154,235,181,155,218,172,148,212,174,155,211,172,155,114,67,49,54,7,
1583 0,66,22,11,39,0,0,83,35,23,58,2,0,64,0,0,85,14,0,97,27,1,126,55,27,187,117,91,
1584 233,166,140,239,174,152,219,157,136,152,87,67,121,58,40,60,4,0,70,18,5,52,0,0,
1585 48,0,0,45,2,0,34,0,0,55,1,0,60,0,0,72,9,0,71,6,0,106,41,21,70,4,0,141,70,50,
1586 131,63,44,93,30,15,83,31,20,38,7,4,11,0,0,4,0,0,0,0,7,1,0,16,32,28,61,113,113,
1587 165,129,134,202,108,120,202,89,110,203,76,105,209,62,98,212,56,96,220,58,101,
1588 231,59,106,238,58,108,241,51,105,239,47,105,239,47,104,243,46,108,245,43,107,
1589 243,42,106,240,45,104,240,45,101,236,49,101,236,50,100,233,50,98,232,48,98,233,
1590 43,94,235,42,95,237,42,94,239,42,94,239,40,95,237,40,95,237,40,95,239,40,95,
1591 239,38,93,235,38,93,235,38,93,237,38,93,237,36,91,233,36,91,233,32,89,230,32,89,
1592 228,30,86,225,30,86,223,66,123,252,66,123,252,68,125,254,70,128,254,72,130,255,
1593 72,130,255,70,128,254,70,128,254,70,127,255,68,125,254,68,125,254,68,125,254,
1594 66,123,252,66,123,252,66,123,252,66,123,252,68,122,254,68,122,254,70,124,255,
1595 70,125,254,68,125,254,68,125,254,68,123,252,68,123,250,67,125,250,67,125,250,
1596 67,125,250,67,125,248,68,127,245,66,125,241,65,126,241,63,129,242,43,115,226,
1597 57,127,241,66,125,251,69,116,246,82,112,246,102,116,238,126,121,221,138,123,
1598 190,102,77,107,37,10,17,30,8,10,22,0,0,255,206,175,239,173,139,247,176,154,220,
1599 153,134,255,219,195,89,35,9,46,0,0,36,0,0,39,0,0,104,58,45,42,1,0,28,0,0,38,0,0,
1600 57,0,0,87,19,10,103,30,13,114,38,14,166,89,59,194,114,87,157,85,61,62,3,0,108,
1601 52,37,63,4,0,142,84,72,92,40,29,36,0,0,53,5,3,46,2,3,40,0,0,49,5,4,74,21,17,78,
1602 19,11,156,94,83,247,183,171,255,197,182,185,122,107,71,3,0,69,2,0,55,0,0,50,5,
1603 0,31,1,0,11,0,0,4,0,0,1,0,0,4,0,5,3,0,11,7,0,31,83,77,121,114,113,171,89,92,
1604 163,72,82,167,83,104,197,70,102,205,64,102,213,59,101,219,56,102,224,52,103,231,
1605 49,101,237,49,101,246,46,102,247,46,107,250,43,104,247,45,102,245,47,103,242,
1606 48,100,235,50,100,231,51,100,229,50,100,231,40,92,228,40,93,233,40,93,235,40,
1607 93,235,38,93,235,38,93,235,38,93,235,38,93,235,38,93,235,38,93,235,40,95,237,
1608 40,95,237,39,94,236,36,92,231,33,90,231,32,89,228,37,93,230,37,93,230,66,123,
1609 252,69,126,255,70,128,254,70,128,254,72,130,255,72,130,255,70,128,254,70,128,
1610 254,70,128,254,71,129,255,68,125,254,68,125,254,68,125,254,66,123,252,66,123,
1611 252,68,123,252,69,122,254,71,124,255,71,124,254,73,126,254,73,126,254,71,124,
1612 252,71,124,254,69,122,250,75,130,255,73,129,252,73,129,252,70,126,247,71,126,
1613 245,69,124,241,66,122,241,63,124,241,55,121,241,68,130,251,71,122,247,70,106,
1614 229,100,115,232,133,128,228,122,100,172,87,56,100,24,0,5,37,1,3,50,18,19,30,0,0,
1615 241,186,155,255,190,153,255,201,173,226,155,133,49,0,0,110,54,29,99,39,15,124,
1616 67,47,81,32,18,45,2,0,67,26,20,41,0,0,50,0,0,66,7,3,84,13,7,77,0,0,83,3,0,153,
1617 72,43,191,107,79,141,73,50,35,0,0,21,0,0,58,15,9,49,2,0,44,0,0,40,0,0,29,0,0,
1618 44,4,4,41,1,1,51,10,8,49,1,0,46,0,0,52,0,0,76,19,12,62,3,0,55,0,0,64,3,0,61,3,
1619 1,47,0,0,43,8,6,31,7,7,12,0,0,10,1,2,6,0,0,11,2,3,6,0,2,4,0,7,10,1,22,70,54,
1620 91,97,83,132,100,94,156,96,103,175,91,112,193,74,105,196,59,94,194,54,94,205,
1621 55,99,220,54,101,233,52,98,243,43,93,244,49,103,253,49,103,253,47,101,249,48,
1622 100,245,50,102,237,50,101,229,50,101,228,51,102,229,45,99,231,42,98,233,42,98,
1623 235,42,98,237,42,98,237,42,98,237,42,98,237,42,98,237,37,93,232,37,93,232,39,95,
1624 234,39,95,234,39,95,234,37,93,230,33,89,228,30,86,223,37,93,230,37,93,230,66,
1625 123,252,68,126,252,70,128,254,72,130,255,72,130,255,72,130,255,72,130,255,70,
1626 128,254,70,128,254,70,128,254,70,127,255,68,125,254,69,126,255,66,124,250,66,
1627 124,250,68,123,252,71,121,254,73,123,255,73,123,254,75,126,254,75,126,254,73,
1628 124,252,73,124,252,71,122,250,78,132,255,76,130,254,78,130,252,76,128,250,73,
1629 125,245,71,123,241,69,121,241,63,117,239,71,129,254,81,133,255,75,114,233,72,93,
1630 202,113,114,206,148,131,201,103,72,116,39,0,21,52,5,13,52,6,6,38,0,0,36,0,0,87,
1631 24,0,255,203,161,103,29,0,215,144,112,66,4,0,102,42,18,127,62,34,61,0,0,41,0,0,
1632 43,0,0,36,0,0,44,0,0,48,0,0,56,0,0,71,2,0,92,14,2,110,28,6,139,55,27,140,55,26,
1633 89,23,1,21,0,0,16,0,0,36,0,0,34,0,0,42,2,2,39,1,0,45,6,7,39,1,0,29,0,0,41,0,0,
1634 44,0,0,60,10,9,53,0,0,51,0,0,53,0,0,141,87,85,51,1,0,44,0,0,29,0,0,29,1,0,19,0,
1635 0,8,0,0,7,0,0,6,0,0,9,0,0,15,5,4,9,0,1,7,0,4,23,4,24,121,100,131,153,138,177,
1636 113,110,157,106,118,176,81,104,172,63,90,169,57,90,183,59,96,203,62,100,225,54,
1637 95,235,43,87,236,53,100,250,52,102,253,51,103,251,49,101,246,50,102,237,49,102,
1638 230,49,103,227,48,102,226,46,101,230,44,101,234,44,100,235,44,100,235,44,100,
1639 235,44,100,235,44,100,235,44,100,235,35,91,226,37,93,228,39,95,230,42,98,233,39,
1640 95,230,37,93,228,33,89,224,30,86,221,33,89,226,33,89,226,70,128,254,70,128,253,
1641 70,128,253,68,126,251,68,126,252,66,124,250,66,123,252,66,123,252,70,128,254,
1642 70,128,254,72,130,255,72,130,255,72,130,255,74,132,255,76,131,255,76,131,255,
1643 73,123,254,74,122,255,74,123,254,75,124,253,75,124,253,79,128,255,79,128,255,
1644 79,128,255,71,122,247,70,121,246,74,124,249,74,124,247,74,124,245,75,124,245,
1645 75,123,247,78,126,250,86,131,255,88,124,244,59,82,186,146,152,236,156,143,197,
1646 99,72,105,29,0,12,52,7,14,52,0,0,62,6,7,30,0,0,32,0,0,129,59,25,233,153,104,
1647 255,193,140,154,86,39,62,0,0,81,15,0,147,77,51,168,103,81,51,0,0,40,0,0,37,0,0,
1648 39,0,0,38,0,0,51,0,0,67,0,0,89,12,2,123,43,18,197,114,84,240,155,124,84,16,0,
1649 29,0,0,14,0,0,39,0,0,41,0,0,43,3,3,35,0,0,40,2,1,44,4,4,40,0,0,33,0,0,47,0,0,
1650 54,0,0,99,40,34,99,40,34,51,0,0,44,0,0,33,0,0,30,0,0,26,0,0,19,0,0,15,0,0,9,0,
1651 0,4,0,0,4,0,0,7,0,0,14,4,3,16,7,8,6,0,0,8,0,4,63,49,62,49,35,52,4,0,18,18,21,
1652 54,0,13,57,61,78,134,75,97,170,59,84,177,67,97,209,52,87,217,70,109,249,61,106,
1653 251,56,102,250,53,100,248,52,103,246,59,113,247,58,116,242,54,110,233,47,103,
1654 226,40,97,226,41,98,229,42,99,232,41,98,231,40,98,231,40,98,231,41,98,231,41,98,
1655 231,43,100,233,43,100,233,43,100,233,41,98,231,39,97,230,37,95,228,38,95,228,38,
1656 95,228,37,93,228,37,93,230,72,130,255,72,130,255,72,130,255,70,128,253,70,128,
1657 254,70,128,254,68,125,254,68,125,254,68,126,252,70,128,254,70,128,254,70,128,
1658 254,72,130,255,72,130,255,74,129,255,77,131,255,74,124,255,74,123,254,77,124,
1659 255,76,123,253,76,125,254,79,128,255,79,128,255,79,128,255,76,126,251,74,124,
1660 249,75,123,249,75,123,249,75,123,247,74,123,244,77,123,245,80,120,242,85,115,
1661 239,64,85,194,126,134,219,111,106,164,132,112,139,84,53,61,27,0,0,53,5,3,69,9,9,
1662 63,5,4,53,13,13,43,0,0,143,70,35,216,134,84,231,159,101,210,143,91,112,46,12,
1663 100,32,9,93,26,0,65,2,0,49,0,0,53,9,8,42,0,0,47,6,4,38,0,0,51,1,0,77,16,13,67,0,
1664 0,77,5,0,245,171,142,235,159,135,168,107,89,28,0,0,15,0,0,49,5,4,57,7,6,44,4,
1665 2,30,0,0,40,0,0,34,0,0,36,1,0,46,11,9,53,9,10,48,0,0,49,0,0,65,5,0,47,0,0,45,
1666 5,5,28,0,0,22,1,0,20,2,0,13,0,0,10,0,0,9,0,1,7,1,3,5,0,0,15,5,6,7,0,0,6,0,0,6,
1667 0,0,7,0,0,8,0,0,19,3,6,8,0,4,0,0,12,10,14,39,0,1,37,76,86,139,105,119,194,66,
1668 86,181,109,134,250,37,71,197,69,108,245,63,106,245,55,102,244,55,107,245,57,
1669 114,245,57,116,242,52,112,236,48,108,232,43,100,229,43,100,231,43,100,231,43,
1670 100,231,42,101,231,42,101,231,43,100,231,43,100,231,43,100,231,43,100,231,43,
1671 100,231,41,98,229,40,99,229,40,99,229,38,95,226,38,95,228,33,89,224,33,89,226,
1672 74,132,255,74,132,255,74,132,255,72,130,255,72,130,255,72,130,255,70,128,254,
1673 70,128,254,66,123,252,68,125,254,68,125,254,68,126,252,70,128,254,70,128,254,
1674 72,127,254,75,128,255,74,123,252,76,123,255,76,123,255,76,123,253,79,128,255,
1675 79,128,255,80,128,255,79,127,255,79,129,254,79,129,254,76,125,253,75,125,250,
1676 75,123,247,74,120,242,75,119,240,84,116,235,46,58,170,160,159,252,205,197,255,
1677 18,3,34,19,0,6,31,0,0,44,0,0,49,0,0,57,1,0,46,0,0,49,7,8,51,3,0,232,163,130,
1678 244,168,119,205,135,84,126,60,12,68,2,0,218,153,125,116,54,29,59,3,0,50,5,0,34,
1679 0,0,65,15,14,44,0,0,61,11,10,42,0,0,48,0,0,93,36,25,90,35,14,243,188,167,42,0,
1680 0,36,0,0,17,0,0,18,0,0,140,91,84,50,0,0,36,0,0,39,4,0,48,8,8,31,0,0,18,0,0,36,
1681 12,10,22,0,0,38,0,0,90,31,23,62,2,0,103,53,46,32,0,0,34,4,2,28,7,6,24,6,6,13,1,
1682 1,7,0,0,3,0,0,4,0,1,4,0,0,16,7,8,7,0,0,10,1,2,6,0,0,9,0,0,22,8,8,14,0,0,22,6,
1683 7,4,0,2,0,0,9,1,0,17,3,2,34,53,54,108,119,127,200,56,73,165,84,111,218,74,109,
1684 229,63,104,230,55,102,234,50,103,235,52,109,238,53,114,241,50,111,238,50,111,
1685 238,44,103,233,44,103,233,45,102,233,45,102,233,44,103,233,44,103,233,45,102,
1686 233,45,102,233,42,99,230,43,100,231,43,100,231,43,100,231,40,99,229,39,99,229,
1687 40,99,227,37,96,226,37,93,228,37,93,230,74,132,255,74,132,255,72,130,255,72,
1688 130,255,70,128,254,70,128,254,70,128,254,70,128,254,66,123,252,66,123,252,66,
1689 123,252,68,125,254,68,126,252,68,126,252,72,127,254,73,126,254,75,124,253,76,
1690 123,253,76,123,253,78,125,255,80,128,255,80,128,255,82,130,255,82,130,255,82,
1691 130,255,82,130,255,80,128,255,76,124,250,75,123,247,74,120,240,78,119,237,90,
1692 114,224,145,141,235,143,123,192,15,0,24,24,0,8,71,37,35,31,0,0,53,8,5,48,0,0,58,
1693 8,1,48,1,0,34,0,0,39,0,0,253,197,164,241,178,135,217,153,109,67,4,0,219,156,
1694 121,194,137,107,116,62,36,38,0,0,45,1,0,47,2,0,57,7,0,56,3,0,41,0,0,68,21,15,47,
1695 0,0,46,2,0,33,0,0,255,230,208,57,8,0,62,17,11,32,4,0,26,0,0,142,89,81,61,7,0,
1696 69,28,22,25,0,0,24,0,0,43,13,13,13,0,0,13,0,0,34,5,1,43,0,0,88,30,18,61,0,0,47,
1697 0,0,52,8,0,28,0,0,22,0,0,14,0,0,8,0,0,5,0,0,3,1,2,5,1,2,3,0,0,7,0,0,6,0,0,4,0,
1698 0,6,0,0,6,0,0,8,0,0,52,32,33,14,0,0,11,0,0,14,0,0,11,0,0,17,1,14,27,16,48,27,
1699 25,75,86,93,165,110,127,215,76,105,205,66,104,215,55,99,220,51,102,227,43,102,
1700 228,44,107,236,45,108,239,45,108,239,45,105,235,46,105,235,47,104,235,47,104,
1701 235,46,105,235,46,105,235,47,104,235,47,104,235,45,102,233,45,102,233,43,100,
1702 231,42,99,230,42,101,231,40,99,229,40,99,227,40,99,229,39,95,230,39,95,232,70,
1703 128,254,70,128,254,70,128,254,70,128,254,68,125,254,68,125,254,66,123,252,66,
1704 123,252,66,123,252,66,123,252,65,124,252,67,126,254,68,126,252,68,126,252,72,
1705 127,254,73,126,254,76,123,253,79,123,254,81,125,255,81,126,255,81,126,253,83,
1706 128,255,83,128,255,83,128,255,85,130,255,83,128,255,84,129,255,81,126,253,79,
1707 124,249,78,123,242,82,119,234,98,114,210,99,80,144,202,164,201,74,27,43,74,26,
1708 26,54,3,0,41,0,0,51,3,0,39,0,0,70,25,6,33,0,0,31,0,0,34,2,0,255,244,209,255,
1709 230,192,185,129,94,70,10,0,180,130,97,150,104,71,59,15,0,152,108,83,146,100,77,
1710 36,0,0,81,34,16,37,0,0,29,0,0,35,0,0,27,0,0,28,0,0,79,47,24,255,244,215,153,91,
1711 66,104,43,24,33,0,0,35,0,0,154,101,95,51,0,0,37,2,0,36,8,7,27,1,2,14,0,0,8,0,0,
1712 17,0,0,27,0,0,73,21,7,90,28,7,149,83,61,92,31,10,100,45,24,74,26,6,45,7,0,23,0,
1713 0,8,0,0,7,0,0,6,2,1,1,0,0,3,0,0,7,0,0,10,0,0,6,0,0,1,0,0,3,0,0,6,0,0,11,0,0,
1714 17,0,0,43,14,8,69,37,26,38,2,0,49,16,11,87,61,72,77,63,89,82,80,127,66,77,141,
1715 80,105,185,73,108,202,64,108,215,55,107,225,49,109,233,45,108,239,48,112,246,
1716 50,114,248,45,105,235,46,105,233,47,104,233,47,104,233,47,104,233,47,104,233,
1717 47,104,233,47,104,233,45,102,231,45,102,231,45,102,231,43,100,229,43,100,229,
1718 43,100,229,40,97,226,41,98,229,35,91,226,35,91,228,70,128,253,70,128,254,68,
1719 126,252,68,125,254,68,125,254,66,123,252,66,123,252,66,123,252,66,123,252,68,
1720 125,254,68,125,254,68,126,252,70,128,254,72,127,254,72,127,254,77,128,255,77,
1721 124,254,82,125,255,82,125,255,82,125,255,84,127,255,84,128,253,84,128,253,86,
1722 129,255,84,127,255,84,127,255,84,127,255,82,125,253,80,124,247,83,124,240,88,
1723 120,229,106,117,199,178,153,195,81,33,47,50,0,0,106,45,40,109,46,39,65,5,0,39,0,
1724 0,83,34,19,255,241,211,236,198,161,255,243,207,214,179,141,255,247,208,226,
1725 193,158,95,45,20,196,140,115,255,242,212,255,214,182,255,241,210,255,222,192,
1726 221,171,144,221,174,146,255,212,186,255,213,188,255,218,195,109,74,55,40,6,0,55,
1727 26,12,255,242,218,255,236,207,221,156,126,165,98,72,103,57,42,29,0,0,56,3,0,56,
1728 3,0,27,0,0,24,0,0,36,8,5,17,0,0,11,0,0,19,0,0,229,192,176,94,43,22,207,149,
1729 125,201,140,112,212,151,123,255,199,171,154,98,73,100,57,38,33,6,0,10,0,0,6,0,0,
1730 4,0,0,1,0,0,2,1,0,18,10,8,9,1,0,3,0,0,1,0,0,3,0,0,7,0,0,18,2,2,31,3,0,31,0,0,
1731 61,14,0,169,127,113,105,69,57,67,36,33,72,49,59,29,19,46,143,147,192,87,105,
1732 167,80,111,191,77,117,213,68,118,229,60,118,241,50,113,244,49,115,253,51,114,
1733 253,45,105,237,46,105,233,47,104,233,47,104,233,47,104,233,47,104,233,47,104,
1734 233,47,104,233,47,104,233,45,102,231,45,102,231,45,102,231,43,100,229,43,100,
1735 229,42,101,229,42,101,231,46,102,237,46,102,239,74,130,253,74,130,253,72,127,
1736 253,72,127,254,72,127,254,70,125,252,70,125,254,70,125,254,70,125,252,72,127,
1737 254,72,127,254,72,127,254,74,129,255,74,129,255,75,129,255,80,129,255,80,125,
1738 254,84,124,255,84,124,255,84,127,255,84,127,255,83,128,253,85,130,255,84,129,
1739 254,81,126,253,82,125,255,84,125,253,85,124,251,86,126,247,90,126,236,99,124,
1740 224,113,120,192,19,0,23,47,1,4,80,21,17,66,0,0,66,0,0,83,12,6,77,5,0,193,131,
1741 108,255,241,202,246,206,154,185,133,75,107,56,0,255,229,182,255,245,209,228,183,
1742 164,246,195,178,184,134,109,228,177,146,180,125,94,201,146,115,216,167,135,253,
1743 206,176,248,201,171,130,85,54,211,166,137,234,194,168,245,213,192,238,211,192,
1744 255,250,228,255,238,213,185,121,93,118,51,24,162,114,94,233,190,173,192,136,121,
1745 86,33,19,41,0,0,113,76,70,167,128,121,58,21,12,130,103,86,253,226,205,219,187,
1746 164,255,244,220,235,195,169,255,241,213,226,169,140,184,124,96,89,36,5,56,14,0,
1747 24,0,0,11,0,0,4,0,0,1,0,0,0,0,0,1,0,0,3,0,0,3,0,0,1,0,0,3,0,0,11,0,0,19,0,0,15,
1748 0,0,76,43,34,63,7,0,90,34,17,22,0,0,25,2,0,123,90,81,117,87,85,108,92,103,29,
1749 26,53,86,99,144,83,108,174,83,119,205,74,121,225,61,117,236,51,113,246,45,111,
1750 251,44,109,251,43,102,238,44,103,233,45,102,231,45,103,229,45,103,229,45,103,
1751 229,47,102,229,47,102,229,49,104,233,49,104,233,46,100,232,47,101,233,45,102,
1752 231,42,101,229,41,101,231,41,101,233,50,108,242,51,107,244,77,131,255,77,131,
1753 255,77,131,255,75,128,255,75,128,255,73,126,254,73,126,254,73,126,254,73,126,
1754 254,73,126,254,75,128,255,75,128,255,75,129,255,77,131,255,79,130,255,81,129,
1755 255,84,124,255,86,123,255,85,124,253,84,127,255,82,130,254,83,133,254,82,134,
1756 254,81,133,255,77,125,251,82,125,253,87,125,252,91,123,244,96,124,234,103,123,
1757 220,115,123,204,131,122,177,29,0,16,56,6,5,69,6,1,67,0,0,85,15,13,62,0,0,69,0,0,
1758 79,15,0,56,9,0,255,227,171,215,155,92,203,145,82,255,229,178,230,192,155,255,
1759 242,221,229,172,155,255,215,190,255,203,175,237,174,143,255,195,164,255,210,179,
1760 255,226,193,222,172,139,255,235,203,255,212,181,255,242,213,255,232,206,255,249,
1761 224,245,215,189,255,244,217,157,91,59,208,137,107,43,0,0,255,225,202,166,108,84,
1762 56,0,0,43,0,0,44,0,0,36,0,0,45,2,0,255,225,202,255,245,217,255,239,211,253,216,
1763 189,255,236,211,223,176,150,223,166,139,162,102,74,137,83,55,119,75,50,74,38,24,
1764 29,2,0,11,0,0,6,0,0,3,0,0,1,0,0,1,0,0,4,4,2,0,0,0,3,0,0,16,2,2,26,8,6,23,4,0,
1765 21,0,0,119,72,56,77,31,16,22,0,0,14,0,0,34,4,0,89,59,51,48,24,24,76,62,75,88,
1766 85,112,87,98,143,87,112,179,78,115,204,61,111,222,44,103,231,37,100,241,35,100,
1767 244,43,102,242,45,101,236,45,102,231,44,103,229,43,103,227,44,102,225,47,103,
1768 226,49,103,229,52,103,231,52,102,233,52,102,235,48,101,233,44,103,231,39,103,
1769 229,36,106,230,37,105,232,35,95,227,36,94,228,74,124,255,73,123,254,74,124,255,
1770 75,126,254,74,125,253,77,128,255,78,129,255,77,128,255,75,126,254,75,126,254,
1771 75,126,254,75,126,254,75,126,254,76,125,254,77,124,254,80,123,253,82,115,248,
1772 90,120,252,93,128,255,89,133,254,83,136,252,75,135,249,72,135,249,75,137,255,
1773 70,124,248,84,128,253,80,112,235,100,118,230,121,125,222,118,110,185,114,94,
1774 147,95,62,93,46,3,13,60,4,3,68,0,0,68,0,0,74,13,10,53,0,0,38,0,0,255,242,221,
1775 130,74,37,98,40,0,113,53,0,205,150,94,255,241,193,255,207,164,254,190,155,223,
1776 154,123,253,186,157,244,177,150,246,176,150,223,156,129,231,168,137,255,203,171,
1777 255,225,191,255,209,177,244,203,173,255,247,219,255,249,223,255,232,204,242,188,
1778 154,174,104,68,203,124,85,226,151,112,253,194,160,247,193,159,187,124,91,255,
1779 201,174,63,5,0,61,9,0,45,0,0,248,205,186,255,236,207,247,198,166,255,203,172,
1780 218,163,133,193,133,109,134,72,49,176,112,87,176,114,89,165,109,86,167,115,94,
1781 169,117,103,129,82,72,120,83,75,18,0,0,8,0,0,3,0,0,1,1,1,0,0,0,0,0,0,1,0,0,4,0,
1782 0,6,0,0,10,0,0,24,6,4,21,0,0,19,0,0,29,6,0,19,0,0,68,43,36,18,0,0,83,54,50,55,
1783 25,25,90,63,70,70,55,76,66,69,112,47,67,136,106,145,240,41,92,210,57,115,251,
1784 43,103,249,49,104,249,51,104,244,49,108,238,47,109,232,48,111,227,49,110,225,
1785 52,107,224,55,105,228,51,96,225,53,95,229,51,94,232,50,100,235,42,102,232,38,
1786 109,233,34,113,232,34,113,232,33,101,226,39,99,229,75,123,255,74,123,254,75,124,
1787 255,76,125,255,76,125,254,79,128,255,79,128,255,79,128,255,76,125,254,76,125,
1788 254,76,125,254,76,125,254,76,125,254,76,125,254,77,124,254,82,122,253,92,122,
1789 255,96,125,255,94,129,255,85,130,249,72,129,242,68,132,242,73,140,253,76,141,
1790 255,93,147,255,78,118,240,118,143,255,131,138,242,91,79,161,157,132,190,102,68,
1791 101,68,26,40,45,0,0,58,0,0,93,25,22,73,5,2,51,0,0,53,0,0,58,12,0,181,135,111,
1792 255,230,192,162,101,56,255,213,166,255,222,175,221,165,118,248,186,139,209,136,
1793 93,236,161,122,241,166,135,201,127,100,218,144,119,243,169,144,224,152,127,203,
1794 136,107,199,136,105,171,115,82,255,240,208,219,175,146,255,246,217,253,206,176,
1795 115,45,11,169,85,48,212,128,91,221,143,104,255,199,161,255,210,174,133,69,34,
1796 110,45,17,173,110,93,48,0,0,39,0,0,225,175,150,224,173,144,167,112,82,219,162,
1797 135,235,173,148,84,16,0,124,56,33,220,154,130,189,128,107,140,84,67,110,58,45,
1798 110,58,47,96,48,38,92,51,45,52,23,19,21,5,5,4,0,0,1,0,0,0,1,0,0,0,0,1,1,1,0,0,0,
1799 3,0,0,7,0,0,9,0,0,7,0,0,10,0,0,17,0,0,97,70,63,24,0,0,21,0,0,38,1,0,28,0,0,
1800 150,113,107,98,71,76,116,106,133,146,156,209,49,75,159,48,90,198,63,113,244,51,
1801 106,250,52,104,250,52,105,247,49,107,240,45,109,232,46,111,227,47,110,223,52,
1802 107,224,57,106,227,53,96,226,54,94,228,53,94,234,51,98,236,40,103,232,37,111,
1803 232,29,114,231,29,113,229,40,110,234,43,107,233,75,124,255,76,125,255,76,125,
1804 255,76,125,255,79,128,255,79,128,255,79,128,255,79,128,255,76,125,253,76,125,
1805 253,76,125,254,76,125,254,76,125,253,76,125,253,77,124,254,82,122,253,97,130,
1806 255,96,127,254,91,131,253,78,127,246,67,124,239,66,129,242,73,139,252,82,143,
1807 255,49,99,220,109,144,255,90,106,217,130,129,222,158,137,204,106,77,121,76,49,
1808 68,25,0,0,59,1,0,79,14,10,63,2,1,56,0,0,68,0,0,71,9,0,214,164,139,255,224,188,
1809 255,237,194,198,141,98,190,148,106,255,226,184,242,178,132,212,136,87,255,179,
1810 133,233,156,114,216,139,109,255,189,163,180,102,79,176,98,76,171,94,74,193,118,
1811 95,162,88,59,255,194,162,184,114,80,134,66,31,99,30,0,137,66,34,168,89,59,94,
1812 13,0,80,0,0,219,143,109,182,114,77,102,39,4,64,0,0,148,86,65,178,112,96,66,1,0,
1813 250,184,158,143,79,51,111,53,29,78,23,2,85,29,12,54,0,0,136,71,51,72,6,0,100,35,
1814 13,103,46,27,44,0,0,28,0,0,32,0,0,38,4,2,21,0,0,26,8,6,23,9,8,6,0,0,1,0,0,0,0,
1815 0,0,0,0,0,0,0,1,0,0,6,2,3,4,0,1,6,0,0,45,30,25,14,0,0,19,0,0,20,0,0,83,48,42,
1816 48,7,1,43,0,0,41,0,0,81,44,36,18,0,0,84,71,88,65,67,106,84,101,171,77,107,205,
1817 58,100,221,68,115,253,55,104,245,52,105,245,47,107,240,46,112,235,42,111,228,
1818 45,112,225,50,109,227,55,107,229,55,98,229,57,96,233,56,97,237,51,98,236,45,
1819 105,235,36,110,231,28,113,230,29,113,229,38,106,231,41,102,229,76,125,254,79,
1820 128,255,79,128,255,79,128,255,79,128,255,79,128,255,79,128,255,79,128,255,79,
1821 128,255,79,128,255,79,128,255,79,128,255,79,128,255,79,128,255,80,128,255,83,
1822 126,255,94,132,255,97,133,255,91,133,254,78,127,246,72,129,245,70,131,246,76,
1823 137,252,83,138,255,89,131,251,96,123,236,157,165,255,77,68,149,199,176,228,134,
1824 105,133,22,0,4,34,0,0,62,2,1,85,17,14,57,0,0,59,0,0,88,20,17,68,4,0,255,217,188,
1825 255,219,179,178,119,79,204,146,108,34,0,0,255,233,194,238,167,121,235,153,103,
1826 209,128,81,240,161,120,160,81,50,134,57,31,235,157,134,133,55,33,91,10,0,82,1,0,
1827 217,137,110,158,78,45,201,118,84,183,103,68,253,177,145,131,56,27,80,4,0,186,
1828 111,82,114,41,9,200,130,96,209,141,104,255,214,179,113,56,29,54,0,0,66,1,0,98,
1829 30,9,192,121,93,204,134,108,102,40,17,42,0,0,53,0,0,75,16,0,175,110,90,114,47,
1830 28,146,83,65,65,9,0,88,43,37,38,3,1,24,0,0,31,9,11,11,0,0,10,0,0,8,0,0,6,0,0,1,
1831 0,0,0,0,0,0,0,0,1,0,0,1,0,0,3,1,2,2,0,1,4,0,0,13,0,0,29,8,3,18,0,0,172,147,
1832 142,36,0,0,45,0,0,76,23,17,48,0,0,36,0,0,143,115,111,11,0,2,113,107,135,155,160,
1833 218,94,110,195,89,117,227,39,78,205,59,105,240,54,107,245,50,110,242,48,113,239,
1834 45,115,236,46,115,234,50,112,233,55,109,235,51,98,230,58,100,236,58,99,239,53,
1835 101,237,45,105,235,38,109,233,31,112,230,33,114,232,31,99,224,34,95,222,82,130,
1836 255,80,128,255,80,128,255,80,128,255,79,129,254,80,130,255,79,129,254,79,129,
1837 254,79,129,254,79,129,254,80,128,254,79,129,254,79,129,254,79,129,254,80,128,
1838 254,82,127,254,86,127,255,88,129,253,90,134,255,88,137,255,78,133,250,77,132,
1839 251,80,130,251,90,132,252,97,128,245,142,159,255,104,101,192,125,110,175,108,89,
1840 121,20,0,7,39,7,12,47,3,2,62,2,2,62,0,0,67,3,3,64,3,2,51,0,0,62,5,0,255,243,220,
1841 215,162,130,140,75,43,101,36,4,44,0,0,239,185,151,250,177,132,173,91,41,157,75,
1842 28,224,143,100,255,181,149,253,172,145,211,135,109,196,120,96,159,78,57,203,
1843 118,97,182,98,70,136,51,20,204,120,86,177,101,69,49,0,0,61,0,0,131,70,42,217,
1844 157,123,255,204,166,246,188,148,129,64,24,145,82,47,255,243,213,255,208,183,78,
1845 16,0,255,204,178,230,163,137,148,80,57,219,154,132,210,148,127,187,125,104,255,
1846 199,177,142,76,52,154,89,69,77,15,2,59,2,0,64,11,5,40,0,0,15,0,0,8,0,0,17,3,3,
1847 19,8,6,7,0,0,15,9,9,1,0,0,0,0,0,3,1,2,1,0,0,1,0,0,0,0,0,0,0,0,3,0,0,17,3,2,13,
1848 0,0,19,5,4,15,0,0,149,109,101,60,5,0,63,3,0,58,1,0,32,0,0,71,38,33,44,19,22,
1849 54,39,58,135,128,170,41,44,111,69,84,175,125,151,255,65,104,231,57,107,240,50,
1850 109,239,47,112,240,44,114,238,44,114,238,48,113,239,51,110,240,54,104,237,54,
1851 100,235,55,101,238,52,102,235,45,105,235,39,109,233,35,111,231,36,112,232,36,
1852 101,227,39,100,227,82,130,255,82,130,255,82,130,255,82,130,255,79,129,254,79,
1853 129,254,79,129,254,79,129,254,81,131,255,81,131,255,82,130,255,82,130,255,81,
1854 131,255,81,131,255,81,131,255,82,130,255,76,124,250,81,129,253,88,137,255,89,
1855 138,255,86,136,255,85,134,255,90,132,253,98,130,249,106,124,236,69,73,172,171,
1856 159,235,208,186,235,15,0,9,31,0,2,32,0,0,50,0,0,67,7,7,61,0,0,68,0,0,65,0,0,58,
1857 0,0,60,3,0,255,220,198,226,162,134,125,54,24,64,0,0,55,0,0,221,162,130,238,
1858 163,121,136,54,4,255,178,131,211,126,85,233,147,114,170,85,56,226,145,118,255,
1859 215,190,84,4,0,112,28,4,181,96,67,196,113,81,142,63,30,223,154,121,190,132,110,
1860 62,8,0,43,0,0,231,177,139,255,225,182,255,206,161,255,201,163,228,172,137,255,
1861 205,174,253,199,171,141,77,49,199,133,107,205,144,125,59,0,0,63,0,0,189,121,98,
1862 132,66,42,121,55,31,82,14,0,125,60,40,54,0,0,72,19,13,54,3,0,72,32,30,17,0,0,6,
1863 0,0,8,0,0,10,0,0,8,0,0,6,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,1,3,0,0,
1864 12,0,0,20,4,4,7,0,0,16,0,0,102,58,49,43,0,0,168,104,94,65,2,0,56,6,0,43,2,0,22,
1865 0,0,54,31,39,22,6,33,95,87,136,116,116,188,68,83,176,75,106,222,63,108,233,56,
1866 111,238,50,113,242,47,116,245,45,116,244,47,116,246,50,112,245,52,106,240,56,
1867 104,238,57,103,238,55,105,236,45,104,232,41,109,234,35,109,230,37,109,230,48,
1868 113,239,52,113,240,84,132,255,85,133,255,84,132,255,82,130,255,81,131,255,79,
1869 129,254,79,129,254,79,129,254,82,130,255,82,130,255,82,130,255,82,130,255,82,
1870 130,255,81,131,255,81,131,255,81,131,255,75,126,251,79,130,255,80,132,254,84,
1871 134,255,84,129,254,91,131,253,103,133,255,115,135,250,101,106,210,158,150,235,
1872 167,149,207,197,167,201,39,2,10,43,0,0,62,8,8,56,0,0,60,0,0,64,0,0,74,5,0,74,4,
1873 0,105,41,29,64,0,0,96,24,0,116,39,9,100,20,0,112,39,7,66,9,0,255,207,175,139,
1874 64,22,207,124,74,252,168,122,235,147,107,213,120,87,113,19,0,167,76,47,159,72,
1875 42,255,224,194,177,98,67,175,90,59,125,46,13,107,44,9,255,212,174,147,88,54,
1876 119,61,24,181,126,87,244,189,148,204,151,109,255,240,197,255,223,186,255,234,
1877 200,92,31,0,150,81,52,162,90,65,73,6,0,90,41,27,36,0,0,146,81,61,125,55,30,161,
1878 93,72,131,63,42,97,29,8,107,44,26,128,74,64,48,3,0,32,0,0,34,4,4,26,8,8,8,0,0,
1879 11,0,0,13,0,0,17,3,2,11,1,0,3,0,0,1,0,0,3,0,0,3,0,0,3,0,0,3,0,0,1,0,0,4,0,0,22,
1880 6,6,33,15,13,7,0,0,15,0,0,198,146,133,98,31,14,63,0,0,58,0,0,73,16,7,45,0,0,
1881 163,126,120,41,11,11,17,0,4,21,1,29,87,73,124,122,121,197,82,106,206,67,108,222,
1882 60,112,232,53,114,241,46,115,245,45,117,251,46,115,252,48,114,250,51,107,242,
1883 57,107,240,58,107,238,55,106,234,52,107,233,43,107,230,39,109,231,39,109,233,
1884 52,115,244,56,115,245,84,133,254,84,132,255,84,132,255,82,130,254,81,131,254,
1885 79,129,252,78,128,251,80,128,252,82,130,254,82,130,254,82,130,254,82,130,254,
1886 82,130,254,82,130,254,81,131,254,80,132,254,76,132,253,76,132,253,79,131,251,
1887 79,128,249,85,125,249,98,130,251,115,134,252,137,144,250,122,113,204,182,162,
1888 231,146,121,161,22,0,5,86,36,39,60,1,0,60,0,0,67,1,2,66,2,2,60,0,0,99,28,24,68,
1889 0,0,63,0,0,99,31,10,166,86,59,109,26,0,148,68,33,152,79,44,255,241,207,176,
1890 116,80,178,103,61,145,63,16,123,41,0,238,151,108,215,121,87,240,143,111,169,72,
1891 40,222,129,98,205,122,88,209,131,95,141,58,24,203,130,95,255,222,185,255,222,
1892 183,255,222,180,245,191,147,191,138,98,255,240,200,215,162,120,244,195,154,243,
1893 199,162,255,222,189,233,166,137,237,163,136,163,91,69,129,64,46,36,0,0,54,5,0,
1894 126,61,41,132,61,39,74,6,0,112,45,28,111,46,28,72,13,0,38,0,0,48,9,4,38,7,5,17,
1895 0,0,14,0,0,17,0,0,23,5,5,14,0,0,20,4,4,8,0,0,6,0,0,3,0,0,3,0,0,8,4,3,9,5,4,3,
1896 0,0,1,0,0,4,0,0,11,0,0,18,0,0,11,1,0,15,0,0,195,139,126,110,41,25,131,68,51,
1897 160,102,90,55,3,0,64,17,9,38,0,0,32,0,0,79,41,40,100,66,80,147,117,151,78,65,
1898 121,91,103,187,74,107,210,63,108,223,55,111,234,47,114,245,46,115,252,44,116,
1899 254,46,114,251,50,108,242,55,108,240,58,107,235,56,106,231,53,107,231,46,106,
1900 228,42,108,231,40,108,233,42,102,232,44,103,233,90,139,255,88,137,255,85,134,
1901 255,84,133,254,85,134,255,87,136,255,92,141,255,94,143,255,88,137,255,87,138,
1902 255,88,137,255,88,137,255,88,137,255,88,137,255,87,138,255,84,139,255,93,152,
1903 255,55,114,230,97,148,255,102,145,255,98,133,253,101,122,241,116,124,233,105,98,
1904 193,139,117,189,164,135,183,20,0,9,48,5,12,63,3,3,74,4,2,81,7,4,90,16,13,78,10,
1905 9,60,0,0,78,4,3,77,4,0,60,0,0,93,25,4,210,134,102,255,190,152,255,191,152,225,
1906 158,116,255,218,174,240,173,130,244,171,128,97,20,0,223,142,97,233,149,105,122,
1907 30,0,234,137,104,235,136,105,129,32,0,131,38,4,225,140,103,174,96,58,244,180,
1908 142,255,216,177,248,210,171,255,226,184,255,234,193,249,201,163,255,242,207,199,
1909 145,107,255,217,180,255,201,167,244,180,152,232,165,139,195,127,104,195,132,114,
1910 151,90,72,183,120,102,122,57,37,200,133,116,196,129,112,172,105,88,66,0,0,59,0,
1911 0,53,0,0,63,18,12,41,6,2,25,0,0,25,1,1,25,1,1,21,0,0,20,0,0,20,2,2,15,1,0,9,0,
1912 0,11,2,3,3,0,0,4,0,1,4,2,3,1,0,0,1,0,0,0,0,0,3,0,0,8,0,0,12,0,0,9,0,0,26,2,0,
1913 178,124,112,123,57,41,112,54,42,41,0,0,28,0,0,36,0,0,178,132,117,66,17,2,109,59,
1914 48,48,0,0,99,56,73,119,93,132,110,111,176,76,97,186,57,94,198,63,114,231,61,
1915 121,251,49,117,254,42,111,250,48,116,253,47,107,240,52,107,236,55,105,230,55,
1916 105,226,53,108,227,49,107,230,46,110,234,45,108,237,47,107,237,49,108,238,88,
1917 137,255,89,138,255,85,134,253,85,134,253,85,134,253,88,137,255,93,140,255,97,
1918 144,255,88,138,253,87,138,255,88,137,255,88,137,255,88,137,255,88,137,255,87,
1919 138,255,84,139,255,70,130,244,57,117,229,118,170,255,70,110,223,105,132,247,113,
1920 125,235,155,151,248,85,68,146,175,147,198,79,44,74,34,0,3,53,3,4,71,3,2,76,0,0,
1921 79,0,0,78,0,0,74,0,0,72,1,0,69,0,0,74,3,1,65,0,0,101,30,12,238,162,130,235,160,
1922 121,103,37,2,255,214,176,246,180,132,133,63,14,255,202,157,160,83,39,137,56,9,
1923 255,182,136,255,164,123,186,90,52,239,140,108,114,17,0,226,130,92,190,102,64,
1924 252,178,139,255,217,177,255,242,203,253,211,171,208,159,119,248,196,157,255,205,
1925 169,222,168,134,228,172,137,255,211,175,190,121,90,233,161,136,248,180,159,59,0,
1926 0,58,0,0,49,0,0,165,100,82,108,41,22,64,0,0,73,7,0,126,59,43,109,43,29,105,46,
1927 38,51,1,0,37,0,0,22,0,0,24,0,0,26,2,0,29,1,0,28,0,0,25,0,0,23,2,1,17,1,1,10,0,
1928 0,11,1,0,6,0,0,6,0,0,3,0,0,1,0,0,1,0,0,3,0,0,4,0,0,17,5,5,16,2,2,8,0,0,17,0,0,
1929 89,39,30,253,194,180,51,0,0,75,27,15,119,89,78,24,0,0,42,0,0,84,23,2,79,18,0,
1930 94,36,25,83,33,36,36,1,25,110,98,146,106,114,186,92,117,209,64,104,215,44,97,
1931 225,46,108,245,49,115,255,45,111,249,51,111,243,55,110,236,58,109,227,59,108,
1932 226,57,109,227,54,110,231,50,109,237,49,109,241,48,107,237,49,108,238,91,138,
1933 255,90,137,255,85,134,253,85,134,253,90,137,255,92,139,255,95,142,255,94,141,
1934 255,88,138,253,88,138,253,90,137,255,90,137,255,90,137,253,88,137,255,88,137,
1935 255,86,139,255,79,139,249,91,149,255,88,138,251,80,116,228,137,158,255,112,116,
1936 213,130,117,196,189,166,222,142,115,146,22,0,2,49,4,9,56,0,0,80,4,4,84,0,0,84,0,
1937 0,85,1,0,75,0,0,87,16,14,61,0,0,68,3,1,70,0,0,98,22,8,230,149,120,161,86,54,
1938 52,0,0,255,214,181,255,193,150,171,97,48,241,163,115,248,168,119,189,107,59,
1939 217,131,84,231,140,95,244,151,108,201,105,63,207,111,71,218,122,82,215,130,89,
1940 172,103,62,255,215,175,255,207,168,255,215,176,239,175,139,219,151,116,250,180,
1941 146,252,184,149,255,220,184,255,220,187,152,78,49,160,86,61,124,59,41,123,65,51,
1942 82,25,14,59,2,0,70,13,2,82,25,14,119,61,49,98,36,25,125,57,44,123,57,45,106,43,
1943 34,49,0,0,35,0,0,31,1,0,25,0,0,30,2,1,33,1,2,32,1,0,29,0,0,28,2,1,22,2,3,15,0,
1944 0,15,1,0,14,0,0,17,1,2,11,0,0,4,0,0,3,0,0,14,4,3,13,0,0,10,0,0,12,0,0,20,6,5,
1945 17,0,0,28,0,0,158,106,93,127,65,50,82,29,15,26,0,0,39,7,0,71,15,0,126,57,28,
1946 137,69,46,95,32,15,53,0,0,138,98,109,67,44,73,104,100,151,113,124,203,72,99,202,
1947 41,85,210,53,106,244,54,112,255,38,99,239,49,108,238,55,109,231,58,109,224,59,
1948 109,222,58,109,226,57,109,231,54,108,240,51,107,242,49,106,239,50,107,240,90,
1949 137,255,88,137,255,88,137,255,88,137,255,90,140,255,90,140,253,94,141,255,92,
1950 142,255,90,140,253,90,140,255,92,139,255,92,139,255,92,139,255,90,140,255,90,
1951 139,255,88,141,255,101,159,255,87,144,249,75,122,230,116,149,255,109,123,222,
1952 117,115,198,180,162,220,225,198,233,61,33,47,25,0,0,57,5,7,58,0,0,87,9,9,86,2,0,
1953 84,0,0,88,7,6,76,0,0,81,10,8,64,0,0,71,3,2,70,0,0,78,4,0,144,69,50,82,15,0,67,
1954 10,0,253,197,172,245,179,144,253,180,135,200,122,74,215,135,84,189,109,60,255,
1955 176,128,204,118,69,243,155,107,234,142,95,211,118,74,236,145,101,241,158,114,
1956 255,186,144,255,205,164,246,187,147,196,132,96,255,209,174,96,17,0,251,172,139,
1957 202,127,95,212,143,110,134,65,34,142,65,37,143,68,45,52,0,0,58,0,0,46,0,0,69,14,
1958 7,45,0,0,38,0,0,49,0,0,49,0,0,62,3,0,106,48,37,111,54,45,55,6,0,34,0,0,29,1,0,
1959 24,0,0,29,1,0,33,1,2,35,1,0,32,1,0,31,3,2,25,1,1,18,0,0,17,0,0,20,2,2,24,4,5,
1960 19,1,1,6,0,0,8,3,0,19,5,5,15,0,0,23,9,8,14,0,0,17,3,2,16,0,0,27,0,0,87,47,37,
1961 187,129,115,58,2,0,28,0,0,35,0,0,120,57,24,103,30,0,82,12,0,85,20,0,97,40,29,37,
1962 0,0,33,0,13,78,58,95,106,104,169,91,106,199,68,100,221,62,108,245,55,108,250,
1963 41,98,237,56,111,240,57,112,229,60,110,221,61,112,221,61,111,226,60,111,236,58,
1964 110,245,56,109,247,51,105,240,50,107,240,89,139,254,89,139,254,91,141,255,90,
1965 142,254,92,144,254,92,144,254,93,143,254,92,144,254,90,142,252,90,142,254,91,
1966 141,254,91,141,254,91,141,254,90,142,254,90,142,254,89,143,252,100,159,255,38,
1967 94,191,146,188,255,82,108,203,122,129,217,114,104,173,255,238,255,65,34,50,35,
1968 0,0,50,5,0,63,5,4,65,0,0,82,4,4,82,1,0,73,0,0,77,3,2,71,1,1,66,0,0,72,0,1,77,
1969 3,4,74,0,0,68,0,0,60,1,0,55,1,0,255,240,225,63,6,0,52,0,0,255,201,165,190,116,
1970 71,255,182,132,255,203,153,173,101,51,255,200,150,242,162,111,216,130,79,189,
1971 101,53,204,122,74,213,135,89,255,201,161,167,98,59,123,59,24,97,28,0,170,87,53,
1972 207,121,86,255,211,179,255,202,171,169,88,59,103,19,0,255,183,156,146,71,48,62,
1973 0,0,68,4,0,78,19,5,38,0,0,31,0,0,47,9,8,28,0,0,32,0,0,41,2,0,78,35,28,102,58,
1974 49,95,52,45,42,11,9,27,1,2,24,0,0,29,1,0,34,2,3,31,0,0,31,0,0,30,2,1,25,1,1,19,
1975 0,0,15,0,0,18,0,0,28,4,4,22,1,0,8,0,0,10,2,0,15,3,3,11,0,0,14,2,2,8,0,0,8,0,0,
1976 10,0,0,10,0,0,21,0,0,32,0,0,57,5,0,112,61,30,97,42,3,127,60,15,98,31,0,114,53,
1977 24,159,101,79,211,150,132,111,54,45,79,33,35,86,54,75,102,88,141,110,115,197,
1978 95,116,231,71,108,241,61,108,248,58,111,249,57,110,238,59,111,229,62,113,220,
1979 61,112,219,61,111,226,60,111,236,58,110,248,56,109,251,51,105,240,52,106,240,
1980 89,139,254,89,139,254,90,142,254,92,144,254,94,146,255,94,146,255,93,143,254,
1981 92,144,254,92,144,254,92,144,254,93,143,254,93,143,254,92,144,254,92,144,254,
1982 92,144,255,92,144,253,64,119,219,139,189,255,56,92,186,154,176,255,136,140,213,
1983 183,171,221,82,58,80,26,0,0,31,0,0,95,45,36,64,0,0,71,0,0,80,2,2,79,0,0,75,0,0,
1984 77,3,4,70,2,1,63,0,0,73,3,3,75,3,4,72,2,2,63,2,1,42,0,0,44,0,0,174,126,116,78,
1985 25,11,61,4,0,220,156,128,209,136,93,212,136,86,235,163,113,255,198,147,177,106,
1986 52,255,183,131,202,124,75,244,163,116,255,201,158,173,98,58,131,63,26,100,34,0,
1987 255,199,166,255,233,198,211,125,90,250,164,129,214,138,106,223,146,116,234,144,
1988 120,191,99,78,200,118,96,252,177,158,153,87,75,109,47,36,104,42,29,104,50,38,47,
1989 8,3,25,0,0,33,3,3,32,0,1,24,0,0,27,0,0,31,0,0,39,0,0,23,0,0,20,0,0,27,0,0,30,
1990 0,0,33,1,2,31,0,0,31,0,0,31,1,0,29,1,0,24,0,0,21,1,0,19,1,1,23,3,2,21,3,3,9,0,
1991 0,8,3,0,12,3,4,7,0,0,7,0,0,15,5,4,15,3,3,14,4,3,4,0,0,10,0,0,87,49,40,113,62,
1992 41,168,112,75,193,132,87,127,61,13,125,60,18,68,11,0,43,0,0,61,0,0,181,115,99,
1993 155,98,87,132,89,98,118,91,132,117,109,184,102,114,222,73,102,232,65,107,245,72,
1994 121,255,55,109,235,57,110,226,59,110,217,58,109,214,58,109,224,57,108,235,55,
1995 106,247,56,107,252,51,104,242,52,106,240,86,137,252,88,139,254,93,143,255,95,
1996 145,255,95,146,255,95,146,255,95,143,254,93,143,255,93,143,254,93,143,254,93,
1997 143,255,93,143,255,92,144,254,92,144,254,93,143,255,93,144,253,99,148,250,119,
1998 163,255,114,144,242,66,83,163,226,229,255,6,0,21,22,0,9,33,0,0,43,0,0,71,14,7,
1999 66,0,0,78,4,3,75,0,0,79,1,1,84,4,7,82,4,4,70,0,0,71,4,0,61,0,0,63,2,1,68,4,4,
2000 59,1,0,44,0,0,35,0,0,35,0,0,45,5,0,79,23,8,169,102,75,199,122,80,232,152,101,
2001 255,194,144,243,170,119,229,153,101,244,170,121,142,73,32,113,43,7,191,112,79,
2002 101,31,0,255,218,186,255,244,211,164,91,56,255,174,137,255,210,176,181,96,65,
2003 255,198,168,134,48,21,253,160,142,105,13,0,139,53,38,142,68,55,45,0,0,69,14,9,
2004 69,6,0,79,22,13,29,0,0,29,0,0,35,0,0,40,2,1,34,0,0,45,1,0,46,0,0,56,8,6,38,0,0,
2005 28,0,0,33,0,0,35,1,0,35,1,0,32,1,0,31,0,0,33,2,0,35,1,0,30,0,0,27,6,5,13,0,0,9,
2006 0,0,9,1,0,3,0,0,1,0,0,4,0,1,3,0,0,4,0,0,8,0,0,7,0,0,6,0,0,3,0,0,10,0,0,185,
2007 147,138,69,18,0,83,32,3,47,0,0,75,11,0,163,99,64,69,12,0,48,0,0,141,70,50,180,
2008 108,86,148,83,65,140,89,88,130,95,125,110,94,157,94,98,198,83,104,229,74,108,
2009 244,64,110,245,57,108,233,55,111,224,57,110,216,58,109,216,57,108,225,57,108,
2010 235,55,106,249,54,104,251,51,104,242,50,107,240,83,139,252,85,138,250,93,143,
2011 254,97,145,255,100,147,255,100,144,253,99,142,254,95,138,251,96,142,254,94,142,
2012 253,94,141,255,92,142,255,92,142,253,95,143,253,95,141,252,98,141,246,124,160,
2013 255,103,133,223,115,133,217,153,161,226,0,0,30,8,0,5,42,13,15,38,0,0,69,18,15,
2014 56,0,0,69,1,0,82,11,9,70,0,0,72,0,1,82,6,8,73,0,0,66,0,0,96,35,30,49,0,0,51,0,
2015 0,60,4,3,49,0,0,50,8,9,24,0,0,25,0,0,24,0,0,34,0,0,72,14,0,228,155,114,218,
2016 138,89,241,163,114,254,177,125,152,75,21,114,40,0,97,29,0,255,239,204,80,4,0,
2017 211,143,108,255,243,210,232,186,153,195,126,87,161,79,41,123,40,8,108,23,0,145,
2018 58,30,138,48,24,98,5,0,91,1,0,84,2,0,78,10,1,48,0,0,46,0,0,110,51,45,56,0,0,37,
2019 0,0,33,1,2,41,1,1,48,4,5,42,0,0,58,12,12,50,0,0,54,6,6,38,0,0,38,2,2,39,0,0,
2020 41,1,1,38,2,2,34,0,0,31,1,0,32,2,0,39,3,3,33,1,2,27,3,3,10,0,0,7,0,0,1,0,0,0,0,
2021 0,0,0,0,0,0,0,1,0,0,2,1,0,5,1,0,4,0,0,16,10,10,1,0,0,8,0,0,24,0,0,178,132,117,
2022 122,74,52,129,76,45,164,101,68,100,35,5,172,111,90,64,2,0,121,50,22,77,2,0,87,
2023 17,0,119,61,50,131,87,104,109,81,130,94,84,171,99,106,220,83,106,234,49,87,220,
2024 56,106,231,51,108,224,53,109,220,53,109,220,52,107,226,53,106,234,55,103,247,
2025 53,104,249,51,104,242,50,107,240,84,146,255,86,144,254,87,137,248,89,133,242,
2026 96,134,241,102,139,246,107,141,251,107,143,255,106,146,255,110,153,255,103,149,
2027 255,84,132,243,85,131,242,107,149,255,113,150,255,109,137,237,127,142,233,130,
2028 136,212,103,104,161,255,249,255,7,0,9,24,2,4,41,5,5,50,2,0,59,1,0,60,0,0,61,0,0,
2029 61,0,0,61,0,0,62,0,0,61,0,0,56,0,0,55,0,0,52,0,0,46,0,0,43,0,0,47,0,0,51,3,3,
2030 45,3,4,36,2,1,21,0,0,18,0,0,19,0,0,42,3,0,178,113,75,213,133,84,225,145,96,190,
2031 110,59,198,121,67,177,104,51,255,195,146,171,100,54,205,131,86,241,172,130,203,
2032 145,105,254,200,162,255,205,168,255,202,167,185,105,72,190,103,75,94,4,0,125,34,
2033 13,109,16,1,108,20,10,81,4,0,61,0,0,39,0,0,38,0,0,58,7,4,45,0,0,42,2,2,47,9,8,
2034 42,0,1,47,3,2,46,0,0,45,0,0,48,0,0,46,2,1,41,1,1,38,0,0,46,2,1,44,0,0,40,0,0,
2035 32,0,0,22,0,0,21,0,0,30,0,0,35,3,4,27,6,5,8,0,0,4,0,0,0,0,0,0,0,0,0,0,0,1,1,1,
2036 0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,6,0,0,22,1,0,41,7,0,102,59,42,109,57,33,
2037 107,46,17,161,95,63,164,99,69,99,33,0,199,130,89,146,74,36,106,35,5,68,3,0,49,0,
2038 0,25,0,12,38,9,73,118,104,199,54,61,178,91,118,247,67,115,241,56,116,240,48,
2039 112,235,45,111,233,48,110,233,52,109,240,61,110,249,65,112,254,56,108,244,56,
2040 110,244,81,148,255,83,146,252,91,142,251,94,136,244,101,135,242,107,138,244,111,
2041 142,250,115,147,255,111,149,255,78,120,230,79,125,236,113,159,255,118,162,255,
2042 91,130,235,98,130,231,142,161,253,154,156,233,108,100,160,214,204,241,8,0,12,
2043 17,0,3,32,2,0,41,0,0,54,0,0,63,1,2,65,1,1,65,1,2,63,1,2,62,2,2,61,3,2,61,3,2,
2044 62,4,3,60,2,1,56,2,2,48,0,0,43,0,0,45,0,0,47,0,0,43,0,0,35,0,0,32,4,3,18,0,0,
2045 13,0,0,24,0,0,196,132,97,183,102,55,206,126,77,235,159,107,213,142,86,232,163,
2046 106,243,172,120,204,133,81,217,144,93,222,152,103,249,186,142,255,220,179,243,
2047 191,152,255,205,168,240,167,134,211,130,101,232,148,122,215,128,108,120,31,13,
2048 87,1,0,80,7,1,59,0,0,49,0,0,42,0,0,40,0,0,55,11,10,34,0,0,33,0,0,36,0,0,43,3,3,
2049 48,4,3,46,2,1,42,0,1,40,2,1,39,1,0,40,0,0,48,2,2,47,3,2,42,2,3,34,2,3,27,1,0,
2050 25,0,0,31,0,0,32,4,3,19,1,1,7,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,
2051 0,0,0,0,0,0,0,0,0,0,0,3,0,0,8,0,0,22,0,0,32,0,0,86,32,8,164,100,73,244,178,
2052 146,163,95,60,229,161,122,150,83,41,149,81,42,146,77,44,72,7,0,109,55,45,101,55,
2053 68,72,35,79,18,0,71,97,94,199,62,82,203,67,111,236,52,113,240,46,115,242,43,
2054 114,240,45,113,240,52,111,241,59,108,245,63,109,247,54,104,239,53,105,240,85,
2055 152,255,87,150,255,94,145,254,99,141,249,106,140,247,111,142,248,114,145,253,
2056 116,148,255,95,133,244,103,145,255,109,153,255,106,150,255,107,150,254,117,152,
2057 254,126,152,247,125,137,219,100,96,157,199,186,229,8,0,19,42,20,33,51,22,27,33,
2058 0,0,48,0,0,46,0,0,64,0,0,70,2,1,70,2,3,67,1,2,61,1,1,57,1,0,60,1,3,63,1,2,73,
2059 5,6,69,3,4,59,1,0,52,0,0,53,0,0,56,2,2,50,0,1,43,0,0,41,1,2,33,1,2,23,0,0,27,
2060 0,0,212,146,112,122,44,0,162,88,39,255,198,147,238,177,122,255,215,161,213,
2061 142,90,242,166,116,220,142,93,179,107,57,243,182,137,248,195,153,255,229,188,
2062 255,220,182,255,204,167,161,96,64,255,197,168,251,177,150,189,103,78,192,107,87,
2063 59,0,0,65,2,0,51,0,0,72,19,11,28,0,0,22,0,0,37,6,4,33,3,3,23,0,0,32,2,0,44,4,4,
2064 42,2,2,33,0,0,29,0,0,29,0,0,33,0,0,42,2,2,42,2,2,35,0,0,33,1,2,33,1,2,33,1,2,
2065 31,0,0,25,1,1,8,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2066 0,0,0,0,0,0,0,1,0,0,3,0,0,14,0,0,155,108,92,126,64,41,107,41,15,138,71,42,149,
2067 83,48,144,78,43,68,2,0,75,10,0,52,0,0,53,0,0,50,0,0,45,0,7,122,88,115,8,0,44,
2068 120,115,207,97,112,227,66,108,228,54,114,238,49,118,245,48,119,245,49,117,244,
2069 54,114,244,58,108,243,60,108,244,48,101,233,49,103,235,87,151,255,88,149,255,
2070 93,144,253,99,141,249,109,142,249,113,144,250,114,144,254,116,150,255,97,135,
2071 244,122,164,255,123,167,255,92,135,239,91,130,233,125,158,255,132,153,242,115,
2072 122,194,228,216,255,11,0,18,51,28,46,18,0,0,52,16,18,40,0,0,54,1,0,95,36,32,66,
2073 1,0,72,2,2,75,3,4,69,0,0,57,0,0,54,0,0,58,0,0,64,0,0,73,1,2,71,1,1,66,2,2,60,
2074 0,0,63,2,1,64,4,4,59,3,4,51,1,2,41,0,0,41,6,4,44,14,14,29,0,0,213,148,116,149,
2075 72,28,167,93,46,255,188,136,232,171,117,255,207,153,191,118,65,255,183,131,249,
2076 169,118,225,151,102,255,203,156,255,221,177,255,216,174,239,191,151,255,238,202,
2077 231,172,138,255,219,188,251,180,152,171,85,60,178,93,73,165,95,83,65,1,0,246,
2078 182,172,178,121,110,159,118,112,28,0,0,25,0,0,27,0,0,21,0,0,25,0,0,35,1,0,35,0,
2079 0,31,0,0,29,0,0,29,0,0,30,0,0,38,0,0,36,0,0,29,0,0,28,0,0,35,0,0,38,2,2,32,0,
2080 1,23,0,0,6,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2081 0,0,0,0,0,0,0,0,0,0,0,10,0,0,94,52,38,175,117,95,142,78,51,194,127,98,205,139,
2082 104,102,37,0,150,84,50,163,99,64,149,89,53,170,113,84,77,23,11,42,0,0,135,101,
2083 117,15,0,35,104,97,175,52,65,169,67,107,220,54,113,231,49,117,240,50,121,247,51,
2084 120,247,54,114,244,59,109,242,58,106,240,50,103,235,49,103,235,84,146,255,87,
2085 145,253,93,143,254,99,141,251,105,139,246,110,141,249,111,143,254,108,144,254,
2086 116,157,255,93,135,245,87,129,239,106,147,255,115,150,250,107,134,225,118,134,
2087 212,154,153,211,79,55,87,33,1,16,23,0,0,111,79,82,40,0,0,60,10,9,79,20,16,52,0,
2088 0,72,2,0,77,3,2,79,3,3,73,1,2,66,0,1,58,0,0,64,0,0,69,1,0,68,0,0,68,0,0,64,0,
2089 0,65,0,0,69,1,0,69,3,4,62,2,2,51,0,0,42,1,0,31,0,0,33,3,3,36,0,0,143,83,55,
2090 231,159,119,224,147,101,212,139,88,250,183,130,248,179,124,185,110,53,224,145,
2091 89,221,140,87,245,169,119,244,178,130,255,210,165,255,230,191,220,160,123,255,
2092 224,187,255,218,185,255,186,159,235,153,131,145,56,38,132,46,29,197,124,107,160,
2093 94,78,62,2,0,232,177,170,80,30,23,55,12,6,31,0,0,18,0,0,27,1,0,27,1,0,27,1,0,
2094 28,0,0,33,0,0,38,3,1,34,3,1,31,0,0,34,0,0,31,0,0,23,0,0,22,0,0,33,0,0,40,5,3,
2095 36,2,1,24,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2096 0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,22,0,0,193,146,128,152,92,68,204,139,109,122,
2097 56,21,149,84,44,152,85,42,133,66,23,115,48,5,87,21,0,84,21,6,52,1,0,22,0,0,10,
2098 0,21,110,101,166,127,137,226,73,108,210,59,115,226,53,122,239,52,124,245,54,
2099 122,247,57,118,245,62,112,243,61,110,241,55,108,240,56,110,242,85,143,253,87,
2100 143,252,95,143,254,99,141,251,108,142,250,109,142,249,108,142,252,105,141,251,
2101 106,147,255,104,146,254,101,143,253,108,145,251,128,158,254,148,169,252,148,157,
2102 224,145,137,184,74,45,65,64,28,32,40,4,4,32,0,0,46,0,0,55,0,0,83,19,17,72,4,1,
2103 70,0,0,72,1,0,72,0,1,71,1,1,66,0,1,65,1,1,70,2,1,77,7,7,72,0,1,71,1,1,70,2,3,
2104 68,0,1,71,1,1,72,2,2,65,1,2,52,0,0,50,5,2,34,0,0,32,0,0,33,0,0,49,0,0,215,147,
2105 110,225,148,104,194,114,65,255,196,144,236,161,106,202,123,67,172,91,36,189,107,
2106 57,241,160,113,219,146,101,255,196,155,246,176,142,96,27,0,94,29,1,125,55,30,
2107 83,2,0,112,25,8,91,2,0,85,0,0,117,40,22,54,0,0,63,3,0,40,0,0,47,0,0,46,0,0,38,
2108 0,0,31,1,1,30,0,0,27,0,0,26,0,0,31,0,0,40,0,0,44,3,1,39,1,0,30,0,0,35,1,0,33,
2109 2,0,27,1,2,24,0,0,31,0,0,38,4,3,34,4,4,22,1,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2110 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,0,0,17,0,0,60,22,
2111 11,131,76,55,123,59,31,143,80,47,207,143,105,210,143,98,229,161,112,253,183,
2112 132,126,54,14,68,0,0,73,16,7,45,7,6,29,6,24,33,24,71,91,99,171,78,112,202,64,
2113 115,220,56,119,233,51,121,242,55,121,244,57,118,243,59,112,240,62,111,240,59,
2114 112,242,61,115,247,88,144,253,95,147,255,98,145,253,105,146,254,108,145,252,110,
2115 144,252,111,145,255,107,145,254,90,132,240,126,170,255,128,169,255,104,138,236,
2116 121,145,233,160,174,247,127,130,183,49,38,72,30,2,16,38,0,0,72,31,29,42,0,0,117,
2117 56,53,68,0,0,57,0,0,66,5,4,63,0,0,63,0,0,62,0,0,61,0,0,62,1,0,64,0,0,66,0,1,71,
2118 1,1,83,7,7,80,4,4,71,3,2,66,0,1,70,2,3,72,4,5,68,2,3,60,0,0,55,4,3,46,0,0,47,
2119 7,7,36,0,0,38,0,0,173,110,79,193,115,76,192,108,61,242,160,110,218,137,84,212,
2120 129,77,158,75,25,193,109,63,230,145,104,240,158,120,255,188,155,136,58,35,82,5,
2121 0,77,1,0,94,16,4,86,2,0,117,30,20,110,21,13,87,0,0,78,0,0,93,16,6,86,19,11,74,
2122 15,11,62,11,8,39,0,0,49,5,6,32,0,0,28,0,0,34,0,1,40,0,0,45,0,0,52,0,0,52,1,0,
2123 44,0,0,34,0,0,37,0,0,38,2,2,34,3,1,29,0,0,31,0,0,34,6,5,25,4,3,12,0,0,3,0,0,0,
2124 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,3,
2125 0,0,7,0,0,14,0,0,21,0,0,143,94,79,102,44,22,138,80,56,52,0,0,101,36,0,146,78,
2126 29,139,69,17,171,101,52,148,78,42,157,95,72,92,45,35,20,0,0,4,0,18,105,116,162,
2127 87,116,194,69,114,215,61,118,231,52,117,237,53,117,241,57,118,243,62,116,242,
2128 66,117,244,62,115,245,61,116,245,94,147,253,96,147,254,103,147,254,109,150,255,
2129 113,149,255,111,147,255,110,148,255,106,147,253,107,151,255,100,145,248,104,146,
2130 246,124,157,250,133,152,231,94,102,165,26,21,62,8,0,16,25,0,0,46,5,3,44,0,0,59,
2131 1,0,72,3,0,77,3,0,67,1,2,60,0,0,62,2,1,61,1,0,59,1,0,60,0,0,62,1,0,64,0,0,63,
2132 0,0,67,0,0,79,3,3,77,1,1,67,0,0,61,0,0,62,0,0,65,1,1,69,1,2,64,0,0,58,2,1,48,
2133 0,0,47,3,2,40,0,0,45,0,0,208,152,129,187,112,73,183,96,51,208,122,75,217,131,
2134 84,205,117,71,127,38,0,134,46,10,104,15,0,113,26,0,107,19,0,80,0,0,95,9,0,87,0,
2135 0,85,0,0,88,0,0,91,1,0,94,4,0,85,0,0,112,29,21,77,2,0,60,0,0,57,0,0,49,0,0,48,
2136 0,0,45,0,0,61,11,12,37,0,0,43,1,3,58,3,6,64,4,4,69,5,5,64,4,3,54,3,2,44,0,0,
2137 37,0,0,41,3,2,37,3,2,30,0,0,29,0,0,27,3,1,14,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,
2138 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,7,1,1,12,2,1,12,0,
2139 0,22,0,0,42,0,0,84,26,6,119,61,39,74,15,0,186,123,82,131,65,15,151,82,27,109,
2140 38,0,103,32,0,174,108,73,137,82,61,58,21,15,12,0,6,0,0,32,94,117,184,78,117,
2141 210,62,114,224,54,112,235,53,115,238,54,113,239,64,119,245,67,121,247,58,113,
2142 240,61,116,245,105,157,255,105,154,255,103,147,254,103,143,254,102,140,251,104,
2143 142,251,107,148,255,106,150,255,68,116,216,131,177,255,86,126,224,125,155,245,
2144 112,126,199,180,181,235,25,14,46,14,0,7,36,0,4,51,1,0,55,0,0,76,8,7,75,0,0,83,7,
2145 7,68,0,0,65,4,3,51,0,0,52,0,0,57,1,0,66,6,6,71,5,6,68,0,0,64,0,0,67,3,3,67,2,
2146 0,64,0,0,70,2,1,70,6,6,56,0,0,61,1,1,75,7,6,71,3,2,63,5,4,42,0,0,48,0,0,42,0,
2147 0,37,0,0,46,0,0,131,57,22,164,77,32,146,57,15,168,79,37,175,83,42,143,50,16,
2148 108,16,0,99,6,0,101,8,0,105,12,0,110,15,0,111,16,0,110,14,0,106,7,0,99,3,0,98,1,
2149 0,97,0,0,92,2,0,73,0,0,69,0,0,63,0,0,55,0,0,59,0,0,67,3,3,72,4,5,65,1,1,51,0,
2150 0,56,0,1,65,1,2,69,0,1,72,0,1,72,4,3,64,4,4,52,1,0,51,7,6,43,5,4,37,3,2,32,2,
2151 2,27,1,0,21,1,0,9,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2152 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,9,0,1,12,0,0,22,8,8,29,1,0,184,132,119,134,
2153 72,49,201,137,109,180,116,81,189,124,84,227,161,113,190,120,68,176,107,52,190,
2154 119,67,152,85,40,83,24,0,132,86,71,71,44,53,69,62,95,88,100,158,115,146,229,58,
2155 105,213,45,99,221,71,129,255,51,110,236,54,109,235,60,114,240,56,111,238,54,111,
2156 240,107,157,255,106,154,255,106,148,255,103,143,254,104,142,253,105,145,255,103,
2157 147,254,104,151,255,119,169,255,104,150,246,97,136,231,106,132,217,179,187,252,
2158 31,24,68,32,14,38,28,0,6,41,0,0,61,8,2,65,4,1,72,4,3,75,1,0,75,4,2,66,0,0,61,0,
2159 0,86,28,27,61,6,3,55,0,0,58,0,0,67,1,2,68,2,3,62,1,0,58,0,0,65,4,3,61,0,0,66,
2160 0,0,64,0,0,50,0,0,56,0,0,69,3,4,67,1,2,63,5,4,48,0,0,53,2,1,48,2,2,34,0,0,41,
2161 0,0,132,59,27,130,41,1,111,18,0,125,32,0,130,35,3,116,21,0,102,6,0,102,5,0,
2162 105,8,0,104,6,0,126,26,10,133,33,10,147,42,20,152,48,23,149,47,22,143,41,16,137,
2163 35,13,128,33,15,85,0,0,77,3,2,66,2,2,58,0,0,66,0,0,75,4,2,80,4,4,74,0,0,65,0,0,
2164 69,3,4,76,4,5,75,1,2,74,0,0,72,2,2,63,1,2,51,0,0,34,0,0,29,0,0,28,0,0,24,0,0,
2165 24,0,0,20,2,2,6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2166 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,0,0,12,0,0,12,0,0,21,0,0,51,3,0,86,25,4,90,
2167 25,0,142,77,39,93,28,0,127,60,15,148,80,31,167,97,45,185,114,60,178,111,59,157,
2168 95,56,129,79,56,98,64,65,20,6,31,0,0,44,82,106,180,97,138,244,60,110,233,74,
2169 129,255,70,128,254,69,125,248,61,117,240,61,119,245,61,118,247,108,156,255,108,
2170 153,255,107,148,254,108,146,255,104,142,253,105,145,255,103,147,254,103,152,255,
2171 84,133,235,94,140,236,135,172,255,117,139,215,142,143,200,168,154,189,26,0,14,
2172 27,0,0,39,0,0,59,5,0,59,2,0,51,0,0,64,0,0,65,0,0,59,0,0,61,3,2,52,0,0,53,0,0,
2173 60,0,0,63,0,0,61,0,0,58,0,0,57,0,0,60,2,1,65,4,3,62,0,0,64,0,0,63,0,0,55,0,0,
2174 57,0,0,63,1,2,58,0,0,57,1,2,54,0,0,57,0,0,58,7,6,40,0,0,44,0,0,173,98,69,120,
2175 30,0,108,14,0,114,18,0,114,18,0,112,16,0,113,18,0,119,23,9,118,17,7,113,10,1,
2176 109,7,0,115,12,0,125,19,3,136,29,9,140,34,8,143,38,8,139,34,4,135,33,8,107,11,0,
2177 94,6,4,73,1,2,65,0,0,70,0,0,83,5,5,85,3,5,81,1,2,76,2,1,75,3,4,79,3,3,77,1,1,
2178 72,0,1,66,0,1,57,1,2,44,0,1,20,0,0,18,0,0,22,1,0,19,0,0,22,1,0,20,4,4,4,0,0,0,
2179 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2180 0,0,1,0,0,6,0,0,12,0,0,20,4,4,30,5,1,39,0,0,99,48,31,124,63,32,188,123,83,143,
2181 79,35,136,72,28,160,93,51,174,106,61,167,96,44,159,90,35,164,100,54,72,19,0,68,
2182 34,24,10,0,5,0,0,34,86,105,173,113,147,254,65,110,237,70,124,250,52,110,235,40,
2183 96,217,39,95,218,66,124,250,66,123,254,110,155,255,110,153,255,110,148,255,109,
2184 145,255,107,145,254,105,147,255,101,148,254,103,152,255,107,159,255,129,175,255,
2185 107,141,228,125,143,215,154,155,203,53,37,64,130,99,107,110,67,61,93,40,26,115,
2186 57,43,85,28,19,59,0,0,75,12,5,62,0,0,56,0,0,62,2,2,58,0,0,65,5,4,83,18,14,84,
2187 19,15,64,3,2,54,0,0,54,0,0,61,1,1,65,1,1,63,0,0,63,2,1,66,5,4,67,3,3,66,2,2,62,
2188 1,0,57,0,0,55,0,0,59,0,2,56,0,0,60,6,6,44,0,1,47,0,0,202,125,97,125,32,1,116,
2189 21,3,115,19,5,116,18,5,114,17,1,112,15,0,109,11,0,106,5,0,103,0,0,121,17,4,119,
2190 13,0,116,9,0,116,9,0,125,16,0,135,27,0,145,37,8,148,42,18,116,14,2,99,4,0,80,0,
2191 0,72,0,0,78,0,0,84,3,2,86,2,2,80,0,0,77,0,0,75,0,0,76,0,0,73,0,0,68,0,0,62,1,
2192 0,55,1,1,43,1,2,21,0,0,20,4,4,20,4,4,15,0,0,16,0,0,15,3,3,3,0,0,0,0,0,0,0,0,0,
2193 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5,
2194 0,0,10,0,0,14,0,0,16,0,0,28,0,0,42,0,0,150,91,61,147,82,42,185,121,77,124,59,
2195 17,81,15,0,110,42,3,156,84,34,188,117,63,196,128,79,121,66,27,82,45,26,13,0,0,
2196 0,0,32,81,93,165,64,94,204,48,91,221,90,143,255,70,128,254,68,126,249,104,162,
2197 255,61,118,247,61,118,249,113,157,255,111,153,255,114,151,255,111,148,255,111,
2198 149,255,104,147,252,103,150,254,101,153,254,105,157,255,120,165,255,105,137,222,
2199 138,157,225,122,124,163,255,248,255,76,41,47,35,0,0,65,5,0,71,7,0,65,1,0,73,10,
2200 0,97,30,13,76,9,0,65,1,0,88,24,22,76,12,10,65,1,0,62,0,0,62,0,0,65,1,1,64,0,0,
2201 65,1,1,64,0,0,67,0,0,64,0,0,57,1,0,60,2,1,72,4,3,74,4,4,68,0,0,64,0,0,58,0,0,
2202 62,4,3,55,0,0,58,4,4,47,0,0,50,0,0,192,111,82,125,32,1,95,1,0,97,2,0,100,1,0,
2203 104,3,0,100,2,0,98,0,0,97,0,0,99,0,0,133,30,11,128,21,1,118,11,0,117,7,0,118,11,
2204 0,124,17,0,126,19,1,128,22,8,108,5,0,99,1,0,91,0,0,87,0,0,89,0,0,90,2,1,83,2,
2205 1,77,0,0,75,0,0,72,0,0,70,0,0,70,0,0,66,0,1,60,0,0,54,0,0,47,3,2,23,0,0,19,3,
2206 3,14,2,2,7,0,0,4,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2207 0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,4,0,0,9,0,1,15,5,4,12,0,0,31,5,
2208 4,38,0,0,166,109,80,154,89,51,228,163,121,165,100,60,191,125,91,153,85,50,146,
2209 76,27,130,59,5,102,32,0,156,94,53,149,103,80,160,130,138,107,95,141,168,176,
2210 255,109,136,253,70,110,244,81,131,255,38,95,224,22,80,206,44,102,228,61,118,247,
2211 61,118,249,116,155,255,113,152,255,114,151,255,114,151,255,111,150,255,106,150,
2212 255,102,151,254,99,151,252,121,174,255,99,144,235,117,148,231,147,162,227,135,
2213 135,169,11,0,5,59,19,20,55,5,0,100,43,34,103,45,33,99,37,22,146,83,65,100,38,15,
2214 95,32,14,63,1,0,68,5,0,63,0,0,66,2,0,74,7,0,81,13,4,73,4,0,67,0,0,67,0,0,72,1,
2215 0,76,2,0,71,1,0,55,0,0,54,0,0,73,0,0,80,1,0,74,0,0,73,3,3,59,0,0,62,2,2,56,0,
2216 0,56,2,0,56,5,4,59,0,0,181,100,73,158,67,38,93,0,0,94,0,0,102,0,0,113,10,3,
2217 115,13,1,111,10,0,111,10,0,118,16,2,133,28,7,132,26,4,127,20,4,129,21,8,128,22,
2218 6,120,17,2,106,3,0,101,0,0,102,0,0,100,0,0,99,1,0,96,2,2,94,3,2,88,2,1,79,1,1,
2219 73,0,0,77,3,2,72,0,1,69,1,0,66,2,2,62,2,2,56,0,1,51,0,0,45,4,2,28,0,0,19,0,0,
2220 10,0,0,4,0,0,3,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2221 0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3,0,0,6,0,0,7,0,0,10,0,0,18,0,0,34,
2222 0,0,74,22,0,146,86,50,163,100,59,155,90,52,169,102,73,155,86,53,196,125,79,
2223 200,129,75,135,66,11,178,115,71,106,56,33,119,86,93,15,1,52,102,108,196,92,117,
2224 236,64,103,240,68,118,253,68,125,255,80,139,255,70,129,255,61,118,249,61,118,
2225 249,115,152,255,117,154,255,116,153,255,115,154,255,111,153,255,108,153,255,104,
2226 153,255,97,150,252,70,123,219,101,146,237,136,167,249,165,176,240,48,38,73,123,
2227 93,105,68,19,15,89,37,24,44,1,0,60,20,8,71,20,1,129,74,53,45,0,0,92,41,22,83,
2228 27,14,76,16,5,83,21,8,125,59,43,175,105,80,176,101,78,123,47,31,77,0,0,73,0,0,
2229 79,0,0,88,3,0,85,5,0,69,0,0,69,0,0,88,4,0,94,7,0,82,0,0,81,3,3,66,0,0,66,0,1,
2230 61,1,1,57,0,0,65,9,8,64,0,0,132,51,30,161,71,47,103,7,0,100,1,0,103,2,0,126,24,
2231 10,143,38,16,141,37,12,137,32,13,135,30,11,144,37,17,139,32,12,136,30,14,137,
2232 34,19,136,34,19,125,27,14,104,11,3,94,1,0,98,0,0,100,0,0,103,3,3,99,4,2,88,2,1,
2233 76,0,0,69,1,2,66,0,1,74,4,4,71,1,1,63,0,0,61,3,2,54,3,2,48,0,0,45,0,0,42,2,2,
2234 34,3,1,22,0,0,13,0,0,10,2,0,6,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2235 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,6,0,0,13,1,1,
2236 17,1,1,17,0,0,37,6,1,40,0,0,159,108,79,114,54,18,159,93,58,145,78,51,138,69,38,
2237 160,89,45,165,94,40,139,68,12,147,83,37,144,92,68,140,105,112,64,50,103,96,102,
2238 190,90,112,231,82,120,255,52,103,244,44,101,240,70,129,255,41,100,226,56,115,
2239 245,56,114,247,117,152,255,120,155,255,116,154,255,115,154,255,113,155,255,108,
2240 153,254,102,151,254,99,151,252,112,161,255,149,190,255,76,105,183,158,169,231,
2241 32,22,59,190,162,177,212,166,166,250,202,192,255,244,232,255,246,230,255,221,
2242 200,251,193,169,48,0,0,96,39,20,73,12,0,56,0,0,59,0,0,66,5,0,97,31,0,123,53,17,
2243 129,54,25,119,41,21,115,35,24,124,42,31,96,8,0,108,25,11,81,7,0,82,9,0,129,50,
2244 33,121,38,20,83,3,0,81,2,0,76,1,0,75,5,3,68,4,4,54,0,0,63,3,3,53,0,0,72,0,0,
2245 104,17,0,113,17,5,102,0,0,100,0,0,115,12,0,141,35,9,139,31,3,123,14,0,110,4,0,
2246 115,8,0,109,2,0,104,0,0,103,0,0,102,1,0,95,0,0,86,0,0,81,0,0,92,1,0,96,1,0,102,
2247 2,0,95,1,0,78,0,0,64,0,0,57,0,0,57,0,0,65,3,4,60,0,0,55,0,0,52,2,1,46,0,0,40,
2248 0,0,40,0,0,40,1,2,36,6,6,21,0,0,11,0,0,13,4,5,7,1,1,1,0,0,2,1,0,1,0,0,0,0,0,0,
2249 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,
2250 0,0,6,0,0,13,3,2,11,0,0,17,0,0,26,2,0,25,0,0,145,104,84,91,34,5,148,83,51,184,
2251 117,91,182,115,86,170,103,60,164,98,46,161,100,46,101,46,5,157,112,93,101,73,85,
2252 175,168,222,94,108,196,59,91,204,95,139,255,72,123,255,43,99,238,81,135,255,76,
2253 129,255,52,106,238,50,107,238,117,150,255,118,151,255,116,151,253,116,154,255,
2254 112,154,255,110,155,255,111,156,255,113,159,255,102,145,237,160,196,255,146,172,
2255 247,113,128,187,122,121,161,7,0,16,149,119,129,143,105,104,156,114,100,172,122,
2256 99,188,122,98,186,110,86,181,101,78,200,120,97,243,165,142,255,196,168,255,218,
2257 183,216,159,116,255,212,165,255,225,179,169,99,63,85,8,0,81,3,0,83,2,0,107,26,0,
2258 129,53,27,69,2,0,70,9,0,67,2,0,74,8,0,79,8,0,80,4,0,77,0,0,76,1,0,72,2,0,77,13,
2259 13,53,0,0,70,7,2,63,0,0,112,31,14,99,3,0,107,4,0,106,1,0,149,42,24,136,25,6,
2260 120,9,0,150,40,15,106,0,0,110,3,0,136,29,11,151,43,17,134,26,0,114,9,0,106,8,0,
2261 91,2,0,82,0,0,108,20,16,92,3,0,109,16,11,88,0,0,72,0,0,61,0,0,46,0,0,52,6,8,45,
2262 0,1,52,6,6,47,1,1,48,6,7,42,4,3,32,0,0,37,0,0,28,0,0,26,2,2,12,0,0,6,0,0,4,0,
2263 1,3,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,
2264 1,0,0,0,1,0,0,2,0,1,0,0,0,0,0,0,3,0,0,4,0,1,4,0,0,6,0,0,13,1,1,13,0,0,23,4,0,
2265 33,3,0,134,82,61,171,107,80,158,93,65,144,81,48,106,47,5,179,127,80,94,49,8,
2266 122,85,58,78,49,41,85,73,93,120,131,187,102,134,221,85,131,242,73,128,254,68,
2267 122,255,68,117,254,74,118,253,71,113,247,65,114,245,64,114,245,118,149,255,119,
2268 151,254,119,152,255,116,154,255,112,154,254,112,156,255,111,157,255,114,158,253,
2269 120,161,249,115,150,232,125,151,226,150,166,228,159,166,212,183,178,210,33,16,
2270 35,66,39,44,37,0,0,55,4,0,80,13,0,93,14,0,99,12,0,114,25,7,139,54,34,159,82,56,
2271 223,157,123,140,82,42,172,121,76,213,160,116,187,122,84,200,127,95,219,139,116,
2272 175,95,70,180,104,72,255,187,153,236,175,146,255,238,209,233,172,144,255,235,
2273 207,255,222,191,179,108,78,103,27,3,90,17,0,64,0,0,58,0,0,63,6,0,55,2,0,64,5,0,
2274 98,30,11,143,57,34,113,15,0,125,21,0,130,22,0,113,3,0,131,19,0,149,39,16,147,
2275 36,16,109,0,0,126,16,0,144,35,6,137,29,0,129,27,5,124,28,14,104,15,9,84,1,0,85,
2276 0,0,82,0,0,98,9,3,87,2,0,76,1,0,64,0,0,45,0,0,43,0,0,35,0,0,40,0,0,32,0,0,34,
2277 0,0,31,0,0,29,0,0,40,6,7,36,6,6,20,0,1,8,0,0,4,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,
2278 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,
2279 1,1,1,0,0,3,0,0,8,2,2,6,0,0,8,0,0,19,3,3,13,0,0,13,0,0,20,0,0,144,98,82,123,
2280 69,45,213,157,130,222,168,134,255,228,188,255,213,172,255,244,212,255,248,231,
2281 255,249,251,186,183,212,109,130,193,91,132,222,75,131,244,68,127,253,69,123,255,
2282 71,119,253,76,114,251,77,115,250,73,117,250,69,118,249,122,151,255,121,153,254,
2283 121,155,255,118,156,255,115,157,255,112,156,253,114,160,255,116,161,254,133,177,
2284 255,121,159,244,133,162,240,142,161,229,114,123,178,176,178,219,1,0,19,10,0,4,
2285 20,0,0,35,0,0,53,0,0,65,0,0,72,0,0,76,0,0,79,0,0,80,2,0,109,41,22,87,25,0,133,
2286 80,48,196,143,109,210,149,120,246,176,150,233,153,126,129,48,19,94,19,0,70,1,0,
2287 133,71,32,131,69,28,89,17,0,148,73,34,175,101,62,221,150,108,215,144,98,255,211,
2288 167,255,239,201,255,243,208,255,227,193,255,233,202,35,0,0,39,0,0,255,234,200,
2289 206,121,82,157,59,22,118,11,0,134,26,0,178,68,35,128,17,0,118,6,0,121,9,0,141,
2290 32,11,153,45,16,145,42,11,134,35,12,122,30,15,97,12,7,79,0,0,127,41,28,95,7,0,
2291 95,8,1,85,0,0,84,1,0,80,2,0,64,0,0,61,0,0,62,3,0,58,7,6,43,0,0,34,0,0,25,0,0,
2292 17,0,0,27,0,0,23,0,0,19,0,0,12,0,0,9,0,1,5,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2293 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,6,
2294 0,0,11,1,0,10,0,0,13,0,0,27,0,0,27,0,0,25,0,0,20,0,0,255,245,229,255,226,203,
2295 255,221,195,255,226,194,246,198,162,201,155,121,212,176,152,255,247,238,163,147,
2296 158,53,55,93,100,124,198,84,126,226,72,128,247,65,126,253,67,124,255,71,119,253,
2297 79,117,252,79,117,252,72,119,251,71,121,252,124,153,255,122,154,253,122,156,
2298 255,117,155,252,117,160,255,115,159,254,114,160,254,116,163,255,103,148,239,131,
2299 171,255,141,174,255,133,157,231,141,156,221,127,135,184,106,110,139,14,8,22,38,
2300 16,18,51,13,10,55,4,1,66,2,2,72,0,1,80,2,2,83,2,1,82,3,0,72,0,0,62,0,0,55,0,0,
2301 56,0,0,55,0,0,72,5,0,132,52,25,97,16,0,226,151,128,149,84,56,255,230,194,255,
2302 193,152,238,163,123,199,120,81,67,0,0,208,137,91,219,148,94,250,185,129,212,159,
2303 109,184,140,93,255,230,185,178,145,104,219,186,153,248,208,173,120,63,20,102,30,
2304 0,141,50,5,153,52,6,156,51,4,155,49,9,119,11,0,126,16,0,113,3,0,131,22,0,138,
2305 33,1,125,25,0,106,11,0,94,3,0,83,0,0,78,0,0,116,29,9,88,0,0,88,0,0,88,0,0,104,
2306 15,1,130,44,29,112,35,19,120,51,36,66,0,0,60,1,0,42,0,0,37,3,2,28,4,4,19,0,0,
2307 29,3,4,27,1,2,21,1,2,16,2,1,11,1,0,4,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2308 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,2,1,0,4,0,1,3,0,0,3,0,0,5,0,0,13,1,1,
2309 17,1,1,25,7,7,27,3,3,39,9,9,35,5,5,35,7,4,32,5,0,239,211,199,239,210,192,29,0,
2310 0,138,102,80,148,106,81,255,236,214,255,237,221,82,62,63,6,0,19,158,161,216,
2311 92,118,205,78,120,232,69,125,248,65,125,255,67,124,255,73,123,254,81,121,253,
2312 81,120,251,68,115,245,66,116,247,125,154,254,127,160,255,124,158,255,119,158,
2313 253,121,161,255,117,162,255,116,163,255,116,163,255,111,158,248,109,153,240,126,
2314 164,247,135,166,246,165,189,255,142,159,215,200,210,246,0,0,14,37,15,17,54,13,9,
2315 57,1,0,70,2,1,81,3,3,87,3,1,91,7,5,90,9,5,94,22,10,98,31,14,101,37,9,126,65,34,
2316 78,14,0,63,0,0,87,9,0,81,0,0,71,0,0,83,18,0,56,0,0,75,11,0,99,25,0,238,162,130,
2317 64,0,0,255,188,146,182,111,59,255,201,145,255,217,163,190,137,85,162,122,73,
2318 255,245,198,193,158,116,255,238,195,255,244,195,255,199,146,146,66,15,135,41,0,
2319 164,66,17,170,69,23,172,70,30,136,31,0,111,7,0,130,26,0,141,41,5,135,37,0,122,
2320 30,0,117,29,0,122,38,1,130,46,10,182,93,61,142,51,24,138,46,25,121,28,11,117,
2321 22,4,98,11,0,68,0,0,61,0,0,72,0,0,66,0,0,42,0,0,36,0,0,29,3,2,21,0,0,32,3,5,31,
2322 3,2,22,1,0,17,1,1,8,0,0,3,0,0,1,0,0,0,0,0,0,0,2,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,
2323 1,0,2,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,5,0,0,8,0,0,9,0,0,9,0,0,15,0,0,18,0,0,18,
2324 0,0,22,0,0,21,0,0,15,0,0,17,0,0,19,0,0,18,0,0,25,0,0,35,2,0,25,0,0,35,5,0,31,
2325 6,0,10,0,0,4,0,11,205,197,246,77,80,159,91,115,221,77,119,240,70,123,251,65,
2326 124,254,67,124,253,75,126,254,80,123,251,82,123,249,70,118,246,68,119,247,127,
2327 157,255,126,159,255,126,160,255,123,162,255,121,162,254,119,164,255,119,166,255,
2328 117,167,255,145,195,255,99,145,231,135,177,255,133,171,252,89,123,197,149,177,
2329 242,139,157,205,0,0,27,19,0,6,42,2,0,57,3,1,67,1,2,79,3,3,82,1,0,83,0,0,79,0,0,
2330 74,0,0,72,2,0,69,4,0,149,85,50,157,92,62,133,64,35,210,133,103,222,145,117,90,
2331 22,0,71,9,0,55,0,0,137,75,52,72,3,0,99,28,0,94,30,0,133,72,28,111,45,0,211,146,
2332 90,211,150,95,115,64,11,252,220,173,255,237,193,255,246,206,173,144,102,221,
2333 190,144,255,221,171,222,155,103,201,118,66,175,85,33,132,37,0,164,67,22,146,47,
2334 8,125,26,0,135,36,5,145,48,13,141,47,9,131,42,2,135,47,7,146,61,20,160,75,36,
2335 118,28,0,96,2,0,104,7,0,102,5,0,113,17,3,122,33,19,97,19,6,109,35,24,120,42,32,
2336 93,23,15,57,0,0,47,1,1,37,0,0,25,0,0,32,0,0,29,0,0,25,1,1,18,2,2,9,1,0,3,0,0,0,
2337 0,0,0,0,0,0,0,2,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,1,0,2,1,0,2,0,0,0,0,0,0,1,0,0,4,
2338 0,0,10,0,1,13,0,0,18,0,1,22,0,2,27,1,2,30,0,0,34,3,1,36,6,4,27,3,3,21,0,0,32,
2339 4,0,57,29,25,20,0,0,44,14,14,52,14,11,41,6,2,18,0,0,11,0,0,6,0,7,0,0,28,89,86,
2340 157,143,148,248,94,121,238,81,122,250,69,122,250,68,125,254,71,126,255,75,126,
2341 253,79,125,247,82,126,247,75,125,250,75,126,254,129,159,255,128,161,255,126,161,
2342 255,128,165,255,121,165,254,120,166,254,122,169,255,119,169,255,130,180,255,103,
2343 153,238,141,188,255,141,184,255,83,124,203,156,193,255,144,172,237,143,156,201,
2344 13,0,17,36,6,6,50,6,5,57,1,0,68,3,1,75,0,0,80,0,0,83,2,0,168,93,64,199,129,93,
2345 194,129,89,255,205,164,255,194,154,173,101,61,179,102,60,135,60,18,185,123,82,
2346 255,236,197,242,186,149,100,40,4,255,192,156,119,57,18,90,37,0,255,227,178,234,
2347 184,131,104,55,0,121,74,20,210,174,126,255,250,212,255,254,224,227,211,185,255,
2348 251,222,255,249,214,255,246,204,210,157,107,137,64,11,150,69,16,166,78,30,154,
2349 61,18,131,37,0,125,28,0,119,24,0,115,22,0,111,21,0,110,21,0,106,20,0,102,19,0,
2350 103,17,0,125,33,12,100,4,0,103,5,0,95,0,0,89,0,0,96,9,2,100,13,3,133,49,38,95,
2351 15,8,83,5,1,67,0,0,69,5,5,63,5,3,51,0,0,54,3,2,47,5,6,23,0,0,17,3,3,14,4,5,3,0,
2352 0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,
2353 3,1,18,7,5,26,8,8,26,5,4,33,7,8,40,8,9,50,10,10,53,9,8,50,4,4,45,1,0,36,0,0,
2354 27,0,0,34,0,0,41,6,4,36,0,0,47,9,6,37,0,0,45,6,0,28,0,0,18,0,10,29,13,49,124,
2355 116,176,108,108,204,96,109,224,92,124,247,82,125,253,77,128,255,72,127,253,73,
2356 128,254,76,130,252,79,128,246,81,128,246,79,129,252,77,128,255,130,160,255,128,
2357 161,255,129,162,255,127,164,255,122,166,255,122,168,255,120,167,255,121,168,255,
2358 111,161,250,121,171,255,116,164,246,126,173,253,136,183,255,102,145,224,117,153,
2359 229,187,206,255,2,0,25,21,0,8,32,0,0,45,0,0,61,0,0,75,3,0,101,23,3,120,41,11,
2360 208,130,92,224,153,109,151,88,45,170,108,67,154,87,45,110,39,0,187,111,62,180,
2361 110,59,212,158,112,128,79,36,255,229,189,97,42,3,61,0,0,222,160,121,255,215,173,
2362 255,212,169,255,239,193,255,232,184,255,244,196,255,240,198,255,253,221,251,249,
2363 226,255,255,237,255,255,237,255,255,231,255,253,219,255,230,189,141,83,37,127,
2364 53,4,166,84,37,116,28,0,129,39,2,155,63,26,137,45,8,123,32,1,128,39,7,139,53,
2365 18,136,51,20,118,34,10,104,19,0,100,8,0,97,0,0,109,11,8,96,2,0,88,0,0,87,0,0,
2366 84,0,0,94,10,0,76,0,0,73,0,0,68,0,0,85,17,16,86,22,20,62,1,0,59,1,0,47,0,0,21,
2367 0,0,18,0,0,17,0,0,13,0,0,7,0,0,5,0,0,3,0,0,1,0,0,1,0,0,1,0,0,3,0,0,3,0,0,1,0,
2368 0,0,0,0,0,0,0,1,0,0,6,0,0,12,0,0,15,0,0,15,0,0,18,0,0,29,0,0,40,0,0,42,0,0,47,
2369 1,1,45,1,0,48,6,7,48,8,8,45,7,6,31,0,0,46,6,6,31,0,0,77,31,18,132,92,82,255,
2370 242,243,110,92,114,136,122,175,135,130,212,93,101,210,94,115,240,91,126,254,83,
2371 128,255,78,129,255,76,130,255,77,131,255,79,134,253,78,129,244,80,130,245,73,
2372 125,247,73,124,251,131,162,255,130,163,255,129,162,255,127,164,255,124,165,255,
2373 120,166,254,119,166,255,119,166,255,119,169,255,119,169,255,119,169,254,120,170,
2374 255,120,171,254,122,169,251,126,167,249,142,167,234,149,151,192,96,78,100,23,0,
2375 1,40,0,0,116,54,33,107,32,1,193,114,75,222,141,98,141,64,20,252,184,139,185,
2376 123,82,198,139,99,70,5,0,210,138,98,136,64,14,167,104,53,159,114,75,241,202,169,
2377 255,246,214,56,5,0,81,20,0,65,0,0,116,49,23,70,4,0,255,194,166,82,21,0,164,100,
2378 62,220,172,134,255,249,223,253,254,236,255,255,246,255,255,246,253,254,236,255,
2379 255,232,255,252,223,162,122,87,101,36,0,120,41,0,149,67,29,125,41,4,128,40,0,
2380 153,64,24,118,30,0,122,37,0,109,25,0,129,46,12,99,17,0,114,28,13,99,9,0,111,18,
2381 10,100,6,4,92,1,0,102,11,10,92,4,2,84,1,0,82,4,0,69,0,0,66,1,0,61,0,0,57,0,0,
2382 52,0,0,52,0,0,56,0,1,54,2,4,46,4,5,44,4,5,48,4,3,45,4,2,30,0,0,15,0,0,10,0,0,6,
2383 0,0,4,0,0,6,0,0,8,0,0,8,0,0,3,0,0,1,0,0,0,0,0,1,0,0,3,0,0,6,0,0,5,0,0,6,0,0,8,
2384 0,0,15,0,0,24,0,0,28,0,0,31,0,0,31,0,0,33,0,0,33,0,0,33,0,0,34,0,0,38,0,0,39,
2385 0,0,142,93,79,183,141,129,26,1,4,4,0,21,92,90,155,50,57,148,141,161,255,77,
2386 107,231,84,125,253,76,123,253,76,125,254,74,125,252,75,126,251,77,129,247,78,
2387 131,243,80,133,247,78,130,250,75,129,253,132,163,255,130,163,255,128,163,255,
2388 127,164,255,124,165,255,121,165,254,120,166,254,119,166,254,121,168,255,121,169,
2389 254,121,168,255,119,169,254,120,170,255,122,170,254,125,167,253,138,168,241,166,
2390 172,224,123,112,144,22,0,9,110,70,62,202,142,114,230,157,116,188,108,59,136,54,
2391 4,255,178,132,157,86,44,255,230,191,196,136,100,238,172,137,155,87,48,150,88,
2392 39,255,208,160,255,248,209,255,246,212,255,211,178,160,107,73,163,99,64,117,46,
2393 14,85,9,0,73,0,0,69,0,0,82,11,0,80,11,0,100,46,10,255,251,224,255,255,237,255,
2394 255,243,255,255,243,255,255,237,255,253,226,255,254,225,255,245,210,238,179,135,
2395 157,83,38,81,2,0,134,51,11,128,44,0,157,70,25,130,42,2,134,49,12,119,35,0,128,
2396 45,15,92,9,0,98,11,1,89,1,0,95,6,0,90,2,0,84,0,0,87,1,0,82,0,0,75,0,0,72,0,1,
2397 66,1,0,61,0,0,57,1,2,52,1,0,50,0,1,50,0,1,52,1,0,54,2,4,41,0,0,45,0,0,57,1,0,
2398 66,12,10,50,6,5,35,1,0,25,0,0,22,2,3,13,0,0,22,2,3,31,5,6,28,4,4,14,0,0,6,0,0,
2399 1,0,0,0,0,0,1,0,0,1,0,0,5,1,2,3,0,0,7,0,0,12,0,0,18,2,3,17,0,0,25,1,1,27,0,0,
2400 29,1,0,30,0,0,36,2,1,38,2,2,44,4,4,47,3,0,90,40,31,194,151,145,17,0,7,154,150,
2401 187,172,180,255,104,123,225,109,141,254,84,124,246,80,125,252,79,128,255,76,125,
2402 254,76,125,253,76,128,250,77,130,246,78,134,247,78,134,247,76,131,250,75,129,
2403 253,130,164,254,129,164,254,129,164,254,127,164,253,125,164,255,125,166,255,123,
2404 167,255,121,165,252,123,167,254,123,168,253,121,167,253,122,168,253,122,168,253,
2405 122,168,253,124,166,252,136,168,245,134,144,205,158,151,192,48,25,43,103,64,57,
2406 84,29,0,172,104,57,171,94,40,210,131,75,157,79,33,95,21,0,182,113,80,90,24,0,
2407 174,108,74,114,54,17,136,91,49,255,249,204,255,229,183,255,243,199,210,158,111,
2408 197,135,88,146,78,29,162,90,40,164,88,39,173,97,47,154,78,28,149,77,29,123,54,
2409 12,59,6,0,255,250,216,211,197,168,255,254,227,255,255,227,255,255,225,247,242,
2410 204,255,249,205,255,247,200,255,205,154,250,179,127,128,47,0,181,97,50,141,55,6,
2411 166,80,33,132,44,4,130,44,9,109,23,0,118,33,13,84,0,0,90,5,0,89,2,0,92,7,4,81,1,
2412 0,74,0,0,79,3,3,73,0,0,68,0,0,67,1,2,65,1,1,60,0,0,54,0,0,50,0,1,51,1,0,51,1,
2413 0,51,1,2,48,0,0,37,0,0,42,0,0,56,2,0,67,9,8,57,6,5,44,0,0,37,0,0,34,0,0,35,0,
2414 0,40,2,1,49,5,4,53,12,10,38,4,3,20,0,0,6,0,0,1,1,1,0,0,0,1,0,0,6,0,0,8,0,0,12,
2415 0,0,15,1,1,15,1,1,15,0,0,25,1,1,27,0,0,30,2,1,30,0,0,36,2,1,38,2,2,44,4,4,45,
2416 3,4,46,0,0,166,126,134,10,0,16,207,207,255,140,158,244,76,109,216,75,118,233,
2417 79,129,250,78,129,254,78,129,255,79,128,255,79,129,254,78,130,248,74,129,245,
2418 76,133,246,77,137,251,76,130,252,75,129,253,131,168,255,129,166,255,129,166,
2419 255,129,166,255,127,167,255,127,167,255,126,167,255,127,169,255,129,169,255,130,
2420 170,255,128,170,255,129,171,255,127,172,255,127,169,255,129,169,255,137,168,248,
2421 169,184,251,209,207,255,138,119,141,171,136,132,155,102,70,237,174,123,214,139,
2422 81,231,152,95,194,116,70,198,123,84,173,100,68,178,107,77,68,0,0,155,96,54,255,
2423 222,176,255,246,197,192,160,111,241,205,155,230,182,134,151,95,44,159,96,42,174,
2424 103,47,180,105,48,144,68,10,128,51,0,136,63,10,131,67,19,255,205,160,255,229,
2425 188,255,249,209,255,251,213,255,251,211,255,253,207,255,252,201,252,235,181,243,
2426 212,157,219,164,108,234,165,108,176,96,43,148,62,11,155,69,18,174,86,38,127,38,
2427 0,113,24,0,88,2,0,103,17,2,85,1,0,98,13,8,86,1,0,88,7,4,74,0,1,68,0,0,70,2,3,
2428 65,0,0,60,0,0,62,2,2,62,2,2,56,0,1,49,0,0,47,0,0,50,2,2,50,2,2,48,2,2,42,0,1,
2429 37,1,1,40,0,0,52,1,0,59,1,0,59,1,0,53,0,0,50,0,0,52,2,1,55,5,4,50,0,0,52,0,0,
2430 53,3,2,45,7,6,24,0,0,6,0,0,0,0,0,0,0,0,1,0,0,6,0,0,11,1,0,16,2,2,18,2,2,15,1,1,
2431 17,0,0,26,2,2,29,1,0,29,1,0,29,1,0,31,0,0,33,0,0,35,0,0,35,0,0,43,4,9,143,112,
2432 128,87,73,109,141,147,209,101,128,219,61,105,214,101,156,255,84,145,255,75,134,
2433 254,78,132,254,79,131,253,80,130,251,80,131,248,77,133,246,78,138,252,78,137,
2434 253,76,132,253,77,131,255,127,167,254,127,167,254,128,165,254,129,166,255,127,
2435 167,255,126,166,253,129,166,254,129,166,254,132,170,255,131,169,254,132,168,254,
2436 131,169,254,129,169,254,132,170,255,132,168,254,139,167,250,124,140,217,168,169,
2437 226,167,152,181,136,105,103,153,104,72,181,120,66,166,95,33,163,84,25,135,57,8,
2438 239,161,122,191,116,85,151,78,46,153,81,41,175,111,63,217,165,107,239,197,139,
2439 255,247,195,246,222,174,255,250,206,247,215,168,255,212,159,184,121,67,119,47,0,
2440 145,69,20,136,59,13,155,85,36,193,133,81,246,199,147,98,64,16,255,233,185,254,
2441 233,188,237,219,171,255,249,196,255,249,190,255,244,184,255,246,185,255,227,167,
2442 194,128,68,220,141,84,195,110,55,152,62,9,174,84,34,132,39,0,122,29,0,91,4,0,
2443 108,21,4,89,1,0,108,20,16,84,1,0,80,2,0,69,1,2,61,0,0,61,0,0,58,0,0,53,0,0,54,0,
2444 0,57,3,3,51,0,0,45,0,0,43,0,0,45,1,2,45,1,2,41,1,1,36,0,0,30,0,0,33,0,0,47,0,
2445 0,58,2,1,70,6,6,70,6,4,72,11,8,80,19,16,74,13,10,62,1,0,59,0,0,52,4,2,32,4,3,
2446 8,0,0,3,0,0,0,0,0,0,0,0,1,0,0,4,0,0,10,2,0,13,1,1,16,0,0,19,1,1,21,1,2,25,1,1,
2447 28,2,1,25,0,0,24,0,0,25,0,0,27,0,0,27,0,0,27,0,0,25,0,3,56,37,57,173,165,214,
2448 120,130,202,98,134,228,86,140,248,84,150,255,65,135,249,73,138,254,78,137,253,
2449 82,135,251,83,134,249,83,134,251,82,135,251,79,138,254,79,138,254,76,132,253,
2450 77,131,253,127,172,255,129,171,255,129,169,255,129,169,255,130,170,255,129,169,
2451 255,133,169,255,134,168,255,136,171,255,136,171,255,138,170,255,137,171,255,135,
2452 171,255,134,170,255,136,170,255,141,169,253,154,173,252,169,174,238,196,185,219,
2453 94,65,67,140,95,64,159,99,45,215,144,82,248,170,108,141,64,12,175,98,56,168,93,
2454 62,185,112,80,253,182,140,250,183,130,160,99,36,255,240,175,255,244,189,242,
2455 216,167,255,250,205,255,245,198,255,219,167,217,160,105,85,19,0,126,58,13,75,8,
2456 0,105,45,0,255,222,166,250,209,153,255,232,180,255,235,187,255,242,196,255,
2457 236,187,232,210,153,241,217,155,239,214,150,242,207,143,245,191,129,138,70,9,
2458 196,117,58,192,107,50,134,44,0,168,76,27,145,50,4,145,51,13,117,27,0,121,32,14,
2459 90,2,0,101,13,9,82,1,0,81,7,6,67,1,2,61,0,0,61,1,1,55,0,0,48,0,0,51,3,3,50,2,2,
2460 45,0,0,42,0,1,40,0,0,39,0,1,37,1,1,35,1,0,29,0,0,22,0,0,27,0,0,39,1,0,52,4,2,
2461 66,8,7,63,2,0,61,0,0,62,1,0,63,2,0,70,9,6,73,15,13,47,3,2,15,0,0,7,0,0,3,0,0,1,
2462 0,0,0,0,0,1,0,0,3,0,0,7,1,1,11,1,0,13,1,1,14,0,0,18,2,2,21,1,0,22,1,0,22,1,0,
2463 22,1,0,22,1,0,26,2,0,27,1,2,26,1,4,13,0,0,6,0,16,153,148,204,131,147,225,77,
2464 120,215,92,155,255,37,109,219,64,137,248,74,144,255,81,143,254,84,138,247,84,
2465 134,245,83,134,249,85,138,254,80,139,255,79,138,254,78,134,253,79,133,255,124,
2466 170,255,125,170,255,129,171,255,129,169,255,130,170,255,132,170,255,134,168,255,
2467 137,169,255,138,170,255,139,171,255,139,169,255,139,169,255,138,170,255,139,171,
2468 255,139,171,255,141,169,253,168,189,255,137,146,211,159,153,189,90,67,73,195,
2469 151,122,219,162,109,224,154,92,206,130,68,239,163,111,102,29,0,126,53,21,255,
2470 196,164,108,37,0,210,141,86,200,131,64,242,179,112,254,202,145,232,189,138,214,
2471 176,127,200,163,111,233,184,128,251,199,142,118,62,13,61,9,0,255,217,162,255,
2472 217,160,255,224,166,255,245,189,255,229,176,251,220,173,238,219,179,255,251,211,
2473 255,252,200,255,249,190,255,250,189,245,207,144,217,159,96,214,143,79,200,122,
2474 60,221,136,79,122,32,0,160,68,21,147,52,6,150,57,16,120,29,0,121,32,14,88,1,0,
2475 91,8,4,81,2,0,86,12,9,68,3,1,62,1,0,63,3,3,57,1,2,49,0,0,47,3,4,42,0,1,39,0,0,
2476 40,0,1,36,0,0,29,0,0,26,0,0,26,0,0,24,0,0,20,0,0,19,0,0,26,0,0,36,2,1,42,2,2,
2477 43,0,0,42,0,0,44,0,0,49,0,0,54,3,0,54,6,4,38,0,0,17,0,0,10,0,0,6,0,0,3,0,0,1,0,
2478 0,1,0,0,3,0,0,5,1,0,5,1,0,4,0,0,4,0,0,8,0,0,11,0,0,13,0,0,14,0,0,16,0,0,21,1,
2479 0,25,1,1,29,1,0,29,3,4,26,6,8,6,0,14,137,136,193,135,153,235,84,130,228,91,
2480 158,255,63,140,244,86,165,255,76,147,253,81,144,250,85,139,245,86,137,244,85,
2481 137,249,85,138,252,80,140,254,81,142,255,77,133,252,79,133,255,124,170,255,125,
2482 170,255,129,171,255,129,169,255,132,170,255,133,169,255,137,169,255,138,168,255,
2483 138,168,254,140,170,255,139,169,255,139,170,253,140,171,254,139,171,254,139,170,
2484 253,141,169,252,144,169,251,159,174,241,212,211,251,123,106,116,140,102,81,144,
2485 90,44,171,102,43,224,150,87,162,90,32,255,188,138,106,35,0,166,97,56,180,109,
2486 65,189,120,65,175,106,41,227,164,97,195,140,84,255,213,161,255,240,189,255,217,
2487 165,255,225,172,243,197,145,255,220,172,255,212,163,255,232,176,255,227,170,255,
2488 227,173,236,206,154,252,220,169,238,210,162,255,253,214,255,241,199,255,247,198,
2489 221,194,139,255,236,178,243,203,142,208,150,87,255,192,130,155,79,17,253,173,
2490 114,121,35,0,156,68,20,134,43,0,134,42,1,102,13,0,107,19,0,82,0,0,89,8,4,75,0,0,
2491 76,5,3,66,0,1,60,0,0,60,2,1,53,0,0,43,0,0,38,0,0,34,0,0,35,1,0,36,2,1,33,1,2,
2492 24,0,0,18,0,0,19,0,0,20,2,2,16,2,1,12,0,0,13,0,0,18,0,0,25,0,0,30,0,0,34,3,1,
2493 40,6,5,40,2,1,40,2,1,38,0,0,31,0,0,27,1,2,27,7,8,18,2,2,7,0,0,3,0,0,1,0,0,3,0,
2494 0,5,1,2,2,1,0,1,0,0,3,0,0,3,0,0,6,0,0,9,0,0,11,0,0,15,0,0,18,0,0,22,1,0,28,2,
2495 3,25,1,1,20,4,5,4,0,16,142,143,200,102,123,206,98,144,242,66,130,236,94,167,
2496 255,52,127,229,77,146,250,83,144,251,88,141,247,88,136,244,87,137,250,86,139,
2497 253,82,139,254,81,140,255,79,134,253,80,135,254,127,172,255,129,171,255,128,168,
2498 253,131,169,254,131,168,255,133,169,255,134,168,255,136,168,255,137,169,254,137,
2499 169,252,139,171,254,142,173,255,142,173,255,143,174,255,148,176,255,148,176,255,
2500 132,163,245,146,169,239,147,151,199,51,38,58,210,176,166,207,159,123,215,154,
2501 100,224,156,93,177,108,43,204,134,72,176,107,50,180,110,58,194,122,74,215,145,
2502 94,255,204,145,255,210,150,255,211,159,248,210,161,255,240,188,243,210,159,243,
2503 214,170,255,246,202,255,214,166,255,234,182,255,233,180,212,182,130,255,249,202,
2504 239,208,162,255,243,193,255,232,182,246,222,176,255,229,181,253,217,167,244,207,
2505 154,255,236,179,255,218,159,207,153,93,217,153,92,243,173,113,255,184,126,236,
2506 157,101,152,70,20,115,32,0,123,39,2,149,64,35,86,1,0,97,14,0,78,0,0,75,1,0,70,2,
2507 1,62,0,1,59,1,0,56,2,0,51,1,0,43,1,2,38,0,0,31,0,0,30,0,0,32,2,2,27,1,2,21,1,
2508 0,15,0,0,13,0,0,10,0,0,8,0,0,6,0,0,9,0,0,11,0,0,13,0,0,13,0,0,16,0,0,19,0,0,
2509 14,0,0,15,0,0,24,0,0,31,3,2,30,2,1,27,0,0,28,0,0,26,5,4,10,0,0,4,0,0,5,1,2,5,1,
2510 2,5,4,2,3,0,0,9,3,3,4,0,0,4,0,0,9,0,0,16,0,1,19,1,1,18,0,0,20,0,0,26,2,2,21,1,
2511 2,12,0,2,0,0,16,111,113,170,111,129,211,100,140,238,84,141,248,79,144,248,86,
2512 153,255,84,144,254,89,145,255,93,143,254,92,140,251,93,140,254,89,139,254,86,
2513 139,255,83,138,254,80,132,250,80,132,250,129,171,255,131,171,255,129,169,255,
2514 131,168,255,131,168,255,131,168,255,133,169,255,133,169,253,141,176,255,139,174,
2515 255,139,174,255,141,174,255,141,174,255,141,174,255,141,172,254,142,173,255,127,
2516 160,241,168,192,255,200,207,255,124,114,139,159,128,125,107,60,30,137,76,29,194,
2517 128,67,143,76,8,255,189,121,165,97,32,153,84,25,218,147,95,77,7,0,161,96,40,255,
2518 207,150,248,212,164,255,249,202,227,199,151,255,232,185,255,253,212,255,232,192,
2519 198,160,113,141,99,49,253,220,169,255,247,200,251,218,175,250,218,177,253,226,
2520 179,255,239,192,208,180,133,255,246,199,255,221,172,210,173,121,255,228,174,244,
2521 208,150,209,159,100,255,222,162,180,118,59,233,167,107,205,136,79,232,159,108,
2522 117,40,0,133,53,16,112,31,1,127,47,24,85,3,0,102,23,16,70,0,0,64,0,0,59,0,0,53,
2523 0,0,50,0,0,44,0,0,38,0,0,31,0,0,29,0,0,26,0,1,23,0,0,19,0,0,14,0,0,10,0,0,9,0,
2524 0,9,0,1,5,1,0,3,0,0,3,0,0,5,1,0,7,1,1,8,0,0,10,0,1,13,3,2,15,5,4,15,3,3,19,1,
2525 1,21,1,0,25,4,3,28,4,4,32,3,5,29,5,5,16,4,4,4,0,0,3,0,0,3,0,0,3,0,0,3,0,0,6,0,
2526 0,6,0,0,5,0,0,9,0,1,16,2,2,21,3,3,17,1,1,19,1,1,21,1,2,18,2,3,8,0,2,0,0,19,
2527 115,120,176,116,134,216,106,144,243,93,145,254,88,146,254,93,153,255,85,143,253,
2528 89,142,255,92,142,255,92,139,253,93,140,255,91,141,255,87,138,255,86,139,255,
2529 89,140,255,89,140,255,127,167,255,127,167,254,127,167,255,127,167,255,127,167,
2530 255,127,167,255,131,168,255,131,169,252,144,181,255,142,179,255,142,179,255,141,
2531 176,255,138,173,254,136,171,253,136,171,253,136,168,251,154,185,255,146,168,241,
2532 150,157,211,176,165,195,204,173,171,196,149,121,200,139,94,212,146,86,255,209,
2533 145,215,150,84,188,120,57,134,66,5,208,137,81,125,52,0,170,95,38,243,183,129,
2534 255,251,207,255,242,201,237,222,179,255,250,204,242,215,172,231,198,155,242,200,
2535 158,255,246,203,255,229,181,255,228,181,193,162,118,255,248,207,188,151,107,223,
2536 186,142,255,245,206,239,211,171,255,235,191,244,217,170,255,233,182,246,209,154,
2537 193,144,85,255,224,164,182,130,72,255,218,161,171,115,58,255,206,152,143,70,25,
2538 113,35,0,82,3,0,119,38,17,76,0,0,87,10,2,69,0,0,64,0,0,57,0,0,50,0,0,48,0,0,44,
2539 0,0,36,0,0,29,0,0,28,0,1,21,0,0,14,0,0,9,0,0,9,0,0,8,0,0,8,0,0,7,1,1,1,0,0,1,
2540 0,0,1,0,0,1,0,0,1,0,0,1,0,0,3,0,0,5,0,0,4,0,0,11,3,1,17,5,5,10,0,0,7,0,0,7,0,
2541 0,13,0,0,12,0,0,4,0,0,1,0,0,1,0,0,1,0,0,6,0,0,7,1,1,4,0,0,4,0,0,6,0,0,8,2,2,
2542 11,1,0,11,0,0,12,0,0,14,0,0,17,1,2,12,0,2,5,0,6,0,0,22,119,125,183,116,134,218,
2543 101,139,240,90,140,251,81,138,251,84,144,255,86,143,255,90,143,255,92,142,255,
2544 95,140,255,92,139,253,91,141,254,90,141,255,87,138,253,84,137,251,84,137,251,
2545 127,167,254,127,167,254,127,167,254,127,167,254,127,167,255,127,167,255,129,169,
2546 255,129,170,252,138,179,255,138,180,255,139,178,255,139,178,255,137,176,255,136,
2547 174,255,135,173,254,138,173,254,141,170,250,155,174,243,159,162,215,206,191,222,
2548 151,117,116,165,115,92,194,133,89,196,131,75,164,100,39,171,105,44,189,123,62,
2549 190,121,62,199,128,72,156,83,30,224,151,98,220,162,112,255,228,188,255,250,211,
2550 255,251,208,255,249,204,255,225,181,255,246,202,226,187,146,243,201,159,255,228,
2551 181,206,170,122,255,245,202,237,204,163,250,213,169,255,245,205,234,205,171,255,
2552 252,220,255,238,201,255,251,210,253,227,178,252,221,167,234,195,140,234,192,134,
2553 240,194,135,255,228,170,221,172,114,255,230,176,236,172,126,147,75,35,113,36,6,
2554 103,25,3,100,22,9,83,9,0,73,2,0,66,1,0,59,0,0,56,0,1,53,2,1,46,0,0,41,1,2,35,1,
2555 0,28,0,0,24,0,0,17,0,0,13,0,0,10,0,0,10,0,0,8,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,
2556 0,0,0,0,0,0,0,1,0,0,1,0,0,3,0,0,4,0,0,8,0,0,4,0,0,3,0,0,1,0,0,5,0,0,4,0,0,3,0,
2557 0,3,1,2,1,0,0,1,0,0,3,0,0,8,2,2,3,0,0,10,6,5,3,0,0,3,0,0,5,0,0,8,0,0,8,0,0,8,
2558 0,0,10,0,1,8,0,2,2,0,6,0,1,26,126,135,194,120,140,226,100,139,240,87,139,249,
2559 75,135,247,76,138,249,85,145,255,89,145,255,92,142,255,95,140,255,94,141,255,
2560 91,141,254,91,141,254,89,140,255,79,132,246,79,132,246,130,170,255,130,170,255,
2561 130,170,255,130,170,255,132,170,255,132,170,255,130,170,255,130,171,253,133,176,
2562 255,133,176,254,135,178,255,135,178,255,135,178,255,137,181,255,139,181,255,140,
2563 178,253,139,167,241,179,194,255,166,164,214,203,183,211,121,82,83,166,115,94,
2564 212,152,115,189,126,75,187,122,68,204,137,82,227,160,105,154,84,32,149,78,26,
2565 208,141,89,126,66,16,255,232,186,255,245,208,255,226,188,246,213,172,255,247,
2566 202,255,246,199,233,200,155,255,250,209,255,223,181,238,191,145,251,204,158,244,
2567 205,164,195,163,124,255,229,189,236,212,174,255,252,225,255,252,227,255,251,221,
2568 255,253,218,255,249,204,255,248,197,255,254,205,255,243,193,255,232,176,255,206,
2569 148,255,208,150,255,213,160,255,207,160,222,159,118,132,58,29,88,11,0,120,44,30,
2570 75,1,0,82,9,3,73,2,0,67,1,2,63,1,2,61,3,2,56,2,2,50,2,2,42,0,1,39,0,1,31,0,0,
2571 25,0,0,22,0,2,21,1,2,15,1,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,
2572 0,0,1,0,0,5,1,0,3,0,0,4,0,0,4,0,0,6,1,0,11,7,4,3,0,0,1,0,0,1,0,0,4,3,1,3,0,0,
2573 3,0,0,1,0,0,1,0,0,1,0,0,1,0,0,2,0,1,1,0,0,1,0,0,1,0,0,1,0,0,4,0,0,6,0,2,3,0,2,
2574 0,0,5,0,1,26,134,146,206,122,148,232,105,147,245,97,151,255,84,147,253,83,147,
2575 255,85,146,253,89,145,254,94,144,255,94,142,253,94,142,253,93,143,254,91,141,
2576 252,91,143,255,84,137,251,84,137,251,134,175,255,134,175,255,134,175,255,134,
2577 175,255,136,174,255,134,175,255,134,175,255,133,176,255,127,173,251,130,178,254,
2578 130,176,253,130,178,254,131,179,253,136,182,255,136,182,255,145,183,255,142,169,
2579 240,185,196,255,151,143,190,197,173,199,164,122,123,222,170,149,255,207,173,219,
2580 155,111,179,113,63,152,88,40,147,90,47,187,132,91,109,48,4,169,108,63,182,129,
2581 85,255,236,196,118,78,42,63,25,0,141,102,61,171,133,88,255,241,194,138,102,54,
2582 255,222,180,203,161,119,104,53,8,172,121,76,255,225,183,255,249,208,255,250,207,
2583 255,251,212,255,249,219,210,190,163,255,236,205,223,203,166,255,248,205,209,193,
2584 144,255,244,197,239,219,168,218,183,127,218,176,118,252,209,154,237,191,139,242,
2585 196,147,255,211,172,127,61,29,89,14,0,104,31,14,73,0,0,83,8,2,75,4,0,68,0,0,64,
2586 0,0,60,0,0,56,0,0,51,1,2,45,0,0,42,0,1,37,1,1,30,0,0,27,1,2,26,2,2,21,1,2,9,0,
2587 0,3,0,0,3,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,2,3,3,0,0,7,3,2,7,3,4,4,0,
2588 0,6,0,0,4,0,0,3,0,0,1,0,0,1,0,0,3,0,0,6,0,0,6,2,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
2589 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,2,0,0,5,0,0,24,117,132,189,112,141,
2590 221,99,143,238,95,152,255,89,152,255,86,150,255,88,149,255,89,145,254,94,144,
2591 255,97,145,255,95,143,253,93,144,253,92,144,253,93,145,255,82,135,247,82,135,
2592 247,137,179,255,137,179,255,137,178,255,137,178,255,137,179,255,137,179,255,137,
2593 178,255,135,178,255,132,180,254,133,183,255,132,180,254,132,182,255,132,182,255,
2594 132,182,255,133,181,255,141,179,252,124,147,215,189,195,253,161,148,191,196,167,
2595 189,149,105,104,137,80,61,196,132,104,166,101,63,203,136,93,173,118,79,38,4,0,
2596 255,248,227,255,246,214,255,230,193,255,243,205,112,62,25,131,93,57,244,212,174,
2597 124,86,49,37,0,0,255,209,163,255,209,161,122,74,28,163,114,71,107,60,18,255,246,
2598 204,216,172,127,241,204,159,255,251,206,252,237,194,255,245,203,255,242,201,255,
2599 249,207,247,226,183,255,251,206,249,228,181,255,239,187,252,233,177,255,232,177,
2600 255,235,180,255,231,177,250,217,164,255,226,180,255,228,186,201,140,109,106,36,
2601 10,121,49,27,96,23,8,79,6,0,71,1,0,65,0,0,61,0,0,59,1,0,54,0,0,49,1,1,43,0,0,
2602 47,3,4,38,0,0,30,0,0,27,1,2,29,1,0,26,2,2,17,1,1,10,0,0,10,2,0,4,0,0,3,0,0,2,1,
2603 0,1,1,1,0,0,0,1,0,0,4,2,3,3,0,0,7,1,1,12,6,6,8,0,0,6,0,0,6,0,0,6,0,0,14,8,8,8,
2604 4,3,5,1,0,6,0,0,4,0,0,3,0,0,3,0,0,10,2,0,7,0,0,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,
2605 0,0,0,0,0,0,1,1,3,0,0,4,0,0,19,120,136,188,111,138,215,94,139,232,93,151,251,
2606 87,150,253,82,145,250,91,149,255,94,148,255,95,146,255,97,145,255,96,147,252,
2607 94,145,250,92,145,251,93,145,254,83,137,245,81,137,246,138,180,255,138,180,255,
2608 138,180,255,138,180,254,138,180,254,138,180,254,137,181,255,135,181,255,138,186,
2609 255,138,186,255,136,184,255,132,182,255,132,182,255,130,180,253,129,177,251,138,
2610 175,246,174,194,255,154,156,205,71,56,89,149,117,132,208,161,155,175,117,97,165,
2611 100,72,70,6,0,103,45,5,189,143,107,255,248,230,255,246,231,115,79,53,100,55,22,
2612 115,61,27,127,77,44,255,248,214,255,245,211,86,50,14,255,231,193,104,56,16,125,
2613 76,33,218,167,122,255,219,176,97,55,15,233,194,151,255,235,187,232,196,148,249,
2614 228,183,255,245,201,201,179,132,184,157,110,255,232,186,248,226,179,216,195,150,
2615 255,245,197,255,251,196,250,235,178,255,251,195,201,180,127,255,237,183,248,220,
2616 170,255,247,202,215,180,142,252,202,169,74,13,0,113,47,23,82,13,0,76,9,0,69,4,0,
2617 63,2,1,59,0,0,57,1,0,52,1,0,48,0,0,44,0,0,46,2,3,39,0,0,31,0,0,28,0,0,31,0,0,
2618 31,1,1,27,1,0,19,0,0,17,3,2,10,0,0,5,0,0,3,2,0,0,0,0,0,0,0,2,0,1,3,0,0,7,3,2,4,
2619 0,0,4,0,0,4,0,0,9,3,3,9,4,1,7,0,0,6,0,0,6,0,0,4,0,0,8,2,2,3,0,0,5,1,0,6,0,0,
2620 25,15,14,6,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,1,3,0,1,20,
2621 147,159,207,132,156,228,110,154,241,107,161,255,98,157,255,87,149,252,90,149,
2622 253,94,148,254,98,149,255,96,147,254,95,147,249,93,146,248,93,146,250,92,146,
2623 252,92,149,255,92,149,255,132,173,252,134,176,252,138,180,255,141,183,255,143,
2624 185,255,141,183,255,137,181,255,135,179,254,133,180,252,143,190,255,139,186,255,
2625 141,187,255,141,191,255,125,173,247,142,188,255,145,178,245,173,186,239,202,197,
2626 237,100,78,101,164,127,134,209,157,146,234,174,150,161,94,65,93,33,0,156,114,76,
2627 255,245,209,232,192,166,53,8,0,248,201,173,255,217,185,255,244,211,255,219,186,
2628 39,4,0,56,22,0,101,62,29,63,22,0,47,7,0,50,9,0,241,195,159,255,245,203,255,246,
2629 202,255,246,202,200,164,116,194,160,114,234,211,169,255,253,213,251,232,192,225,
2630 203,162,224,202,155,244,223,176,255,248,201,255,252,202,255,251,198,255,244,189,
2631 255,248,193,255,252,198,255,237,186,255,250,203,240,215,175,247,219,182,255,239,
2632 205,195,150,121,102,46,23,94,32,17,71,11,3,68,9,5,61,3,1,66,10,9,55,0,0,53,2,0,
2633 48,0,0,48,4,3,43,1,2,44,4,4,44,4,5,42,3,4,39,0,1,39,1,0,43,5,4,42,12,10,25,5,4,
2634 10,0,0,4,0,0,3,1,2,2,2,2,1,0,0,3,0,0,9,5,4,3,0,0,3,0,0,4,0,1,5,1,2,4,0,1,3,0,0,
2635 1,0,0,4,0,0,8,0,0,27,16,12,3,0,0,1,0,0,3,0,0,3,0,0,3,0,0,3,0,0,3,0,0,1,0,0,0,
2636 0,0,1,0,0,4,0,0,4,0,0,10,4,4,3,0,0,1,1,1,0,0,14,0,1,43,94,114,177,131,169,252,
2637 90,141,233,119,175,255,98,157,255,95,153,253,97,152,255,101,152,255,98,150,252,
2638 99,151,253,95,148,250,92,149,252,92,149,254,91,148,255,90,147,254,135,176,255,
2639 137,181,255,138,180,254,141,183,255,142,184,255,141,183,255,139,181,255,139,181,
2640 255,129,171,245,142,184,255,126,168,240,144,186,255,126,170,243,134,178,251,133,
2641 173,245,151,179,242,188,195,239,187,177,204,140,116,129,162,124,123,151,99,85,
2642 117,60,33,175,116,82,106,56,19,255,238,201,255,232,196,201,157,128,255,219,189,
2643 54,5,0,79,29,0,116,64,25,102,54,16,255,242,211,255,231,201,255,244,212,254,220,
2644 192,255,244,225,255,222,202,200,161,128,192,157,117,209,186,144,255,237,193,228,
2645 197,151,255,245,199,255,249,208,255,237,197,255,254,216,255,249,209,255,250,206,
2646 255,248,201,255,247,200,247,239,190,245,235,182,246,237,182,255,249,195,255,253,
2647 201,255,246,201,220,203,160,255,238,200,255,250,216,251,221,187,255,234,205,255,
2648 224,201,57,6,0,59,2,0,53,0,0,56,3,0,49,0,0,70,19,15,49,0,0,51,2,0,40,0,0,39,0,0,
2649 38,0,0,39,0,0,42,0,0,42,0,0,43,0,0,42,0,0,36,0,0,18,0,0,10,0,0,7,0,0,4,0,0,4,0,
2650 0,4,0,0,6,0,0,6,0,0,8,0,0,6,0,0,4,0,0,4,0,0,4,0,0,3,0,0,3,0,0,4,0,0,33,22,18,
2651 10,0,0,6,0,0,4,0,0,6,0,0,13,4,5,4,0,0,4,0,0,9,3,3,4,0,0,4,0,0,4,0,0,6,0,0,19,
2652 11,9,4,0,0,3,0,0,1,0,0,0,0,9,0,2,33,167,180,233,117,149,224,115,161,249,87,140,
2653 232,96,150,246,98,152,252,99,152,254,100,152,254,98,150,251,99,153,253,96,151,
2654 251,92,149,252,91,150,254,92,149,255,92,149,255,134,178,253,134,180,255,138,182,
2655 255,140,184,255,143,185,255,141,184,253,141,183,255,143,183,255,136,176,248,151,
2656 189,255,135,172,242,156,193,255,126,163,234,156,190,255,142,172,244,166,185,243,
2657 178,178,212,203,189,204,255,243,244,152,115,106,213,166,146,207,160,130,255,229,
2658 190,255,235,195,255,248,210,255,225,191,255,247,217,227,191,159,226,183,151,255,
2659 244,207,237,183,137,243,189,142,255,226,185,255,220,183,255,247,214,237,216,189,
2660 43,17,4,35,7,0,255,228,197,255,228,189,255,233,195,255,253,212,255,244,197,255,
2661 238,191,255,251,209,168,149,107,241,224,181,246,233,189,255,253,210,255,255,210,
2662 255,255,210,255,253,204,254,251,200,254,248,196,251,244,190,248,240,191,255,254,
2663 216,255,253,218,255,249,213,255,227,192,202,167,135,241,206,178,255,246,224,249,
2664 211,192,65,14,0,63,10,0,45,0,0,86,39,29,47,0,0,60,13,5,46,0,0,67,20,12,41,0,0,
2665 38,0,0,38,0,0,44,0,0,51,1,0,52,1,0,48,0,0,37,0,0,24,0,0,21,3,3,22,4,4,21,3,3,
2666 18,2,2,18,4,3,14,2,2,14,0,0,31,10,9,23,2,1,15,0,0,12,0,0,13,1,1,15,3,3,12,0,0,
2667 8,0,0,8,0,0,10,0,0,14,0,0,39,24,21,14,0,0,12,0,0,8,0,0,16,6,5,8,0,0,8,0,0,10,
2668 0,0,9,0,0,6,0,0,4,0,0,11,5,5,4,0,0,3,0,0,0,0,5,0,0,18,142,151,190,124,152,215,
2669 126,165,244,76,122,208,110,161,253,103,153,252,102,151,254,101,150,252,102,152,
2670 251,99,151,250,96,151,251,92,151,253,91,150,252,92,149,254,92,149,254,134,180,
2671 255,135,181,255,136,183,255,140,184,255,141,183,255,145,185,255,145,185,255,145,
2672 183,254,149,186,255,151,184,253,159,190,255,158,187,253,146,175,243,163,188,255,
2673 150,171,236,174,184,235,208,204,227,106,89,95,108,85,79,153,121,106,122,82,57,
2674 255,246,214,212,180,141,255,236,196,228,199,167,247,220,191,241,214,185,255,241,
2675 211,247,212,180,214,172,134,187,135,87,255,217,166,116,63,19,152,108,69,255,248,
2676 212,255,251,223,255,250,236,255,250,232,228,201,171,255,249,212,250,230,195,194,
2677 176,140,236,218,178,255,244,201,255,238,200,236,221,182,255,250,209,255,251,211,
2678 254,250,212,254,255,215,255,255,216,255,255,212,255,255,207,255,255,206,255,252,
2679 202,252,245,199,255,253,216,255,255,223,236,216,181,237,208,174,255,246,215,255,
2680 221,194,234,206,184,255,246,225,173,126,106,80,29,10,69,21,7,43,0,0,88,45,36,40,
2681 0,0,68,20,10,82,33,26,45,1,0,42,0,1,42,0,1,48,2,2,53,3,2,57,6,5,52,2,3,43,1,2,
2682 24,0,0,25,0,0,27,1,2,22,0,0,22,0,0,25,1,0,22,1,0,18,0,0,31,0,0,31,0,0,29,1,0,
2683 24,0,0,21,0,0,20,0,0,20,0,0,21,2,0,13,0,0,51,33,23,22,2,0,19,0,0,21,1,0,26,9,2,
2684 14,1,0,11,0,0,25,10,5,17,0,0,71,53,43,20,4,0,8,0,0,14,5,0,8,0,0,10,0,0,15,2,0,
2685 8,0,0,4,0,5,145,149,176,173,193,246,90,123,194,85,126,208,140,187,255,105,153,
2686 251,105,153,253,103,151,251,102,152,249,99,153,251,96,151,251,93,152,252,92,154,
2687 255,88,147,251,90,147,252,136,184,255,133,181,253,136,183,255,140,184,255,141,
2688 183,255,145,185,255,148,185,255,153,188,255,152,183,250,135,162,229,177,201,255,
2689 145,167,227,162,182,245,161,177,237,150,161,217,172,175,216,110,104,118,68,54,
2690 53,212,195,187,255,251,234,234,200,173,244,208,174,201,167,129,255,249,212,116,
2691 95,68,255,250,229,255,251,227,204,180,154,255,250,219,255,235,199,118,74,27,
2692 255,245,197,178,125,83,255,227,189,255,227,190,244,219,188,244,224,199,255,237,
2693 210,255,247,213,255,237,202,255,242,213,255,253,224,245,230,197,255,251,217,255,
2694 255,227,255,254,224,200,189,157,255,245,210,255,254,221,255,255,224,255,255,224,
2695 253,253,217,253,254,212,255,255,211,255,255,217,255,254,214,255,251,205,235,223,
2696 181,238,225,193,255,251,224,255,248,220,253,222,194,254,226,202,251,220,199,253,
2697 215,192,203,158,137,61,13,0,49,2,0,30,0,0,83,44,37,48,3,0,46,0,0,45,0,0,45,0,1,
2698 47,1,1,45,0,0,44,0,0,45,0,0,50,0,1,48,2,2,36,0,0,36,1,0,33,2,0,28,0,0,31,0,0,
2699 35,1,0,37,4,0,34,0,0,42,3,0,42,1,0,40,2,1,39,1,0,41,1,0,41,2,0,40,2,0,36,2,0,
2700 81,49,34,111,82,66,35,11,0,51,29,16,105,84,65,255,248,228,255,253,236,255,254,
2701 239,228,211,201,255,251,237,255,250,232,255,247,223,255,247,224,217,202,179,255,
2702 247,228,120,93,74,255,235,216,118,89,75,13,0,0,47,42,62,109,117,164,136,159,226,
2703 115,150,231,93,137,224,109,153,248,108,154,250,108,154,250,102,152,247,99,153,
2704 249,96,154,253,91,153,252,90,152,253,86,145,249,87,146,250,135,185,255,135,185,
2705 255,137,185,255,136,183,253,141,183,255,147,186,255,153,188,255,157,188,255,165,
2706 190,255,141,162,225,186,203,255,157,173,225,161,173,225,187,195,244,161,165,210,
2707 194,193,224,186,179,186,255,252,246,255,244,232,255,252,232,255,249,221,255,222,
2708 186,238,205,164,255,245,207,255,251,222,255,251,227,242,215,188,255,249,219,255,
2709 250,220,242,208,171,249,202,160,217,163,119,255,199,162,188,133,102,255,213,180,
2710 255,227,195,255,241,210,255,252,220,202,172,138,236,210,177,255,253,225,255,255,
2711 228,242,229,197,255,255,225,255,255,230,253,253,229,255,255,230,255,251,223,255,
2712 254,226,255,255,227,255,255,227,255,255,220,255,254,213,255,255,212,255,255,217,
2713 255,254,212,255,253,204,253,242,196,255,252,220,255,253,227,233,209,181,228,201,
2714 172,255,249,222,251,221,195,255,221,195,255,225,202,237,196,178,55,13,0,41,3,0,
2715 39,1,0,79,34,28,44,0,0,48,0,0,50,2,0,53,2,1,49,0,0,43,0,0,43,0,0,49,0,0,52,4,2,
2716 54,9,6,54,13,11,45,7,6,37,1,1,41,3,2,50,9,7,62,19,13,64,19,13,90,43,35,66,19,
2717 11,46,1,0,53,8,3,76,31,26,90,45,39,72,27,21,52,10,0,39,1,0,43,11,0,255,249,234,
2718 255,248,232,175,151,127,255,251,225,255,245,220,255,239,215,255,248,228,31,4,0,
2719 243,212,184,236,206,178,255,250,223,255,247,223,159,131,107,255,247,221,217,172,
2720 143,255,219,196,221,190,185,255,249,255,115,115,153,171,186,243,131,159,232,118,
2721 154,238,115,155,243,112,153,245,110,153,245,106,155,248,99,153,249,95,155,253,
2722 92,156,254,91,155,255,88,147,249,89,148,250,136,189,255,138,188,255,136,184,
2723 255,136,183,253,141,183,255,147,186,255,153,188,255,157,186,252,173,194,255,165,
2724 182,238,166,178,228,183,192,235,133,139,175,230,233,255,173,173,201,243,240,255,
2725 255,251,252,255,253,241,232,221,203,255,242,218,218,181,154,132,89,55,125,90,48,
2726 255,246,202,152,124,85,255,226,190,109,70,31,127,82,43,64,16,0,229,175,137,85,
2727 23,0,100,36,1,64,0,0,66,4,0,131,71,47,59,5,0,32,0,0,248,213,181,255,249,216,
2728 165,139,106,255,250,217,255,255,221,248,234,197,255,251,215,255,255,229,248,247,
2729 226,255,255,239,255,255,236,254,252,227,255,255,224,255,255,221,255,254,215,255,
2730 253,207,255,253,206,255,252,203,245,235,186,255,253,204,255,253,208,253,238,197,
2731 253,237,201,255,251,218,255,251,221,255,235,207,187,153,126,225,190,162,255,244,
2732 217,255,240,217,230,198,177,94,56,35,65,22,5,52,4,0,80,32,22,61,11,2,62,12,3,61,
2733 6,3,58,5,1,55,1,0,52,1,0,52,2,1,50,2,2,47,2,0,43,0,0,37,0,0,39,0,0,40,0,0,44,
2734 0,0,50,1,0,59,9,0,79,29,18,61,12,0,47,0,0,44,0,0,46,2,0,51,8,2,58,10,0,56,10,
2735 0,138,102,76,255,249,221,255,248,227,255,248,228,115,85,61,39,5,0,210,169,137,
2736 66,26,0,223,187,155,255,248,216,89,46,12,77,36,6,41,8,0,36,4,0,189,154,132,36,
2737 0,0,119,66,32,145,90,60,93,46,36,197,166,172,9,0,28,124,130,178,136,156,219,
2738 121,149,223,121,154,233,118,154,238,114,151,239,109,155,243,103,156,250,95,155,
2739 251,91,157,254,90,155,255,93,152,254,94,152,252,139,190,255,137,188,254,136,185,
2740 254,134,183,252,138,185,253,143,186,254,155,190,255,163,191,254,171,188,244,176,
2741 184,231,136,140,177,201,201,227,98,96,110,255,253,255,171,164,171,255,252,251,
2742 255,253,241,61,46,27,255,252,228,255,250,220,255,246,214,65,23,0,248,214,168,
2743 255,247,200,255,247,203,251,218,175,109,66,23,106,59,17,101,49,10,100,42,5,91,
2744 25,0,166,97,66,99,35,10,84,24,0,87,25,0,92,33,3,130,80,47,164,121,86,90,56,21,
2745 255,242,207,247,229,193,254,240,203,255,250,210,239,225,186,255,253,222,255,255,
2746 232,255,255,237,255,252,233,255,254,225,255,253,217,255,245,209,236,224,182,239,
2747 228,182,255,246,195,255,247,195,244,232,182,242,234,187,255,249,204,250,233,190,
2748 252,233,193,248,234,199,254,238,205,255,241,211,240,207,176,247,214,181,206,175,
2749 144,247,216,187,255,246,218,255,219,189,100,54,28,49,2,0,83,36,20,67,15,1,64,11,
2750 0,60,6,0,60,5,0,63,8,3,60,7,3,50,1,0,45,0,0,56,12,9,42,1,0,42,1,0,50,6,5,53,8,
2751 5,50,1,0,55,5,0,74,24,15,72,23,9,88,39,24,87,39,25,60,14,1,40,0,0,37,0,0,57,
2752 15,3,92,54,35,112,81,53,255,233,203,230,202,178,44,16,0,155,121,93,255,246,214,
2753 223,175,139,228,178,141,220,176,141,249,209,173,255,226,187,108,67,35,52,11,0,
2754 255,245,227,255,225,196,255,213,179,255,223,188,146,95,66,64,20,7,154,120,121,
2755 41,23,39,107,102,132,174,179,221,145,158,210,136,151,210,133,151,215,130,152,
2756 225,120,151,231,109,153,242,100,155,248,91,153,252,91,155,255,98,156,255,99,154,
2757 254,140,187,255,140,187,255,138,187,254,139,190,255,139,190,255,143,191,255,151,
2758 188,255,162,188,247,185,196,242,219,218,249,185,176,193,255,252,253,17,7,0,248,
2759 236,220,255,252,234,222,202,178,255,252,225,163,138,108,118,87,56,120,84,48,178,
2760 140,95,255,229,180,243,207,155,255,245,194,255,228,184,164,132,91,255,230,188,
2761 205,167,128,251,217,180,255,243,208,135,72,37,68,2,0,239,183,146,134,85,45,85,
2762 35,0,216,164,125,90,35,0,123,74,33,202,167,129,211,183,146,181,157,121,219,197,
2763 158,255,237,194,225,206,164,220,201,168,197,178,148,235,214,183,236,217,184,255,
2764 244,209,255,255,216,255,254,214,243,230,188,255,251,206,255,250,201,255,252,206,
2765 241,230,185,248,237,192,250,237,195,255,245,205,244,225,185,233,215,179,252,234,
2766 198,244,220,184,255,231,191,255,237,197,185,156,114,213,176,134,237,195,155,254,
2767 210,171,239,195,160,197,156,128,42,0,0,80,32,9,56,4,0,69,16,0,75,21,9,51,1,0,52,
2768 2,0,48,0,0,49,2,0,41,1,0,39,0,0,41,0,0,51,3,0,69,19,8,69,20,6,49,1,0,43,0,0,
2769 84,40,27,45,0,0,69,22,2,68,22,0,58,16,0,106,71,49,64,38,23,18,0,0,33,5,0,37,7,
2770 0,93,63,35,194,161,128,217,179,140,96,54,14,177,131,97,36,0,0,77,32,0,166,128,
2771 92,254,230,192,255,244,207,141,99,61,127,77,40,130,82,42,134,92,54,29,0,0,38,6,
2772 0,21,0,0,21,0,0,159,138,135,177,158,162,7,0,5,108,100,115,211,197,222,145,133,
2773 169,148,144,194,166,175,240,59,86,167,118,161,253,98,152,252,100,158,255,104,
2774 156,255,106,156,255,143,186,255,142,187,255,138,187,254,139,190,255,138,189,254,
2775 142,190,254,151,189,254,166,188,245,167,172,210,204,196,217,255,243,246,239,221,
2776 209,255,250,226,255,237,204,167,143,107,255,240,203,255,230,195,255,228,194,255,
2777 249,214,160,126,88,255,230,184,237,207,157,247,215,164,139,109,59,230,206,162,
2778 255,252,212,255,248,209,240,210,172,200,170,134,255,245,209,101,45,8,134,76,36,
2779 255,242,196,249,206,161,255,244,201,253,211,169,245,197,151,100,56,11,255,243,
2780 204,255,251,214,255,250,213,255,247,210,255,250,210,255,240,201,255,251,221,255,
2781 251,221,255,250,216,252,230,193,236,218,180,255,250,211,255,250,208,250,237,195,
2782 238,227,182,246,235,190,254,242,200,255,251,211,255,252,214,254,242,204,255,244,
2783 210,243,224,191,255,239,205,255,252,216,255,244,208,255,242,202,255,235,190,255,
2784 231,184,218,184,138,255,228,184,255,220,177,191,153,114,255,234,201,131,97,69,
2785 104,64,38,84,40,15,74,28,5,52,5,0,48,0,0,78,28,17,89,39,28,68,21,11,38,0,0,39,0,
2786 0,47,0,0,59,9,0,75,22,6,80,28,7,75,27,7,72,25,7,91,46,27,41,0,0,104,54,27,93,
2787 44,12,127,82,49,255,240,208,255,248,226,255,249,227,247,212,184,255,243,212,
2788 255,247,212,255,245,205,255,224,178,255,225,177,251,203,165,79,31,0,255,244,207,
2789 202,160,122,255,250,213,255,248,208,255,220,178,167,114,70,255,242,199,113,68,
2790 29,255,245,215,198,167,146,255,249,232,176,148,134,255,247,236,194,166,154,255,
2791 235,226,253,228,223,211,180,185,198,171,188,137,122,153,157,157,207,141,159,233,
2792 119,154,244,98,146,244,94,148,248,107,155,255,109,154,255,147,186,255,145,185,
2793 254,139,186,254,139,190,255,139,190,255,145,191,253,154,189,253,167,187,238,198,
2794 202,231,255,251,255,65,49,50,255,250,237,198,167,138,99,67,28,84,55,13,90,62,22,
2795 253,223,189,38,9,0,109,84,53,255,250,217,255,254,220,255,251,211,255,250,204,
2796 250,226,180,255,254,215,255,252,217,255,251,215,255,247,210,255,245,206,182,134,
2797 94,128,81,39,255,240,196,255,246,198,255,231,186,196,167,127,255,250,210,255,
2798 238,193,255,250,206,255,250,216,255,252,220,255,248,214,255,247,212,255,254,220,
2799 255,252,222,255,255,233,255,255,234,255,254,228,255,251,221,255,251,218,255,252,
2800 214,255,247,206,255,253,211,255,253,214,255,255,217,255,251,212,255,251,214,255,
2801 253,220,255,255,226,255,255,228,255,250,224,255,249,217,255,254,218,255,253,221,
2802 255,254,219,248,217,171,255,225,177,255,252,211,255,243,202,255,239,199,255,251,
2803 212,255,252,221,255,249,222,255,249,220,255,250,220,255,247,218,175,138,112,72,
2804 25,7,52,3,0,63,14,0,46,0,0,51,1,0,59,7,0,74,18,5,78,22,5,76,19,0,76,20,0,81,27,
2805 1,91,37,9,112,61,34,115,64,35,116,63,29,122,70,31,76,24,0,92,43,3,164,116,78,
2806 100,51,11,122,67,26,103,46,3,99,40,0,121,63,17,106,46,0,235,175,123,228,174,127,
2807 255,229,182,123,62,15,111,57,11,93,50,8,37,0,0,255,233,195,59,7,0,102,50,10,45,
2808 0,0,167,121,87,80,35,4,106,59,33,53,8,0,255,246,227,79,43,27,37,0,0,234,198,
2809 186,36,1,0,44,17,24,6,0,12,19,23,60,165,182,251,106,136,222,110,157,249,117,170,
2810 255,111,157,255,112,156,255,150,184,255,147,186,255,141,186,254,141,189,255,140,
2811 189,255,146,190,253,158,190,251,170,186,235,250,251,255,172,161,167,226,212,209,
2812 255,250,234,201,165,131,255,245,201,255,237,190,255,246,200,233,199,161,255,249,
2813 217,255,245,214,255,253,223,246,227,194,255,248,211,249,226,184,235,214,171,237,
2814 227,191,255,252,216,255,250,213,157,123,85,199,150,109,159,105,61,255,228,183,
2815 201,153,107,174,126,78,163,120,75,255,247,207,255,245,205,250,216,170,117,80,35,
2816 240,208,170,255,238,205,141,101,66,189,153,121,255,246,218,255,250,225,255,251,
2817 228,255,243,219,255,247,221,236,209,179,255,226,190,230,198,159,242,215,172,255,
2818 237,195,255,249,209,255,245,205,248,225,184,246,223,182,255,236,203,255,250,220,
2819 255,252,227,240,223,197,251,240,208,252,246,212,254,247,218,255,253,218,207,177,
2820 127,191,155,105,68,40,1,255,245,210,219,187,148,232,200,161,188,162,127,255,250,
2821 217,212,199,167,255,245,213,255,250,217,204,175,143,112,66,40,58,6,0,92,41,20,
2822 70,18,0,85,28,11,90,31,15,94,33,15,88,27,8,81,20,0,81,21,0,89,30,0,95,39,6,79,
2823 24,0,79,24,0,248,196,157,253,202,159,208,155,111,249,195,149,181,125,78,153,95,
2824 47,119,56,12,117,54,10,106,50,3,170,116,69,150,99,54,166,115,68,109,57,7,234,
2825 181,127,111,53,3,203,147,98,255,221,175,216,168,128,232,179,145,77,24,0,150,98,
2826 61,161,107,69,255,243,204,150,94,59,85,28,1,153,98,77,64,17,0,125,82,63,86,39,
2827 19,132,86,70,71,33,24,22,0,0,8,0,5,0,0,30,174,188,251,104,132,216,107,152,245,
2828 109,159,255,111,157,255,112,156,255,151,184,255,148,185,255,145,185,255,144,187,
2829 255,143,188,255,150,190,252,162,188,249,174,187,232,255,252,255,238,228,227,255,
2830 253,242,255,241,217,254,216,177,222,174,126,252,202,151,226,180,130,255,233,186,
2831 198,169,129,245,224,193,255,253,220,240,207,164,237,203,157,255,246,203,59,40,0,
2832 255,254,212,255,251,209,139,102,60,252,199,155,151,88,44,125,61,17,204,141,97,
2833 255,193,149,153,89,45,104,45,3,166,124,82,255,244,202,124,68,19,160,98,49,135,
2834 76,32,116,57,17,120,59,28,73,13,0,88,34,10,71,19,0,90,39,8,119,66,32,170,118,
2835 81,114,62,23,116,63,21,101,50,5,249,201,155,244,200,155,253,210,165,189,148,
2836 104,221,177,132,248,203,161,228,186,146,219,180,141,216,173,138,153,119,84,251,
2837 233,197,255,251,216,255,241,206,253,234,192,255,237,185,221,185,133,213,173,137,
2838 48,5,0,231,184,142,86,39,0,212,165,119,205,171,126,255,250,211,255,254,217,255,
2839 254,219,255,236,202,237,193,158,130,74,39,145,88,58,88,31,2,93,31,8,85,23,2,80,
2840 17,0,85,23,2,99,37,12,111,50,21,118,58,24,120,61,29,59,2,0,130,77,46,184,139,
2841 100,255,231,186,255,206,157,215,162,112,255,208,159,154,97,52,66,6,0,250,198,
2842 159,255,224,179,255,247,203,255,253,220,255,248,214,255,227,180,243,197,145,255,
2843 243,196,219,175,128,255,222,173,245,197,151,59,3,0,118,61,32,125,74,43,50,0,0,
2844 227,163,119,122,57,17,63,4,0,52,0,0,51,2,0,95,44,23,93,39,13,218,168,145,251,
2845 209,195,31,0,0,64,42,55,24,14,48,174,182,245,122,148,232,110,154,249,93,145,246,
2846 111,156,255,112,156,255};
2847 static Fl_RGB_Image image_sfinx(idata_sfinx, 130, 101, 3, 0);
2849 void x11_ui::init() {
2850   { main_w = new Fl_Double_Window(945, 365, gettext("Faraon"));
2851     main_w->callback((Fl_Callback*)cb_main_w);
2852     { Fl_Menu_Bar* o = new Fl_Menu_Bar(0, 0, 945, 22);
2853       o->menu(menu_);
2854     } // Fl_Menu_Bar* o
2855     { status_bar_o = new Fl_Output(0, 347, 945, 20);
2856       status_bar_o->tooltip(gettext("Status"));
2857       status_bar_o->box(FL_PLASTIC_UP_BOX);
2858       status_bar_o->color((Fl_Color)31);
2859       status_bar_o->deactivate();
2860     } // Fl_Output* status_bar_o
2861     { log_br = new Fl_Browser(-1, 21, 948, 326);
2862       log_br->type(1);
2863       log_br->color((Fl_Color)31);
2864       log_br->labelfont(4);
2865       log_br->textfont(4);
2866     } // Fl_Browser* log_br
2867     main_w->end();
2868   } // Fl_Double_Window* main_w
2869   { preferences_w = new Fl_Double_Window(742, 373, gettext("Preferences"));
2870     preferences_w->color((Fl_Color)31);
2871     { Fl_Button* o = new Fl_Button(390, 330, 112, 25, gettext("Cancel"));
2872       o->labeltype(FL_ENGRAVED_LABEL);
2873       o->callback((Fl_Callback*)cb_Cancel);
2874     } // Fl_Button* o
2875     { Fl_Button* o = new Fl_Button(572, 330, 112, 25, gettext("Apply"));
2876       o->labeltype(FL_ENGRAVED_LABEL);
2877       o->callback((Fl_Callback*)cb_Apply);
2878     } // Fl_Button* o
2879     { prefs_tree_scroll = new Fl_Scroll(10, 29, 173, 283);
2880       prefs_tree_scroll->type(6);
2881       prefs_tree_scroll->box(FL_ENGRAVED_FRAME);
2882       prefs_tree_scroll->color((Fl_Color)28);
2883       config_tree = new Fl_Toggle_Tree(12, 12, prefs_tree_scroll->w() - prefs_tree_scroll->scrollbar.w(), 10);
2884       fill_config_tree();
2885       prefs_tree_scroll->end();
2886     } // Fl_Scroll* prefs_tree_scroll
2887     { config_connection_gr = new Fl_Group(183, 19, 535, 283);
2888       config_connection_gr->box(FL_ENGRAVED_FRAME);
2889       config_connection_gr->hide();
2890       { config_sfinx_server_name_i = new Fl_Input(273, 89, 375, 26, gettext("Sfinx Server Name"));
2891         config_sfinx_server_name_i->color((Fl_Color)29);
2892         config_sfinx_server_name_i->labeltype(FL_ENGRAVED_LABEL);
2893         config_sfinx_server_name_i->align(FL_ALIGN_TOP);
2894       } // Fl_Input* config_sfinx_server_name_i
2895       { Fl_Choice* o = new Fl_Choice(227, 179, 211, 23, gettext("Minimum Auth Level"));
2896         o->down_box(FL_BORDER_BOX);
2897         o->color((Fl_Color)48);
2898         o->labeltype(FL_ENGRAVED_LABEL);
2899         o->align(FL_ALIGN_TOP_LEFT);
2900         o->deactivate();
2901         o->menu(menu_Minimum);
2902       } // Fl_Choice* o
2903       { Fl_Choice* o = new Fl_Choice(227, 230, 211, 23, gettext("Minimum Debug Level"));
2904         o->down_box(FL_BORDER_BOX);
2905         o->color((Fl_Color)48);
2906         o->labeltype(FL_ENGRAVED_LABEL);
2907         o->align(FL_ALIGN_TOP_LEFT);
2908         o->deactivate();
2909         o->menu(menu_Minimum1);
2910       } // Fl_Choice* o
2911       { Fl_Choice* o = new Fl_Choice(476, 179, 211, 23, gettext("Minimum Crypt Level"));
2912         o->down_box(FL_BORDER_BOX);
2913         o->color((Fl_Color)48);
2914         o->labeltype(FL_ENGRAVED_LABEL);
2915         o->align(FL_ALIGN_TOP_LEFT);
2916         o->deactivate();
2917         o->menu(menu_Minimum2);
2918       } // Fl_Choice* o
2919       config_connection_gr->end();
2920     } // Fl_Group* config_connection_gr
2921     { config_files_module_gr = new Fl_Group(193, 29, 535, 283);
2922       config_files_module_gr->box(FL_ENGRAVED_FRAME);
2923       config_files_module_gr->hide();
2924       { config_files_module_unsorted_path_i = new Fl_Input(283, 68, 375, 26, gettext("Unsorted files path on Sfinx server"));
2925         config_files_module_unsorted_path_i->color((Fl_Color)29);
2926         config_files_module_unsorted_path_i->labeltype(FL_ENGRAVED_LABEL);
2927         config_files_module_unsorted_path_i->align(FL_ALIGN_TOP);
2928       } // Fl_Input* config_files_module_unsorted_path_i
2929       { config_files_module_sorted_path_i = new Fl_Input(283, 128, 375, 26, gettext("Sorted file tree path on Sfinx server"));
2930         config_files_module_sorted_path_i->color((Fl_Color)29);
2931         config_files_module_sorted_path_i->labeltype(FL_ENGRAVED_LABEL);
2932         config_files_module_sorted_path_i->align(FL_ALIGN_TOP);
2933       } // Fl_Input* config_files_module_sorted_path_i
2934       { gen_desc_files_b = new Fl_Check_Button(209, 233, 241, 23, gettext("Generate description files"));
2935         gen_desc_files_b->box(FL_PLASTIC_UP_BOX);
2936         gen_desc_files_b->down_box(FL_DOWN_BOX);
2937         gen_desc_files_b->selection_color(FL_SELECTION_COLOR);
2938         gen_desc_files_b->labeltype(FL_ENGRAVED_LABEL);
2939         gen_desc_files_b->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
2940       } // Fl_Check_Button* gen_desc_files_b
2941       { config_files_module_desc_file_name_i = new Fl_Input(283, 189, 375, 26, gettext("Description file name"));
2942         config_files_module_desc_file_name_i->color((Fl_Color)29);
2943         config_files_module_desc_file_name_i->labeltype(FL_ENGRAVED_LABEL);
2944         config_files_module_desc_file_name_i->align(FL_ALIGN_TOP);
2945       } // Fl_Input* config_files_module_desc_file_name_i
2946       { process_files_mime_type_b = new Fl_Check_Button(472, 233, 241, 23, gettext("Detect files MIME type"));
2947         process_files_mime_type_b->box(FL_PLASTIC_UP_BOX);
2948         process_files_mime_type_b->down_box(FL_DOWN_BOX);
2949         process_files_mime_type_b->selection_color(FL_SELECTION_COLOR);
2950         process_files_mime_type_b->labeltype(FL_ENGRAVED_LABEL);
2951         process_files_mime_type_b->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
2952       } // Fl_Check_Button* process_files_mime_type_b
2953       config_files_module_gr->end();
2954     } // Fl_Group* config_files_module_gr
2955     { config_confirmation_gr = new Fl_Group(183, 19, 535, 283);
2956       config_confirmation_gr->box(FL_ENGRAVED_FRAME);
2957       config_confirmation_gr->hide();
2958       { exit_confirm_b = new Fl_Check_Button(216, 45, 204, 23, gettext("Exit confirm"));
2959         exit_confirm_b->box(FL_PLASTIC_UP_BOX);
2960         exit_confirm_b->down_box(FL_DOWN_BOX);
2961         exit_confirm_b->selection_color(FL_SELECTION_COLOR);
2962         exit_confirm_b->labeltype(FL_ENGRAVED_LABEL);
2963         exit_confirm_b->deactivate();
2964       } // Fl_Check_Button* exit_confirm_b
2965       config_confirmation_gr->end();
2966     } // Fl_Group* config_confirmation_gr
2967     preferences_w->end();
2968   } // Fl_Double_Window* preferences_w
2969   { select_slice_w = new Fl_Double_Window(730, 352, gettext("Select Sfinx Slice"));
2970     select_slice_w->color((Fl_Color)31);
2971     { Fl_Button* o = new Fl_Button(594, 312, 112, 25, gettext("Cancel"));
2972       o->box(FL_PLASTIC_UP_BOX);
2973       o->labeltype(FL_ENGRAVED_LABEL);
2974       o->callback((Fl_Callback*)cb_Cancel1);
2975     } // Fl_Button* o
2976     { select_slice_b = new Fl_Button(16, 312, 548, 25, gettext("Select"));
2977       select_slice_b->box(FL_PLASTIC_UP_BOX);
2978       select_slice_b->labeltype(FL_ENGRAVED_LABEL);
2979       select_slice_b->callback((Fl_Callback*)cb_select_slice_b);
2980     } // Fl_Button* select_slice_b
2981     { select_slice_tree_scroll = new Fl_Scroll_Resize(15, 15, 702, 280);
2982       select_slice_tree_scroll->box(FL_ENGRAVED_FRAME);
2983       select_slice_tree_scroll->color((Fl_Color)28);
2984       select_slice_tree_scroll->selection_color(FL_BACKGROUND_COLOR);
2985       select_slice_tree_scroll->labeltype(FL_NORMAL_LABEL);
2986       select_slice_tree_scroll->labelfont(0);
2987       select_slice_tree_scroll->labelsize(14);
2988       select_slice_tree_scroll->labelcolor(FL_FOREGROUND_COLOR);
2989       select_slice_tree_scroll->align(FL_ALIGN_TOP);
2990       select_slice_tree_scroll->when(FL_WHEN_RELEASE);
2991       select_slice_tree = new Fl_Toggle_Tree(12, 12, select_slice_tree_scroll->w(), 10);
2992       select_slice_tree->callback(select_slice_tree_cb);select_slice_tree->user_data((void *)select_slice_tree_scroll);
2993       select_slice_w->resizable(select_slice_tree_scroll);
2994       select_slice_tree_scroll->resizable(select_slice_tree);
2995       select_slice_tree_scroll->end();
2996     } // Fl_Scroll_Resize* select_slice_tree_scroll
2997     select_slice_w->set_modal();
2998     select_slice_w->end();
2999   } // Fl_Double_Window* select_slice_w
3000   { slices_w = new Fl_Double_Window(866, 370, gettext("Sfinx Data"));
3001     slices_w->color((Fl_Color)31);
3002     { Fl_Button* o = new Fl_Button(734, 312, 112, 25, gettext("Cancel"));
3003       o->labeltype(FL_ENGRAVED_LABEL);
3004       o->callback((Fl_Callback*)cb_Cancel2);
3005     } // Fl_Button* o
3006     { Fl_Button* o = new Fl_Button(454, 312, 128, 25, gettext("Delete slice"));
3007       o->labeltype(FL_ENGRAVED_LABEL);
3008       o->callback((Fl_Callback*)cb_Delete);
3009     } // Fl_Button* o
3010     { slices_tree_scroll = new Fl_Scroll_Resize(15, 13, 837, 280);
3011       slices_tree_scroll->box(FL_ENGRAVED_FRAME);
3012       slices_tree_scroll->color((Fl_Color)28);
3013       slices_tree_scroll->selection_color(FL_BACKGROUND_COLOR);
3014       slices_tree_scroll->labeltype(FL_NORMAL_LABEL);
3015       slices_tree_scroll->labelfont(0);
3016       slices_tree_scroll->labelsize(14);
3017       slices_tree_scroll->labelcolor(FL_FOREGROUND_COLOR);
3018       slices_tree_scroll->align(FL_ALIGN_TOP);
3019       slices_tree_scroll->when(FL_WHEN_RELEASE);
3020       slices_tree = new Fl_Toggle_Tree(12, 12, slices_tree_scroll->w(), 10);
3021       slices_tree->callback(slices_tree_cb); slices_tree->user_data((void *)slices_tree_scroll);
3022       slices_w->resizable(slices_tree_scroll);
3023       slices_tree_scroll->resizable(slices_tree);
3024       slices_tree_scroll->end();
3025     } // Fl_Scroll_Resize* slices_tree_scroll
3026     { Fl_Button* o = new Fl_Button(305, 312, 128, 25, gettext("Edit slice"));
3027       o->labeltype(FL_ENGRAVED_LABEL);
3028       o->callback((Fl_Callback*)cb_Edit);
3029     } // Fl_Button* o
3030     { slices_status_to = new Fl_Output(0, 349, 866, 21);
3031       slices_status_to->box(FL_PLASTIC_UP_BOX);
3032       slices_status_to->color((Fl_Color)31);
3033       slices_status_to->deactivate();
3034     } // Fl_Output* slices_status_to
3035     { Fl_Button* o = new Fl_Button(21, 312, 112, 25, gettext("New slice"));
3036       o->labeltype(FL_ENGRAVED_LABEL);
3037       o->callback((Fl_Callback*)cb_New);
3038     } // Fl_Button* o
3039     { Fl_Button* o = new Fl_Button(155, 312, 128, 25, gettext("Relink slice"));
3040       o->labeltype(FL_ENGRAVED_LABEL);
3041       o->callback((Fl_Callback*)cb_Relink);
3042     } // Fl_Button* o
3043     { Fl_Button* o = new Fl_Button(600, 312, 119, 25, gettext("Search"));
3044       o->labeltype(FL_ENGRAVED_LABEL);
3045       o->callback((Fl_Callback*)cb_Search);
3046     } // Fl_Button* o
3047     slices_w->set_modal();
3048     slices_w->end();
3049   } // Fl_Double_Window* slices_w
3050   { edit_slice_w = new Fl_Double_Window(595, 330, gettext("Edit Sfinx Slice"));
3051     edit_slice_w->color((Fl_Color)31);
3052     { slice_name_i = new Fl_Input(47, 35, 496, 26, gettext("Slice Name"));
3053       slice_name_i->color((Fl_Color)29);
3054       slice_name_i->labeltype(FL_ENGRAVED_LABEL);
3055       slice_name_i->align(FL_ALIGN_TOP);
3056     } // Fl_Input* slice_name_i
3057     { slice_directory_i = new Fl_Input(47, 93, 496, 26, gettext("Slice Directory"));
3058       slice_directory_i->color((Fl_Color)29);
3059       slice_directory_i->labeltype(FL_ENGRAVED_LABEL);
3060       slice_directory_i->align(FL_ALIGN_TOP);
3061     } // Fl_Input* slice_directory_i
3062     { slice_description_i = new Fl_Input(34, 158, 523, 89, gettext("Slice Description"));
3063       slice_description_i->type(4);
3064       slice_description_i->color((Fl_Color)29);
3065       slice_description_i->labeltype(FL_ENGRAVED_LABEL);
3066       slice_description_i->align(FL_ALIGN_TOP);
3067     } // Fl_Input* slice_description_i
3068     { Fl_Return_Button* o = new Fl_Return_Button(111, 270, 112, 25, gettext("Ok"));
3069       o->labeltype(FL_ENGRAVED_LABEL);
3070       o->callback((Fl_Callback*)cb_Ok);
3071     } // Fl_Return_Button* o
3072     { Fl_Button* o = new Fl_Button(359, 270, 112, 25, gettext("Cancel"));
3073       o->labeltype(FL_ENGRAVED_LABEL);
3074       o->callback((Fl_Callback*)cb_Cancel3);
3075     } // Fl_Button* o
3076     { edit_slice_to = new Fl_Output(0, 312, 598, 21);
3077       edit_slice_to->box(FL_PLASTIC_UP_BOX);
3078       edit_slice_to->color((Fl_Color)31);
3079       edit_slice_to->labelsize(10);
3080       edit_slice_to->textsize(10);
3081     } // Fl_Output* edit_slice_to
3082     edit_slice_w->set_modal();
3083     edit_slice_w->end();
3084   } // Fl_Double_Window* edit_slice_w
3085   { delete_slice_w = new Fl_Double_Window(388, 223, gettext("Delete Sfinx Slice"));
3086     delete_slice_w->color((Fl_Color)31);
3087     { Fl_Button* o = new Fl_Button(238, 175, 112, 25, gettext("Cancel"));
3088       o->labeltype(FL_ENGRAVED_LABEL);
3089       o->callback((Fl_Callback*)cb_Cancel4);
3090     } // Fl_Button* o
3091     { Fl_Button* o = new Fl_Button(39, 175, 112, 25, gettext("Delete"));
3092       o->labeltype(FL_ENGRAVED_LABEL);
3093       o->callback((Fl_Callback*)cb_Delete1);
3094     } // Fl_Button* o
3095     { delete_sfinx_slice_to = new Fl_Output(35, 31, 330, 26, gettext("Please confirm deletion of the slice"));
3096       delete_sfinx_slice_to->box(FL_ENGRAVED_FRAME);
3097       delete_sfinx_slice_to->color((Fl_Color)29);
3098       delete_sfinx_slice_to->labeltype(FL_ENGRAVED_LABEL);
3099       delete_sfinx_slice_to->align(FL_ALIGN_TOP);
3100     } // Fl_Output* delete_sfinx_slice_to
3101     { slice_deletion_type_ch = new Fl_Choice(73, 82, 240, 23, gettext("Slice && Data Deletion Action"));
3102       slice_deletion_type_ch->down_box(FL_BORDER_BOX);
3103       slice_deletion_type_ch->color((Fl_Color)48);
3104       slice_deletion_type_ch->labeltype(FL_ENGRAVED_LABEL);
3105       slice_deletion_type_ch->align(FL_ALIGN_TOP);
3106       slice_deletion_type_ch->menu(menu_slice_deletion_type_ch);
3107     } // Fl_Choice* slice_deletion_type_ch
3108     { data_deletion_type_ch = new Fl_Choice(73, 132, 240, 23, gettext("Associated Data Deletion Action"));
3109       data_deletion_type_ch->down_box(FL_BORDER_BOX);
3110       data_deletion_type_ch->color((Fl_Color)48);
3111       data_deletion_type_ch->labeltype(FL_ENGRAVED_LABEL);
3112       data_deletion_type_ch->align(FL_ALIGN_TOP);
3113       data_deletion_type_ch->menu(menu_data_deletion_type_ch);
3114     } // Fl_Choice* data_deletion_type_ch
3115     delete_slice_w->set_modal();
3116     delete_slice_w->end();
3117   } // Fl_Double_Window* delete_slice_w
3118   { progress_w = new Fl_Double_Window(464, 98, gettext("Progress"));
3119     { progress_bar = new Fl_Progress(22, 46, 422, 27, gettext("67 %"));
3120       progress_bar->box(FL_PLASTIC_DOWN_BOX);
3121       progress_bar->selection_color((Fl_Color)2);
3122     } // Fl_Progress* progress_bar
3123     { progress_l = new Fl_Box(66, 10, 330, 25, gettext("Doing some work ..."));
3124       progress_l->box(FL_FLAT_BOX);
3125       progress_l->labeltype(FL_ENGRAVED_LABEL);
3126     } // Fl_Box* progress_l
3127     progress_w->end();
3128   } // Fl_Double_Window* progress_w
3129   { files_module_w = new Fl_Double_Window(730, 370, gettext("Files Module"));
3130     files_module_w->color((Fl_Color)31);
3131     { Fl_Button* o = new Fl_Button(605, 312, 112, 25, gettext("Cancel"));
3132       o->labeltype(FL_ENGRAVED_LABEL);
3133       o->callback((Fl_Callback*)cb_Cancel5);
3134     } // Fl_Button* o
3135     { files_module_status_to = new Fl_Output(0, 349, 733, 21);
3136       files_module_status_to->box(FL_PLASTIC_UP_BOX);
3137       files_module_status_to->color((Fl_Color)31);
3138     } // Fl_Output* files_module_status_to
3139     { classify_file_b = new Fl_Button(21, 312, 112, 25, gettext("Classify"));
3140       classify_file_b->labeltype(FL_ENGRAVED_LABEL);
3141       classify_file_b->callback((Fl_Callback*)cb_classify_file_b);
3142     } // Fl_Button* classify_file_b
3143     { Fl_Button* o = new Fl_Button(154, 312, 128, 25, gettext("Edit"));
3144       o->labeltype(FL_ENGRAVED_LABEL);
3145       o->callback((Fl_Callback*)cb_Edit1);
3146     } // Fl_Button* o
3147     { files_module_tree_br = new Fl_Browser(7, 45, 716, 255);
3148       files_module_tree_br->type(3);
3149       files_module_tree_br->color((Fl_Color)31);
3150       files_module_tree_br->callback((Fl_Callback*)cb_files_module_tree_br);
3151       static int widths[] = { 10, 450, 200, 200, 0};
3152       files_module_tree_br->column_widths(widths);
3153     } // Fl_Browser* files_module_tree_br
3154     { Fl_Button* o = new Fl_Button(300, 312, 112, 25, gettext("Delete"));
3155       o->labeltype(FL_ENGRAVED_LABEL);
3156       o->callback((Fl_Callback*)cb_Delete2);
3157     } // Fl_Button* o
3158     { select_files_tree_b = new Fl_Button(562, 10, 128, 25, gettext("Sorted tree"));
3159       select_files_tree_b->labeltype(FL_ENGRAVED_LABEL);
3160       select_files_tree_b->callback((Fl_Callback*)cb_select_files_tree_b);
3161     } // Fl_Button* select_files_tree_b
3162     { Fl_Button* o = new Fl_Button(35, 10, 112, 25, gettext("Up [ .. ]"));
3163       o->labeltype(FL_ENGRAVED_LABEL);
3164       o->callback((Fl_Callback*)cb_Up);
3165     } // Fl_Button* o
3166     { Fl_Button* o = new Fl_Button(166, 10, 112, 25, gettext("Reload"));
3167       o->labeltype(FL_ENGRAVED_LABEL);
3168       o->callback((Fl_Callback*)cb_Reload);
3169     } // Fl_Button* o
3170     { Fl_Button* o = new Fl_Button(295, 10, 112, 25, gettext("Select All"));
3171       o->labeltype(FL_ENGRAVED_LABEL);
3172       o->callback((Fl_Callback*)cb_Select);
3173     } // Fl_Button* o
3174     { Fl_Button* o = new Fl_Button(428, 10, 112, 25, gettext("Unselect All"));
3175       o->labeltype(FL_ENGRAVED_LABEL);
3176       o->callback((Fl_Callback*)cb_Unselect);
3177     } // Fl_Button* o
3178     { files_tree_scroll = new Fl_Scroll_Resize(7, 45, 716, 255);
3179       files_tree_scroll->type(7);
3180       files_tree_scroll->box(FL_ENGRAVED_FRAME);
3181       files_tree_scroll->color((Fl_Color)28);
3182       files_tree_scroll->selection_color(FL_BACKGROUND_COLOR);
3183       files_tree_scroll->labeltype(FL_NORMAL_LABEL);
3184       files_tree_scroll->labelfont(0);
3185       files_tree_scroll->labelsize(14);
3186       files_tree_scroll->labelcolor(FL_FOREGROUND_COLOR);
3187       files_tree_scroll->align(FL_ALIGN_TOP);
3188       files_tree_scroll->when(FL_WHEN_RELEASE);
3189       files_tree_scroll->hide();
3190       files_tree = new Fl_Toggle_Tree(12, 12, files_tree_scroll->w(), 10);
3191       files_tree->callback(files_tree_cb); files_tree->user_data((void *)files_tree_scroll);
3192       files_module_w->resizable(files_tree_scroll);
3193       files_tree_scroll->resizable(files_tree);files_tree_scroll->resize_chld = false;
3194       files_tree_scroll->end();
3195     } // Fl_Scroll_Resize* files_tree_scroll
3196     files_module_w->end();
3197   } // Fl_Double_Window* files_module_w
3198   { classify_file_w = new Fl_Double_Window(1020, 515, gettext("Classify File"));
3199     classify_file_w->color((Fl_Color)31);
3200     { Fl_Button* o = new Fl_Button(612, 454, 112, 25, gettext("Cancel"));
3201       o->labeltype(FL_ENGRAVED_LABEL);
3202       o->callback((Fl_Callback*)cb_Cancel6);
3203     } // Fl_Button* o
3204     { file_title_i = new Fl_Input(16, 27, 496, 26, gettext("Title"));
3205       file_title_i->color((Fl_Color)29);
3206       file_title_i->labeltype(FL_ENGRAVED_LABEL);
3207       file_title_i->align(FL_ALIGN_TOP);
3208     } // Fl_Input* file_title_i
3209     { file_authority_i = new Fl_Input(16, 83, 496, 26, gettext("Authority"));
3210       file_authority_i->color((Fl_Color)29);
3211       file_authority_i->labeltype(FL_ENGRAVED_LABEL);
3212       file_authority_i->align(FL_ALIGN_TOP);
3213     } // Fl_Input* file_authority_i
3214     { file_description_i = new Fl_Input(549, 78, 447, 101, gettext("Description"));
3215       file_description_i->type(4);
3216       file_description_i->color((Fl_Color)29);
3217       file_description_i->labeltype(FL_ENGRAVED_LABEL);
3218       file_description_i->align(FL_ALIGN_TOP);
3219     } // Fl_Input* file_description_i
3220     { file_comments_i = new Fl_Input(582, 220, 416, 212, gettext("Comments"));
3221       file_comments_i->type(4);
3222       file_comments_i->color((Fl_Color)29);
3223       file_comments_i->labeltype(FL_ENGRAVED_LABEL);
3224       file_comments_i->align(FL_ALIGN_TOP);
3225     } // Fl_Input* file_comments_i
3226     { classify_file_to = new Fl_Output(0, 497, 1022, 21);
3227       classify_file_to->box(FL_PLASTIC_UP_BOX);
3228       classify_file_to->color((Fl_Color)31);
3229       classify_file_to->labelsize(10);
3230       classify_file_to->textsize(10);
3231     } // Fl_Output* classify_file_to
3232     { Fl_Return_Button* o = new Fl_Return_Button(243, 454, 112, 25, gettext("Ok"));
3233       o->labeltype(FL_ENGRAVED_LABEL);
3234       o->callback((Fl_Callback*)cb_Ok1);
3235     } // Fl_Return_Button* o
3236     { sorted_location_b = new Fl_Check_Button(15, 132, 241, 23, gettext("Sorted Location"));
3237       sorted_location_b->box(FL_PLASTIC_UP_BOX);
3238       sorted_location_b->down_box(FL_DOWN_BOX);
3239       sorted_location_b->selection_color(FL_SELECTION_COLOR);
3240       sorted_location_b->labeltype(FL_ENGRAVED_LABEL);
3241       sorted_location_b->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
3242     } // Fl_Check_Button* sorted_location_b
3243     { file_crypt_b = new Fl_Check_Button(15, 165, 241, 23, gettext("Encrypt"));
3244       file_crypt_b->box(FL_PLASTIC_UP_BOX);
3245       file_crypt_b->down_box(FL_DOWN_BOX);
3246       file_crypt_b->selection_color(FL_SELECTION_COLOR);
3247       file_crypt_b->labeltype(FL_ENGRAVED_LABEL);
3248       file_crypt_b->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
3249       file_crypt_b->deactivate();
3250     } // Fl_Check_Button* file_crypt_b
3251     { file_compress_b = new Fl_Check_Button(274, 132, 241, 23, gettext("Store compressed"));
3252       file_compress_b->box(FL_PLASTIC_UP_BOX);
3253       file_compress_b->down_box(FL_DOWN_BOX);
3254       file_compress_b->selection_color(FL_SELECTION_COLOR);
3255       file_compress_b->labeltype(FL_ENGRAVED_LABEL);
3256       file_compress_b->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
3257     } // Fl_Check_Button* file_compress_b
3258     { Fl_Box* o = new Fl_Box(13, 205, 552, 227);
3259       o->box(FL_ENGRAVED_FRAME);
3260     } // Fl_Box* o
3261     { file_mtag_b = new Fl_Button(45, 226, 489, 25, gettext("Main Slice (Not Set)"));
3262       file_mtag_b->tooltip(gettext("File Main Slice"));
3263       file_mtag_b->box(FL_PLASTIC_THIN_UP_BOX);
3264       file_mtag_b->labeltype(FL_ENGRAVED_LABEL);
3265       file_mtag_b->callback((Fl_Callback*)cb_file_mtag_b);
3266     } // Fl_Button* file_mtag_b
3267     { file_tags_br = new Fl_Browser(26, 275, 525, 102, gettext("Additional Slices"));
3268       file_tags_br->type(3);
3269       file_tags_br->color((Fl_Color)46);
3270       file_tags_br->labeltype(FL_ENGRAVED_LABEL);
3271       file_tags_br->align(FL_ALIGN_TOP);
3272     } // Fl_Browser* file_tags_br
3273     { file_add_tag_b = new Fl_Button(82, 391, 138, 25, gettext("Add Slice"));
3274       file_add_tag_b->box(FL_PLASTIC_THIN_UP_BOX);
3275       file_add_tag_b->labeltype(FL_ENGRAVED_LABEL);
3276       file_add_tag_b->callback((Fl_Callback*)cb_file_add_tag_b);
3277     } // Fl_Button* file_add_tag_b
3278     { file_remove_tag_b = new Fl_Button(358, 391, 138, 25, gettext("Remove Slice"));
3279       file_remove_tag_b->box(FL_PLASTIC_THIN_UP_BOX);
3280       file_remove_tag_b->labeltype(FL_ENGRAVED_LABEL);
3281       file_remove_tag_b->callback((Fl_Callback*)cb_file_remove_tag_b);
3282     } // Fl_Button* file_remove_tag_b
3283     { file_name_i = new Fl_Input(549, 26, 447, 26, gettext("File Name"));
3284       file_name_i->color((Fl_Color)29);
3285       file_name_i->labeltype(FL_ENGRAVED_LABEL);
3286       file_name_i->align(FL_ALIGN_TOP);
3287     } // Fl_Input* file_name_i
3288     { file_gen_csum_b = new Fl_Check_Button(274, 165, 241, 23, gettext("Generate CSUM"));
3289       file_gen_csum_b->box(FL_PLASTIC_UP_BOX);
3290       file_gen_csum_b->down_box(FL_DOWN_BOX);
3291       file_gen_csum_b->selection_color(FL_SELECTION_COLOR);
3292       file_gen_csum_b->labeltype(FL_ENGRAVED_LABEL);
3293       file_gen_csum_b->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
3294     } // Fl_Check_Button* file_gen_csum_b
3295     classify_file_w->set_modal();
3296     classify_file_w->end();
3297   } // Fl_Double_Window* classify_file_w
3298   { notes_w = new Fl_Double_Window(730, 370, gettext("Notes Module"));
3299     notes_w->color((Fl_Color)31);
3300     { Fl_Button* o = new Fl_Button(605, 312, 112, 25, gettext("Cancel"));
3301       o->labeltype(FL_ENGRAVED_LABEL);
3302       o->callback((Fl_Callback*)cb_Cancel7);
3303     } // Fl_Button* o
3304     { notes_module_status_to = new Fl_Output(0, 349, 733, 21);
3305       notes_module_status_to->box(FL_PLASTIC_UP_BOX);
3306       notes_module_status_to->color((Fl_Color)31);
3307     } // Fl_Output* notes_module_status_to
3308     { Fl_Button* o = new Fl_Button(21, 312, 112, 25, gettext("New"));
3309       o->labeltype(FL_ENGRAVED_LABEL);
3310       o->callback((Fl_Callback*)cb_New1);
3311     } // Fl_Button* o
3312     { Fl_Button* o = new Fl_Button(154, 312, 128, 25, gettext("Edit"));
3313       o->labeltype(FL_ENGRAVED_LABEL);
3314       o->callback((Fl_Callback*)cb_Edit2);
3315     } // Fl_Button* o
3316     { notes_tree_scroll = new Fl_Scroll_Resize(13, 10, 705, 289);
3317       notes_tree_scroll->box(FL_ENGRAVED_FRAME);
3318       notes_tree_scroll->color((Fl_Color)28);
3319       notes_tree_scroll->selection_color(FL_BACKGROUND_COLOR);
3320       notes_tree_scroll->labeltype(FL_NORMAL_LABEL);
3321       notes_tree_scroll->labelfont(0);
3322       notes_tree_scroll->labelsize(14);
3323       notes_tree_scroll->labelcolor(FL_FOREGROUND_COLOR);
3324       notes_tree_scroll->align(FL_ALIGN_TOP);
3325       notes_tree_scroll->when(FL_WHEN_RELEASE);
3326       notes_tree = new Fl_Toggle_Tree(12, 12, notes_tree_scroll->w(), 10);
3327       notes_tree->callback(notes_tree_cb); notes_tree->user_data((void *)notes_tree_scroll);
3328       notes_w->resizable(notes_tree_scroll);
3329       notes_tree_scroll->resizable(notes_tree);
3330       notes_tree_scroll->end();
3331     } // Fl_Scroll_Resize* notes_tree_scroll
3332     { Fl_Button* o = new Fl_Button(300, 312, 112, 25, gettext("Delete"));
3333       o->labeltype(FL_ENGRAVED_LABEL);
3334       o->callback((Fl_Callback*)cb_Delete3);
3335     } // Fl_Button* o
3336     notes_w->end();
3337   } // Fl_Double_Window* notes_w
3338   { edit_note_w = new Fl_Double_Window(1020, 385, gettext("Edit Note"));
3339     edit_note_w->color((Fl_Color)31);
3340     { Fl_Button* o = new Fl_Button(648, 321, 112, 25, gettext("Cancel"));
3341       o->labeltype(FL_ENGRAVED_LABEL);
3342       o->callback((Fl_Callback*)cb_Cancel8);
3343     } // Fl_Button* o
3344     { note_name_i = new Fl_Input(16, 27, 496, 26, gettext("Name"));
3345       note_name_i->color((Fl_Color)29);
3346       note_name_i->labeltype(FL_ENGRAVED_LABEL);
3347       note_name_i->align(FL_ALIGN_TOP);
3348     } // Fl_Input* note_name_i
3349     { note_url_i = new Fl_Input(16, 83, 496, 26, gettext("URL"));
3350       note_url_i->color((Fl_Color)29);
3351       note_url_i->labeltype(FL_ENGRAVED_LABEL);
3352       note_url_i->align(FL_ALIGN_TOP);
3353     } // Fl_Input* note_url_i
3354     { note_text_i = new Fl_Input(16, 141, 496, 158, gettext("Text"));
3355       note_text_i->type(4);
3356       note_text_i->color((Fl_Color)29);
3357       note_text_i->labeltype(FL_ENGRAVED_LABEL);
3358       note_text_i->align(FL_ALIGN_TOP);
3359     } // Fl_Input* note_text_i
3360     { edit_note_to = new Fl_Output(0, 364, 1022, 21);
3361       edit_note_to->box(FL_PLASTIC_UP_BOX);
3362       edit_note_to->color((Fl_Color)31);
3363       edit_note_to->labelsize(10);
3364       edit_note_to->textsize(10);
3365     } // Fl_Output* edit_note_to
3366     { Fl_Return_Button* o = new Fl_Return_Button(279, 321, 112, 25, gettext("Ok"));
3367       o->labeltype(FL_ENGRAVED_LABEL);
3368       o->callback((Fl_Callback*)cb_Ok2);
3369     } // Fl_Return_Button* o
3370     { Fl_Box* o = new Fl_Box(535, 72, 467, 227);
3371       o->box(FL_ENGRAVED_FRAME);
3372     } // Fl_Box* o
3373     { note_mtag_b = new Fl_Button(594, 93, 348, 25, gettext("Main Note Tag (Not Set)"));
3374       note_mtag_b->tooltip(gettext("Note Main Tag"));
3375       note_mtag_b->box(FL_PLASTIC_THIN_UP_BOX);
3376       note_mtag_b->labeltype(FL_ENGRAVED_LABEL);
3377       note_mtag_b->callback((Fl_Callback*)cb_note_mtag_b);
3378     } // Fl_Button* note_mtag_b
3379     { note_tags_br = new Fl_Browser(559, 146, 420, 102, gettext("Additional Note Tags"));
3380       note_tags_br->type(3);
3381       note_tags_br->color((Fl_Color)46);
3382       note_tags_br->labeltype(FL_ENGRAVED_LABEL);
3383       note_tags_br->align(FL_ALIGN_TOP);
3384     } // Fl_Browser* note_tags_br
3385     { note_add_tag_b = new Fl_Button(584, 258, 138, 25, gettext("Add Tag"));
3386       note_add_tag_b->box(FL_PLASTIC_THIN_UP_BOX);
3387       note_add_tag_b->labeltype(FL_ENGRAVED_LABEL);
3388       note_add_tag_b->callback((Fl_Callback*)cb_note_add_tag_b);
3389     } // Fl_Button* note_add_tag_b
3390     { note_remove_tag_b = new Fl_Button(811, 258, 138, 25, gettext("Remove Tag"));
3391       note_remove_tag_b->box(FL_PLASTIC_THIN_UP_BOX);
3392       note_remove_tag_b->labeltype(FL_ENGRAVED_LABEL);
3393       note_remove_tag_b->callback((Fl_Callback*)cb_note_remove_tag_b);
3394     } // Fl_Button* note_remove_tag_b
3395     { note_secured_ch = new Fl_Choice(536, 27, 211, 23, gettext("Secure Level"));
3396       note_secured_ch->down_box(FL_BORDER_BOX);
3397       note_secured_ch->color((Fl_Color)48);
3398       note_secured_ch->labeltype(FL_ENGRAVED_LABEL);
3399       note_secured_ch->align(FL_ALIGN_TOP_LEFT);
3400       note_secured_ch->deactivate();
3401       note_secured_ch->menu(menu_note_secured_ch);
3402     } // Fl_Choice* note_secured_ch
3403     edit_note_w->set_modal();
3404     edit_note_w->end();
3405   } // Fl_Double_Window* edit_note_w
3406   { delete_note_w = new Fl_Double_Window(388, 168, gettext("Delete Note"));
3407     delete_note_w->color((Fl_Color)31);
3408     { Fl_Button* o = new Fl_Button(239, 122, 112, 25, gettext("Cancel"));
3409       o->labeltype(FL_ENGRAVED_LABEL);
3410       o->callback((Fl_Callback*)cb_Cancel9);
3411     } // Fl_Button* o
3412     { Fl_Button* o = new Fl_Button(40, 122, 112, 25, gettext("Delete"));
3413       o->labeltype(FL_ENGRAVED_LABEL);
3414       o->callback((Fl_Callback*)cb_Delete4);
3415     } // Fl_Button* o
3416     { delete_sfinx_note_to = new Fl_Output(31, 26, 330, 26, gettext("Please confirm deletion of the note"));
3417       delete_sfinx_note_to->box(FL_ENGRAVED_FRAME);
3418       delete_sfinx_note_to->color((Fl_Color)29);
3419       delete_sfinx_note_to->labeltype(FL_ENGRAVED_LABEL);
3420       delete_sfinx_note_to->align(FL_ALIGN_TOP);
3421     } // Fl_Output* delete_sfinx_note_to
3422     { note_deletion_type_ch = new Fl_Choice(74, 80, 240, 23, gettext("Associated Data Deletion Action"));
3423       note_deletion_type_ch->down_box(FL_BORDER_BOX);
3424       note_deletion_type_ch->color((Fl_Color)48);
3425       note_deletion_type_ch->labeltype(FL_ENGRAVED_LABEL);
3426       note_deletion_type_ch->align(FL_ALIGN_TOP);
3427       note_deletion_type_ch->menu(menu_note_deletion_type_ch);
3428     } // Fl_Choice* note_deletion_type_ch
3429     delete_note_w->set_modal();
3430     delete_note_w->end();
3431   } // Fl_Double_Window* delete_note_w
3432   { search_browser_w = new Fl_Double_Window(854, 476, gettext("Search Browser"));
3433     search_browser_w->color((Fl_Color)31);
3434     { Fl_Button* o = new Fl_Button(638, 449, 187, 20, gettext("Cancel"));
3435       o->box(FL_PLASTIC_ROUND_UP_BOX);
3436       o->color(FL_FOREGROUND_COLOR);
3437       o->labeltype(FL_ENGRAVED_LABEL);
3438       o->callback((Fl_Callback*)cb_Cancela);
3439     } // Fl_Button* o
3440     { search_browser_br = new Fl_Browser(4, 4, 846, 439);
3441       search_browser_br->type(2);
3442       search_browser_br->box(FL_GTK_THIN_UP_BOX);
3443       search_browser_br->color((Fl_Color)44);
3444       Fl_Group::current()->resizable(search_browser_br);
3445     } // Fl_Browser* search_browser_br
3446     { Fl_Button* o = new Fl_Button(25, 449, 169, 20, gettext("Previous Page"));
3447       o->box(FL_PLASTIC_ROUND_UP_BOX);
3448       o->color(FL_FOREGROUND_COLOR);
3449       o->labeltype(FL_ENGRAVED_LABEL);
3450     } // Fl_Button* o
3451     { Fl_Button* o = new Fl_Button(231, 449, 169, 20, gettext("Next Page"));
3452       o->box(FL_PLASTIC_ROUND_UP_BOX);
3453       o->color(FL_FOREGROUND_COLOR);
3454       o->labeltype(FL_ENGRAVED_LABEL);
3455     } // Fl_Button* o
3456     { goto_page_ch = new Fl_Choice(531, 450, 72, 20, gettext("Current Page "));
3457       goto_page_ch->box(FL_PLASTIC_THIN_UP_BOX);
3458       goto_page_ch->down_box(FL_PLASTIC_THIN_UP_BOX);
3459       goto_page_ch->color((Fl_Color)44);
3460       goto_page_ch->labeltype(FL_ENGRAVED_LABEL);
3461     } // Fl_Choice* goto_page_ch
3462     search_browser_w->set_modal();
3463     search_browser_w->end();
3464   } // Fl_Double_Window* search_browser_w
3465   { browse_w = new Fl_Double_Window(730, 370, gettext("Browse"));
3466     browse_w->color((Fl_Color)31);
3467     { Fl_Button* o = new Fl_Button(596, 312, 112, 25, gettext("Cancel"));
3468       o->labeltype(FL_ENGRAVED_LABEL);
3469       o->callback((Fl_Callback*)cb_Cancelb);
3470     } // Fl_Button* o
3471     { browse_status_to = new Fl_Output(0, 349, 733, 21);
3472       browse_status_to->box(FL_PLASTIC_UP_BOX);
3473       browse_status_to->color((Fl_Color)31);
3474     } // Fl_Output* browse_status_to
3475     { Fl_Button* o = new Fl_Button(154, 312, 128, 25, gettext("Edit"));
3476       o->labeltype(FL_ENGRAVED_LABEL);
3477       o->callback((Fl_Callback*)cb_Edit3);
3478     } // Fl_Button* o
3479     { browse_scroll = new Fl_Scroll_Resize(13, 10, 705, 289);
3480       browse_scroll->box(FL_ENGRAVED_FRAME);
3481       browse_scroll->color((Fl_Color)28);
3482       browse_scroll->selection_color(FL_BACKGROUND_COLOR);
3483       browse_scroll->labeltype(FL_NORMAL_LABEL);
3484       browse_scroll->labelfont(0);
3485       browse_scroll->labelsize(14);
3486       browse_scroll->labelcolor(FL_FOREGROUND_COLOR);
3487       browse_scroll->align(FL_ALIGN_TOP);
3488       browse_scroll->when(FL_WHEN_RELEASE);
3489       browse_tree = new Fl_Toggle_Tree(12, 12, browse_scroll->w(), 10);
3490       browse_tree->callback(browse_tree_cb); browse_tree->user_data((void *)browse_scroll);
3491       browse_w->resizable(browse_scroll);
3492       browse_scroll->resizable(browse_tree);
3493       browse_scroll->end();
3494     } // Fl_Scroll_Resize* browse_scroll
3495     { Fl_Button* o = new Fl_Button(300, 312, 112, 25, gettext("Delete"));
3496       o->labeltype(FL_ENGRAVED_LABEL);
3497       o->callback((Fl_Callback*)cb_Delete5);
3498     } // Fl_Button* o
3499     { Fl_Button* o = new Fl_Button(24, 312, 112, 25, gettext("View"));
3500       o->labeltype(FL_ENGRAVED_LABEL);
3501     } // Fl_Button* o
3502     browse_w->set_modal();
3503     browse_w->end();
3504     browse_w->resizable(browse_w);
3505   } // Fl_Double_Window* browse_w
3506   { search_w = new Fl_Double_Window(749, 389, gettext("Search & Browse"));
3507     search_w->color((Fl_Color)31);
3508     { Fl_Button* o = new Fl_Button(182, 347, 363, 25, gettext("Cancel"));
3509       o->box(FL_PLASTIC_ROUND_UP_BOX);
3510       o->labeltype(FL_ENGRAVED_LABEL);
3511       o->callback((Fl_Callback*)cb_Cancelc);
3512     } // Fl_Button* o
3513     { Fl_Return_Button* o = new Fl_Return_Button(539, 48, 163, 25, gettext("Search"));
3514       o->box(FL_PLASTIC_ROUND_UP_BOX);
3515       o->labeltype(FL_ENGRAVED_LABEL);
3516       o->callback((Fl_Callback*)cb_Search1);
3517     } // Fl_Return_Button* o
3518     { search_in_files_b = new Fl_Check_Button(48, 96, 241, 23, gettext("Search in Files"));
3519       search_in_files_b->box(FL_PLASTIC_UP_BOX);
3520       search_in_files_b->down_box(FL_DOWN_BOX);
3521       search_in_files_b->selection_color(FL_SELECTION_COLOR);
3522       search_in_files_b->labeltype(FL_ENGRAVED_LABEL);
3523       search_in_files_b->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
3524       search_in_files_b->deactivate();
3525     } // Fl_Check_Button* search_in_files_b
3526     { Fl_Box* o = new Fl_Box(87, 141, 561, 189);
3527       o->box(FL_ROUNDED_FRAME);
3528     } // Fl_Box* o
3529     { search_slices_br = new Fl_Browser(105, 173, 525, 102, gettext("Restrict Search by Slices"));
3530       search_slices_br->type(3);
3531       search_slices_br->color((Fl_Color)46);
3532       search_slices_br->labeltype(FL_ENGRAVED_LABEL);
3533       search_slices_br->align(FL_ALIGN_TOP);
3534     } // Fl_Browser* search_slices_br
3535     { search_add_slice_b = new Fl_Button(161, 289, 138, 25, gettext("Add Slice"));
3536       search_add_slice_b->box(FL_PLASTIC_THIN_UP_BOX);
3537       search_add_slice_b->labeltype(FL_ENGRAVED_LABEL);
3538       search_add_slice_b->callback((Fl_Callback*)cb_search_add_slice_b);
3539     } // Fl_Button* search_add_slice_b
3540     { Fl_Button* o = new Fl_Button(437, 289, 138, 25, gettext("Remove Slice"));
3541       o->box(FL_PLASTIC_THIN_UP_BOX);
3542       o->labeltype(FL_ENGRAVED_LABEL);
3543       o->callback((Fl_Callback*)cb_Remove);
3544     } // Fl_Button* o
3545     { search_i = new Fl_Input(46, 47, 447, 26, gettext("Search for ..."));
3546       search_i->color((Fl_Color)29);
3547       search_i->labeltype(FL_ENGRAVED_LABEL);
3548       search_i->align(FL_ALIGN_TOP);
3549     } // Fl_Input* search_i
3550     { Fl_Button* o = new Fl_Button(539, 96, 163, 25, gettext("Browse"));
3551       o->box(FL_PLASTIC_ROUND_UP_BOX);
3552       o->labeltype(FL_ENGRAVED_LABEL);
3553       o->callback((Fl_Callback*)cb_Browse);
3554     } // Fl_Button* o
3555     search_w->set_modal();
3556     search_w->end();
3557   } // Fl_Double_Window* search_w
3558   { about_w = new Fl_Double_Window(374, 154);
3559     { Fl_Button* o = new Fl_Button(72, 122, 226, 20, gettext("Ok"));
3560       o->box(FL_PLASTIC_ROUND_UP_BOX);
3561       o->labeltype(FL_ENGRAVED_LABEL);
3562       o->callback((Fl_Callback*)cb_Ok3);
3563     } // Fl_Button* o
3564     { Fl_Box* o = new Fl_Box(10, 9, 130, 101);
3565       o->image(image_sfinx);
3566     } // Fl_Box* o
3567     { Fl_Box* o = new Fl_Box(203, 6, 99, 33, gettext("Sfinx"));
3568       o->labeltype(FL_EMBOSSED_LABEL);
3569       o->labelfont(9);
3570       o->labelsize(32);
3571     } // Fl_Box* o
3572     { Fl_Box* o = new Fl_Box(150, 40, 214, 22, gettext("Personal knowledge manager"));
3573       o->labeltype(FL_EMBOSSED_LABEL);
3574       o->labelcolor((Fl_Color)64);
3575     } // Fl_Box* o
3576     { Fl_Box* o = new Fl_Box(150, 58, 214, 22, gettext("Copyright (C) 2007 Rus V. Brushkoff"));
3577       o->labeltype(FL_EMBOSSED_LABEL);
3578       o->labelfont(8);
3579       o->labelsize(11);
3580       o->labelcolor(FL_BLACK);
3581     } // Fl_Box* o
3582     { Fl_Box* o = new Fl_Box(150, 75, 214, 22, gettext("Email:  Rus@@Sfinx.Od.UA"));
3583       o->labeltype(FL_EMBOSSED_LABEL);
3584       o->labelfont(8);
3585       o->labelsize(11);
3586       o->labelcolor(FL_BLACK);
3587     } // Fl_Box* o
3588     { Fl_Box* o = new Fl_Box(150, 93, 214, 22, gettext("http://sfinx.od.ua/index.php?id=sfinx"));
3589       o->labeltype(FL_EMBOSSED_LABEL);
3590       o->labelfont(8);
3591       o->labelsize(11);
3592       o->labelcolor(FL_BLACK);
3593     } // Fl_Box* o
3594     about_w->end();
3595   } // Fl_Double_Window* about_w
3596   main_w->show();
3599 void x11_ui::edit_slice(sfinx_slice_t *slice) {
3600   // need locks
3601 Fl::lock();
3602 slice_name_i->value(slice->name());
3603 slice_directory_i->value(slice->directory());
3604 slice_name_i->take_focus();
3605 slice_description_i->value(slice->description());
3606 string status_line = "Parent slice: ";
3607 status_line += slice->parent_name();
3608 int cyear, cmonth, cday, eyear, emonth, eday, chour, cmin, csec, ehour, emin, esec;
3609 slice->ctime.GetDate(cyear, cmonth, cday);
3610 slice->etime.GetDate(eyear, emonth, eday);
3611 slice->ctime.GetTime(chour, cmin, csec);
3612 slice->etime.GetTime(ehour, emin, esec);
3613 char buf[128];
3614 sprintf(buf, " | Created at %02d/%02d/%02d %02d:%02d:%02d, Modified at %02d/%02d/%02d %02d:%02d:%02d", cyear, cmonth, cday, chour, cmin,
3615         csec, eyear, emonth, eday, ehour, emin, esec);
3616 status_line += buf;
3617 edit_slice_to->value(status_line.c_str());
3618 edit_slice_w->show();
3619 Fl::unlock();
3622 void x11_ui::notes_module_edit(sfinx_note_t *n) {
3623   Fl::lock();
3624 sfinx_note_t *note = new sfinx_note_t;
3625 note->copy(n);
3626 note->tid(SFINX_NOTES_MODULE_EDIT);
3627 edit_note_w->user_data((void *)note);
3628 char buf[256];
3629 int eyear, emonth, eday, ehour, emin, esec, cyear, cmonth, cday, chour, cmin, csec;
3630 note->etime.GetDate(eyear, emonth, eday);
3631 note->etime.GetTime(ehour, emin, esec);
3632 note->ctime.GetDate(cyear, cmonth, cday);
3633 note->ctime.GetTime(chour, cmin, csec);
3634 sprintf(buf, "Modified: %02d/%02d/%04d %02d:%02d:%02d | Last Status Changed: %02d/%02d/%04d %02d:%02d:%02d", cday, cmonth, cyear,
3635         chour, cmin, csec, eday, emonth, eyear, ehour, emin, esec);
3636 edit_note_to->value(buf);
3637 note_name_i->value(note->name.c_str());
3638 note_name_i->take_focus();
3639 note_url_i->value(note->url.c_str());
3640 note_text_i->value(note->text.c_str());
3641 // main tag
3642 note_mtag_b->user_data(&(note->mtag));
3643 note_mtag_b->copy_label((note->mtag.name + " [ " + note->mtag.description + " ]").c_str());     
3644 note_mtag_b->redraw();
3645 // add tags
3646 note_tags_br->clear();
3647 for (u32_t i = 0; i < note->tags.size(); i++) {
3648         string s = note->tags[i].name + " [ " + note->tags[i].description + " ]";
3649         note_tags_br->add(s.c_str(), &(note->tags[i]));
3651 edit_note_w->label("Edit Note");
3652 edit_note_w->show();
3653 Fl::unlock();
3656 void x11_ui::notes_module_reply(sfinx_string_t *classify_error) {
3657   Fl::lock();
3658 if (classify_error->size() == 1) {
3659         ::fill_objects_tree(notes_tree, 1 << SFINX_NOTE_OBJECT, 0, 1); // fluid bugs if any default params exists !
3660         edit_note_w->hide();
3661 } else
3662         fl_alert(classify_error->c_str());
3663 Fl::unlock();
3666 void x11_ui::files_module_edit_reply(sfinx_string_t *classify_error) {
3667   Fl::lock();
3668 if (classify_error->size() == 1) {
3669         if (current_file.tid() != SFINX_FILES_MODULE_UNSORTED_TREE_REQUEST)
3670                 ::fill_objects_tree(files_tree, (1 << SFINX_FILE_OBJECT), 0, 1); // fluid bugs if any default params exists !
3671         else
3672                 app->sfinx.send(current_file);
3673         classify_file_w->hide();
3674 } else
3675         fl_alert(classify_error->c_str());
3676 Fl::unlock();
3679 void x11_ui::files_module_edit(sfinx_file_t *f) {
3680   Fl::lock();
3681 static sfinx_file_t file;
3682 file.copy(f);
3683 char buf[256];
3684 int eyear, emonth, eday, ehour, emin, esec, cyear, cmonth, cday, chour, cmin, csec;
3685 file.etime.GetDate(eyear, emonth, eday);
3686 file.etime.GetTime(ehour, emin, esec);
3687 file.ctime.GetDate(cyear, cmonth, cday);
3688 file.ctime.GetTime(chour, cmin, csec);
3689 sprintf(buf, "%llu bytes | Modified: %02d/%02d/%04d %02d:%02d:%02d | Last Status Changed: %02d/%02d/%04d %02d:%02d:%02d", file.fsize, cday, cmonth, cyear,
3690         chour, cmin, csec, eday, emonth, eyear, ehour, emin, esec);
3691 string path;
3692 app->files_module_conf.get(FILES_MODULE_SORTED_TREE_PATH, path);
3693 string t = "URL: " + path + current_file.name + "/" + file.name + " | " + file.mimetype + " | Size: " + buf;
3694 classify_file_to->value(t.c_str());
3695 file_title_i->value(file.title.c_str());
3696 file_name_i->value(file.name.c_str());
3697 // save orig file name
3698 file.orig_name = file.name;
3699 file.tid(SFINX_FILES_MODULE_EDIT_FILE); // edit file
3700 file_title_i->take_focus();
3701 file_authority_i->value(file.authority.c_str());
3702 file_description_i->value(file.description.c_str());
3703 file_comments_i->value(file.comments.c_str());
3704 sorted_location_b->value(file.sorted_location);
3705 file_compress_b->value(file.store_compressed);
3706 file_gen_csum_b->value(file.generate_csum);
3707 file_mtag_b->copy_label((file.mtag.name + " [ " + file.mtag.description + " ]").c_str());
3708 file_mtag_b->user_data(&file.mtag);
3709 file_tags_br->clear();
3710 for (u32_t i = 0; i < file.tags.size(); i++) {
3711         string s = file.tags[i].name + " [ " + file.tags[i].description + " ]";
3712         file_tags_br->add(s.c_str(), &(file.tags[i]));
3714 classify_file_w->user_data((void *)&file);
3715 classify_file_w->label("Edit File");
3716 classify_file_w->show();
3717 Fl::unlock();
3720 void x11_ui::search_browser(sfinx_pair_vector_t *r) {
3721   Fl::lock();
3722 search_browser_br->clear();
3723 if (!r->len()) {
3724         fl_message("Sfinx has no data for this query");
3725         Fl::unlock();
3726         return;
3728 goto_page_ch->clear();
3729 /*for (u32_t i = 1; i < 50; i++) {
3730         char b[32];
3731         sprintf(b, "%d", i);
3732         goto_page_ch->add(b, 0, 0, (void *)i);
3733 //      Fl_Menu_Item *item = (Fl_Menu_Item *)(goto_page_ch->menu() + n);
3734 //      item->color(FL_GREEN);
3735 } */
3736 goto_page_ch->value(0);
3737 //goto_page_ch->selection_color(FL_GREEN);
3739 // fill browser
3740 for (u32_t i = 0; i < r->len(); i++) {
3741         sfinx_pair_t *p = r->find(i);
3742         if (!p)
3743                 bug();
3744         sfinx_t *el;
3745         if (!p->get(i, &el))
3746                 bug();
3747         // adding element
3748         string inf;
3749         app->prepare_search_info(el, inf);
3750         string::size_type pos = 0, found;
3751         while ((found = inf.find('\n', pos)) != string::npos) {
3752                 string line(inf, pos, found - pos);
3753                 search_browser_br->add(line.c_str()); // add obj pointer for clicks ...
3754                 pos = found + 1;
3755         }
3756         search_browser_br->add("@-");
3758 search_browser_w->show();
3759 Fl::unlock();
3762 void x11_ui::fill_objects_tree() {
3763   Fl::lock();
3764 Fl_Toggle_Tree *tree = fill_tree;
3765 u32_t mask = fill_tree_mask;
3766 if (!tree) {
3767  tree = slices_tree;
3768  mask = SFINX_SLICE_OBJECT;
3770 tree->clear();
3771 tree->draw_lines(1);
3772 tree->alternate_color(FL_LIGHT2);
3773 tree->trim_color(FL_LIGHT1);
3774 tree->edit_on_reselect(0);
3775 sfinx_slice_t *slice;
3776 Fl_Toggle_Node *node;
3777 u32_t max_name_len = 0;
3778 for (u32_t i = 0; i < app->slices.len(); i++) {
3779         slice = app->slices.get(i);
3780         if (slice == fill_tree_except)
3781                 continue;
3782         //debug("slice name - %s, id - %lld, parent_id - %lld", slice->name(), slice->id, slice->parent_id);
3783         string name = slice->name() + string(" [ ") +
3784                 slice->description() + string(" ]");
3785         // replace \n with spaces
3786         string filt_elems( "\n");
3787         string::size_type pos = 0;
3788         while (( pos = name.find_first_of(filt_elems, pos)) != string::npos)
3789                 name.replace(pos, 1, string(" "));
3790         if (name.size() > max_name_len)
3791                 max_name_len = name.size();
3792         if (!slice->parent_id) {
3793                 node = tree->add_sub((char *)name.c_str(), 1, &slice_pixmap, to_voidp(slice));
3794                 if (fill_tree_mask & ((1 << SFINX_NOTE_OBJECT) | (1 << SFINX_FILE_OBJECT))) {
3795                         tree->open(node);
3796                         // add notes
3797                         for (u32_t x = 0; x < slice->objs.size(); x++) {
3798                                 switch (slice->objs[x].type) {
3799                                         case SFINX_NOTE_OBJECT:
3800                                                 if (fill_tree_mask & (1 << SFINX_NOTE_OBJECT))
3801                                                         tree->add_sub((char *)(slice->objs[x].name + slice->objs[x].description).c_str(), 0, &note_pixmap,
3802                                                                 to_voidp(&(slice->objs[x])));
3803                                                 break;
3804                                         case SFINX_FILE_OBJECT:
3805                                                 if (fill_tree_mask & (1 << SFINX_FILE_OBJECT))
3806                                                         tree->add_sub((char *)(slice->objs[x].name + slice->objs[x].description).c_str(), 0, &file_pixmap,
3807                                                                 to_voidp(&(slice->objs[x])));
3808                                                 break;
3809                                         default:
3810                                                 debug("unsupported fill tree type %d", slice->objs[x].type);
3811                                                 break;
3812                         } // switch
3813                                 tree->traverse_up();
3814                         } // for
3815                 }
3816         } else {
3817                 node = tree->traverse_start();
3818                 while (node) {
3819                         sfinx_slice_t *s = (sfinx_slice_t *) node->user_data();
3820                         if (s->id == slice->parent_id)
3821                                 break;
3822                         node = tree->traverse_forward();
3823                 }
3824                 if (node) {
3825                         tree->open(node);
3826                         node = tree->add_sub((char *)name.c_str(), 1, &slice_pixmap, to_voidp(slice));
3827                 if (fill_tree_mask & ((1 << SFINX_NOTE_OBJECT) | (1 << SFINX_FILE_OBJECT))) {
3828                         tree->open(node);
3829                         // add notes
3830                         for (u32_t x = 0; x < slice->objs.size(); x++) {
3831                                 switch (slice->objs[x].type) {
3832                                         case SFINX_NOTE_OBJECT:
3833                                                 if (fill_tree_mask & (1 << SFINX_NOTE_OBJECT))
3834                                                         tree->add_sub((char *)(slice->objs[x].name + slice->objs[x].description).c_str(), 0, &note_pixmap,
3835                                                                 to_voidp(&(slice->objs[x])));
3836                                                 break;
3837                                         case SFINX_FILE_OBJECT:
3838                                                 if (fill_tree_mask & (1 << SFINX_FILE_OBJECT))
3839                                                         tree->add_sub((char *)(slice->objs[x].name + slice->objs[x].description).c_str(), 0, &file_pixmap,
3840                                                                 to_voidp(&(slice->objs[x])));
3841                                                 break;
3842                                         default:
3843                                                 debug("unsupported fill tree type %d", slice->objs[x].type);
3844                                                 break;
3845                         } // switch
3846                                 tree->traverse_up();
3847                         } // for
3848                 }
3849                 } // node not found - just ignore
3850         }
3852 s32_t width = max_name_len * 8;
3853 // need to count depth for width update
3854 Fl_Scroll_Resize *tree_scroll = (Fl_Scroll_Resize *) tree->user_data();
3855 if (!tree_scroll) // he, forgot to set ;)
3856         bug();
3857 tree->resize(tree->x(), tree->y(), width > tree_scroll->w() ? width : tree_scroll->w(), tree->h());
3858 //tree->redraw();
3859 //tree_scroll->redraw();
3860 // try to select previous node
3861 //node = slices_tree->find(to_voidp(current_slice_id));
3862 //if (node)
3863 //      slices_tree->select_range(node, node);
3864 Fl::unlock();
3867 void x11_ui::fill_unsorted_files_tree(sfinx_files_vector_t *tree_) {
3868   Fl::lock();
3869 static sfinx_files_vector_t tree;
3870 tree.copy(tree_);
3871 files_module_tree_br->user_data((void *)&tree);
3872 files_module_tree_br->clear();
3873 char buf[256];
3874 u32_t files = 0, dirs = 0;
3875 // set parent dir id
3876 if (tree.files.size())
3877         current_file.mtag.id = tree.files[0]->compressed_fsize;
3878 for (u32_t i = 0; i < tree.files.size(); i++) {
3879         if (tree.files[i]->is_directory)
3880                 strcpy(buf, "\t@b@.");
3881         else
3882                 strcpy(buf, "\t");
3883         strncat(buf, tree.files[i]->name.c_str(), 50);
3884         char dir_len[64];
3885         if (tree.files[i]->is_directory) {
3886                 strcpy(dir_len, "\t@b@.< DIR >\t");
3887                 dirs++;
3888         } else {
3889                 sprintf(dir_len, "\t%llu\t", tree.files[i]->fsize);
3890                 files++;
3891         }
3892         strcat(buf, dir_len);
3893         int cyear, cmonth, cday, chour, cmin, csec;
3894         tree.files[i]->ctime.GetDate(cyear, cmonth, cday);
3895         tree.files[i]->ctime.GetTime(chour, cmin, csec);
3896         sprintf(dir_len, "%02d/%02d/%04d %02d:%02d:%02d\t", cday, cmonth, cyear, chour, cmin, csec);
3897         strcat(buf, dir_len);
3898         strcat(buf, tree.files[i]->mimetype.c_str());
3899         files_module_tree_br->add(buf);
3901 files_module_tree_br->redraw();
3902 string root;
3903 app->files_module_conf.get(FILES_MODULE_UNSORTED_PATH, root);
3904 sprintf(buf, "Path: %s | Total %d file%s and %d director%s", (root + current_file.name.c_str()).c_str(), files, (files == 1) ? "" : "s",  dirs,
3905         (dirs == 1) ? "y" : "ies");
3906 files_module_status_to->value(buf);
3907 files_module_status_to->redraw();
3908 // this is unsorted tree
3909 select_files_tree_b->user_data(0);
3910 select_files_tree_b->label("Show Sorted");
3911 select_files_tree_b->redraw();
3912 files_tree_scroll->hide();
3913 files_module_w->resizable(files_module_tree_br);
3914 files_module_tree_br->show();
3915 files_module_w->redraw();
3916 Fl::unlock();
3919 void x11_ui::fill_preferences() {
3920   Fl::lock();
3921 string t;
3922 app->files_module_conf.get(FILES_MODULE_UNSORTED_PATH, t);
3923 config_files_module_unsorted_path_i->value(t.c_str());
3924 app->files_module_conf.get(FILES_MODULE_SORTED_TREE_PATH, t);
3925 config_files_module_sorted_path_i->value(t.c_str());
3926 app->files_module_conf.get(FILES_MODULE_DESC_FILE_NAME, t);
3927 config_files_module_desc_file_name_i->value(t.c_str());
3928 u32_t gen_desc_files;
3929 app->files_module_conf.get(FILES_MODULE_DESC_FILE_ENABLE, &gen_desc_files);
3930 gen_desc_files_b->value(gen_desc_files);
3931 Fl::unlock();
3934 void x11_ui::log(int level, const char *fmt, ...) {
3935   char buf[10240];
3936 const char *level_str;
3937 static Mutex log_m;
3938 log_m.enterMutex();
3939 Fl::lock();
3940 ::va_list args;
3941 ::va_start(args, fmt);
3942 ::va_end(args);
3943 switch (level) {
3944         case SFINX_LOG_NOTICE:
3945                 level_str = "NOTICE";
3946                 break;
3947         case SFINX_LOG_WARN:
3948                 level_str = "WARN";
3949                 break;
3950         case SFINX_LOG_ERROR:
3951                 level_str = "ERROR";
3952                 break;
3953         case SFINX_LOG_FATAL:
3954                 level_str = "FATAL";
3955                 break;
3956         default:
3957                 level_str = "UNKN_LEVEL";
3959 // add time ?
3960 strcpy(buf, level_str);
3961 strcat(buf, ": ");
3962 ::vsnprintf(buf + strlen(level_str) + 2, sizeof(buf) - (strlen(level_str) + 2), fmt, args);
3963 log_br->add(buf);
3964 Fl::unlock();
3965 log_m.leaveMutex();
3968 void x11_ui::progress(sfinx_progress_t *p) {
3969   Fl::lock();
3970 static char buf[128];
3971 switch (p->status()) {
3972         case SFINX_PROGRESS_START:
3973                 progress_l->label(p->label());
3974                 strcpy(buf, p->strvalue());
3975                 progress_bar->label(buf);
3976                 progress_bar->minimum(0);
3977                 progress_bar->maximum(p->max());
3978                 progress_bar->value(p->value());
3979                 progress_w->show();
3980                 progress_w->redraw();
3981                 break;
3982         case SFINX_PROGRESS_END:
3983                 progress_w->hide();
3984                 break;
3985         case SFINX_PROGRESS_NONE:
3986         default:
3987                 break;
3989 Fl::unlock();
3992 void x11_ui::alert(sfinx_string_t *alert) {
3993   Fl::lock();
3994 if (alert->size() != 1)
3995         fl_alert(alert->c_str());
3996 Fl::unlock();