foo_table-rails 0.5.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/foo_table-rails/version.rb +1 -1
  4. data/vendor/assets/javascripts/footable.core.js +353 -159
  5. data/vendor/assets/javascripts/footable.core.min.js +14 -0
  6. data/vendor/assets/javascripts/footable.filter.js +145 -92
  7. data/vendor/assets/javascripts/footable.filter.min.js +14 -0
  8. data/vendor/assets/javascripts/footable.paginate.js +90 -35
  9. data/vendor/assets/javascripts/footable.paginate.min.js +1 -0
  10. data/vendor/assets/javascripts/footable.sort.js +171 -146
  11. data/vendor/assets/javascripts/footable.sort.min.js +1 -0
  12. data/vendor/assets/stylesheets/fonts/footable.eot +0 -0
  13. data/vendor/assets/stylesheets/fonts/footable.svg +78 -0
  14. data/vendor/assets/stylesheets/fonts/footable.ttf +0 -0
  15. data/vendor/assets/stylesheets/fonts/footable.woff +0 -0
  16. data/vendor/assets/stylesheets/footable.all.css +407 -0
  17. data/vendor/assets/stylesheets/footable.all.min.css +3 -0
  18. data/vendor/assets/stylesheets/footable.core.css +147 -96
  19. data/vendor/assets/stylesheets/footable.core.min.css +1 -0
  20. data/vendor/assets/stylesheets/footable.metro.css +132 -0
  21. data/vendor/assets/stylesheets/footable.metro.min.css +1 -0
  22. data/vendor/assets/stylesheets/footable.standalone.css +106 -0
  23. data/vendor/assets/stylesheets/footable.standalone.min.css +1 -0
  24. metadata +16 -7
  25. data/vendor/assets/javascripts/footable.template.js +0 -44
  26. data/vendor/assets/stylesheets/footable.paginate.css +0 -31
  27. data/vendor/assets/stylesheets/footable.sort.css +0 -24
  28. data/vendor/assets/stylesheets/footable.theme.bootstrap-responsive.css +0 -1109
  29. data/vendor/assets/stylesheets/footable.theme.bootstrap-tab.js +0 -144
  30. data/vendor/assets/stylesheets/footable.theme.bootstrap.css +0 -6158
