Gallery Bank: WordPress Photo Gallery Plugin - Version 4.0.3

Version Description

  • FIX: Lightbox Bugs Fixed in Image Gallery
  • FIX: Code Optimized
  • FIX: Obsolete Code Removed
  • FIX: Headers Output Bug Fixed
Download this release

Release Info

Developer contact-banker
Plugin Icon 128x128 Gallery Bank: WordPress Photo Gallery Plugin
Version 4.0.3
Comparing to
See all releases

Code changes from version 4.0.2 to 4.0.3

gallery-bank.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Gallery Bank is an interactive WordPress gallery plugin, best fit for creative and corporate portfolio websites.
6
  * Author: Tech Banker
7
  * Author URI: http://gallery-bank.tech-banker.com
8
- * Version: 4.0.2
9
  * License: GPLv3
10
  * Text Domain: gallery-bank
11
  * Domain Path: /languages
@@ -89,7 +89,7 @@ if (!defined("tech_banker_stats_url")) {
89
  define("tech_banker_stats_url", "http://stats.tech-banker-services.org");
90
  }
91
  if (!defined("gallery_bank_wizard_version_number")) {
92
- define("gallery_bank_wizard_version_number", "4.0.2");
93
  }
94
 
95
  if (!is_dir(GALLERY_BANK_MAIN_DIR)) {
5
  * Description: Gallery Bank is an interactive WordPress gallery plugin, best fit for creative and corporate portfolio websites.
6
  * Author: Tech Banker
7
  * Author URI: http://gallery-bank.tech-banker.com
8
+ * Version: 4.0.3
9
  * License: GPLv3
10
  * Text Domain: gallery-bank
11
  * Domain Path: /languages
89
  define("tech_banker_stats_url", "http://stats.tech-banker-services.org");
90
  }
91
  if (!defined("gallery_bank_wizard_version_number")) {
92
+ define("gallery_bank_wizard_version_number", "4.0.3");
93
  }
94
 
95
  if (!is_dir(GALLERY_BANK_MAIN_DIR)) {
includes/sidebar.php CHANGED
@@ -215,7 +215,7 @@ if (!is_user_logged_in()) {
215
  <li id="ux_li_foo_box_free_edition">
216
  <a href="admin.php?page=gb_foo_box_free_edition">
217
  <i class="icon-custom-frame"></i>
218
- <?php echo $gb_foo_box_free_edition; ?>
219
  </a>
220
  </li>
221
  <li id="ux_li_nivo_light_box">
215
  <li id="ux_li_foo_box_free_edition">
216
  <a href="admin.php?page=gb_foo_box_free_edition">
217
  <i class="icon-custom-frame"></i>
218
+ <?php echo class_exists("fooboxV2") ? $gb_foo_box_premium : $gb_foo_box_free_edition; ?>
219
  </a>
220
  </li>
221
  <li id="ux_li_nivo_light_box">
lib/install-script.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
-
3
  /**
4
  * This file is used for creating table.
5
  *
@@ -8,147 +7,138 @@
8
  * @version 4.0.0
9
  */
10
  if (!defined("ABSPATH")) {
11
- exit;
12
  } // Exit if accessed directly
13
  if (!is_user_logged_in()) {
14
- return;
15
  } else {
16
- if (!current_user_can("manage_options")) {
17
- return;
18
- } else {
19
- /*
20
- Class Name: dbHelper_install_script_gallery_bank
21
- Parameter: No
22
- Description: This Class is used for Insert,Update and Delete operations.
23
- Created On: 01-06-2017 09:00
24
- Created By: Tech Banker Team
25
- */
26
- if (!class_exists("dbHelper_install_script_gallery_bank")) {
27
-
28
- class dbHelper_install_script_gallery_bank {
29
- /*
30
- Function Name: insertCommand
31
- Parameter: Yes($table_name,$data)
32
- Description: It is used for insert data in database.
33
- Created On: 01-06-2017 09:00
34
- Created By: Tech Banker Team
35
- */
36
-
37
- function insertCommand($table_name, $data) {
38
- global $wpdb;
39
- $wpdb->insert($table_name, $data);
40
- return $wpdb->insert_id;
41
- }
42
-
43
- /*
44
- Function Name: updateCommand
45
- Parameter: Yes($table_name,$data,$where)
46
- Description: It is used for update data in database.
47
- Created On: 01-06-2017 09:00
48
- Created By: Tech Banker Team
49
- */
50
-
51
- function updateCommand($table_name, $data, $where) {
52
- global $wpdb;
53
- $wpdb->update($table_name, $data, $where);
54
- }
55
-
56
- function createThumbs_gallery_bank($fname, $image_data) {
57
- $fileName = wp_unique_filename(GALLERY_BANK_THUMBS_CROPPED_DIR, $fname);
58
- if (function_exists("wp_get_image_editor")) {
59
- $image_original = wp_get_image_editor(GALLERY_BANK_ORIGINAL_DIR . $fname);
60
- $image_thumbnail_cropped = wp_get_image_editor(GALLERY_BANK_ORIGINAL_DIR . $fname);
61
- $image_thumbnail_non_cropped = wp_get_image_editor(GALLERY_BANK_ORIGINAL_DIR . $fname);
62
- if (!is_wp_error($image_original) || !is_wp_error($image_thumbnail_cropped) || !is_wp_error($image_thumbnail_non_cropped)) {
63
- $image_original->resize($image_data[0], $image_data[1], false);
64
- $image_original->save(GALLERY_BANK_ORIGINAL_DIR . $fileName);
65
-
66
- $image_thumbnail_cropped->resize($image_data[2], $image_data[3], true);
67
- $image_thumbnail_cropped->save(GALLERY_BANK_THUMBS_CROPPED_DIR . $fileName);
68
-
69
- $image_thumbnail_non_cropped->resize($image_data[2], $image_data[3], false);
70
- $image_thumbnail_non_cropped->save(GALLERY_BANK_THUMBS_NON_CROPPED_DIR . $fileName);
71
- }
72
- } else {
73
- image_resize(GALLERY_BANK_ORIGINAL_DIR . $fname, $image_data[0], $image_data[1], false);
74
- image_resize(GALLERY_BANK_THUMBS_CROPPED_DIR . $fname, $image_data[2], $image_data[3], true);
75
- image_resize(GALLERY_BANK_THUMBS_NON_CROPPED_DIR . $fname, $image_data[2], $image_data[3], false);
76
- }
77
- return $fileName;
78
- }
79
-
80
- function file_exif_information_gallery_bank($file) {
81
- $meta_data_array = array();
82
- $image_data = getimagesize($file);
83
- $meta_data_array["width"] = $image_data[0];
84
- $meta_data_array["height"] = $image_data[1];
85
- if (preg_match("!^image/!", $image_data["mime"]) && file_is_displayable_image($file)) {
86
- $meta_data_array["mime_type"] = $image_data["mime"];
87
- $meta_data_array["file"] = _wp_relative_upload_path($file);
88
- $meta_data_array["exif_information"] = wp_read_image_metadata($file);
89
- }
90
- return $meta_data_array;
91
- }
92
-
93
  }
94
-
95
- }
96
-
97
- if (!function_exists("get_thumbnail_dimension_gallery_bank")) {
98
-
99
- function get_thumbnail_dimension_gallery_bank() {
100
- global $wpdb;
101
- $thumbnail_data = $wpdb->get_var
102
- (
103
- $wpdb->prepare
104
- (
105
- "SELECT meta_value FROM " . gallery_bank_meta() . "
106
- WHERE " . gallery_bank_meta() . ".meta_key = %s", "global_options_settings"
107
- )
108
- );
109
-
110
- $thumbnail_data_unserialize = maybe_unserialize($thumbnail_data);
111
- $image_dimension = explode(",", $thumbnail_data_unserialize["global_options_generated_image_dimensions"]);
112
- $thumbnail_dimensions = explode(",", $thumbnail_data_unserialize["global_options_thumbnail_dimensions"]);
113
- $image_data = array_merge($image_dimension, $thumbnail_dimensions);
114
- return $image_data;
115
  }
116
-
117
- }
118
-
119
- if (!function_exists("get_parent_id_gallery_bank")) {
120
-
121
- function get_parent_id_gallery_bank($type) {
122
- global $wpdb;
123
- $parent_id = $wpdb->get_var
124
- (
125
- $wpdb->prepare
126
- (
127
- "SELECT id FROM " . gallery_bank_parent() . " WHERE " . gallery_bank_parent() . ". type = %s", $type
128
- )
129
- );
130
- return $parent_id;
 
 
 
 
 
 
 
131
  }
132
-
133
- }
134
-
135
- require_once(ABSPATH . "wp-admin/includes/upgrade.php");
136
- $gallery_bank_version_number = get_option("gallery-bank-pro-edition");
137
-
138
- /*
139
- Function Name: table_gallery_bank
140
- Parameter: No
141
- Description: It is used for creating a parent table.
142
- Created On: 01-06-2017 09:00
143
- Created By: Tech Banker Team
144
- */
145
-
146
- if (!function_exists("table_gallery_bank")) {
147
-
148
- function table_gallery_bank() {
149
- global $wpdb;
150
- $obj_dbHelper_gallery_bank_parent = new dbHelper_install_script_gallery_bank();
151
- $sql = "CREATE TABLE IF NOT EXISTS " . gallery_bank_parent() . "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  (
153
  `id` int(10) NOT NULL AUTO_INCREMENT,
154
  `type` longtext NOT NULL,
@@ -156,9 +146,9 @@ if (!is_user_logged_in()) {
156
  PRIMARY KEY (`id`)
157
  )
158
  ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1";
159
- dbDelta($sql);
160
 
161
- $data = "INSERT INTO " . gallery_bank_parent() . " (`type`, `parent_id`) VALUES
162
  ('galleries', 0),
163
  ('albums',0),
164
  ('tags', 0),
@@ -167,25 +157,24 @@ if (!is_user_logged_in()) {
167
  ('general_settings', 0),
168
  ('other_settings', 0),
169
  ('roles_and_capabilities_settings', 0)";
170
- dbDelta($data);
171
- }
172
-
173
- }
174
-
175
- /*
176
- Function Name: table_gallery_bank_meta
177
- Parameter: No
178
- Description: It is used for creating a meta table.
179
- Created On: 01-06-2017 09:00
180
- Created By: Tech Banker Team
181
- */
182
-
183
- if (!function_exists("table_gallery_bank_meta")) {
184
-
185
- function table_gallery_bank_meta() {
186
- global $wpdb;
187
- $obj_dbHelper_gallery_bank_meta_table = new dbHelper_install_script_gallery_bank();
188
- $sql = "CREATE TABLE IF NOT EXISTS " . gallery_bank_meta() . "
189
  (
190
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
191
  `meta_id` int(10) NOT NULL,
@@ -195,1073 +184,1072 @@ if (!is_user_logged_in()) {
195
  PRIMARY KEY (`id`)
196
  )
197
  ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1";
198
- dbDelta($sql);
199
-
200
- $parent_table_data = $wpdb->get_results
201
- (
202
- "SELECT id,type FROM " . gallery_bank_parent()
203
- );
204
-
205
- foreach ($parent_table_data as $row) {
206
- switch ($row->type) {
207
- case "layout_settings":
208
- $thumbnail_layout_data = array();
209
- $thumbnail_layout_data["thumbnail_layout_general_margin"] = "10,10,0,0";
210
- $thumbnail_layout_data["thumbnail_layout_general_padding"] = "0,0,0,0";
211
- $thumbnail_layout_data["thumbnail_layout_general_border_style"] = "0,none,#000000";
212
- $thumbnail_layout_data["thumbnail_layout_general_border_radius"] = "0";
213
- $thumbnail_layout_data["thumbnail_layout_general_shadow"] = "0,0,0,0";
214
- $thumbnail_layout_data["thumbnail_layout_general_shadow_color"] = "#000000";
215
- $thumbnail_layout_data["thumbnail_layout_general_hover_effect_value"] = "none,0,0,0";
216
- $thumbnail_layout_data["thumbnail_layout_general_transition_time"] = "1";
217
- $thumbnail_layout_data["thumbnail_layout_general_background_color_transparency"] = "#ebe8eb,50";
218
- $thumbnail_layout_data["thumbnail_layout_general_thumbnail_opacity"] = "100";
219
- $thumbnail_layout_data["thumbnail_layout_thumbnail_dimensions"] = "250,200";
220
- $thumbnail_layout_data["thumbnail_layout_container_width"] = "100";
221
- $thumbnail_layout_data["thumbnail_layout_thumbnail_position"] = "center,center";
222
-
223
- $thumbnail_layout_data["thumbnail_layout_gallery_title_html_tag"] = "h2";
224
- $thumbnail_layout_data["thumbnail_layout_gallery_title_text_alignment"] = "left";
225
- $thumbnail_layout_data["thumbnail_layout_gallery_title_font_style"] = "20,#000000";
226
- $thumbnail_layout_data["thumbnail_layout_gallery_title_line_height"] = "1.7em";
227
- $thumbnail_layout_data["thumbnail_layout_gallery_title_font_family"] = "Roboto Slab:700";
228
- $thumbnail_layout_data["thumbnail_layout_gallery_title_margin"] = "10,0,10,0";
229
- $thumbnail_layout_data["thumbnail_layout_gallery_title_padding"] = "10,0,10,0";
230
-
231
- $thumbnail_layout_data["thumbnail_layout_gallery_description_html_tag"] = "h3";
232
- $thumbnail_layout_data["thumbnail_layout_gallery_description_text_alignment"] = "left";
233
- $thumbnail_layout_data["thumbnail_layout_gallery_description_font_style"] = "16,#787D85";
234
- $thumbnail_layout_data["thumbnail_layout_gallery_description_line_height"] = "1.7em";
235
- $thumbnail_layout_data["thumbnail_layout_gallery_description_font_family"] = "Roboto Slab:300";
236
- $thumbnail_layout_data["thumbnail_layout_gallery_description_margin"] = "10,0,10,0";
237
- $thumbnail_layout_data["thumbnail_layout_gallery_description_padding"] = "0,0,10,0";
238
-
239
- $thumbnail_layout_data["thumbnail_layout_thumbnail_title_html_tag"] = "h3";
240
- $thumbnail_layout_data["thumbnail_layout_thumbnail_title_text_alignment"] = "left";
241
- $thumbnail_layout_data["thumbnail_layout_thumbnail_title_font_style"] = "14,#787D85";
242
- $thumbnail_layout_data["thumbnail_layout_thumbnail_title_line_height"] = "1.7em";
243
- $thumbnail_layout_data["thumbnail_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
244
- $thumbnail_layout_data["thumbnail_layout_thumbnail_title_margin"] = "0,5,0,5";
245
- $thumbnail_layout_data["thumbnail_layout_thumbnail_title_padding"] = "10,10,10,10";
246
-
247
- $thumbnail_layout_data["thumbnail_layout_thumbnail_description_html_tag"] = "p";
248
- $thumbnail_layout_data["thumbnail_layout_thumbnail_description_text_alignment"] = "left";
249
- $thumbnail_layout_data["thumbnail_layout_thumbnail_description_font_style"] = "12,#787D85";
250
- $thumbnail_layout_data["thumbnail_layout_thumbnail_description_line_height"] = "1.7em";
251
- $thumbnail_layout_data["thumbnail_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
252
- $thumbnail_layout_data["thumbnail_layout_thumbnail_description_margin"] = "0,5,0,5";
253
- $thumbnail_layout_data["thumbnail_layout_thumbnail_description_padding"] = "5,10,10,5";
254
- $thumbnail_layout_data_serialize = array();
255
- $thumbnail_layout_data_serialize["meta_id"] = $row->id;
256
- $thumbnail_layout_data_serialize["old_gallery_id"] = $row->id;
257
- $thumbnail_layout_data_serialize["meta_key"] = "thumbnail_layout_settings";
258
- $thumbnail_layout_data_serialize["meta_value"] = serialize($thumbnail_layout_data);
259
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $thumbnail_layout_data_serialize);
260
-
261
- $masonry_layout_data = array();
262
- $masonry_layout_data["masonry_layout_general_margin"] = "10,10,0,0";
263
- $masonry_layout_data["masonry_layout_general_padding"] = "0,0,0,0";
264
- $masonry_layout_data["masonry_layout_general_border_style"] = "0,solid,#cccccc";
265
- $masonry_layout_data["masonry_layout_general_border_radius"] = "0";
266
- $masonry_layout_data["masonry_layout_general_shadow"] = "0,0,0,0";
267
- $masonry_layout_data["masonry_layout_general_shadow_color"] = "#000000";
268
- $masonry_layout_data["masonry_layout_general_hover_effect_value"] = "none,0,0,0";
269
- $masonry_layout_data["masonry_layout_general_transition_time"] = "1";
270
- $masonry_layout_data["masonry_layout_general_background_color_transparency"] = "#ebe8eb,50";
271
- $masonry_layout_data["masonry_layout_general_masonry_opacity"] = "100";
272
- $masonry_layout_data["masonry_layout_general_thumbnail_width"] = "250";
273
-
274
- $masonry_layout_data["masonry_layout_gallery_title_html_tag"] = "h2";
275
- $masonry_layout_data["masonry_layout_gallery_title_text_alignment"] = "left";
276
- $masonry_layout_data["masonry_layout_gallery_title_font_style"] = "20,#000000";
277
- $masonry_layout_data["masonry_layout_gallery_title_line_height"] = "1.7em";
278
- $masonry_layout_data["masonry_layout_gallery_title_font_family"] = "Roboto Slab:700";
279
- $masonry_layout_data["masonry_layout_gallery_title_margin"] = "10,0,10,0";
280
- $masonry_layout_data["masonry_layout_gallery_title_padding"] = "10,0,10,0";
281
-
282
- $masonry_layout_data["masonry_layout_gallery_description_html_tag"] = "h3";
283
- $masonry_layout_data["masonry_layout_gallery_description_text_alignment"] = "left";
284
- $masonry_layout_data["masonry_layout_gallery_description_font_style"] = "16,#787D85";
285
- $masonry_layout_data["masonry_layout_gallery_description_line_height"] = "1.7em";
286
- $masonry_layout_data["masonry_layout_gallery_description_font_family"] = "Roboto Slab:300";
287
- $masonry_layout_data["masonry_layout_gallery_description_margin"] = "10,0,10,0";
288
- $masonry_layout_data["masonry_layout_gallery_description_padding"] = "0,0,10,0";
289
-
290
- $masonry_layout_data["masonry_layout_thumbnail_title_html_tag"] = "h3";
291
- $masonry_layout_data["masonry_layout_thumbnail_title_text_alignment"] = "left";
292
- $masonry_layout_data["masonry_layout_thumbnail_title_font_style"] = "14,#787D85";
293
- $masonry_layout_data["masonry_layout_thumbnail_title_line_height"] = "1.7em";
294
- $masonry_layout_data["masonry_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
295
- $masonry_layout_data["masonry_layout_thumbnail_title_margin"] = "0,5,0,5";
296
- $masonry_layout_data["masonry_layout_thumbnail_title_padding"] = "10,10,10,10";
297
-
298
- $masonry_layout_data["masonry_layout_thumbnail_description_html_tag"] = "p";
299
- $masonry_layout_data["masonry_layout_thumbnail_description_text_alignment"] = "left";
300
- $masonry_layout_data["masonry_layout_thumbnail_description_font_style"] = "12,#787D85";
301
- $masonry_layout_data["masonry_layout_thumbnail_description_line_height"] = "1.7em";
302
- $masonry_layout_data["masonry_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
303
- $masonry_layout_data["masonry_layout_thumbnail_description_margin"] = "0,5,0,5";
304
- $masonry_layout_data["masonry_layout_thumbnail_description_padding"] = "5,10,10,5";
305
- $masonry_layout_data_serialize = array();
306
- $masonry_layout_data_serialize["meta_id"] = $row->id;
307
- $masonry_layout_data_serialize["old_gallery_id"] = $row->id;
308
- $masonry_layout_data_serialize["meta_key"] = "masonry_layout_settings";
309
- $masonry_layout_data_serialize["meta_value"] = serialize($masonry_layout_data);
310
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $masonry_layout_data_serialize);
311
-
312
- $slideshow_layout_data = array();
313
- $slideshow_layout_data["slideshow_layout_general_background_color"] = "#ebe8eb";
314
- $slideshow_layout_data["slideshow_layout_general_border_style"] = "0,none,#cccccc";
315
- $slideshow_layout_data["slideshow_layout_general_border_radius"] = "0";
316
- $slideshow_layout_data["slideshow_layout_general_buttons_hover_color"] = "#105278";
317
- $slideshow_layout_data["slideshow_layout_general_buttons_color"] = "#000000";
318
- $slideshow_layout_data["slideshow_layout_general_buttons_border_style"] = "0,none,#cccccc";
319
- $slideshow_layout_data["slideshow_layout_general_buttons_border_radius"] = "0";
320
- $slideshow_layout_data["slideshow_layout_general_shadow"] = "0,0,0,0";
321
- $slideshow_layout_data["slideshow_layout_general_shadow_color"] = "#000000";
322
- $slideshow_layout_data["slideshow_layout_general_buttons_transparency"] = "75";
323
- $slideshow_layout_data["slideshow_layout_general_filmstrip_margin"] = "5,5,5,0";
324
- $slideshow_layout_data["slideshow_layout_general_filmstrip_padding"] = "5,5,5,0";
325
- $slideshow_layout_data["slideshow_layout_general_filmstrip_border_style"] = "1,solid,#555";
326
- $slideshow_layout_data["slideshow_layout_general_filmstrip_border_radius"] = "0";
327
- $slideshow_layout_data["slideshow_layout_general_filmstrip_active_border_style"] = "2,solid,#fff";
328
- $slideshow_layout_data["slideshow_layout_general_filmstrip_deactive_transparency"] = "75";
329
-
330
- $slideshow_layout_data["slideshow_layout_gallery_title_html_tag"] = "h2";
331
- $slideshow_layout_data["slideshow_layout_gallery_title_text_alignment"] = "left";
332
- $slideshow_layout_data["slideshow_layout_gallery_title_font_style"] = "20,#000000";
333
- $slideshow_layout_data["slideshow_layout_gallery_title_line_height"] = "1.7em";
334
- $slideshow_layout_data["slideshow_layout_gallery_title_font_family"] = "Roboto Slab:700";
335
- $slideshow_layout_data["slideshow_layout_gallery_title_margin"] = "10,0,10,0";
336
- $slideshow_layout_data["slideshow_layout_gallery_title_padding"] = "10,0,10,0";
337
-
338
- $slideshow_layout_data["slideshow_layout_gallery_description_html_tag"] = "h3";
339
- $slideshow_layout_data["slideshow_layout_gallery_description_text_alignment"] = "left";
340
- $slideshow_layout_data["slideshow_layout_gallery_description_font_style"] = "16,#787D85";
341
- $slideshow_layout_data["slideshow_layout_gallery_description_line_height"] = "1.7em";
342
- $slideshow_layout_data["slideshow_layout_gallery_description_font_family"] = "Roboto Slab:300";
343
- $slideshow_layout_data["slideshow_layout_gallery_description_margin"] = "10,0,10,0";
344
- $slideshow_layout_data["slideshow_layout_gallery_description_padding"] = "0,0,10,0";
345
-
346
- $slideshow_layout_data["slideshow_layout_thumbnail_title_html_tag"] = "h3";
347
- $slideshow_layout_data["slideshow_layout_thumbnail_title_text_alignment"] = "left";
348
- $slideshow_layout_data["slideshow_layout_thumbnail_title_font_style"] = "14,#efefef";
349
- $slideshow_layout_data["slideshow_layout_thumbnail_title_line_height"] = "1.7em";
350
- $slideshow_layout_data["slideshow_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
351
- $slideshow_layout_data["slideshow_layout_thumbnail_title_margin"] = "0,5,0,5";
352
- $slideshow_layout_data["slideshow_layout_thumbnail_title_padding"] = "5,10,0,0";
353
-
354
- $slideshow_layout_data["slideshow_layout_thumbnail_description_html_tag"] = "p";
355
- $slideshow_layout_data["slideshow_layout_thumbnail_description_text_alignment"] = "left";
356
- $slideshow_layout_data["slideshow_layout_thumbnail_description_font_style"] = "12,#dfdfdf";
357
- $slideshow_layout_data["slideshow_layout_thumbnail_description_line_height"] = "1.7em";
358
- $slideshow_layout_data["slideshow_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
359
- $slideshow_layout_data["slideshow_layout_thumbnail_description_margin"] = "0,5,0,5";
360
- $slideshow_layout_data["slideshow_layout_thumbnail_description_padding"] = "5,10,0,0";
361
-
362
- $slideshow_layout_data_serialize = array();
363
- $slideshow_layout_data_serialize["meta_id"] = $row->id;
364
- $slideshow_layout_data_serialize["old_gallery_id"] = $row->id;
365
- $slideshow_layout_data_serialize["meta_key"] = "slideshow_layout_settings";
366
- $slideshow_layout_data_serialize["meta_value"] = serialize($slideshow_layout_data);
367
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $slideshow_layout_data_serialize);
368
-
369
- $image_browser_layout_data = array();
370
- $image_browser_layout_data["image_browser_layout_container_width"] = "100";
371
- $image_browser_layout_data["image_browser_layout_general_border_style"] = "0,none,#000000";
372
- $image_browser_layout_data["image_browser_layout_general_border_radius"] = "0";
373
- $image_browser_layout_data["image_browser_layout_general_shadow"] = "0,0,0,0";
374
- $image_browser_layout_data["image_browser_layout_general_shadow_color"] = "#000000";
375
- $image_browser_layout_data["image_browser_layout_general_buttons_font_style"] = "14,#ffffff";
376
- $image_browser_layout_data["image_browser_layout_general_buttons_font_family"] = "Roboto Slab:700";
377
- $image_browser_layout_data["image_browser_layout_general_buttons_hover_color"] = "#105278";
378
- $image_browser_layout_data["image_browser_layout_general_buttons_color"] = "#000000";
379
- $image_browser_layout_data["image_browser_layout_general_buttons_border_style"] = "0,none,#ffffff";
380
- $image_browser_layout_data["image_browser_layout_general_buttons_border_radius"] = "0";
381
- $image_browser_layout_data["image_browser_layout_general_image_browser_background_color"] = "#ebe8eb";
382
- $image_browser_layout_data["image_browser_layout_general_image_browser_opacity"] = "100";
383
- $image_browser_layout_data["image_browser_layout_general_button_margin"] = "10,5,0,5";
384
- $image_browser_layout_data["image_browser_layout_general_button_padding"] = "5,10,5,10";
385
-
386
- $image_browser_layout_data["image_browser_layout_gallery_title_html_tag"] = "h2";
387
- $image_browser_layout_data["image_browser_layout_gallery_title_text_alignment"] = "left";
388
- $image_browser_layout_data["image_browser_layout_gallery_title_font_style"] = "20,#000000";
389
- $image_browser_layout_data["image_browser_layout_gallery_title_line_height"] = "1.7em";
390
- $image_browser_layout_data["image_browser_layout_gallery_title_font_family"] = "Roboto Slab:700";
391
- $image_browser_layout_data["image_browser_layout_gallery_title_margin"] = "10,0,10,0";
392
- $image_browser_layout_data["image_browser_layout_gallery_title_padding"] = "10,0,10,0";
393
-
394
- $image_browser_layout_data["image_browser_layout_gallery_description_html_tag"] = "h3";
395
- $image_browser_layout_data["image_browser_layout_gallery_description_text_alignment"] = "left";
396
- $image_browser_layout_data["image_browser_layout_gallery_description_font_style"] = "16,#787D85";
397
- $image_browser_layout_data["image_browser_layout_gallery_description_line_height"] = "1.7em";
398
- $image_browser_layout_data["image_browser_layout_gallery_description_font_family"] = "Roboto Slab:300";
399
- $image_browser_layout_data["image_browser_layout_gallery_description_margin"] = "10,0,10,0";
400
- $image_browser_layout_data["image_browser_layout_gallery_description_padding"] = "0,0,10,0";
401
-
402
- $image_browser_layout_data["image_browser_layout_thumbnail_title_html_tag"] = "h3";
403
- $image_browser_layout_data["image_browser_layout_thumbnail_title_text_alignment"] = "left";
404
- $image_browser_layout_data["image_browser_layout_thumbnail_title_font_style"] = "14,#efefef";
405
- $image_browser_layout_data["image_browser_layout_thumbnail_title_line_height"] = "1.7em";
406
- $image_browser_layout_data["image_browser_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
407
- $image_browser_layout_data["image_browser_layout_thumbnail_title_margin"] = "0,5,0,5";
408
- $image_browser_layout_data["image_browser_layout_thumbnail_title_padding"] = "5,10,0,0";
409
-
410
- $image_browser_layout_data["image_browser_layout_thumbnail_description_html_tag"] = "p";
411
- $image_browser_layout_data["image_browser_layout_thumbnail_description_text_alignment"] = "left";
412
- $image_browser_layout_data["image_browser_layout_thumbnail_description_font_style"] = "12,#dfdfdf";
413
- $image_browser_layout_data["image_browser_layout_thumbnail_description_line_height"] = "1.7em";
414
- $image_browser_layout_data["image_browser_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
415
- $image_browser_layout_data["image_browser_layout_thumbnail_description_margin"] = "0,5,0,5";
416
- $image_browser_layout_data["image_browser_layout_thumbnail_description_padding"] = "5,10,0,0";
417
- $image_browser_layout_data_serialize = array();
418
- $image_browser_layout_data_serialize["meta_id"] = $row->id;
419
- $image_browser_layout_data_serialize["old_gallery_id"] = $row->id;
420
- $image_browser_layout_data_serialize["meta_key"] = "image_browser_layout_settings";
421
- $image_browser_layout_data_serialize["meta_value"] = serialize($image_browser_layout_data);
422
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $image_browser_layout_data_serialize);
423
-
424
- $justified_grid_layout_data = array();
425
- $justified_grid_layout_data["justified_grid_layout_general_padding"] = "0,0,0,0";
426
- $justified_grid_layout_data["justified_grid_layout_general_border_style"] = "0,none,#000000";
427
- $justified_grid_layout_data["justified_grid_layout_general_border_radius"] = "0";
428
- $justified_grid_layout_data["justified_grid_layout_general_shadow"] = "0,0,0,0";
429
- $justified_grid_layout_data["justified_grid_layout_general_shadow_color"] = "#000000";
430
- $justified_grid_layout_data["justified_grid_layout_general_hover_effect_value"] = "none,0,0,0";
431
- $justified_grid_layout_data["justified_grid_layout_general_trasition"] = "1";
432
- $justified_grid_layout_data["justified_grid_layout_general_background_transparency"] = "#ebe8eb,50";
433
- $justified_grid_layout_data["justified_grid_layout_general_justified_grid_opacity"] = "100";
434
-
435
- $justified_grid_layout_data["justified_grid_layout_gallery_title_html_tag"] = "h2";
436
- $justified_grid_layout_data["justified_grid_layout_gallery_title_text_alignment"] = "left";
437
- $justified_grid_layout_data["justified_grid_layout_gallery_title_font_style"] = "20,#000000";
438
- $justified_grid_layout_data["justified_grid_layout_gallery_title_line_height"] = "1.7em";
439
- $justified_grid_layout_data["justified_grid_layout_gallery_title_font_family"] = "Roboto Slab:700";
440
- $justified_grid_layout_data["justified_grid_layout_gallery_title_margin"] = "10,0,10,0";
441
- $justified_grid_layout_data["justified_grid_layout_gallery_title_padding"] = "10,0,10,0";
442
-
443
-
444
- $justified_grid_layout_data["justified_grid_layout_gallery_description_html_tag"] = "h3";
445
- $justified_grid_layout_data["justified_grid_layout_gallery_description_text_alignment"] = "left";
446
- $justified_grid_layout_data["justified_grid_layout_gallery_description_font_style"] = "16,#787D85";
447
- $justified_grid_layout_data["justified_grid_layout_gallery_description_line_height"] = "1.7em";
448
- $justified_grid_layout_data["justified_grid_layout_gallery_description_font_family"] = "Roboto Slab:300";
449
- $justified_grid_layout_data["justified_grid_layout_gallery_description_margin"] = "10,0,10,0";
450
- $justified_grid_layout_data["justified_grid_layout_gallery_description_padding"] = "0,0,10,0";
451
-
452
- $justified_grid_layout_data["justified_grid_layout_thumbnail_title_html_tag"] = "h3";
453
- $justified_grid_layout_data["justified_grid_layout_thumbnail_title_text_alignment"] = "center";
454
- $justified_grid_layout_data["justified_grid_layout_thumbnail_title_font_style"] = "14,#efefef";
455
- $justified_grid_layout_data["justified_grid_layout_thumbnail_title_line_height"] = "1.7em";
456
- $justified_grid_layout_data["justified_grid_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
457
- $justified_grid_layout_data["justified_grid_layout_thumbnail_title_margin"] = "0,5,0,0";
458
- $justified_grid_layout_data["justified_grid_layout_thumbnail_title_padding"] = "5,10,10,5";
459
-
460
- $justified_grid_layout_data["justified_grid_layout_thumbnail_description_html_tag"] = "p";
461
- $justified_grid_layout_data["justified_grid_layout_thumbnail_description_text_alignment"] = "left";
462
- $justified_grid_layout_data["justified_grid_layout_thumbnail_description_font_style"] = "12,#dfdfdf";
463
- $justified_grid_layout_data["justified_grid_layout_thumbnail_description_line_height"] = "1.7em";
464
- $justified_grid_layout_data["justified_grid_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
465
- $justified_grid_layout_data["justified_grid_layout_thumbnail_description_margin"] = "0,5,0,0";
466
- $justified_grid_layout_data["justified_grid_layout_thumbnail_description_padding"] = "5,10,10,5";
467
- $justified_grid_layout_data_serialize = array();
468
- $justified_grid_layout_data_serialize["meta_id"] = $row->id;
469
- $justified_grid_layout_data_serialize["old_gallery_id"] = $row->id;
470
- $justified_grid_layout_data_serialize["meta_key"] = "justified_grid_layout_settings";
471
- $justified_grid_layout_data_serialize["meta_value"] = serialize($justified_grid_layout_data);
472
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $justified_grid_layout_data_serialize);
473
-
474
- $blog_style_layout_data = array();
475
- $blog_style_layout_data["blog_style_layout_general_margin"] = "0,0,15,0";
476
- $blog_style_layout_data["blog_style_layout_general_padding"] = "0,0,0,0";
477
- $blog_style_layout_data["blog_style_layout_general_border_style"] = "2,solid,#cccccc";
478
- $blog_style_layout_data["blog_style_layout_general_border_radius"] = "0";
479
- $blog_style_layout_data["blog_style_layout_general_shadow"] = "0,0,0,0";
480
- $blog_style_layout_data["blog_style_layout_general_shadow_color"] = "#000000";
481
- $blog_style_layout_data["blog_style_layout_general_hover_effect_value"] = "none,0,0,0";
482
- $blog_style_layout_data["blog_style_layout_general_trasition"] = "2";
483
- $blog_style_layout_data["blog_style_layout_general_background_color"] = "#ebe8eb";
484
- $blog_style_layout_data["blog_style_layout_general_blog_style_opacity"] = "100";
485
- $blog_style_layout_data["blog_style_layout_general_background_transparency"] = "100";
486
-
487
- $blog_style_layout_data["blog_style_layout_gallery_title_html_tag"] = "h2";
488
- $blog_style_layout_data["blog_style_layout_gallery_title_text_alignment"] = "left";
489
- $blog_style_layout_data["blog_style_layout_gallery_title_font_style"] = "20,#000000";
490
- $blog_style_layout_data["blog_style_layout_gallery_title_line_height"] = "1.7em";
491
- $blog_style_layout_data["blog_style_layout_gallery_title_font_family"] = "Roboto Slab:700";
492
- $blog_style_layout_data["blog_style_layout_gallery_title_margin"] = "10,0,10,0";
493
- $blog_style_layout_data["blog_style_layout_gallery_title_padding"] = "10,0,10,0";
494
-
495
- $blog_style_layout_data["blog_style_layout_gallery_description_html_tag"] = "h3";
496
- $blog_style_layout_data["blog_style_layout_gallery_description_text_alignment"] = "left";
497
- $blog_style_layout_data["blog_style_layout_gallery_description_font_style"] = "16,#787D85";
498
- $blog_style_layout_data["blog_style_layout_gallery_description_line_height"] = "1.7em";
499
- $blog_style_layout_data["blog_style_layout_gallery_description_font_family"] = "Roboto Slab:300";
500
- $blog_style_layout_data["blog_style_layout_gallery_description_margin"] = "10,0,10,0";
501
- $blog_style_layout_data["blog_style_layout_gallery_description_padding"] = "0,0,10,0";
502
-
503
- $blog_style_layout_data["blog_style_layout_thumbnail_title_html_tag"] = "h3";
504
- $blog_style_layout_data["blog_style_layout_thumbnail_title_text_alignment"] = "left";
505
- $blog_style_layout_data["blog_style_layout_thumbnail_title_font_style"] = "14,#787D85";
506
- $blog_style_layout_data["blog_style_layout_thumbnail_title_line_height"] = "1.7em";
507
- $blog_style_layout_data["blog_style_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
508
- $blog_style_layout_data["blog_style_layout_thumbnail_title_margin"] = "0,5,0,5";
509
- $blog_style_layout_data["blog_style_layout_thumbnail_title_padding"] = "10,10,10,10";
510
-
511
- $blog_style_layout_data["blog_style_layout_thumbnail_description_html_tag"] = "p";
512
- $blog_style_layout_data["blog_style_layout_thumbnail_description_text_alignment"] = "left";
513
- $blog_style_layout_data["blog_style_layout_thumbnail_description_font_style"] = "12,#787D85";
514
- $blog_style_layout_data["blog_style_layout_thumbnail_description_line_height"] = "1.7em";
515
- $blog_style_layout_data["blog_style_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
516
- $blog_style_layout_data["blog_style_layout_thumbnail_description_margin"] = "0,5,0,5";
517
- $blog_style_layout_data["blog_style_layout_thumbnail_description_padding"] = "5,10,10,5";
518
- $blog_style_layout_data_serialize = array();
519
- $blog_style_layout_data_serialize["meta_id"] = $row->id;
520
- $blog_style_layout_data_serialize["old_gallery_id"] = $row->id;
521
- $blog_style_layout_data_serialize["meta_key"] = "blog_style_layout_settings";
522
- $blog_style_layout_data_serialize["meta_value"] = serialize($blog_style_layout_data);
523
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $blog_style_layout_data_serialize);
524
-
525
- $compact_album_layout_data = array();
526
- $compact_album_layout_data["compact_album_layout_cover_margin"] = "10,10,0,0";
527
- $compact_album_layout_data["compact_album_layout_cover_padding"] = "0,0,0,0";
528
- $compact_album_layout_data["compact_album_layout_cover_border_style"] = "0,none,#000000";
529
- $compact_album_layout_data["compact_album_layout_cover_border_radius"] = "0";
530
- $compact_album_layout_data["compact_album_layout_cover_shadow"] = "0,0,0,0";
531
- $compact_album_layout_data["compact_album_layout_cover_shadow_color"] = "#000000";
532
- $compact_album_layout_data["compact_album_layout_cover_hover_effect_value"] = "none,0,0,0";
533
- $compact_album_layout_data["compact_album_layout_cover_transition_time"] = "1";
534
- $compact_album_layout_data["compact_album_layout_cover_background_color_transparency"] = "#ebe8eb,50";
535
- $compact_album_layout_data["compact_album_layout_cover_thumbnail_opacity"] = "100";
536
- $compact_album_layout_data["compact_album_layout_cover_thumbnail_dimensions"] = "250,200";
537
-
538
- $compact_album_layout_data["compact_album_layout_title_html_tag"] = "h2";
539
- $compact_album_layout_data["compact_album_layout_title_text_alignment"] = "left";
540
- $compact_album_layout_data["compact_album_layout_title_font_style"] = "20,#000000";
541
- $compact_album_layout_data["compact_album_layout_title_line_height"] = "1.7em";
542
- $compact_album_layout_data["compact_album_layout_title_font_family"] = "Roboto Slab:700";
543
- $compact_album_layout_data["compact_album_layout_title_margin"] = "10,0,10,0";
544
- $compact_album_layout_data["compact_album_layout_title_padding"] = "10,0,10,0";
545
-
546
- $compact_album_layout_data["compact_album_layout_description_html_tag"] = "h3";
547
- $compact_album_layout_data["compact_album_layout_description_text_alignment"] = "left";
548
- $compact_album_layout_data["compact_album_layout_description_font_style"] = "16,#787D85";
549
- $compact_album_layout_data["compact_album_layout_description_line_height"] = "1.7em";
550
- $compact_album_layout_data["compact_album_layout_description_font_family"] = "Roboto Slab:300";
551
- $compact_album_layout_data["compact_album_layout_description_margin"] = "10,0,10,0";
552
- $compact_album_layout_data["compact_album_layout_description_padding"] = "0,0,10,0";
553
-
554
- $compact_album_layout_data["compact_album_layout_gallery_title_html_tag"] = "h3";
555
- $compact_album_layout_data["compact_album_layout_gallery_title_text_alignment"] = "left";
556
- $compact_album_layout_data["compact_album_layout_gallery_title_font_style"] = "14,#787D85";
557
- $compact_album_layout_data["compact_album_layout_gallery_title_line_height"] = "1.7em";
558
- $compact_album_layout_data["compact_album_layout_gallery_title_font_family"] = "Roboto Slab:700";
559
- $compact_album_layout_data["compact_album_layout_gallery_title_margin"] = "0,5,0,5";
560
- $compact_album_layout_data["compact_album_layout_gallery_title_padding"] = "10,10,10,10";
561
-
562
- $compact_album_layout_data["compact_album_layout_gallery_description_html_tag"] = "p";
563
- $compact_album_layout_data["compact_album_layout_gallery_description_text_alignment"] = "left";
564
- $compact_album_layout_data["compact_album_layout_gallery_description_font_style"] = "12,#787D85";
565
- $compact_album_layout_data["compact_album_layout_gallery_description_line_height"] = "1.7em";
566
- $compact_album_layout_data["compact_album_layout_gallery_description_font_family"] = "Roboto Slab:300";
567
- $compact_album_layout_data["compact_album_layout_gallery_description_margin"] = "0,5,0,5";
568
- $compact_album_layout_data["compact_album_layout_gallery_description_padding"] = "5,10,10,10";
569
-
570
- $compact_album_layout_data["compact_album_layout_button_text"] = "Back To Album";
571
- $compact_album_layout_data["compact_album_layout_button_color"] = "#a4cd39";
572
- $compact_album_layout_data["compact_album_layout_button_hover_color"] = "#a4cd39";
573
- $compact_album_layout_data["compact_album_layout_button_font_style"] = "14,#ffffff";
574
- $compact_album_layout_data["compact_album_layout_button_font_hover_color"] = "#ffffff";
575
- $compact_album_layout_data["compact_album_layout_button_text_alignment"] = "left";
576
- $compact_album_layout_data["compact_album_layout_button_border_style"] = "0,none,#a4cd39";
577
- $compact_album_layout_data["compact_album_layout_button_border_hover_color"] = "#a4cd39";
578
- $compact_album_layout_data["compact_album_layout_button_border_radius"] = "4";
579
- $compact_album_layout_data["compact_album_layout_button_text_font_family"] = "Roboto Slab:700";
580
- $compact_album_layout_data["compact_album_layout_button_margin"] = "10,0,0,0";
581
- $compact_album_layout_data["compact_album_layout_button_padding"] = "8,12,8,12";
582
-
583
-
584
- $compact_album_data_serialize = array();
585
- $compact_album_data_serialize["meta_id"] = $row->id;
586
- $compact_album_data_serialize["old_gallery_id"] = $row->id;
587
- $compact_album_data_serialize["meta_key"] = "compact_album_layout_settings";
588
- $compact_album_data_serialize["meta_value"] = serialize($compact_album_layout_data);
589
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $compact_album_data_serialize);
590
-
591
- $extended_album_layout_data = array();
592
- $extended_album_layout_data["extended_album_layout_cover_margin"] = "10,10,10,10";
593
- $extended_album_layout_data["extended_album_layout_cover_padding"] = "0,0,0,0";
594
- $extended_album_layout_data["extended_album_layout_cover_border_style"] = "0,none,#000000";
595
- $extended_album_layout_data["extended_album_layout_cover_border_radius"] = "0";
596
- $extended_album_layout_data["extended_album_layout_cover_shadow"] = "0,0,0,0";
597
- $extended_album_layout_data["extended_album_layout_cover_shadow_color"] = "#000000";
598
- $extended_album_layout_data["extended_album_layout_cover_hover_effect_value"] = "none,0,0,0";
599
- $extended_album_layout_data["extended_album_layout_cover_transition_time"] = "1";
600
- $extended_album_layout_data["extended_album_layout_cover_background_color_transparency"] = "#ebe8eb,50";
601
- $extended_album_layout_data["extended_album_layout_cover_thumbnail_opacity"] = "100";
602
- $extended_album_layout_data["extended_album_layout_cover_thumbnail_dimensions"] = "250,200";
603
-
604
- $extended_album_layout_data["extended_album_layout_title_html_tag"] = "h2";
605
- $extended_album_layout_data["extended_album_layout_title_text_alignment"] = "left";
606
- $extended_album_layout_data["extended_album_layout_title_font_style"] = "20,#000000";
607
- $extended_album_layout_data["extended_album_layout_title_line_height"] = "1.7em";
608
- $extended_album_layout_data["extended_album_layout_title_font_family"] = "Roboto Slab:700";
609
- $extended_album_layout_data["extended_album_layout_title_margin"] = "10,0,10,0";
610
- $extended_album_layout_data["extended_album_layout_title_padding"] = "10,0,10,0";
611
-
612
- $extended_album_layout_data["extended_album_layout_description_html_tag"] = "h3";
613
- $extended_album_layout_data["extended_album_layout_description_text_alignment"] = "left";
614
- $extended_album_layout_data["extended_album_layout_description_font_style"] = "16,#787D85";
615
- $extended_album_layout_data["extended_album_layout_description_line_height"] = "1.7em";
616
- $extended_album_layout_data["extended_album_layout_description_font_family"] = "Roboto Slab:300";
617
- $extended_album_layout_data["extended_album_layout_description_margin"] = "10,0,10,0";
618
- $extended_album_layout_data["extended_album_layout_description_padding"] = "0,0,10,0";
619
-
620
- $extended_album_layout_data["extended_album_layout_gallery_title_html_tag"] = "h3";
621
- $extended_album_layout_data["extended_album_layout_gallery_title_text_alignment"] = "left";
622
- $extended_album_layout_data["extended_album_layout_gallery_title_font_style"] = "16,#000000";
623
- $extended_album_layout_data["extended_album_layout_gallery_title_line_height"] = "1.7em";
624
- $extended_album_layout_data["extended_album_layout_gallery_title_font_family"] = "Roboto Slab:700";
625
- $extended_album_layout_data["extended_album_layout_gallery_title_margin"] = "0,5,0,5";
626
- $extended_album_layout_data["extended_album_layout_gallery_title_padding"] = "10,10,10,10";
627
-
628
- $extended_album_layout_data["extended_album_layout_gallery_description_html_tag"] = "p";
629
- $extended_album_layout_data["extended_album_layout_gallery_description_text_alignment"] = "left";
630
- $extended_album_layout_data["extended_album_layout_gallery_description_font_style"] = "12,#787D85";
631
- $extended_album_layout_data["extended_album_layout_gallery_description_line_height"] = "1.7em";
632
- $extended_album_layout_data["extended_album_layout_gallery_description_font_family"] = "Roboto Slab:300";
633
- $extended_album_layout_data["extended_album_layout_gallery_description_margin"] = "0,5,0,5";
634
- $extended_album_layout_data["extended_album_layout_gallery_description_padding"] = "5,10,10,10";
635
-
636
- $extended_album_layout_data["extended_album_layout_button_text"] = "Back To Album";
637
- $extended_album_layout_data["extended_album_layout_button_color"] = "#a4cd39";
638
- $extended_album_layout_data["extended_album_layout_button_hover_color"] = "#a4cd39";
639
- $extended_album_layout_data["extended_album_layout_button_font_style"] = "14,#ffffff";
640
- $extended_album_layout_data["extended_album_layout_button_font_hover_color"] = "#ffffff";
641
- $extended_album_layout_data["extended_album_layout_button_text_alignment"] = "left";
642
- $extended_album_layout_data["extended_album_layout_button_border_style"] = "0,none,#a4cd39";
643
- $extended_album_layout_data["extended_album_layout_button_border_hover_color"] = "#a4cd39";
644
- $extended_album_layout_data["extended_album_layout_button_border_radius"] = "4";
645
- $extended_album_layout_data["extended_album_layout_button_text_font_family"] = "Roboto Slab:700";
646
- $extended_album_layout_data["extended_album_layout_button_margin"] = "10,0,0,0";
647
- $extended_album_layout_data["extended_album_layout_button_padding"] = "8,12,8,12";
648
-
649
- $extended_album_data_serialize = array();
650
- $extended_album_data_serialize["meta_id"] = $row->id;
651
- $extended_album_data_serialize["old_gallery_id"] = $row->id;
652
- $extended_album_data_serialize["meta_key"] = "extended_album_layout_settings";
653
- $extended_album_data_serialize["meta_value"] = serialize($extended_album_layout_data);
654
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $extended_album_data_serialize);
655
-
656
- $custom_css_data = array();
657
- $custom_css_data["custom_css"] = "";
658
-
659
- $custom_css_data_serialize = array();
660
- $custom_css_data_serialize["meta_id"] = $row->id;
661
- $custom_css_data_serialize["old_gallery_id"] = $row->id;
662
- $custom_css_data_serialize["meta_key"] = "custom_css";
663
- $custom_css_data_serialize["meta_value"] = serialize($custom_css_data);
664
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $custom_css_data_serialize);
665
- break;
666
-
667
- case "lightboxes_settings":
668
- $fancy_box_setting = array();
669
- $fancy_box_setting["fancy_box_margin"] = "100";
670
- $fancy_box_setting["fancy_box_padding"] = "20";
671
- $fancy_box_setting["fancy_box_open_effect"] = "fade";
672
- $fancy_box_setting["fancy_box_close_effect"] = "fade";
673
- $fancy_box_setting["fancy_box_open_speed"] = "300";
674
- $fancy_box_setting["fancy_box_close_speed"] = "300";
675
- $fancy_box_setting["fancy_box_overlay_color"] = "#000000";
676
- $fancy_box_setting["fancy_box_overlay_opacity"] = "75";
677
- $fancy_box_setting["fancy_box_border_style"] = "2,solid,#cccccc";
678
- $fancy_box_setting["fancy_box_border_radius"] = "2";
679
- $fancy_box_setting["fancy_box_background_color"] = "#ffffff";
680
- $fancy_box_setting["fancy_box_background_opacity"] = "100";
681
- $fancy_box_setting["fancy_box_title"] = "true";
682
- $fancy_box_setting["fancy_box_title_font_style"] = "14,#000000";
683
- $fancy_box_setting["fancy_box_title_font_family"] = "Roboto Slab:700";
684
- $fancy_box_setting["fancy_box_description"] = "true";
685
- $fancy_box_setting["fancy_box_description_font_style"] = "12,#000000";
686
- $fancy_box_setting["fancy_box_description_font_family"] = "Roboto Slab:300";
687
- $fancy_box_setting["fancy_box_cyclic"] = "false";
688
- $fancy_box_setting["fancy_box_arrows"] = "true";
689
- $fancy_box_setting["fancy_box_mouse_wheel"] = "true";
690
- $fancy_box_setting["fancy_box_button_position"] = "bottom";
691
- $fancy_box_setting["fancy_box_enable_escape_button"] = "false";
692
- $fancy_box_setting["fancy_box_title_position"] = "inside";
693
- $fancy_box_setting["fancy_box_show_close_button"] = "true";
694
- $fancy_box_setting["fancy_box_change_speed"] = "3000";
695
- $fancy_box_setting["fancy_box_title_html_tag"] = "h2";
696
- $fancy_box_setting["fancy_box_title_text_alignment"] = "left";
697
- $fancy_box_setting["fancy_box_title_margin"] = "5,0,5,0";
698
- $fancy_box_setting["fancy_box_title_padding"] = "0,0,0,0";
699
- $fancy_box_setting["fancy_box_description_html_tag"] = "h3";
700
- $fancy_box_setting["fancy_box_description_text_alignment"] = "left";
701
- $fancy_box_setting["fancy_box_description_margin"] = "5,0,5,0";
702
- $fancy_box_setting["fancy_box_description_padding"] = "0,0,0,0";
703
-
704
- $fancy_box_data_serialize = array();
705
- $fancy_box_data_serialize["meta_id"] = $row->id;
706
- $fancy_box_data_serialize["old_gallery_id"] = $row->id;
707
- $fancy_box_data_serialize["meta_key"] = "fancy_box_settings";
708
- $fancy_box_data_serialize["meta_value"] = serialize($fancy_box_setting);
709
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $fancy_box_data_serialize);
710
-
711
- $color_box_settings = array();
712
- $color_box_settings["lightbox_color_box_type"] = "type1";
713
- $color_box_settings["lightbox_color_box_transition_effect"] = "elastic";
714
- $color_box_settings["lightbox_color_box_transition_speed"] = "350";
715
- $color_box_settings["lightbox_color_box_fadeout"] = "300";
716
- $color_box_settings["lightbox_color_box_opacity"] = "75";
717
- $color_box_settings["lightbox_color_box_title"] = "true";
718
-
719
- $color_box_settings["lightbox_color_box_title_html_tag"] = "h2";
720
- $color_box_settings["lightbox_color_box_title_text_alignment"] = "left";
721
- $color_box_settings["lightbox_color_box_title_font_style"] = "16,#ffffff";
722
- $color_box_settings["lightbox_color_box_title_font_family"] = "Roboto Slab:700";
723
- $color_box_settings["lightbox_color_box_title_margin"] = "5,0,5,0";
724
- $color_box_settings["lightbox_color_box_title_padding"] = "0,0,0,10";
725
-
726
- $color_box_settings["lightbox_color_box_description"] = "true";
727
- $color_box_settings["lightbox_color_box_description_html_tag"] = "h3";
728
- $color_box_settings["lightbox_color_box_description_text_alignment"] = "left";
729
- $color_box_settings["lightbox_color_box_description_font_style"] = "14,#ffffff";
730
- $color_box_settings["lightbox_color_box_description_font_family"] = "Roboto Slab:300";
731
- $color_box_settings["lightbox_color_box_description_margin"] = "5,0,5,0";
732
- $color_box_settings["lightbox_color_box_description_padding"] = "0,0,0,10";
733
-
734
- $color_box_settings["lightbox_color_box_open_page_load"] = "false";
735
- $color_box_settings["lightbox_color_box_show_close_button"] = "true";
736
- $color_box_settings["lightbox_color_box_sideshow"] = "true";
737
- $color_box_settings["lightbox_color_box_slideshow_speed"] = "10000";
738
- $color_box_settings["lightbox_color_box_auto_slideshow"] = "true";
739
- $color_box_settings["lightbox_color_box_fixed_position"] = "false";
740
- $color_box_settings["lightbox_color_box_postioning"] = "reposition";
741
- $color_box_settings["lightbox_color_box_postioning_value"] = "50";
742
- $color_box_settings["lightbox_color_box_background"] = "#000000";
743
-
744
- $color_box_setting_serialize = array();
745
- $color_box_setting_serialize["meta_id"] = $row->id;
746
- $color_box_setting_serialize["old_gallery_id"] = $row->id;
747
- $color_box_setting_serialize["meta_key"] = "color_box_settings";
748
- $color_box_setting_serialize["meta_value"] = serialize($color_box_settings);
749
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $color_box_setting_serialize);
750
-
751
- $foo_box_settings = array();
752
- $foo_box_settings["foo_box_overlay_color"] = "#000000";
753
- $foo_box_settings["foo_box_overlay_opacity"] = "75";
754
- $foo_box_settings["foo_box_border_style"] = "5,solid,#ffffff";
755
- $foo_box_settings["foo_box_border_radius"] = "5";
756
-
757
- $foo_box_settings["foo_box_image_title_html_tag"] = "h2";
758
- $foo_box_settings["foo_box_image_title_text_alignment"] = "left";
759
- $foo_box_settings["foo_box_title"] = "true";
760
- $foo_box_settings["foo_box_title_font_style"] = "16,#ffffff";
761
- $foo_box_settings["foo_box_title_font_family"] = "Roboto Slab:700";
762
- $foo_box_settings["foo_box_image_title_margin"] = "5,0,5,0";
763
- $foo_box_settings["foo_box_image_title_padding"] = "0,0,0,0";
764
-
765
- $foo_box_settings["foo_box_image_description_html_tag"] = "h3";
766
- $foo_box_settings["foo_box_image_description_text_alignment"] = "left";
767
- $foo_box_settings["foo_box_description"] = "true";
768
- $foo_box_settings["foo_box_description_font_style"] = "14,#ffffff";
769
- $foo_box_settings["foo_box_description_font_family"] = "Roboto Slab:300";
770
- $foo_box_settings["foo_box_image_description_margin"] = "5,0,5,0";
771
- $foo_box_settings["foo_box_image_description_padding"] = "0,0,0,0";
772
-
773
- $foo_box_settings["foo_box_show_count"] = "true";
774
- $foo_box_settings["foo_box_close_overlay_click"] = "false";
775
- $foo_box_settings["foo_box_hide_page_scrollbar"] = "false";
776
- $foo_box_settings["foo_box_show_on_hover"] = "false";
777
-
778
- $foo_box_settings_serialize = array();
779
- $foo_box_settings_serialize["meta_id"] = $row->id;
780
- $foo_box_settings_serialize["old_gallery_id"] = $row->id;
781
- $foo_box_settings_serialize["meta_key"] = "foo_box_settings";
782
- $foo_box_settings_serialize["meta_value"] = serialize($foo_box_settings);
783
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $foo_box_settings_serialize);
784
-
785
- $nivo_lightbox_settings = array();
786
- $nivo_lightbox_settings["lightbox_nivo_choose_effect"] = "fade";
787
- $nivo_lightbox_settings["lightbox_nivo_keyboard_navigation"] = "false";
788
- $nivo_lightbox_settings["lightbox_nivo_click_image_to_close"] = "true";
789
- $nivo_lightbox_settings["lightbox_nivo_click_overlay_to_close"] = "true";
790
- $nivo_lightbox_settings["lightbox_nivo_overlay_color"] = "#000000";
791
- $nivo_lightbox_settings["lightbox_nivo_overlay_opacity"] = "75";
792
- $nivo_lightbox_settings["lightbox_nivo_border_style"] = "5,solid,#ffffff";
793
- $nivo_lightbox_settings["lightbox_nivo_border_radius"] = "5";
794
- $nivo_lightbox_settings["lightbox_nivo_title"] = "true";
795
-
796
- $nivo_lightbox_settings["lightbox_nivo_title_html_tag"] = "h2";
797
- $nivo_lightbox_settings["lightbox_nivo_title_text_alignment"] = "center";
798
- $nivo_lightbox_settings["lightbox_nivo_title_font_style"] = "16,#ffffff";
799
- $nivo_lightbox_settings["lightbox_nivo_title_font_family"] = "Roboto Slab:700";
800
- $nivo_lightbox_settings["lightbox_nivo_title_margin"] = "10,0,0,0";
801
- $nivo_lightbox_settings["lightbox_nivo_title_padding"] = "10,10,0,10";
802
-
803
- $nivo_lightbox_settings["lightbox_nivo_description"] = "true";
804
- $nivo_lightbox_settings["lightbox_nivo_description_html_tag"] = "h3";
805
- $nivo_lightbox_settings["lightbox_nivo_description_text_alignment"] = "center";
806
- $nivo_lightbox_settings["lightbox_nivo_description_font_style"] = "14,#ffffff";
807
- $nivo_lightbox_settings["lightbox_nivo_description_font_family"] = "Roboto Slab:300";
808
- $nivo_lightbox_settings["lightbox_nivo_description_margin"] = "0,0,0,0";
809
- $nivo_lightbox_settings["lightbox_nivo_description_padding"] = "0,10,10,10";
810
-
811
- $nivo_lightbox_serialize = array();
812
- $nivo_lightbox_serialize["meta_id"] = $row->id;
813
- $nivo_lightbox_serialize["old_gallery_id"] = $row->id;
814
- $nivo_lightbox_serialize["meta_key"] = "nivo_lightbox_settings";
815
- $nivo_lightbox_serialize["meta_value"] = serialize($nivo_lightbox_settings);
816
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $nivo_lightbox_serialize);
817
-
818
- $lightcase_settings = array();
819
- $lightcase_settings["lightcase_image_transition"] = "fade";
820
- $lightcase_settings["lightcase_animation_speed_starting_transition"] = 350;
821
- $lightcase_settings["lightcase_animation_speed_ending_transition"] = 250;
822
- $lightcase_settings["lightcase_onoverlay_color"] = "#000000";
823
- $lightcase_settings["lightcase_onoverlay_opacity"] = 75;
824
- $lightcase_settings["lightcase_button_font_style"] = "30,#ffffff";
825
- $lightcase_settings["lightcase_close_button"] = "show";
826
- $lightcase_settings["lightcase_image_counter"] = "show";
827
- $lightcase_settings["lightcase_counter_font_style"] = "10,#ffffff";
828
- $lightcase_settings["lightcase_counter_font_family"] = "Roboto Slab:700";
829
- $lightcase_settings["lightcase_border"] = "0,none,#ffffff";
830
- $lightcase_settings["lightcase_border_radius"] = 0;
831
- $lightcase_settings["lightcase_autoplay_slideshow"] = "true";
832
- $lightcase_settings["lightcase_slideshow_interval"] = "10";
833
-
834
- $lightcase_settings["lightcase_image_title_html_tag"] = "h2";
835
- $lightcase_settings["lightcase_image_title_text_alignment"] = "left";
836
- $lightcase_settings["lightcase_image_title_font_style"] = "16,#ffffff";
837
- $lightcase_settings["lightcase_image_title_font_family"] = "Roboto Slab:700";
838
- $lightcase_settings["lightcase_image_title_margin"] = "5,0,5,0";
839
- $lightcase_settings["lightcase_image_title_padding"] = "0,0,0,0";
840
- $lightcase_settings["lightcase_image_title"] = "true";
841
- $lightcase_settings["lightcase_image_description"] = "true";
842
-
843
- $lightcase_settings["lightcase_image_description_html_tag"] = "h3";
844
- $lightcase_settings["lightcase_image_description_text_alignment"] = "left";
845
- $lightcase_settings["lightcase_image_description_font_style"] = "14,#ffffff";
846
- $lightcase_settings["lightcase_image_description_font_family"] = "Roboto Slab:300";
847
- $lightcase_settings["lightcase_image_description_margin"] = "5,0,5,0";
848
- $lightcase_settings["lightcase_image_description_padding"] = "0,0,0,0";
849
-
850
- $lightcase_settings_serialize = array();
851
- $lightcase_settings_serialize["meta_id"] = $row->id;
852
- $lightcase_settings_serialize["old_gallery_id"] = $row->id;
853
- $lightcase_settings_serialize["meta_key"] = "lightcase_settings";
854
- $lightcase_settings_serialize["meta_value"] = serialize($lightcase_settings);
855
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $lightcase_settings_serialize);
856
- break;
857
-
858
- case "general_settings":
859
-
860
- $global_options = array();
861
- $global_options["global_options_generated_image_dimensions"] = "1600,900";
862
- $global_options["global_options_thumbnail_dimensions"] = "250,200";
863
- $global_options["global_options_language_direction"] = "left_to_right";
864
- $global_options["global_options_right_click_protection"] = "disable";
865
-
866
- $global_options_serialize = array();
867
- $global_options_serialize["meta_id"] = $row->id;
868
- $global_options_serialize["old_gallery_id"] = $row->id;
869
- $global_options_serialize["meta_key"] = "global_options_settings";
870
- $global_options_serialize["meta_value"] = serialize($global_options);
871
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $global_options_serialize);
872
-
873
- $lazyload_settings = array();
874
- $lazyload_settings["loader_text"] = "show";
875
- $lazyload_settings["lazy_loader_title"] = "Loading. Please Wait...";
876
- $lazyload_settings["lazy_loader_background_color"] = "#ffffff";
877
- $lazyload_settings["lazy_loader_color"] = "#080808";
878
- $lazyload_settings["lazy_loader_font_style"] = "15,#000000";
879
- $lazyload_settings["loader_font_family"] = "Roboto Slab:700";
880
-
881
- $lazyload_settings_serialize = array();
882
- $lazyload_settings_serialize["meta_id"] = $row->id;
883
- $lazyload_settings_serialize["old_gallery_id"] = $row->id;
884
- $lazyload_settings_serialize["meta_key"] = "lazy_load_settings";
885
- $lazyload_settings_serialize["meta_value"] = serialize($lazyload_settings);
886
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $lazyload_settings_serialize);
887
-
888
- $searchbox_settings = array();
889
- $searchbox_settings["search_box_font_style"] = "14,#000000";
890
- $searchbox_settings["search_box_font_family"] = "Roboto Slab:700";
891
- $searchbox_settings["search_box_placeholder_text"] = "Search ...";
892
- $searchbox_settings["search_box_background_color_and_background_transparency"] = ",100";
893
- $searchbox_settings["search_box_border_style"] = "2,solid,#9e9e9e";
894
- $searchbox_settings["search_box_border_radius"] = "0";
895
- $searchbox_settings["search_box_margin"] = "0,5,20,0";
896
- $searchbox_settings["search_box_padding"] = "5,10,5,10";
897
-
898
- $searchbox_settings_serialize = array();
899
- $searchbox_settings_serialize["meta_id"] = $row->id;
900
- $searchbox_settings_serialize["old_gallery_id"] = $row->id;
901
- $searchbox_settings_serialize["meta_key"] = "search_box_settings";
902
- $searchbox_settings_serialize["meta_value"] = serialize($searchbox_settings);
903
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $searchbox_settings_serialize);
904
-
905
- $orderby_settings = array();
906
- $orderby_settings["order_by_font_style"] = "14,#000000";
907
- $orderby_settings["order_by_font_family"] = "Roboto Slab:700";
908
- $orderby_settings["order_by_background_color_and_background_transparency"] = ",100";
909
- $orderby_settings["order_by_background_hover_color"] = "";
910
- $orderby_settings["order_by_active_font_color"] = "#2fbfc1";
911
- $orderby_settings["order_by_active_font_hover_color"] = "#2fbfc1";
912
- $orderby_settings["order_by_border_style"] = "2,solid,#9e9e9e";
913
- $orderby_settings["order_by_border_radius"] = "0";
914
- $orderby_settings["order_by_border_hover_color"] = "#2fbfc1";
915
- $orderby_settings["order_by_margin"] = "0,5,20,0";
916
- $orderby_settings["order_by_padding"] = "5,10,5,10";
917
-
918
- $orderby_settings_serialize = array();
919
- $orderby_settings_serialize["meta_id"] = $row->id;
920
- $orderby_settings_serialize["old_gallery_id"] = $row->id;
921
- $orderby_settings_serialize["meta_key"] = "order_by_settings";
922
- $orderby_settings_serialize["meta_value"] = serialize($orderby_settings);
923
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $orderby_settings_serialize);
924
-
925
- $filter_settings = array();
926
- $filter_settings["filters_font_style"] = "14,#000000";
927
- $filter_settings["filters_font_family"] = "Roboto Slab:700";
928
- $filter_settings["filters_margin"] = "0,5,20,0";
929
- $filter_settings["filters_padding"] = "5,10,5,10";
930
- $filter_settings["filters_background_color_and_background_transparency"] = ",100";
931
- $filter_settings["filters_background_hover_color"] = "";
932
- $filter_settings["filters_border_style"] = "2,solid,#9e9e9e";
933
- $filter_settings["filters_border_radius"] = "0";
934
- $filter_settings["filters_border_hover_color"] = "#2fbfc1";
935
- $filter_settings["filters_active_font_color"] = "#2fbfc1";
936
- $filter_settings["filters_active_font_hover_color"] = "#2fbfc1";
937
-
938
- $filter_settings_serialize = array();
939
- $filter_settings_serialize["meta_id"] = $row->id;
940
- $filter_settings_serialize["old_gallery_id"] = $row->id;
941
- $filter_settings_serialize["meta_key"] = "filter_settings";
942
- $filter_settings_serialize["meta_value"] = serialize($filter_settings);
943
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $filter_settings_serialize);
944
-
945
- $page_navigation = array();
946
- $page_navigation["page_navigation_margin"] = "20,2,20,2";
947
- $page_navigation["page_navigation_padding"] = "5,10,5,10";
948
- $page_navigation["page_navigation_border_style"] = "1,solid,#000000";
949
- $page_navigation["page_navigation_border_radius"] = "0";
950
- $page_navigation["page_navigation_alignment"] = "center";
951
- $page_navigation["page_navigation_position"] = "bottom";
952
- $page_navigation["page_navigation_numbering"] = "yes";
953
- $page_navigation["page_navigation_button_text"] = "text";
954
- $page_navigation["page_navigation_font_style"] = "14,#ffffff";
955
- $page_navigation["page_navigation_font_family"] = "Roboto Slab:700";
956
- $page_navigation["page_navigation_background_color"] = "#000000";
957
- $page_navigation["page_navigation_background_transparency"] = "100";
958
-
959
- $page_navigation_serialize = array();
960
- $page_navigation_serialize["meta_id"] = $row->id;
961
- $page_navigation_serialize["old_gallery_id"] = $row->id;
962
- $page_navigation_serialize["meta_key"] = "page_navigation_settings";
963
- $page_navigation_serialize["meta_value"] = serialize($page_navigation);
964
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $page_navigation_serialize);
965
-
966
- $watermark_settings = array();
967
- $watermark_settings["watermark_settings_type"] = "none";
968
- $watermark_settings["watermark_settings_text"] = "";
969
- $watermark_settings["watermark_settings_font_style"] = "20,#cccccc";
970
- $watermark_settings["watermark_settings_position"] = "top_left";
971
- $watermark_settings["watermark_settings_url"] = "";
972
- $watermark_settings["watermark_settings_size"] = "";
973
- $watermark_settings["watermark_setting_angle"] = "0";
974
- $watermark_settings["watermark_setting_offset"] = "0,0";
975
- $watermark_settings["watermark_setting_opacity"] = "100";
976
-
977
- $watermark_settings_serialize = array();
978
- $watermark_settings_serialize["meta_id"] = $row->id;
979
- $watermark_settings_serialize["old_gallery_id"] = $row->id;
980
- $watermark_settings_serialize["meta_key"] = "watermark_settings";
981
- $watermark_settings_serialize["meta_value"] = serialize($watermark_settings);
982
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $watermark_settings_serialize);
983
-
984
- $advertisement = array();
985
- $advertisement["advertisement_type"] = "none";
986
- $advertisement["advertisement_text"] = "";
987
- $advertisement["advertisement_link"] = "";
988
- $advertisement["advertisement_font_style"] = "20,#cccccc";
989
- $advertisement["advertisement_text_angle"] = "";
990
- $advertisement["advertisement_font_family"] = "Roboto Slab:300";
991
- $advertisement["advertisement_position"] = "top_left";
992
- $advertisement["advertisement_url"] = "";
993
- $advertisement["advertisement_width"] = "100";
994
- $advertisement["advertisement_height"] = "100";
995
- $advertisement["advertisement_opacity"] = "100";
996
-
997
- $advertisement_serialize = array();
998
- $advertisement_serialize["meta_id"] = $row->id;
999
- $advertisement_serialize["old_gallery_id"] = $row->id;
1000
- $advertisement_serialize["meta_key"] = "advertisement_settings";
1001
- $advertisement_serialize["meta_value"] = serialize($advertisement);
1002
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $advertisement_serialize);
1003
- break;
1004
-
1005
- case "roles_and_capabilities_settings":
1006
- $roles_data = array();
1007
- $roles_data["roles_and_capabilities"] = "1,1,1,0,0,0";
1008
- $roles_data["show_gallery_bank_top_bar_menu"] = "enable";
1009
- $roles_data["others_full_control_capability"] = "0";
1010
- $roles_data["administrator_privileges"] = "1,1,1,1,1,1,1,1,1,1,1,1";
1011
- $roles_data["author_privileges"] = "0,1,1,0,0,0,1,0,0,0,1,0";
1012
- $roles_data["editor_privileges"] = "0,0,0,0,0,0,1,0,1,0,0,0";
1013
- $roles_data["contributor_privileges"] = "0,0,0,1,0,0,1,0,0,0,0,0";
1014
- $roles_data["subscriber_privileges"] = "0,0,0,0,0,0,0,0,0,0,0,0";
1015
- $roles_data["other_privileges"] = "0,0,0,0,0,0,0,0,0,0,0,0";
1016
- $user_capabilities = get_others_capabilities_gallery_bank();
1017
- $other_roles_array = array();
1018
- $other_roles_access_array = array(
1019
- "manage_options",
1020
- "edit_plugins",
1021
- "edit_posts",
1022
- "publish_posts",
1023
- "publish_pages",
1024
- "edit_pages",
1025
- "read"
1026
- );
1027
- foreach ($other_roles_access_array as $role) {
1028
- if (in_array($role, $user_capabilities)) {
1029
- array_push($other_roles_array, $role);
1030
- }
1031
- }
1032
- $roles_data["capabilities"] = $other_roles_array;
1033
-
1034
- $roles_data_serialize = array();
1035
- $roles_data_serialize["meta_id"] = $row->id;
1036
- $roles_data_serialize["old_gallery_id"] = $row->id;
1037
- $roles_data_serialize["meta_key"] = "roles_and_capabilities_settings";
1038
- $roles_data_serialize["meta_value"] = serialize($roles_data);
1039
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $roles_data_serialize);
1040
- break;
1041
-
1042
- case "other_settings":
1043
- $other_settings = array();
1044
- $other_settings["remove_table_at_uninstall"] = "disable";
1045
- $other_settings["automatic_updates"] = "disable";
1046
-
1047
- $other_settings_serialize = array();
1048
- $other_settings_serialize["meta_id"] = $row->id;
1049
- $other_settings_serialize["old_gallery_id"] = $row->id;
1050
- $other_settings_serialize["meta_key"] = "other_settings";
1051
- $other_settings_serialize["meta_value"] = serialize($other_settings);
1052
- $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $other_settings_serialize);
1053
- break;
1054
- }
1055
- }
1056
- }
1057
-
1058
- }
1059
-
1060
- $obj_dbHelper_gallery_bank = new dbHelper_install_script_gallery_bank();
1061
- switch ($gallery_bank_version_number) {
1062
- case "":
1063
- table_gallery_bank();
1064
- table_gallery_bank_meta();
1065
-
1066
- global $wpdb, $current_user;
1067
- $count_gallery = $wpdb->get_var
1068
- (
1069
- $wpdb->prepare
1070
- (
1071
- "SELECT count(id) FROM " . gallery_bank_parent() . " WHERE " . gallery_bank_parent() . ". type = %s", "gallery"
1072
- )
1073
- );
1074
- if ($count_gallery == 0) {
1075
- $gallery_parent_id = get_parent_id_gallery_bank("galleries");
1076
- $insert_gallery = array();
1077
- $insert_gallery["type"] = "gallery";
1078
- $insert_gallery["parent_id"] = $gallery_parent_id;
1079
- $gallery_id = $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_parent(), $insert_gallery);
1080
-
1081
- $insert_gallery_meta = array();
1082
- $insert_gallery_meta["gallery_title"] = "Be happy for this moment. This moment is your life.";
1083
- $insert_gallery_meta["gallery_description"] = "<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</p>";
1084
- $insert_gallery_meta["created_date"] = time();
1085
- $insert_gallery_meta["edited_on"] = time();
1086
- $insert_gallery_meta["gallery_cover_image"] = "demo2.jpg";
1087
- $insert_gallery_meta["edited_by"] = $current_user->display_name;
1088
- $insert_gallery_meta["author"] = $current_user->display_name;
1089
-
1090
- $insert_gallery_data = array();
1091
- $insert_gallery_data["meta_id"] = $gallery_id;
1092
- $insert_gallery_data["meta_key"] = "gallery_data";
1093
- $insert_gallery_data["meta_value"] = serialize($insert_gallery_meta);
1094
- $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $insert_gallery_data);
1095
-
1096
-
1097
- $image_meta_data = array();
1098
-
1099
- $images = array("demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg", "demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg", "demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg", "demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg");
1100
- for ($flag = 0; $flag < count($images); $flag++) {
1101
- $image_name = $images[$flag];
1102
-
1103
- $image_data = get_thumbnail_dimension_gallery_bank();
1104
- $fileName = wp_unique_filename(GALLERY_BANK_ORIGINAL_DIR, $image_name);
1105
-
1106
- $src_file = GALLERY_BANK_PLUGIN_DIR_URL . "/assets/admin/images/" . $image_name;
1107
- copy($src_file, GALLERY_BANK_ORIGINAL_DIR . $fileName);
1108
- copy($src_file, GALLERY_BANK_UPLOAD_DIR . $fileName);
1109
-
1110
- $thumbnail_image_name = $obj_dbHelper_gallery_bank->createThumbs_gallery_bank($image_name, $image_data);
1111
- $image_exif_detail = $obj_dbHelper_gallery_bank->file_exif_information_gallery_bank(GALLERY_BANK_UPLOAD_DIR . $image_name, "FILE");
1112
-
1113
- $image_meta_data["image_title"] = "Demo Image";
1114
- $image_meta_data["image_name"] = $fileName;
1115
-
1116
- $image_meta_data["enable_redirect"] = "";
1117
- $image_meta_data["redirect_url"] = "http://";
1118
- if ($flag === 1) {
1119
- $image_meta_data["gallery_cover_image"] = "1";
1120
- } else {
1121
- $image_meta_data["gallery_cover_image"] = "";
1122
- }
1123
- $image_meta_data["width"] = intval($image_exif_detail["width"]);
1124
- $image_meta_data["height"] = intval($image_exif_detail["height"]);
1125
- $image_meta_data["mime_type"] = esc_attr($image_exif_detail["mime_type"]);
1126
- $image_meta_data["aperture"] = esc_attr($image_exif_detail["exif_information"]["aperture"]);
1127
- $image_meta_data["upload_type"] = "";
1128
-
1129
- $image_meta_data["image_description"] = "";
1130
- $image_meta_data["alt_text"] = "";
1131
- $image_meta_data["sort_order"] = "";
1132
- $image_meta_data["tags"] = array();
1133
- $image_meta_data["upload_date"] = time();
1134
- $image_meta_data["file_type"] = "image";
1135
- $image_meta_data["exclude_image"] = "";
1136
- $image_meta_data_insert = array();
1137
- $image_meta_data_insert["meta_id"] = $gallery_id;
1138
- $image_meta_data_insert["meta_key"] = "image_data";
1139
- $image_meta_data_insert["meta_value"] = serialize($image_meta_data);
1140
- $image_id = $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $image_meta_data_insert);
1141
- }
1142
- }
1143
- break;
1144
- default:
1145
- global $wpdb;
1146
- if (count($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "gallery_albums'")) != 0 && count($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "gallery_pics'")) != 0) {
1147
- table_gallery_bank();
1148
- table_gallery_bank_meta();
1149
- $get_albums_table_data = $wpdb->get_results
1150
- (
1151
- "SELECT * FROM " . $wpdb->prefix . "gallery_albums"
1152
- );
1153
- $get_albums_pics_table_data = $wpdb->get_results
1154
- (
1155
- "SELECT * FROM " . $wpdb->prefix . "gallery_pics"
1156
- );
1157
-
1158
- if (!function_exists("get_array_data_gallery_bank")) {
1159
- function get_array_data_gallery_bank($id, $array) {
1160
- $gallery_meta_data_unserialized_data = array();
1161
- foreach ($array as $key => $val) {
1162
- if ($val->album_id == $id) {
1163
- array_push($gallery_meta_data_unserialized_data, $val);
1164
- }
1165
- }
1166
- return $gallery_meta_data_unserialized_data;
1167
  }
1168
- }
1169
-
1170
- foreach ($get_albums_table_data as $value) {
1171
- // insert gallery data
1172
- $gallery_parent_id = get_parent_id_gallery_bank("galleries");
1173
- $insert_gallery = array();
1174
- $insert_gallery["type"] = "gallery";
1175
- $insert_gallery["parent_id"] = $gallery_parent_id;
1176
- $gallery_id = $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_parent(), $insert_gallery);
1177
-
1178
- $insert_gallery_meta = array();
1179
- $insert_gallery_meta["gallery_title"] = isset($value->album_name) ? $value->album_name : "";
1180
- $insert_gallery_meta["gallery_description"] = isset($value->description) ? $value->description : "";
1181
- $insert_gallery_meta["created_date"] = isset($value->album_date) ? strtotime($value->album_date) : 0;
1182
- $insert_gallery_meta["edited_on"] = time();
1183
- $insert_gallery_meta["gallery_cover_image"] = "";
1184
- $insert_gallery_meta["edited_by"] = isset($value->author) ? $value->author : "";
1185
- $insert_gallery_meta["author"] = isset($value->author) ? $value->author : "";
1186
-
1187
- $insert_gallery_data = array();
1188
- $insert_gallery_data["meta_id"] = $gallery_id;
1189
- $insert_gallery_data["old_gallery_id"] = $value->album_id;
1190
- $insert_gallery_data["meta_key"] = "gallery_data";
1191
- $insert_gallery_data["meta_value"] = serialize($insert_gallery_meta);
1192
- $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $insert_gallery_data);
1193
-
1194
- $album_data_values = array();
1195
-
1196
- $album_pics_data = get_array_data_gallery_bank($value->album_id, $get_albums_pics_table_data);
1197
- $gallery_cover_image = "";
1198
- foreach ($album_pics_data as $data) {
1199
- // insert pic data
1200
- $image_name = isset($data->thumbnail_url) ? $data->thumbnail_url : "";
1201
-
1202
- $image_data = get_thumbnail_dimension_gallery_bank();
1203
- $fileName = wp_unique_filename(GALLERY_BANK_ORIGINAL_DIR, $image_name);
1204
-
1205
- $src_file = GALLERY_BANK_MAIN_URL . "gallery-uploads/" . $image_name;
1206
- copy($src_file, GALLERY_BANK_ORIGINAL_DIR . $fileName);
1207
- copy($src_file, GALLERY_BANK_UPLOAD_DIR . $fileName);
1208
-
1209
- $thumbnail_image_name = $obj_dbHelper_gallery_bank->createThumbs_gallery_bank($image_name, $image_data);
1210
- $image_exif_detail = $obj_dbHelper_gallery_bank->file_exif_information_gallery_bank(GALLERY_BANK_UPLOAD_DIR . $image_name, "FILE");
1211
- if ($data->album_cover == 1) {
1212
- $gallery_cover_image = $fileName;
1213
- }
1214
- $image_meta_data["image_title"] = isset($data->title) ? $data->title : "";
1215
- $image_meta_data["image_name"] = $fileName;
1216
-
1217
- $image_meta_data["enable_redirect"] = "";
1218
- $image_meta_data["redirect_url"] = isset($data->url) ? $data->url : "http://";
1219
- $image_meta_data["gallery_cover_image"] = isset($data->album_cover) && $data->album_cover == 1 ? 1 : "";
1220
- $image_meta_data["width"] = intval($image_exif_detail["width"]);
1221
- $image_meta_data["height"] = intval($image_exif_detail["height"]);
1222
- $image_meta_data["mime_type"] = esc_attr($image_exif_detail["mime_type"]);
1223
- $image_meta_data["aperture"] = esc_attr($image_exif_detail["exif_information"]["aperture"]);
1224
- $image_meta_data["upload_type"] = "";
1225
-
1226
- $image_meta_data["image_description"] = isset($data->description) ? $data->description : "";
1227
- $image_meta_data["alt_text"] = "";
1228
- $image_meta_data["sort_order"] = isset($data->sorting_order) ? $data->sorting_order : "";
1229
- $image_meta_data["tags"] = array();
1230
- $image_meta_data["upload_date"] = isset($data->date) ? strtotime($data->date) : 0;
1231
- $image_meta_data["file_type"] = "image";
1232
- $image_meta_data["exclude_image"] = "";
1233
- $image_meta_data_insert = array();
1234
- $image_meta_data_insert["meta_id"] = $gallery_id;
1235
- $image_meta_data_insert["old_gallery_id"] = $data->album_id;
1236
- $image_meta_data_insert["meta_key"] = "image_data";
1237
- $image_meta_data_insert["meta_value"] = serialize($image_meta_data);
1238
- $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $image_meta_data_insert);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1239
  }
1240
- // update gallery data
1241
- $gallery_unserialized_data = $wpdb->get_var
1242
- (
1243
- $wpdb->prepare
1244
- (
1245
- "SELECT meta_value FROM " . gallery_bank_meta() . " WHERE meta_id = %d and meta_key = %s", $gallery_id, "gallery_data"
1246
- )
1247
- );
1248
- $gallery_serialized_data = maybe_unserialize($gallery_unserialized_data);
1249
- $gallery_serialized_data["gallery_cover_image"] = $gallery_cover_image;
1250
-
1251
- $where = array();
1252
- $update_gallery_data = array();
1253
- $where["meta_key"] = "gallery_data";
1254
- $where["meta_id"] = $gallery_id;
1255
- $update_gallery_data["meta_value"] = serialize($gallery_serialized_data);
1256
- $obj_dbHelper_gallery_bank->updateCommand(gallery_bank_meta(), $update_gallery_data, $where);
1257
- }
1258
- // Drop Tables
1259
- $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "gallery_albums");
1260
- $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "gallery_pics");
1261
- $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "gallery_settings");
1262
- }
1263
- break;
1264
- }
1265
- update_option("gallery-bank-pro-edition", "4.0");
1266
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1267
  }
1
  <?php
 
2
  /**
3
  * This file is used for creating table.
4
  *
7
  * @version 4.0.0
8
  */
9
  if (!defined("ABSPATH")) {
10
+ exit;
11
  } // Exit if accessed directly
12
  if (!is_user_logged_in()) {
13
+ return;
14
  } else {
15
+ if (!current_user_can("manage_options")) {
16
+ return;
17
+ } else {
18
+ /*
19
+ Class Name: dbHelper_install_script_gallery_bank
20
+ Parameter: No
21
+ Description: This Class is used for Insert,Update and Delete operations.
22
+ Created On: 01-06-2017 09:00
23
+ Created By: Tech Banker Team
24
+ */
25
+ if (!class_exists("dbHelper_install_script_gallery_bank")) {
26
+
27
+ class dbHelper_install_script_gallery_bank {
28
+ /*
29
+ Function Name: insertCommand
30
+ Parameter: Yes($table_name,$data)
31
+ Description: It is used for insert data in database.
32
+ Created On: 01-06-2017 09:00
33
+ Created By: Tech Banker Team
34
+ */
35
+ function insertCommand($table_name, $data) {
36
+ global $wpdb;
37
+ $wpdb->insert($table_name, $data);
38
+ return $wpdb->insert_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  }
40
+ /*
41
+ Function Name: updateCommand
42
+ Parameter: Yes($table_name,$data,$where)
43
+ Description: It is used for update data in database.
44
+ Created On: 01-06-2017 09:00
45
+ Created By: Tech Banker Team
46
+ */
47
+ function updateCommand($table_name, $data, $where) {
48
+ global $wpdb;
49
+ $wpdb->update($table_name, $data, $where);
 
 
 
 
 
 
 
 
 
 
 
50
  }
51
+ function createThumbs_gallery_bank($fname, $image_data) {
52
+ $fileName = wp_unique_filename(GALLERY_BANK_THUMBS_CROPPED_DIR, $fname);
53
+ if (function_exists("wp_get_image_editor")) {
54
+ $image_original = wp_get_image_editor(GALLERY_BANK_ORIGINAL_DIR . $fname);
55
+ $image_thumbnail_cropped = wp_get_image_editor(GALLERY_BANK_ORIGINAL_DIR . $fname);
56
+ $image_thumbnail_non_cropped = wp_get_image_editor(GALLERY_BANK_ORIGINAL_DIR . $fname);
57
+ if (!is_wp_error($image_original) || !is_wp_error($image_thumbnail_cropped) || !is_wp_error($image_thumbnail_non_cropped)) {
58
+ $image_original->resize($image_data[0], $image_data[1], false);
59
+ $image_original->save(GALLERY_BANK_ORIGINAL_DIR . $fileName);
60
+
61
+ $image_thumbnail_cropped->resize($image_data[2], $image_data[3], true);
62
+ $image_thumbnail_cropped->save(GALLERY_BANK_THUMBS_CROPPED_DIR . $fileName);
63
+
64
+ $image_thumbnail_non_cropped->resize($image_data[2], $image_data[3], false);
65
+ $image_thumbnail_non_cropped->save(GALLERY_BANK_THUMBS_NON_CROPPED_DIR . $fileName);
66
+ }
67
+ } else {
68
+ image_resize(GALLERY_BANK_ORIGINAL_DIR . $fname, $image_data[0], $image_data[1], false);
69
+ image_resize(GALLERY_BANK_THUMBS_CROPPED_DIR . $fname, $image_data[2], $image_data[3], true);
70
+ image_resize(GALLERY_BANK_THUMBS_NON_CROPPED_DIR . $fname, $image_data[2], $image_data[3], false);
71
+ }
72
+ return $fileName;
73
  }
74
+ function file_exif_information_gallery_bank($file) {
75
+ $meta_data_array = array();
76
+ $image_data = getimagesize($file);
77
+ $meta_data_array["width"] = $image_data[0];
78
+ $meta_data_array["height"] = $image_data[1];
79
+ if (preg_match("!^image/!", $image_data["mime"]) && file_is_displayable_image($file)) {
80
+ $meta_data_array["mime_type"] = $image_data["mime"];
81
+ $meta_data_array["file"] = _wp_relative_upload_path($file);
82
+ $meta_data_array["exif_information"] = wp_read_image_metadata($file);
83
+ }
84
+ return $meta_data_array;
85
+ }
86
+ }
87
+ }
88
+
89
+ if (!function_exists("get_thumbnail_dimension_gallery_bank")) {
90
+
91
+ function get_thumbnail_dimension_gallery_bank() {
92
+ global $wpdb;
93
+ $thumbnail_data = $wpdb->get_var
94
+ (
95
+ $wpdb->prepare
96
+ (
97
+ "SELECT meta_value FROM " . gallery_bank_meta() . "
98
+ WHERE " . gallery_bank_meta() . ".meta_key = %s", "global_options_settings"
99
+ )
100
+ );
101
+
102
+ $thumbnail_data_unserialize = maybe_unserialize($thumbnail_data);
103
+ $image_dimension = explode(",", $thumbnail_data_unserialize["global_options_generated_image_dimensions"]);
104
+ $thumbnail_dimensions = explode(",", $thumbnail_data_unserialize["global_options_thumbnail_dimensions"]);
105
+ $image_data = array_merge($image_dimension, $thumbnail_dimensions);
106
+ return $image_data;
107
+ }
108
+ }
109
+
110
+ if (!function_exists("get_parent_id_gallery_bank")) {
111
+
112
+ function get_parent_id_gallery_bank($type) {
113
+ global $wpdb;
114
+ $parent_id = $wpdb->get_var
115
+ (
116
+ $wpdb->prepare
117
+ (
118
+ "SELECT id FROM " . gallery_bank_parent() . " WHERE " . gallery_bank_parent() . ". type = %s", $type
119
+ )
120
+ );
121
+ return $parent_id;
122
+ }
123
+ }
124
+
125
+ require_once(ABSPATH . "wp-admin/includes/upgrade.php");
126
+ $gallery_bank_version_number = get_option("gallery-bank-pro-edition");
127
+
128
+ /*
129
+ Function Name: table_gallery_bank
130
+ Parameter: No
131
+ Description: It is used for creating a parent table.
132
+ Created On: 01-06-2017 09:00
133
+ Created By: Tech Banker Team
134
+ */
135
+
136
+ if (!function_exists("table_gallery_bank")) {
137
+
138
+ function table_gallery_bank() {
139
+ global $wpdb;
140
+ $obj_dbHelper_gallery_bank_parent = new dbHelper_install_script_gallery_bank();
141
+ $sql = "CREATE TABLE IF NOT EXISTS " . gallery_bank_parent() . "
142
  (
143
  `id` int(10) NOT NULL AUTO_INCREMENT,
144
  `type` longtext NOT NULL,
146
  PRIMARY KEY (`id`)
147
  )
148
  ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1";
149
+ dbDelta($sql);
150
 
151
+ $data = "INSERT INTO " . gallery_bank_parent() . " (`type`, `parent_id`) VALUES
152
  ('galleries', 0),
153
  ('albums',0),
154
  ('tags', 0),
157
  ('general_settings', 0),
158
  ('other_settings', 0),
159
  ('roles_and_capabilities_settings', 0)";
160
+ dbDelta($data);
161
+ }
162
+ }
163
+
164
+ /*
165
+ Function Name: table_gallery_bank_meta
166
+ Parameter: No
167
+ Description: It is used for creating a meta table.
168
+ Created On: 01-06-2017 09:00
169
+ Created By: Tech Banker Team
170
+ */
171
+
172
+ if (!function_exists("table_gallery_bank_meta")) {
173
+
174
+ function table_gallery_bank_meta() {
175
+ global $wpdb;
176
+ $obj_dbHelper_gallery_bank_meta_table = new dbHelper_install_script_gallery_bank();
177
+ $sql = "CREATE TABLE IF NOT EXISTS " . gallery_bank_meta() . "
 
178
  (
179
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
180
  `meta_id` int(10) NOT NULL,
184
  PRIMARY KEY (`id`)
185
  )
186
  ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1";
187
+ dbDelta($sql);
188
+
189
+ $parent_table_data = $wpdb->get_results
190
+ (
191
+ "SELECT id,type FROM " . gallery_bank_parent()
192
+ );
193
+
194
+ foreach ($parent_table_data as $row) {
195
+ switch ($row->type) {
196
+ case "layout_settings":
197
+ $thumbnail_layout_data = array();
198
+ $thumbnail_layout_data["thumbnail_layout_general_margin"] = "10,10,0,0";
199
+ $thumbnail_layout_data["thumbnail_layout_general_padding"] = "0,0,0,0";
200
+ $thumbnail_layout_data["thumbnail_layout_general_border_style"] = "0,none,#000000";
201
+ $thumbnail_layout_data["thumbnail_layout_general_border_radius"] = "0";
202
+ $thumbnail_layout_data["thumbnail_layout_general_shadow"] = "0,0,0,0";
203
+ $thumbnail_layout_data["thumbnail_layout_general_shadow_color"] = "#000000";
204
+ $thumbnail_layout_data["thumbnail_layout_general_hover_effect_value"] = "none,0,0,0";
205
+ $thumbnail_layout_data["thumbnail_layout_general_transition_time"] = "1";
206
+ $thumbnail_layout_data["thumbnail_layout_general_background_color_transparency"] = "#ebe8eb,50";
207
+ $thumbnail_layout_data["thumbnail_layout_general_thumbnail_opacity"] = "100";
208
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_dimensions"] = "250,200";
209
+ $thumbnail_layout_data["thumbnail_layout_container_width"] = "100";
210
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_position"] = "center,center";
211
+
212
+ $thumbnail_layout_data["thumbnail_layout_gallery_title_html_tag"] = "h2";
213
+ $thumbnail_layout_data["thumbnail_layout_gallery_title_text_alignment"] = "left";
214
+ $thumbnail_layout_data["thumbnail_layout_gallery_title_font_style"] = "20,#000000";
215
+ $thumbnail_layout_data["thumbnail_layout_gallery_title_line_height"] = "1.7em";
216
+ $thumbnail_layout_data["thumbnail_layout_gallery_title_font_family"] = "Roboto Slab:700";
217
+ $thumbnail_layout_data["thumbnail_layout_gallery_title_margin"] = "10,0,10,0";
218
+ $thumbnail_layout_data["thumbnail_layout_gallery_title_padding"] = "10,0,10,0";
219
+
220
+ $thumbnail_layout_data["thumbnail_layout_gallery_description_html_tag"] = "h3";
221
+ $thumbnail_layout_data["thumbnail_layout_gallery_description_text_alignment"] = "left";
222
+ $thumbnail_layout_data["thumbnail_layout_gallery_description_font_style"] = "16,#787D85";
223
+ $thumbnail_layout_data["thumbnail_layout_gallery_description_line_height"] = "1.7em";
224
+ $thumbnail_layout_data["thumbnail_layout_gallery_description_font_family"] = "Roboto Slab:300";
225
+ $thumbnail_layout_data["thumbnail_layout_gallery_description_margin"] = "10,0,10,0";
226
+ $thumbnail_layout_data["thumbnail_layout_gallery_description_padding"] = "0,0,10,0";
227
+
228
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_title_html_tag"] = "h3";
229
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_title_text_alignment"] = "left";
230
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_title_font_style"] = "14,#787D85";
231
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_title_line_height"] = "1.7em";
232
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
233
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_title_margin"] = "0,5,0,5";
234
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_title_padding"] = "10,10,10,10";
235
+
236
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_description_html_tag"] = "p";
237
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_description_text_alignment"] = "left";
238
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_description_font_style"] = "12,#787D85";
239
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_description_line_height"] = "1.7em";
240
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
241
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_description_margin"] = "0,5,0,5";
242
+ $thumbnail_layout_data["thumbnail_layout_thumbnail_description_padding"] = "5,10,10,5";
243
+ $thumbnail_layout_data_serialize = array();
244
+ $thumbnail_layout_data_serialize["meta_id"] = $row->id;
245
+ $thumbnail_layout_data_serialize["old_gallery_id"] = $row->id;
246
+ $thumbnail_layout_data_serialize["meta_key"] = "thumbnail_layout_settings";
247
+ $thumbnail_layout_data_serialize["meta_value"] = serialize($thumbnail_layout_data);
248
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $thumbnail_layout_data_serialize);
249
+
250
+ $masonry_layout_data = array();
251
+ $masonry_layout_data["masonry_layout_general_margin"] = "10,10,0,0";
252
+ $masonry_layout_data["masonry_layout_general_padding"] = "0,0,0,0";
253
+ $masonry_layout_data["masonry_layout_general_border_style"] = "0,solid,#cccccc";
254
+ $masonry_layout_data["masonry_layout_general_border_radius"] = "0";
255
+ $masonry_layout_data["masonry_layout_general_shadow"] = "0,0,0,0";
256
+ $masonry_layout_data["masonry_layout_general_shadow_color"] = "#000000";
257
+ $masonry_layout_data["masonry_layout_general_hover_effect_value"] = "none,0,0,0";
258
+ $masonry_layout_data["masonry_layout_general_transition_time"] = "1";
259
+ $masonry_layout_data["masonry_layout_general_background_color_transparency"] = "#ebe8eb,50";
260
+ $masonry_layout_data["masonry_layout_general_masonry_opacity"] = "100";
261
+ $masonry_layout_data["masonry_layout_general_thumbnail_width"] = "250";
262
+
263
+ $masonry_layout_data["masonry_layout_gallery_title_html_tag"] = "h2";
264
+ $masonry_layout_data["masonry_layout_gallery_title_text_alignment"] = "left";
265
+ $masonry_layout_data["masonry_layout_gallery_title_font_style"] = "20,#000000";
266
+ $masonry_layout_data["masonry_layout_gallery_title_line_height"] = "1.7em";
267
+ $masonry_layout_data["masonry_layout_gallery_title_font_family"] = "Roboto Slab:700";
268
+ $masonry_layout_data["masonry_layout_gallery_title_margin"] = "10,0,10,0";
269
+ $masonry_layout_data["masonry_layout_gallery_title_padding"] = "10,0,10,0";
270
+
271
+ $masonry_layout_data["masonry_layout_gallery_description_html_tag"] = "h3";
272
+ $masonry_layout_data["masonry_layout_gallery_description_text_alignment"] = "left";
273
+ $masonry_layout_data["masonry_layout_gallery_description_font_style"] = "16,#787D85";
274
+ $masonry_layout_data["masonry_layout_gallery_description_line_height"] = "1.7em";
275
+ $masonry_layout_data["masonry_layout_gallery_description_font_family"] = "Roboto Slab:300";
276
+ $masonry_layout_data["masonry_layout_gallery_description_margin"] = "10,0,10,0";
277
+ $masonry_layout_data["masonry_layout_gallery_description_padding"] = "0,0,10,0";
278
+
279
+ $masonry_layout_data["masonry_layout_thumbnail_title_html_tag"] = "h3";
280
+ $masonry_layout_data["masonry_layout_thumbnail_title_text_alignment"] = "left";
281
+ $masonry_layout_data["masonry_layout_thumbnail_title_font_style"] = "14,#787D85";
282
+ $masonry_layout_data["masonry_layout_thumbnail_title_line_height"] = "1.7em";
283
+ $masonry_layout_data["masonry_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
284
+ $masonry_layout_data["masonry_layout_thumbnail_title_margin"] = "0,5,0,5";
285
+ $masonry_layout_data["masonry_layout_thumbnail_title_padding"] = "10,10,10,10";
286
+
287
+ $masonry_layout_data["masonry_layout_thumbnail_description_html_tag"] = "p";
288
+ $masonry_layout_data["masonry_layout_thumbnail_description_text_alignment"] = "left";
289
+ $masonry_layout_data["masonry_layout_thumbnail_description_font_style"] = "12,#787D85";
290
+ $masonry_layout_data["masonry_layout_thumbnail_description_line_height"] = "1.7em";
291
+ $masonry_layout_data["masonry_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
292
+ $masonry_layout_data["masonry_layout_thumbnail_description_margin"] = "0,5,0,5";
293
+ $masonry_layout_data["masonry_layout_thumbnail_description_padding"] = "5,10,10,5";
294
+ $masonry_layout_data_serialize = array();
295
+ $masonry_layout_data_serialize["meta_id"] = $row->id;
296
+ $masonry_layout_data_serialize["old_gallery_id"] = $row->id;
297
+ $masonry_layout_data_serialize["meta_key"] = "masonry_layout_settings";
298
+ $masonry_layout_data_serialize["meta_value"] = serialize($masonry_layout_data);
299
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $masonry_layout_data_serialize);
300
+
301
+ $slideshow_layout_data = array();
302
+ $slideshow_layout_data["slideshow_layout_general_background_color"] = "#ebe8eb";
303
+ $slideshow_layout_data["slideshow_layout_general_border_style"] = "0,none,#cccccc";
304
+ $slideshow_layout_data["slideshow_layout_general_border_radius"] = "0";
305
+ $slideshow_layout_data["slideshow_layout_general_buttons_hover_color"] = "#105278";
306
+ $slideshow_layout_data["slideshow_layout_general_buttons_color"] = "#000000";
307
+ $slideshow_layout_data["slideshow_layout_general_buttons_border_style"] = "0,none,#cccccc";
308
+ $slideshow_layout_data["slideshow_layout_general_buttons_border_radius"] = "0";
309
+ $slideshow_layout_data["slideshow_layout_general_shadow"] = "0,0,0,0";
310
+ $slideshow_layout_data["slideshow_layout_general_shadow_color"] = "#000000";
311
+ $slideshow_layout_data["slideshow_layout_general_buttons_transparency"] = "75";
312
+ $slideshow_layout_data["slideshow_layout_general_filmstrip_margin"] = "5,5,5,0";
313
+ $slideshow_layout_data["slideshow_layout_general_filmstrip_padding"] = "5,5,5,0";
314
+ $slideshow_layout_data["slideshow_layout_general_filmstrip_border_style"] = "1,solid,#555";
315
+ $slideshow_layout_data["slideshow_layout_general_filmstrip_border_radius"] = "0";
316
+ $slideshow_layout_data["slideshow_layout_general_filmstrip_active_border_style"] = "2,solid,#fff";
317
+ $slideshow_layout_data["slideshow_layout_general_filmstrip_deactive_transparency"] = "75";
318
+
319
+ $slideshow_layout_data["slideshow_layout_gallery_title_html_tag"] = "h2";
320
+ $slideshow_layout_data["slideshow_layout_gallery_title_text_alignment"] = "left";
321
+ $slideshow_layout_data["slideshow_layout_gallery_title_font_style"] = "20,#000000";
322
+ $slideshow_layout_data["slideshow_layout_gallery_title_line_height"] = "1.7em";
323
+ $slideshow_layout_data["slideshow_layout_gallery_title_font_family"] = "Roboto Slab:700";
324
+ $slideshow_layout_data["slideshow_layout_gallery_title_margin"] = "10,0,10,0";
325
+ $slideshow_layout_data["slideshow_layout_gallery_title_padding"] = "10,0,10,0";
326
+
327
+ $slideshow_layout_data["slideshow_layout_gallery_description_html_tag"] = "h3";
328
+ $slideshow_layout_data["slideshow_layout_gallery_description_text_alignment"] = "left";
329
+ $slideshow_layout_data["slideshow_layout_gallery_description_font_style"] = "16,#787D85";
330
+ $slideshow_layout_data["slideshow_layout_gallery_description_line_height"] = "1.7em";
331
+ $slideshow_layout_data["slideshow_layout_gallery_description_font_family"] = "Roboto Slab:300";
332
+ $slideshow_layout_data["slideshow_layout_gallery_description_margin"] = "10,0,10,0";
333
+ $slideshow_layout_data["slideshow_layout_gallery_description_padding"] = "0,0,10,0";
334
+
335
+ $slideshow_layout_data["slideshow_layout_thumbnail_title_html_tag"] = "h3";
336
+ $slideshow_layout_data["slideshow_layout_thumbnail_title_text_alignment"] = "left";
337
+ $slideshow_layout_data["slideshow_layout_thumbnail_title_font_style"] = "14,#efefef";
338
+ $slideshow_layout_data["slideshow_layout_thumbnail_title_line_height"] = "1.7em";
339
+ $slideshow_layout_data["slideshow_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
340
+ $slideshow_layout_data["slideshow_layout_thumbnail_title_margin"] = "0,5,0,5";
341
+ $slideshow_layout_data["slideshow_layout_thumbnail_title_padding"] = "5,10,0,0";
342
+
343
+ $slideshow_layout_data["slideshow_layout_thumbnail_description_html_tag"] = "p";
344
+ $slideshow_layout_data["slideshow_layout_thumbnail_description_text_alignment"] = "left";
345
+ $slideshow_layout_data["slideshow_layout_thumbnail_description_font_style"] = "12,#dfdfdf";
346
+ $slideshow_layout_data["slideshow_layout_thumbnail_description_line_height"] = "1.7em";
347
+ $slideshow_layout_data["slideshow_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
348
+ $slideshow_layout_data["slideshow_layout_thumbnail_description_margin"] = "0,5,0,5";
349
+ $slideshow_layout_data["slideshow_layout_thumbnail_description_padding"] = "5,10,0,0";
350
+
351
+ $slideshow_layout_data_serialize = array();
352
+ $slideshow_layout_data_serialize["meta_id"] = $row->id;
353
+ $slideshow_layout_data_serialize["old_gallery_id"] = $row->id;
354
+ $slideshow_layout_data_serialize["meta_key"] = "slideshow_layout_settings";
355
+ $slideshow_layout_data_serialize["meta_value"] = serialize($slideshow_layout_data);
356
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $slideshow_layout_data_serialize);
357
+
358
+ $image_browser_layout_data = array();
359
+ $image_browser_layout_data["image_browser_layout_container_width"] = "100";
360
+ $image_browser_layout_data["image_browser_layout_general_border_style"] = "0,none,#000000";
361
+ $image_browser_layout_data["image_browser_layout_general_border_radius"] = "0";
362
+ $image_browser_layout_data["image_browser_layout_general_shadow"] = "0,0,0,0";
363
+ $image_browser_layout_data["image_browser_layout_general_shadow_color"] = "#000000";
364
+ $image_browser_layout_data["image_browser_layout_general_buttons_font_style"] = "14,#ffffff";
365
+ $image_browser_layout_data["image_browser_layout_general_buttons_font_family"] = "Roboto Slab:700";
366
+ $image_browser_layout_data["image_browser_layout_general_buttons_hover_color"] = "#105278";
367
+ $image_browser_layout_data["image_browser_layout_general_buttons_color"] = "#000000";
368
+ $image_browser_layout_data["image_browser_layout_general_buttons_border_style"] = "0,none,#ffffff";
369
+ $image_browser_layout_data["image_browser_layout_general_buttons_border_radius"] = "0";
370
+ $image_browser_layout_data["image_browser_layout_general_image_browser_background_color"] = "#ebe8eb";
371
+ $image_browser_layout_data["image_browser_layout_general_image_browser_opacity"] = "100";
372
+ $image_browser_layout_data["image_browser_layout_general_button_margin"] = "10,5,0,5";
373
+ $image_browser_layout_data["image_browser_layout_general_button_padding"] = "5,10,5,10";
374
+
375
+ $image_browser_layout_data["image_browser_layout_gallery_title_html_tag"] = "h2";
376
+ $image_browser_layout_data["image_browser_layout_gallery_title_text_alignment"] = "left";
377
+ $image_browser_layout_data["image_browser_layout_gallery_title_font_style"] = "20,#000000";
378
+ $image_browser_layout_data["image_browser_layout_gallery_title_line_height"] = "1.7em";
379
+ $image_browser_layout_data["image_browser_layout_gallery_title_font_family"] = "Roboto Slab:700";
380
+ $image_browser_layout_data["image_browser_layout_gallery_title_margin"] = "10,0,10,0";
381
+ $image_browser_layout_data["image_browser_layout_gallery_title_padding"] = "10,0,10,0";
382
+
383
+ $image_browser_layout_data["image_browser_layout_gallery_description_html_tag"] = "h3";
384
+ $image_browser_layout_data["image_browser_layout_gallery_description_text_alignment"] = "left";
385
+ $image_browser_layout_data["image_browser_layout_gallery_description_font_style"] = "16,#787D85";
386
+ $image_browser_layout_data["image_browser_layout_gallery_description_line_height"] = "1.7em";
387
+ $image_browser_layout_data["image_browser_layout_gallery_description_font_family"] = "Roboto Slab:300";
388
+ $image_browser_layout_data["image_browser_layout_gallery_description_margin"] = "10,0,10,0";
389
+ $image_browser_layout_data["image_browser_layout_gallery_description_padding"] = "0,0,10,0";
390
+
391
+ $image_browser_layout_data["image_browser_layout_thumbnail_title_html_tag"] = "h3";
392
+ $image_browser_layout_data["image_browser_layout_thumbnail_title_text_alignment"] = "left";
393
+ $image_browser_layout_data["image_browser_layout_thumbnail_title_font_style"] = "14,#efefef";
394
+ $image_browser_layout_data["image_browser_layout_thumbnail_title_line_height"] = "1.7em";
395
+ $image_browser_layout_data["image_browser_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
396
+ $image_browser_layout_data["image_browser_layout_thumbnail_title_margin"] = "0,5,0,5";
397
+ $image_browser_layout_data["image_browser_layout_thumbnail_title_padding"] = "5,10,0,0";
398
+
399
+ $image_browser_layout_data["image_browser_layout_thumbnail_description_html_tag"] = "p";
400
+ $image_browser_layout_data["image_browser_layout_thumbnail_description_text_alignment"] = "left";
401
+ $image_browser_layout_data["image_browser_layout_thumbnail_description_font_style"] = "12,#dfdfdf";
402
+ $image_browser_layout_data["image_browser_layout_thumbnail_description_line_height"] = "1.7em";
403
+ $image_browser_layout_data["image_browser_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
404
+ $image_browser_layout_data["image_browser_layout_thumbnail_description_margin"] = "0,5,0,5";
405
+ $image_browser_layout_data["image_browser_layout_thumbnail_description_padding"] = "5,10,0,0";
406
+ $image_browser_layout_data_serialize = array();
407
+ $image_browser_layout_data_serialize["meta_id"] = $row->id;
408
+ $image_browser_layout_data_serialize["old_gallery_id"] = $row->id;
409
+ $image_browser_layout_data_serialize["meta_key"] = "image_browser_layout_settings";
410
+ $image_browser_layout_data_serialize["meta_value"] = serialize($image_browser_layout_data);
411
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $image_browser_layout_data_serialize);
412
+
413
+ $justified_grid_layout_data = array();
414
+ $justified_grid_layout_data["justified_grid_layout_general_padding"] = "0,0,0,0";
415
+ $justified_grid_layout_data["justified_grid_layout_general_border_style"] = "0,none,#000000";
416
+ $justified_grid_layout_data["justified_grid_layout_general_border_radius"] = "0";
417
+ $justified_grid_layout_data["justified_grid_layout_general_shadow"] = "0,0,0,0";
418
+ $justified_grid_layout_data["justified_grid_layout_general_shadow_color"] = "#000000";
419
+ $justified_grid_layout_data["justified_grid_layout_general_hover_effect_value"] = "none,0,0,0";
420
+ $justified_grid_layout_data["justified_grid_layout_general_trasition"] = "1";
421
+ $justified_grid_layout_data["justified_grid_layout_general_background_transparency"] = "#ebe8eb,50";
422
+ $justified_grid_layout_data["justified_grid_layout_general_justified_grid_opacity"] = "100";
423
+
424
+ $justified_grid_layout_data["justified_grid_layout_gallery_title_html_tag"] = "h2";
425
+ $justified_grid_layout_data["justified_grid_layout_gallery_title_text_alignment"] = "left";
426
+ $justified_grid_layout_data["justified_grid_layout_gallery_title_font_style"] = "20,#000000";
427
+ $justified_grid_layout_data["justified_grid_layout_gallery_title_line_height"] = "1.7em";
428
+ $justified_grid_layout_data["justified_grid_layout_gallery_title_font_family"] = "Roboto Slab:700";
429
+ $justified_grid_layout_data["justified_grid_layout_gallery_title_margin"] = "10,0,10,0";
430
+ $justified_grid_layout_data["justified_grid_layout_gallery_title_padding"] = "10,0,10,0";
431
+
432
+
433
+ $justified_grid_layout_data["justified_grid_layout_gallery_description_html_tag"] = "h3";
434
+ $justified_grid_layout_data["justified_grid_layout_gallery_description_text_alignment"] = "left";
435
+ $justified_grid_layout_data["justified_grid_layout_gallery_description_font_style"] = "16,#787D85";
436
+ $justified_grid_layout_data["justified_grid_layout_gallery_description_line_height"] = "1.7em";
437
+ $justified_grid_layout_data["justified_grid_layout_gallery_description_font_family"] = "Roboto Slab:300";
438
+ $justified_grid_layout_data["justified_grid_layout_gallery_description_margin"] = "10,0,10,0";
439
+ $justified_grid_layout_data["justified_grid_layout_gallery_description_padding"] = "0,0,10,0";
440
+
441
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_title_html_tag"] = "h3";
442
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_title_text_alignment"] = "center";
443
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_title_font_style"] = "14,#efefef";
444
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_title_line_height"] = "1.7em";
445
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
446
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_title_margin"] = "0,5,0,0";
447
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_title_padding"] = "5,10,10,5";
448
+
449
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_description_html_tag"] = "p";
450
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_description_text_alignment"] = "left";
451
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_description_font_style"] = "12,#dfdfdf";
452
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_description_line_height"] = "1.7em";
453
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
454
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_description_margin"] = "0,5,0,0";
455
+ $justified_grid_layout_data["justified_grid_layout_thumbnail_description_padding"] = "5,10,10,5";
456
+ $justified_grid_layout_data_serialize = array();
457
+ $justified_grid_layout_data_serialize["meta_id"] = $row->id;
458
+ $justified_grid_layout_data_serialize["old_gallery_id"] = $row->id;
459
+ $justified_grid_layout_data_serialize["meta_key"] = "justified_grid_layout_settings";
460
+ $justified_grid_layout_data_serialize["meta_value"] = serialize($justified_grid_layout_data);
461
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $justified_grid_layout_data_serialize);
462
+
463
+ $blog_style_layout_data = array();
464
+ $blog_style_layout_data["blog_style_layout_general_margin"] = "0,0,15,0";
465
+ $blog_style_layout_data["blog_style_layout_general_padding"] = "0,0,0,0";
466
+ $blog_style_layout_data["blog_style_layout_general_border_style"] = "2,solid,#cccccc";
467
+ $blog_style_layout_data["blog_style_layout_general_border_radius"] = "0";
468
+ $blog_style_layout_data["blog_style_layout_general_shadow"] = "0,0,0,0";
469
+ $blog_style_layout_data["blog_style_layout_general_shadow_color"] = "#000000";
470
+ $blog_style_layout_data["blog_style_layout_general_hover_effect_value"] = "none,0,0,0";
471
+ $blog_style_layout_data["blog_style_layout_general_trasition"] = "2";
472
+ $blog_style_layout_data["blog_style_layout_general_background_color"] = "#ebe8eb";
473
+ $blog_style_layout_data["blog_style_layout_general_blog_style_opacity"] = "100";
474
+ $blog_style_layout_data["blog_style_layout_general_background_transparency"] = "100";
475
+
476
+ $blog_style_layout_data["blog_style_layout_gallery_title_html_tag"] = "h2";
477
+ $blog_style_layout_data["blog_style_layout_gallery_title_text_alignment"] = "left";
478
+ $blog_style_layout_data["blog_style_layout_gallery_title_font_style"] = "20,#000000";
479
+ $blog_style_layout_data["blog_style_layout_gallery_title_line_height"] = "1.7em";
480
+ $blog_style_layout_data["blog_style_layout_gallery_title_font_family"] = "Roboto Slab:700";
481
+ $blog_style_layout_data["blog_style_layout_gallery_title_margin"] = "10,0,10,0";
482
+ $blog_style_layout_data["blog_style_layout_gallery_title_padding"] = "10,0,10,0";
483
+
484
+ $blog_style_layout_data["blog_style_layout_gallery_description_html_tag"] = "h3";
485
+ $blog_style_layout_data["blog_style_layout_gallery_description_text_alignment"] = "left";
486
+ $blog_style_layout_data["blog_style_layout_gallery_description_font_style"] = "16,#787D85";
487
+ $blog_style_layout_data["blog_style_layout_gallery_description_line_height"] = "1.7em";
488
+ $blog_style_layout_data["blog_style_layout_gallery_description_font_family"] = "Roboto Slab:300";
489
+ $blog_style_layout_data["blog_style_layout_gallery_description_margin"] = "10,0,10,0";
490
+ $blog_style_layout_data["blog_style_layout_gallery_description_padding"] = "0,0,10,0";
491
+
492
+ $blog_style_layout_data["blog_style_layout_thumbnail_title_html_tag"] = "h3";
493
+ $blog_style_layout_data["blog_style_layout_thumbnail_title_text_alignment"] = "left";
494
+ $blog_style_layout_data["blog_style_layout_thumbnail_title_font_style"] = "14,#787D85";
495
+ $blog_style_layout_data["blog_style_layout_thumbnail_title_line_height"] = "1.7em";
496
+ $blog_style_layout_data["blog_style_layout_thumbnail_title_font_family"] = "Roboto Slab:700";
497
+ $blog_style_layout_data["blog_style_layout_thumbnail_title_margin"] = "0,5,0,5";
498
+ $blog_style_layout_data["blog_style_layout_thumbnail_title_padding"] = "10,10,10,10";
499
+
500
+ $blog_style_layout_data["blog_style_layout_thumbnail_description_html_tag"] = "p";
501
+ $blog_style_layout_data["blog_style_layout_thumbnail_description_text_alignment"] = "left";
502
+ $blog_style_layout_data["blog_style_layout_thumbnail_description_font_style"] = "12,#787D85";
503
+ $blog_style_layout_data["blog_style_layout_thumbnail_description_line_height"] = "1.7em";
504
+ $blog_style_layout_data["blog_style_layout_thumbnail_description_font_family"] = "Roboto Slab:300";
505
+ $blog_style_layout_data["blog_style_layout_thumbnail_description_margin"] = "0,5,0,5";
506
+ $blog_style_layout_data["blog_style_layout_thumbnail_description_padding"] = "5,10,10,5";
507
+ $blog_style_layout_data_serialize = array();
508
+ $blog_style_layout_data_serialize["meta_id"] = $row->id;
509
+ $blog_style_layout_data_serialize["old_gallery_id"] = $row->id;
510
+ $blog_style_layout_data_serialize["meta_key"] = "blog_style_layout_settings";
511
+ $blog_style_layout_data_serialize["meta_value"] = serialize($blog_style_layout_data);
512
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $blog_style_layout_data_serialize);
513
+
514
+ $compact_album_layout_data = array();
515
+ $compact_album_layout_data["compact_album_layout_cover_margin"] = "10,10,0,0";
516
+ $compact_album_layout_data["compact_album_layout_cover_padding"] = "0,0,0,0";
517
+ $compact_album_layout_data["compact_album_layout_cover_border_style"] = "0,none,#000000";
518
+ $compact_album_layout_data["compact_album_layout_cover_border_radius"] = "0";
519
+ $compact_album_layout_data["compact_album_layout_cover_shadow"] = "0,0,0,0";
520
+ $compact_album_layout_data["compact_album_layout_cover_shadow_color"] = "#000000";
521
+ $compact_album_layout_data["compact_album_layout_cover_hover_effect_value"] = "none,0,0,0";
522
+ $compact_album_layout_data["compact_album_layout_cover_transition_time"] = "1";
523
+ $compact_album_layout_data["compact_album_layout_cover_background_color_transparency"] = "#ebe8eb,50";
524
+ $compact_album_layout_data["compact_album_layout_cover_thumbnail_opacity"] = "100";
525
+ $compact_album_layout_data["compact_album_layout_cover_thumbnail_dimensions"] = "250,200";
526
+
527
+ $compact_album_layout_data["compact_album_layout_title_html_tag"] = "h2";
528
+ $compact_album_layout_data["compact_album_layout_title_text_alignment"] = "left";
529
+ $compact_album_layout_data["compact_album_layout_title_font_style"] = "20,#000000";
530
+ $compact_album_layout_data["compact_album_layout_title_line_height"] = "1.7em";
531
+ $compact_album_layout_data["compact_album_layout_title_font_family"] = "Roboto Slab:700";
532
+ $compact_album_layout_data["compact_album_layout_title_margin"] = "10,0,10,0";
533
+ $compact_album_layout_data["compact_album_layout_title_padding"] = "10,0,10,0";
534
+
535
+ $compact_album_layout_data["compact_album_layout_description_html_tag"] = "h3";
536
+ $compact_album_layout_data["compact_album_layout_description_text_alignment"] = "left";
537
+ $compact_album_layout_data["compact_album_layout_description_font_style"] = "16,#787D85";
538
+ $compact_album_layout_data["compact_album_layout_description_line_height"] = "1.7em";
539
+ $compact_album_layout_data["compact_album_layout_description_font_family"] = "Roboto Slab:300";
540
+ $compact_album_layout_data["compact_album_layout_description_margin"] = "10,0,10,0";
541
+ $compact_album_layout_data["compact_album_layout_description_padding"] = "0,0,10,0";
542
+
543
+ $compact_album_layout_data["compact_album_layout_gallery_title_html_tag"] = "h3";
544
+ $compact_album_layout_data["compact_album_layout_gallery_title_text_alignment"] = "left";
545
+ $compact_album_layout_data["compact_album_layout_gallery_title_font_style"] = "14,#787D85";
546
+ $compact_album_layout_data["compact_album_layout_gallery_title_line_height"] = "1.7em";
547
+ $compact_album_layout_data["compact_album_layout_gallery_title_font_family"] = "Roboto Slab:700";
548
+ $compact_album_layout_data["compact_album_layout_gallery_title_margin"] = "0,5,0,5";
549
+ $compact_album_layout_data["compact_album_layout_gallery_title_padding"] = "10,10,10,10";
550
+
551
+ $compact_album_layout_data["compact_album_layout_gallery_description_html_tag"] = "p";
552
+ $compact_album_layout_data["compact_album_layout_gallery_description_text_alignment"] = "left";
553
+ $compact_album_layout_data["compact_album_layout_gallery_description_font_style"] = "12,#787D85";
554
+ $compact_album_layout_data["compact_album_layout_gallery_description_line_height"] = "1.7em";
555
+ $compact_album_layout_data["compact_album_layout_gallery_description_font_family"] = "Roboto Slab:300";
556
+ $compact_album_layout_data["compact_album_layout_gallery_description_margin"] = "0,5,0,5";
557
+ $compact_album_layout_data["compact_album_layout_gallery_description_padding"] = "5,10,10,10";
558
+
559
+ $compact_album_layout_data["compact_album_layout_button_text"] = "Back To Album";
560
+ $compact_album_layout_data["compact_album_layout_button_color"] = "#a4cd39";
561
+ $compact_album_layout_data["compact_album_layout_button_hover_color"] = "#a4cd39";
562
+ $compact_album_layout_data["compact_album_layout_button_font_style"] = "14,#ffffff";
563
+ $compact_album_layout_data["compact_album_layout_button_font_hover_color"] = "#ffffff";
564
+ $compact_album_layout_data["compact_album_layout_button_text_alignment"] = "left";
565
+ $compact_album_layout_data["compact_album_layout_button_border_style"] = "0,none,#a4cd39";
566
+ $compact_album_layout_data["compact_album_layout_button_border_hover_color"] = "#a4cd39";
567
+ $compact_album_layout_data["compact_album_layout_button_border_radius"] = "4";
568
+ $compact_album_layout_data["compact_album_layout_button_text_font_family"] = "Roboto Slab:700";
569
+ $compact_album_layout_data["compact_album_layout_button_margin"] = "10,0,0,0";
570
+ $compact_album_layout_data["compact_album_layout_button_padding"] = "8,12,8,12";
571
+
572
+
573
+ $compact_album_data_serialize = array();
574
+ $compact_album_data_serialize["meta_id"] = $row->id;
575
+ $compact_album_data_serialize["old_gallery_id"] = $row->id;
576
+ $compact_album_data_serialize["meta_key"] = "compact_album_layout_settings";
577
+ $compact_album_data_serialize["meta_value"] = serialize($compact_album_layout_data);
578
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $compact_album_data_serialize);
579
+
580
+ $extended_album_layout_data = array();
581
+ $extended_album_layout_data["extended_album_layout_cover_margin"] = "10,10,10,10";
582
+ $extended_album_layout_data["extended_album_layout_cover_padding"] = "0,0,0,0";
583
+ $extended_album_layout_data["extended_album_layout_cover_border_style"] = "0,none,#000000";
584
+ $extended_album_layout_data["extended_album_layout_cover_border_radius"] = "0";
585
+ $extended_album_layout_data["extended_album_layout_cover_shadow"] = "0,0,0,0";
586
+ $extended_album_layout_data["extended_album_layout_cover_shadow_color"] = "#000000";
587
+ $extended_album_layout_data["extended_album_layout_cover_hover_effect_value"] = "none,0,0,0";
588
+ $extended_album_layout_data["extended_album_layout_cover_transition_time"] = "1";
589
+ $extended_album_layout_data["extended_album_layout_cover_background_color_transparency"] = "#ebe8eb,50";
590
+ $extended_album_layout_data["extended_album_layout_cover_thumbnail_opacity"] = "100";
591
+ $extended_album_layout_data["extended_album_layout_cover_thumbnail_dimensions"] = "250,200";
592
+
593
+ $extended_album_layout_data["extended_album_layout_title_html_tag"] = "h2";
594
+ $extended_album_layout_data["extended_album_layout_title_text_alignment"] = "left";
595
+ $extended_album_layout_data["extended_album_layout_title_font_style"] = "20,#000000";
596
+ $extended_album_layout_data["extended_album_layout_title_line_height"] = "1.7em";
597
+ $extended_album_layout_data["extended_album_layout_title_font_family"] = "Roboto Slab:700";
598
+ $extended_album_layout_data["extended_album_layout_title_margin"] = "10,0,10,0";
599
+ $extended_album_layout_data["extended_album_layout_title_padding"] = "10,0,10,0";
600
+
601
+ $extended_album_layout_data["extended_album_layout_description_html_tag"] = "h3";
602
+ $extended_album_layout_data["extended_album_layout_description_text_alignment"] = "left";
603
+ $extended_album_layout_data["extended_album_layout_description_font_style"] = "16,#787D85";
604
+ $extended_album_layout_data["extended_album_layout_description_line_height"] = "1.7em";
605
+ $extended_album_layout_data["extended_album_layout_description_font_family"] = "Roboto Slab:300";
606
+ $extended_album_layout_data["extended_album_layout_description_margin"] = "10,0,10,0";
607
+ $extended_album_layout_data["extended_album_layout_description_padding"] = "0,0,10,0";
608
+
609
+ $extended_album_layout_data["extended_album_layout_gallery_title_html_tag"] = "h3";
610
+ $extended_album_layout_data["extended_album_layout_gallery_title_text_alignment"] = "left";
611
+ $extended_album_layout_data["extended_album_layout_gallery_title_font_style"] = "16,#000000";
612
+ $extended_album_layout_data["extended_album_layout_gallery_title_line_height"] = "1.7em";
613
+ $extended_album_layout_data["extended_album_layout_gallery_title_font_family"] = "Roboto Slab:700";
614
+ $extended_album_layout_data["extended_album_layout_gallery_title_margin"] = "0,5,0,5";
615
+ $extended_album_layout_data["extended_album_layout_gallery_title_padding"] = "10,10,10,10";
616
+
617
+ $extended_album_layout_data["extended_album_layout_gallery_description_html_tag"] = "p";
618
+ $extended_album_layout_data["extended_album_layout_gallery_description_text_alignment"] = "left";
619
+ $extended_album_layout_data["extended_album_layout_gallery_description_font_style"] = "12,#787D85";
620
+ $extended_album_layout_data["extended_album_layout_gallery_description_line_height"] = "1.7em";
621
+ $extended_album_layout_data["extended_album_layout_gallery_description_font_family"] = "Roboto Slab:300";
622
+ $extended_album_layout_data["extended_album_layout_gallery_description_margin"] = "0,5,0,5";
623
+ $extended_album_layout_data["extended_album_layout_gallery_description_padding"] = "5,10,10,10";
624
+
625
+ $extended_album_layout_data["extended_album_layout_button_text"] = "Back To Album";
626
+ $extended_album_layout_data["extended_album_layout_button_color"] = "#a4cd39";
627
+ $extended_album_layout_data["extended_album_layout_button_hover_color"] = "#a4cd39";
628
+ $extended_album_layout_data["extended_album_layout_button_font_style"] = "14,#ffffff";
629
+ $extended_album_layout_data["extended_album_layout_button_font_hover_color"] = "#ffffff";
630
+ $extended_album_layout_data["extended_album_layout_button_text_alignment"] = "left";
631
+ $extended_album_layout_data["extended_album_layout_button_border_style"] = "0,none,#a4cd39";
632
+ $extended_album_layout_data["extended_album_layout_button_border_hover_color"] = "#a4cd39";
633
+ $extended_album_layout_data["extended_album_layout_button_border_radius"] = "4";
634
+ $extended_album_layout_data["extended_album_layout_button_text_font_family"] = "Roboto Slab:700";
635
+ $extended_album_layout_data["extended_album_layout_button_margin"] = "10,0,0,0";
636
+ $extended_album_layout_data["extended_album_layout_button_padding"] = "8,12,8,12";
637
+
638
+ $extended_album_data_serialize = array();
639
+ $extended_album_data_serialize["meta_id"] = $row->id;
640
+ $extended_album_data_serialize["old_gallery_id"] = $row->id;
641
+ $extended_album_data_serialize["meta_key"] = "extended_album_layout_settings";
642
+ $extended_album_data_serialize["meta_value"] = serialize($extended_album_layout_data);
643
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $extended_album_data_serialize);
644
+
645
+ $custom_css_data = array();
646
+ $custom_css_data["custom_css"] = "";
647
+
648
+ $custom_css_data_serialize = array();
649
+ $custom_css_data_serialize["meta_id"] = $row->id;
650
+ $custom_css_data_serialize["old_gallery_id"] = $row->id;
651
+ $custom_css_data_serialize["meta_key"] = "custom_css";
652
+ $custom_css_data_serialize["meta_value"] = serialize($custom_css_data);
653
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $custom_css_data_serialize);
654
+ break;
655
+
656
+ case "lightboxes_settings":
657
+ $fancy_box_setting = array();
658
+ $fancy_box_setting["fancy_box_margin"] = "100";
659
+ $fancy_box_setting["fancy_box_padding"] = "20";
660
+ $fancy_box_setting["fancy_box_open_effect"] = "fade";
661
+ $fancy_box_setting["fancy_box_close_effect"] = "fade";
662
+ $fancy_box_setting["fancy_box_open_speed"] = "300";
663
+ $fancy_box_setting["fancy_box_close_speed"] = "300";
664
+ $fancy_box_setting["fancy_box_overlay_color"] = "#000000";
665
+ $fancy_box_setting["fancy_box_overlay_opacity"] = "75";
666
+ $fancy_box_setting["fancy_box_border_style"] = "2,solid,#cccccc";
667
+ $fancy_box_setting["fancy_box_border_radius"] = "2";
668
+ $fancy_box_setting["fancy_box_background_color"] = "#ffffff";
669
+ $fancy_box_setting["fancy_box_background_opacity"] = "100";
670
+ $fancy_box_setting["fancy_box_title"] = "true";
671
+ $fancy_box_setting["fancy_box_title_font_style"] = "14,#000000";
672
+ $fancy_box_setting["fancy_box_title_font_family"] = "Roboto Slab:700";
673
+ $fancy_box_setting["fancy_box_description"] = "true";
674
+ $fancy_box_setting["fancy_box_description_font_style"] = "12,#000000";
675
+ $fancy_box_setting["fancy_box_description_font_family"] = "Roboto Slab:300";
676
+ $fancy_box_setting["fancy_box_cyclic"] = "false";
677
+ $fancy_box_setting["fancy_box_arrows"] = "true";
678
+ $fancy_box_setting["fancy_box_mouse_wheel"] = "true";
679
+ $fancy_box_setting["fancy_box_button_position"] = "bottom";
680
+ $fancy_box_setting["fancy_box_enable_escape_button"] = "false";
681
+ $fancy_box_setting["fancy_box_title_position"] = "inside";
682
+ $fancy_box_setting["fancy_box_show_close_button"] = "true";
683
+ $fancy_box_setting["fancy_box_change_speed"] = "3000";
684
+ $fancy_box_setting["fancy_box_title_html_tag"] = "h2";
685
+ $fancy_box_setting["fancy_box_title_text_alignment"] = "left";
686
+ $fancy_box_setting["fancy_box_title_margin"] = "5,0,5,0";
687
+ $fancy_box_setting["fancy_box_title_padding"] = "0,0,0,0";
688
+ $fancy_box_setting["fancy_box_description_html_tag"] = "h3";
689
+ $fancy_box_setting["fancy_box_description_text_alignment"] = "left";
690
+ $fancy_box_setting["fancy_box_description_margin"] = "5,0,5,0";
691
+ $fancy_box_setting["fancy_box_description_padding"] = "0,0,0,0";
692
+
693
+ $fancy_box_data_serialize = array();
694
+ $fancy_box_data_serialize["meta_id"] = $row->id;
695
+ $fancy_box_data_serialize["old_gallery_id"] = $row->id;
696
+ $fancy_box_data_serialize["meta_key"] = "fancy_box_settings";
697
+ $fancy_box_data_serialize["meta_value"] = serialize($fancy_box_setting);
698
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $fancy_box_data_serialize);
699
+
700
+ $color_box_settings = array();
701
+ $color_box_settings["lightbox_color_box_type"] = "type1";
702
+ $color_box_settings["lightbox_color_box_transition_effect"] = "elastic";
703
+ $color_box_settings["lightbox_color_box_transition_speed"] = "350";
704
+ $color_box_settings["lightbox_color_box_fadeout"] = "300";
705
+ $color_box_settings["lightbox_color_box_opacity"] = "75";
706
+ $color_box_settings["lightbox_color_box_title"] = "true";
707
+
708
+ $color_box_settings["lightbox_color_box_title_html_tag"] = "h2";
709
+ $color_box_settings["lightbox_color_box_title_text_alignment"] = "left";
710
+ $color_box_settings["lightbox_color_box_title_font_style"] = "16,#ffffff";
711
+ $color_box_settings["lightbox_color_box_title_font_family"] = "Roboto Slab:700";
712
+ $color_box_settings["lightbox_color_box_title_margin"] = "5,0,5,0";
713
+ $color_box_settings["lightbox_color_box_title_padding"] = "0,0,0,10";
714
+
715
+ $color_box_settings["lightbox_color_box_description"] = "true";
716
+ $color_box_settings["lightbox_color_box_description_html_tag"] = "h3";
717
+ $color_box_settings["lightbox_color_box_description_text_alignment"] = "left";
718
+ $color_box_settings["lightbox_color_box_description_font_style"] = "14,#ffffff";
719
+ $color_box_settings["lightbox_color_box_description_font_family"] = "Roboto Slab:300";
720
+ $color_box_settings["lightbox_color_box_description_margin"] = "5,0,5,0";
721
+ $color_box_settings["lightbox_color_box_description_padding"] = "0,0,0,10";
722
+
723
+ $color_box_settings["lightbox_color_box_open_page_load"] = "false";
724
+ $color_box_settings["lightbox_color_box_show_close_button"] = "true";
725
+ $color_box_settings["lightbox_color_box_sideshow"] = "true";
726
+ $color_box_settings["lightbox_color_box_slideshow_speed"] = "10000";
727
+ $color_box_settings["lightbox_color_box_auto_slideshow"] = "true";
728
+ $color_box_settings["lightbox_color_box_fixed_position"] = "false";
729
+ $color_box_settings["lightbox_color_box_postioning"] = "reposition";
730
+ $color_box_settings["lightbox_color_box_postioning_value"] = "50";
731
+ $color_box_settings["lightbox_color_box_background"] = "#000000";
732
+
733
+ $color_box_setting_serialize = array();
734
+ $color_box_setting_serialize["meta_id"] = $row->id;
735
+ $color_box_setting_serialize["old_gallery_id"] = $row->id;
736
+ $color_box_setting_serialize["meta_key"] = "color_box_settings";
737
+ $color_box_setting_serialize["meta_value"] = serialize($color_box_settings);
738
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $color_box_setting_serialize);
739
+
740
+ $foo_box_settings = array();
741
+ $foo_box_settings["foo_box_overlay_color"] = "#000000";
742
+ $foo_box_settings["foo_box_overlay_opacity"] = "75";
743
+ $foo_box_settings["foo_box_border_style"] = "5,solid,#ffffff";
744
+ $foo_box_settings["foo_box_border_radius"] = "5";
745
+
746
+ $foo_box_settings["foo_box_image_title_html_tag"] = "h2";
747
+ $foo_box_settings["foo_box_image_title_text_alignment"] = "left";
748
+ $foo_box_settings["foo_box_title"] = "true";
749
+ $foo_box_settings["foo_box_title_font_style"] = "16,#ffffff";
750
+ $foo_box_settings["foo_box_title_font_family"] = "Roboto Slab:700";
751
+ $foo_box_settings["foo_box_image_title_margin"] = "10,0,10,0";
752
+ $foo_box_settings["foo_box_image_title_padding"] = "10,10,10,10";
753
+
754
+ $foo_box_settings["foo_box_image_description_html_tag"] = "h3";
755
+ $foo_box_settings["foo_box_image_description_text_alignment"] = "left";
756
+ $foo_box_settings["foo_box_description"] = "true";
757
+ $foo_box_settings["foo_box_description_font_style"] = "14,#ffffff";
758
+ $foo_box_settings["foo_box_description_font_family"] = "Roboto Slab:300";
759
+ $foo_box_settings["foo_box_image_description_margin"] = "5,0,5,0";
760
+ $foo_box_settings["foo_box_image_description_padding"] = "20,10,10,10";
761
+
762
+ $foo_box_settings["foo_box_show_count"] = "true";
763
+ $foo_box_settings["foo_box_close_overlay_click"] = "false";
764
+ $foo_box_settings["foo_box_hide_page_scrollbar"] = "false";
765
+ $foo_box_settings["foo_box_show_on_hover"] = "false";
766
+
767
+ $foo_box_settings_serialize = array();
768
+ $foo_box_settings_serialize["meta_id"] = $row->id;
769
+ $foo_box_settings_serialize["old_gallery_id"] = $row->id;
770
+ $foo_box_settings_serialize["meta_key"] = "foo_box_settings";
771
+ $foo_box_settings_serialize["meta_value"] = serialize($foo_box_settings);
772
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $foo_box_settings_serialize);
773
+
774
+ $nivo_lightbox_settings = array();
775
+ $nivo_lightbox_settings["lightbox_nivo_choose_effect"] = "fade";
776
+ $nivo_lightbox_settings["lightbox_nivo_keyboard_navigation"] = "false";
777
+ $nivo_lightbox_settings["lightbox_nivo_click_image_to_close"] = "true";
778
+ $nivo_lightbox_settings["lightbox_nivo_click_overlay_to_close"] = "true";
779
+ $nivo_lightbox_settings["lightbox_nivo_overlay_color"] = "#000000";
780
+ $nivo_lightbox_settings["lightbox_nivo_overlay_opacity"] = "75";
781
+ $nivo_lightbox_settings["lightbox_nivo_border_style"] = "5,solid,#ffffff";
782
+ $nivo_lightbox_settings["lightbox_nivo_border_radius"] = "5";
783
+ $nivo_lightbox_settings["lightbox_nivo_title"] = "true";
784
+
785
+ $nivo_lightbox_settings["lightbox_nivo_title_html_tag"] = "h2";
786
+ $nivo_lightbox_settings["lightbox_nivo_title_text_alignment"] = "center";
787
+ $nivo_lightbox_settings["lightbox_nivo_title_font_style"] = "16,#ffffff";
788
+ $nivo_lightbox_settings["lightbox_nivo_title_font_family"] = "Roboto Slab:700";
789
+ $nivo_lightbox_settings["lightbox_nivo_title_margin"] = "10,0,0,0";
790
+ $nivo_lightbox_settings["lightbox_nivo_title_padding"] = "10,10,0,10";
791
+
792
+ $nivo_lightbox_settings["lightbox_nivo_description"] = "true";
793
+ $nivo_lightbox_settings["lightbox_nivo_description_html_tag"] = "h3";
794
+ $nivo_lightbox_settings["lightbox_nivo_description_text_alignment"] = "center";
795
+ $nivo_lightbox_settings["lightbox_nivo_description_font_style"] = "14,#ffffff";
796
+ $nivo_lightbox_settings["lightbox_nivo_description_font_family"] = "Roboto Slab:300";
797
+ $nivo_lightbox_settings["lightbox_nivo_description_margin"] = "0,0,0,0";
798
+ $nivo_lightbox_settings["lightbox_nivo_description_padding"] = "0,10,10,10";
799
+
800
+ $nivo_lightbox_serialize = array();
801
+ $nivo_lightbox_serialize["meta_id"] = $row->id;
802
+ $nivo_lightbox_serialize["old_gallery_id"] = $row->id;
803
+ $nivo_lightbox_serialize["meta_key"] = "nivo_lightbox_settings";
804
+ $nivo_lightbox_serialize["meta_value"] = serialize($nivo_lightbox_settings);
805
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $nivo_lightbox_serialize);
806
+
807
+ $lightcase_settings = array();
808
+ $lightcase_settings["lightcase_image_transition"] = "fade";
809
+ $lightcase_settings["lightcase_animation_speed_starting_transition"] = 350;
810
+ $lightcase_settings["lightcase_animation_speed_ending_transition"] = 250;
811
+ $lightcase_settings["lightcase_onoverlay_color"] = "#000000";
812
+ $lightcase_settings["lightcase_onoverlay_opacity"] = 75;
813
+ $lightcase_settings["lightcase_button_font_style"] = "30,#ffffff";
814
+ $lightcase_settings["lightcase_close_button"] = "show";
815
+ $lightcase_settings["lightcase_image_counter"] = "show";
816
+ $lightcase_settings["lightcase_counter_font_style"] = "10,#ffffff";
817
+ $lightcase_settings["lightcase_counter_font_family"] = "Roboto Slab:700";
818
+ $lightcase_settings["lightcase_border"] = "0,none,#ffffff";
819
+ $lightcase_settings["lightcase_border_radius"] = 0;
820
+ $lightcase_settings["lightcase_autoplay_slideshow"] = "true";
821
+ $lightcase_settings["lightcase_slideshow_interval"] = "10";
822
+
823
+ $lightcase_settings["lightcase_image_title_html_tag"] = "h2";
824
+ $lightcase_settings["lightcase_image_title_text_alignment"] = "left";
825
+ $lightcase_settings["lightcase_image_title_font_style"] = "16,#ffffff";
826
+ $lightcase_settings["lightcase_image_title_font_family"] = "Roboto Slab:700";
827
+ $lightcase_settings["lightcase_image_title_margin"] = "5,0,5,0";
828
+ $lightcase_settings["lightcase_image_title_padding"] = "0,0,0,0";
829
+ $lightcase_settings["lightcase_image_title"] = "true";
830
+ $lightcase_settings["lightcase_image_description"] = "true";
831
+
832
+ $lightcase_settings["lightcase_image_description_html_tag"] = "h3";
833
+ $lightcase_settings["lightcase_image_description_text_alignment"] = "left";
834
+ $lightcase_settings["lightcase_image_description_font_style"] = "14,#ffffff";
835
+ $lightcase_settings["lightcase_image_description_font_family"] = "Roboto Slab:300";
836
+ $lightcase_settings["lightcase_image_description_margin"] = "5,0,5,0";
837
+ $lightcase_settings["lightcase_image_description_padding"] = "0,0,0,0";
838
+
839
+ $lightcase_settings_serialize = array();
840
+ $lightcase_settings_serialize["meta_id"] = $row->id;
841
+ $lightcase_settings_serialize["old_gallery_id"] = $row->id;
842
+ $lightcase_settings_serialize["meta_key"] = "lightcase_settings";
843
+ $lightcase_settings_serialize["meta_value"] = serialize($lightcase_settings);
844
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $lightcase_settings_serialize);
845
+ break;
846
+
847
+ case "general_settings":
848
+
849
+ $global_options = array();
850
+ $global_options["global_options_generated_image_dimensions"] = "1600,900";
851
+ $global_options["global_options_thumbnail_dimensions"] = "250,200";
852
+ $global_options["global_options_language_direction"] = "left_to_right";
853
+ $global_options["global_options_right_click_protection"] = "disable";
854
+
855
+ $global_options_serialize = array();
856
+ $global_options_serialize["meta_id"] = $row->id;
857
+ $global_options_serialize["old_gallery_id"] = $row->id;
858
+ $global_options_serialize["meta_key"] = "global_options_settings";
859
+ $global_options_serialize["meta_value"] = serialize($global_options);
860
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $global_options_serialize);
861
+
862
+ $lazyload_settings = array();
863
+ $lazyload_settings["loader_text"] = "show";
864
+ $lazyload_settings["lazy_loader_title"] = "Loading. Please Wait...";
865
+ $lazyload_settings["lazy_loader_background_color"] = "#ffffff";
866
+ $lazyload_settings["lazy_loader_color"] = "#080808";
867
+ $lazyload_settings["lazy_loader_font_style"] = "15,#000000";
868
+ $lazyload_settings["loader_font_family"] = "Roboto Slab:700";
869
+
870
+ $lazyload_settings_serialize = array();
871
+ $lazyload_settings_serialize["meta_id"] = $row->id;
872
+ $lazyload_settings_serialize["old_gallery_id"] = $row->id;
873
+ $lazyload_settings_serialize["meta_key"] = "lazy_load_settings";
874
+ $lazyload_settings_serialize["meta_value"] = serialize($lazyload_settings);
875
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $lazyload_settings_serialize);
876
+
877
+ $searchbox_settings = array();
878
+ $searchbox_settings["search_box_font_style"] = "14,#000000";
879
+ $searchbox_settings["search_box_font_family"] = "Roboto Slab:700";
880
+ $searchbox_settings["search_box_placeholder_text"] = "Search ...";
881
+ $searchbox_settings["search_box_background_color_and_background_transparency"] = ",100";
882
+ $searchbox_settings["search_box_border_style"] = "2,solid,#9e9e9e";
883
+ $searchbox_settings["search_box_border_radius"] = "0";
884
+ $searchbox_settings["search_box_margin"] = "0,5,20,0";
885
+ $searchbox_settings["search_box_padding"] = "5,10,5,10";
886
+
887
+ $searchbox_settings_serialize = array();
888
+ $searchbox_settings_serialize["meta_id"] = $row->id;
889
+ $searchbox_settings_serialize["old_gallery_id"] = $row->id;
890
+ $searchbox_settings_serialize["meta_key"] = "search_box_settings";
891
+ $searchbox_settings_serialize["meta_value"] = serialize($searchbox_settings);
892
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $searchbox_settings_serialize);
893
+
894
+ $orderby_settings = array();
895
+ $orderby_settings["order_by_font_style"] = "14,#000000";
896
+ $orderby_settings["order_by_font_family"] = "Roboto Slab:700";
897
+ $orderby_settings["order_by_background_color_and_background_transparency"] = ",100";
898
+ $orderby_settings["order_by_background_hover_color"] = "";
899
+ $orderby_settings["order_by_active_font_color"] = "#2fbfc1";
900
+ $orderby_settings["order_by_active_font_hover_color"] = "#2fbfc1";
901
+ $orderby_settings["order_by_border_style"] = "2,solid,#9e9e9e";
902
+ $orderby_settings["order_by_border_radius"] = "0";
903
+ $orderby_settings["order_by_border_hover_color"] = "#2fbfc1";
904
+ $orderby_settings["order_by_margin"] = "0,5,20,0";
905
+ $orderby_settings["order_by_padding"] = "5,10,5,10";
906
+
907
+ $orderby_settings_serialize = array();
908
+ $orderby_settings_serialize["meta_id"] = $row->id;
909
+ $orderby_settings_serialize["old_gallery_id"] = $row->id;
910
+ $orderby_settings_serialize["meta_key"] = "order_by_settings";
911
+ $orderby_settings_serialize["meta_value"] = serialize($orderby_settings);
912
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $orderby_settings_serialize);
913
+
914
+ $filter_settings = array();
915
+ $filter_settings["filters_font_style"] = "14,#000000";
916
+ $filter_settings["filters_font_family"] = "Roboto Slab:700";
917
+ $filter_settings["filters_margin"] = "0,5,20,0";
918
+ $filter_settings["filters_padding"] = "5,10,5,10";
919
+ $filter_settings["filters_background_color_and_background_transparency"] = ",100";
920
+ $filter_settings["filters_background_hover_color"] = "";
921
+ $filter_settings["filters_border_style"] = "2,solid,#9e9e9e";
922
+ $filter_settings["filters_border_radius"] = "0";
923
+ $filter_settings["filters_border_hover_color"] = "#2fbfc1";
924
+ $filter_settings["filters_active_font_color"] = "#2fbfc1";
925
+ $filter_settings["filters_active_font_hover_color"] = "#2fbfc1";
926
+
927
+ $filter_settings_serialize = array();
928
+ $filter_settings_serialize["meta_id"] = $row->id;
929
+ $filter_settings_serialize["old_gallery_id"] = $row->id;
930
+ $filter_settings_serialize["meta_key"] = "filter_settings";
931
+ $filter_settings_serialize["meta_value"] = serialize($filter_settings);
932
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $filter_settings_serialize);
933
+
934
+ $page_navigation = array();
935
+ $page_navigation["page_navigation_margin"] = "20,2,20,2";
936
+ $page_navigation["page_navigation_padding"] = "5,10,5,10";
937
+ $page_navigation["page_navigation_border_style"] = "1,solid,#000000";
938
+ $page_navigation["page_navigation_border_radius"] = "0";
939
+ $page_navigation["page_navigation_alignment"] = "center";
940
+ $page_navigation["page_navigation_position"] = "bottom";
941
+ $page_navigation["page_navigation_numbering"] = "yes";
942
+ $page_navigation["page_navigation_button_text"] = "text";
943
+ $page_navigation["page_navigation_font_style"] = "14,#ffffff";
944
+ $page_navigation["page_navigation_font_family"] = "Roboto Slab:700";
945
+ $page_navigation["page_navigation_background_color"] = "#000000";
946
+ $page_navigation["page_navigation_background_transparency"] = "100";
947
+
948
+ $page_navigation_serialize = array();
949
+ $page_navigation_serialize["meta_id"] = $row->id;
950
+ $page_navigation_serialize["old_gallery_id"] = $row->id;
951
+ $page_navigation_serialize["meta_key"] = "page_navigation_settings";
952
+ $page_navigation_serialize["meta_value"] = serialize($page_navigation);
953
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $page_navigation_serialize);
954
+
955
+ $watermark_settings = array();
956
+ $watermark_settings["watermark_settings_type"] = "none";
957
+ $watermark_settings["watermark_settings_text"] = "";
958
+ $watermark_settings["watermark_settings_font_style"] = "20,#cccccc";
959
+ $watermark_settings["watermark_settings_position"] = "top_left";
960
+ $watermark_settings["watermark_settings_url"] = "";
961
+ $watermark_settings["watermark_settings_size"] = "";
962
+ $watermark_settings["watermark_setting_angle"] = "0";
963
+ $watermark_settings["watermark_setting_offset"] = "0,0";
964
+ $watermark_settings["watermark_setting_opacity"] = "100";
965
+
966
+ $watermark_settings_serialize = array();
967
+ $watermark_settings_serialize["meta_id"] = $row->id;
968
+ $watermark_settings_serialize["old_gallery_id"] = $row->id;
969
+ $watermark_settings_serialize["meta_key"] = "watermark_settings";
970
+ $watermark_settings_serialize["meta_value"] = serialize($watermark_settings);
971
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $watermark_settings_serialize);
972
+
973
+ $advertisement = array();
974
+ $advertisement["advertisement_type"] = "none";
975
+ $advertisement["advertisement_text"] = "";
976
+ $advertisement["advertisement_link"] = "";
977
+ $advertisement["advertisement_font_style"] = "20,#cccccc";
978
+ $advertisement["advertisement_text_angle"] = "";
979
+ $advertisement["advertisement_font_family"] = "Roboto Slab:300";
980
+ $advertisement["advertisement_position"] = "top_left";
981
+ $advertisement["advertisement_url"] = "";
982
+ $advertisement["advertisement_width"] = "100";
983
+ $advertisement["advertisement_height"] = "100";
984
+ $advertisement["advertisement_opacity"] = "100";
985
+
986
+ $advertisement_serialize = array();
987
+ $advertisement_serialize["meta_id"] = $row->id;
988
+ $advertisement_serialize["old_gallery_id"] = $row->id;
989
+ $advertisement_serialize["meta_key"] = "advertisement_settings";
990
+ $advertisement_serialize["meta_value"] = serialize($advertisement);
991
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $advertisement_serialize);
992
+ break;
993
+
994
+ case "roles_and_capabilities_settings":
995
+ $roles_data = array();
996
+ $roles_data["roles_and_capabilities"] = "1,1,1,0,0,0";
997
+ $roles_data["show_gallery_bank_top_bar_menu"] = "enable";
998
+ $roles_data["others_full_control_capability"] = "0";
999
+ $roles_data["administrator_privileges"] = "1,1,1,1,1,1,1,1,1,1,1,1";
1000
+ $roles_data["author_privileges"] = "0,1,1,0,0,0,1,0,0,0,1,0";
1001
+ $roles_data["editor_privileges"] = "0,0,0,0,0,0,1,0,1,0,0,0";
1002
+ $roles_data["contributor_privileges"] = "0,0,0,1,0,0,1,0,0,0,0,0";
1003
+ $roles_data["subscriber_privileges"] = "0,0,0,0,0,0,0,0,0,0,0,0";
1004
+ $roles_data["other_privileges"] = "0,0,0,0,0,0,0,0,0,0,0,0";
1005
+ $user_capabilities = get_others_capabilities_gallery_bank();
1006
+ $other_roles_array = array();
1007
+ $other_roles_access_array = array(
1008
+ "manage_options",
1009
+ "edit_plugins",
1010
+ "edit_posts",
1011
+ "publish_posts",
1012
+ "publish_pages",
1013
+ "edit_pages",
1014
+ "read"
1015
+ );
1016
+ foreach ($other_roles_access_array as $role) {
1017
+ if (in_array($role, $user_capabilities)) {
1018
+ array_push($other_roles_array, $role);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1019
  }
1020
+ }
1021
+ $roles_data["capabilities"] = $other_roles_array;
1022
+
1023
+ $roles_data_serialize = array();
1024
+ $roles_data_serialize["meta_id"] = $row->id;
1025
+ $roles_data_serialize["old_gallery_id"] = $row->id;
1026
+ $roles_data_serialize["meta_key"] = "roles_and_capabilities_settings";
1027
+ $roles_data_serialize["meta_value"] = serialize($roles_data);
1028
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $roles_data_serialize);
1029
+ break;
1030
+
1031
+ case "other_settings":
1032
+ $other_settings = array();
1033
+ $other_settings["remove_table_at_uninstall"] = "disable";
1034
+ $other_settings["automatic_updates"] = "disable";
1035
+
1036
+ $other_settings_serialize = array();
1037
+ $other_settings_serialize["meta_id"] = $row->id;
1038
+ $other_settings_serialize["old_gallery_id"] = $row->id;
1039
+ $other_settings_serialize["meta_key"] = "other_settings";
1040
+ $other_settings_serialize["meta_value"] = serialize($other_settings);
1041
+ $obj_dbHelper_gallery_bank_meta_table->insertCommand(gallery_bank_meta(), $other_settings_serialize);
1042
+ break;
1043
+ }
1044
+ }
1045
+ }
1046
+ }
1047
+
1048
+ $obj_dbHelper_gallery_bank = new dbHelper_install_script_gallery_bank();
1049
+ switch ($gallery_bank_version_number) {
1050
+ case "":
1051
+ table_gallery_bank();
1052
+ table_gallery_bank_meta();
1053
+
1054
+ global $wpdb, $current_user;
1055
+ $count_gallery = $wpdb->get_var
1056
+ (
1057
+ $wpdb->prepare
1058
+ (
1059
+ "SELECT count(id) FROM " . gallery_bank_parent() . " WHERE " . gallery_bank_parent() . ". type = %s", "gallery"
1060
+ )
1061
+ );
1062
+ if ($count_gallery == 0) {
1063
+ $gallery_parent_id = get_parent_id_gallery_bank("galleries");
1064
+ $insert_gallery = array();
1065
+ $insert_gallery["type"] = "gallery";
1066
+ $insert_gallery["parent_id"] = $gallery_parent_id;
1067
+ $gallery_id = $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_parent(), $insert_gallery);
1068
+
1069
+ $insert_gallery_meta = array();
1070
+ $insert_gallery_meta["gallery_title"] = "Be happy for this moment. This moment is your life.";
1071
+ $insert_gallery_meta["gallery_description"] = "<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</p>";
1072
+ $insert_gallery_meta["created_date"] = time();
1073
+ $insert_gallery_meta["edited_on"] = time();
1074
+ $insert_gallery_meta["gallery_cover_image"] = "demo2.jpg";
1075
+ $insert_gallery_meta["edited_by"] = $current_user->display_name;
1076
+ $insert_gallery_meta["author"] = $current_user->display_name;
1077
+
1078
+ $insert_gallery_data = array();
1079
+ $insert_gallery_data["meta_id"] = $gallery_id;
1080
+ $insert_gallery_data["meta_key"] = "gallery_data";
1081
+ $insert_gallery_data["meta_value"] = serialize($insert_gallery_meta);
1082
+ $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $insert_gallery_data);
1083
+
1084
+
1085
+ $image_meta_data = array();
1086
+
1087
+ $images = array("demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg", "demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg", "demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg", "demo1.jpg", "demo2.jpg", "demo3.jpg", "after.jpg", "bg-app.jpg");
1088
+ for ($flag = 0; $flag < count($images); $flag++) {
1089
+ $image_name = $images[$flag];
1090
+
1091
+ $image_data = get_thumbnail_dimension_gallery_bank();
1092
+ $fileName = wp_unique_filename(GALLERY_BANK_ORIGINAL_DIR, $image_name);
1093
+
1094
+ $src_file = GALLERY_BANK_PLUGIN_DIR_URL . "/assets/admin/images/" . $image_name;
1095
+ copy($src_file, GALLERY_BANK_ORIGINAL_DIR . $fileName);
1096
+ copy($src_file, GALLERY_BANK_UPLOAD_DIR . $fileName);
1097
+
1098
+ $thumbnail_image_name = $obj_dbHelper_gallery_bank->createThumbs_gallery_bank($image_name, $image_data);
1099
+ $image_exif_detail = $obj_dbHelper_gallery_bank->file_exif_information_gallery_bank(GALLERY_BANK_UPLOAD_DIR . $image_name, "FILE");
1100
+
1101
+ $image_meta_data["image_title"] = "Demo Image";
1102
+ $image_meta_data["image_name"] = $fileName;
1103
+
1104
+ $image_meta_data["enable_redirect"] = "";
1105
+ $image_meta_data["redirect_url"] = "http://";
1106
+ if ($flag === 1) {
1107
+ $image_meta_data["gallery_cover_image"] = "1";
1108
+ } else {
1109
+ $image_meta_data["gallery_cover_image"] = "";
1110
+ }
1111
+ $image_meta_data["width"] = intval($image_exif_detail["width"]);
1112
+ $image_meta_data["height"] = intval($image_exif_detail["height"]);
1113
+ $image_meta_data["mime_type"] = esc_attr($image_exif_detail["mime_type"]);
1114
+ $image_meta_data["aperture"] = esc_attr($image_exif_detail["exif_information"]["aperture"]);
1115
+ $image_meta_data["upload_type"] = "";
1116
+
1117
+ $image_meta_data["image_description"] = "";
1118
+ $image_meta_data["alt_text"] = "";
1119
+ $image_meta_data["sort_order"] = "";
1120
+ $image_meta_data["tags"] = array();
1121
+ $image_meta_data["upload_date"] = time();
1122
+ $image_meta_data["file_type"] = "image";
1123
+ $image_meta_data["exclude_image"] = "";
1124
+ $image_meta_data_insert = array();
1125
+ $image_meta_data_insert["meta_id"] = $gallery_id;
1126
+ $image_meta_data_insert["meta_key"] = "image_data";
1127
+ $image_meta_data_insert["meta_value"] = serialize($image_meta_data);
1128
+ $image_id = $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $image_meta_data_insert);
1129
+ }
1130
+ }
1131
+ break;
1132
+ default:
1133
+ global $wpdb;
1134
+ if (count($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "gallery_albums'")) != 0 && count($wpdb->get_var("SHOW TABLES LIKE '" . $wpdb->prefix . "gallery_pics'")) != 0) {
1135
+ table_gallery_bank();
1136
+ table_gallery_bank_meta();
1137
+ $get_albums_table_data = $wpdb->get_results
1138
+ (
1139
+ "SELECT * FROM " . $wpdb->prefix . "gallery_albums"
1140
+ );
1141
+ $get_albums_pics_table_data = $wpdb->get_results
1142
+ (
1143
+ "SELECT * FROM " . $wpdb->prefix . "gallery_pics"
1144
+ );
1145
+
1146
+ if (!function_exists("get_array_data_gallery_bank")) {
1147
+ function get_array_data_gallery_bank($id, $array) {
1148
+ $gallery_meta_data_unserialized_data = array();
1149
+ foreach ($array as $key => $val) {
1150
+ if ($val->album_id == $id) {
1151
+ array_push($gallery_meta_data_unserialized_data, $val);
1152
  }
1153
+ }
1154
+ return $gallery_meta_data_unserialized_data;
1155
+ }
1156
+ }
1157
+
1158
+ foreach ($get_albums_table_data as $value) {
1159
+ // insert gallery data
1160
+ $gallery_parent_id = get_parent_id_gallery_bank("galleries");
1161
+ $insert_gallery = array();
1162
+ $insert_gallery["type"] = "gallery";
1163
+ $insert_gallery["parent_id"] = $gallery_parent_id;
1164
+ $gallery_id = $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_parent(), $insert_gallery);
1165
+
1166
+ $insert_gallery_meta = array();
1167
+ $insert_gallery_meta["gallery_title"] = isset($value->album_name) ? $value->album_name : "";
1168
+ $insert_gallery_meta["gallery_description"] = isset($value->description) ? $value->description : "";
1169
+ $insert_gallery_meta["created_date"] = isset($value->album_date) ? strtotime($value->album_date) : 0;
1170
+ $insert_gallery_meta["edited_on"] = time();
1171
+ $insert_gallery_meta["gallery_cover_image"] = "";
1172
+ $insert_gallery_meta["edited_by"] = isset($value->author) ? $value->author : "";
1173
+ $insert_gallery_meta["author"] = isset($value->author) ? $value->author : "";
1174
+
1175
+ $insert_gallery_data = array();
1176
+ $insert_gallery_data["meta_id"] = $gallery_id;
1177
+ $insert_gallery_data["old_gallery_id"] = $value->album_id;
1178
+ $insert_gallery_data["meta_key"] = "gallery_data";
1179
+ $insert_gallery_data["meta_value"] = serialize($insert_gallery_meta);
1180
+ $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $insert_gallery_data);
1181
+
1182
+ $album_data_values = array();
1183
+
1184
+ $album_pics_data = get_array_data_gallery_bank($value->album_id, $get_albums_pics_table_data);
1185
+ $gallery_cover_image = "";
1186
+ foreach ($album_pics_data as $data) {
1187
+ // insert pic data
1188
+ $image_name = isset($data->thumbnail_url) ? $data->thumbnail_url : "";
1189
+
1190
+ $image_data = get_thumbnail_dimension_gallery_bank();
1191
+ $fileName = wp_unique_filename(GALLERY_BANK_ORIGINAL_DIR, $image_name);
1192
+
1193
+ $src_file = GALLERY_BANK_MAIN_URL . "gallery-uploads/" . $image_name;
1194
+ copy($src_file, GALLERY_BANK_ORIGINAL_DIR . $fileName);
1195
+ copy($src_file, GALLERY_BANK_UPLOAD_DIR . $fileName);
1196
+
1197
+ $thumbnail_image_name = $obj_dbHelper_gallery_bank->createThumbs_gallery_bank($image_name, $image_data);
1198
+ $image_exif_detail = $obj_dbHelper_gallery_bank->file_exif_information_gallery_bank(GALLERY_BANK_UPLOAD_DIR . $image_name, "FILE");
1199
+ if ($data->album_cover == 1) {
1200
+ $gallery_cover_image = $fileName;
1201
+ }
1202
+ $image_meta_data["image_title"] = isset($data->title) ? $data->title : "";
1203
+ $image_meta_data["image_name"] = $fileName;
1204
+
1205
+ $image_meta_data["enable_redirect"] = "";
1206
+ $image_meta_data["redirect_url"] = isset($data->url) ? $data->url : "http://";
1207
+ $image_meta_data["gallery_cover_image"] = isset($data->album_cover) && $data->album_cover == 1 ? 1 : "";
1208
+ $image_meta_data["width"] = intval($image_exif_detail["width"]);
1209
+ $image_meta_data["height"] = intval($image_exif_detail["height"]);
1210
+ $image_meta_data["mime_type"] = esc_attr($image_exif_detail["mime_type"]);
1211
+ $image_meta_data["aperture"] = esc_attr($image_exif_detail["exif_information"]["aperture"]);
1212
+ $image_meta_data["upload_type"] = "";
1213
+
1214
+ $image_meta_data["image_description"] = isset($data->description) ? $data->description : "";
1215
+ $image_meta_data["alt_text"] = "";
1216
+ $image_meta_data["sort_order"] = isset($data->sorting_order) ? $data->sorting_order : "";
1217
+ $image_meta_data["tags"] = array();
1218
+ $image_meta_data["upload_date"] = isset($data->date) ? strtotime($data->date) : 0;
1219
+ $image_meta_data["file_type"] = "image";
1220
+ $image_meta_data["exclude_image"] = "";
1221
+ $image_meta_data_insert = array();
1222
+ $image_meta_data_insert["meta_id"] = $gallery_id;
1223
+ $image_meta_data_insert["old_gallery_id"] = $data->album_id;
1224
+ $image_meta_data_insert["meta_key"] = "image_data";
1225
+ $image_meta_data_insert["meta_value"] = serialize($image_meta_data);
1226
+ $obj_dbHelper_gallery_bank->insertCommand(gallery_bank_meta(), $image_meta_data_insert);
1227
+ }
1228
+ // update gallery data
1229
+ $gallery_unserialized_data = $wpdb->get_var
1230
+ (
1231
+ $wpdb->prepare
1232
+ (
1233
+ "SELECT meta_value FROM " . gallery_bank_meta() . " WHERE meta_id = %d and meta_key = %s", $gallery_id, "gallery_data"
1234
+ )
1235
+ );
1236
+ $gallery_serialized_data = maybe_unserialize($gallery_unserialized_data);
1237
+ $gallery_serialized_data["gallery_cover_image"] = $gallery_cover_image;
1238
+
1239
+ $where = array();
1240
+ $update_gallery_data = array();
1241
+ $where["meta_key"] = "gallery_data";
1242
+ $where["meta_id"] = $gallery_id;
1243
+ $update_gallery_data["meta_value"] = serialize($gallery_serialized_data);
1244
+ $obj_dbHelper_gallery_bank->updateCommand(gallery_bank_meta(), $update_gallery_data, $where);
1245
+ }
1246
+ // Drop Tables
1247
+ $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "gallery_albums");
1248
+ $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "gallery_pics");
1249
+ $wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "gallery_settings");
1250
+ }
1251
+ break;
1252
+ }
1253
+ update_option("gallery-bank-pro-edition", "4.0");
1254
+ }
1255
  }
readme.txt CHANGED
@@ -557,6 +557,13 @@ is False in shortcode.
557
 
558
  == Changelog ==
559
 
 
 
 
 
 
 
 
560
  = 4.0.2 =
561
 
562
  * FIX: Lightbox Bug Fixed in Image Gallery
557
 
558
  == Changelog ==
559
 
560
+ = 4.0.3 =
561
+
562
+ * FIX: Lightbox Bugs Fixed in Image Gallery
563
+ * FIX: Code Optimized
564
+ * FIX: Obsolete Code Removed
565
+ * FIX: Headers Output Bug Fixed
566
+
567
  = 4.0.2 =
568
 
569
  * FIX: Lightbox Bug Fixed in Image Gallery
user-views/assets/lightboxes/foobox/css/font/foobox.eot CHANGED
Binary file
user-views/assets/lightboxes/foobox/css/font/foobox.svg CHANGED
@@ -6,74 +6,63 @@
6
  <font id="foobox" horiz-adv-x="1024">
7
  <font-face units-per-em="1024" ascent="960" descent="-64" />
8
  <missing-glyph horiz-adv-x="1024" />
9
- <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
- <glyph unicode="&#x2f;" glyph-name="stumble-upon" horiz-adv-x="1340" d="M0 249.344v185.344h229.376v-183.296q0-28.672 20.48-49.664t50.176-20.992 50.688 20.48 20.992 50.176v433.152q0 119.808 88.576 204.288t210.432 84.48 210.432-84.992 88.576-205.824v-94.208l-137.216-40.96-91.136 43.008v81.92q0 29.696-20.48 50.176t-50.176 20.48-50.688-20.48-20.992-50.176v-427.008q0-122.88-88.064-209.408t-210.944-86.528q-123.904 0-211.968 87.552t-88.064 212.48zM741.376 246.272v187.392l91.136-43.008 137.216 40.96v-188.416q0-29.696 20.48-50.688t50.176-20.992 50.176 20.992 20.48 50.688v191.488h229.376v-185.344q0-123.904-87.552-211.968t-211.456-88.064-211.968 87.040-88.064 209.92z" />
11
- <glyph unicode="&#x3b;" glyph-name="digg" horiz-adv-x="1148" d="M-1.024 189.952v380.928q0 13.312 13.312 13.312h180.224v132.096q0 14.336 13.312 14.336h100.352v-526.336q0-14.336-12.288-14.336h-294.912zM110.592 274.944h68.608q13.312 0 13.312 14.336v210.944h-68.608q-13.312 0-13.312-14.336v-210.944zM340.992 189.952v380.928q0 13.312 13.312 13.312h100.352v-379.904q0-14.336-12.288-14.336h-101.376zM340.992 645.632v70.656q0 14.336 12.288 14.336h101.376v-70.656q0-14.336-12.288-14.336h-101.376zM493.568 189.952v380.928q0 13.312 13.312 13.312h294.912v-516.096q0-13.312-13.312-13.312h-294.912l1.024 70.656q0 14.336 12.288 14.336h180.224v50.176h-193.536zM606.208 274.944h68.608q12.288 0 12.288 14.336v210.944h-68.608q-12.288 0-12.288-14.336v-210.944zM840.704 125.44q0 14.336 13.312 14.336h180.224v50.176h-193.536v380.928q0 13.312 13.312 13.312h293.888v-516.096q0-13.312-12.288-13.312h-294.912v70.656zM952.32 274.944h68.608q13.312 0 13.312 14.336v210.944h-68.608q-13.312 0-13.312-14.336v-210.944z" />
12
- <glyph unicode="&#x3e;" glyph-name="reddit" horiz-adv-x="1232" d="M0 467.456q0 63.488 50.688 108.544t115.2 45.056q63.488 0 107.52-36.864h5.12q137.216 83.968 343.040 83.968l5.12 4.096 71.68 273.408 247.808-36.864q0-1.024 2.048-1.024 1.024 0 0 1.024 2.048 1.024 11.776 15.872t14.848 18.944q34.816 32.768 83.968 32.768 50.176 0 84.48-33.28t34.304-83.456-34.304-86.016-84.48-35.84q-58.368 0-89.088 39.424t-30.72 98.816q-2.048-1.024-99.84 13.312t-112.128 17.408h-3.072q-2.048-2.048-16.896-54.784t-30.72-111.616-17.92-65.024v-3.072l5.12-4.096q73.728 0 151.040-20.992t133.632-58.88l3.072-2.048q1.024 1.024 2.048 1.024t2.048 1.024q25.6 18.432 36.352 25.6t30.208 13.312 44.032 6.144q69.632 0 118.784-49.152t49.152-119.808q0-48.128-27.136-88.064t-71.168-61.44q0-199.68-266.24-310.272-41.984-18.432-57.344-23.552-32.768-10.24-93.184-19.456t-95.232-9.216q-122.88 0-236.544 35.84-2.048 2.048-73.728 38.912-97.28 52.224-156.16 118.784t-58.88 159.744h-5.12q-33.792 17.408-60.416 51.2l-9.216 12.288q-15.36 27.648-19.456 46.592t-4.096 51.712zM34.816 455.168q0-67.584 58.368-114.688 5.12 60.416 49.152 118.784t103.424 103.424q-37.888 26.624-83.968 26.624-50.176 0-88.576-41.472t-38.4-92.672zM139.264 305.664q0-55.296 31.744-106.496t81.408-87.552 104.96-60.928 107.52-34.816q76.8-14.336 149.504-14.336 125.952 0 238.592 40.448t189.44 125.44h-3.072q30.72 38.912 44.032 70.144t13.312 74.24q0 55.296-27.136 105.472t-71.168 86.016-94.208 61.952-102.4 39.424q-87.040 23.552-185.344 23.552-75.776 0-155.136-18.432t-153.6-55.296-121.344-101.888-47.104-146.944zM329.728 380.416q0 37.888 23.040 60.928t60.928 23.040 63.488-23.040 25.6-60.928q0-36.864-26.112-61.44t-62.976-24.576-60.416 24.576-23.552 61.44zM366.592 212.48h45.056q25.6-46.080 81.408-70.144t114.176-24.064q59.392 0 112.64 24.064t86.016 70.144h41.984q-25.6-63.488-95.232-98.304t-145.408-34.816q-73.728 0-144.896 35.328t-95.744 97.792zM710.656 380.416q0 38.912 23.552 61.44t62.464 22.528q34.816 0 59.392-24.576t24.576-59.392-24.576-60.416-59.392-25.6q-37.888 0-61.952 24.064t-24.064 61.952zM971.776 859.648q0-35.84 25.6-61.44t61.44-25.6q36.864 0 60.416 25.088t23.552 61.952q0 34.816-24.576 59.392t-59.392 24.576-60.928-25.088-26.112-58.88zM986.112 571.904q56.32-36.864 97.28-94.72t57.344-122.368q60.416 44.032 60.416 98.304 0 59.392-36.352 102.4t-94.72 43.008q-46.080 0-83.968-26.624z" />
13
- <glyph unicode="&#x74;" glyph-name="tumbler" horiz-adv-x="630" d="M0 556.544v145.408q61.44 20.48 103.424 56.32 41.984 33.792 68.608 88.064 26.624 52.224 35.84 130.048h146.432v-259.072h242.688v-160.768h-242.688v-262.144q0-88.064 9.216-114.688 9.216-24.576 34.816-39.936 34.816-20.48 77.824-20.48 78.848 0 154.624 50.176v-160.768q-64.512-31.744-118.784-44.032-53.248-12.288-114.688-12.288-69.632 0-124.928 17.408-56.32 19.456-91.136 51.2-36.864 31.744-53.248 69.632-14.336 34.816-14.336 107.52v358.4h-113.664z" />
14
- <glyph unicode="&#xe000;" glyph-name="arrows-default-prev" horiz-adv-x="876" d="M876.856 448v-73.142q0-30.286-18.572-51.714t-48.286-21.428h-402.286l167.428-168q21.714-20.572 21.714-51.428t-21.714-51.428l-42.858-43.428q-21.142-21.142-51.428-21.142-29.714 0-52 21.142l-372 372.572q-21.142 21.142-21.142 51.428 0 29.714 21.142 52l372 371.428q21.714 21.714 52 21.714 29.714 0 51.428-21.714l42.858-42.286q21.714-21.714 21.714-52t-21.714-52l-167.428-167.428h402.286q29.714 0 48.286-21.428t18.572-51.714z" />
15
- <glyph unicode="&#xe001;" glyph-name="next-default-next" horiz-adv-x="876" d="M840.286 411.428q0-30.858-21.142-52l-372-372q-22.286-21.142-52-21.142-29.142 0-51.428 21.142l-42.858 42.858q-21.714 21.714-21.714 52t21.714 52l167.428 167.428h-402.286q-29.714 0-48.286 21.428t-18.572 51.714v73.142q0 30.286 18.572 51.714t48.286 21.428h402.286l-167.428 168q-21.714 20.572-21.714 51.428t21.714 51.428l42.858 42.858q21.714 21.714 51.428 21.714 30.286 0 52-21.714l372-372q21.142-20 21.142-51.428z" />
16
- <glyph unicode="&#xe002;" glyph-name="close-default" horiz-adv-x="804" d="M741.428 204.572q0-22.858-16-38.858l-77.714-77.714q-16-16-38.858-16t-38.858 16l-168 168-168-168q-16-16-38.858-16t-38.858 16l-77.714 77.714q-16 16-16 38.858t16 38.858l168 168-168 168q-16 16-16 38.858t16 38.858l77.714 77.714q16 16 38.858 16t38.858-16l168-168 168 168q16 16 38.858 16t38.858-16l77.714-77.714q16-16 16-38.858t-16-38.858l-168-168 168-168q16-16 16-38.858z" />
17
- <glyph unicode="&#xe003;" glyph-name="play-default" horiz-adv-x="804" d="M790.572 430.286l-758.858-421.714q-13.142-7.428-22.572-1.714t-9.428 20.572v841.142q0 14.858 9.428 20.572t22.572-1.714l758.858-421.714q13.142-7.428 13.142-17.714t-13.142-17.714z" />
18
- <glyph unicode="&#xe004;" glyph-name="pause-default" horiz-adv-x="876" d="M876.856 850.286v-804.572q0-14.858-10.858-25.714t-25.714-10.858h-292.572q-14.858 0-25.714 10.858t-10.858 25.714v804.572q0 14.858 10.858 25.714t25.714 10.858h292.572q14.858 0 25.714-10.858t10.858-25.714zM364.856 850.286v-804.572q0-14.858-10.858-25.714t-25.714-10.858h-292.572q-14.858 0-25.714 10.858t-10.858 25.714v804.572q0 14.858 10.858 25.714t25.714 10.858h292.572q14.858 0 25.714-10.858t10.858-25.714z" />
19
- <glyph unicode="&#xe005;" glyph-name="spinner-1" horiz-adv-x="896" d="M283.428 192q0-34.286-24.286-58.286t-58-24q-34.286 0-58.286 24t-24 58.286 24 58.286 58.286 24q33.714 0 58-24t24.286-58.286zM530.286 82.286q0-30.286-21.428-51.714t-51.714-21.428-51.714 21.428-21.428 51.714 21.428 51.714 51.714 21.428 51.714-21.428 21.428-51.714zM182.858 448q0-37.714-26.858-64.572t-64.572-26.858-64.572 26.858-26.858 64.572 26.858 64.572 64.572 26.858 64.572-26.858 26.858-64.572zM777.142 192q0-26.286-18.858-45.142t-45.142-18.858-45.142 18.858-18.858 45.142 18.858 45.142 45.142 18.858 45.142-18.858 18.858-45.142zM301.714 704q0-41.714-29.428-71.142t-71.142-29.428-71.142 29.428-29.428 71.142 29.428 71.142 71.142 29.428 71.142-29.428 29.428-71.142zM566.858 813.714q0-45.714-32-77.714t-77.714-32-77.714 32-32 77.714 32 77.714 77.714 32 77.714-32 32-77.714zM877.714 448q0-22.858-16-38.858t-38.858-16-38.858 16-16 38.858 16 38.858 38.858 16 38.858-16 16-38.858zM758.858 704q0-18.858-13.428-32.286t-32.286-13.428-32.286 13.428-13.428 32.286 13.428 32.286 32.286 13.428 32.286-13.428 13.428-32.286z" />
20
- <glyph unicode="&#xe006;" glyph-name="google-plus" horiz-adv-x="1212" d="M0 135.786q0 89.058 91.104 158.666t220.084 69.608h55.278q-42.994 40.946-42.994 88.034 0 29.686 16.378 59.372-10.236-1.024-29.686-1.024-106.46 0-174.020 66.538t-67.56 163.784q0 93.152 83.94 162.76t191.422 69.608h317.332l-70.632-51.182h-100.318q48.112-18.426 75.238-69.608t27.126-113.626q0-95.2-90.082-165.832-37.876-29.686-49.136-47.088t-11.26-42.994q0-19.45 27.638-49.136t55.278-50.158q62.442-44.016 86.498-90.082t24.056-115.672q0-92.128-83.94-160.202t-227.25-68.072q-136.146 0-230.32 51.182t-94.176 135.122zM114.648 169.568q0-70.632 59.884-120.278t148.94-49.646q121.814 0 176.58 45.040t54.766 119.766q0 19.45-4.094 32.756-3.070 11.26-7.166 20.984t-12.284 19.45-14.332 16.378-19.962 16.89-20.984 15.354-25.592 17.914-26.614 17.914q-39.922 12.284-78.82 12.284-92.128 1.024-161.224-48.112t-69.096-116.696zM182.21 741.786q11.26-80.868 61.93-139.216t112.090-59.372q60.396-2.048 96.222 53.23t25.592 136.146-60.908 137.168-112.090 58.348-97.246-52.206-25.592-134.098zM750.334 717.22v51.182h204.73v204.73h51.182v-204.73h205.754v-51.182h-205.754v-205.754h-51.182v205.754h-204.73z" />
21
- <glyph unicode="&#xe007;" glyph-name="pinterest" horiz-adv-x="793" d="M0 589.312q0 64.512 27.136 128t77.824 117.76 133.12 88.064 182.784 33.792q162.816 0 267.264-100.352t104.448-236.544q0-175.104-88.576-289.28t-228.864-114.176q-46.080 0-86.528 21.504t-56.832 52.224l-40.96-161.792q-5.12-19.456-13.312-39.424t-17.92-38.4-19.456-34.816-19.456-30.72-16.896-24.064-13.312-16.896l-6.144-8.192q-3.072-4.096-8.192-3.072t-6.144 6.144q0 1.024-1.536 14.336t-3.072 28.16-3.072 38.4-1.024 45.568 3.072 48.64 7.68 49.152q11.264 48.128 75.776 320.512-8.192 16.384-13.312 39.424t-5.12 37.376l-1.024 15.36q0 65.536 33.28 109.056t80.384 43.52q37.888 0 58.88-25.088t20.992-62.976q0-23.552-8.704-57.856t-23.040-78.848-20.48-72.192q-10.24-46.080 17.92-79.872t75.264-33.792q80.896 0 133.632 91.648t52.736 221.696q0 99.328-64.512 162.304t-180.224 62.976q-129.024 0-209.408-82.944t-80.384-198.656q0-68.608 38.912-115.712 13.312-15.36 8.192-32.768-2.048-5.12-6.144-23.552t-6.144-23.552q-2.048-11.264-10.24-14.848t-18.432 0.512q-60.416 24.576-90.624 84.48t-30.208 139.776z" />
22
- <glyph unicode="&#xe008;" glyph-name="linkedin" horiz-adv-x="1064" d="M-5.116 852.114q0 51.154 35.808 84.404t93.1 33.25q56.27 0 91.054-32.738 35.808-33.762 35.808-87.984 0-49.108-34.784-81.846-35.808-33.762-94.124-33.762h-1.024q-56.27 0-91.054 33.762t-34.784 84.916zM8.184-43.078v683.416h227.124v-683.416h-227.124zM361.146-43.078h227.124v381.608q0 35.808 8.184 55.246 14.324 34.784 43.48 58.826t73.15 24.042q114.584 0 114.584-154.484v-365.238h227.124v391.838q0 151.416-71.616 229.68t-189.27 78.266q-131.976 0-205.638-113.562v-2.046h-1.024l1.024 2.046v97.192h-227.124q2.046-32.738 2.046-203.592t-2.046-479.824z" />
23
- <glyph unicode="&#xe009;" glyph-name="twitter" horiz-adv-x="1258" d="M0 52.19q30.682-3.068 61.366-3.068 180.006 0 321.148 110.458-83.866 1.022-150.346 51.138t-91.026 127.846q20.456-4.092 48.070-4.092 35.796 0 68.526 9.204-90.004 17.386-148.812 88.47t-58.808 164.154v3.068q54.206-30.682 117.618-31.706-53.184 34.774-84.378 91.538t-31.194 123.244q0 69.548 35.796 129.892 96.14-119.664 234.724-190.746t297.114-79.264q-7.16 33.752-7.16 59.32 0 106.368 75.684 182.052t183.074 75.684q111.482 0 188.188-81.822 88.98 18.41 163.642 63.412-28.638-93.072-112.504-143.186 74.662 9.204 147.278 40.91-49.092-76.708-127.846-133.982v-33.752q0-103.3-30.172-207.11t-92.048-198.416-147.79-168.244-206.086-117.106-258.248-43.468q-213.758 0-395.81 115.572z" />
24
- <glyph unicode="&#xe00a;" glyph-name="facebook" horiz-adv-x="836" d="M286.416 426.496v195.584h157.696v98.304q0 106.496 69.12 181.248t167.424 74.752h156.672v-195.584h-156.672q-15.36 0-27.648-16.896t-12.288-41.472v-100.352h196.608v-195.584h-196.608v-474.112h-196.608v474.112h-157.696z" />
25
- <glyph unicode="&#xe00b;" glyph-name="buffer" horiz-adv-x="1002" d="M0 163.328q11.264 15.36 32.256 26.112t50.176 20.48 41.472 15.872q19.456 0 34.304-4.608t34.304-15.36 25.6-12.8q48.128-21.504 266.24-121.856 19.456-4.096 36.352 0t40.448 17.92 24.576 14.848q20.48 9.216 78.336 35.328t89.6 40.448q4.096 2.048 42.496 21.504t61.952 24.576q13.312 2.048 28.16-1.024t24.064-7.68 23.552-13.312 18.432-10.752 15.872-6.144 18.944-8.192 11.264-11.264q3.072-4.096 4.096-14.336-10.24-13.312-31.744-24.576t-52.224-22.528-40.96-16.384q-44.032-20.48-131.584-62.976t-131.584-62.976q-7.168-3.072-21.504-11.776t-24.064-13.312-26.112-11.264-28.16-7.168-30.208 1.536l-270.336 125.952q-6.144 3.072-32.768 14.336t-52.736 22.528-54.784 24.576-47.616 24.064-22.016 16.896q-4.096 4.096-4.096 13.312zM0 437.76q11.264 15.36 32.256 25.6t51.2 20.48 42.496 15.36q19.456 0 34.816-4.608t35.328-15.36 26.112-13.824q43.008-19.456 129.536-59.392t130.56-60.416q19.456-5.12 37.888-0.512t39.936 17.408 25.6 14.848q69.632 32.768 163.84 73.728 11.264 5.12 32.256 16.896t39.424 19.968 36.864 11.264q16.384 3.072 32.256-1.024t38.4-17.408 23.552-13.312q5.12-3.072 15.872-6.656t18.432-8.192 11.776-10.752q3.072-5.12 4.096-14.336-10.24-14.336-32.256-26.112t-53.76-23.040-41.984-16.384q-49.152-23.552-138.752-66.56t-125.44-60.416q-7.168-3.072-26.624-14.336t-29.696-15.36-33.28-10.24-36.352 0q-219.136 103.424-266.24 124.928-6.144 3.072-45.056 19.456t-71.168 30.72-62.976 30.208-34.816 23.040q-4.096 4.096-4.096 14.336zM0 711.168q10.24 15.36 32.256 27.136t53.76 23.040 41.984 16.384l356.352 165.888q30.72 0 54.784-7.168t57.856-26.624 40.96-22.528q39.936-18.432 119.808-55.808t119.808-55.808q4.096-2.048 37.376-15.36t55.808-24.576 27.648-20.48q3.072-4.096 4.096-13.312-9.216-13.312-26.624-23.040t-44.544-19.456-35.328-13.824q-48.128-22.528-143.36-68.096t-142.336-68.096q-6.144-3.072-20.48-11.264t-23.552-12.8-25.6-10.752-27.648-6.144-28.672 1.024q-250.88 116.736-262.144 121.856-4.096 2.048-64.512 28.16t-104.448 47.616-49.152 30.72q-4.096 4.096-4.096 13.312z" />
26
- <glyph unicode="&#xe00c;" glyph-name="external-link" d="M704 384l128 128v-512h-768v768h512l-128-128h-256v-512h512zM960 896v-352l-130.744 130.744-354.746-354.744h-90.51v90.512l354.744 354.744-130.744 130.744z" />
27
- <glyph unicode="&#xe00d;" glyph-name="minimize" d="M64 384h384v-384l-138.26 138.26-202-202-107.48 107.48 202 202zM821.74 245.74l202-202-107.48-107.48-202 202-138.26-138.26v384h384zM960 512h-384v384l138.26-138.26 202 202 107.48-107.48-202-202zM309.74 757.74l138.26 138.26v-384h-384l138.26 138.26-202 202 107.48 107.48z" />
28
- <glyph unicode="&#xe00e;" glyph-name="maximize" d="M1024 960v-384l-138.26 138.26-212-212-107.48 107.48 212 212-138.26 138.26zM245.74 821.74l212-212-107.48-107.48-212 212-138.26-138.26v384h384zM885.74 181.74l138.26 138.26v-384h-384l138.26 138.26-212 212 107.48 107.48zM457.74 286.26l-212-212 138.26-138.26h-384v384l138.26-138.26 212 212z" />
29
- <glyph unicode="&#xe00f;" glyph-name="download" d="M512 384l256 256h-192v256h-128v-256h-192zM744.726 488.728l-71.74-71.742 260.080-96.986-421.066-157.018-421.066 157.018 260.080 96.986-71.742 71.742-279.272-104.728v-256l512-192 512 192v256z" />
30
- <glyph unicode="&#xe010;" glyph-name="email" d="M960 832h-896c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM896 704v-46l-384-226.286-384 226.286v46h768zM128 192v354.572l384-226.286 384 226.286v-354.572h-768z" />
31
- <glyph unicode="&#xe011;" glyph-name="spinner-2" d="M1024 448c-1.278 66.862-15.784 133.516-42.576 194.462-26.704 61-65.462 116.258-113.042 161.92-47.552 45.696-103.944 81.82-164.984 105.652-61.004 23.924-126.596 35.352-191.398 33.966-64.81-1.282-129.332-15.374-188.334-41.356-59.048-25.896-112.542-63.47-156.734-109.576-44.224-46.082-79.16-100.708-102.186-159.798-23.114-59.062-34.128-122.52-32.746-185.27 1.286-62.76 14.964-125.148 40.134-182.206 25.088-57.1 61.476-108.828 106.11-151.548 44.61-42.754 97.472-76.504 154.614-98.72 57.118-22.304 118.446-32.902 179.142-31.526 60.708 1.29 120.962 14.554 176.076 38.914 55.15 24.282 105.116 59.48 146.366 102.644 41.282 43.14 73.844 94.236 95.254 149.43 13.034 33.458 21.88 68.4 26.542 103.798 1.246-0.072 2.498-0.12 3.762-0.12 35.346 0 64 28.652 64 64 0 1.796-0.094 3.572-0.238 5.332h0.238zM922.306 278.052c-23.472-53.202-57.484-101.4-99.178-141.18-41.67-39.81-91-71.186-144.244-91.79-53.228-20.678-110.29-30.452-166.884-29.082-56.604 1.298-112.596 13.736-163.82 36.474-51.25 22.666-97.684 55.49-135.994 95.712-38.338 40.198-68.528 87.764-88.322 139.058-19.87 51.284-29.228 106.214-27.864 160.756 1.302 54.552 13.328 108.412 35.254 157.69 21.858 49.3 53.498 93.97 92.246 130.81 38.73 36.868 84.53 65.87 133.874 84.856 49.338 19.060 102.136 28.006 154.626 26.644 52.5-1.306 104.228-12.918 151.562-34.034 47.352-21.050 90.256-51.502 125.624-88.782 35.396-37.258 63.21-81.294 81.39-128.688 18.248-47.392 26.782-98.058 25.424-148.496h0.238c-0.144-1.76-0.238-3.536-0.238-5.332 0-33.012 24.992-60.174 57.086-63.624-6.224-34.822-16.53-68.818-30.78-100.992z" />
32
- <glyph unicode="&#xe012;" glyph-name="spinner-default" d="M192 448c0 12.18 0.704 24.196 2.030 36.022l-184.98 60.104c-5.916-31.14-9.050-63.264-9.050-96.126 0-147.23 62.166-279.922 161.654-373.324l114.284 157.296c-52.124 56.926-83.938 132.758-83.938 216.028zM832 448c0-83.268-31.812-159.102-83.938-216.028l114.284-157.296c99.488 93.402 161.654 226.094 161.654 373.324 0 32.862-3.132 64.986-9.048 96.126l-184.98-60.104c1.324-11.828 2.028-23.842 2.028-36.022zM576 761.592c91.934-18.662 169.544-76.742 214.45-155.826l184.978 60.102c-73.196 155.42-222.24 268.060-399.428 290.156v-194.432zM233.55 605.768c44.906 79.084 122.516 137.164 214.45 155.826v194.43c-177.188-22.096-326.23-134.736-399.426-290.154l184.976-60.102zM644.556 156.672c-40.39-18.408-85.272-28.672-132.556-28.672s-92.166 10.264-132.554 28.67l-114.292-157.31c73.206-40.366 157.336-63.36 246.846-63.36s173.64 22.994 246.848 63.36l-114.292 157.312z" />
33
- <glyph unicode="&#xe013;" glyph-name="spinner-4" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM655.53 719.53c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM832 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM719.53 176.47c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM448.002 64c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM176.472 176.47c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM144.472 719.53c0 0 0 0 0 0 0 53.019 42.981 96 96 96s96-42.981 96-96c0 0 0 0 0 0 0-53.019-42.981-96-96-96s-96 42.981-96 96zM56 448c0 39.765 32.235 72 72 72s72-32.235 72-72c0-39.765-32.235-72-72-72s-72 32.235-72 72z" />
34
- <glyph unicode="&#xe014;" glyph-name="spinner-5" d="M512 960c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96s96 42.98 96 96c0 282.77-229.23 512-512 512zM512-64c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-282.77 229.23-512 512-512z" />
35
- <glyph unicode="&#xe015;" glyph-name="spinner-6" d="M0.042 446.382l-0.022-0.004c0 0 0.012-0.090 0.028-0.222 0.11-3.878 0.55-7.676 1.322-11.352 0.204-1.746 0.428-3.66 0.674-5.774 0.222-1.886 0.46-3.914 0.718-6.078 0.374-2.566 0.77-5.292 1.19-8.176 0.856-5.746 1.8-12.124 2.908-18.958 1.348-6.446 2.804-13.414 4.364-20.864 0.71-3.718 1.776-7.504 2.786-11.406 1.024-3.89 2.078-7.894 3.16-12.004 0.566-2.042 1.040-4.132 1.708-6.208 0.656-2.074 1.32-4.176 1.988-6.3 1.348-4.234 2.726-8.566 4.136-12.988 0.352-1.106 0.708-2.21 1.064-3.324 0.408-1.102 0.814-2.208 1.226-3.316 0.826-2.218 1.658-4.458 2.502-6.714 1.696-4.496 3.422-9.078 5.18-13.742 1.968-4.566 3.97-9.214 6.004-13.934 1.018-2.348 2.044-4.714 3.078-7.098 1.048-2.376 2.27-4.704 3.408-7.074 2.322-4.714 4.678-9.496 7.062-14.332 2.47-4.786 5.208-9.512 7.846-14.328 1.336-2.398 2.68-4.808 4.028-7.23 1.368-2.41 2.902-4.75 4.356-7.14 2.95-4.738 5.93-9.524 8.934-14.348 12.64-18.894 26.676-37.566 42.21-55.278 15.712-17.578 32.726-34.25 50.692-49.602 18.18-15.136 37.264-28.902 56.726-41.114 19.604-12.036 39.644-22.312 59.376-31.144 5.004-2.040 9.964-4.062 14.878-6.066 2.462-0.972 4.868-2.032 7.336-2.918 2.47-0.868 4.93-1.734 7.376-2.594 4.898-1.684 9.678-3.468 14.484-4.992 4.832-1.43 9.604-2.844 14.312-4.242 2.356-0.672 4.66-1.426 7.004-2.012 2.346-0.574 4.676-1.14 6.986-1.704 4.606-1.118 9.142-2.214 13.604-3.296 4.5-0.868 8.926-1.722 13.27-2.558 2.166-0.41 4.31-0.82 6.434-1.222 1.062-0.2 2.118-0.398 3.166-0.598 1.060-0.148 2.118-0.292 3.166-0.442 4.192-0.582 8.292-1.152 12.3-1.71 1.998-0.274 3.972-0.546 5.922-0.816 1.946-0.286 3.904-0.378 5.814-0.57 3.822-0.336 7.544-0.664 11.164-0.98 3.616-0.304 7.104-0.688 10.526-0.738 0.23-0.008 0.452-0.016 0.682-0.026 0.614-34.812 29.008-62.846 63.968-62.846 0.542 0 1.080 0.028 1.62 0.042v-0.022c0 0 0.090 0.012 0.224 0.028 3.878 0.11 7.674 0.55 11.35 1.322 1.748 0.204 3.662 0.426 5.776 0.672 1.884 0.222 3.912 0.462 6.076 0.718 2.566 0.376 5.292 0.772 8.176 1.192 5.746 0.856 12.124 1.8 18.958 2.908 6.446 1.348 13.414 2.804 20.864 4.362 3.718 0.712 7.504 1.778 11.406 2.786 3.892 1.026 7.894 2.080 12.004 3.162 2.044 0.566 4.132 1.040 6.208 1.708 2.074 0.656 4.174 1.318 6.3 1.988 4.232 1.348 8.564 2.726 12.988 4.134 1.104 0.354 2.21 0.708 3.324 1.066 1.1 0.406 2.206 0.814 3.316 1.226 2.216 0.824 4.456 1.658 6.714 2.5 4.496 1.698 9.078 3.424 13.74 5.182 4.568 1.968 9.216 3.97 13.936 6.004 2.348 1.018 4.714 2.044 7.098 3.078 2.376 1.048 4.702 2.27 7.074 3.408 4.714 2.322 9.494 4.678 14.33 7.062 4.786 2.47 9.512 5.208 14.328 7.846 2.398 1.336 4.808 2.678 7.23 4.028 2.41 1.366 4.75 2.9 7.14 4.354 4.738 2.952 9.524 5.93 14.35 8.936 18.89 12.64 37.564 26.674 55.278 42.21 17.574 15.712 34.248 32.726 49.602 50.69 15.136 18.182 28.902 37.264 41.112 56.728 12.036 19.602 22.314 39.644 31.142 59.376 2.042 5.002 4.062 9.964 6.068 14.878 0.974 2.462 2.032 4.868 2.918 7.334 0.87 2.472 1.732 4.932 2.592 7.376 1.686 4.898 3.468 9.678 4.994 14.484 1.432 4.832 2.846 9.604 4.24 14.31 0.674 2.358 1.43 4.66 2.016 7.004 0.57 2.348 1.138 4.676 1.702 6.988 1.118 4.606 2.216 9.14 3.296 13.602 0.868 4.502 1.72 8.928 2.558 13.272 0.41 2.164 0.818 4.308 1.222 6.434 0.2 1.060 0.398 2.116 0.596 3.164 0.148 1.062 0.296 2.118 0.444 3.168 0.582 4.19 1.152 8.292 1.708 12.3 0.278 1.996 0.55 3.97 0.82 5.922 0.284 1.946 0.376 3.902 0.568 5.812 0.336 3.822 0.664 7.546 0.98 11.164 0.304 3.616 0.686 7.106 0.738 10.528 0.020 0.534 0.040 1.044 0.058 1.574 35.224 0.146 63.732 28.738 63.732 63.992 0 0.542-0.028 1.080-0.042 1.62h0.022c0 0-0.012 0.090-0.028 0.224-0.11 3.878-0.55 7.674-1.322 11.35-0.204 1.748-0.428 3.662-0.674 5.776-0.222 1.886-0.46 3.914-0.718 6.076-0.374 2.566-0.77 5.294-1.19 8.176-0.856 5.746-1.8 12.124-2.908 18.958-1.348 6.444-2.804 13.414-4.364 20.862-0.71 3.72-1.776 7.506-2.786 11.408-1.024 3.892-2.078 7.894-3.16 12.002-0.566 2.044-1.040 4.134-1.708 6.208-0.656 2.076-1.32 4.174-1.988 6.3-1.348 4.234-2.726 8.566-4.136 12.99-0.352 1.102-0.708 2.21-1.064 3.324-0.408 1.1-0.814 2.206-1.226 3.316-0.826 2.216-1.658 4.454-2.502 6.714-1.696 4.498-3.422 9.080-5.18 13.74-1.968 4.57-3.97 9.216-6.004 13.936-1.020 2.348-2.044 4.714-3.078 7.098-1.048 2.376-2.27 4.702-3.408 7.076-2.322 4.714-4.678 9.494-7.062 14.33-2.47 4.786-5.208 9.512-7.846 14.328-1.336 2.398-2.68 4.808-4.028 7.23-1.368 2.41-2.902 4.75-4.356 7.14-2.95 4.74-5.93 9.524-8.934 14.35-12.64 18.892-26.676 37.564-42.21 55.278-15.712 17.576-32.726 34.25-50.692 49.602-18.18 15.136-37.264 28.902-56.726 41.112-19.604 12.036-39.644 22.314-59.376 31.142-5.004 2.040-9.964 4.062-14.878 6.068-2.462 0.974-4.868 2.032-7.336 2.918-2.47 0.87-4.93 1.734-7.376 2.592-4.898 1.684-9.678 3.468-14.484 4.994-4.832 1.432-9.604 2.846-14.312 4.242-2.356 0.672-4.66 1.428-7.004 2.014-2.346 0.572-4.676 1.138-6.986 1.702-4.606 1.118-9.142 2.216-13.604 3.298-4.5 0.868-8.926 1.72-13.27 2.558-2.166 0.412-4.31 0.82-6.434 1.222-1.062 0.2-2.118 0.398-3.166 0.596-1.060 0.148-2.118 0.296-3.166 0.442-4.192 0.584-8.292 1.154-12.3 1.71-1.998 0.276-3.972 0.55-5.922 0.82-1.946 0.284-3.904 0.376-5.814 0.57-3.822 0.336-7.544 0.664-11.164 0.98-3.616 0.304-7.104 0.686-10.526 0.738-0.852 0.032-1.674 0.062-2.512 0.092-0.65 34.78-29.028 62.778-63.966 62.778-0.542 0-1.080-0.028-1.62-0.042l-0.002 0.022c0 0-0.090-0.012-0.222-0.028-3.878-0.11-7.676-0.55-11.352-1.322-1.748-0.204-3.662-0.426-5.776-0.672-1.884-0.222-3.912-0.462-6.076-0.718-2.566-0.376-5.292-0.772-8.176-1.192-5.746-0.856-12.124-1.8-18.958-2.908-6.446-1.348-13.414-2.804-20.864-4.362-3.718-0.712-7.504-1.778-11.406-2.786-3.892-1.026-7.894-2.080-12.004-3.162-2.044-0.566-4.132-1.040-6.208-1.708-2.074-0.656-4.174-1.318-6.3-1.988-4.232-1.348-8.564-2.726-12.988-4.134-1.104-0.354-2.21-0.708-3.324-1.066-1.1-0.406-2.206-0.814-3.316-1.226-2.216-0.824-4.456-1.658-6.714-2.5-4.496-1.698-9.078-3.424-13.74-5.182-4.568-1.968-9.216-3.97-13.936-6.004-2.348-1.018-4.714-2.044-7.098-3.078-2.376-1.048-4.702-2.27-7.074-3.408-4.714-2.322-9.494-4.678-14.33-7.062-4.786-2.47-9.512-5.208-14.328-7.846-2.398-1.336-4.808-2.678-7.23-4.028-2.41-1.366-4.75-2.9-7.14-4.354-4.738-2.952-9.524-5.93-14.35-8.936-18.89-12.64-37.564-26.674-55.278-42.21-17.574-15.712-34.248-32.726-49.602-50.69-15.136-18.182-28.902-37.264-41.112-56.728-12.036-19.602-22.314-39.644-31.142-59.376-2.042-5.002-4.062-9.964-6.068-14.878-0.974-2.462-2.032-4.868-2.918-7.334-0.87-2.472-1.732-4.932-2.592-7.376-1.686-4.898-3.468-9.678-4.994-14.484-1.432-4.832-2.846-9.604-4.24-14.31-0.674-2.358-1.43-4.66-2.016-7.004-0.57-2.348-1.138-4.676-1.702-6.988-1.118-4.606-2.216-9.14-3.296-13.602-0.868-4.502-1.72-8.928-2.558-13.272-0.41-2.164-0.818-4.308-1.222-6.434-0.2-1.060-0.398-2.116-0.596-3.164-0.148-1.062-0.296-2.118-0.444-3.168-0.582-4.19-1.152-8.292-1.708-12.3-0.278-1.996-0.55-3.97-0.82-5.922-0.284-1.946-0.376-3.902-0.568-5.812-0.336-3.822-0.664-7.546-0.98-11.164-0.304-3.616-0.686-7.106-0.738-10.528-0.020-0.548-0.040-1.076-0.058-1.62-34.376-1.112-61.902-29.304-61.902-63.946 0-0.542 0.028-1.078 0.042-1.618zM73.518 511.294c0.042 0.196 0.086 0.384 0.128 0.58 0.644 3.248 1.632 6.542 2.556 9.942 0.934 3.388 1.894 6.876 2.88 10.454 0.516 1.78 0.934 3.602 1.546 5.406 0.596 1.802 1.202 3.628 1.81 5.476 1.218 3.682 2.464 7.45 3.736 11.294 0.316 0.958 0.634 1.924 0.956 2.892 0.37 0.954 0.74 1.914 1.114 2.876 0.746 1.924 1.5 3.868 2.26 5.83 1.52 3.904 3.070 7.882 4.646 11.93 1.768 3.96 3.566 7.99 5.392 12.080 0.908 2.038 1.824 4.090 2.746 6.156 0.932 2.060 2.036 4.072 3.052 6.126 2.070 4.084 4.17 8.222 6.294 12.412 2.202 4.142 4.654 8.224 6.998 12.392 1.184 2.074 2.374 4.16 3.57 6.256 1.21 2.086 2.586 4.102 3.876 6.166 2.616 4.098 5.256 8.232 7.918 12.402 11.234 16.298 23.632 32.398 37.33 47.638 13.874 15.104 28.842 29.404 44.598 42.548 15.974 12.928 32.686 24.65 49.676 35.022 17.13 10.194 34.6 18.838 51.734 26.258 4.35 1.7 8.662 3.382 12.934 5.050 2.136 0.812 4.216 1.71 6.36 2.444 2.146 0.714 4.28 1.428 6.404 2.136 4.25 1.386 8.382 2.888 12.548 4.142 4.184 1.174 8.314 2.332 12.392 3.474 2.038 0.55 4.026 1.19 6.054 1.662 2.030 0.458 4.044 0.914 6.044 1.368 3.978 0.91 7.896 1.806 11.748 2.688 3.888 0.686 7.71 1.36 11.462 2.022 1.868 0.33 3.716 0.658 5.546 0.98 0.914 0.162 1.824 0.324 2.728 0.484 0.916 0.112 1.828 0.222 2.734 0.332 3.612 0.448 7.148 0.882 10.604 1.31 1.72 0.216 3.422 0.432 5.102 0.644 1.674 0.226 3.364 0.266 5.010 0.408 3.292 0.238 6.498 0.472 9.616 0.7 3.11 0.218 6.11 0.524 9.058 0.508 5.848 0.132 11.32 0.256 16.38 0.372 4.664-0.168 8.948-0.324 12.818-0.462 1.914-0.054 3.726-0.108 5.432-0.156 2.122-0.134 4.108-0.26 5.958-0.378 2.13-0.138 4.060-0.266 5.82-0.38 3.256-0.51 6.592-0.782 9.99-0.782 0.466 0 0.93 0.026 1.396 0.036 0.132-0.008 0.224-0.014 0.224-0.014v0.020c31.14 0.778 56.75 23.784 61.556 53.754 0.542-0.12 1.064-0.236 1.612-0.356 3.246-0.644 6.542-1.632 9.942-2.556 3.386-0.934 6.876-1.894 10.454-2.88 1.778-0.516 3.602-0.934 5.404-1.546 1.802-0.596 3.63-1.202 5.478-1.812 3.68-1.218 7.448-2.464 11.292-3.736 0.96-0.316 1.924-0.634 2.892-0.956 0.956-0.37 1.914-0.74 2.876-1.112 1.926-0.746 3.868-1.5 5.83-2.26 3.904-1.52 7.884-3.070 11.932-4.646 3.96-1.768 7.988-3.566 12.080-5.392 2.038-0.908 4.088-1.824 6.156-2.746 2.060-0.932 4.072-2.036 6.126-3.054 4.082-2.070 8.222-4.17 12.41-6.294 4.144-2.202 8.226-4.654 12.394-6.998 2.074-1.184 4.16-2.374 6.256-3.572 2.086-1.21 4.102-2.586 6.166-3.876 4.098-2.616 8.23-5.256 12.402-7.918 16.296-11.234 32.398-23.632 47.636-37.33 15.104-13.874 29.406-28.842 42.55-44.598 12.928-15.974 24.648-32.686 35.020-49.676 10.196-17.13 18.84-34.6 26.26-51.736 1.698-4.348 3.382-8.662 5.050-12.932 0.812-2.136 1.71-4.216 2.444-6.36 0.714-2.146 1.428-4.28 2.136-6.404 1.386-4.25 2.888-8.384 4.142-12.548 1.174-4.184 2.33-8.316 3.474-12.392 0.55-2.038 1.19-4.026 1.66-6.054 0.46-2.030 0.916-4.046 1.368-6.046 0.91-3.978 1.808-7.896 2.688-11.748 0.688-3.888 1.362-7.71 2.024-11.462 0.33-1.868 0.656-3.716 0.98-5.548 0.162-0.914 0.324-1.824 0.484-2.728 0.11-0.916 0.222-1.828 0.332-2.734 0.446-3.612 0.882-7.148 1.31-10.604 0.216-1.72 0.432-3.42 0.642-5.1 0.226-1.674 0.268-3.364 0.41-5.010 0.238-3.292 0.472-6.498 0.7-9.616 0.218-3.11 0.524-6.11 0.508-9.058 0.132-5.848 0.256-11.32 0.372-16.38-0.168-4.664-0.324-8.948-0.462-12.818-0.054-1.914-0.108-3.726-0.156-5.432-0.134-2.122-0.26-4.108-0.378-5.958-0.138-2.13-0.266-4.060-0.38-5.82-0.498-3.256-0.768-6.592-0.768-9.99 0-0.468 0.026-0.93 0.036-1.396-0.008-0.132-0.016-0.224-0.016-0.224h0.022c0.768-30.766 23.236-56.128 52.682-61.37-0.066-0.296-0.13-0.584-0.198-0.884-0.644-3.248-1.632-6.542-2.556-9.942-0.934-3.388-1.894-6.876-2.88-10.454-0.516-1.78-0.934-3.602-1.546-5.406-0.596-1.802-1.202-3.628-1.81-5.476-1.218-3.682-2.464-7.45-3.736-11.294-0.316-0.958-0.634-1.924-0.956-2.892-0.37-0.954-0.74-1.914-1.114-2.876-0.746-1.924-1.5-3.868-2.26-5.83-1.52-3.904-3.070-7.882-4.646-11.93-1.768-3.96-3.566-7.99-5.392-12.080-0.908-2.038-1.824-4.090-2.746-6.156-0.932-2.060-2.036-4.072-3.052-6.126-2.070-4.084-4.17-8.222-6.294-12.412-2.202-4.142-4.654-8.224-6.998-12.392-1.184-2.074-2.374-4.16-3.57-6.256-1.21-2.086-2.586-4.102-3.876-6.166-2.616-4.098-5.256-8.232-7.918-12.402-11.234-16.298-23.632-32.398-37.33-47.638-13.874-15.104-28.842-29.404-44.598-42.548-15.974-12.928-32.686-24.65-49.676-35.022-17.13-10.194-34.6-18.838-51.734-26.258-4.35-1.7-8.662-3.382-12.934-5.050-2.136-0.812-4.216-1.71-6.36-2.444-2.146-0.714-4.28-1.428-6.404-2.136-4.25-1.386-8.382-2.888-12.548-4.142-4.184-1.174-8.314-2.332-12.392-3.474-2.038-0.55-4.026-1.19-6.054-1.662-2.030-0.458-4.044-0.914-6.044-1.368-3.978-0.91-7.896-1.806-11.748-2.688-3.888-0.686-7.71-1.36-11.462-2.022-1.868-0.33-3.716-0.658-5.546-0.98-0.914-0.162-1.824-0.324-2.728-0.484-0.916-0.112-1.828-0.222-2.734-0.332-3.612-0.448-7.148-0.882-10.604-1.31-1.72-0.216-3.422-0.432-5.102-0.644-1.674-0.226-3.364-0.266-5.010-0.408-3.292-0.238-6.498-0.472-9.616-0.7-3.11-0.218-6.11-0.524-9.058-0.508-5.848-0.132-11.32-0.256-16.38-0.372-4.664 0.168-8.948 0.324-12.818 0.462-1.914 0.054-3.726 0.108-5.432 0.156-2.122 0.134-4.108 0.26-5.958 0.378-2.13 0.138-4.060 0.266-5.82 0.38-3.256 0.51-6.592 0.782-9.99 0.782-0.466 0-0.93-0.026-1.396-0.036-0.132 0.008-0.224 0.014-0.224 0.014v-0.020c-31.004-0.774-56.524-23.586-61.488-53.364-3.2 0.64-6.446 1.61-9.792 2.522-3.386 0.934-6.876 1.894-10.454 2.878-1.778 0.516-3.602 0.938-5.404 1.546-1.802 0.598-3.63 1.204-5.478 1.812-3.68 1.218-7.448 2.464-11.292 3.738-0.96 0.316-1.924 0.632-2.892 0.954-0.956 0.372-1.914 0.742-2.876 1.114-1.926 0.746-3.868 1.5-5.83 2.258-3.904 1.524-7.884 3.070-11.932 4.648-3.96 1.77-7.988 3.566-12.080 5.39-2.038 0.91-4.088 1.824-6.156 2.746-2.060 0.934-4.072 2.036-6.126 3.054-4.082 2.070-8.222 4.172-12.41 6.296-4.144 2.2-8.226 4.652-12.394 6.996-2.074 1.184-4.16 2.376-6.256 3.57-2.086 1.21-4.102 2.586-6.166 3.878-4.098 2.614-8.23 5.254-12.402 7.918-16.296 11.23-32.398 23.632-47.636 37.328-15.104 13.876-29.406 28.84-42.55 44.598-12.928 15.972-24.648 32.684-35.020 49.676-10.196 17.128-18.84 34.602-26.26 51.734-1.698 4.352-3.382 8.664-5.050 12.934-0.812 2.136-1.71 4.218-2.444 6.36-0.714 2.148-1.428 4.282-2.136 6.406-1.386 4.25-2.888 8.382-4.142 12.546-1.174 4.184-2.33 8.316-3.474 12.394-0.55 2.036-1.19 4.024-1.66 6.054-0.46 2.028-0.916 4.042-1.368 6.042-0.91 3.98-1.808 7.898-2.688 11.75-0.688 3.886-1.362 7.71-2.024 11.46-0.33 1.868-0.656 3.718-0.98 5.546-0.162 0.914-0.324 1.824-0.484 2.73-0.11 0.914-0.222 1.828-0.332 2.734-0.446 3.61-0.882 7.148-1.31 10.602-0.216 1.722-0.432 3.422-0.642 5.102-0.226 1.676-0.268 3.364-0.41 5.012-0.238 3.29-0.472 6.496-0.7 9.614-0.218 3.11-0.524 6.11-0.508 9.058-0.132 5.848-0.256 11.32-0.372 16.382 0.168 4.664 0.324 8.946 0.462 12.816 0.054 1.914 0.108 3.726 0.156 5.434 0.134 2.122 0.26 4.106 0.378 5.958 0.138 2.128 0.266 4.058 0.38 5.82 0.496 3.26 0.766 6.596 0.766 9.994 0 0.466-0.026 0.93-0.036 1.396 0.008 0.132 0.016 0.224 0.016 0.224h-0.022c-0.78 31.38-24.134 57.154-54.44 61.674z" />
36
- <glyph unicode="&#xe016;" glyph-name="spinner-7" d="M1024 544l-225.738 22.574 143.66 175.582-135.766 135.764-175.582-143.658-22.574 225.738h-192l-22.574-225.738-175.582 143.658-135.764-135.764 143.658-175.582-225.738-22.574v-192l225.738-22.574-143.658-175.582 135.764-135.766 175.582 143.66 22.574-225.738h192l22.574 225.738 175.582-143.66 135.766 135.766-143.66 175.582 225.738 22.574v192zM704 527.528v-159.056l-112.472-112.472h-159.056l-112.472 112.472v159.056l112.47 112.472h159.056l112.474-112.472z" />
37
- <glyph unicode="&#xe017;" glyph-name="spinner-8" d="M874.022 810.020c-92.652 92.656-220.636 149.98-362.022 149.98-219.488 0-406.69-138.128-479.498-332.188l119.876-44.954c54.604 145.546 195.006 249.142 359.622 249.142 106.040 0 202.020-43 271.506-112.494l-143.506-143.506h384v384l-149.978-149.98zM512 64c-106.040 0-202.026 42.992-271.512 112.488l143.512 143.512h-384v-384l149.994 149.994c92.646-92.662 220.618-149.994 362.006-149.994 219.49 0 406.692 138.128 479.5 332.188l-119.876 44.954c-54.604-145.546-195.006-249.142-359.624-249.142z" />
38
- <glyph unicode="&#xe018;" glyph-name="spinner-9" d="M512 752c-100.252 0-189.54-46.802-246.326-119.256l-76.776 57.582c74.32 95.764 191.494 157.674 323.102 157.674v112l160-160-160-160v112zM512 144c100.254 0 189.542 46.802 246.326 119.256l76.776-57.582c-74.32-95.764-191.494-157.674-323.102-157.674v-112l-160 160 160 160v-112zM201.6 448c0-100.364 49.928-189.508 126.724-244.902l-57.584-76.78c-100.108 72.928-165.14 189.966-165.14 321.682h-105.6l160 160 160-160h-118.4zM918.4 448h105.6l-160-160-160 160h118.4c0 100.364-49.928 189.508-126.724 244.902l57.584 76.778c100.108-72.926 165.14-189.962 165.14-321.68z" />
39
- <glyph unicode="&#xe019;" glyph-name="spinner-10" d="M831.924 753.296v0 0zM834.050 448c104.384 99.81 155.082 197.58 121.354 256-19.26 33.356-63.36 49.296-123.48 49.296v-48c42.144 0 72.766-9.458 81.912-25.296 7.218-12.504 3.2-31.73-1.446-45.658-8.906-26.71-28.288-58.664-56.042-92.404-16.848-20.478-36.27-41.122-57.874-61.642-29.764 25.698-62.876 51.258-98.796 76.058-3.514 43.48-9.090 84.916-16.458 123.518 56.19 16.666 107.186 25.418 148.682 25.422l0.022 48c-0.008 0-0.018 0-0.026 0-45.174-0.004-99.396-9.032-158.874-26.404-34.24 140.318-93.566 233.11-161.024 233.11s-126.784-92.792-161.028-233.102c-59.474 17.372-113.698 26.398-158.872 26.398-60.12 0-104.248-15.942-123.506-49.296-33.73-58.42 16.966-156.19 121.352-256-104.386-99.808-155.082-197.58-121.352-256 19.26-33.36 63.37-49.294 123.506-49.294 45.172 0 99.396 9.030 158.872 26.4 34.244-140.314 93.568-233.106 161.028-233.106 67.458 0 126.784 92.792 161.028 233.102 59.474-17.374 113.7-26.398 158.874-26.398 60.12 0 104.248 15.944 123.506 49.296 33.724 58.418-16.97 156.192-121.358 256zM762.542 448c-18.62-15.876-38.454-31.584-59.358-46.988 0.53 15.476 0.816 31.142 0.816 46.988 0 15.844-0.286 31.51-0.812 46.988 20.904-15.404 40.738-31.112 59.354-46.988zM637.292 231.132c-23.054 8.196-46.562 17.52-70.27 27.868 13.626 7.262 27.294 14.824 40.974 22.722 13.722 7.922 27.146 16 40.288 24.198-2.882-25.766-6.562-50.76-10.992-74.788zM584 323.292c-23.782-13.728-47.876-26.63-72-38.616-24.124 11.982-48.22 24.884-72 38.616-23.976 13.844-47.192 28.226-69.498 43.012-1.65 26.712-2.502 54.010-2.502 81.696s0.852 54.984 2.502 81.694c22.306 14.786 45.522 29.17 69.498 43.014 23.78 13.728 47.876 26.63 72 38.614 24.124-11.982 48.218-24.884 72-38.614 23.976-13.842 47.192-28.23 69.498-43.014 1.65-26.71 2.502-54.008 2.502-81.694s-0.852-54.984-2.502-81.696c-22.306-14.784-45.522-29.172-69.498-43.012zM375.712 305.92c13.14-8.198 26.564-16.276 40.288-24.198 13.68-7.898 27.346-15.46 40.974-22.722-23.704-10.348-47.214-19.67-70.266-27.864-4.43 24.026-8.112 49.020-10.996 74.784zM320.812 401.010c-20.904 15.406-40.74 31.116-59.358 46.99 18.618 15.876 38.454 31.584 59.358 46.99-0.528-15.48-0.812-31.144-0.812-46.99s0.284-31.512 0.812-46.99zM386.708 664.864c23.052-8.194 46.562-17.518 70.266-27.864-13.626-7.262-27.294-14.824-40.974-22.722-13.722-7.922-27.146-16.002-40.288-24.198 2.884 25.764 6.566 50.758 10.996 74.784zM608 614.278c-13.68 7.898-27.346 15.46-40.972 22.722 23.706 10.346 47.212 19.668 70.268 27.862 4.43-24.024 8.11-49.016 10.992-74.782-13.142 8.196-26.566 16.274-40.288 24.198zM421.18 793.184c15.34 40.908 33.322 73.668 52.002 94.736 9.738 10.986 24.378 24.080 38.818 24.080 14.442 0 29.078-13.094 38.818-24.080 18.68-21.068 36.658-53.828 52.002-94.736 9.312-24.834 17.478-51.978 24.45-80.952-37.136-12.926-75.832-28.824-115.268-47.532-39.438 18.71-78.132 34.608-115.27 47.536 6.97 28.972 15.136 56.116 24.448 80.948zM167.65 541.938c-27.756 33.74-47.136 65.692-56.042 92.404-4.644 13.926-8.664 33.154-1.444 45.658 9.144 15.838 39.776 25.294 81.938 25.296h0.004c41.492 0 92.486-8.752 148.674-25.418-7.368-38.604-12.942-80.040-16.456-123.522-35.92-24.798-69.036-50.36-98.8-76.058-21.604 20.52-41.026 41.162-57.874 61.64zM192.1 190.708c-42.162 0-72.792 9.456-81.936 25.292-7.22 12.504-3.2 31.73 1.444 45.658 8.906 26.708 28.286 58.662 56.042 92.4 16.848 20.48 36.27 41.124 57.874 61.644 29.762-25.702 62.878-51.262 98.798-76.058 3.514-43.482 9.088-84.916 16.456-123.524-56.19-16.662-107.184-25.412-148.678-25.412zM602.82 102.816c-15.342-40.91-33.322-73.668-52.002-94.738-9.74-10.984-24.376-24.078-38.818-24.078-14.44 0-29.080 13.094-38.818 24.078-18.68 21.070-36.662 53.828-52.002 94.736-9.312 24.834-17.478 51.978-24.45 80.952 37.138 12.93 75.832 28.824 115.268 47.536 39.44-18.71 78.13-34.61 115.27-47.538-6.972-28.972-15.136-56.116-24.448-80.948zM912.39 261.656c4.642-13.926 8.664-33.152 1.446-45.656-9.146-15.84-39.778-25.296-81.938-25.296-41.496 0-92.49 8.754-148.678 25.418 7.368 38.606 12.944 80.042 16.458 123.524 35.92 24.8 69.036 50.362 98.796 76.058 21.604-20.522 41.026-41.164 57.874-61.64 27.758-33.744 47.136-65.696 56.042-92.408zM432 448c0 44.183 35.817 80 80 80s80-35.817 80-80c0-44.183-35.817-80-80-80s-80 35.817-80 80z" />
40
- <glyph unicode="&#xe01a;" glyph-name="spinner-11" d="M466.038 402.038l-320 320-146.038-146.038v384h384l-146.038-146.038 320-320zM512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512h128c0-212.078 171.922-384 384-384s384 171.922 384 384c0 212.078-171.922 384-384 384v128z" />
41
- <glyph unicode="&#xe01b;" glyph-name="arrows-1-prev" d="M640-64l192 192-320 320 320 320-192 192-512-512z" />
42
- <glyph unicode="&#xe01c;" glyph-name="arrows-1-next" d="M384 960l-192-192 320-320-320-320 192-192 512 512z" />
43
- <glyph unicode="&#xe01d;" glyph-name="arrows-2-prev" d="M0 448l1024-448-192 448 192 448z" />
44
- <glyph unicode="&#xe01e;" glyph-name="arrows-2-next" d="M1024 448l-1024 448 192-448-192-448z" />
45
- <glyph unicode="&#xe01f;" glyph-name="arrows-3-prev" d="M768 960l-512-512 512-512-255.998 512z" />
46
- <glyph unicode="&#xe020;" glyph-name="arrows-3-next" d="M256-64l512 512-512 512 256-512z" />
47
- <glyph unicode="&#xe021;" glyph-name="arrows-4-prev" d="M640.002 704l-256-256 256-256.002z" />
48
- <glyph unicode="&#xe022;" glyph-name="arrows-4-next" d="M384.002 192l256 256-256 256z" />
49
- <glyph unicode="&#xe023;" glyph-name="arrows-5-prev" d="M0 448.002l512-512.002v320h511.998l0.002 384h-512v320l-512-511.998zM152 509.492l16 16v-154.98l-16 16v122.98zM136 402.512l-16 16v58.98l16 16v-90.98zM184 541.492l16 16v-218.982l-16 16v186.982zM216 573.492l16 16v-282.982l-16 16v250.982zM248 605.492l16 16v-346.982l-16 16v314.982zM280 637.492l16 15.998v-410.98l-16 16v378.982zM312 669.49l16 16v-474.98l-16 16v442.98zM344 701.49l16 16v-538.98l-16 16v506.98zM376 733.49l16 16v-602.98l-16 16v570.98zM408 765.49l16 16v-666.98l-16 16v634.98zM104 461.492v-26.98l-13.49 13.49 13.49 13.49zM472 320v256h16v-256h-16zM504 320v256h16v-256h-16zM536 320v256h16v-256h-16zM568 320v256h16v-256h-16zM600 320v256h16v-256h-16zM632 320v256h16v-256h-16zM664 320v256h16v-256h-16zM696 320v256h16v-256h-16zM728 320v256h16v-256h-16zM760 320v256h16v-256h-16zM792 320v256h16v-256h-16zM824 320v256h16v-256h-16zM856 320v256h16v-256h-16zM888 320v256h16v-256h-16zM920 320v256h16v-256h-16zM959.998 320h-7.998v256h8l-0.002-256zM448 576h8v-256h-8v-229.49l-8 8v698.98l8 8v-229.49z" />
50
- <glyph unicode="&#xe024;" glyph-name="arrows-5-next" d="M1024 447.998l-512 512.002v-320h-511.998l-0.002-384h512v-320l512 511.998zM872 386.508l-16-16v154.98l16-16v-122.98zM888 493.488l16-16v-58.98l-16-16v90.98zM840 354.508l-16-16v218.982l16-16v-186.982zM808 322.508l-16-16v282.982l16-16v-250.982zM776 290.508l-16-16v346.982l16-16v-314.982zM744 258.508l-16-15.998v410.98l16-16v-378.982zM712 226.51l-16-16v474.98l16-16v-442.98zM680 194.51l-16-16v538.98l16-16v-506.98zM648 162.51l-16-16v602.98l16-16v-570.98zM616 130.51l-16-16v666.98l16-16v-634.98zM920 434.508v26.98l13.49-13.49-13.49-13.49zM552 576v-256h-16v256h16zM520 576v-256h-16v256h16zM488 576v-256h-16v256h16zM456 576v-256h-16v256h16zM424 576v-256h-16v256h16zM392 576v-256h-16v256h16zM360 576v-256h-16v256h16zM328 576v-256h-16v256h16zM296 576v-256h-16v256h16zM264 576v-256h-16v256h16zM232 576v-256h-16v256h16zM200 576v-256h-16v256h16zM168 576v-256h-16v256h16zM136 576v-256h-16v256h16zM104 576v-256h-16v256h16zM64.002 576h7.998v-256h-8l0.002 256zM576 320h-8v256h8v229.49l8-8v-698.98l-8-8v229.49z" />
51
- <glyph unicode="&#xe025;" glyph-name="arrows-6-prev" d="M0 448l512-512v320h511.998l0.002 384h-512v320z" />
52
- <glyph unicode="&#xe026;" glyph-name="arrows-6-next" d="M1024 448l-512 512v-320h-511.998l-0.002-384h512v-320z" />
53
- <glyph unicode="&#xe027;" glyph-name="spinner-3" d="M448 704c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 128c-35.348 0-64 28.652-64 64s28.652 64 64 64c35.346 0 64-28.652 64-64s-28.654-64-64-64zM512 448c-114.876 0-208-93.124-208-208s93.124-208 208-208c-229.75 0-416 186.25-416 416s186.25 416 416 416c114.876 0 208-93.124 208-208s-93.124-208-208-208z" />
54
- <glyph unicode="&#xe028;" glyph-name="error" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
55
- <glyph unicode="&#xe034;" glyph-name="flat-pause" d="M598 724.667h170v-596h-170v596zM256 128.667v596h170v-596h-170z" />
56
- <glyph unicode="&#xe037;" glyph-name="flat-play" d="M342 724.667l468-298-468-298v596z" />
57
- <glyph unicode="&#xe094;" glyph-name="flat-prev" d="M426.667 768q17.667 0 30.167-12.5t12.5-30.167q0-18-12.667-30.333l-225.667-225.667h665q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-665l225.667-225.667q12.667-12.333 12.667-30.333 0-17.667-12.5-30.167t-30.167-12.5q-18 0-30.333 12.333l-298.667 298.667q-12.333 13-12.333 30.333t12.333 30.333l298.667 298.667q12.667 12.333 30.333 12.333z" />
58
- <glyph unicode="&#xe095;" glyph-name="flat-next" d="M597.333 768q18 0 30.333-12.333l298.667-298.667q12.333-12.333 12.333-30.333t-12.333-30.333l-298.667-298.667q-12.333-12.333-30.333-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 18 12.333 30.333l226 225.667h-665q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h665l-226 225.667q-12.333 12.333-12.333 30.333 0 18.333 12.167 30.5t30.5 12.167z" />
59
- <glyph unicode="&#xe105;" glyph-name="flat-loader" d="M693.333 288.334q17.333 0 30-12.667l120.667-120.667q12.667-12.667 12.667-30.333 0-17.333-12.667-30t-30-12.667q-17.667 0-30.333 12.667l-120.667 120.667q-12.333 12.333-12.333 30.333 0 17.667 12.5 30.167t30.167 12.5zM331 288.334q17.667 0 30.167-12.5t12.5-30.167-12.667-30.333l-120.667-120.667q-12.667-12.667-30-12.667-17.667 0-30.167 12.5t-12.5 30.167q0 18 12.333 30.333l120.667 120.667q12.667 12.667 30.333 12.667zM85.333 469.334h170.667q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-170.667q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5zM512 213.334q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5-30.167 12.5-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5zM210.333 771.334q17.333 0 30-12.667l120.667-120.667q12.667-12.667 12.667-30 0-17.667-12.5-30.167t-30.167-12.5q-18 0-30.333 12.333l-120.667 120.667q-12.333 12.333-12.333 30.333 0 17.667 12.5 30.167t30.167 12.5zM768 469.334h170.667q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-170.667q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5zM512 896q17.667 0 30.167-12.5t12.5-30.167v-170.667q0-17.667-12.5-30.167t-30.167-12.5-30.167 12.5-12.5 30.167v170.667q0 17.667 12.5 30.167t30.167 12.5zM814 771.334q17.333 0 30-12.667t12.667-30q0-17.667-12.667-30.333l-120.667-120.667q-12.333-12.333-30-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 17.667 12.333 30l120.667 120.667q12.667 12.667 30.333 12.667z" />
60
- <glyph unicode="&#xe110;" glyph-name="flat-maximize" d="M725.333 896h128q53 0 90.5-37.5t37.5-90.5v-128q0-17.667-12.5-30.167t-30.167-12.5-30.167 12.5-12.5 30.167v128q0 17.667-12.5 30.167t-30.167 12.5h-128q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5zM85.333 256q17.667 0 30.167-12.5t12.5-30.167v-128q0-17.667 12.5-30.167t30.167-12.5h128q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-128q-53 0-90.5 37.5t-37.5 90.5v128q0 17.667 12.5 30.167t30.167 12.5zM170.667 896h128q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-128q-17.667 0-30.167-12.5t-12.5-30.167v-128q0-17.667-12.5-30.167t-30.167-12.5-30.167 12.5-12.5 30.167v128q0 53 37.5 90.5t90.5 37.5zM938.667 256q17.667 0 30.167-12.5t12.5-30.167v-128q0-53-37.5-90.5t-90.5-37.5h-128q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h128q17.667 0 30.167 12.5t12.5 30.167v128q0 17.667 12.5 30.167t30.167 12.5z" />
61
- <glyph unicode="&#xe111;" glyph-name="flat-minimize" d="M725.333 896q17.667 0 30.167-12.5t12.5-30.167v-128q0-17.667 12.5-30.167t30.167-12.5h128q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-128q-53 0-90.5 37.5t-37.5 90.5v128q0 17.667 12.5 30.167t30.167 12.5zM85.333 256h128q53 0 90.5-37.5t37.5-90.5v-128q0-17.667-12.5-30.167t-30.167-12.5-30.167 12.5-12.5 30.167v128q0 17.667-12.5 30.167t-30.167 12.5h-128q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5zM298.667 896q17.667 0 30.167-12.5t12.5-30.167v-128q0-53-37.5-90.5t-90.5-37.5h-128q-17.667 0-30.167 12.5t-12.5 30.167 12.5 30.167 30.167 12.5h128q17.667 0 30.167 12.5t12.5 30.167v128q0 17.667 12.5 30.167t30.167 12.5zM810.667 256h128q17.667 0 30.167-12.5t12.5-30.167-12.5-30.167-30.167-12.5h-128q-17.667 0-30.167-12.5t-12.5-30.167v-128q0-17.667-12.5-30.167t-30.167-12.5-30.167 12.5-12.5 30.167v128q0 53 37.5 90.5t90.5 37.5z" />
62
- <glyph unicode="&#xe117;" glyph-name="flat-close" d="M810.667 768q18.333 0 30.5-12.167t12.167-30.5q0-18-12.333-30.333l-268.667-268.333 268.667-268.333q12.333-12.333 12.333-30.333 0-18.333-12.167-30.5t-30.5-12.167q-18 0-30.333 12.333l-268.333 268.667-268.333-268.667q-12.333-12.333-30.333-12.333-18.333 0-30.5 12.167t-12.167 30.5q0 18 12.333 30.333l268.667 268.333-268.667 268.333q-12.333 12.333-12.333 30.333 0 18.333 12.167 30.5t30.5 12.167q18 0 30.333-12.333l268.333-268.667 268.333 268.667q12.333 12.333 30.333 12.333z" />
63
- <glyph unicode="&#xe3cb;" glyph-name="arrows-11-next" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM813.256 493.254l-256.002 256c-24.992 24.994-65.514 24.994-90.508 0s-24.994-65.516 0-90.51l146.744-146.744h-357.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h357.49l-146.746-146.744c-24.994-24.994-24.994-65.518 0-90.512 12.498-12.496 28.878-18.744 45.256-18.744s32.758 6.248 45.254 18.744l256.002 256c24.992 24.994 24.992 65.518 0 90.51z" />
64
- <glyph unicode="&#xe3cf;" glyph-name="arrows-11-prev" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM210.744 493.254l256.002 256c24.992 24.994 65.514 24.994 90.508 0s24.994-65.516 0-90.51l-146.744-146.744h357.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-357.49l146.746-146.744c24.994-24.994 24.994-65.518 0-90.512-12.498-12.496-28.878-18.744-45.256-18.744s-32.758 6.248-45.254 18.744l-256.002 256c-24.992 24.994-24.992 65.518 0 90.51z" />
65
- <glyph unicode="&#xe3d3;" glyph-name="arrows-7-next" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM813.256 402.744l-256.002-256c-12.496-12.496-28.876-18.744-45.254-18.744s-32.758 6.248-45.254 18.744c-24.994 24.994-24.994 65.518 0 90.512l146.744 146.744h-357.49c-35.346 0-64 28.654-64 64s28.654 64 64 64h357.49l-146.746 146.746c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.508 0l256.002-256c24.994-24.994 24.994-65.518 0.002-90.512z" />
66
- <glyph unicode="&#xe3d7;" glyph-name="arrows-7-prev" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM210.744 402.744l256.002-256c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.744c24.994 24.994 24.994 65.518 0 90.512l-146.744 146.744h357.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-357.49l146.746 146.746c24.994 24.994 24.994 65.516 0 90.51s-65.516 24.994-90.508 0l-256.002-256c-24.994-24.994-24.994-65.518-0.002-90.512z" />
67
- <glyph unicode="&#xe3e3;" glyph-name="arrows-8-next" d="M1023.998-64h-1023.998v1024h1024l-0.002-1024zM128 832v-768h767.998l0.002 768h-768zM576 224l224 224-224 224v-160h-320v-128h320v-160z" />
68
- <glyph unicode="&#xe3e7;" glyph-name="arrows-8-prev" d="M0.002-64h1023.998v1024h-1024l0.002-1024zM896 832v-768h-767.998l-0.002 768h768zM448 224l-224 224 224 224v-160h320v-128h-320v-160z" />
69
- <glyph unicode="&#xe409;" glyph-name="arrows-10-next" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576 224v160h-320v128h320v160l224-224-224-224z" />
70
- <glyph unicode="&#xe40b;" glyph-name="arrows-10-prev" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM448 224v160h320v128h-320v160l-224-224 224-224z" />
71
- <glyph unicode="&#xe415;" glyph-name="arrows-9-next" d="M0 640h64v-384h-64zM128 640h64v-384h-64zM256 640h64v-384h-64zM1024 448l-448 448v-256h-192v-384h192v-256z" />
72
- <glyph unicode="&#xe417;" glyph-name="arrows-9-prev" d="M960 640h64v-384h-64zM832 640h64v-384h-64zM704 640h64v-384h-64zM0 448l448 448v-256h192v-384h-192v-256z" />
73
- <glyph unicode="&#xe48c;" glyph-name="share" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
74
- <glyph unicode="" glyph-name="share" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
75
- <glyph unicode="play_arrow" glyph-name="flat-play" d="M342 724.667l468-298-468-298v596z" />
76
- <glyph unicode="pause" glyph-name="flat-pause" d="M598 724.667h170v-596h-170v596zM256 128.667v596h170v-596h-170z" />
77
  </font>
78
  </defs>
79
  </svg>
6
  <font id="foobox" horiz-adv-x="1024">
7
  <font-face units-per-em="1024" ascent="960" descent="-64" />
8
  <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" d="" horiz-adv-x="512" />
10
+ <glyph unicode="&#x2f;" d="M0 249.344v185.344h229.376v-183.296q0-28.672 20.48-49.664t50.176-20.992 50.688 20.48 20.992 50.176v433.152q0 119.808 88.576 204.288t210.432 84.48 210.432-84.992 88.576-205.824v-94.208l-137.216-40.96-91.136 43.008v81.92q0 29.696-20.48 50.176t-50.176 20.48-50.688-20.48-20.992-50.176v-427.008q0-122.88-88.064-209.408t-210.944-86.528q-123.904 0-211.968 87.552t-88.064 212.48zM741.376 246.272v187.392l91.136-43.008 137.216 40.96v-188.416q0-29.696 20.48-50.688t50.176-20.992 50.176 20.992 20.48 50.688v191.488h229.376v-185.344q0-123.904-87.552-211.968t-211.456-88.064-211.968 87.040-88.064 209.92z" horiz-adv-x="1340" />
11
+ <glyph unicode="&#x3b;" d="M-1.024 189.952v380.928q0 13.312 13.312 13.312h180.224v132.096q0 14.336 13.312 14.336h100.352v-526.336q0-14.336-12.288-14.336h-294.912zM110.592 274.944h68.608q13.312 0 13.312 14.336v210.944h-68.608q-13.312 0-13.312-14.336v-210.944zM340.992 189.952v380.928q0 13.312 13.312 13.312h100.352v-379.904q0-14.336-12.288-14.336h-101.376zM340.992 645.632v70.656q0 14.336 12.288 14.336h101.376v-70.656q0-14.336-12.288-14.336h-101.376zM493.568 189.952v380.928q0 13.312 13.312 13.312h294.912v-516.096q0-13.312-13.312-13.312h-294.912l1.024 70.656q0 14.336 12.288 14.336h180.224v50.176h-193.536zM606.208 274.944h68.608q12.288 0 12.288 14.336v210.944h-68.608q-12.288 0-12.288-14.336v-210.944zM840.704 125.44q0 14.336 13.312 14.336h180.224v50.176h-193.536v380.928q0 13.312 13.312 13.312h293.888v-516.096q0-13.312-12.288-13.312h-294.912v70.656zM952.32 274.944h68.608q13.312 0 13.312 14.336v210.944h-68.608q-13.312 0-13.312-14.336v-210.944z" horiz-adv-x="1148" />
12
+ <glyph unicode="&#x3e;" d="M0 467.456q0 63.488 50.688 108.544t115.2 45.056q63.488 0 107.52-36.864h5.12q137.216 83.968 343.040 83.968l5.12 4.096 71.68 273.408 247.808-36.864q0-1.024 2.048-1.024 1.024 0 0 1.024 2.048 1.024 11.776 15.872t14.848 18.944q34.816 32.768 83.968 32.768 50.176 0 84.48-33.28t34.304-83.456-34.304-86.016-84.48-35.84q-58.368 0-89.088 39.424t-30.72 98.816q-2.048-1.024-99.84 13.312t-112.128 17.408h-3.072q-2.048-2.048-16.896-54.784t-30.72-111.616-17.92-65.024v-3.072l5.12-4.096q73.728 0 151.040-20.992t133.632-58.88l3.072-2.048q1.024 1.024 2.048 1.024t2.048 1.024q25.6 18.432 36.352 25.6t30.208 13.312 44.032 6.144q69.632 0 118.784-49.152t49.152-119.808q0-48.128-27.136-88.064t-71.168-61.44q0-199.68-266.24-310.272-41.984-18.432-57.344-23.552-32.768-10.24-93.184-19.456t-95.232-9.216q-122.88 0-236.544 35.84-2.048 2.048-73.728 38.912-97.28 52.224-156.16 118.784t-58.88 159.744h-5.12q-33.792 17.408-60.416 51.2l-9.216 12.288q-15.36 27.648-19.456 46.592t-4.096 51.712zM34.816 455.168q0-67.584 58.368-114.688 5.12 60.416 49.152 118.784t103.424 103.424q-37.888 26.624-83.968 26.624-50.176 0-88.576-41.472t-38.4-92.672zM139.264 305.664q0-55.296 31.744-106.496t81.408-87.552 104.96-60.928 107.52-34.816q76.8-14.336 149.504-14.336 125.952 0 238.592 40.448t189.44 125.44h-3.072q30.72 38.912 44.032 70.144t13.312 74.24q0 55.296-27.136 105.472t-71.168 86.016-94.208 61.952-102.4 39.424q-87.040 23.552-185.344 23.552-75.776 0-155.136-18.432t-153.6-55.296-121.344-101.888-47.104-146.944zM329.728 380.416q0 37.888 23.040 60.928t60.928 23.040 63.488-23.040 25.6-60.928q0-36.864-26.112-61.44t-62.976-24.576-60.416 24.576-23.552 61.44zM366.592 212.48h45.056q25.6-46.080 81.408-70.144t114.176-24.064q59.392 0 112.64 24.064t86.016 70.144h41.984q-25.6-63.488-95.232-98.304t-145.408-34.816q-73.728 0-144.896 35.328t-95.744 97.792zM710.656 380.416q0 38.912 23.552 61.44t62.464 22.528q34.816 0 59.392-24.576t24.576-59.392-24.576-60.416-59.392-25.6q-37.888 0-61.952 24.064t-24.064 61.952zM971.776 859.648q0-35.84 25.6-61.44t61.44-25.6q36.864 0 60.416 25.088t23.552 61.952q0 34.816-24.576 59.392t-59.392 24.576-60.928-25.088-26.112-58.88zM986.112 571.904q56.32-36.864 97.28-94.72t57.344-122.368q60.416 44.032 60.416 98.304 0 59.392-36.352 102.4t-94.72 43.008q-46.080 0-83.968-26.624z" horiz-adv-x="1232" />
13
+ <glyph unicode="&#x74;" d="M0 556.544v145.408q61.44 20.48 103.424 56.32 41.984 33.792 68.608 88.064 26.624 52.224 35.84 130.048h146.432v-259.072h242.688v-160.768h-242.688v-262.144q0-88.064 9.216-114.688 9.216-24.576 34.816-39.936 34.816-20.48 77.824-20.48 78.848 0 154.624 50.176v-160.768q-64.512-31.744-118.784-44.032-53.248-12.288-114.688-12.288-69.632 0-124.928 17.408-56.32 19.456-91.136 51.2-36.864 31.744-53.248 69.632-14.336 34.816-14.336 107.52v358.4h-113.664z" horiz-adv-x="630" />
14
+ <glyph unicode="&#xe000;" d="M876.856 448v-73.142q0-30.286-18.572-51.714t-48.286-21.428h-402.286l167.428-168q21.714-20.572 21.714-51.428t-21.714-51.428l-42.858-43.428q-21.142-21.142-51.428-21.142-29.714 0-52 21.142l-372 372.572q-21.142 21.142-21.142 51.428 0 29.714 21.142 52l372 371.428q21.714 21.714 52 21.714 29.714 0 51.428-21.714l42.858-42.286q21.714-21.714 21.714-52t-21.714-52l-167.428-167.428h402.286q29.714 0 48.286-21.428t18.572-51.714z" horiz-adv-x="876" />
15
+ <glyph unicode="&#xe001;" d="M840.286 411.428q0-30.858-21.142-52l-372-372q-22.286-21.142-52-21.142-29.142 0-51.428 21.142l-42.858 42.858q-21.714 21.714-21.714 52t21.714 52l167.428 167.428h-402.286q-29.714 0-48.286 21.428t-18.572 51.714v73.142q0 30.286 18.572 51.714t48.286 21.428h402.286l-167.428 168q-21.714 20.572-21.714 51.428t21.714 51.428l42.858 42.858q21.714 21.714 51.428 21.714 30.286 0 52-21.714l372-372q21.142-20 21.142-51.428z" horiz-adv-x="876" />
16
+ <glyph unicode="&#xe002;" d="M741.428 204.572q0-22.858-16-38.858l-77.714-77.714q-16-16-38.858-16t-38.858 16l-168 168-168-168q-16-16-38.858-16t-38.858 16l-77.714 77.714q-16 16-16 38.858t16 38.858l168 168-168 168q-16 16-16 38.858t16 38.858l77.714 77.714q16 16 38.858 16t38.858-16l168-168 168 168q16 16 38.858 16t38.858-16l77.714-77.714q16-16 16-38.858t-16-38.858l-168-168 168-168q16-16 16-38.858z" horiz-adv-x="804" />
17
+ <glyph unicode="&#xe003;" d="M790.572 430.286l-758.858-421.714q-13.142-7.428-22.572-1.714t-9.428 20.572v841.142q0 14.858 9.428 20.572t22.572-1.714l758.858-421.714q13.142-7.428 13.142-17.714t-13.142-17.714z" horiz-adv-x="804" />
18
+ <glyph unicode="&#xe004;" d="M876.856 850.286v-804.572q0-14.858-10.858-25.714t-25.714-10.858h-292.572q-14.858 0-25.714 10.858t-10.858 25.714v804.572q0 14.858 10.858 25.714t25.714 10.858h292.572q14.858 0 25.714-10.858t10.858-25.714zM364.856 850.286v-804.572q0-14.858-10.858-25.714t-25.714-10.858h-292.572q-14.858 0-25.714 10.858t-10.858 25.714v804.572q0 14.858 10.858 25.714t25.714 10.858h292.572q14.858 0 25.714-10.858t10.858-25.714z" horiz-adv-x="876" />
19
+ <glyph unicode="&#xe005;" d="M283.428 192q0-34.286-24.286-58.286t-58-24q-34.286 0-58.286 24t-24 58.286 24 58.286 58.286 24q33.714 0 58-24t24.286-58.286zM530.286 82.286q0-30.286-21.428-51.714t-51.714-21.428-51.714 21.428-21.428 51.714 21.428 51.714 51.714 21.428 51.714-21.428 21.428-51.714zM182.858 448q0-37.714-26.858-64.572t-64.572-26.858-64.572 26.858-26.858 64.572 26.858 64.572 64.572 26.858 64.572-26.858 26.858-64.572zM777.142 192q0-26.286-18.858-45.142t-45.142-18.858-45.142 18.858-18.858 45.142 18.858 45.142 45.142 18.858 45.142-18.858 18.858-45.142zM301.714 704q0-41.714-29.428-71.142t-71.142-29.428-71.142 29.428-29.428 71.142 29.428 71.142 71.142 29.428 71.142-29.428 29.428-71.142zM566.858 813.714q0-45.714-32-77.714t-77.714-32-77.714 32-32 77.714 32 77.714 77.714 32 77.714-32 32-77.714zM877.714 448q0-22.858-16-38.858t-38.858-16-38.858 16-16 38.858 16 38.858 38.858 16 38.858-16 16-38.858zM758.858 704q0-18.858-13.428-32.286t-32.286-13.428-32.286 13.428-13.428 32.286 13.428 32.286 32.286 13.428 32.286-13.428 13.428-32.286z" horiz-adv-x="896" />
20
+ <glyph unicode="&#xe006;" d="M0 135.786q0 89.058 91.104 158.666t220.084 69.608h55.278q-42.994 40.946-42.994 88.034 0 29.686 16.378 59.372-10.236-1.024-29.686-1.024-106.46 0-174.020 66.538t-67.56 163.784q0 93.152 83.94 162.76t191.422 69.608h317.332l-70.632-51.182h-100.318q48.112-18.426 75.238-69.608t27.126-113.626q0-95.2-90.082-165.832-37.876-29.686-49.136-47.088t-11.26-42.994q0-19.45 27.638-49.136t55.278-50.158q62.442-44.016 86.498-90.082t24.056-115.672q0-92.128-83.94-160.202t-227.25-68.072q-136.146 0-230.32 51.182t-94.176 135.122zM114.648 169.568q0-70.632 59.884-120.278t148.94-49.646q121.814 0 176.58 45.040t54.766 119.766q0 19.45-4.094 32.756-3.070 11.26-7.166 20.984t-12.284 19.45-14.332 16.378-19.962 16.89-20.984 15.354-25.592 17.914-26.614 17.914q-39.922 12.284-78.82 12.284-92.128 1.024-161.224-48.112t-69.096-116.696zM182.21 741.786q11.26-80.868 61.93-139.216t112.090-59.372q60.396-2.048 96.222 53.23t25.592 136.146-60.908 137.168-112.090 58.348-97.246-52.206-25.592-134.098zM750.334 717.22v51.182h204.73v204.73h51.182v-204.73h205.754v-51.182h-205.754v-205.754h-51.182v205.754h-204.73z" horiz-adv-x="1212" />
21
+ <glyph unicode="&#xe007;" d="M0 589.312q0 64.512 27.136 128t77.824 117.76 133.12 88.064 182.784 33.792q162.816 0 267.264-100.352t104.448-236.544q0-175.104-88.576-289.28t-228.864-114.176q-46.080 0-86.528 21.504t-56.832 52.224l-40.96-161.792q-5.12-19.456-13.312-39.424t-17.92-38.4-19.456-34.816-19.456-30.72-16.896-24.064-13.312-16.896l-6.144-8.192q-3.072-4.096-8.192-3.072t-6.144 6.144q0 1.024-1.536 14.336t-3.072 28.16-3.072 38.4-1.024 45.568 3.072 48.64 7.68 49.152q11.264 48.128 75.776 320.512-8.192 16.384-13.312 39.424t-5.12 37.376l-1.024 15.36q0 65.536 33.28 109.056t80.384 43.52q37.888 0 58.88-25.088t20.992-62.976q0-23.552-8.704-57.856t-23.040-78.848-20.48-72.192q-10.24-46.080 17.92-79.872t75.264-33.792q80.896 0 133.632 91.648t52.736 221.696q0 99.328-64.512 162.304t-180.224 62.976q-129.024 0-209.408-82.944t-80.384-198.656q0-68.608 38.912-115.712 13.312-15.36 8.192-32.768-2.048-5.12-6.144-23.552t-6.144-23.552q-2.048-11.264-10.24-14.848t-18.432 0.512q-60.416 24.576-90.624 84.48t-30.208 139.776z" horiz-adv-x="793" />
22
+ <glyph unicode="&#xe008;" d="M-5.116 852.114q0 51.154 35.808 84.404t93.1 33.25q56.27 0 91.054-32.738 35.808-33.762 35.808-87.984 0-49.108-34.784-81.846-35.808-33.762-94.124-33.762h-1.024q-56.27 0-91.054 33.762t-34.784 84.916zM8.184-43.078v683.416h227.124v-683.416h-227.124zM361.146-43.078h227.124v381.608q0 35.808 8.184 55.246 14.324 34.784 43.48 58.826t73.15 24.042q114.584 0 114.584-154.484v-365.238h227.124v391.838q0 151.416-71.616 229.68t-189.27 78.266q-131.976 0-205.638-113.562v-2.046h-1.024l1.024 2.046v97.192h-227.124q2.046-32.738 2.046-203.592t-2.046-479.824z" horiz-adv-x="1064" />
23
+ <glyph unicode="&#xe009;" d="M0 52.19q30.682-3.068 61.366-3.068 180.006 0 321.148 110.458-83.866 1.022-150.346 51.138t-91.026 127.846q20.456-4.092 48.070-4.092 35.796 0 68.526 9.204-90.004 17.386-148.812 88.47t-58.808 164.154v3.068q54.206-30.682 117.618-31.706-53.184 34.774-84.378 91.538t-31.194 123.244q0 69.548 35.796 129.892 96.14-119.664 234.724-190.746t297.114-79.264q-7.16 33.752-7.16 59.32 0 106.368 75.684 182.052t183.074 75.684q111.482 0 188.188-81.822 88.98 18.41 163.642 63.412-28.638-93.072-112.504-143.186 74.662 9.204 147.278 40.91-49.092-76.708-127.846-133.982v-33.752q0-103.3-30.172-207.11t-92.048-198.416-147.79-168.244-206.086-117.106-258.248-43.468q-213.758 0-395.81 115.572z" horiz-adv-x="1258" />
24
+ <glyph unicode="&#xe00a;" d="M286.416 426.496v195.584h157.696v98.304q0 106.496 69.12 181.248t167.424 74.752h156.672v-195.584h-156.672q-15.36 0-27.648-16.896t-12.288-41.472v-100.352h196.608v-195.584h-196.608v-474.112h-196.608v474.112h-157.696z" horiz-adv-x="836" />
25
+ <glyph unicode="&#xe00b;" d="M0 163.328q11.264 15.36 32.256 26.112t50.176 20.48 41.472 15.872q19.456 0 34.304-4.608t34.304-15.36 25.6-12.8q48.128-21.504 266.24-121.856 19.456-4.096 36.352 0t40.448 17.92 24.576 14.848q20.48 9.216 78.336 35.328t89.6 40.448q4.096 2.048 42.496 21.504t61.952 24.576q13.312 2.048 28.16-1.024t24.064-7.68 23.552-13.312 18.432-10.752 15.872-6.144 18.944-8.192 11.264-11.264q3.072-4.096 4.096-14.336-10.24-13.312-31.744-24.576t-52.224-22.528-40.96-16.384q-44.032-20.48-131.584-62.976t-131.584-62.976q-7.168-3.072-21.504-11.776t-24.064-13.312-26.112-11.264-28.16-7.168-30.208 1.536l-270.336 125.952q-6.144 3.072-32.768 14.336t-52.736 22.528-54.784 24.576-47.616 24.064-22.016 16.896q-4.096 4.096-4.096 13.312zM0 437.76q11.264 15.36 32.256 25.6t51.2 20.48 42.496 15.36q19.456 0 34.816-4.608t35.328-15.36 26.112-13.824q43.008-19.456 129.536-59.392t130.56-60.416q19.456-5.12 37.888-0.512t39.936 17.408 25.6 14.848q69.632 32.768 163.84 73.728 11.264 5.12 32.256 16.896t39.424 19.968 36.864 11.264q16.384 3.072 32.256-1.024t38.4-17.408 23.552-13.312q5.12-3.072 15.872-6.656t18.432-8.192 11.776-10.752q3.072-5.12 4.096-14.336-10.24-14.336-32.256-26.112t-53.76-23.040-41.984-16.384q-49.152-23.552-138.752-66.56t-125.44-60.416q-7.168-3.072-26.624-14.336t-29.696-15.36-33.28-10.24-36.352 0q-219.136 103.424-266.24 124.928-6.144 3.072-45.056 19.456t-71.168 30.72-62.976 30.208-34.816 23.040q-4.096 4.096-4.096 14.336zM0 711.168q10.24 15.36 32.256 27.136t53.76 23.040 41.984 16.384l356.352 165.888q30.72 0 54.784-7.168t57.856-26.624 40.96-22.528q39.936-18.432 119.808-55.808t119.808-55.808q4.096-2.048 37.376-15.36t55.808-24.576 27.648-20.48q3.072-4.096 4.096-13.312-9.216-13.312-26.624-23.040t-44.544-19.456-35.328-13.824q-48.128-22.528-143.36-68.096t-142.336-68.096q-6.144-3.072-20.48-11.264t-23.552-12.8-25.6-10.752-27.648-6.144-28.672 1.024q-250.88 116.736-262.144 121.856-4.096 2.048-64.512 28.16t-104.448 47.616-49.152 30.72q-4.096 4.096-4.096 13.312z" horiz-adv-x="1002" />
26
+ <glyph unicode="&#xe00c;" d="M704 384l128 128v-512h-768v768h512l-128-128h-256v-512h512zM960 896v-352l-130.744 130.744-354.746-354.744h-90.51v90.512l354.744 354.744-130.744 130.744z" />
27
+ <glyph unicode="&#xe00d;" d="M64 384h384v-384l-138.26 138.26-202-202-107.48 107.48 202 202zM821.74 245.74l202-202-107.48-107.48-202 202-138.26-138.26v384h384zM960 512h-384v384l138.26-138.26 202 202 107.48-107.48-202-202zM309.74 757.74l138.26 138.26v-384h-384l138.26 138.26-202 202 107.48 107.48z" />
28
+ <glyph unicode="&#xe00e;" d="M1024 960v-384l-138.26 138.26-212-212-107.48 107.48 212 212-138.26 138.26zM245.74 821.74l212-212-107.48-107.48-212 212-138.26-138.26v384h384zM885.74 181.74l138.26 138.26v-384h-384l138.26 138.26-212 212 107.48 107.48zM457.74 286.26l-212-212 138.26-138.26h-384v384l138.26-138.26 212 212z" />
29
+ <glyph unicode="&#xe00f;" d="M512 384l256 256h-192v256h-128v-256h-192zM744.726 488.728l-71.74-71.742 260.080-96.986-421.066-157.018-421.066 157.018 260.080 96.986-71.742 71.742-279.272-104.728v-256l512-192 512 192v256z" />
30
+ <glyph unicode="&#xe010;" d="M960 832h-896c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM896 704v-46l-384-226.286-384 226.286v46h768zM128 192v354.572l384-226.286 384 226.286v-354.572h-768z" />
31
+ <glyph unicode="&#xe011;" d="M1024 448c-1.278 66.862-15.784 133.516-42.576 194.462-26.704 61-65.462 116.258-113.042 161.92-47.552 45.696-103.944 81.82-164.984 105.652-61.004 23.924-126.596 35.352-191.398 33.966-64.81-1.282-129.332-15.374-188.334-41.356-59.048-25.896-112.542-63.47-156.734-109.576-44.224-46.082-79.16-100.708-102.186-159.798-23.114-59.062-34.128-122.52-32.746-185.27 1.286-62.76 14.964-125.148 40.134-182.206 25.088-57.1 61.476-108.828 106.11-151.548 44.61-42.754 97.472-76.504 154.614-98.72 57.118-22.304 118.446-32.902 179.142-31.526 60.708 1.29 120.962 14.554 176.076 38.914 55.15 24.282 105.116 59.48 146.366 102.644 41.282 43.14 73.844 94.236 95.254 149.43 13.034 33.458 21.88 68.4 26.542 103.798 1.246-0.072 2.498-0.12 3.762-0.12 35.346 0 64 28.652 64 64 0 1.796-0.094 3.572-0.238 5.332h0.238zM922.306 278.052c-23.472-53.202-57.484-101.4-99.178-141.18-41.67-39.81-91-71.186-144.244-91.79-53.228-20.678-110.29-30.452-166.884-29.082-56.604 1.298-112.596 13.736-163.82 36.474-51.25 22.666-97.684 55.49-135.994 95.712-38.338 40.198-68.528 87.764-88.322 139.058-19.87 51.284-29.228 106.214-27.864 160.756 1.302 54.552 13.328 108.412 35.254 157.69 21.858 49.3 53.498 93.97 92.246 130.81 38.73 36.868 84.53 65.87 133.874 84.856 49.338 19.060 102.136 28.006 154.626 26.644 52.5-1.306 104.228-12.918 151.562-34.034 47.352-21.050 90.256-51.502 125.624-88.782 35.396-37.258 63.21-81.294 81.39-128.688 18.248-47.392 26.782-98.058 25.424-148.496h0.238c-0.144-1.76-0.238-3.536-0.238-5.332 0-33.012 24.992-60.174 57.086-63.624-6.224-34.822-16.53-68.818-30.78-100.992z" />
32
+ <glyph unicode="&#xe012;" d="M192 448c0 12.18 0.704 24.196 2.030 36.022l-184.98 60.104c-5.916-31.14-9.050-63.264-9.050-96.126 0-147.23 62.166-279.922 161.654-373.324l114.284 157.296c-52.124 56.926-83.938 132.758-83.938 216.028zM832 448c0-83.268-31.812-159.102-83.938-216.028l114.284-157.296c99.488 93.402 161.654 226.094 161.654 373.324 0 32.862-3.132 64.986-9.048 96.126l-184.98-60.104c1.324-11.828 2.028-23.842 2.028-36.022zM576 761.592c91.934-18.662 169.544-76.742 214.45-155.826l184.978 60.102c-73.196 155.42-222.24 268.060-399.428 290.156v-194.432zM233.55 605.768c44.906 79.084 122.516 137.164 214.45 155.826v194.43c-177.188-22.096-326.23-134.736-399.426-290.154l184.976-60.102zM644.556 156.672c-40.39-18.408-85.272-28.672-132.556-28.672s-92.166 10.264-132.554 28.67l-114.292-157.31c73.206-40.366 157.336-63.36 246.846-63.36s173.64 22.994 246.848 63.36l-114.292 157.312z" />
33
+ <glyph unicode="&#xe013;" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM655.53 719.53c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128zM832 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM719.53 176.47c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM448.002 64c0 0 0 0 0 0 0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0 0 0 0 0 0 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM176.472 176.47c0 0 0 0 0 0 0 35.346 28.654 64 64 64 35.346 0 64-28.654 64-64 0 0 0 0 0 0 0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM144.472 719.53c0 0 0 0 0 0 0 53.019 42.981 96 96 96 53.019 0 96-42.981 96-96 0 0 0 0 0 0 0-53.019-42.981-96-96-96-53.019 0-96 42.981-96 96zM56 448c0 39.765 32.235 72 72 72s72-32.235 72-72c0-39.765-32.235-72-72-72-39.765 0-72 32.235-72 72z" />
34
+ <glyph unicode="&#xe014;" d="M512 960c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96 53.020 0 96 42.98 96 96 0 282.77-229.23 512-512 512zM512-64c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96-53.020 0-96-42.98-96-96 0-282.77 229.23-512 512-512z" />
35
+ <glyph unicode="&#xe015;" d="M0.042 446.382l-0.022-0.004c0 0 0.012-0.090 0.028-0.222 0.11-3.878 0.55-7.676 1.322-11.352 0.204-1.746 0.428-3.66 0.674-5.774 0.222-1.886 0.46-3.914 0.718-6.078 0.374-2.566 0.77-5.292 1.19-8.176 0.856-5.746 1.8-12.124 2.908-18.958 1.348-6.446 2.804-13.414 4.364-20.864 0.71-3.718 1.776-7.504 2.786-11.406 1.024-3.89 2.078-7.894 3.16-12.004 0.566-2.042 1.040-4.132 1.708-6.208 0.656-2.074 1.32-4.176 1.988-6.3 1.348-4.234 2.726-8.566 4.136-12.988 0.352-1.106 0.708-2.21 1.064-3.324 0.408-1.102 0.814-2.208 1.226-3.316 0.826-2.218 1.658-4.458 2.502-6.714 1.696-4.496 3.422-9.078 5.18-13.742 1.968-4.566 3.97-9.214 6.004-13.934 1.018-2.348 2.044-4.714 3.078-7.098 1.048-2.376 2.27-4.704 3.408-7.074 2.322-4.714 4.678-9.496 7.062-14.332 2.47-4.786 5.208-9.512 7.846-14.328 1.336-2.398 2.68-4.808 4.028-7.23 1.368-2.41 2.902-4.75 4.356-7.14 2.95-4.738 5.93-9.524 8.934-14.348 12.64-18.894 26.676-37.566 42.21-55.278 15.712-17.578 32.726-34.25 50.692-49.602 18.18-15.136 37.264-28.902 56.726-41.114 19.604-12.036 39.644-22.312 59.376-31.144 5.004-2.040 9.964-4.062 14.878-6.066 2.462-0.972 4.868-2.032 7.336-2.918 2.47-0.868 4.93-1.734 7.376-2.594 4.898-1.684 9.678-3.468 14.484-4.992 4.832-1.43 9.604-2.844 14.312-4.242 2.356-0.672 4.66-1.426 7.004-2.012 2.346-0.574 4.676-1.14 6.986-1.704 4.606-1.118 9.142-2.214 13.604-3.296 4.5-0.868 8.926-1.722 13.27-2.558 2.166-0.41 4.31-0.82 6.434-1.222 1.062-0.2 2.118-0.398 3.166-0.598 1.060-0.148 2.118-0.292 3.166-0.442 4.192-0.582 8.292-1.152 12.3-1.71 1.998-0.274 3.972-0.546 5.922-0.816 1.946-0.286 3.904-0.378 5.814-0.57 3.822-0.336 7.544-0.664 11.164-0.98 3.616-0.304 7.104-0.688 10.526-0.738 0.23-0.008 0.452-0.016 0.682-0.026 0.614-34.812 29.008-62.846 63.968-62.846 0.542 0 1.080 0.028 1.62 0.042v-0.022c0 0 0.090 0.012 0.224 0.028 3.878 0.11 7.674 0.55 11.35 1.322 1.748 0.204 3.662 0.426 5.776 0.672 1.884 0.222 3.912 0.462 6.076 0.718 2.566 0.376 5.292 0.772 8.176 1.192 5.746 0.856 12.124 1.8 18.958 2.908 6.446 1.348 13.414 2.804 20.864 4.362 3.718 0.712 7.504 1.778 11.406 2.786 3.892 1.026 7.894 2.080 12.004 3.162 2.044 0.566 4.132 1.040 6.208 1.708 2.074 0.656 4.174 1.318 6.3 1.988 4.232 1.348 8.564 2.726 12.988 4.134 1.104 0.354 2.21 0.708 3.324 1.066 1.1 0.406 2.206 0.814 3.316 1.226 2.216 0.824 4.456 1.658 6.714 2.5 4.496 1.698 9.078 3.424 13.74 5.182 4.568 1.968 9.216 3.97 13.936 6.004 2.348 1.018 4.714 2.044 7.098 3.078 2.376 1.048 4.702 2.27 7.074 3.408 4.714 2.322 9.494 4.678 14.33 7.062 4.786 2.47 9.512 5.208 14.328 7.846 2.398 1.336 4.808 2.678 7.23 4.028 2.41 1.366 4.75 2.9 7.14 4.354 4.738 2.952 9.524 5.93 14.35 8.936 18.89 12.64 37.564 26.674 55.278 42.21 17.574 15.712 34.248 32.726 49.602 50.69 15.136 18.182 28.902 37.264 41.112 56.728 12.036 19.602 22.314 39.644 31.142 59.376 2.042 5.002 4.062 9.964 6.068 14.878 0.974 2.462 2.032 4.868 2.918 7.334 0.87 2.472 1.732 4.932 2.592 7.376 1.686 4.898 3.468 9.678 4.994 14.484 1.432 4.832 2.846 9.604 4.24 14.31 0.674 2.358 1.43 4.66 2.016 7.004 0.57 2.348 1.138 4.676 1.702 6.988 1.118 4.606 2.216 9.14 3.296 13.602 0.868 4.502 1.72 8.928 2.558 13.272 0.41 2.164 0.818 4.308 1.222 6.434 0.2 1.060 0.398 2.116 0.596 3.164 0.148 1.062 0.296 2.118 0.444 3.168 0.582 4.19 1.152 8.292 1.708 12.3 0.278 1.996 0.55 3.97 0.82 5.922 0.284 1.946 0.376 3.902 0.568 5.812 0.336 3.822 0.664 7.546 0.98 11.164 0.304 3.616 0.686 7.106 0.738 10.528 0.020 0.534 0.040 1.044 0.058 1.574 35.224 0.146 63.732 28.738 63.732 63.992 0 0.542-0.028 1.080-0.042 1.62h0.022c0 0-0.012 0.090-0.028 0.224-0.11 3.878-0.55 7.674-1.322 11.35-0.204 1.748-0.428 3.662-0.674 5.776-0.222 1.886-0.46 3.914-0.718 6.076-0.374 2.566-0.77 5.294-1.19 8.176-0.856 5.746-1.8 12.124-2.908 18.958-1.348 6.444-2.804 13.414-4.364 20.862-0.71 3.72-1.776 7.506-2.786 11.408-1.024 3.892-2.078 7.894-3.16 12.002-0.566 2.044-1.040 4.134-1.708 6.208-0.656 2.076-1.32 4.174-1.988 6.3-1.348 4.234-2.726 8.566-4.136 12.99-0.352 1.102-0.708 2.21-1.064 3.324-0.408 1.1-0.814 2.206-1.226 3.316-0.826 2.216-1.658 4.454-2.502 6.714-1.696 4.498-3.422 9.080-5.18 13.74-1.968 4.57-3.97 9.216-6.004 13.936-1.020 2.348-2.044 4.714-3.078 7.098-1.048 2.376-2.27 4.702-3.408 7.076-2.322 4.714-4.678 9.494-7.062 14.33-2.47 4.786-5.208 9.512-7.846 14.328-1.336 2.398-2.68 4.808-4.028 7.23-1.368 2.41-2.902 4.75-4.356 7.14-2.95 4.74-5.93 9.524-8.934 14.35-12.64 18.892-26.676 37.564-42.21 55.278-15.712 17.576-32.726 34.25-50.692 49.602-18.18 15.136-37.264 28.902-56.726 41.112-19.604 12.036-39.644 22.314-59.376 31.142-5.004 2.040-9.964 4.062-14.878 6.068-2.462 0.974-4.868 2.032-7.336 2.918-2.47 0.87-4.93 1.734-7.376 2.592-4.898 1.684-9.678 3.468-14.484 4.994-4.832 1.432-9.604 2.846-14.312 4.242-2.356 0.672-4.66 1.428-7.004 2.014-2.346 0.572-4.676 1.138-6.986 1.702-4.606 1.118-9.142 2.216-13.604 3.298-4.5 0.868-8.926 1.72-13.27 2.558-2.166 0.412-4.31 0.82-6.434 1.222-1.062 0.2-2.118 0.398-3.166 0.596-1.060 0.148-2.118 0.296-3.166 0.442-4.192 0.584-8.292 1.154-12.3 1.71-1.998 0.276-3.972 0.55-5.922 0.82-1.946 0.284-3.904 0.376-5.814 0.57-3.822 0.336-7.544 0.664-11.164 0.98-3.616 0.304-7.104 0.686-10.526 0.738-0.852 0.032-1.674 0.062-2.512 0.092-0.65 34.78-29.028 62.778-63.966 62.778-0.542 0-1.080-0.028-1.62-0.042l-0.002 0.022c0 0-0.090-0.012-0.222-0.028-3.878-0.11-7.676-0.55-11.352-1.322-1.748-0.204-3.662-0.426-5.776-0.672-1.884-0.222-3.912-0.462-6.076-0.718-2.566-0.376-5.292-0.772-8.176-1.192-5.746-0.856-12.124-1.8-18.958-2.908-6.446-1.348-13.414-2.804-20.864-4.362-3.718-0.712-7.504-1.778-11.406-2.786-3.892-1.026-7.894-2.080-12.004-3.162-2.044-0.566-4.132-1.040-6.208-1.708-2.074-0.656-4.174-1.318-6.3-1.988-4.232-1.348-8.564-2.726-12.988-4.134-1.104-0.354-2.21-0.708-3.324-1.066-1.1-0.406-2.206-0.814-3.316-1.226-2.216-0.824-4.456-1.658-6.714-2.5-4.496-1.698-9.078-3.424-13.74-5.182-4.568-1.968-9.216-3.97-13.936-6.004-2.348-1.018-4.714-2.044-7.098-3.078-2.376-1.048-4.702-2.27-7.074-3.408-4.714-2.322-9.494-4.678-14.33-7.062-4.786-2.47-9.512-5.208-14.328-7.846-2.398-1.336-4.808-2.678-7.23-4.028-2.41-1.366-4.75-2.9-7.14-4.354-4.738-2.952-9.524-5.93-14.35-8.936-18.89-12.64-37.564-26.674-55.278-42.21-17.574-15.712-34.248-32.726-49.602-50.69-15.136-18.182-28.902-37.264-41.112-56.728-12.036-19.602-22.314-39.644-31.142-59.376-2.042-5.002-4.062-9.964-6.068-14.878-0.974-2.462-2.032-4.868-2.918-7.334-0.87-2.472-1.732-4.932-2.592-7.376-1.686-4.898-3.468-9.678-4.994-14.484-1.432-4.832-2.846-9.604-4.24-14.31-0.674-2.358-1.43-4.66-2.016-7.004-0.57-2.348-1.138-4.676-1.702-6.988-1.118-4.606-2.216-9.14-3.296-13.602-0.868-4.502-1.72-8.928-2.558-13.272-0.41-2.164-0.818-4.308-1.222-6.434-0.2-1.060-0.398-2.116-0.596-3.164-0.148-1.062-0.296-2.118-0.444-3.168-0.582-4.19-1.152-8.292-1.708-12.3-0.278-1.996-0.55-3.97-0.82-5.922-0.284-1.946-0.376-3.902-0.568-5.812-0.336-3.822-0.664-7.546-0.98-11.164-0.304-3.616-0.686-7.106-0.738-10.528-0.020-0.548-0.040-1.076-0.058-1.62-34.376-1.112-61.902-29.304-61.902-63.946 0-0.542 0.028-1.078 0.042-1.618zM73.518 511.294c0.042 0.196 0.086 0.384 0.128 0.58 0.644 3.248 1.632 6.542 2.556 9.942 0.934 3.388 1.894 6.876 2.88 10.454 0.516 1.78 0.934 3.602 1.546 5.406 0.596 1.802 1.202 3.628 1.81 5.476 1.218 3.682 2.464 7.45 3.736 11.294 0.316 0.958 0.634 1.924 0.956 2.892 0.37 0.954 0.74 1.914 1.114 2.876 0.746 1.924 1.5 3.868 2.26 5.83 1.52 3.904 3.070 7.882 4.646 11.93 1.768 3.96 3.566 7.99 5.392 12.080 0.908 2.038 1.824 4.090 2.746 6.156 0.932 2.060 2.036 4.072 3.052 6.126 2.070 4.084 4.17 8.222 6.294 12.412 2.202 4.142 4.654 8.224 6.998 12.392 1.184 2.074 2.374 4.16 3.57 6.256 1.21 2.086 2.586 4.102 3.876 6.166 2.616 4.098 5.256 8.232 7.918 12.402 11.234 16.298 23.632 32.398 37.33 47.638 13.874 15.104 28.842 29.404 44.598 42.548 15.974 12.928 32.686 24.65 49.676 35.022 17.13 10.194 34.6 18.838 51.734 26.258 4.35 1.7 8.662 3.382 12.934 5.050 2.136 0.812 4.216 1.71 6.36 2.444 2.146 0.714 4.28 1.428 6.404 2.136 4.25 1.386 8.382 2.888 12.548 4.142 4.184 1.174 8.314 2.332 12.392 3.474 2.038 0.55 4.026 1.19 6.054 1.662 2.030 0.458 4.044 0.914 6.044 1.368 3.978 0.91 7.896 1.806 11.748 2.688 3.888 0.686 7.71 1.36 11.462 2.022 1.868 0.33 3.716 0.658 5.546 0.98 0.914 0.162 1.824 0.324 2.728 0.484 0.916 0.112 1.828 0.222 2.734 0.332 3.612 0.448 7.148 0.882 10.604 1.31 1.72 0.216 3.422 0.432 5.102 0.644 1.674 0.226 3.364 0.266 5.010 0.408 3.292 0.238 6.498 0.472 9.616 0.7 3.11 0.218 6.11 0.524 9.058 0.508 5.848 0.132 11.32 0.256 16.38 0.372 4.664-0.168 8.948-0.324 12.818-0.462 1.914-0.054 3.726-0.108 5.432-0.156 2.122-0.134 4.108-0.26 5.958-0.378 2.13-0.138 4.060-0.266 5.82-0.38 3.256-0.51 6.592-0.782 9.99-0.782 0.466 0 0.93 0.026 1.396 0.036 0.132-0.008 0.224-0.014 0.224-0.014v0.020c31.14 0.778 56.75 23.784 61.556 53.754 0.542-0.12 1.064-0.236 1.612-0.356 3.246-0.644 6.542-1.632 9.942-2.556 3.386-0.934 6.876-1.894 10.454-2.88 1.778-0.516 3.602-0.934 5.404-1.546 1.802-0.596 3.63-1.202 5.478-1.812 3.68-1.218 7.448-2.464 11.292-3.736 0.96-0.316 1.924-0.634 2.892-0.956 0.956-0.37 1.914-0.74 2.876-1.112 1.926-0.746 3.868-1.5 5.83-2.26 3.904-1.52 7.884-3.070 11.932-4.646 3.96-1.768 7.988-3.566 12.080-5.392 2.038-0.908 4.088-1.824 6.156-2.746 2.060-0.932 4.072-2.036 6.126-3.054 4.082-2.070 8.222-4.17 12.41-6.294 4.144-2.202 8.226-4.654 12.394-6.998 2.074-1.184 4.16-2.374 6.256-3.572 2.086-1.21 4.102-2.586 6.166-3.876 4.098-2.616 8.23-5.256 12.402-7.918 16.296-11.234 32.398-23.632 47.636-37.33 15.104-13.874 29.406-28.842 42.55-44.598 12.928-15.974 24.648-32.686 35.020-49.676 10.196-17.13 18.84-34.6 26.26-51.736 1.698-4.348 3.382-8.662 5.050-12.932 0.812-2.136 1.71-4.216 2.444-6.36 0.714-2.146 1.428-4.28 2.136-6.404 1.386-4.25 2.888-8.384 4.142-12.548 1.174-4.184 2.33-8.316 3.474-12.392 0.55-2.038 1.19-4.026 1.66-6.054 0.46-2.030 0.916-4.046 1.368-6.046 0.91-3.978 1.808-7.896 2.688-11.748 0.688-3.888 1.362-7.71 2.024-11.462 0.33-1.868 0.656-3.716 0.98-5.548 0.162-0.914 0.324-1.824 0.484-2.728 0.11-0.916 0.222-1.828 0.332-2.734 0.446-3.612 0.882-7.148 1.31-10.604 0.216-1.72 0.432-3.42 0.642-5.1 0.226-1.674 0.268-3.364 0.41-5.010 0.238-3.292 0.472-6.498 0.7-9.616 0.218-3.11 0.524-6.11 0.508-9.058 0.132-5.848 0.256-11.32 0.372-16.38-0.168-4.664-0.324-8.948-0.462-12.818-0.054-1.914-0.108-3.726-0.156-5.432-0.134-2.122-0.26-4.108-0.378-5.958-0.138-2.13-0.266-4.060-0.38-5.82-0.498-3.256-0.768-6.592-0.768-9.99 0-0.468 0.026-0.93 0.036-1.396-0.008-0.132-0.016-0.224-0.016-0.224h0.022c0.768-30.766 23.236-56.128 52.682-61.37-0.066-0.296-0.13-0.584-0.198-0.884-0.644-3.248-1.632-6.542-2.556-9.942-0.934-3.388-1.894-6.876-2.88-10.454-0.516-1.78-0.934-3.602-1.546-5.406-0.596-1.802-1.202-3.628-1.81-5.476-1.218-3.682-2.464-7.45-3.736-11.294-0.316-0.958-0.634-1.924-0.956-2.892-0.37-0.954-0.74-1.914-1.114-2.876-0.746-1.924-1.5-3.868-2.26-5.83-1.52-3.904-3.070-7.882-4.646-11.93-1.768-3.96-3.566-7.99-5.392-12.080-0.908-2.038-1.824-4.090-2.746-6.156-0.932-2.060-2.036-4.072-3.052-6.126-2.070-4.084-4.17-8.222-6.294-12.412-2.202-4.142-4.654-8.224-6.998-12.392-1.184-2.074-2.374-4.16-3.57-6.256-1.21-2.086-2.586-4.102-3.876-6.166-2.616-4.098-5.256-8.232-7.918-12.402-11.234-16.298-23.632-32.398-37.33-47.638-13.874-15.104-28.842-29.404-44.598-42.548-15.974-12.928-32.686-24.65-49.676-35.022-17.13-10.194-34.6-18.838-51.734-26.258-4.35-1.7-8.662-3.382-12.934-5.050-2.136-0.812-4.216-1.71-6.36-2.444-2.146-0.714-4.28-1.428-6.404-2.136-4.25-1.386-8.382-2.888-12.548-4.142-4.184-1.174-8.314-2.332-12.392-3.474-2.038-0.55-4.026-1.19-6.054-1.662-2.030-0.458-4.044-0.914-6.044-1.368-3.978-0.91-7.896-1.806-11.748-2.688-3.888-0.686-7.71-1.36-11.462-2.022-1.868-0.33-3.716-0.658-5.546-0.98-0.914-0.162-1.824-0.324-2.728-0.484-0.916-0.112-1.828-0.222-2.734-0.332-3.612-0.448-7.148-0.882-10.604-1.31-1.72-0.216-3.422-0.432-5.102-0.644-1.674-0.226-3.364-0.266-5.010-0.408-3.292-0.238-6.498-0.472-9.616-0.7-3.11-0.218-6.11-0.524-9.058-0.508-5.848-0.132-11.32-0.256-16.38-0.372-4.664 0.168-8.948 0.324-12.818 0.462-1.914 0.054-3.726 0.108-5.432 0.156-2.122 0.134-4.108 0.26-5.958 0.378-2.13 0.138-4.060 0.266-5.82 0.38-3.256 0.51-6.592 0.782-9.99 0.782-0.466 0-0.93-0.026-1.396-0.036-0.132 0.008-0.224 0.014-0.224 0.014v-0.020c-31.004-0.774-56.524-23.586-61.488-53.364-3.2 0.64-6.446 1.61-9.792 2.522-3.386 0.934-6.876 1.894-10.454 2.878-1.778 0.516-3.602 0.938-5.404 1.546-1.802 0.598-3.63 1.204-5.478 1.812-3.68 1.218-7.448 2.464-11.292 3.738-0.96 0.316-1.924 0.632-2.892 0.954-0.956 0.372-1.914 0.742-2.876 1.114-1.926 0.746-3.868 1.5-5.83 2.258-3.904 1.524-7.884 3.070-11.932 4.648-3.96 1.77-7.988 3.566-12.080 5.39-2.038 0.91-4.088 1.824-6.156 2.746-2.060 0.934-4.072 2.036-6.126 3.054-4.082 2.070-8.222 4.172-12.41 6.296-4.144 2.2-8.226 4.652-12.394 6.996-2.074 1.184-4.16 2.376-6.256 3.57-2.086 1.21-4.102 2.586-6.166 3.878-4.098 2.614-8.23 5.254-12.402 7.918-16.296 11.23-32.398 23.632-47.636 37.328-15.104 13.876-29.406 28.84-42.55 44.598-12.928 15.972-24.648 32.684-35.020 49.676-10.196 17.128-18.84 34.602-26.26 51.734-1.698 4.352-3.382 8.664-5.050 12.934-0.812 2.136-1.71 4.218-2.444 6.36-0.714 2.148-1.428 4.282-2.136 6.406-1.386 4.25-2.888 8.382-4.142 12.546-1.174 4.184-2.33 8.316-3.474 12.394-0.55 2.036-1.19 4.024-1.66 6.054-0.46 2.028-0.916 4.042-1.368 6.042-0.91 3.98-1.808 7.898-2.688 11.75-0.688 3.886-1.362 7.71-2.024 11.46-0.33 1.868-0.656 3.718-0.98 5.546-0.162 0.914-0.324 1.824-0.484 2.73-0.11 0.914-0.222 1.828-0.332 2.734-0.446 3.61-0.882 7.148-1.31 10.602-0.216 1.722-0.432 3.422-0.642 5.102-0.226 1.676-0.268 3.364-0.41 5.012-0.238 3.29-0.472 6.496-0.7 9.614-0.218 3.11-0.524 6.11-0.508 9.058-0.132 5.848-0.256 11.32-0.372 16.382 0.168 4.664 0.324 8.946 0.462 12.816 0.054 1.914 0.108 3.726 0.156 5.434 0.134 2.122 0.26 4.106 0.378 5.958 0.138 2.128 0.266 4.058 0.38 5.82 0.496 3.26 0.766 6.596 0.766 9.994 0 0.466-0.026 0.93-0.036 1.396 0.008 0.132 0.016 0.224 0.016 0.224h-0.022c-0.78 31.38-24.134 57.154-54.44 61.674z" />
36
+ <glyph unicode="&#xe016;" d="M1024 544l-225.738 22.574 143.66 175.582-135.766 135.764-175.582-143.658-22.574 225.738h-192l-22.574-225.738-175.582 143.658-135.764-135.764 143.658-175.582-225.738-22.574v-192l225.738-22.574-143.658-175.582 135.764-135.766 175.582 143.66 22.574-225.738h192l22.574 225.738 175.582-143.66 135.766 135.766-143.66 175.582 225.738 22.574v192zM704 527.528v-159.056l-112.472-112.472h-159.056l-112.472 112.472v159.056l112.47 112.472h159.056l112.474-112.472z" />
37
+ <glyph unicode="&#xe017;" d="M874.022 810.020c-92.652 92.656-220.636 149.98-362.022 149.98-219.488 0-406.69-138.128-479.498-332.188l119.876-44.954c54.604 145.546 195.006 249.142 359.622 249.142 106.040 0 202.020-43 271.506-112.494l-143.506-143.506h384v384l-149.978-149.98zM512 64c-106.040 0-202.026 42.992-271.512 112.488l143.512 143.512h-384v-384l149.994 149.994c92.646-92.662 220.618-149.994 362.006-149.994 219.49 0 406.692 138.128 479.5 332.188l-119.876 44.954c-54.604-145.546-195.006-249.142-359.624-249.142z" />
38
+ <glyph unicode="&#xe018;" d="M512 752c-100.252 0-189.54-46.802-246.326-119.256l-76.776 57.582c74.32 95.764 191.494 157.674 323.102 157.674v112l160-160-160-160v112zM512 144c100.254 0 189.542 46.802 246.326 119.256l76.776-57.582c-74.32-95.764-191.494-157.674-323.102-157.674v-112l-160 160 160 160v-112zM201.6 448c0-100.364 49.928-189.508 126.724-244.902l-57.584-76.78c-100.108 72.928-165.14 189.966-165.14 321.682h-105.6l160 160 160-160h-118.4zM918.4 448h105.6l-160-160-160 160h118.4c0 100.364-49.928 189.508-126.724 244.902l57.584 76.778c100.108-72.926 165.14-189.962 165.14-321.68z" />
39
+ <glyph unicode="&#xe019;" d="M831.924 753.296v0 0zM834.050 448c104.384 99.81 155.082 197.58 121.354 256-19.26 33.356-63.36 49.296-123.48 49.296v-48c42.144 0 72.766-9.458 81.912-25.296 7.218-12.504 3.2-31.73-1.446-45.658-8.906-26.71-28.288-58.664-56.042-92.404-16.848-20.478-36.27-41.122-57.874-61.642-29.764 25.698-62.876 51.258-98.796 76.058-3.514 43.48-9.090 84.916-16.458 123.518 56.19 16.666 107.186 25.418 148.682 25.422l0.022 48c-0.008 0-0.018 0-0.026 0-45.174-0.004-99.396-9.032-158.874-26.404-34.24 140.318-93.566 233.11-161.024 233.11-67.458 0-126.784-92.792-161.028-233.102-59.474 17.372-113.698 26.398-158.872 26.398-60.12 0-104.248-15.942-123.506-49.296-33.73-58.42 16.966-156.19 121.352-256-104.386-99.808-155.082-197.58-121.352-256 19.26-33.36 63.37-49.294 123.506-49.294 45.172 0 99.396 9.030 158.872 26.4 34.244-140.314 93.568-233.106 161.028-233.106 67.458 0 126.784 92.792 161.028 233.102 59.474-17.374 113.7-26.398 158.874-26.398 60.12 0 104.248 15.944 123.506 49.296 33.724 58.418-16.97 156.192-121.358 256zM762.542 448c-18.62-15.876-38.454-31.584-59.358-46.988 0.53 15.476 0.816 31.142 0.816 46.988 0 15.844-0.286 31.51-0.812 46.988 20.904-15.404 40.738-31.112 59.354-46.988zM637.292 231.132c-23.054 8.196-46.562 17.52-70.27 27.868 13.626 7.262 27.294 14.824 40.974 22.722 13.722 7.922 27.146 16 40.288 24.198-2.882-25.766-6.562-50.76-10.992-74.788zM584 323.292c-23.782-13.728-47.876-26.63-72-38.616-24.124 11.982-48.22 24.884-72 38.616-23.976 13.844-47.192 28.226-69.498 43.012-1.65 26.712-2.502 54.010-2.502 81.696s0.852 54.984 2.502 81.694c22.306 14.786 45.522 29.17 69.498 43.014 23.78 13.728 47.876 26.63 72 38.614 24.124-11.982 48.218-24.884 72-38.614 23.976-13.842 47.192-28.23 69.498-43.014 1.65-26.71 2.502-54.008 2.502-81.694s-0.852-54.984-2.502-81.696c-22.306-14.784-45.522-29.172-69.498-43.012zM375.712 305.92c13.14-8.198 26.564-16.276 40.288-24.198 13.68-7.898 27.346-15.46 40.974-22.722-23.704-10.348-47.214-19.67-70.266-27.864-4.43 24.026-8.112 49.020-10.996 74.784zM320.812 401.010c-20.904 15.406-40.74 31.116-59.358 46.99 18.618 15.876 38.454 31.584 59.358 46.99-0.528-15.48-0.812-31.144-0.812-46.99s0.284-31.512 0.812-46.99zM386.708 664.864c23.052-8.194 46.562-17.518 70.266-27.864-13.626-7.262-27.294-14.824-40.974-22.722-13.722-7.922-27.146-16.002-40.288-24.198 2.884 25.764 6.566 50.758 10.996 74.784zM608 614.278c-13.68 7.898-27.346 15.46-40.972 22.722 23.706 10.346 47.212 19.668 70.268 27.862 4.43-24.024 8.11-49.016 10.992-74.782-13.142 8.196-26.566 16.274-40.288 24.198zM421.18 793.184c15.34 40.908 33.322 73.668 52.002 94.736 9.738 10.986 24.378 24.080 38.818 24.080 14.442 0 29.078-13.094 38.818-24.080 18.68-21.068 36.658-53.828 52.002-94.736 9.312-24.834 17.478-51.978 24.45-80.952-37.136-12.926-75.832-28.824-115.268-47.532-39.438 18.71-78.132 34.608-115.27 47.536 6.97 28.972 15.136 56.116 24.448 80.948zM167.65 541.938c-27.756 33.74-47.136 65.692-56.042 92.404-4.644 13.926-8.664 33.154-1.444 45.658 9.144 15.838 39.776 25.294 81.938 25.296h0.004c41.492 0 92.486-8.752 148.674-25.418-7.368-38.604-12.942-80.040-16.456-123.522-35.92-24.798-69.036-50.36-98.8-76.058-21.604 20.52-41.026 41.162-57.874 61.64zM192.1 190.708c-42.162 0-72.792 9.456-81.936 25.292-7.22 12.504-3.2 31.73 1.444 45.658 8.906 26.708 28.286 58.662 56.042 92.4 16.848 20.48 36.27 41.124 57.874 61.644 29.762-25.702 62.878-51.262 98.798-76.058 3.514-43.482 9.088-84.916 16.456-123.524-56.19-16.662-107.184-25.412-148.678-25.412zM602.82 102.816c-15.342-40.91-33.322-73.668-52.002-94.738-9.74-10.984-24.376-24.078-38.818-24.078-14.44 0-29.080 13.094-38.818 24.078-18.68 21.070-36.662 53.828-52.002 94.736-9.312 24.834-17.478 51.978-24.45 80.952 37.138 12.93 75.832 28.824 115.268 47.536 39.44-18.71 78.13-34.61 115.27-47.538-6.972-28.972-15.136-56.116-24.448-80.948zM912.39 261.656c4.642-13.926 8.664-33.152 1.446-45.656-9.146-15.84-39.778-25.296-81.938-25.296-41.496 0-92.49 8.754-148.678 25.418 7.368 38.606 12.944 80.042 16.458 123.524 35.92 24.8 69.036 50.362 98.796 76.058 21.604-20.522 41.026-41.164 57.874-61.64 27.758-33.744 47.136-65.696 56.042-92.408zM432 448c0 44.183 35.817 80 80 80s80-35.817 80-80c0-44.183-35.817-80-80-80-44.183 0-80 35.817-80 80z" />
40
+ <glyph unicode="&#xe01a;" d="M466.038 402.038l-320 320-146.038-146.038v384h384l-146.038-146.038 320-320zM512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512h128c0-212.078 171.922-384 384-384s384 171.922 384 384c0 212.078-171.922 384-384 384v128z" />
41
+ <glyph unicode="&#xe01b;" d="M640-64l192 192-320 320 320 320-192 192-512-512z" />
42
+ <glyph unicode="&#xe01c;" d="M384 960l-192-192 320-320-320-320 192-192 512 512z" />
43
+ <glyph unicode="&#xe01d;" d="M0 448l1024-448-192 448 192 448z" />
44
+ <glyph unicode="&#xe01e;" d="M1024 448l-1024 448 192-448-192-448z" />
45
+ <glyph unicode="&#xe01f;" d="M768 960l-512-512 512-512-255.998 512z" />
46
+ <glyph unicode="&#xe020;" d="M256-64l512 512-512 512 256-512z" />
47
+ <glyph unicode="&#xe021;" d="M640.002 704l-256-256 256-256.002z" />
48
+ <glyph unicode="&#xe022;" d="M384.002 192l256 256-256 256z" />
49
+ <glyph unicode="&#xe023;" d="M0 448.002l512-512.002v320h511.998l0.002 384h-512v320l-512-511.998zM152 509.492l16 16v-154.98l-16 16v122.98zM136 402.512l-16 16v58.98l16 16v-90.98zM184 541.492l16 16v-218.982l-16 16v186.982zM216 573.492l16 16v-282.982l-16 16v250.982zM248 605.492l16 16v-346.982l-16 16v314.982zM280 637.492l16 15.998v-410.98l-16 16v378.982zM312 669.49l16 16v-474.98l-16 16v442.98zM344 701.49l16 16v-538.98l-16 16v506.98zM376 733.49l16 16v-602.98l-16 16v570.98zM408 765.49l16 16v-666.98l-16 16v634.98zM104 461.492v-26.98l-13.49 13.49 13.49 13.49zM472 320v256h16v-256h-16zM504 320v256h16v-256h-16zM536 320v256h16v-256h-16zM568 320v256h16v-256h-16zM600 320v256h16v-256h-16zM632 320v256h16v-256h-16zM664 320v256h16v-256h-16zM696 320v256h16v-256h-16zM728 320v256h16v-256h-16zM760 320v256h16v-256h-16zM792 320v256h16v-256h-16zM824 320v256h16v-256h-16zM856 320v256h16v-256h-16zM888 320v256h16v-256h-16zM920 320v256h16v-256h-16zM959.998 320h-7.998v256h8l-0.002-256zM448 576h8v-256h-8v-229.49l-8 8v698.98l8 8v-229.49z" />
50
+ <glyph unicode="&#xe024;" d="M1024 447.998l-512 512.002v-320h-511.998l-0.002-384h512v-320l512 511.998zM872 386.508l-16-16v154.98l16-16v-122.98zM888 493.488l16-16v-58.98l-16-16v90.98zM840 354.508l-16-16v218.982l16-16v-186.982zM808 322.508l-16-16v282.982l16-16v-250.982zM776 290.508l-16-16v346.982l16-16v-314.982zM744 258.508l-16-15.998v410.98l16-16v-378.982zM712 226.51l-16-16v474.98l16-16v-442.98zM680 194.51l-16-16v538.98l16-16v-506.98zM648 162.51l-16-16v602.98l16-16v-570.98zM616 130.51l-16-16v666.98l16-16v-634.98zM920 434.508v26.98l13.49-13.49-13.49-13.49zM552 576v-256h-16v256h16zM520 576v-256h-16v256h16zM488 576v-256h-16v256h16zM456 576v-256h-16v256h16zM424 576v-256h-16v256h16zM392 576v-256h-16v256h16zM360 576v-256h-16v256h16zM328 576v-256h-16v256h16zM296 576v-256h-16v256h16zM264 576v-256h-16v256h16zM232 576v-256h-16v256h16zM200 576v-256h-16v256h16zM168 576v-256h-16v256h16zM136 576v-256h-16v256h16zM104 576v-256h-16v256h16zM64.002 576h7.998v-256h-8l0.002 256zM576 320h-8v256h8v229.49l8-8v-698.98l-8-8v229.49z" />
51
+ <glyph unicode="&#xe025;" d="M0 448l512-512v320h511.998l0.002 384h-512v320z" />
52
+ <glyph unicode="&#xe026;" d="M1024 448l-512 512v-320h-511.998l-0.002-384h512v-320z" />
53
+ <glyph unicode="&#xe027;" d="M448 704c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64-35.346 0-64 28.654-64 64zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 128c-35.348 0-64 28.652-64 64s28.652 64 64 64c35.346 0 64-28.652 64-64s-28.654-64-64-64zM512 448c-114.876 0-208-93.124-208-208s93.124-208 208-208c-229.75 0-416 186.25-416 416s186.25 416 416 416c114.876 0 208-93.124 208-208s-93.124-208-208-208z" />
54
+ <glyph unicode="&#xe028;" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156 78.572-78.572 183.038-121.844 294.156-121.844 111.118 0 215.584 43.272 294.156 121.844 78.572 78.572 121.844 183.038 121.844 294.156 0 111.118-43.272 215.584-121.844 294.156-78.572 78.572-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512 0 282.77 229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
55
+ <glyph unicode="&#xe3cb;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM813.256 493.254l-256.002 256c-24.992 24.994-65.514 24.994-90.508 0s-24.994-65.516 0-90.51l146.744-146.744h-357.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h357.49l-146.746-146.744c-24.994-24.994-24.994-65.518 0-90.512 12.498-12.496 28.878-18.744 45.256-18.744s32.758 6.248 45.254 18.744l256.002 256c24.992 24.994 24.992 65.518 0 90.51z" />
56
+ <glyph unicode="&#xe3cf;" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM210.744 493.254l256.002 256c24.992 24.994 65.514 24.994 90.508 0s24.994-65.516 0-90.51l-146.744-146.744h357.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-357.49l146.746-146.744c24.994-24.994 24.994-65.518 0-90.512-12.498-12.496-28.878-18.744-45.256-18.744s-32.758 6.248-45.254 18.744l-256.002 256c-24.992 24.994-24.992 65.518 0 90.51z" />
57
+ <glyph unicode="&#xe3d3;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM813.256 402.744l-256.002-256c-12.496-12.496-28.876-18.744-45.254-18.744s-32.758 6.248-45.254 18.744c-24.994 24.994-24.994 65.518 0 90.512l146.744 146.744h-357.49c-35.346 0-64 28.654-64 64s28.654 64 64 64h357.49l-146.746 146.746c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.508 0l256.002-256c24.994-24.994 24.994-65.518 0.002-90.512z" />
58
+ <glyph unicode="&#xe3d7;" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM210.744 402.744l256.002-256c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.744c24.994 24.994 24.994 65.518 0 90.512l-146.744 146.744h357.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-357.49l146.746 146.746c24.994 24.994 24.994 65.516 0 90.51s-65.516 24.994-90.508 0l-256.002-256c-24.994-24.994-24.994-65.518-0.002-90.512z" />
59
+ <glyph unicode="&#xe3e3;" d="M1023.998-64h-1023.998v1024h1024l-0.002-1024zM128 832v-768h767.998l0.002 768h-768zM576 224l224 224-224 224v-160h-320v-128h320v-160z" />
60
+ <glyph unicode="&#xe3e7;" d="M0.002-64h1023.998v1024h-1024l0.002-1024zM896 832v-768h-767.998l-0.002 768h768zM448 224l-224 224 224 224v-160h320v-128h-320v-160z" />
61
+ <glyph unicode="&#xe409;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576 224v160h-320v128h320v160l224-224-224-224z" />
62
+ <glyph unicode="&#xe40b;" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM448 224v160h320v128h-320v160l-224-224 224-224z" />
63
+ <glyph unicode="&#xe415;" d="M0 640h64v-384h-64zM128 640h64v-384h-64zM256 640h64v-384h-64zM1024 448l-448 448v-256h-192v-384h192v-256z" />
64
+ <glyph unicode="&#xe417;" d="M960 640h64v-384h-64zM832 640h64v-384h-64zM704 640h64v-384h-64zM0 448l448 448v-256h192v-384h-192v-256z" />
65
+ <glyph unicode="&#xe48c;" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
 
 
 
 
 
 
 
 
 
 
 
66
  </font>
67
  </defs>
68
  </svg>
user-views/assets/lightboxes/foobox/css/font/foobox.ttf CHANGED
Binary file
user-views/assets/lightboxes/foobox/css/font/foobox.woff CHANGED
Binary file
user-views/assets/lightboxes/foobox/css/foobox.noie7.min.css CHANGED
@@ -2488,17 +2488,6 @@
2488
  opacity: 1
2489
  }
2490
 
2491
- .fbx-caption-title {
2492
- font-size: 15px;
2493
- padding: 15px
2494
- }
2495
-
2496
- .fbx-caption-desc {
2497
- font-size: 12px;
2498
- line-height: 20px;
2499
- padding: 15px
2500
- }
2501
-
2502
  .fbx-caption-desc a {
2503
  font-size: 12px
2504
  }
2488
  opacity: 1
2489
  }
2490
 
 
 
 
 
 
 
 
 
 
 
 
2491
  .fbx-caption-desc a {
2492
  font-size: 12px
2493
  }
user-views/includes/galleries/structure.php CHANGED
@@ -40,13 +40,12 @@ if (file_exists(GALLERY_BANK_USER_VIEWS_PATH . "includes/galleries/queries.php")
40
  if (isset($lightbox_type)) {
41
  switch (esc_attr($lightbox_type)) {
42
  case "foo_box_free_edition":
43
- if(!class_exists("fooboxV2"))
44
- {
45
  wp_enqueue_style("foobox.free.min.css", GALLERY_BANK_PLUGIN_DIR_URL . "user-views/assets/lightboxes/foobox/css/foobox.free.min.css");
46
  wp_enqueue_style("foobox.noie7.min.css", GALLERY_BANK_PLUGIN_DIR_URL . "user-views/assets/lightboxes/foobox/css/foobox.noie7.min.css");
47
  wp_enqueue_script("foobox.free.min.js", GALLERY_BANK_PLUGIN_DIR_URL . "user-views/assets/lightboxes/foobox/js/foobox.free.min.js");
48
- }
49
- break;
50
  }
51
  }
52
  if (file_exists(GALLERY_BANK_USER_VIEWS_PATH . "includes/galleries/translations.php")) {
40
  if (isset($lightbox_type)) {
41
  switch (esc_attr($lightbox_type)) {
42
  case "foo_box_free_edition":
43
+ if (!class_exists("fooboxV2")) {
 
44
  wp_enqueue_style("foobox.free.min.css", GALLERY_BANK_PLUGIN_DIR_URL . "user-views/assets/lightboxes/foobox/css/foobox.free.min.css");
45
  wp_enqueue_style("foobox.noie7.min.css", GALLERY_BANK_PLUGIN_DIR_URL . "user-views/assets/lightboxes/foobox/css/foobox.noie7.min.css");
46
  wp_enqueue_script("foobox.free.min.js", GALLERY_BANK_PLUGIN_DIR_URL . "user-views/assets/lightboxes/foobox/js/foobox.free.min.js");
47
+ }
48
+ break;
49
  }
50
  }
51
  if (file_exists(GALLERY_BANK_USER_VIEWS_PATH . "includes/galleries/translations.php")) {
user-views/layouts/masonry-layout/masonry-layout.php CHANGED
@@ -33,63 +33,56 @@ if (!defined("ABSPATH")) {
33
  }
34
  break;
35
  case "foo_box_free_edition":
36
- if($pic["image_title"] == "" && $pic["image_description"] == "")
37
- {
38
- ?>
39
- <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>">
40
- <?php
41
- }
42
- else if($pic["image_title"] != "" && $pic["image_description"] == "")
43
- {
44
- ?>
45
  <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>">
46
- <?php
47
- }
48
- else if($pic["image_title"] == "" && $pic["image_description"] != "")
49
- {
50
- ?>
51
- <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
52
- <?php
53
- }
54
- else
55
- {
56
- ?>
57
- <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
58
- <?php
59
- }
60
- break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
  }
63
- ?>
64
- <img src="<?php echo GALLERY_BANK_THUMBS_NON_CROPPED_URL . esc_attr($pic["image_name"]) ?>" alt="<?php echo $pic["alt_text"] ?>" image_full_path="<?php echo GALLERY_BANK_ORIGINAL_URL . esc_attr($pic["image_name"]); ?>" id="ux_gb_file_<?php echo $random . "_" . $pic["id"]; ?>" name="ux_gb_file" />
65
- </a>
66
- </div>
67
- <div id="grid_content_item" class="masonry_grid_content_item">
68
- <?php
69
- if ($thumbnail_title == "show" && $pic["image_title"] != "") {
70
- ?>
71
- <div id="grid_single_text_title_<?php echo $random . "_" . $pic["id"]; ?>" class="masonry_grid_single_text_title">
72
- <<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
73
- <?php echo isset($pic["image_title"]) ? htmlspecialchars_decode($pic["image_title"]) : ""; ?>
74
- </<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
75
- </div>
76
- <?php
77
- }
78
- if ($thumbnail_description == "show" && $pic["image_description"] != "") {
79
  ?>
80
- <div id="grid_single_text_desc_<?php echo $random . "_" . $pic["id"]; ?>" class="masonry_grid_single_text_desc">
81
- <<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) : "p"; ?>>
82
- <?php echo isset($pic["image_description"]) ? htmlspecialchars_decode($pic["image_description"]) : ""; ?>
83
- </<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) : "p"; ?>>
84
- </div>
85
- <?php
86
- }
87
- ?>
88
- </div>
89
- </div>
90
- <?php
91
- }
92
- }
93
- }
94
- ?>
95
- </div>
33
  }
34
  break;
35
  case "foo_box_free_edition":
36
+ if ($pic["image_title"] == "" && $pic["image_description"] == "") {
37
+ ?>
38
+ <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>">
39
+ <?php
40
+ } else if ($pic["image_title"] != "" && $pic["image_description"] == "") {
41
+ ?>
 
 
 
42
  <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>">
43
+ <?php
44
+ } else if ($pic["image_title"] == "" && $pic["image_description"] != "") {
45
+ ?>
46
+ <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
47
+ <?php
48
+ } else {
49
+ ?>
50
+ <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
51
+ <?php
52
+ }
53
+ break;
54
+ }
55
+ }
56
+ ?>
57
+ <img src="<?php echo GALLERY_BANK_THUMBS_NON_CROPPED_URL . esc_attr($pic["image_name"]) ?>" alt="<?php echo $pic["alt_text"] ?>" image_full_path="<?php echo GALLERY_BANK_ORIGINAL_URL . esc_attr($pic["image_name"]); ?>" id="ux_gb_file_<?php echo $random . "_" . $pic["id"]; ?>" name="ux_gb_file" />
58
+ </a>
59
+ </div>
60
+ <div id="grid_content_item" class="masonry_grid_content_item">
61
+ <?php
62
+ if ($thumbnail_title == "show" && $pic["image_title"] != "") {
63
+ ?>
64
+ <div id="grid_single_text_title_<?php echo $random . "_" . $pic["id"]; ?>" class="masonry_grid_single_text_title">
65
+ <<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
66
+ <?php echo isset($pic["image_title"]) ? htmlspecialchars_decode($pic["image_title"]) : ""; ?>
67
+ </<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
68
+ </div>
69
+ <?php
70
+ }
71
+ if ($thumbnail_description == "show" && $pic["image_description"] != "") {
72
+ ?>
73
+ <div id="grid_single_text_desc_<?php echo $random . "_" . $pic["id"]; ?>" class="masonry_grid_single_text_desc">
74
+ <<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) : "p"; ?>>
75
+ <?php echo isset($pic["image_description"]) ? htmlspecialchars_decode($pic["image_description"]) : ""; ?>
76
+ </<?php echo isset($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) ? esc_attr($masonry_layout_settings["masonry_layout_thumbnail_description_html_tag"]) : "p"; ?>>
77
+ </div>
78
+ <?php
79
+ }
80
+ ?>
81
+ </div>
82
+ </div>
83
+ <?php
84
  }
85
  }
86
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  ?>
88
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
user-views/layouts/thumbnail-layout/thumbnail-layout.php CHANGED
@@ -32,64 +32,57 @@ if (!defined("ABSPATH")) {
32
  }
33
  break;
34
  case "foo_box_free_edition":
35
- if($pic["image_title"] == "" && $pic["image_description"] == "")
36
- {
37
- ?>
38
- <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>">
39
- <?php
40
- }
41
- else if($pic["image_title"] != "" && $pic["image_description"] == "")
42
- {
43
- ?>
44
- <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>">
45
- <?php
46
- }
47
- else if($pic["image_title"] == "" && $pic["image_description"] != "")
48
- {
49
- ?>
50
- <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
51
- <?php
52
- }
53
- else
54
- {
55
- ?>
56
- <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
57
- <?php
58
- }
59
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
  }
62
- ?>
63
- <div id="grid_item_image_<?php echo $random . "_" . $pic["id"]; ?>" class="grid_item_image_<?php echo $random; ?>" style="background:url('<?php echo GALLERY_BANK_THUMBS_CROPPED_URL . esc_attr($pic["image_name"]); ?>');background-size:100% 100% !important;">
64
- <img src="<?php echo GALLERY_BANK_THUMBS_CROPPED_URL . esc_attr($pic["image_name"]); ?>" image_full_path="<?php echo $pic["file_type"] ?>" alt="<?php echo esc_attr($pic["alt_text"]); ?>" id="ux_gb_file" name= "ux_gb_file_<?php echo $random . "_" . $pic["id"]; ?>"/>
65
- </div>
66
- </a>
67
- <div id="grid_content_item" class="grid_content_item">
68
- <?php
69
- if ($thumbnail_title == "show" && $pic["image_title"] != "") {
70
- ?>
71
- <div id="grid_single_text_title_<?php echo $random . "_" . $pic["id"]; ?>" class="grid_single_text_title">
72
- <<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
73
- <?php echo isset($pic["image_title"]) ? htmlspecialchars_decode($pic["image_title"]) : ""; ?>
74
- </<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
75
- </div>
76
- <?php
77
- }
78
- if ($thumbnail_description == "show" && $pic["image_description"] != "") {
79
- ?>
80
- <div id="grid_single_text_desc_<?php echo $random; ?>" class="grid_single_text_desc">
81
- <<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) : "p"; ?>>
82
- <?php echo isset($pic["image_description"]) ? htmlspecialchars_decode($pic["image_description"]) : ""; ?>
83
- </<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) : "p"; ?>>
84
- </div>
85
- <?php
86
- }
87
- ?>
88
- </div>
89
- </div>
90
- <?php
91
- }
92
- }
93
- }
94
- ?>
95
- </div>
32
  }
33
  break;
34
  case "foo_box_free_edition":
35
+ if ($pic["image_title"] == "" && $pic["image_description"] == "") {
36
+ ?>
37
+ <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>">
38
+ <?php
39
+ } else if ($pic["image_title"] != "" && $pic["image_description"] == "") {
40
+ ?>
41
+ <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>">
42
+ <?php
43
+ } else if ($pic["image_title"] == "" && $pic["image_description"] != "") {
44
+ ?>
45
+ <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
46
+ <?php
47
+ } else {
48
+ ?>
49
+ <a href="<?php echo $imageurl; ?>" class="foobox" target="<?php echo $target; ?>" rel="foobox_gallery_<?php echo $random; ?>" data-caption-title="<<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_title"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_title_html_tag"]) ? $foobox_meta_data["foo_box_image_title_html_tag"] : "h1"; ?>>" data-caption-desc="<<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>><?php echo esc_attr($pic["image_description"]); ?></<?php echo isset($foobox_meta_data["foo_box_image_description_html_tag"]) ? $foobox_meta_data["foo_box_image_description_html_tag"] : "h1"; ?>>">
50
+ <?php
51
+ }
 
 
 
 
 
 
 
52
  break;
53
+ }
54
+ }
55
+ ?>
56
+ <div id="grid_item_image_<?php echo $random . "_" . $pic["id"]; ?>" class="grid_item_image_<?php echo $random; ?>" style="background:url('<?php echo GALLERY_BANK_THUMBS_CROPPED_URL . esc_attr($pic["image_name"]); ?>');background-size:100% 100% !important;">
57
+ <img src="<?php echo GALLERY_BANK_THUMBS_CROPPED_URL . esc_attr($pic["image_name"]); ?>" image_full_path="<?php echo $pic["file_type"] ?>" alt="<?php echo esc_attr($pic["alt_text"]); ?>" id="ux_gb_file" name= "ux_gb_file_<?php echo $random . "_" . $pic["id"]; ?>"/>
58
+ </div>
59
+ </a>
60
+ <div id="grid_content_item" class="grid_content_item">
61
+ <?php
62
+ if ($thumbnail_title == "show" && $pic["image_title"] != "") {
63
+ ?>
64
+ <div id="grid_single_text_title_<?php echo $random . "_" . $pic["id"]; ?>" class="grid_single_text_title">
65
+ <<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
66
+ <?php echo isset($pic["image_title"]) ? htmlspecialchars_decode($pic["image_title"]) : ""; ?>
67
+ </<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_title_html_tag"]) : "h3"; ?>>
68
+ </div>
69
+ <?php
70
+ }
71
+ if ($thumbnail_description == "show" && $pic["image_description"] != "") {
72
+ ?>
73
+ <div id="grid_single_text_desc_<?php echo $random; ?>" class="grid_single_text_desc">
74
+ <<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) : "p"; ?>>
75
+ <?php echo isset($pic["image_description"]) ? htmlspecialchars_decode($pic["image_description"]) : ""; ?>
76
+ </<?php echo isset($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) ? esc_attr($thumbnail_layout_settings["thumbnail_layout_thumbnail_description_html_tag"]) : "p"; ?>>
77
+ </div>
78
+ <?php
79
+ }
80
+ ?>
81
+ </div>
82
+ </div>
83
+ <?php
84
  }
85
  }
86
+ }
87
+ ?>
88
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
views/lightboxes/foo-box-free-edition.php CHANGED
@@ -47,7 +47,7 @@ if (!is_user_logged_in()) {
47
  </li>
48
  <li>
49
  <span>
50
- <?php echo $gb_foo_box_free_edition; ?>
51
  </span>
52
  </li>
53
  </ul>
@@ -58,7 +58,7 @@ if (!is_user_logged_in()) {
58
  <div class="portlet-title">
59
  <div class="caption">
60
  <i class="icon-custom-frame"></i>
61
- <?php echo $gb_foo_box_free_edition; ?>
62
  </div>
63
  <p class="premium-editions">
64
  <?php echo $gb_upgrade_need_help ?><a href="http://gallery-bank.tech-banker.com/documentation/" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="http://gallery-bank.tech-banker.com/frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
@@ -507,7 +507,7 @@ if (!is_user_logged_in()) {
507
  </li>
508
  <li>
509
  <span>
510
- <?php echo $gb_foo_box_free_edition; ?>
511
  </span>
512
  </li>
513
  </ul>
@@ -518,7 +518,7 @@ if (!is_user_logged_in()) {
518
  <div class="portlet-title">
519
  <div class="caption">
520
  <i class="icon-custom-frame"></i>
521
- <?php echo $gb_foo_box_free_edition; ?>
522
  </div>
523
  </div>
524
  <div class="portlet-body form">
47
  </li>
48
  <li>
49
  <span>
50
+ <?php echo class_exists("fooboxV2") ? $gb_foo_box_premium : $gb_foo_box_free_edition; ?>
51
  </span>
52
  </li>
53
  </ul>
58
  <div class="portlet-title">
59
  <div class="caption">
60
  <i class="icon-custom-frame"></i>
61
+ <?php echo class_exists("fooboxV2") ? $gb_foo_box_premium : $gb_foo_box_free_edition; ?>
62
  </div>
63
  <p class="premium-editions">
64
  <?php echo $gb_upgrade_need_help ?><a href="http://gallery-bank.tech-banker.com/documentation/" target="_blank" class="premium-editions-documentation"><?php echo $gb_documentation ?></a><?php echo $gb_read_and_check; ?><a href="http://gallery-bank.tech-banker.com/frontend-demos/" target="_blank" class="premium-editions-documentation"><?php echo $gb_demos_section; ?></a>
507
  </li>
508
  <li>
509
  <span>
510
+ <?php echo class_exists("fooboxV2") ? $gb_foo_box_premium : $gb_foo_box_free_edition; ?>
511
  </span>
512
  </li>
513
  </ul>
518
  <div class="portlet-title">
519
  <div class="caption">
520
  <i class="icon-custom-frame"></i>
521
+ <?php echo class_exists("fooboxV2") ? $gb_foo_box_premium : $gb_foo_box_free_edition; ?>
522
  </div>
523
  </div>
524
  <div class="portlet-body form">