@@ -1,160 +1,185 @@
1
- (function($, w, undefined) {
2
- if (w.footable == undefined || w.footable == null)
3
- throw new Error('Please check and make sure footable.js is included in the page and is loaded prior to this script.');
4
-
5
- var defaults = {
6
- sort: true,
7
- sorters: {
8
- alpha: function(a, b) {
9
- if (a == b) return 0;
10
- if (a < b) return -1;
11
- return 1;
12
- },
13
- numeric: function(a, b) {
14
- return a - b;
15
- }
16
- },
17
- parsers: {
18
- numeric: function(cell) {
19
- var val = $(cell).data('value') || $(cell).text().replace(/[^0-9.-]/g, '');
20
- val = parseFloat(val);
21
- if (isNaN(val)) val = 0;
22
- return val;
23
- }
24
- },
25
- classes: {
26
- sort: {
27
- sortable: 'footable-sortable',
28
- sorted: 'footable-sorted',
29
- descending: 'footable-sorted-desc',
30
- indicator: 'footable-sort-indicator'
31
- }
32
- }
33
- };
34
-
35
- function Sortable() {
36
- var p = this;
37
- p.name = 'Footable Sortable';
38
- p.init = function(ft) {
39
- if (ft.options.sort == true) {
40
- $(ft.table).bind({
41
- 'footable_initialized': function(e) {
42
- var cls = ft.options.classes.sort, column;
43
-
44
- var $table = $(e.ft.table), $tbody = $table.find('> tbody'), $th;
45
-
46
- $table.find('> thead > tr:last-child > th, > thead > tr:last-child > td').each(function(ec) {
47
- $th = $(this), column = e.ft.columns[$th.index()];
48
- if (column.sort.ignore != true) {
49
- $th.addClass(cls.sortable);
50
- $('<span />').addClass(cls.indicator).appendTo($th);
51
- }
52
- });
1
+ (function ($, w, undefined) {
2
+ if (w.footable === undefined || w.footable === null)
3
+ throw new Error('Please check and make sure footable.js is included in the page and is loaded prior to this script.');
4
+
5
+ var defaults = {
6
+ sort: true,
7
+ sorters: {
8
+ alpha: function (a, b) {
9
+ if (a === b) return 0;
10
+ if (a < b) return -1;
11
+ return 1;
12
+ },
13
+ numeric: function (a, b) {
14
+ return a - b;
15
+ }
16
+ },
17
+ classes: {
18
+ sort: {
19
+ sortable: 'footable-sortable',
20
+ sorted: 'footable-sorted',
21
+ descending: 'footable-sorted-desc',
22
+ indicator: 'footable-sort-indicator'
23
+ }
24
+ },
25
+ events: {
26
+ sort: {
27
+ sorting: 'footable_sorting',
28
+ sorted: 'footable_sorted'
29
+ }
30
+ }
31
+ };
53
32
 
54
- $table.find('> thead > tr:last-child > th.' + cls.sortable + ', > thead > tr:last-child > td.' + cls.sortable).click(function(ec) {
55
- $th = $(this), column = e.ft.columns[$th.index()];
56
- if (column.sort.ignore == true) return true;
57
- ec.preventDefault();
33
+ function Sort() {
34
+ var p = this;
35
+ p.name = 'Footable Sortable';
36
+ p.init = function (ft) {
37
+ p.footable = ft;
38
+ if (ft.options.sort === true) {
39
+ $(ft.table).bind({
40
+ 'footable_initialized': function (e) {
41
+ var $table = $(ft.table),
42
+ $tbody = $table.find('> tbody'),
43
+ cls = ft.options.classes.sort,
44
+ column, $th;
45
+
46
+ if ($table.data('sort') === false) return;
47
+
48
+ $table.find('> thead > tr:last-child > th, > thead > tr:last-child > td').each(function (ec) {
49
+ $th = $(this), column = ft.columns[$th.index()];
50
+ if (column.sort.ignore !== true && !$th.hasClass(cls.sortable)) {
51
+ $th.addClass(cls.sortable);
52
+ $('<span />').addClass(cls.indicator).appendTo($th);
53
+ }
54
+ });
55
+
56
+ $table.find('> thead > tr:last-child > th.' + cls.sortable + ', > thead > tr:last-child > td.' + cls.sortable).unbind('click.footable').bind('click.footable', function (ec) {
57
+ ec.preventDefault();
58
+ $th = $(this);
59
+ var ascending = !$th.hasClass(cls.sorted);
60
+ p.doSort($th.index(), ascending);
61
+ return false;
62
+ });
63
+
64
+ var didSomeSorting = false;
65
+ for (var c in ft.columns) {
66
+ column = ft.columns[c];
67
+ if (column.sort.initial) {
68
+ var ascending = (column.sort.initial !== 'descending');
69
+ p.doSort(column.index, ascending);
70
+ break;
71
+ }
72
+ }
73
+ if (didSomeSorting) {
74
+ ft.bindToggleSelectors();
75
+ }
76
+ },
77
+ 'footable_redrawn': function(e) {
78
+ var $table = $(ft.table),
79
+ cls = ft.options.classes.sort;
80
+ if ($table.data('sorted') >= 0) {
81
+ $table.find('> thead > tr:last-child > th').each(function(i){
82
+ var $th = $(this);
83
+ if ($th.hasClass(cls.sorted) || $th.hasClass(cls.descending)) {
84
+ p.doSort(i);
85
+ return;
86
+ }
87
+ });
88
+ }
89
+ },
90
+ 'footable_column_data': function (e) {
91
+ var $th = $(e.column.th);
92
+ e.column.data.sort = e.column.data.sort || {};
93
+ e.column.data.sort.initial = $th.data('sort-initial') || false;
94
+ e.column.data.sort.ignore = $th.data('sort-ignore') || false;
95
+ e.column.data.sort.selector = $th.data('sort-selector') || null;
96
+
97
+ var match = $th.data('sort-match') || 0;
98
+ if (match >= e.column.data.matches.length) match = 0;
99
+ e.column.data.sort.match = e.column.data.matches[match];
100
+ }
101
+ })
102
+ //save the sort object onto the table so we can access it later
103
+ .data('footable-sort', p);
104
+ }
105
+ };
58
106
 
59
- $table.find('> thead > tr:last-child > th, > thead > tr:last-child > td').not($th).removeClass(cls.sorted + ' ' + cls.descending);
107
+ p.doSort = function(columnIndex, ascending) {
108
+ var ft = p.footable;
109
+ if ($(ft.table).data('sort') === false) return;
60
110
 
61
- if ($th.hasClass(cls.sorted)) {
62
- p.reverse(e.ft, $tbody);
63
- $th.removeClass(cls.sorted).addClass(cls.descending);
64
- } else if ($th.hasClass(cls.descending)) {
65
- p.reverse(e.ft, $tbody);
66
- $th.removeClass(cls.descending).addClass(cls.sorted);
67
- } else {
68
- p.sort(e.ft, $tbody, column);
69
- $th.removeClass(cls.descending).addClass(cls.sorted);
70
- }
71
- e.ft.bindToggleSelectors();
72
- e.ft.raise('footable_sorted', { column : column });
73
- return false;
74
- });
111
+ var $table = $(ft.table),
112
+ $tbody = $table.find('> tbody'),
113
+ column = ft.columns[columnIndex],
114
+ $th = $table.find('> thead > tr:last-child > th:eq(' + columnIndex + ')'),
115
+ cls = ft.options.classes.sort,
116
+ evt = ft.options.events.sort;
75
117
 
76
- var didSomeSorting = false;
77
- for (var c in e.ft.columns) {
78
- column = e.ft.columns[c];
79
- if (column.sort.initial) {
80
- p.sort(e.ft, $tbody, column);
81
- didSomeSorting = true;
82
- $th = $table.find('> thead > tr:last-child > th:eq(' + c + '), > thead > tr:last-child > td:eq(' + c + ')');
83
-
84
- if (column.sort.initial == 'descending') {
85
- p.reverse(e.ft, $tbody);
86
- $th.addClass(cls.descending);
87
- } else {
88
- $th.addClass(cls.sorted);
89
- }
118
+ ascending = (ascending === undefined) ? !$th.hasClass(cls.sorted) : ascending;
90
119
 
91
- break;
92
- } else if (column.sort.ignore != true) {
120
+ if (column.sort.ignore === true) return true;
93
121
 
94
- }
122
+ //raise a pre-sorting event so that we can cancel the sorting if needed
123
+ var event = ft.raise(evt.sorting, { column: column, direction: ascending ? 'ASC' : 'DESC' });
124
+ if (event && event.result === false) return;
125
+
126
+ $table.data('sorted', column.index);
127
+
128
+ $table.find('> thead > tr:last-child > th, > thead > tr:last-child > td').not($th).removeClass(cls.sorted + ' ' + cls.descending);
129
+
130
+ if (ascending === undefined) {
131
+ ascending = $th.hasClass(cls.sorted);
95
132
  }
96
- if (didSomeSorting) {
97
- e.ft.bindToggleSelectors();
133
+
134
+ if (ascending) {
135
+ $th.removeClass(cls.descending).addClass(cls.sorted);
136
+ } else {
137
+ $th.removeClass(cls.sorted).addClass(cls.descending);
98
138
  }
99
- },
100
- 'footable_column_data': function(e) {
101
- var $th = $(e.column.th);
102
- e.column.data.sort = e.column.data.sort || {};
103
- e.column.data.sort.initial = $th.data('sort-initial') || false;
104
- e.column.data.sort.ignore = $th.data('sort-ignore') || false;
105
- e.column.data.sort.selector = $th.data('sort-selector') || null;
106
-
107
- var match = $th.data('sort-match') || 0;
108
- if (match >= e.column.data.matches.length) match = 0;
109
- e.column.data.sort.match = e.column.data.matches[match];
110
- }
111
- });
112
- }
113
- };
114
-
115
- p.rows = function(ft, tbody, column) {
116
- var rows = [];
117
- tbody.find('> tr').each(function() {
118
- var $row = $(this), $next = null;
119
- if ($row.hasClass('footable-row-detail')) return true;
120
- if ($row.next().hasClass('footable-row-detail')) {
121
- $next = $row.next().get(0);
122
- }
123
- var row = { 'row': $row, 'detail': $next };
124
- if (column != undefined) {
125
- row.value = ft.parse(this.cells[column.sort.match], column);
126
- }
127
- rows.push(row);
128
- return true;
129
- }).remove();
130
- return rows;
131
- };
132
139
 
133
- p.sort = function(ft, tbody, column) {
134
- var rows = p.rows(ft, tbody, column);
135
- var sorter = ft.options.sorters[column.type] || ft.options.sorters.alpha;
136
- rows.sort(function(a, b) { return sorter(a.value, b.value); });
137
- for (var j = 0; j < rows.length; j++) {
138
- tbody.append(rows[j].row);
139
- if (rows[j].detail != null) {
140
- tbody.append(rows[j].detail);
141
- }
142
- }
143
- };
140
+ p.sort(ft, $tbody, column, ascending);
144
141
 
145
- p.reverse = function(ft, tbody) {
146
- var rows = p.rows(ft, tbody);
147
- for (var i = rows.length - 1; i >= 0; i--) {
148
- tbody.append(rows[i].row);
149
- if (rows[i].detail != null) {
150
- tbody.append(rows[i].detail);
151
- }
152
- }
153
- };
154
- }
142
+ ft.bindToggleSelectors();
143
+ ft.raise(evt.sorted, { column: column, direction: ascending ? 'ASC' : 'DESC' });
144
+ };
155
145
 
156
- ;
146
+ p.rows = function (ft, tbody, column) {
147
+ var rows = [];
148
+ tbody.find('> tr').each(function () {
149
+ var $row = $(this), $next = null;
150
+ if ($row.hasClass(ft.options.classes.detail)) return true;
151
+ if ($row.next().hasClass(ft.options.classes.detail)) {
152
+ $next = $row.next().get(0);
153
+ }
154
+ var row = { 'row': $row, 'detail': $next };
155
+ if (column !== undefined) {
156
+ row.value = ft.parse(this.cells[column.sort.match], column);
157
+ }
158
+ rows.push(row);
159
+ return true;
160
+ }).detach();
161
+ return rows;
162
+ };
163
+
164
+ p.sort = function (ft, tbody, column, ascending) {
165
+ var rows = p.rows(ft, tbody, column);
166
+ var sorter = ft.options.sorters[column.type] || ft.options.sorters.alpha;
167
+ rows.sort(function (a, b) {
168
+ if (ascending) {
169
+ return sorter(a.value, b.value);
170
+ } else {
171
+ return sorter(b.value, a.value);
172
+ }
173
+ });
174
+ for (var j = 0; j < rows.length; j++) {
175
+ tbody.append(rows[j].row);
176
+ if (rows[j].detail !== null) {
177
+ tbody.append(rows[j].detail);
178
+ }
179
+ }
180
+ };
181
+ }
157
182
 
158
- w.footable.plugins.register(new Sortable(), defaults);
183
+ w.footable.plugins.register(new Sort(), defaults);
159
184
 
160
185
  })(jQuery, window);
@@ -0,0 +1 @@
1
+ (function(e,t,undefined){function a(){var t=this;t.name="Footable Sortable",t.init=function(a){t.footable=a,a.options.sort===!0&&e(a.table).bind({footable_initialized:function(){var o,i,n=e(a.table),r=(n.find("> tbody"),a.options.classes.sort);if(n.data("sort")!==!1){n.find("> thead > tr:last-child > th, > thead > tr:last-child > td").each(function(){i=e(this),o=a.columns[i.index()],o.sort.ignore===!0||i.hasClass(r.sortable)||(i.addClass(r.sortable),e("<span />").addClass(r.indicator).appendTo(i))}),n.find("> thead > tr:last-child > th."+r.sortable+", > thead > tr:last-child > td."+r.sortable).unbind("click.footable").bind("click.footable",function(a){a.preventDefault(),i=e(this);var o=!i.hasClass(r.sorted);return t.doSort(i.index(),o),!1});var l=!1;for(var d in a.columns)if(o=a.columns[d],o.sort.initial){var s="descending"!==o.sort.initial;t.doSort(o.index,s);break}l&&a.bindToggleSelectors()}},footable_redrawn:function(){var o=e(a.table),i=a.options.classes.sort;o.data("sorted")>=0&&o.find("> thead > tr:last-child > th").each(function(a){var o=e(this);return o.hasClass(i.sorted)||o.hasClass(i.descending)?(t.doSort(a),undefined):undefined})},footable_column_data:function(t){var a=e(t.column.th);t.column.data.sort=t.column.data.sort||{},t.column.data.sort.initial=a.data("sort-initial")||!1,t.column.data.sort.ignore=a.data("sort-ignore")||!1,t.column.data.sort.selector=a.data("sort-selector")||null;var o=a.data("sort-match")||0;o>=t.column.data.matches.length&&(o=0),t.column.data.sort.match=t.column.data.matches[o]}}).data("footable-sort",t)},t.doSort=function(a,o){var i=t.footable;if(e(i.table).data("sort")!==!1){var n=e(i.table),r=n.find("> tbody"),l=i.columns[a],d=n.find("> thead > tr:last-child > th:eq("+a+")"),s=i.options.classes.sort,u=i.options.events.sort;if(o=o===undefined?!d.hasClass(s.sorted):o,l.sort.ignore===!0)return!0;var f=i.raise(u.sorting,{column:l,direction:o?"ASC":"DESC"});f&&f.result===!1||(n.data("sorted",l.index),n.find("> thead > tr:last-child > th, > thead > tr:last-child > td").not(d).removeClass(s.sorted+" "+s.descending),o===undefined&&(o=d.hasClass(s.sorted)),o?d.removeClass(s.descending).addClass(s.sorted):d.removeClass(s.sorted).addClass(s.descending),t.sort(i,r,l,o),i.bindToggleSelectors(),i.raise(u.sorted,{column:l,direction:o?"ASC":"DESC"}))}},t.rows=function(t,a,o){var i=[];return a.find("> tr").each(function(){var a=e(this),n=null;if(a.hasClass(t.options.classes.detail))return!0;a.next().hasClass(t.options.classes.detail)&&(n=a.next().get(0));var r={row:a,detail:n};return o!==undefined&&(r.value=t.parse(this.cells[o.sort.match],o)),i.push(r),!0}).detach(),i},t.sort=function(e,a,o,i){var n=t.rows(e,a,o),r=e.options.sorters[o.type]||e.options.sorters.alpha;n.sort(function(e,t){return i?r(e.value,t.value):r(t.value,e.value)});for(var l=0;n.length>l;l++)a.append(n[l].row),null!==n[l].detail&&a.append(n[l].detail)}}if(t.footable===undefined||null===t.footable)throw Error("Please check and make sure footable.js is included in the page and is loaded prior to this script.");var o={sort:!0,sorters:{alpha:function(e,t){return e===t?0:t>e?-1:1},numeric:function(e,t){return e-t}},classes:{sort:{sortable:"footable-sortable",sorted:"footable-sorted",descending:"footable-sorted-desc",indicator:"footable-sort-indicator"}},events:{sort:{sorting:"footable_sorting",sorted:"footable_sorted"}}};t.footable.plugins.register(new a,o)})(jQuery,window);
@@ -0,0 +1,78 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>
5
+ This is a custom SVG font generated by IcoMoon.
6
+ <iconset grid="16"></iconset>
7
+ </metadata>
8
+ <defs>
9
+ <font id="footable" horiz-adv-x="512" >
10
+ <font-face units-per-em="512" ascent="480" descent="-32" />
11
+ <missing-glyph horiz-adv-x="512" />
12
+ <glyph class="hidden" unicode="&#xf000;" d="M0,480L 512 -32L0 -32 z" horiz-adv-x="0" />
13
+ <glyph unicode="&#xe000;" d="M 496,288L 320,288 L 320,464 c0,8.836-7.164,16-16,16l-96,0 c-8.836,0-16-7.164-16-16l0-176 L 16,288 c-8.836,0-16-7.164-16-16l0-96
14
+ c0-8.836, 7.164-16, 16-16l 176,0 l0-176 c0-8.836, 7.164-16, 16-16l 96,0 c 8.836,0, 16,7.164, 16,16L 320,160 l 176,0 c 8.836,0, 16,7.164, 16,16l0,96
15
+ C 512,280.836, 504.836,288, 496,288z" />
16
+ <glyph unicode="&#xe001;" d="M0,272l0-96 c0-8.836, 7.164-16, 16-16l 480,0 c 8.836,0, 16,7.164, 16,16l0,96 c0,8.836-7.164,16-16,16L 16,288 C 7.164,288,0,280.836,0,272z" />
17
+ <glyph unicode="&#xe002;" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 288,192l0-128 l-64,0 L 224,192 L 96,192 l0,64
18
+ l 128,0 L 224,384 l 64,0 l0-128 l 128,0 l0-64 L 288,192 z" />
19
+ <glyph unicode="&#xe003;" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 416,192L 96,192 l0,64 l 320,0 L 416,192 z" />
20
+ <glyph unicode="&#xe004;" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,32
21
+ c-106.039,0-192,85.961-192,192c0,106.039, 85.961,192, 192,192c 106.039,0, 192-85.961, 192-192C 448,117.961, 362.039,32, 256,32zM 384,192 L 288,192 L 288,96 L 224,96 L 224,192 L 128,192 L 128,256 L 224,256 L 224,352 L 288,352 L 288,256 L 384,256 Z" />
22
+ <glyph unicode="&#xe005;" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,32
23
+ c-106.039,0-192,85.961-192,192c0,106.039, 85.961,192, 192,192c 106.039,0, 192-85.961, 192-192C 448,117.961, 362.039,32, 256,32zM 128,256L 384,256L 384,192L 128,192z" />
24
+ <glyph unicode="&#xe006;" d="M 256,214.857l0-18.286 q0-4 -2.571-6.571t-6.571-2.571l-64,0 l0-64 q0-4 -2.571-6.571t-6.571-2.571l-18.286,0 q-4,0 -6.571,2.571t-2.571,6.571l0,64 l-64,0 q-4,0 -6.571,2.571t-2.571,6.571l0,18.286 q0,4 2.571,6.571t 6.571,2.571l 64,0 l0,64 q0,4 2.571,6.571t 6.571,2.571l 18.286,0 q 4,0 6.571-2.571t 2.571-6.571l0-64 l 64,0 q 4,0 6.571-2.571t 2.571-6.571zM 292.571,105.143l0,201.143 q0,11.429 -8,19.429t-19.429,8l-201.143,0 q-11.429,0 -19.429-8 t-8-19.429l0-201.143 q0-11.429 8-19.429t 19.429-8l 201.143,0 q 11.429,0 19.429,8t 8,19.429zM 329.143,306.286l0-201.143 q0-26.286 -18.714-45.143t-45.286-18.857l-201.143,0 q-26.571,0 -45.286,18.857t-18.714,45.143l0,201.143 q0,26.571 18.714,45.286t 45.286,18.714l 201.143,0 q 26.571,0 45.286-18.714t 18.714-45.286z" horiz-adv-x="329.143" />
25
+ <glyph unicode="&#xe007;" d="M 265.143,370.286q 26.571,0 45.286-18.714t 18.714-45.286l0-201.143 q0-26.286 -18.714-45.143t-45.286-18.857l-201.143,0 q-26.571,0 -45.286,18.857t-18.714,45.143l0,201.143 q0,26.571 18.714,45.286t 45.286,18.714l 201.143,0 zM 292.571,105.143l0,201.143 q0,11.429 -8,19.429t-19.429,8l-201.143,0 q-11.429,0 -19.429-8t-8-19.429l0-201.143 q0-11.429 8-19.429t 19.429-8l 201.143,0 q 11.429,0 19.429,8t 8,19.429z M 246.857,224q 4,0 6.571-2.571t 2.571-6.571l0-18.286 q0-4 -2.571-6.571t-6.571-2.571l-164.571,0 q-4,0 -6.571,2.571t-2.571,6.571l0,18.286 q0,4 2.571,6.571t 6.571,2.571l 164.571,0 z" horiz-adv-x="329.143" />
26
+ <glyph unicode="&#xe008;" d="M 365.714,205.714l0,36.571 q0,7.429 -5.429,12.857t-12.857,5.429l-91.429,0 l0,91.429 q0,7.429 -5.429,12.857t-12.857,5.429l-36.571,0 q-7.429,0 -12.857-5.429t-5.429-12.857l0-91.429 l-91.429,0 q-7.429,0 -12.857-5.429t-5.429-12.857l0-36.571 q0-7.429 5.429-12.857t 12.857-5.429l 91.429,0 l0-91.429 q0-7.429 5.429-12.857t 12.857-5.429l 36.571,0 q 7.429,0 12.857,5.429t 5.429,12.857l0,91.429 l 91.429,0 q 7.429,0 12.857,5.429t 5.429,12.857zM 438.857,361.143l0-274.286 q0-34 -24.143-58.143t-58.143-24.143l-274.286,0 q-34,0 -58.143,24.143t-24.143,58.143l0,274.286 q0,34 24.143,58.143t 58.143,24.143l 274.286,0 q 34,0 58.143-24.143t 24.143-58.143z" horiz-adv-x="438.857" />
27
+ <glyph unicode="&#xe009;" d="M 365.714,205.714l0,36.571 q0,7.429 -5.429,12.857t-12.857,5.429l-256,0 q-7.429,0 -12.857-5.429t-5.429-12.857l0-36.571 q0-7.429 5.429-12.857t 12.857-5.429l 256,0 q 7.429,0 12.857,5.429t 5.429,12.857zM 438.857,361.143l0-274.286 q0-34 -24.143-58.143t-58.143-24.143l-274.286,0 q-34,0 -58.143,24.143t-24.143,58.143l0,274.286 q0,34 24.143,58.143t 58.143,24.143l 274.286,0 q 34,0 58.143-24.143 t 24.143-58.143z" horiz-adv-x="438.857" />
28
+ <glyph unicode="&#xe00a;" d="M 512,224C 512,82.615, 397.385-32, 256-32s -256,114.615, -256,256s 114.615,256, 256,256S 512,365.385, 512,224z M 233.372,374.628
29
+ l -128-128.001C 99.124,240.379, 96,232.189, 96,224s 3.124-16.379 9.372-22.627c 12.497-12.497 32.759-12.497, 45.256,0L 224,274.745
30
+ L 224,96 c 0-17.673 14.327-32 32-32c 17.673,0, 32,14.327, 32,32l0,178.745 l 73.373-73.373c 12.497-12.497 32.758-12.497, 45.255,0
31
+ c 12.497,12.497, 12.497,32.758, 0,45.254l -128,128.001C 266.131,387.124, 245.869,387.124, 233.372,374.628z" />
32
+ <glyph unicode="&#xe00b;" d="M 512,224C 512,365.385, 397.385,480, 256,480s -256-114.615, -256-256s 114.615-256, 256-256S 512,82.615, 512,224z M 233.372,73.372
33
+ l -128,128.001C 99.124,207.621, 96,215.811, 96,224s 3.124,16.379 9.372,22.627c 12.497,12.497 32.759,12.497, 45.256,0L 224,173.255
34
+ L 224,352 c 0,17.673 14.327,32 32,32c 17.673,0, 32-14.327, 32-32l0-178.745 l 73.373,73.373c 12.497,12.497 32.758,12.497, 45.255,0
35
+ c 12.497-12.497, 12.497-32.758, 0-45.254l -128-128.001C 266.131,60.876, 245.869,60.876, 233.372,73.372z" />
36
+ <glyph unicode="&#xe00c;" d="M 256,480C 397.385,480, 512,365.385, 512,224s -114.615-256, -256-256s -256,114.615, -256,256S 114.615,480, 256,480z M 105.372,201.372
37
+ l 128.001-128C 239.621,67.124, 247.811,64, 256,64s 16.379,3.124 22.627,9.372c 12.497,12.497 12.497,32.759,0,45.256L 205.255,192
38
+ L 384,192 c 17.673,0 32,14.327 32,32c0,17.673, -14.327,32, -32,32l-178.745,0 l 73.373,73.373c 12.497,12.497 12.497,32.758,0,45.255
39
+ c -12.497,12.497, -32.758,12.497, -45.254,0l -128.001-128C 92.876,234.131, 92.876,213.869, 105.372,201.372z" />
40
+ <glyph unicode="&#xe00d;" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 406.628,201.372
41
+ l-128.001-128C 272.379,67.124, 264.189,64, 256,64s-16.379,3.124-22.627,9.372c-12.497,12.497-12.497,32.759,0,45.256L 306.745,192
42
+ L 128,192 c-17.673,0-32,14.327-32,32c0,17.673, 14.327,32, 32,32l 178.745,0 l-73.373,73.373c-12.497,12.497-12.497,32.758,0,45.255
43
+ c 12.497,12.497, 32.758,12.497, 45.254,0l 128.001-128C 419.124,234.131, 419.124,213.869, 406.628,201.372z" />
44
+ <glyph unicode="&#xe00e;" d="M0,160L 96,64L 256,224L 416,64L 512,160L 256.001,416 z" />
45
+ <glyph unicode="&#xe00f;" d="M 512,288L 416,384L 256,224L 96,384L0,288L 256,32.001 z" />
46
+ <glyph unicode="&#xe010;" d="M 320-32L 416,64L 256,224L 416,384L 320,480L 64,224 z" />
47
+ <glyph unicode="&#xe011;" d="M 192,480L 96,384L 256,224L 96,64L 192-32L 448,224 z" />
48
+ <glyph unicode="&#xe012;" d="M 292.571,132.571q0-7.429 -5.429-12.857t-12.857-5.429l-256,0 q-7.429,0 -12.857,5.429t-5.429,12.857t 5.429,12.857l 128,128q 5.429,5.429 12.857,5.429t 12.857-5.429l 128-128q 5.429-5.429 5.429-12.857z" horiz-adv-x="292.571" />
49
+ <glyph unicode="&#xe013;" d="M 292.571,278.857q0-7.429 -5.429-12.857l-128-128q-5.429-5.429 -12.857-5.429t-12.857,5.429l-128,128q-5.429,5.429 -5.429,12.857t 5.429,12.857t 12.857,5.429l 256,0 q 7.429,0 12.857-5.429t 5.429-12.857z" horiz-adv-x="292.571" />
50
+ <glyph unicode="&#xe014;" d="M 182.857,352l0-256 q0-7.429 -5.429-12.857t-12.857-5.429t-12.857,5.429l-128,128q-5.429,5.429 -5.429,12.857t 5.429,12.857l 128,128q 5.429,5.429 12.857,5.429t 12.857-5.429t 5.429-12.857z" horiz-adv-x="182.857" />
51
+ <glyph unicode="&#xe015;" d="M 164.571,224q0-7.429 -5.429-12.857l-128-128q-5.429-5.429 -12.857-5.429t-12.857,5.429t-5.429,12.857l0,256 q0,7.429 5.429,12.857t 12.857,5.429t 12.857-5.429l 128-128q 5.429-5.429 5.429-12.857z" horiz-adv-x="182.857" />
52
+ <glyph unicode="&#xe016;" d="M 256,480L 32-32L 256,64L 480-32 z" />
53
+ <glyph unicode="&#xe017;" d="M 256-32L 480,480L 256,384L 32,480 z" />
54
+ <glyph unicode="&#xe018;" d="M0,224L 512,0L 416,224L 512,448 z" />
55
+ <glyph unicode="&#xe019;" d="M 512,224L0,448L 96,224L0,0 z" />
56
+ <glyph unicode="&#xe01a;" d="M 512,224C 512,82.615, 397.385-32, 256-32s -256,114.615, -256,256s 114.615,256, 256,256S 512,365.385, 512,224z M 48,224
57
+ c 0-114.875 93.125-208 208-208S 464,109.125, 464,224s -93.125,208, -208,208S 48,338.875, 48,224zM 278.627,374.628l 128-128.001c 12.497-12.496 12.497-32.757 0-45.254c -12.497-12.497 -32.758-12.497,-45.255,0L 288,274.745
58
+ L 288,96 c 0-17.673 -14.327-32 -32-32c-17.673,0, -32,14.327, -32,32l0,178.745 l -73.372-73.373c -12.497-12.497 -32.759-12.497,-45.256,0
59
+ C 99.124,207.621, 96,215.811, 96,224s 3.124,16.379, 9.372,22.627l 128,128.001C 245.869,387.124, 266.131,387.124, 278.627,374.628z" />
60
+ <glyph unicode="&#xe01b;" d="M 512,224C 512,365.385, 397.385,480, 256,480s -256-114.615, -256-256s 114.615-256, 256-256S 512,82.615, 512,224z M 48,224
61
+ c 0,114.875 93.125,208 208,208S 464,338.875, 464,224s -93.125-208, -208-208S 48,109.125, 48,224zM 278.627,73.372l 128,128.001c 12.497,12.496 12.497,32.757 0,45.254c -12.497,12.497 -32.758,12.497,-45.255,0L 288,173.255
62
+ L 288,352 c 0,17.673 -14.327,32 -32,32c-17.673,0, -32-14.327, -32-32l0-178.745 l -73.372,73.373c -12.497,12.497 -32.759,12.497,-45.256,0
63
+ C 99.124,240.379, 96,232.189, 96,224s 3.124-16.379, 9.372-22.627l 128-128.001C 245.869,60.876, 266.131,60.876, 278.627,73.372z" />
64
+ <glyph unicode="&#xe01c;" d="M 256,480C 397.385,480, 512,365.385, 512,224s -114.615-256, -256-256s -256,114.615, -256,256S 114.615,480, 256,480z M 256,16
65
+ c 114.875,0 208,93.125 208,208S 370.875,432, 256,432s -208-93.125, -208-208S 141.125,16, 256,16zM 105.372,246.627l 128.001,128c 12.496,12.497 32.757,12.497 45.254,0c 12.497-12.497 12.497-32.758,0-45.255L 205.255,256
66
+ L 384,256 c 17.673,0 32-14.327 32-32c0-17.673, -14.327-32, -32-32l-178.745,0 l 73.373-73.372c 12.497-12.497 12.497-32.759,0-45.256
67
+ C 272.379,67.124, 264.189,64, 256,64s -16.379,3.124, -22.627,9.372l -128.001,128C 92.876,213.869, 92.876,234.131, 105.372,246.627z" />
68
+ <glyph unicode="&#xe01d;" d="M 256,480C 114.615,480,0,365.385,0,224s 114.615-256, 256-256s 256,114.615, 256,256S 397.385,480, 256,480z M 256,16
69
+ c-114.875,0-208,93.125-208,208S 141.125,432, 256,432s 208-93.125, 208-208S 370.875,16, 256,16zM 406.628,246.627l-128.001,128c-12.496,12.497-32.757,12.497-45.254,0c-12.497-12.497-12.497-32.758,0-45.255L 306.745,256
70
+ L 128,256 c-17.673,0-32-14.327-32-32c0-17.673, 14.327-32, 32-32l 178.745,0 l-73.373-73.372c-12.497-12.497-12.497-32.759,0-45.256
71
+ C 239.621,67.124, 247.811,64, 256,64s 16.379,3.124, 22.627,9.372l 128.001,128C 419.124,213.869, 419.124,234.131, 406.628,246.627z" />
72
+ <glyph unicode="&#xe01e;" d="M 307.143,141.714q0-3.714 -2.857-6.571l-14.286-14.286q-2.857-2.857 -6.571-2.857t-6.571,2.857l-112.286,112.286l-112.286-112.286q-2.857-2.857 -6.571-2.857t-6.571,2.857l-14.286,14.286q-2.857,2.857 -2.857,6.571t 2.857,6.571l 133.143,133.143q 2.857,2.857 6.571,2.857t 6.571-2.857l 133.143-133.143q 2.857-2.857 2.857-6.571z" horiz-adv-x="329.143" />
73
+ <glyph unicode="&#xe01f;" d="M 307.143,269.714q0-3.714 -2.857-6.571l-133.143-133.143q-2.857-2.857 -6.571-2.857t-6.571,2.857l-133.143,133.143q-2.857,2.857 -2.857,6.571t 2.857,6.571l 14.286,14.286q 2.857,2.857 6.571,2.857t 6.571-2.857l 112.286-112.286l 112.286,112.286q 2.857,2.857 6.571,2.857t 6.571-2.857l 14.286-14.286q 2.857-2.857 2.857-6.571z" horiz-adv-x="329.143" />
74
+ <glyph unicode="&#xe020;" d="M 179.143,324.571q0-3.714 -2.857-6.571l-112.286-112.286l 112.286-112.286q 2.857-2.857 2.857-6.571t-2.857-6.571l-14.286-14.286q-2.857-2.857 -6.571-2.857t-6.571,2.857l-133.143,133.143q-2.857,2.857 -2.857,6.571t 2.857,6.571l 133.143,133.143q 2.857,2.857 6.571,2.857t 6.571-2.857l 14.286-14.286q 2.857-2.857 2.857-6.571z" horiz-adv-x="182.857" />
75
+ <glyph unicode="&#xe021;" d="M 170,205.714q0-3.714 -2.857-6.571l-133.143-133.143q-2.857-2.857 -6.571-2.857t-6.571,2.857l-14.286,14.286q-2.857,2.857 -2.857,6.571t 2.857,6.571l 112.286,112.286l-112.286,112.286q-2.857,2.857 -2.857,6.571t 2.857,6.571l 14.286,14.286q 2.857,2.857 6.571,2.857t 6.571-2.857l 133.143-133.143q 2.857-2.857 2.857-6.571z" horiz-adv-x="182.857" />
76
+ <glyph unicode="&#xe022;" d="M 292.571,169.143q0-7.429 -5.429-12.857l-128-128q-5.429-5.429 -12.857-5.429t-12.857,5.429l-128,128q-5.429,5.429 -5.429,12.857t 5.429,12.857t 12.857,5.429l 256,0 q 7.429,0 12.857-5.429t 5.429-12.857zM 292.571,278.857q0-7.429 -5.429-12.857t-12.857-5.429l-256,0 q-7.429,0 -12.857,5.429t-5.429,12.857t 5.429,12.857l 128,128q 5.429,5.429 12.857,5.429t 12.857-5.429l 128-128q 5.429-5.429 5.429-12.857z" horiz-adv-x="292.571" />
77
+ <glyph unicode="&#x20;" horiz-adv-x="256" />
78
+ </font></defs></svg>