diff --git a/build.gradle b/build.gradle index b5cb90f88..9338574d6 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ buildscript { } } -version "1.9.1" +version "1.9.3" group "streama" diff --git a/grails-app/assets/javascripts/streama/controllers/dash-ctrl.js b/grails-app/assets/javascripts/streama/controllers/dash-ctrl.js index 88721c248..8b2c0908f 100644 --- a/grails-app/assets/javascripts/streama/controllers/dash-ctrl.js +++ b/grails-app/assets/javascripts/streama/controllers/dash-ctrl.js @@ -5,17 +5,14 @@ angular.module('streama').controller('dashCtrl', var vm = this; var LIST_MAX = 30; - vm.fetchFirstEpisodeAndPlay = fetchFirstEpisodeAndPlay; vm.showDetails = showDetails; vm.handleWatchlistUpdate = handleWatchlistUpdate; - vm.addToWatchlist = addToWatchlist; - vm.removeFromWatchlist = removeFromWatchlist; - vm.markCompleted = markCompleted; vm.loadingRecommendations = true; vm.isDashSectionHidden = isDashSectionHidden; vm.isDashType = isDashType; $scope.$on('changedGenre', onChangedGenre); + $scope.$on('video.updateWatchlist', onVideoUpdateWatchlist); init(); @@ -143,18 +140,12 @@ angular.module('streama').controller('dashCtrl', vm.tvShow.setFilter(); } - function fetchFirstEpisodeAndPlay(tvShow) { - apiService.dash.firstEpisodeForShow(tvShow.id).then(function (response) { - $state.go('player', {videoId: response.data.id}); - }); - } - function showDetails(media) { if(media.mediaType === 'episode'){ modalService.mediaDetailModal({mediaId: media.tvShowId, mediaType: 'tvShow', isApiMovie: false}); }else{ modalService.mediaDetailModal({mediaId: media.id, mediaType: media.mediaType, isApiMovie: false}, function (response) { - updateWatchlist(response.action, vm.watchlistEntry.list, media, response.watchlistEntry); + updateWatchlist(response.action, _.get(vm.watchlistEntry, 'list'), media, response.watchlistEntry); }); } } @@ -173,16 +164,17 @@ angular.module('streama').controller('dashCtrl', function addToWatchlist(item) { apiService.watchlistEntry.create(item).then(function (response) { vm.watchlistEntry.list = vm.watchlistEntry.list ? vm.watchlistEntry.list : []; - updateWatchlist("added", vm.watchlistEntry.list, item, response.data); + updateWatchlist("added", _.get(vm.watchlistEntry, 'list'), item, response.data); }); } function removeFromWatchlist(item) { + vm.watchlistEntry.list = vm.watchlistEntry.list ? vm.watchlistEntry.list : []; alertify.set({buttonReverse: true, labels: {ok: "Yes", cancel: "Cancel"}}); alertify.confirm("Are you sure you want to remove this video from your watchlist?", function (confirmed) { if (confirmed) { apiService.watchlistEntry.delete(item).then(function (response) { - updateWatchlist("removed", vm.watchlistEntry.list, item); + updateWatchlist("removed", _.get(vm.watchlistEntry, 'list'), item); }); } }); @@ -254,17 +246,6 @@ angular.module('streama').controller('dashCtrl', return (showItemArray.indexOf(false) < 0); } - function markCompleted(viewingStatus) { - alertify.set({buttonReverse: true, labels: {ok: "Yes", cancel: "Cancel"}}); - alertify.confirm("Are you sure you want to mark this video as completed?", function (confirmed) { - if (confirmed) { - apiService.viewingStatus.delete(viewingStatus.id).then(function (data) { - _.remove(vm.continueWatching, {'id': viewingStatus.id}); - }); - } - }) - } - function isDashSectionHidden(sectionName) { var hiddenDashSectionSetting = _.find($scope.settings, {name: 'hidden_dash_sections'}); if(_.get(hiddenDashSectionSetting, 'parsedValue')){ @@ -273,4 +254,9 @@ angular.module('streama').controller('dashCtrl', } } + function onVideoUpdateWatchlist(e, data) { + vm.watchlistEntry.list = vm.watchlistEntry.list ? vm.watchlistEntry.list : []; + updateWatchlist(data.action, _.get(vm.watchlistEntry, 'list'), data.media, _.get(data.response, 'data')); + } + }); diff --git a/grails-app/assets/javascripts/streama/controllers/modal-media-detail-ctrl.js b/grails-app/assets/javascripts/streama/controllers/modal-media-detail-ctrl.js index caf530dd0..84a528ec5 100644 --- a/grails-app/assets/javascripts/streama/controllers/modal-media-detail-ctrl.js +++ b/grails-app/assets/javascripts/streama/controllers/modal-media-detail-ctrl.js @@ -12,6 +12,7 @@ angular.module('streama').controller('modalMediaDetailCtrl', [ $scope.listEpisodesForSeason = listEpisodesForSeason; $scope.addToWatchlist = addToWatchlist; $scope.removeFromWatchlist = removeFromWatchlist; + $scope.markAsUnviewed = markAsUnviewed; if(config.mediaObject) { $scope.media = config.mediaObject; @@ -101,4 +102,11 @@ angular.module('streama').controller('modalMediaDetailCtrl', [ } }) } + + function markAsUnviewed() { + apiService.video.markAsUnviewed({id: $scope.media.id}).then(function () { + $scope.media.status = 'unviewed'; + $rootScope.$broadcast('video.markAsUnviewed', {id: $scope.media.id}); + }); + } }]); diff --git a/grails-app/assets/javascripts/streama/directives/streama-dash-media-item.js b/grails-app/assets/javascripts/streama/directives/streama-dash-media-item.js new file mode 100644 index 000000000..e9d7bd322 --- /dev/null +++ b/grails-app/assets/javascripts/streama/directives/streama-dash-media-item.js @@ -0,0 +1,85 @@ +//= wrapped + +angular.module('streama').directive('streamaDashMediaItem', function () { + return { + restrict: 'E', + templateUrl: '/streama/directive--streama-dash-media-item.htm', + scope: { + entity: '=' + }, + bindToController: true, + controllerAs: 'vm', + controller: controller + } +}); + +function controller(apiService, modalService, $rootScope, $state, $scope) { + var vm = this; + vm.fetchFirstEpisodeAndPlay = fetchFirstEpisodeAndPlay; + vm.showDetails = showDetails; + vm.handleWatchlistUpdate = handleWatchlistUpdate; + vm.markCompleted = markCompleted; + + $scope.$on('video.markAsUnviewed', onVideoMarkAsUnviewed); + + function fetchFirstEpisodeAndPlay(tvShow) { + apiService.dash.firstEpisodeForShow(tvShow.id).then(function (response) { + $state.go('player', {videoId: response.data.id}); + }); + } + + function showDetails(media) { + if(media.mediaType === 'episode'){ + modalService.mediaDetailModal({mediaId: media.tvShowId, mediaType: 'tvShow', isApiMovie: false}); + }else{ + modalService.mediaDetailModal({mediaId: media.id, mediaType: media.mediaType, isApiMovie: false}, function (response) { + $rootScope.$broadcast('video.updateWatchlist', {response: response, media: media}); + }); + } + } + + function handleWatchlistUpdate(action, item){ + switch (action) { + case "added": + addToWatchlist(item); + break; + case "removed": + removeFromWatchlist(item); + break; + } + } + + function addToWatchlist(item) { + apiService.watchlistEntry.create(item).then(function (response) { + $rootScope.$broadcast('video.updateWatchlist', {action: 'added', response: response, media: item}); + }); + } + + function removeFromWatchlist(item) { + alertify.set({buttonReverse: true, labels: {ok: "Yes", cancel: "Cancel"}}); + alertify.confirm("Are you sure you want to remove this video from your watchlist?", function (confirmed) { + if (confirmed) { + apiService.watchlistEntry.delete(item).then(function (response) { + $rootScope.$broadcast('video.updateWatchlist', {action: 'removed', media: item}); + }); + } + }); + } + + function markCompleted() { + alertify.set({buttonReverse: true, labels: {ok: "Yes", cancel: "Cancel"}}); + alertify.confirm("Are you sure you want to mark this video as completed?", function (confirmed) { + if (confirmed) { + apiService.video.markCompleted({id: vm.entity.id}).then(function (data) { + vm.entity.deleted = true; + }); + } + }) + } + + function onVideoMarkAsUnviewed(e, data) { + if(data.id === vm.entity.id){ + vm.entity.status = 'unviewed'; + } + } +} diff --git a/grails-app/assets/javascripts/streama/services/api-service.js b/grails-app/assets/javascripts/streama/services/api-service.js index 56af518fd..818f4f477 100644 --- a/grails-app/assets/javascripts/streama/services/api-service.js +++ b/grails-app/assets/javascripts/streama/services/api-service.js @@ -120,7 +120,13 @@ angular.module('streama').factory('apiService', function ($http, $rootScope, con }, addLocalFile: function (params) { return $http.get('video/addLocalFile.json', {params: params}); - } + }, + markAsUnviewed: function (params) { + return $http.get('video/markAsUnviewed.json', {params: params}); + }, + markCompleted: function (params) { + return $http.get('video/markCompleted.json', {params: params}); + }, }, report: { diff --git a/grails-app/assets/javascripts/streama/templates/dash.tpl.htm b/grails-app/assets/javascripts/streama/templates/dash.tpl.htm index 3fb7465a7..2d7ab4856 100644 --- a/grails-app/assets/javascripts/streama/templates/dash.tpl.htm +++ b/grails-app/assets/javascripts/streama/templates/dash.tpl.htm @@ -45,25 +45,9 @@

{{'DASHBOARD.LOOKING_AT_GE

{{'DASHBOARD.CONTINUE_WATCHING' | translate}}

-
-
+
- - -
-

Continue ""

- -

-
- - - - - - - -
+
@@ -93,29 +77,15 @@

{{'DASHBOARD.RECOMMENDATIONS' | translate}}

-
- - - -
-

-

-
-
- -
- - -
+
-
+

{{'DASHBOARD.WATCHLIST' | translate}}

@@ -129,38 +99,7 @@

{{'DASHBOARD.WATCHLIST' | translate}}

-
- - - -
-

-
- -
- -
- - - -
-
- - - -
-

-

-
-
- -
- - - -
+
@@ -215,21 +154,7 @@

-
- - -
-

-
- -
- -
- - - -
+
@@ -285,22 +210,7 @@

-
- - - -
-

-

-
-
- -
- - - -
+
@@ -341,24 +251,7 @@

- -
- - - - -
-

-

-
-
- -
- - - -
+

diff --git a/grails-app/assets/javascripts/streama/templates/directive--streama-dash-media-item.tpl.htm b/grails-app/assets/javascripts/streama/templates/directive--streama-dash-media-item.tpl.htm new file mode 100644 index 000000000..e90b1493f --- /dev/null +++ b/grails-app/assets/javascripts/streama/templates/directive--streama-dash-media-item.tpl.htm @@ -0,0 +1,24 @@ +
+ + +
+

+ Continue: + +

+ +

+
+ +
+ +
+ + + + + +
diff --git a/grails-app/assets/javascripts/streama/templates/modal--media-detail.tpl.htm b/grails-app/assets/javascripts/streama/templates/modal--media-detail.tpl.htm index 8a85a9e03..0437f9b5a 100644 --- a/grails-app/assets/javascripts/streama/templates/modal--media-detail.tpl.htm +++ b/grails-app/assets/javascripts/streama/templates/modal--media-detail.tpl.htm @@ -58,6 +58,11 @@
  • {{'VIDEO.RATING' | translate}}: {{media.vote_average}}/10 ({{media.vote_count}} {{'VIDEO.VOTES' | translate}})
  • +
  • + {{'VIDEO.STATUS' | translate}}: + {{'VIDEO.STATUS_VALUE.' + media.status | translate}} + Mark as unviewed +

  • diff --git a/grails-app/assets/javascripts/streama/translations/CN_zh.js b/grails-app/assets/javascripts/streama/translations/CN_zh.js index ad0b5b76b..3d6b38f37 100644 --- a/grails-app/assets/javascripts/streama/translations/CN_zh.js +++ b/grails-app/assets/javascripts/streama/translations/CN_zh.js @@ -40,6 +40,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: '发布于', IMDB: 'IMDB', RATING: '评分', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: '投票', OVERVIEW: '简介', GENRE: '类型', diff --git a/grails-app/assets/javascripts/streama/translations/DE_de.js b/grails-app/assets/javascripts/streama/translations/DE_de.js index 6be8df8e6..ce36a6470 100644 --- a/grails-app/assets/javascripts/streama/translations/DE_de.js +++ b/grails-app/assets/javascripts/streama/translations/DE_de.js @@ -40,6 +40,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Veröffentlichung', IMDB: 'IMDB', RATING: 'Bewertungen', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Stimmen', OVERVIEW: 'Zusammenfassung', GENRE: 'Genre', diff --git a/grails-app/assets/javascripts/streama/translations/DK_da.js b/grails-app/assets/javascripts/streama/translations/DK_da.js index 71624aa57..45e42bbc6 100644 --- a/grails-app/assets/javascripts/streama/translations/DK_da.js +++ b/grails-app/assets/javascripts/streama/translations/DK_da.js @@ -39,6 +39,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Udgivet', IMDB: 'IMDB', RATING: 'Bedømmelse', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Stemmer', OVERVIEW: 'Oversigt', GENRE: 'Genre', diff --git a/grails-app/assets/javascripts/streama/translations/EN_us.js b/grails-app/assets/javascripts/streama/translations/EN_us.js index b2387dbff..07a3dd77e 100644 --- a/grails-app/assets/javascripts/streama/translations/EN_us.js +++ b/grails-app/assets/javascripts/streama/translations/EN_us.js @@ -40,6 +40,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Released', IMDB: 'IMDB', RATING: 'Rating', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Votes', OVERVIEW: 'Overview', GENRE: 'Genre', diff --git a/grails-app/assets/javascripts/streama/translations/ES_es.js b/grails-app/assets/javascripts/streama/translations/ES_es.js index b795078ff..133dedc0b 100644 --- a/grails-app/assets/javascripts/streama/translations/ES_es.js +++ b/grails-app/assets/javascripts/streama/translations/ES_es.js @@ -39,6 +39,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Publicado', IMDB: 'IMDB', RATING: 'Puntuación', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Votos', OVERVIEW: 'Sinopsis', GENRE: 'Género', diff --git a/grails-app/assets/javascripts/streama/translations/FR_fr.js b/grails-app/assets/javascripts/streama/translations/FR_fr.js index c1ba68c45..b20f81d2c 100644 --- a/grails-app/assets/javascripts/streama/translations/FR_fr.js +++ b/grails-app/assets/javascripts/streama/translations/FR_fr.js @@ -35,6 +35,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Sorti', IMDB: 'IMDB', RATING: 'Note', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Votes', OVERVIEW: 'Résumé', GENRE: 'Genre', diff --git a/grails-app/assets/javascripts/streama/translations/HU_hu.js b/grails-app/assets/javascripts/streama/translations/HU_hu.js index 58715cdce..e5e5fb490 100644 --- a/grails-app/assets/javascripts/streama/translations/HU_hu.js +++ b/grails-app/assets/javascripts/streama/translations/HU_hu.js @@ -36,6 +36,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Megjelent', IMDB: 'IMDB', RATING: 'Értékelés', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Szavazatok', OVERVIEW: 'Összefoglalás', GENRE: 'Műfaj', diff --git a/grails-app/assets/javascripts/streama/translations/IQ_ar.js b/grails-app/assets/javascripts/streama/translations/IQ_ar.js index 8f1e236f8..f9d2c9614 100644 --- a/grails-app/assets/javascripts/streama/translations/IQ_ar.js +++ b/grails-app/assets/javascripts/streama/translations/IQ_ar.js @@ -39,6 +39,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'الاصدار', IMDB: 'IMDB', RATING: 'التقييم', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'التصويت', OVERVIEW: 'نظرة عامة', GENRE: 'الصنف', diff --git a/grails-app/assets/javascripts/streama/translations/IT_it.js b/grails-app/assets/javascripts/streama/translations/IT_it.js index 32f8fc878..2770a2e6d 100644 --- a/grails-app/assets/javascripts/streama/translations/IT_it.js +++ b/grails-app/assets/javascripts/streama/translations/IT_it.js @@ -39,6 +39,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Rilasciato', IMDB: 'IMDB', RATING: 'Voto', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Voti', OVERVIEW: 'Panoramica', GENRE: 'Genere', diff --git a/grails-app/assets/javascripts/streama/translations/JA_ja.js b/grails-app/assets/javascripts/streama/translations/JA_ja.js index 8e5e4033a..3322a36cf 100644 --- a/grails-app/assets/javascripts/streama/translations/JA_ja.js +++ b/grails-app/assets/javascripts/streama/translations/JA_ja.js @@ -38,6 +38,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'リリース', IMDB: 'IMDB', RATING: '評価', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: '投票', OVERVIEW: '概要', GENRE: 'ジャンル', diff --git a/grails-app/assets/javascripts/streama/translations/KR_ko.js b/grails-app/assets/javascripts/streama/translations/KR_ko.js index e2da7b733..d9ea361f4 100644 --- a/grails-app/assets/javascripts/streama/translations/KR_ko.js +++ b/grails-app/assets/javascripts/streama/translations/KR_ko.js @@ -38,6 +38,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: '출시', IMDB: 'IMDB', RATING: '평점', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: '투표', OVERVIEW: '줄거리', GENRE: '장르', diff --git a/grails-app/assets/javascripts/streama/translations/NL_nl.js b/grails-app/assets/javascripts/streama/translations/NL_nl.js index 399e4122c..c0082098b 100644 --- a/grails-app/assets/javascripts/streama/translations/NL_nl.js +++ b/grails-app/assets/javascripts/streama/translations/NL_nl.js @@ -39,6 +39,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Uitgebracht op', IMDB: 'IMDB', RATING: 'Waardering', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Completed', + 'viewing': 'Viewing', + 'unviewed': 'Unviewed' + }, VOTES: 'Aantal stemmen', OVERVIEW: 'Overzicht', GENRE: 'Genre', diff --git a/grails-app/assets/javascripts/streama/translations/PT_br.js b/grails-app/assets/javascripts/streama/translations/PT_br.js index 691fb7587..f78919077 100644 --- a/grails-app/assets/javascripts/streama/translations/PT_br.js +++ b/grails-app/assets/javascripts/streama/translations/PT_br.js @@ -42,6 +42,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Lançamento', IMDB: 'IMDB', RATING: 'Classificação', + STATUS: 'Status', + STATUS_VALUE: { + 'completed': 'Concluído', + 'viewing': 'Ativo', + 'unviewed': 'não visto' + }, VOTES: 'Votos', OVERVIEW: 'Sinopse', GENRE: 'Gênero', diff --git a/grails-app/assets/javascripts/streama/translations/Ru_ru.js b/grails-app/assets/javascripts/streama/translations/Ru_ru.js index ef141822f..e0907144b 100644 --- a/grails-app/assets/javascripts/streama/translations/Ru_ru.js +++ b/grails-app/assets/javascripts/streama/translations/Ru_ru.js @@ -39,6 +39,12 @@ angular.module('streama.translations').config(function ($translateProvider) { RELEASED: 'Дата выхода', IMDB: 'IMDB', RATING: 'Рейтинг', + STATUS: 'положение дел', + STATUS_VALUE: { + 'completed': 'Завершенный', + 'viewing': 'просмотр', + 'unviewed': 'непросмотренный' + }, VOTES: 'Голосов', OVERVIEW: 'Описание', GENRE: 'Жанр', diff --git a/grails-app/assets/stylesheets/_media-display.scss b/grails-app/assets/stylesheets/_media-display.scss index 14208986d..a5c4846f9 100644 --- a/grails-app/assets/stylesheets/_media-display.scss +++ b/grails-app/assets/stylesheets/_media-display.scss @@ -141,6 +141,31 @@ } + .status-icon{ + position: absolute; + bottom: 0px; + left: 0px; + height: 1px; + width: 1px; + border-right: 40px solid transparent; + border-bottom: 40px solid darken($primary, 15%); + filter: drop-shadow(0px -1px 11px rgba(0,0,0, 0.5)); + + &:after{ + @include icomoon; + position: absolute; + top: 19px; + left: 4px; + font-size: 13px; + } + + &.status-completed{ + &:after{ + content: '\ed6c'; + } + } + } + } .media-list-item{ diff --git a/grails-app/assets/stylesheets/icomoon/demo-files/demo.css b/grails-app/assets/stylesheets/icomoon/demo-files/demo.css index 99d24d707..93e335a30 100644 --- a/grails-app/assets/stylesheets/icomoon/demo-files/demo.css +++ b/grails-app/assets/stylesheets/icomoon/demo-files/demo.css @@ -147,12 +147,12 @@ p { font-size: 16px; } .fs1 { - font-size: 24px; + font-size: 32px; } .fs2 { - font-size: 32px; + font-size: 20px; } .fs3 { - font-size: 20px; + font-size: 24px; } diff --git a/grails-app/assets/stylesheets/icomoon/demo.html b/grails-app/assets/stylesheets/icomoon/demo.html index eb3fe79f5..2627044f2 100644 --- a/grails-app/assets/stylesheets/icomoon/demo.html +++ b/grails-app/assets/stylesheets/icomoon/demo.html @@ -9,70 +9,53 @@
    -

    Font Name: icomoon (Glyphs: 45)

    +

    Font Name: icomoon (Glyphs: 48)

    -

    Grid Size: 24

    +

    Grid Size: 16

    - - icon-replay + + icon-checkmark
    - - + +
    liga: - +
    - - icon-replay_10 + + icon-checkmark2
    - - + +
    liga: - +
    - - icon-replay_30 + + icon-checkmark3
    - - + +
    liga: - +
    -
    - - icon-cast -
    -
    - - -
    -
    - liga: - -
    -
    -
    -
    -

    Grid Size: 16

    -
    icon-clapboard-play @@ -86,7 +69,7 @@

    Grid Size: 16

    -
    +
    icon-movie @@ -100,7 +83,7 @@

    Grid Size: 16

    -
    +
    icon-folder-search2 @@ -114,7 +97,7 @@

    Grid Size: 16

    -
    +
    icon-tv @@ -128,7 +111,7 @@

    Grid Size: 16

    -
    +
    icon-rotate-ccw3 @@ -142,7 +125,7 @@

    Grid Size: 16

    -
    +
    icon-rotate-cw3 @@ -156,7 +139,7 @@

    Grid Size: 16

    -
    +
    icon-equalizer4 @@ -170,7 +153,7 @@

    Grid Size: 16

    -
    +
    icon-equalizer2 @@ -184,7 +167,7 @@

    Grid Size: 16

    -
    +
    icon-equalizer3 @@ -198,7 +181,7 @@

    Grid Size: 16

    -
    +
    icon-cog4 @@ -212,7 +195,7 @@

    Grid Size: 16

    -
    +
    icon-cogs @@ -226,7 +209,7 @@

    Grid Size: 16

    -
    +
    icon-cog3 @@ -240,7 +223,7 @@

    Grid Size: 16

    -
    +
    icon-magic-wand2 @@ -254,7 +237,7 @@

    Grid Size: 16

    -
    +
    icon-cloud-upload3 @@ -268,7 +251,7 @@

    Grid Size: 16

    -
    +
    icon-cloud-upload2 @@ -282,7 +265,7 @@

    Grid Size: 16

    -
    +
    icon-stack-plus @@ -299,7 +282,7 @@

    Grid Size: 16

    Grid Size: 20

    -
    +
    icon-magic-wand @@ -313,7 +296,7 @@

    Grid Size: 20

    -
    +
    icon-cloud-upload @@ -327,7 +310,7 @@

    Grid Size: 20

    -
    +
    icon-cog @@ -341,7 +324,7 @@

    Grid Size: 20

    -
    +
    icon-cog2 @@ -355,7 +338,7 @@

    Grid Size: 20

    -
    +
    icon-file-add @@ -369,7 +352,7 @@

    Grid Size: 20

    -
    +
    icon-files @@ -383,7 +366,7 @@

    Grid Size: 20

    -
    +
    icon-compare @@ -397,7 +380,7 @@

    Grid Size: 20

    -
    +
    icon-folder-search @@ -411,7 +394,7 @@

    Grid Size: 20

    -
    +
    icon-repeat @@ -425,7 +408,7 @@

    Grid Size: 20

    -
    +
    icon-equalizer @@ -439,7 +422,7 @@

    Grid Size: 20

    -
    +
    icon-presentation @@ -453,7 +436,7 @@

    Grid Size: 20

    -
    +
    icon-users2 @@ -467,7 +450,7 @@

    Grid Size: 20

    -
    +
    icon-baby2 @@ -481,7 +464,7 @@

    Grid Size: 20

    -
    +
    icon-dna @@ -495,7 +478,7 @@

    Grid Size: 20

    -
    +
    icon-brain @@ -509,7 +492,7 @@

    Grid Size: 20

    -
    +
    icon-icons @@ -523,7 +506,7 @@

    Grid Size: 20

    -
    +
    icon-icons2 @@ -537,7 +520,7 @@

    Grid Size: 20

    -
    +
    icon-site-map @@ -551,7 +534,7 @@

    Grid Size: 20

    -
    +
    icon-hourglass @@ -565,7 +548,7 @@

    Grid Size: 20

    -
    +
    icon-sync @@ -579,7 +562,7 @@

    Grid Size: 20

    -
    +
    icon-clock3 @@ -593,7 +576,7 @@

    Grid Size: 20

    -
    +
    icon-watch @@ -607,7 +590,7 @@

    Grid Size: 20

    -
    +
    icon-timer2 @@ -621,7 +604,7 @@

    Grid Size: 20

    -
    +
    icon-code @@ -635,7 +618,7 @@

    Grid Size: 20

    -
    +
    icon-share2 @@ -650,6 +633,65 @@

    Grid Size: 20

    +
    +

    Grid Size: 24

    +
    +
    + + icon-replay +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + icon-replay_10 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + icon-replay_30 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + icon-cast +
    +
    + + +
    +
    + liga: + +
    +
    +
    diff --git a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.eot b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.eot index d9a80b87d..5faaa5485 100644 Binary files a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.eot and b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.eot differ diff --git a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.svg b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.svg index cc7136476..727f7a980 100644 --- a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.svg +++ b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.svg @@ -52,4 +52,7 @@ + + + \ No newline at end of file diff --git a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.ttf b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.ttf index 792eae99f..90ee0645e 100644 Binary files a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.ttf and b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.ttf differ diff --git a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff index 36a7de9d0..aa517599e 100644 Binary files a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff and b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff differ diff --git a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff2 b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff2 index b923a6ce7..0ace547ff 100644 Binary files a/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff2 and b/grails-app/assets/stylesheets/icomoon/fonts/icomoon.woff2 differ diff --git a/grails-app/assets/stylesheets/icomoon/selection.json b/grails-app/assets/stylesheets/icomoon/selection.json index 818df97c3..5f5473c81 100644 --- a/grails-app/assets/stylesheets/icomoon/selection.json +++ b/grails-app/assets/stylesheets/icomoon/selection.json @@ -1 +1 @@ -{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 75 181t181 75 181-75 75-181-75-181-181-75v172l-214-214 214-214v172z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["replay"],"grid":24},"attrs":[{}],"properties":{"order":1,"id":3,"prevSize":24,"code":59649,"name":"replay"},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M564 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-6 8-6 12v86q6 8 6 12zM648 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-18 0-26-4-4-2-10-6t-10-6q-18-10-18-60v-30q0-26 4-34l14-26q12-12 20-12 4 0 13-2t13-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["replay_10"],"grid":24},"attrs":[{}],"properties":{"order":2,"id":2,"prevSize":24,"code":59650,"name":"replay_10"},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M572 648c0 7.531 13.843 14 22 14 4 0 8 0 12-4l8-10s4-8 4-12v-86c0-4-4-8-4-12 0-4.671-15.121-14-20-14-4 0-10 2-14 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["replay_30"],"grid":24},"attrs":[{}],"properties":{"order":1,"id":1,"prevSize":24,"code":59648,"name":"replay_30"},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M42 426q194 0 332 138t138 332h-86q0-160-113-272t-271-112v-86zM42 598q124 0 212 87t88 211h-86q0-88-63-151t-151-63v-84zM42 768q52 0 90 38t38 90h-128v-128zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-298v-86h298v-596h-768v128h-86v-128q0-34 26-60t60-26h768z"],"attrs":[{}],"isMulticolor":false,"tags":["cast"],"grid":24},"attrs":[{}],"properties":{"order":1,"id":0,"prevSize":24,"code":58880,"name":"cast"},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M78.302 262.54l865.444-231.884 49.69 185.452-865.444 231.884zM128 448v576h896v-576h-896zM448 896v-320l256 160-256 160z"],"attrs":[],"isMulticolor":false,"tags":["clapboard-play","video","cinema","movie","play","media"],"defaultCode":57412,"grid":16},"attrs":[],"properties":{"id":122,"order":46,"prevSize":32,"code":59737,"ligatures":"clapboard-play, video3","name":"clapboard-play"},"setIdx":1,"setId":1,"iconIdx":89},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 113.618c60.374 0 109.316 48.942 109.316 109.318 0 60.374-48.944 109.316-109.316 109.316-60.376 0-109.316-48.942-109.316-109.316 0-60.376 48.94-109.318 109.316-109.318zM115.556 414.728c0-60.374 48.942-109.316 109.318-109.316 60.374 0 109.316 48.942 109.316 109.316 0 60.376-48.942 109.318-109.316 109.318-60.374-0.002-109.318-48.944-109.318-109.318zM338.402 845.288c-60.374 0-109.316-48.942-109.316-109.316s48.944-109.318 109.316-109.318c60.374 0 109.318 48.944 109.318 109.318s-48.944 109.316-109.318 109.316zM512 576c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64zM685.598 845.938c-60.376 0-109.316-48.942-109.316-109.316s48.942-109.318 109.316-109.318c60.374 0 109.316 48.944 109.316 109.318s-48.944 109.316-109.316 109.316zM799.124 524.696c-60.374 0-109.316-48.942-109.316-109.318 0-60.374 48.944-109.316 109.316-109.316 60.376 0 109.318 48.942 109.318 109.316 0.002 60.374-48.94 109.318-109.318 109.318z"],"attrs":[],"isMulticolor":false,"tags":["movie","video","wheel","film"],"defaultCode":57414,"grid":16},"attrs":[],"properties":{"id":124,"order":45,"prevSize":32,"code":59741,"ligatures":"movie, video5","name":"movie"},"setIdx":1,"setId":1,"iconIdx":93},{"icon":{"paths":["M928 128h-416l-32-64h-352l-64 128h896z","M904.34 704h74.86l44.8-448h-1024l64 640h484.080c-104.882-37.776-180.080-138.266-180.080-256 0-149.982 122.018-272 272-272 149.98 0 272 122.018 272 272 0 21.678-2.622 43.15-7.66 64z","M1002.996 913.75l-198.496-174.692c17.454-28.92 27.5-62.814 27.5-99.058 0-106.040-85.96-192-192-192s-192 85.96-192 192 85.96 192 192 192c36.244 0 70.138-10.046 99.058-27.5l174.692 198.496c22.962 26.678 62.118 28.14 87.006 3.252l5.492-5.492c24.888-24.888 23.426-64.044-3.252-87.006zM640 764c-68.484 0-124-55.516-124-124s55.516-124 124-124 124 55.516 124 124-55.516 124-124 124z"],"attrs":[],"isMulticolor":false,"tags":["folder-search","dicrectory","browse"],"defaultCode":59857,"grid":16},"attrs":[],"properties":{"id":217,"order":18,"prevSize":32,"code":59857,"ligatures":"folder-search, dicrectory","name":"folder-search2"},"setIdx":1,"setId":1,"iconIdx":209},{"icon":{"paths":["M981.188 288.108c-88.808-12.768-183.382-22.016-282.076-27.22l164.888-164.888-64-64-224.558 224.556c-21.006-0.368-42.156-0.556-63.442-0.556v0l-256-256-64 64 194.196 194.196c-120.922 4.242-236.338 14.524-343.386 29.912-27.532 107.726-42.81 226.752-42.81 351.892s15.278 244.166 42.804 351.89c143.642 20.652 302.34 32.11 469.196 32.11 166.856 0 325.55-11.458 469.188-32.11 27.534-107.724 42.812-226.75 42.812-351.89s-15.278-244.166-42.812-351.892zM863.892 874.594c-107.73 13.766-226.75 21.406-351.892 21.406-125.142 0-244.166-7.64-351.892-21.406-20.648-71.816-32.108-151.166-32.108-234.594 0-83.43 11.458-162.78 32.108-234.596 107.726-13.766 226.75-21.404 351.892-21.404 125.136 0 244.162 7.638 351.886 21.404 20.656 71.816 32.114 151.166 32.114 234.596 0 83.428-11.458 162.778-32.108 234.594z"],"attrs":[],"isMulticolor":false,"tags":["tv","television","show"],"defaultCode":57641,"grid":16},"attrs":[],"properties":{"id":362,"order":44,"prevSize":32,"code":60025,"ligatures":"tv, television","name":"tv"},"setIdx":1,"setId":1,"iconIdx":377},{"icon":{"paths":["M704 64c-247.424 0-448 200.576-448 448h-224l288 288 288-288h-224c0-176.73 143.27-320 320-320 176.732 0 320 143.27 320 320 0 176.732-143.268 320-320 320v128c247.424 0 448-200.576 448-448s-200.576-448-448-448z"],"width":1152,"attrs":[],"isMulticolor":false,"tags":["rotate-ccw","ccw","arrow"],"defaultCode":60072,"grid":16},"attrs":[],"properties":{"id":22,"order":50,"prevSize":32,"code":60072,"ligatures":"rotate-ccw3, ccw4","name":"rotate-ccw3"},"setIdx":1,"setId":1,"iconIdx":424},{"icon":{"paths":["M448 64c247.424 0 448 200.576 448 448h224l-288 288-288-288h224c0-176.73-143.27-320-320-320-176.732 0-320 143.27-320 320 0 176.732 143.268 320 320 320v128c-247.424 0-448-200.576-448-448s200.576-448 448-448z"],"width":1152,"attrs":[],"isMulticolor":false,"tags":["rotate-cw","cw","arrow"],"defaultCode":60073,"grid":16},"attrs":[],"properties":{"order":51,"id":1679,"prevSize":32,"code":60073,"ligatures":"rotate-cw3, cw4","name":"rotate-cw3"},"setIdx":1,"setId":1,"iconIdx":425},{"icon":{"paths":["M448 128v-16c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576zM256 256v-128h128v128h-128zM832 432c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-576v128h576v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h192v-128h-192v-16zM640 576v-128h128v128h-128zM448 752c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576v-16zM256 896v-128h128v128h-128z"],"attrs":[],"isMulticolor":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":57819,"grid":16},"attrs":[],"properties":{"id":565,"order":12,"prevSize":32,"code":60248,"ligatures":"equalizer, sliders","name":"equalizer4"},"setIdx":1,"setId":1,"iconIdx":600},{"icon":{"paths":["M896 448h16c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576zM768 256h128v128h-128v-128zM592 832c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-576h-128v576h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v192h128v-192h16zM448 640h128v128h-128v-128zM272 448c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576h16zM128 256h128v128h-128v-128z"],"attrs":[],"isMulticolor":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":57820,"grid":16},"attrs":[],"properties":{"id":566,"order":11,"prevSize":32,"code":60249,"ligatures":"equalizer2, sliders2","name":"equalizer2"},"setIdx":1,"setId":1,"iconIdx":601},{"icon":{"paths":["M288 320h-128c-17.6 0-32 14.4-32 32v64c0 17.6 14.4 32 32 32h128c17.6 0 32-14.4 32-32v-64c0-17.6-14.4-32-32-32zM192 128h64v160h-64zM192 480h64v416h-64zM544 576h-128c-17.6 0-32 14.4-32 32v64c0 17.6 14.4 32 32 32h128c17.602 0 32-14.4 32-32v-64c0-17.6-14.398-32-32-32zM448.002 128h64v416h-64zM448.002 736h64v160h-64zM800 384h-128c-17.598 0-32 14.4-32 32v64c0 17.6 14.402 32 32 32h128c17.602 0 32-14.4 32-32v-64c0-17.6-14.398-32-32-32zM704 128h64v224h-64zM704 544h64v352h-64zM880 0h-800c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h800c44.112 0 80-35.888 80-80v-864c0-44.112-35.888-80-80-80zM896 944c0 8.8-7.2 16-16 16h-800c-8.8 0-16-7.2-16-16v-864c0-8.8 7.2-16 16-16h800c8.8 0 16 7.2 16 16v864z"],"attrs":[],"isMulticolor":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":57821,"grid":16},"attrs":[],"properties":{"id":567,"order":10,"prevSize":32,"code":60250,"ligatures":"equalizer3, sliders3","name":"equalizer3"},"setIdx":1,"setId":1,"iconIdx":602},{"icon":{"paths":["M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.292c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.708-87.746-194.708-195.99l-201.258 0c0.266 33.41-8.074 67.282-25.958 98.252-53.724 93.056-173.156 124.702-266.862 70.758l-100.624 174.292c28.97 16.472 54.050 40.588 71.886 71.478 53.638 92.908 21.512 211.92-71.708 266.224l100.626 174.292c28.65-16.696 61.916-26.254 97.4-26.254 107.196 0 194.144 87.192 194.7 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.636-92.906 172.776-124.594 266.414-71.012l100.626-174.29c-28.78-16.466-53.692-40.498-71.434-71.228zM512 719.332c-114.508 0-207.336-92.824-207.336-207.334 0-114.508 92.826-207.334 207.336-207.334 114.508 0 207.332 92.826 207.332 207.334-0.002 114.51-92.824 207.334-207.332 207.334z"],"attrs":[],"isMulticolor":false,"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":57823,"grid":16},"attrs":[],"properties":{"id":569,"order":1,"prevSize":32,"code":60252,"ligatures":"cog, gear","name":"cog4"},"setIdx":1,"setId":1,"iconIdx":604},{"icon":{"paths":["M363.722 722.052l41.298-57.816-45.254-45.256-57.818 41.296c-10.722-5.994-22.204-10.774-34.266-14.192l-11.682-70.084h-64l-11.68 70.086c-12.062 3.418-23.544 8.198-34.266 14.192l-57.818-41.298-45.256 45.256 41.298 57.816c-5.994 10.72-10.774 22.206-14.192 34.266l-70.086 11.682v64l70.086 11.682c3.418 12.060 8.198 23.544 14.192 34.266l-41.298 57.816 45.254 45.256 57.818-41.296c10.722 5.994 22.204 10.774 34.266 14.192l11.682 70.084h64l11.68-70.086c12.062-3.418 23.544-8.198 34.266-14.192l57.818 41.296 45.254-45.256-41.298-57.816c5.994-10.72 10.774-22.206 14.192-34.266l70.088-11.68v-64l-70.086-11.682c-3.418-12.060-8.198-23.544-14.192-34.266zM224 864c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64zM1024 384v-64l-67.382-12.25c-1.242-8.046-2.832-15.978-4.724-23.79l57.558-37.1-24.492-59.128-66.944 14.468c-4.214-6.91-8.726-13.62-13.492-20.13l39.006-56.342-45.256-45.254-56.342 39.006c-6.512-4.766-13.22-9.276-20.13-13.494l14.468-66.944-59.128-24.494-37.1 57.558c-7.812-1.892-15.744-3.482-23.79-4.724l-12.252-67.382h-64l-12.252 67.382c-8.046 1.242-15.976 2.832-23.79 4.724l-37.098-57.558-59.128 24.492 14.468 66.944c-6.91 4.216-13.62 8.728-20.13 13.494l-56.342-39.006-45.254 45.254 39.006 56.342c-4.766 6.51-9.278 13.22-13.494 20.13l-66.944-14.468-24.492 59.128 57.558 37.1c-1.892 7.812-3.482 15.742-4.724 23.79l-67.384 12.252v64l67.382 12.25c1.242 8.046 2.832 15.978 4.724 23.79l-57.558 37.1 24.492 59.128 66.944-14.468c4.216 6.91 8.728 13.618 13.494 20.13l-39.006 56.342 45.254 45.256 56.342-39.006c6.51 4.766 13.22 9.276 20.13 13.492l-14.468 66.944 59.128 24.492 37.102-57.558c7.81 1.892 15.742 3.482 23.788 4.724l12.252 67.384h64l12.252-67.382c8.044-1.242 15.976-2.832 23.79-4.724l37.1 57.558 59.128-24.492-14.468-66.944c6.91-4.216 13.62-8.726 20.13-13.492l56.342 39.006 45.256-45.256-39.006-56.342c4.766-6.512 9.276-13.22 13.492-20.13l66.944 14.468 24.492-59.13-57.558-37.1c1.892-7.812 3.482-15.742 4.724-23.79l67.382-12.25zM672 491.2c-76.878 0-139.2-62.322-139.2-139.2 0-76.878 62.32-139.2 139.2-139.2s139.2 62.322 139.2 139.2c0 76.878-62.32 139.2-139.2 139.2z"],"attrs":[],"isMulticolor":false,"tags":["cogs","gears","preferences","settings","generate","control","options"],"defaultCode":57824,"grid":16},"attrs":[],"properties":{"id":570,"order":5,"prevSize":32,"code":60253,"ligatures":"cogs, gears","name":"cogs"},"setIdx":1,"setId":1,"iconIdx":605},{"icon":{"paths":["M633.152 1024h-242.306l-24.404-146.424c-3.358-1.338-6.7-2.72-10.020-4.15l-120.792 86.282-171.338-171.334 86.116-120.562c-1.476-3.414-2.906-6.85-4.284-10.304l-146.124-24.358v-242.304l145.736-24.288c1.422-3.59 2.9-7.164 4.426-10.71l-85.87-120.216 171.338-171.338 119.982 85.702c3.642-1.576 7.308-3.098 10.998-4.564l24.236-145.432h242.306l24.238 145.43c3.69 1.466 7.358 2.988 10.998 4.564l119.982-85.702 171.336 171.338-85.872 120.214c1.53 3.548 3.006 7.122 4.428 10.714l145.738 24.288v242.304l-146.124 24.356c-1.378 3.456-2.806 6.89-4.284 10.302l86.116 120.562-171.336 171.336-120.794-86.282c-3.322 1.428-6.662 2.81-10.022 4.148l-24.404 146.428zM455.23 948h113.54l21.234-127.41 21.788-7.2c14.62-4.832 29.012-10.792 42.778-17.712l20.492-10.302 105.096 75.066 80.286-80.286-74.958-104.944 10.368-20.52c6.986-13.826 13.004-28.292 17.882-42.998l7.216-21.748 127.048-21.176v-113.542l-126.804-21.134-7.178-21.84c-4.876-14.846-10.908-29.442-17.926-43.38l-10.316-20.5 74.666-104.53-80.286-80.288-104.382 74.558-20.524-10.384c-13.996-7.082-28.666-13.168-43.602-18.096l-21.804-7.192-21.074-126.442h-113.54l-21.074 126.444-21.804 7.192c-14.93 4.926-29.598 11.014-43.598 18.098l-20.524 10.384-104.384-74.56-80.288 80.288 74.666 104.532-10.316 20.498c-7.016 13.942-13.046 28.536-17.924 43.38l-7.176 21.842-126.808 21.132v113.54l127.052 21.178 7.214 21.752c4.874 14.692 10.89 29.156 17.882 42.992l10.37 20.52-74.962 104.948 80.288 80.284 105.098-75.068 20.494 10.308c13.754 6.918 28.146 12.876 42.77 17.71l21.788 7.2 21.236 127.406zM544 384h-64c-52.8 0-96 43.2-96 96v64c0 52.8 43.2 96 96 96h64c52.8 0 96-43.2 96-96v-64c0-52.8-43.2-96-96-96zM576 544c0 17.6-14.4 32-32 32h-64c-17.6 0-32-14.4-32-32v-64c0-17.6 14.4-32 32-32h64c17.6 0 32 14.4 32 32v64z"],"attrs":[],"isMulticolor":false,"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":57826,"grid":16},"attrs":[],"properties":{"id":572,"order":2,"prevSize":32,"code":60255,"ligatures":"cog3, gear3","name":"cog3"},"setIdx":1,"setId":1,"iconIdx":607},{"icon":{"paths":["M256 192l-128-128h-64v64l128 128zM320 0h64v128h-64zM576 320h128v64h-128zM640 128v-64h-64l-128 128 64 64zM0 320h128v64h-128zM320 576h64v128h-64zM64 576v64h64l128-128-64-64zM1010 882l-636.118-636.118c-18.668-18.668-49.214-18.668-67.882 0l-60.118 60.118c-18.668 18.668-18.668 49.214 0 67.882l636.118 636.118c18.668 18.668 49.214 18.668 67.882 0l60.118-60.118c18.668-18.668 18.668-49.214 0-67.882zM480 544l-192-192 64-64 192 192-64 64z"],"attrs":[],"isMulticolor":false,"tags":["magic-wand","wizard"],"defaultCode":57836,"grid":16},"attrs":[],"properties":{"id":582,"order":7,"prevSize":32,"code":60266,"ligatures":"magic-wand, wizard","name":"magic-wand2"},"setIdx":1,"setId":1,"iconIdx":618},{"icon":{"paths":["M512 544l-224 224h160v192h128v-192h160l-224-224z","M892.216 514.542c2.49-11.29 3.784-22.87 3.784-34.542 0-88.224-71.776-160-160-160-13.956 0-27.796 1.83-41.164 5.378-24.838-77.286-97.404-133.378-182.836-133.378-86.654 0-160.886 58.042-184.312 138.118-22.982-6.66-47.052-10.118-71.688-10.118-141.158 0-256 114.84-256 256 0 61.986 22.444 121.798 63.2 168.42 40.354 46.164 95.852 76.346 156.266 84.988 1.538 0.218 3.064 0.326 4.572 0.326 15.666 0 29.354-11.514 31.638-27.472 2.502-17.496-9.652-33.708-27.146-36.208-45.262-6.474-86.864-29.116-117.144-63.754-30.558-34.956-47.386-79.81-47.386-126.3 0-105.87 86.13-192 192-192 52.024 0 100.73 20.466 137.146 57.63 12.368 12.624 32.63 12.83 45.252 0.458 12.624-12.37 12.83-32.628 0.458-45.252-15.676-15.998-33.070-29.66-51.76-40.848 12.84-57.42 64.304-99.988 124.904-99.988 70.58 0 128 57.42 128 128 0 8.706-0.876 17.398-2.602 25.832-3.542 17.316 7.624 34.222 24.938 37.764 2.164 0.444 4.32 0.656 6.448 0.656 14.884 0 28.218-10.442 31.318-25.592 2.218-10.854 3.494-21.972 3.812-33.126 10.244-3.624 21.096-5.534 32.086-5.534 52.936 0 96 43.066 96 96 0 10.964-1.88 21.784-5.484 32h-26.516c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c52.934 0 96 43.066 96 96s-43.066 96-96 96h-64c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c88.224 0 160-71.776 160-160 0-78.594-56.976-144.086-131.784-157.458z"],"attrs":[],"isMulticolor":false,"tags":["cloud-upload","cloud","load","upload"],"defaultCode":58035,"grid":16},"attrs":[],"properties":{"order":15,"id":1800,"prevSize":32,"code":60532,"ligatures":"cloud-upload, cloud3","name":"cloud-upload3"},"setIdx":1,"setId":1,"iconIdx":884},{"icon":{"paths":["M892.268 386.49c2.444-11.11 3.732-22.648 3.732-34.49 0-88.366-71.634-160-160-160-14.222 0-28.014 1.868-41.132 5.352-24.798-77.352-97.29-133.352-182.868-133.352-87.348 0-161.054 58.336-184.326 138.17-22.742-6.622-46.792-10.17-71.674-10.17-141.384 0-256 114.616-256 256 0 141.388 114.616 256 256 256h128v192h256v-192h224c88.366 0 160-71.632 160-160 0-78.72-56.854-144.162-131.732-157.51zM576 640v192h-128v-192h-160l224-224 224 224h-160z"],"attrs":[],"isMulticolor":false,"tags":["cloud-upload","cloud","load","upload"],"defaultCode":58039,"grid":16},"attrs":[],"properties":{"id":789,"order":16,"prevSize":32,"code":60536,"ligatures":"cloud-upload2, cloud7","name":"cloud-upload2"},"setIdx":1,"setId":1,"iconIdx":888},{"icon":{"paths":["M320 64v73.896l-167.616 23.556 10.888 77.48-163.272 46.818 211.69 738.25 652.066-186.976 35.74-5.024h124.504v-768h-704zM251.456 952.26l-179.716-626.742 99.686-28.584 87.844 625.044 191.794-26.956-199.608 57.238zM308.632 856.47l-90.74-645.656 102.108-14.348v635.534h162.75l-174.118 24.47zM960 768h-576v-640h576v640zM832 512h-128v128h-64v-128h-128v-64h128v-128h64v128h128z"],"attrs":[],"isMulticolor":false,"tags":["stack-plus","files","papers","pages"],"defaultCode":58177,"grid":16},"attrs":[],"properties":{"id":929,"order":13,"prevSize":32,"code":60729,"ligatures":"stack-plus, files5","name":"stack-plus"},"setIdx":1,"setId":1,"iconIdx":1081},{"icon":{"paths":["M588.8 358.4c-14.139 0-25.6-11.462-25.6-25.6 0-70.579-57.421-128-128-128-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6c70.579 0 128-57.421 128-128 0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 70.579 57.421 128 128 128 14.139 0 25.6 11.462 25.6 25.6s-11.461 25.6-25.6 25.6c-70.579 0-128 57.421-128 128 0 14.138-11.461 25.6-25.6 25.6zM527.426 179.2c25.11 15.136 46.238 36.264 61.374 61.376 15.136-25.112 36.264-46.24 61.376-61.376-25.112-15.136-46.24-36.264-61.376-61.376-15.136 25.112-36.264 46.24-61.374 61.376z","M76.8 512c-14.138 0-25.6-11.462-25.6-25.6 0-14.115-11.485-25.6-25.6-25.6-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6c14.115 0 25.6-11.485 25.6-25.6 0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 14.115 11.485 25.6 25.6 25.6 14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6c-14.115 0-25.6 11.485-25.6 25.6 0 14.138-11.462 25.6-25.6 25.6z","M929.101 816.096l-541.995-541.994c-14.466-14.466-33.752-22.432-54.306-22.432s-39.84 7.966-54.306 22.432l-29.992 29.992c-14.466 14.466-22.432 33.752-22.432 54.306s7.966 39.84 22.432 54.306l541.994 541.992c14.464 14.466 33.75 22.434 54.304 22.434s39.84-7.965 54.306-22.434l29.994-29.992c14.466-14.464 22.432-33.752 22.432-54.304s-7.965-39.842-22.43-54.306zM284.706 340.298l29.992-29.992c4.795-4.795 11.224-7.435 18.102-7.435s13.307 2.64 18.102 7.435l73.691 73.693-66.197 66.197-73.691-73.691c-9.982-9.984-9.982-26.224 0-36.206zM892.894 888.502l-29.994 29.992c-4.794 4.794-11.224 7.434-18.099 7.434s-13.306-2.64-18.099-7.434l-432.102-432.099 66.197-66.195 432.098 432.099c9.981 9.981 9.981 26.222 0 36.203z","M179.2 256c-14.138 0-25.6-11.462-25.6-25.6 0-42.347-34.453-76.8-76.8-76.8-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6c42.347 0 76.8-34.453 76.8-76.8 0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 42.347 34.453 76.8 76.8 76.8 14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6c-42.347 0-76.8 34.453-76.8 76.8 0 14.138-11.462 25.6-25.6 25.6zM153.52 128c9.725 7.304 18.376 15.957 25.68 25.68 7.304-9.725 15.957-18.376 25.68-25.68-9.725-7.304-18.376-15.957-25.68-25.68-7.304 9.723-15.957 18.376-25.68 25.68z","M179.2 768c-14.138 0-25.6-11.461-25.6-25.6 0-42.347-34.453-76.8-76.8-76.8-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6c42.347 0 76.8-34.453 76.8-76.8 0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6c0 42.347 34.453 76.8 76.8 76.8 14.138 0 25.6 11.461 25.6 25.6s-11.462 25.6-25.6 25.6c-42.347 0-76.8 34.453-76.8 76.8 0 14.139-11.462 25.6-25.6 25.6zM153.52 640c9.725 7.302 18.376 15.957 25.68 25.68 7.304-9.723 15.957-18.374 25.68-25.68-9.725-7.302-18.376-15.957-25.68-25.68-7.304 9.723-15.957 18.378-25.68 25.68z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["magic-wand","tool","wizard"],"defaultCode":58897,"grid":20},"attrs":[],"properties":{"name":"magic-wand","prevSize":20,"code":58923,"ligatures":"magic-wand, tool","order":6,"id":44},"setIdx":2,"setId":0,"iconIdx":43},{"icon":{"paths":["M658.099 596.301l-102.4-102.4c-9.995-9.997-26.206-9.997-36.203 0l-102.4 102.4c-9.997 9.995-9.997 26.206 0 36.203s26.206 9.997 36.205 0l58.699-58.699v219.795c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-219.795l58.701 58.699c4.997 4.997 11.547 7.496 18.099 7.496s13.102-2.499 18.099-7.501c10-9.995 10-26.203 0-36.198z","M819.52 819.2h-179.52c-14.139 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6h179.52c84.518 0 153.28-68.762 153.28-153.28s-68.762-153.28-153.28-153.28c-18.128 0-35.794 3.101-52.507 9.222-11.166 4.088-23.677-0.050-30.202-9.989s-5.349-23.064 2.842-31.685c18.28-19.235 28.347-44.307 28.347-70.589 0-56.464-45.936-102.4-102.4-102.4-32.858 0-62.912 15.187-82.456 41.667-11.798 15.986-18.669 34.707-19.867 54.138-0.67 10.85-8.117 20.093-18.574 23.054-10.462 2.966-21.648-1.006-27.906-9.891-5.632-7.997-11.73-15.702-18.126-22.902-48.587-54.696-118.374-86.066-191.47-86.066-141.158 0-256 114.84-256 256s114.842 256 256 256h128c14.138 0 25.6 11.461 25.6 25.6s-11.462 25.6-25.6 25.6h-128c-169.39 0-307.2-137.81-307.2-307.2s137.81-307.2 307.2-307.2c82.034 0 160.589 32.917 218.104 90.866 4.483-9.947 10.048-19.469 16.643-28.403 28.87-39.112 75.093-62.462 123.653-62.462 84.696 0 153.6 68.904 153.6 153.6 0 17.957-3.118 35.523-9.096 52.051 3.126-0.142 6.267-0.211 9.416-0.211 112.75 0 204.48 91.73 204.48 204.48s-91.73 204.48-204.48 204.48z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["cloud-upload","cloud"],"defaultCode":58913,"grid":20},"attrs":[],"properties":{"name":"cloud-upload","prevSize":20,"code":58955,"ligatures":"cloud-upload, cloud2","order":17,"id":76},"setIdx":2,"setId":0,"iconIdx":75},{"icon":{"paths":["M390.71 1008.755c-2.109 0-4.248-0.262-6.378-0.81-45.976-11.803-90.149-30.042-131.291-54.21-11.923-7.003-16.13-22.21-9.501-34.344 8.15-14.925 12.459-31.866 12.459-48.992 0-56.464-45.936-102.4-102.4-102.4-17.125 0-34.066 4.309-48.992 12.459-12.133 6.627-27.339 2.421-34.342-9.501-24.17-41.142-42.408-85.315-54.211-131.293-3.333-12.989 3.92-26.349 16.629-30.629 41.699-14.037 69.717-53.034 69.717-97.037s-28.018-83-69.718-97.040c-12.707-4.278-19.962-17.638-16.627-30.627 11.803-45.976 30.042-90.149 54.211-131.291 7.003-11.923 22.21-16.13 34.344-9.501 14.923 8.15 31.864 12.459 48.99 12.459 56.464 0 102.4-45.936 102.4-102.4 0-17.126-4.309-34.067-12.459-48.99-6.629-12.134-2.422-27.341 9.501-34.344 41.141-24.168 85.314-42.408 131.291-54.211 12.994-3.334 26.349 3.92 30.627 16.627 14.040 41.701 53.037 69.718 97.040 69.718s83-28.018 97.038-69.717c4.28-12.71 17.645-19.965 30.629-16.629 45.976 11.802 90.15 30.042 131.293 54.211 11.922 7.003 16.128 22.208 9.501 34.342-8.152 14.926-12.461 31.867-12.461 48.992 0 56.464 45.936 102.4 102.4 102.4 17.126 0 34.067-4.309 48.992-12.459 12.138-6.629 27.341-2.421 34.344 9.501 24.166 41.141 42.406 85.314 54.21 131.291 3.334 12.989-3.918 26.349-16.627 30.627-41.701 14.040-69.718 53.037-69.718 97.040s28.018 83 69.718 97.038c12.707 4.28 19.962 17.638 16.627 30.629-11.803 45.976-30.042 90.15-54.21 131.291-7.005 11.925-22.208 16.128-34.344 9.502-14.926-8.152-31.867-12.461-48.992-12.461-56.464 0-102.4 45.936-102.4 102.4 0 17.125 4.309 34.066 12.461 48.992 6.627 12.136 2.421 27.341-9.502 34.344-41.141 24.166-85.314 42.406-131.291 54.21-12.992 3.336-26.349-3.918-30.629-16.627-14.038-41.701-53.035-69.718-97.038-69.718s-83 28.018-97.040 69.718c-3.578 10.624-13.502 17.437-24.25 17.437zM512 870.4c57.715 0 109.693 32.138 135.917 82.029 26.637-8.218 52.507-18.875 77.299-31.846-5.541-16.077-8.416-33.075-8.416-50.182 0-84.696 68.904-153.6 153.6-153.6 17.107 0 34.106 2.875 50.181 8.418 12.971-24.792 23.63-50.662 31.846-77.299-49.89-26.226-82.027-78.203-82.027-135.918s32.138-109.691 82.029-135.918c-8.218-26.637-18.875-52.506-31.846-77.299-16.077 5.542-33.074 8.418-50.182 8.418-84.696 0-153.6-68.904-153.6-153.6 0-17.107 2.875-34.106 8.418-50.181-24.792-12.971-50.662-23.63-77.299-31.846-26.226 49.89-78.203 82.027-135.918 82.027s-109.691-32.138-135.917-82.027c-26.637 8.216-52.507 18.874-77.299 31.846 5.542 16.075 8.416 33.072 8.416 50.181 0 84.696-68.904 153.6-153.6 153.6-17.109 0-34.106-2.874-50.181-8.418-12.973 24.794-23.63 50.662-31.846 77.299 49.89 26.227 82.027 78.203 82.027 135.918s-32.138 109.693-82.027 135.917c8.216 26.637 18.875 52.507 31.846 77.299 16.075-5.541 33.074-8.416 50.181-8.416 84.696 0 153.6 68.904 153.6 153.6 0 17.109-2.875 34.106-8.418 50.181 24.794 12.971 50.662 23.63 77.299 31.846 26.227-49.89 78.203-82.027 135.918-82.027z","M512 665.6c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM512 409.6c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4c56.464 0 102.4-45.936 102.4-102.4s-45.936-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":58929,"grid":20},"attrs":[],"properties":{"name":"cog","prevSize":20,"code":58994,"ligatures":"cog, gear","order":3,"id":115},"setIdx":2,"setId":0,"iconIdx":114},{"icon":{"paths":["M682.187 993.366c-3.794 0-7.579-0.843-11.069-2.517-6.277-3.010-11.056-8.445-13.238-15.054-20.821-63.040-79.445-105.395-145.88-105.395s-125.059 42.355-145.878 105.394c-2.182 6.61-6.963 12.045-13.238 15.054-6.275 3.011-13.507 3.334-20.029 0.899-53.342-19.928-102.701-48.461-146.707-84.81-5.363-4.43-8.691-10.85-9.222-17.784-0.531-6.936 1.784-13.787 6.41-18.981 44.136-49.546 51.482-121.469 18.282-178.973-27.357-47.384-78.389-76.821-133.179-76.821-10.4 0-20.822 1.067-30.978 3.17-6.822 1.419-13.92-0.011-19.664-3.95-5.744-3.936-9.637-10.042-10.782-16.91-4.653-27.944-7.013-56.438-7.013-84.688s2.36-56.742 7.014-84.688c1.144-6.869 5.037-12.976 10.781-16.912 5.746-3.936 12.846-5.362 19.664-3.95 10.157 2.104 20.579 3.171 30.978 3.17 54.792-0.002 105.824-29.437 133.181-76.819 33.2-57.504 25.853-129.427-18.282-178.973-4.627-5.194-6.941-12.046-6.41-18.981s3.861-13.355 9.224-17.784c44.005-36.347 93.365-64.882 146.704-84.808 6.522-2.435 13.752-2.112 20.029 0.899 6.275 3.010 11.056 8.445 13.238 15.054 20.819 63.037 79.443 105.392 145.878 105.392s125.059-42.355 145.88-105.394c2.182-6.61 6.963-12.045 13.238-15.054 6.274-3.013 13.506-3.334 20.029-0.899 53.341 19.928 102.699 48.462 146.704 84.81 5.363 4.429 8.693 10.85 9.222 17.784 0.531 6.934-1.782 13.787-6.41 18.981-44.134 49.544-51.482 121.469-18.282 178.973 27.358 47.387 78.389 76.822 133.179 76.819 10.403 0 20.826-1.067 30.979-3.17 6.816-1.411 13.918 0.014 19.664 3.95 5.744 3.936 9.637 10.043 10.781 16.914 4.654 27.95 7.014 56.443 7.014 84.686s-2.36 56.738-7.013 84.688c-1.144 6.869-5.037 12.976-10.781 16.912-5.746 3.936-12.842 5.368-19.664 3.95-10.157-2.102-20.578-3.17-30.978-3.17-54.79 0-105.824 29.435-133.181 76.821-33.2 57.504-25.853 129.429 18.282 178.971 4.627 5.194 6.941 12.045 6.41 18.981-0.53 6.934-3.859 13.355-9.222 17.784-44.003 36.347-93.363 64.882-146.704 84.81-2.898 1.082-5.931 1.619-8.962 1.619zM238.301 882.749c27.83 20.587 57.77 37.901 89.442 51.718 33.874-69.912 104.886-115.267 184.258-115.267s150.382 45.355 184.258 115.267c31.674-13.819 61.613-31.131 89.442-51.718-43.574-64.286-47.328-148.437-7.658-217.149 36.475-63.174 104.498-102.421 177.522-102.421 4.781 0 9.566 0.168 14.339 0.506 1.926-17.186 2.898-34.486 2.898-51.685s-0.971-34.499-2.898-51.686c-4.773 0.336-9.558 0.506-14.339 0.506-73.024 0.003-141.046-39.242-177.522-102.419-39.67-68.71-35.917-152.864 7.656-217.149-27.83-20.587-57.768-37.901-89.44-51.718-33.875 69.912-104.886 115.267-184.258 115.267s-150.384-45.355-184.258-115.267c-31.672 13.819-61.611 31.131-89.442 51.718 43.574 64.286 47.326 148.438 7.658 217.149-36.474 63.173-104.496 102.418-177.52 102.419-4.781 0-9.566-0.168-14.341-0.504-1.926 17.182-2.898 34.485-2.898 51.685s0.971 34.502 2.898 51.686c4.773-0.336 9.558-0.506 14.339-0.506 73.024 0 141.046 39.245 177.52 102.421 39.67 68.709 35.917 152.861-7.656 217.147z","M512 665.6c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM512 409.6c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4c56.464 0 102.4-45.936 102.4-102.4s-45.936-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":58930,"grid":20},"attrs":[],"properties":{"name":"cog2","prevSize":20,"code":58995,"ligatures":"cog2, gear2","order":4,"id":116},"setIdx":2,"setId":0,"iconIdx":115},{"icon":{"paths":["M914.101 289.099l-230.4-230.4c-4.8-4.802-11.312-7.499-18.101-7.499h-486.4c-42.347 0-76.8 34.453-76.8 76.8v819.2c0 42.349 34.453 76.8 76.8 76.8h665.6c42.349 0 76.8-34.451 76.8-76.8v-640c0-6.79-2.698-13.301-7.499-18.101zM859.797 307.2h-168.597c-14.115 0-25.6-11.485-25.6-25.6v-168.597l194.197 194.197zM844.8 972.8h-665.6c-14.115 0-25.6-11.485-25.6-25.6v-819.2c0-14.115 11.485-25.6 25.6-25.6h435.2v179.2c0 42.347 34.451 76.8 76.8 76.8h179.2v588.8c0 14.115-11.485 25.6-25.6 25.6z","M588.8 665.6h-128v-128c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.461-25.6 25.6v128h-128c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h128v128c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-128h128c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["file-add","file"],"defaultCode":59058,"grid":20},"attrs":[{},{}],"properties":{"name":"file-add","prevSize":20,"code":59060,"ligatures":"file-add, file2","order":14,"id":181},"setIdx":2,"setId":0,"iconIdx":180},{"icon":{"paths":["M844.8 204.8h-25.6v-25.6c0-42.347-34.451-76.8-76.8-76.8h-25.6v-25.6c0-42.347-34.451-76.8-76.8-76.8h-384c-6.79 0-13.301 2.698-18.101 7.499l-179.2 179.2c-4.802 4.8-7.499 11.312-7.499 18.101v537.6c0 42.349 34.453 76.8 76.8 76.8h25.6v25.6c0 42.349 34.453 76.8 76.8 76.8h25.6v25.6c0 42.349 34.453 76.8 76.8 76.8h512c42.349 0 76.8-34.451 76.8-76.8v-665.6c0-42.347-34.451-76.8-76.8-76.8zM256 61.803v117.397c0 14.115-11.485 25.6-25.6 25.6h-117.397l142.997-142.997zM102.4 742.4v-486.4h128c42.347 0 76.8-34.453 76.8-76.8v-128h332.8c14.115 0 25.6 11.485 25.6 25.6v665.6c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6zM204.8 844.8v-25.6h435.2c42.349 0 76.8-34.451 76.8-76.8v-588.8h25.6c14.115 0 25.6 11.485 25.6 25.6v665.6c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6zM870.4 947.2c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6v-25.6h435.2c42.349 0 76.8-34.451 76.8-76.8v-588.8h25.6c14.115 0 25.6 11.485 25.6 25.6v665.6z"],"attrs":[{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0}]},"tags":["files","stack"],"defaultCode":59061,"grid":20},"attrs":[{}],"properties":{"name":"files","prevSize":20,"code":59063,"ligatures":"files, stack","order":25,"id":184},"setIdx":2,"setId":0,"iconIdx":183},{"icon":{"paths":["M947.2 102.4h-742.4c-6.79 0-13.301 2.698-18.101 7.499l-179.2 179.2c-4.802 4.8-7.499 11.31-7.499 18.101v537.6c0 42.349 34.453 76.8 76.8 76.8h870.4c42.349 0 76.8-34.451 76.8-76.8v-665.6c0-42.347-34.451-76.8-76.8-76.8zM204.8 164.203v117.397c0 14.115-11.485 25.6-25.6 25.6h-117.397l142.997-142.997zM972.8 844.8c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6v-102.4c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.461-25.6 25.6v102.4c0 8.974 1.562 17.587 4.403 25.6h-286.003c-14.115 0-25.6-11.485-25.6-25.6v-486.4h128c42.347 0 76.8-34.453 76.8-76.8v-128h245.397l-135.499 135.499c-4.802 4.8-7.499 11.312-7.499 18.101v230.4c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-179.2h128c42.347 0 76.8-34.453 76.8-76.8v-128h332.8c14.115 0 25.6 11.485 25.6 25.6v665.6zM563.2 164.203v117.397c0 14.115-11.485 25.6-25.6 25.6h-117.397l142.997-142.997z","M786.101 621.899l-102.4-102.4c-9.997-9.997-26.206-9.997-36.203 0-9.998 9.997-9.998 26.206 0 36.203l58.698 58.698h-490.792l58.699-58.699c9.997-9.997 9.997-26.206 0-36.203s-26.206-9.997-36.205 0l-102.4 102.4c-9.997 9.997-9.997 26.206 0 36.203l102.4 102.4c5 5 11.55 7.499 18.102 7.499s13.102-2.499 18.102-7.499c9.997-9.997 9.997-26.206 0-36.203l-58.699-58.698h490.792l-58.698 58.699c-9.998 9.997-9.998 26.206 0 36.203 5 4.998 11.55 7.498 18.102 7.498s13.102-2.499 18.101-7.499l102.4-102.4c9.998-9.997 9.998-26.205 0-36.202z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["compare","diff","files"],"defaultCode":59063,"grid":20},"attrs":[{},{}],"properties":{"name":"compare","prevSize":20,"code":59065,"ligatures":"compare, diff","order":21,"id":186},"setIdx":2,"setId":0,"iconIdx":185},{"icon":{"paths":["M947.2 921.6h-870.4c-42.347 0-76.8-34.451-76.8-76.8v-537.6c0-18.040 6.085-43.813 14.154-59.947l28.301-56.603c10.558-21.122 36.33-37.050 59.946-37.050h358.4c23.611 0 49.382 15.926 59.947 37.045l28.302 56.61c1.962 3.923 9.765 8.746 14.15 8.746h384c42.349 0 76.8 34.453 76.8 76.8v512c0 42.349-34.451 76.8-76.8 76.8zM102.4 204.8c-4.387 0-12.189 4.821-14.149 8.744l-28.302 56.606c-4.498 8.992-8.749 26.997-8.749 37.050v537.6c0 14.115 11.485 25.6 25.6 25.6h870.4c14.115 0 25.6-11.485 25.6-25.6v-512c0-14.115-11.485-25.6-25.6-25.6h-384c-23.614 0-49.384-15.928-59.946-37.050l-28.301-56.605c-1.962-3.92-9.766-8.746-14.154-8.746h-358.4z","M660.48 727.040l-78.403-104.538c20.088-22.611 32.323-52.347 32.323-84.902 0-70.579-57.421-128-128-128s-128 57.421-128 128 57.421 128 128 128c19.582 0 38.144-4.434 54.754-12.328l78.366 104.488c5.030 6.706 12.715 10.242 20.499 10.242 5.344 0 10.734-1.669 15.339-5.122 11.312-8.483 13.605-24.53 5.122-35.84zM409.6 537.6c0-42.347 34.453-76.8 76.8-76.8s76.8 34.453 76.8 76.8-34.453 76.8-76.8 76.8c-42.347 0-76.8-34.453-76.8-76.8z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["folder-search","folder","directory","lookup","browse"],"defaultCode":59065,"grid":20},"attrs":[{},{}],"properties":{"name":"folder-search","prevSize":20,"code":59067,"ligatures":"folder-search, folder2","order":19,"id":188},"setIdx":2,"setId":0,"iconIdx":187},{"icon":{"paths":["M888.501 161.099l-153.6-153.6c-9.997-9.998-26.206-9.998-36.203 0-9.998 9.997-9.998 26.206 0 36.203l109.899 109.898h-680.597c-42.347 0-76.8 34.453-76.8 76.8v460.8c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-460.8c0-14.115 11.485-25.6 25.6-25.6h680.597l-109.899 109.899c-9.998 9.997-9.998 26.206 0 36.203 5 4.998 11.55 7.498 18.102 7.498s13.102-2.499 18.101-7.499l153.6-153.6c9.998-9.997 9.998-26.205 0-36.202z","M896 307.2c-14.139 0-25.6 11.462-25.6 25.6v460.8c0 14.115-11.485 25.6-25.6 25.6h-680.597l109.898-109.899c9.998-9.997 9.998-26.206 0-36.203-9.997-9.997-26.206-9.997-36.203 0l-153.6 153.6c-9.998 9.997-9.998 26.206 0 36.203l153.6 153.6c5 5 11.55 7.499 18.102 7.499s13.102-2.499 18.101-7.499c9.998-9.997 9.998-26.206 0-36.203l-109.898-109.898h680.597c42.349 0 76.8-34.451 76.8-76.8v-460.8c0-14.138-11.461-25.6-25.6-25.6z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["repeat","loop"],"defaultCode":59118,"grid":20},"attrs":[{},{}],"properties":{"name":"repeat","prevSize":20,"code":59118,"ligatures":"repeat, loop2","order":22,"id":239},"setIdx":2,"setId":0,"iconIdx":238},{"icon":{"paths":["M128 1024c-14.138 0-25.6-11.461-25.6-25.6v-409.6c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v409.6c0 14.139-11.462 25.6-25.6 25.6z","M128 307.2c-14.138 0-25.6-11.462-25.6-25.6v-256c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v256c0 14.138-11.462 25.6-25.6 25.6z","M179.2 512h-102.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8s-34.453 76.8-76.8 76.8zM76.8 409.6c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6s-11.485-25.6-25.6-25.6h-102.4z","M486.4 1024c-14.138 0-25.6-11.461-25.6-25.6v-204.8c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v204.8c0 14.139-11.462 25.6-25.6 25.6z","M486.4 512c-14.138 0-25.6-11.462-25.6-25.6v-460.8c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v460.8c0 14.138-11.462 25.6-25.6 25.6z","M537.6 716.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8s-34.453 76.8-76.8 76.8zM435.2 614.4c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6s-11.485-25.6-25.6-25.6h-102.4z","M844.8 1024c-14.139 0-25.6-11.461-25.6-25.6v-512c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v512c0 14.139-11.461 25.6-25.6 25.6z","M844.8 204.8c-14.139 0-25.6-11.462-25.6-25.6v-153.6c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v153.6c0 14.138-11.461 25.6-25.6 25.6z","M896 409.6h-102.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8s-34.453 76.8-76.8 76.8zM793.6 307.2c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6s-11.485-25.6-25.6-25.6h-102.4z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0}]},"tags":["equalizer","settings","options","preferences"],"defaultCode":59122,"grid":20},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"name":"equalizer","prevSize":20,"code":59122,"ligatures":"equalizer, settings","order":9,"id":243},"setIdx":2,"setId":0,"iconIdx":242},{"icon":{"paths":["M947.2 0h-921.6c-14.138 0-25.6 11.462-25.6 25.6v768c0 14.139 11.462 25.6 25.6 25.6h398.997l-161.099 161.099c-9.997 9.997-9.997 26.206 0 36.203 5 4.998 11.55 7.498 18.102 7.498s13.102-2.499 18.102-7.499l161.098-161.096v142.995c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-142.997l161.099 161.099c4.998 4.998 11.549 7.498 18.101 7.498s13.102-2.499 18.101-7.499c9.998-9.997 9.998-26.206 0-36.203l-161.098-161.098h398.997c14.139 0 25.6-11.461 25.6-25.6v-768c0-14.138-11.461-25.6-25.6-25.6zM51.2 51.2h870.4v614.4h-870.4v-614.4zM921.6 768h-870.4v-51.2h870.4v51.2z","M654.682 337.427l-256-179.2c-7.822-5.475-18.037-6.142-26.502-1.734s-13.779 13.162-13.779 22.707v358.4c0 9.546 5.31 18.299 13.778 22.706 3.72 1.938 7.778 2.894 11.821 2.894 5.16 0 10.299-1.558 14.683-4.629l256-179.2c6.842-4.789 10.918-12.618 10.918-20.971s-4.077-16.182-10.918-20.973zM409.6 488.432v-260.064l185.76 130.032-185.76 130.032z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["presentation","board","play"],"defaultCode":58986,"grid":20},"attrs":[],"properties":{"name":"presentation","prevSize":20,"code":59126,"ligatures":"presentation, board","order":28,"id":247},"setIdx":2,"setId":0,"iconIdx":246},{"icon":{"paths":["M947.2 921.6h-563.2c-42.347 0-76.8-34.453-76.8-76.8 0-2.461 0.538-60.952 47.331-118.544 26.883-33.088 63.541-59.31 108.952-77.941 54.856-22.504 122.858-33.915 202.117-33.915s147.261 11.411 202.117 33.915c45.411 18.63 82.067 44.853 108.952 77.941 46.794 57.592 47.331 116.083 47.331 118.544 0 42.347-34.453 76.8-76.8 76.8zM358.4 844.931c0.072 14.056 11.528 25.469 25.6 25.469h563.2c14.072 0 25.528-11.413 25.6-25.469-0.048-1.786-1.656-45.802-37.851-88.786-49.88-59.235-143.019-90.546-269.349-90.546s-219.469 31.31-269.349 90.546c-36.194 42.984-37.803 87-37.851 88.786z","M665.6 563.2c-112.926 0-204.8-91.874-204.8-204.8 0-112.928 91.874-204.8 204.8-204.8s204.8 91.872 204.8 204.8c0 112.926-91.874 204.8-204.8 204.8zM665.6 204.8c-84.696 0-153.6 68.904-153.6 153.6s68.904 153.6 153.6 153.6 153.6-68.904 153.6-153.6-68.904-153.6-153.6-153.6z","M230.4 921.6h-153.6c-42.347 0-76.8-34.451-76.8-76.8 0-1.915 0.386-47.446 33.92-92.16 19.373-25.832 45.778-46.299 78.483-60.834 39.126-17.389 87.438-26.206 143.597-26.206 9.16 0 18.232 0.235 26.962 0.701 14.118 0.754 24.954 12.81 24.2 26.928-0.752 14.117-12.781 24.96-26.928 24.2-7.826-0.418-15.979-0.629-24.234-0.629-199.366 0-204.666 121.826-204.8 128.131 0.072 14.054 11.528 25.469 25.6 25.469h153.6c14.138 0 25.6 11.461 25.6 25.6s-11.462 25.6-25.6 25.6z","M256 614.4c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM256 358.4c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4 102.4-45.936 102.4-102.4c0-56.464-45.936-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["users","group","team","people"],"defaultCode":59002,"grid":20},"attrs":[],"properties":{"name":"users2","prevSize":20,"code":59171,"ligatures":"users2, group2","order":42,"id":292},"setIdx":2,"setId":0,"iconIdx":291},{"icon":{"paths":["M691.2 563.2c-42.349 0-76.8-34.451-76.8-76.8 0-42.347 34.451-76.8 76.8-76.8s76.8 34.453 76.8 76.8c0 42.349-34.451 76.8-76.8 76.8zM691.2 460.8c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6 25.6-11.485 25.6-25.6-11.485-25.6-25.6-25.6z","M332.8 563.2c-42.347 0-76.8-34.24-76.8-76.326s34.453-76.326 76.8-76.326 76.8 34.24 76.8 76.326c0 42.086-34.453 76.326-76.8 76.326zM332.8 461.747c-14.115 0-25.6 11.272-25.6 25.126s11.485 25.126 25.6 25.126 25.6-11.272 25.6-25.126-11.485-25.126-25.6-25.126z","M943.080 400.128c-32.251-85.298-88.523-158.419-163.122-211.835-78.474-56.192-171.133-85.893-267.958-85.893s-189.483 29.701-267.958 85.893c-74.598 53.416-130.87 126.539-163.122 211.835-50.818 38.656-80.92 99.008-80.92 163.072 0 64.066 30.098 124.414 80.92 163.072 32.251 85.298 88.525 158.421 163.123 211.835 78.474 56.192 171.131 85.893 267.957 85.893s189.485-29.701 267.958-85.893c74.598-53.416 130.87-126.539 163.123-211.835 50.821-38.658 80.918-99.006 80.918-163.072 0-64.064-30.101-124.416-80.92-163.072zM907.069 689.178c-4.346 3.037-7.64 7.349-9.432 12.339-58.206 162.262-213.182 271.283-385.637 271.283s-327.43-109.021-385.637-271.283c-1.79-4.99-5.086-9.301-9.432-12.339-41.158-28.766-65.731-75.862-65.731-125.978 0-50.118 24.571-97.213 65.731-125.979 4.346-3.037 7.642-7.349 9.432-12.338 52.603-146.638 184.238-249.784 336.381-268.29 58.43 12.786 100.456 64.739 100.456 125.006 0 14.115-11.485 25.6-25.6 25.6s-25.6-11.485-25.6-25.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 42.347 34.453 76.8 76.8 76.8s76.8-34.453 76.8-76.8c0-47.957-19.032-92.149-50.474-124.666 151.011 19.382 281.418 122.168 333.71 267.947 1.79 4.99 5.086 9.302 9.432 12.339 41.16 28.766 65.731 75.861 65.731 125.979 0 50.115-24.571 97.211-65.731 125.978z","M512 819.2c-85.611 0-165.19-42.525-212.874-113.757-7.866-11.749-4.717-27.648 7.034-35.514 11.749-7.864 27.65-4.715 35.514 7.034 38.16 57.003 101.834 91.037 170.326 91.037 68.498 0 132.17-34.034 170.33-91.040 7.864-11.749 23.763-14.899 35.514-7.034 11.749 7.864 14.899 23.765 7.034 35.514-47.68 71.234-127.261 113.76-212.877 113.76z"],"attrs":[{},{},{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0},{"f":0},{"f":0}]},"tags":["baby","boy","male","human"],"defaultCode":59178,"grid":20},"attrs":[{},{},{},{}],"properties":{"name":"baby2","prevSize":20,"code":59178,"ligatures":"baby2, boy","order":47,"id":299},"setIdx":2,"setId":0,"iconIdx":298},{"icon":{"paths":["M361.742 428.669c35.702-29.008 86.141-51.075 134.918-72.414 51.909-22.71 105.584-46.194 146.683-79.586 49.427-40.162 73.456-88.792 73.456-148.669v-51.2c0-14.138-11.461-25.6-25.6-25.6s-25.6 11.462-25.6 25.6v51.2c0 6.235-0.36 12.275-1.061 18.147l-376.738-94.158c-1.989-0.496-4.059-0.789-6.202-0.789-14.138 0-25.6 11.462-25.6 25.6v51.2c0 96.826 64.016 146.555 112.168 175.538 4.131 2.486 8.683 3.67 13.178 3.67 8.683 0 17.154-4.421 21.958-12.402 7.291-12.114 3.382-27.843-8.733-35.134-61.242-36.862-87.371-76.242-87.371-131.672v-18.411l341.154 85.288c-8.861 15.109-21.219 28.992-37.298 42.054-35.701 29.008-86.139 51.075-134.917 72.414-51.909 22.71-105.584 46.194-146.682 79.586-49.429 40.162-73.458 88.792-73.458 148.669 0 96.824 64.011 146.552 112.158 175.533 4.131 2.488 8.683 3.67 13.178 3.67 8.683 0 17.154-4.419 21.957-12.402 7.291-12.112 3.382-27.843-8.731-35.134-61.234-36.859-87.362-76.237-87.362-131.667 0-6.234 0.36-12.27 1.059-18.139l340.094 85.018c-8.861 15.107-21.219 28.99-37.298 42.053-35.701 29.008-86.139 51.075-134.917 72.416-51.909 22.709-105.584 46.192-146.682 79.584-49.429 40.162-73.458 88.79-73.458 148.669v51.2c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-51.2c0-6.235 0.36-12.275 1.061-18.147l376.738 94.157c1.987 0.498 4.058 0.79 6.202 0.79 14.139 0 25.6-11.461 25.6-25.6v-51.2c0-96.826-64.014-146.554-112.165-175.534-12.114-7.294-27.845-3.382-35.134 8.731-7.293 12.114-3.382 27.843 8.731 35.134 61.24 36.859 87.368 76.237 87.368 131.669v18.413l-341.155-85.29c8.861-15.107 21.221-28.992 37.298-42.054 35.702-29.008 86.141-51.075 134.918-72.416 51.909-22.709 105.584-46.192 146.683-79.584 49.427-40.162 73.456-88.79 73.456-148.669 0-96.826-64.014-146.554-112.165-175.534-12.114-7.293-27.845-3.381-35.134 8.733-7.293 12.114-3.382 27.843 8.731 35.134 61.24 36.859 87.368 76.235 87.368 131.667 0 6.235-0.36 12.277-1.061 18.149l-340.098-85.018c8.861-15.112 21.222-28.998 37.301-42.062z"],"attrs":[{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0}]},"tags":["dna","gene","genetics","biology"],"defaultCode":59367,"grid":20},"attrs":[{}],"properties":{"name":"dna","prevSize":20,"code":59367,"ligatures":"dna, gene","order":23,"id":488},"setIdx":2,"setId":0,"iconIdx":487},{"icon":{"paths":["M640 358.4c-14.139 0-25.6-11.462-25.6-25.6s11.461-25.6 25.6-25.6c14.115 0 25.6-11.485 25.6-25.6 0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 42.347-34.453 76.8-76.8 76.8z","M644.371 768.011c-10.546 0-20.421-6.565-24.136-17.074-3.87-10.952-5.835-22.438-5.835-34.138 0-56.464 45.936-102.4 102.4-102.4 11.699 0 23.186 1.965 34.138 5.835 13.331 4.712 20.315 19.339 15.603 32.669-4.714 13.33-19.346 20.317-32.669 15.603-5.458-1.93-11.202-2.907-17.072-2.907-28.232 0-51.2 22.968-51.2 51.2 0 5.87 0.978 11.614 2.907 17.072 4.712 13.33-2.272 27.957-15.603 32.669-2.819 0.997-5.701 1.47-8.533 1.47z","M972.8 537.6c0-125.902-39.125-245.808-113.144-347.061-19.077-56.602-62.358-103.118-119.782-125.437-27.84-39.357-73.706-65.102-125.474-65.102-53.368 0-100.459 27.365-128 68.795-27.539-41.43-74.632-68.795-128-68.795-51.768 0-97.634 25.746-125.474 65.101-57.426 22.318-100.706 68.835-119.782 125.437-74.021 101.254-113.144 221.16-113.144 347.062 0 33.55 2.88 67.15 8.496 99.981-5.616 25.512-8.496 52.053-8.496 79.219 0 81.11 26.021 157.584 73.269 215.333 48.47 59.24 113.366 91.867 182.731 91.867 13.475 0 26.973-1.264 40.21-3.762 11.816 2.462 24.054 3.762 36.59 3.762 65.11 0 122.218-34.909 153.6-86.99 31.382 52.082 88.49 86.99 153.6 86.99 12.536 0 24.773-1.299 36.59-3.762 13.237 2.498 26.734 3.762 40.21 3.762 69.366 0 134.261-32.627 182.731-91.867 47.248-57.749 73.269-134.222 73.269-215.333 0-27.166-2.88-53.707-8.496-79.219 5.616-32.829 8.496-66.429 8.496-99.981zM332.8 972.8c-70.579 0-128-57.421-128-128 0-14.139-11.462-25.6-25.6-25.6s-25.6 11.461-25.6 25.6c0 44.83 16.547 85.866 43.854 117.325-84.488-31.562-146.254-129.587-146.254-245.325 0-59.299 16.667-117.138 46.931-162.859 7.803-11.789 4.573-27.674-7.218-35.477-11.789-7.806-27.672-4.573-35.477 7.218-1.424 2.152-2.813 4.328-4.184 6.514 0.8-82.074 19.802-161.253 55.642-233.307 7.995 37.645 26.485 72.339 54.010 100.434 5.013 5.117 11.648 7.685 18.288 7.685 6.464 0 12.933-2.434 17.914-7.314 10.099-9.894 10.266-26.102 0.37-36.202-28.293-28.88-43.875-67.054-43.875-107.491 0-44.954 19.518-86.454 51.72-115.006-0.339 4.158-0.52 8.362-0.52 12.606 0 10.326 1.034 20.654 3.072 30.696 2.466 12.138 13.138 20.51 25.062 20.51 1.688 0 3.402-0.168 5.122-0.517 13.856-2.814 22.806-16.326 19.994-30.182-1.36-6.696-2.050-13.595-2.050-20.507 0-56.464 45.936-102.4 102.4-102.4s102.4 45.936 102.4 102.4v346.419c-27.195-24.373-63.094-39.219-102.4-39.219-10.405 0-20.811 1.050-30.928 3.12-13.851 2.835-22.782 16.363-19.947 30.213s16.358 22.784 30.213 19.947c6.747-1.379 13.698-2.080 20.662-2.080 56.464 0 102.4 45.936 102.4 102.4v230.4c0 70.579-57.421 128-128 128zM775.346 962.123c27.306-31.458 43.854-72.493 43.854-117.323 0-14.139-11.461-25.6-25.6-25.6s-25.6 11.461-25.6 25.6c0 70.579-57.421 128-128 128s-128-57.421-128-128v-230.4c0-56.464 45.936-102.4 102.4-102.4 6.965 0 13.915 0.701 20.662 2.082 13.846 2.834 27.378-6.098 30.213-19.947 2.835-13.851-6.096-27.378-19.947-30.213-10.117-2.070-20.523-3.12-30.928-3.12-39.306 0-75.205 14.846-102.4 39.219v-346.421c0-56.464 45.936-102.4 102.4-102.4s102.4 45.936 102.4 102.4c0 6.912-0.69 13.811-2.048 20.506-2.814 13.856 6.138 27.368 19.994 30.182 1.718 0.349 3.432 0.517 5.12 0.517 11.922 0 22.597-8.374 25.061-20.51 2.040-10.040 3.074-20.368 3.074-30.694 0-4.245-0.181-8.448-0.52-12.606 32.202 28.552 51.72 70.053 51.72 115.006 0 40.437-15.582 78.611-43.877 107.491-9.896 10.099-9.73 26.307 0.37 36.202 4.982 4.882 11.45 7.314 17.914 7.314 6.638 0 13.275-2.566 18.288-7.685 27.526-28.094 46.016-62.789 54.010-100.434 35.838 72.054 54.842 151.234 55.642 233.307-1.371-2.186-2.76-4.363-4.184-6.514-7.803-11.79-23.686-15.019-35.477-7.218-11.79 7.803-15.022 23.688-7.218 35.477 30.266 45.722 46.933 103.56 46.933 162.859 0 115.736-61.766 213.763-146.254 245.323z","M332.8 358.4c-42.347 0-76.8-34.453-76.8-76.8 0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 14.115 11.485 25.6 25.6 25.6 14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6z","M328.429 768.011c-2.832 0-5.71-0.472-8.533-1.47-13.33-4.712-20.315-19.339-15.602-32.669 1.93-5.458 2.907-11.202 2.907-17.072 0-28.232-22.968-51.2-51.2-51.2-5.87 0-11.614 0.978-17.070 2.907-13.33 4.712-27.955-2.272-32.669-15.603-4.712-13.33 2.272-27.957 15.602-32.669 10.95-3.87 22.437-5.835 34.136-5.835 56.464 0 102.4 45.936 102.4 102.4 0 11.699-1.963 23.186-5.835 34.138-3.715 10.507-13.594 17.074-24.136 17.074z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0}]},"tags":["brain","mind","psychology","think","idea","head"],"defaultCode":59378,"grid":20},"attrs":[{},{},{},{},{}],"properties":{"name":"brain","prevSize":20,"code":59378,"ligatures":"brain, mind","order":29,"id":499},"setIdx":2,"setId":0,"iconIdx":498},{"icon":{"paths":["M844.8 972.8c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM844.8 768c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z","M486.4 972.8c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM486.4 768c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8c42.347 0 76.8-34.453 76.8-76.8s-34.453-76.8-76.8-76.8z","M128 972.8c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM128 768c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z","M844.8 614.4c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM844.8 409.6c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8c0-42.347-34.453-76.8-76.8-76.8z","M486.4 614.4c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM486.4 409.6c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8c42.347 0 76.8-34.453 76.8-76.8s-34.453-76.8-76.8-76.8z","M128 614.4c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM128 409.6c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8c0-42.347-34.453-76.8-76.8-76.8z","M844.8 256c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM844.8 51.2c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z","M486.4 256c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM486.4 51.2c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8c42.347 0 76.8-34.453 76.8-76.8s-34.453-76.8-76.8-76.8z","M128 256c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM128 51.2c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["icons","grid","circles","apps"],"defaultCode":59125,"grid":20},"attrs":[],"properties":{"name":"icons","prevSize":20,"code":59518,"ligatures":"icons, grid","order":31,"id":639},"setIdx":2,"setId":0,"iconIdx":638},{"icon":{"paths":["M179.2 972.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM76.8 768c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M537.6 972.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM435.2 768c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M896 972.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM793.6 768c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M179.2 614.4h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM76.8 409.6c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M537.6 614.4h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM435.2 409.6c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M896 614.4h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM793.6 409.6c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M179.2 256h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM76.8 51.2c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M537.6 256h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM435.2 51.2c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M896 256h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM793.6 51.2c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["icons","grid","apps"],"defaultCode":59126,"grid":20},"attrs":[],"properties":{"name":"icons2","prevSize":20,"code":59520,"ligatures":"icons2, grid2","order":32,"id":641},"setIdx":2,"setId":0,"iconIdx":640},{"icon":{"paths":["M870.4 668.174v-79.374c0-42.349-34.451-76.8-76.8-76.8h-281.6v-104.976c58.355-11.893 102.4-63.61 102.4-125.424 0-70.579-57.421-128-128-128s-128 57.421-128 128c0 61.814 44.045 113.531 102.4 125.424v104.976h-281.6c-42.347 0-76.8 34.451-76.8 76.8v79.374c-58.355 11.894-102.4 63.611-102.4 125.426 0 70.579 57.421 128 128 128s128-57.421 128-128c0-61.814-44.045-113.531-102.4-125.426v-79.374c0-14.115 11.485-25.6 25.6-25.6h281.6v104.974c-58.355 11.894-102.4 63.611-102.4 125.426 0 70.579 57.421 128 128 128s128-57.421 128-128c0-61.814-44.045-113.531-102.4-125.426v-104.974h281.6c14.115 0 25.6 11.485 25.6 25.6v79.374c-58.355 11.894-102.4 63.611-102.4 125.426 0 70.579 57.421 128 128 128s128-57.421 128-128c0-61.814-44.045-113.531-102.4-125.426zM409.6 281.6c0-42.347 34.453-76.8 76.8-76.8s76.8 34.453 76.8 76.8-34.453 76.8-76.8 76.8c-42.347 0-76.8-34.453-76.8-76.8zM204.8 793.6c0 42.347-34.453 76.8-76.8 76.8s-76.8-34.453-76.8-76.8 34.453-76.8 76.8-76.8 76.8 34.453 76.8 76.8zM563.2 793.6c0 42.347-34.453 76.8-76.8 76.8s-76.8-34.453-76.8-76.8 34.453-76.8 76.8-76.8c42.347 0 76.8 34.453 76.8 76.8zM844.8 870.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8 76.8 34.453 76.8 76.8-34.453 76.8-76.8 76.8z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["site-map","tree"],"defaultCode":59127,"grid":20},"attrs":[],"properties":{"name":"site-map","prevSize":20,"code":59523,"ligatures":"site-map, tree2","order":33,"id":644},"setIdx":2,"setId":0,"iconIdx":643},{"icon":{"paths":["M819.2 179.2v-25.6c0-20.061-12.354-37.533-36.715-51.933-17.598-10.402-42.042-19.557-72.651-27.21-59.995-14.997-139.344-23.258-223.434-23.258-84.088 0-163.438 8.261-223.432 23.259-30.61 7.653-55.053 16.806-72.653 27.21-24.362 14.398-36.715 31.87-36.715 51.931v25.6c0 134.691 81.574 255.944 204.795 307.288v102.222c-123.221 51.346-204.795 172.598-204.795 307.29v25.6c0 20.059 12.354 37.533 36.715 51.933 17.6 10.402 42.043 19.557 72.653 27.21 59.994 14.998 139.344 23.258 223.432 23.258 84.090 0 163.438-8.259 223.434-23.258 30.61-7.653 55.053-16.808 72.651-27.21 24.362-14.4 36.715-31.874 36.715-51.933v-25.6c0-134.691-81.573-255.944-204.794-307.29v-102.222c123.221-51.344 204.794-172.597 204.794-307.288zM287.322 121.309c54.56-12.194 125.261-18.909 199.078-18.909 73.819 0 144.52 6.715 199.080 18.909 58.867 13.157 76.701 27.336 81.366 32.291-4.666 4.955-22.499 19.134-81.366 32.291-54.56 12.194-125.261 18.909-199.080 18.909-73.818 0-144.518-6.715-199.078-18.909-58.869-13.157-76.702-27.336-81.37-32.291 4.667-4.955 22.501-19.134 81.37-32.291zM580.275 630.418c112.285 39.69 187.725 146.419 187.725 265.582v24.238c-2.141 2.909-16.598 18.92-82.52 33.653-54.56 12.194-125.261 18.909-199.080 18.909-73.818 0-144.52-6.715-199.078-18.907-65.915-14.731-80.378-30.741-82.522-33.653v-24.24c0-119.163 75.442-225.893 187.726-265.582 10.229-3.616 17.067-13.286 17.067-24.136v-137.363c0-10.85-6.838-20.522-17.069-24.136-101.195-35.768-172.453-125.992-185.544-230.693 15.342 6.923 34.075 13.174 55.986 18.653 59.995 14.997 139.346 23.258 223.434 23.258 84.090 0 163.438-8.261 223.434-23.259 21.91-5.477 40.642-11.73 55.986-18.653-13.093 104.699-84.35 194.923-185.544 230.693-10.23 3.616-17.069 13.288-17.069 24.136v137.363c0 10.851 6.838 20.522 17.069 24.138z","M699.734 846.264c-115.798-40.933-187.734-139.586-187.734-257.464v-154.872c30.741-3.022 60.315-11.496 88.202-25.355 12.661-6.293 17.824-21.658 11.531-34.318s-21.658-17.826-34.318-11.531c-28.408 14.118-59.030 21.277-91.014 21.277s-62.605-7.158-91.013-21.278c-12.659-6.29-28.026-1.13-34.318 11.531s-1.13 28.026 11.531 34.318c27.885 13.859 57.461 22.333 88.2 25.355v154.874c0 117.878-71.936 216.531-187.734 257.464-10.762 3.803-17.706 14.272-17.022 25.666 0.682 11.394 8.826 20.96 19.963 23.453 50.294 11.254 126.824 26.218 210.394 26.218s160.099-14.963 210.394-26.218c11.139-2.494 19.282-12.059 19.965-23.453 0.68-11.394-6.261-21.862-17.024-25.666zM486.4 870.4c-44.885 0-87.093-4.464-124.762-10.478 34.070-21.573 63.706-48.766 87.586-80.626 15.019-20.035 27.45-41.557 37.174-64.211 9.726 22.654 22.155 44.174 37.174 64.211 23.88 31.858 53.515 59.051 87.586 80.626-37.666 6.014-79.874 10.478-124.758 10.478z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["hourglass","loading"],"defaultCode":59163,"grid":20},"attrs":[{},{}],"properties":{"name":"hourglass","prevSize":20,"code":59599,"ligatures":"hourglass, loading","order":24,"id":720},"setIdx":2,"setId":0,"iconIdx":719},{"icon":{"paths":["M1016.501 442.698c-9.997-9.997-26.206-9.997-36.203 0l-58.832 58.832c-2.63-105.486-44.947-204.27-119.835-279.16-77.362-77.365-180.222-119.97-289.63-119.97-152.28 0-291.122 83.699-362.342 218.435-6.606 12.499-1.83 27.989 10.669 34.597 12.498 6.606 27.989 1.83 34.597-10.669 62.33-117.914 183.826-191.163 317.077-191.163 194.014 0 352.501 154.966 358.224 347.619l-58.522-58.522c-9.997-9.997-26.206-9.997-36.203 0-9.998 9.998-9.998 26.206 0 36.205l102.4 102.4c4.998 4.998 11.549 7.498 18.101 7.498s13.102-2.499 18.101-7.499l102.4-102.4c9.998-9.997 9.998-26.205 0-36.203z","M863.674 668.566c-12.502-6.603-27.99-1.832-34.597 10.669-62.328 117.915-183.826 191.165-317.077 191.165-194.016 0-352.502-154.966-358.224-347.621l58.522 58.522c5 5 11.55 7.499 18.102 7.499s13.102-2.499 18.102-7.499c9.997-9.997 9.997-26.206 0-36.203l-102.4-102.4c-9.998-9.997-26.206-9.997-36.205 0l-102.4 102.4c-9.997 9.997-9.997 26.206 0 36.203 9.998 9.997 26.206 9.997 36.205 0l58.83-58.832c2.63 105.488 44.946 204.272 119.835 279.162 77.365 77.363 180.224 119.97 289.632 119.97 152.28 0 291.12-83.699 362.342-218.435 6.608-12.501 1.829-27.99-10.669-34.598z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["sync","spinner","loading","arrows"],"defaultCode":59169,"grid":20},"attrs":[{},{}],"properties":{"name":"sync","prevSize":20,"code":59610,"ligatures":"sync, spinner6","order":27,"id":731},"setIdx":2,"setId":0,"iconIdx":730},{"icon":{"paths":["M830.338 193.664c-91.869-91.869-214.016-142.464-343.938-142.464s-252.067 50.595-343.936 142.464c-91.869 91.869-142.464 214.014-142.464 343.936s50.595 252.069 142.464 343.938 214.014 142.462 343.936 142.462 252.069-50.594 343.938-142.462 142.462-214.016 142.462-343.938-50.594-252.067-142.462-343.936zM486.4 972.8c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2z","M774.614 371.2c-7.070-12.245-22.728-16.435-34.97-9.37l-251.92 145.445-196.342-137.482c-11.582-8.11-27.546-5.294-35.654 6.286s-5.294 27.544 6.286 35.654l209.702 146.835c0.051 0.035 0.106 0.066 0.158 0.101 0.429 0.296 0.866 0.574 1.31 0.843 0.118 0.072 0.237 0.147 0.357 0.216 0.446 0.259 0.901 0.502 1.363 0.734 0.11 0.056 0.219 0.118 0.33 0.171 0.518 0.251 1.046 0.485 1.581 0.701 0.315 0.126 0.634 0.234 0.95 0.35 0.234 0.085 0.467 0.17 0.702 0.246 0.346 0.112 0.691 0.213 1.038 0.309 0.219 0.062 0.438 0.122 0.659 0.178 0.347 0.088 0.696 0.166 1.045 0.238 0.237 0.048 0.477 0.093 0.715 0.136 0.331 0.058 0.661 0.115 0.992 0.16 0.299 0.042 0.6 0.072 0.901 0.101 0.274 0.029 0.546 0.061 0.819 0.080 0.594 0.040 1.189 0.066 1.786 0.066 0.971 0 1.944-0.062 2.917-0.174 0.024-0.003 0.050-0.005 0.074-0.006 0.946-0.112 1.888-0.285 2.824-0.502 0.069-0.018 0.139-0.032 0.208-0.048 0.883-0.214 1.758-0.48 2.626-0.794 0.128-0.045 0.253-0.094 0.379-0.142 0.813-0.307 1.619-0.653 2.41-1.051 0.162-0.080 0.317-0.17 0.477-0.254 0.286-0.15 0.576-0.294 0.859-0.458l266.043-153.6c12.248-7.069 16.443-22.725 9.374-34.97z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["clock","time"],"defaultCode":59177,"grid":20},"attrs":[],"properties":{"name":"clock3","prevSize":20,"code":59624,"ligatures":"clock3, time3","order":37,"id":745},"setIdx":2,"setId":0,"iconIdx":744},{"icon":{"paths":["M793.6 460.8h-34.562c-15.242-64.277-49.173-121.395-95.722-165.282l-38.478-174.243c-8.677-39.294-46.997-70.075-87.238-70.075h-204.8c-40.24 0-78.56 30.781-87.238 70.075l-38.478 174.242c-64.408 60.726-104.683 146.786-104.683 242.083 0 95.299 40.275 181.357 104.683 242.083l38.478 174.242c8.678 39.296 46.998 70.075 87.238 70.075h204.8c40.242 0 78.562-30.781 87.238-70.075l38.478-174.242c46.549-43.888 80.48-101.005 95.722-165.283h34.562c42.349 0 76.8-34.451 76.8-76.8 0-42.347-34.451-76.8-76.8-76.8zM295.557 132.315c3.458-15.656 21.21-29.915 37.243-29.915h204.8c16.034 0 33.786 14.259 37.242 29.915l25.741 116.563c-48.749-28.034-105.226-44.078-165.382-44.078s-116.635 16.045-165.384 44.078l25.741-116.563zM574.842 942.885c-3.456 15.656-21.208 29.915-37.242 29.915h-204.8c-16.034 0-33.786-14.259-37.243-29.915l-25.741-116.563c48.749 28.034 105.227 44.078 165.384 44.078s116.634-16.045 165.382-44.078l-25.741 116.563zM435.2 819.2c-155.275 0-281.6-126.325-281.6-281.6s126.325-281.6 281.6-281.6 281.6 126.325 281.6 281.6-126.325 281.6-281.6 281.6zM793.6 563.2h-26.574c0.645-8.45 0.974-16.987 0.974-25.6s-0.33-17.15-0.974-25.6h26.574c14.115 0 25.6 11.485 25.6 25.6s-11.485 25.6-25.6 25.6z","M435.198 563.2c-3.909 0-7.83-0.894-11.446-2.702l-102.4-51.2c-12.646-6.323-17.771-21.701-11.45-34.346 6.322-12.646 21.702-17.771 34.346-11.45l89.112 44.557 141.238-94.16c11.765-7.842 27.659-4.664 35.501 7.101 7.843 11.763 4.664 27.658-7.101 35.501l-153.6 102.4c-4.277 2.853-9.229 4.299-14.2 4.299z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["watch","time"],"defaultCode":59625,"grid":20},"attrs":[{},{}],"properties":{"name":"watch","prevSize":20,"code":59625,"ligatures":"watch, time4","order":39,"id":746},"setIdx":2,"setId":0,"iconIdx":745},{"icon":{"paths":["M794.134 281.067c-76.134-76.134-175.515-120.557-282.134-126.701v-51.966h25.6c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6h-102.4c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h25.6v51.966c-106.618 6.144-205.998 50.566-282.133 126.702-82.198 82.198-127.467 191.486-127.467 307.731 0 116.246 45.269 225.536 127.467 307.734 82.2 82.197 191.488 127.466 307.733 127.466 116.246 0 225.536-45.269 307.734-127.466 82.197-82.198 127.466-191.488 127.466-307.734 0-116.245-45.269-225.533-127.466-307.733zM486.4 972.8c-211.738 0-384-172.261-384-384 0-211.738 172.262-384 384-384 211.739 0 384 172.262 384 384 0 211.739-172.261 384-384 384z","M486.4 614.4c-14.138 0-25.6-11.461-25.6-25.6v-307.2c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v307.2c0 14.139-11.462 25.6-25.6 25.6z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["timer","time"],"defaultCode":59181,"grid":20},"attrs":[],"properties":{"name":"timer2","prevSize":20,"code":59633,"ligatures":"timer2, time12","order":38,"id":754},"setIdx":2,"setId":0,"iconIdx":753},{"icon":{"paths":["M256 768c-6.552 0-13.102-2.499-18.101-7.499l-204.8-204.8c-9.998-9.997-9.998-26.206 0-36.203l204.8-204.8c9.997-9.997 26.206-9.997 36.203 0 9.998 9.997 9.998 26.206 0 36.203l-186.699 186.699 186.698 186.699c9.998 9.997 9.998 26.206 0 36.203-4.998 4.998-11.549 7.498-18.101 7.498z","M768 768c-6.552 0-13.102-2.499-18.101-7.499-9.998-9.997-9.998-26.206 0-36.203l186.698-186.698-186.698-186.699c-9.998-9.997-9.998-26.206 0-36.203 9.997-9.997 26.206-9.997 36.203 0l204.8 204.8c9.998 9.997 9.998 26.206 0 36.203l-204.8 204.8c-5 5-11.55 7.499-18.102 7.499z","M383.976 768.003c-4.634 0-9.325-1.258-13.544-3.894-11.989-7.494-15.634-23.288-8.141-35.278l256-409.6c7.493-11.984 23.283-15.634 35.278-8.141 11.989 7.494 15.634 23.288 8.141 35.278l-256 409.6c-4.858 7.77-13.202 12.035-21.734 12.035z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["code","embed"],"defaultCode":59202,"grid":20},"attrs":[],"properties":{"name":"code","prevSize":20,"code":59659,"ligatures":"code, embed","order":40,"id":780},"setIdx":2,"setId":0,"iconIdx":779},{"icon":{"paths":["M819.2 614.4c-70.875 0-133.45 36.194-170.23 91.064l-250.981-125.491c7.51-21.278 11.611-44.154 11.611-67.973 0-23.821-4.101-46.698-11.613-67.979l250.974-125.496c36.779 54.875 99.358 91.075 170.238 91.075 112.926 0 204.8-91.872 204.8-204.8s-91.874-204.8-204.8-204.8-204.8 91.872-204.8 204.8c0 23.813 4.099 46.682 11.605 67.958l-250.978 125.499c-36.782-54.866-99.355-91.058-170.227-91.058-112.928 0-204.8 91.872-204.8 204.8 0 112.926 91.872 204.8 204.8 204.8 70.875 0 133.45-36.194 170.23-91.064l250.981 125.491c-7.51 21.278-11.611 44.154-11.611 67.973 0 112.926 91.874 204.8 204.8 204.8s204.8-91.874 204.8-204.8-91.874-204.8-204.8-204.8zM819.2 51.2c84.696 0 153.6 68.904 153.6 153.6s-68.904 153.6-153.6 153.6-153.6-68.904-153.6-153.6 68.904-153.6 153.6-153.6zM204.8 665.6c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM819.2 972.8c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["share","social"],"defaultCode":59221,"grid":20},"attrs":[],"properties":{"name":"share2","prevSize":20,"code":59680,"ligatures":"share3, social","order":41,"id":801},"setIdx":2,"setId":0,"iconIdx":800}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50}},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":4473924,"bgColor":16777215},"historySize":100,"showCodes":true}} \ No newline at end of file +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M864 128l-480 480-224-224-160 160 384 384 640-640z"],"attrs":[],"isMulticolor":false,"tags":["checkmark","tick","correct","accept","ok"],"defaultCode":60780,"grid":16},"attrs":[],"properties":{"id":45,"order":100,"prevSize":32,"code":60780,"ligatures":"checkmark, tick","name":"checkmark"},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M397.434 917.696l-397.868-391.6 197.378-194.27 200.49 197.332 429.62-422.852 197.378 194.27-626.998 617.12zM107.912 526.096l289.524 284.962 518.656-510.482-89.036-87.632-429.62 422.852-200.49-197.334-89.034 87.634z"],"attrs":[],"isMulticolor":false,"tags":["checkmark","tick","correct","accept","ok"],"defaultCode":60781,"grid":16},"attrs":[],"properties":{"id":46,"order":101,"prevSize":32,"code":60781,"ligatures":"checkmark2, tick2","name":"checkmark2"},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M896 160l-544 544-224-224-96 96 320 320 640-640z"],"attrs":[],"isMulticolor":false,"tags":["checkmark","tick","correct","accept","ok"],"defaultCode":60782,"grid":16},"attrs":[],"properties":{"id":47,"order":102,"prevSize":32,"code":60782,"ligatures":"checkmark3, tick3","name":"checkmark3"},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M78.302 262.54l865.444-231.884 49.69 185.452-865.444 231.884zM128 448v576h896v-576h-896zM448 896v-320l256 160-256 160z"],"attrs":[],"isMulticolor":false,"tags":["clapboard-play","video","cinema","movie","play","media"],"defaultCode":59737,"grid":16},"attrs":[],"properties":{"id":4,"order":103,"prevSize":32,"code":59737,"ligatures":"clapboard-play, video3","name":"clapboard-play"},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M512 0c-282.77 0-512 229.23-512 512s229.23 512 512 512 512-229.23 512-512-229.23-512-512-512zM512 113.618c60.374 0 109.316 48.942 109.316 109.318 0 60.374-48.944 109.316-109.316 109.316-60.376 0-109.316-48.942-109.316-109.316 0-60.376 48.94-109.318 109.316-109.318zM115.556 414.728c0-60.374 48.942-109.316 109.318-109.316 60.374 0 109.316 48.942 109.316 109.316 0 60.376-48.942 109.318-109.316 109.318-60.374-0.002-109.318-48.944-109.318-109.318zM338.402 845.288c-60.374 0-109.316-48.942-109.316-109.316s48.944-109.318 109.316-109.318c60.374 0 109.318 48.944 109.318 109.318s-48.944 109.316-109.318 109.316zM512 576c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64zM685.598 845.938c-60.376 0-109.316-48.942-109.316-109.316s48.942-109.318 109.316-109.318c60.374 0 109.316 48.944 109.316 109.318s-48.944 109.316-109.316 109.316zM799.124 524.696c-60.374 0-109.316-48.942-109.316-109.318 0-60.374 48.944-109.316 109.316-109.316 60.376 0 109.318 48.942 109.318 109.316 0.002 60.374-48.94 109.318-109.318 109.318z"],"attrs":[],"isMulticolor":false,"tags":["movie","video","wheel","film"],"defaultCode":59741,"grid":16},"attrs":[],"properties":{"id":5,"order":104,"prevSize":32,"code":59741,"ligatures":"movie, video5","name":"movie"},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M928 128h-416l-32-64h-352l-64 128h896z","M904.34 704h74.86l44.8-448h-1024l64 640h484.080c-104.882-37.776-180.080-138.266-180.080-256 0-149.982 122.018-272 272-272 149.98 0 272 122.018 272 272 0 21.678-2.622 43.15-7.66 64z","M1002.996 913.75l-198.496-174.692c17.454-28.92 27.5-62.814 27.5-99.058 0-106.040-85.96-192-192-192s-192 85.96-192 192 85.96 192 192 192c36.244 0 70.138-10.046 99.058-27.5l174.692 198.496c22.962 26.678 62.118 28.14 87.006 3.252l5.492-5.492c24.888-24.888 23.426-64.044-3.252-87.006zM640 764c-68.484 0-124-55.516-124-124s55.516-124 124-124 124 55.516 124 124-55.516 124-124 124z"],"attrs":[],"isMulticolor":false,"tags":["folder-search","dicrectory","browse"],"defaultCode":59857,"grid":16},"attrs":[],"properties":{"id":6,"order":105,"prevSize":32,"code":59857,"ligatures":"folder-search, dicrectory","name":"folder-search2"},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M981.188 288.108c-88.808-12.768-183.382-22.016-282.076-27.22l164.888-164.888-64-64-224.558 224.556c-21.006-0.368-42.156-0.556-63.442-0.556v0l-256-256-64 64 194.196 194.196c-120.922 4.242-236.338 14.524-343.386 29.912-27.532 107.726-42.81 226.752-42.81 351.892s15.278 244.166 42.804 351.89c143.642 20.652 302.34 32.11 469.196 32.11 166.856 0 325.55-11.458 469.188-32.11 27.534-107.724 42.812-226.75 42.812-351.89s-15.278-244.166-42.812-351.892zM863.892 874.594c-107.73 13.766-226.75 21.406-351.892 21.406-125.142 0-244.166-7.64-351.892-21.406-20.648-71.816-32.108-151.166-32.108-234.594 0-83.43 11.458-162.78 32.108-234.596 107.726-13.766 226.75-21.404 351.892-21.404 125.136 0 244.162 7.638 351.886 21.404 20.656 71.816 32.114 151.166 32.114 234.596 0 83.428-11.458 162.778-32.108 234.594z"],"attrs":[],"isMulticolor":false,"tags":["tv","television","show"],"defaultCode":60025,"grid":16},"attrs":[],"properties":{"id":7,"order":106,"prevSize":32,"code":60025,"ligatures":"tv, television","name":"tv"},"setIdx":0,"setId":2,"iconIdx":6},{"icon":{"paths":["M704 64c-247.424 0-448 200.576-448 448h-224l288 288 288-288h-224c0-176.73 143.27-320 320-320 176.732 0 320 143.27 320 320 0 176.732-143.268 320-320 320v128c247.424 0 448-200.576 448-448s-200.576-448-448-448z"],"width":1152,"attrs":[],"isMulticolor":false,"tags":["rotate-ccw","ccw","arrow"],"defaultCode":60072,"grid":16},"attrs":[],"properties":{"id":8,"order":107,"prevSize":32,"code":60072,"ligatures":"rotate-ccw3, ccw4","name":"rotate-ccw3"},"setIdx":0,"setId":2,"iconIdx":7},{"icon":{"paths":["M448 64c247.424 0 448 200.576 448 448h224l-288 288-288-288h224c0-176.73-143.27-320-320-320-176.732 0-320 143.27-320 320 0 176.732 143.268 320 320 320v128c-247.424 0-448-200.576-448-448s200.576-448 448-448z"],"width":1152,"attrs":[],"isMulticolor":false,"tags":["rotate-cw","cw","arrow"],"defaultCode":60073,"grid":16},"attrs":[],"properties":{"order":108,"id":9,"prevSize":32,"code":60073,"ligatures":"rotate-cw3, cw4","name":"rotate-cw3"},"setIdx":0,"setId":2,"iconIdx":8},{"icon":{"paths":["M448 128v-16c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576zM256 256v-128h128v128h-128zM832 432c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-576v128h576v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h192v-128h-192v-16zM640 576v-128h128v128h-128zM448 752c0-26.4-21.6-48-48-48h-160c-26.4 0-48 21.6-48 48v16h-192v128h192v16c0 26.4 21.6 48 48 48h160c26.4 0 48-21.6 48-48v-16h576v-128h-576v-16zM256 896v-128h128v128h-128z"],"attrs":[],"isMulticolor":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":60248,"grid":16},"attrs":[],"properties":{"id":10,"order":109,"prevSize":32,"code":60248,"ligatures":"equalizer, sliders","name":"equalizer4"},"setIdx":0,"setId":2,"iconIdx":9},{"icon":{"paths":["M896 448h16c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576zM768 256h128v128h-128v-128zM592 832c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-576h-128v576h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v192h128v-192h16zM448 640h128v128h-128v-128zM272 448c26.4 0 48-21.6 48-48v-160c0-26.4-21.6-48-48-48h-16v-192h-128v192h-16c-26.4 0-48 21.6-48 48v160c0 26.4 21.6 48 48 48h16v576h128v-576h16zM128 256h128v128h-128v-128z"],"attrs":[],"isMulticolor":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":60249,"grid":16},"attrs":[],"properties":{"id":11,"order":110,"prevSize":32,"code":60249,"ligatures":"equalizer2, sliders2","name":"equalizer2"},"setIdx":0,"setId":2,"iconIdx":10},{"icon":{"paths":["M288 320h-128c-17.6 0-32 14.4-32 32v64c0 17.6 14.4 32 32 32h128c17.6 0 32-14.4 32-32v-64c0-17.6-14.4-32-32-32zM192 128h64v160h-64zM192 480h64v416h-64zM544 576h-128c-17.6 0-32 14.4-32 32v64c0 17.6 14.4 32 32 32h128c17.602 0 32-14.4 32-32v-64c0-17.6-14.398-32-32-32zM448.002 128h64v416h-64zM448.002 736h64v160h-64zM800 384h-128c-17.598 0-32 14.4-32 32v64c0 17.6 14.402 32 32 32h128c17.602 0 32-14.4 32-32v-64c0-17.6-14.398-32-32-32zM704 128h64v224h-64zM704 544h64v352h-64zM880 0h-800c-44.112 0-80 35.888-80 80v864c0 44.112 35.888 80 80 80h800c44.112 0 80-35.888 80-80v-864c0-44.112-35.888-80-80-80zM896 944c0 8.8-7.2 16-16 16h-800c-8.8 0-16-7.2-16-16v-864c0-8.8 7.2-16 16-16h800c8.8 0 16 7.2 16 16v864z"],"attrs":[],"isMulticolor":false,"tags":["equalizer","sliders","settings","preferences","dashboard","control"],"defaultCode":60250,"grid":16},"attrs":[],"properties":{"id":12,"order":111,"prevSize":32,"code":60250,"ligatures":"equalizer3, sliders3","name":"equalizer3"},"setIdx":0,"setId":2,"iconIdx":11},{"icon":{"paths":["M933.79 610.25c-53.726-93.054-21.416-212.304 72.152-266.488l-100.626-174.292c-28.75 16.854-62.176 26.518-97.846 26.518-107.536 0-194.708-87.746-194.708-195.99l-201.258 0c0.266 33.41-8.074 67.282-25.958 98.252-53.724 93.056-173.156 124.702-266.862 70.758l-100.624 174.292c28.97 16.472 54.050 40.588 71.886 71.478 53.638 92.908 21.512 211.92-71.708 266.224l100.626 174.292c28.65-16.696 61.916-26.254 97.4-26.254 107.196 0 194.144 87.192 194.7 194.958h201.254c-0.086-33.074 8.272-66.57 25.966-97.218 53.636-92.906 172.776-124.594 266.414-71.012l100.626-174.29c-28.78-16.466-53.692-40.498-71.434-71.228zM512 719.332c-114.508 0-207.336-92.824-207.336-207.334 0-114.508 92.826-207.334 207.336-207.334 114.508 0 207.332 92.826 207.332 207.334-0.002 114.51-92.824 207.334-207.332 207.334z"],"attrs":[],"isMulticolor":false,"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":60252,"grid":16},"attrs":[],"properties":{"id":13,"order":112,"prevSize":32,"code":60252,"ligatures":"cog, gear","name":"cog4"},"setIdx":0,"setId":2,"iconIdx":12},{"icon":{"paths":["M363.722 722.052l41.298-57.816-45.254-45.256-57.818 41.296c-10.722-5.994-22.204-10.774-34.266-14.192l-11.682-70.084h-64l-11.68 70.086c-12.062 3.418-23.544 8.198-34.266 14.192l-57.818-41.298-45.256 45.256 41.298 57.816c-5.994 10.72-10.774 22.206-14.192 34.266l-70.086 11.682v64l70.086 11.682c3.418 12.060 8.198 23.544 14.192 34.266l-41.298 57.816 45.254 45.256 57.818-41.296c10.722 5.994 22.204 10.774 34.266 14.192l11.682 70.084h64l11.68-70.086c12.062-3.418 23.544-8.198 34.266-14.192l57.818 41.296 45.254-45.256-41.298-57.816c5.994-10.72 10.774-22.206 14.192-34.266l70.088-11.68v-64l-70.086-11.682c-3.418-12.060-8.198-23.544-14.192-34.266zM224 864c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64zM1024 384v-64l-67.382-12.25c-1.242-8.046-2.832-15.978-4.724-23.79l57.558-37.1-24.492-59.128-66.944 14.468c-4.214-6.91-8.726-13.62-13.492-20.13l39.006-56.342-45.256-45.254-56.342 39.006c-6.512-4.766-13.22-9.276-20.13-13.494l14.468-66.944-59.128-24.494-37.1 57.558c-7.812-1.892-15.744-3.482-23.79-4.724l-12.252-67.382h-64l-12.252 67.382c-8.046 1.242-15.976 2.832-23.79 4.724l-37.098-57.558-59.128 24.492 14.468 66.944c-6.91 4.216-13.62 8.728-20.13 13.494l-56.342-39.006-45.254 45.254 39.006 56.342c-4.766 6.51-9.278 13.22-13.494 20.13l-66.944-14.468-24.492 59.128 57.558 37.1c-1.892 7.812-3.482 15.742-4.724 23.79l-67.384 12.252v64l67.382 12.25c1.242 8.046 2.832 15.978 4.724 23.79l-57.558 37.1 24.492 59.128 66.944-14.468c4.216 6.91 8.728 13.618 13.494 20.13l-39.006 56.342 45.254 45.256 56.342-39.006c6.51 4.766 13.22 9.276 20.13 13.492l-14.468 66.944 59.128 24.492 37.102-57.558c7.81 1.892 15.742 3.482 23.788 4.724l12.252 67.384h64l12.252-67.382c8.044-1.242 15.976-2.832 23.79-4.724l37.1 57.558 59.128-24.492-14.468-66.944c6.91-4.216 13.62-8.726 20.13-13.492l56.342 39.006 45.256-45.256-39.006-56.342c4.766-6.512 9.276-13.22 13.492-20.13l66.944 14.468 24.492-59.13-57.558-37.1c1.892-7.812 3.482-15.742 4.724-23.79l67.382-12.25zM672 491.2c-76.878 0-139.2-62.322-139.2-139.2 0-76.878 62.32-139.2 139.2-139.2s139.2 62.322 139.2 139.2c0 76.878-62.32 139.2-139.2 139.2z"],"attrs":[],"isMulticolor":false,"tags":["cogs","gears","preferences","settings","generate","control","options"],"defaultCode":60253,"grid":16},"attrs":[],"properties":{"id":14,"order":113,"prevSize":32,"code":60253,"ligatures":"cogs, gears","name":"cogs"},"setIdx":0,"setId":2,"iconIdx":13},{"icon":{"paths":["M633.152 1024h-242.306l-24.404-146.424c-3.358-1.338-6.7-2.72-10.020-4.15l-120.792 86.282-171.338-171.334 86.116-120.562c-1.476-3.414-2.906-6.85-4.284-10.304l-146.124-24.358v-242.304l145.736-24.288c1.422-3.59 2.9-7.164 4.426-10.71l-85.87-120.216 171.338-171.338 119.982 85.702c3.642-1.576 7.308-3.098 10.998-4.564l24.236-145.432h242.306l24.238 145.43c3.69 1.466 7.358 2.988 10.998 4.564l119.982-85.702 171.336 171.338-85.872 120.214c1.53 3.548 3.006 7.122 4.428 10.714l145.738 24.288v242.304l-146.124 24.356c-1.378 3.456-2.806 6.89-4.284 10.302l86.116 120.562-171.336 171.336-120.794-86.282c-3.322 1.428-6.662 2.81-10.022 4.148l-24.404 146.428zM455.23 948h113.54l21.234-127.41 21.788-7.2c14.62-4.832 29.012-10.792 42.778-17.712l20.492-10.302 105.096 75.066 80.286-80.286-74.958-104.944 10.368-20.52c6.986-13.826 13.004-28.292 17.882-42.998l7.216-21.748 127.048-21.176v-113.542l-126.804-21.134-7.178-21.84c-4.876-14.846-10.908-29.442-17.926-43.38l-10.316-20.5 74.666-104.53-80.286-80.288-104.382 74.558-20.524-10.384c-13.996-7.082-28.666-13.168-43.602-18.096l-21.804-7.192-21.074-126.442h-113.54l-21.074 126.444-21.804 7.192c-14.93 4.926-29.598 11.014-43.598 18.098l-20.524 10.384-104.384-74.56-80.288 80.288 74.666 104.532-10.316 20.498c-7.016 13.942-13.046 28.536-17.924 43.38l-7.176 21.842-126.808 21.132v113.54l127.052 21.178 7.214 21.752c4.874 14.692 10.89 29.156 17.882 42.992l10.37 20.52-74.962 104.948 80.288 80.284 105.098-75.068 20.494 10.308c13.754 6.918 28.146 12.876 42.77 17.71l21.788 7.2 21.236 127.406zM544 384h-64c-52.8 0-96 43.2-96 96v64c0 52.8 43.2 96 96 96h64c52.8 0 96-43.2 96-96v-64c0-52.8-43.2-96-96-96zM576 544c0 17.6-14.4 32-32 32h-64c-17.6 0-32-14.4-32-32v-64c0-17.6 14.4-32 32-32h64c17.6 0 32 14.4 32 32v64z"],"attrs":[],"isMulticolor":false,"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":60255,"grid":16},"attrs":[],"properties":{"id":15,"order":114,"prevSize":32,"code":60255,"ligatures":"cog3, gear3","name":"cog3"},"setIdx":0,"setId":2,"iconIdx":14},{"icon":{"paths":["M256 192l-128-128h-64v64l128 128zM320 0h64v128h-64zM576 320h128v64h-128zM640 128v-64h-64l-128 128 64 64zM0 320h128v64h-128zM320 576h64v128h-64zM64 576v64h64l128-128-64-64zM1010 882l-636.118-636.118c-18.668-18.668-49.214-18.668-67.882 0l-60.118 60.118c-18.668 18.668-18.668 49.214 0 67.882l636.118 636.118c18.668 18.668 49.214 18.668 67.882 0l60.118-60.118c18.668-18.668 18.668-49.214 0-67.882zM480 544l-192-192 64-64 192 192-64 64z"],"attrs":[],"isMulticolor":false,"tags":["magic-wand","wizard"],"defaultCode":60266,"grid":16},"attrs":[],"properties":{"id":16,"order":115,"prevSize":32,"code":60266,"ligatures":"magic-wand, wizard","name":"magic-wand2"},"setIdx":0,"setId":2,"iconIdx":15},{"icon":{"paths":["M512 544l-224 224h160v192h128v-192h160l-224-224z","M892.216 514.542c2.49-11.29 3.784-22.87 3.784-34.542 0-88.224-71.776-160-160-160-13.956 0-27.796 1.83-41.164 5.378-24.838-77.286-97.404-133.378-182.836-133.378-86.654 0-160.886 58.042-184.312 138.118-22.982-6.66-47.052-10.118-71.688-10.118-141.158 0-256 114.84-256 256 0 61.986 22.444 121.798 63.2 168.42 40.354 46.164 95.852 76.346 156.266 84.988 1.538 0.218 3.064 0.326 4.572 0.326 15.666 0 29.354-11.514 31.638-27.472 2.502-17.496-9.652-33.708-27.146-36.208-45.262-6.474-86.864-29.116-117.144-63.754-30.558-34.956-47.386-79.81-47.386-126.3 0-105.87 86.13-192 192-192 52.024 0 100.73 20.466 137.146 57.63 12.368 12.624 32.63 12.83 45.252 0.458 12.624-12.37 12.83-32.628 0.458-45.252-15.676-15.998-33.070-29.66-51.76-40.848 12.84-57.42 64.304-99.988 124.904-99.988 70.58 0 128 57.42 128 128 0 8.706-0.876 17.398-2.602 25.832-3.542 17.316 7.624 34.222 24.938 37.764 2.164 0.444 4.32 0.656 6.448 0.656 14.884 0 28.218-10.442 31.318-25.592 2.218-10.854 3.494-21.972 3.812-33.126 10.244-3.624 21.096-5.534 32.086-5.534 52.936 0 96 43.066 96 96 0 10.964-1.88 21.784-5.484 32h-26.516c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c52.934 0 96 43.066 96 96s-43.066 96-96 96h-64c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c88.224 0 160-71.776 160-160 0-78.594-56.976-144.086-131.784-157.458z"],"attrs":[],"isMulticolor":false,"tags":["cloud-upload","cloud","load","upload"],"defaultCode":60532,"grid":16},"attrs":[],"properties":{"order":116,"id":17,"prevSize":32,"code":60532,"ligatures":"cloud-upload, cloud3","name":"cloud-upload3"},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M892.268 386.49c2.444-11.11 3.732-22.648 3.732-34.49 0-88.366-71.634-160-160-160-14.222 0-28.014 1.868-41.132 5.352-24.798-77.352-97.29-133.352-182.868-133.352-87.348 0-161.054 58.336-184.326 138.17-22.742-6.622-46.792-10.17-71.674-10.17-141.384 0-256 114.616-256 256 0 141.388 114.616 256 256 256h128v192h256v-192h224c88.366 0 160-71.632 160-160 0-78.72-56.854-144.162-131.732-157.51zM576 640v192h-128v-192h-160l224-224 224 224h-160z"],"attrs":[],"isMulticolor":false,"tags":["cloud-upload","cloud","load","upload"],"defaultCode":60536,"grid":16},"attrs":[],"properties":{"id":18,"order":117,"prevSize":32,"code":60536,"ligatures":"cloud-upload2, cloud7","name":"cloud-upload2"},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M320 64v73.896l-167.616 23.556 10.888 77.48-163.272 46.818 211.69 738.25 652.066-186.976 35.74-5.024h124.504v-768h-704zM251.456 952.26l-179.716-626.742 99.686-28.584 87.844 625.044 191.794-26.956-199.608 57.238zM308.632 856.47l-90.74-645.656 102.108-14.348v635.534h162.75l-174.118 24.47zM960 768h-576v-640h576v640zM832 512h-128v128h-64v-128h-128v-64h128v-128h64v128h128z"],"attrs":[],"isMulticolor":false,"tags":["stack-plus","files","papers","pages"],"defaultCode":60729,"grid":16},"attrs":[],"properties":{"id":19,"order":118,"prevSize":32,"code":60729,"ligatures":"stack-plus, files5","name":"stack-plus"},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M588.8 358.4c-14.139 0-25.6-11.462-25.6-25.6 0-70.579-57.421-128-128-128-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6c70.579 0 128-57.421 128-128 0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 70.579 57.421 128 128 128 14.139 0 25.6 11.462 25.6 25.6s-11.461 25.6-25.6 25.6c-70.579 0-128 57.421-128 128 0 14.138-11.461 25.6-25.6 25.6zM527.426 179.2c25.11 15.136 46.238 36.264 61.374 61.376 15.136-25.112 36.264-46.24 61.376-61.376-25.112-15.136-46.24-36.264-61.376-61.376-15.136 25.112-36.264 46.24-61.374 61.376z","M76.8 512c-14.138 0-25.6-11.462-25.6-25.6 0-14.115-11.485-25.6-25.6-25.6-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6c14.115 0 25.6-11.485 25.6-25.6 0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 14.115 11.485 25.6 25.6 25.6 14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6c-14.115 0-25.6 11.485-25.6 25.6 0 14.138-11.462 25.6-25.6 25.6z","M929.101 816.096l-541.995-541.994c-14.466-14.466-33.752-22.432-54.306-22.432s-39.84 7.966-54.306 22.432l-29.992 29.992c-14.466 14.466-22.432 33.752-22.432 54.306s7.966 39.84 22.432 54.306l541.994 541.992c14.464 14.466 33.75 22.434 54.304 22.434s39.84-7.965 54.306-22.434l29.994-29.992c14.466-14.464 22.432-33.752 22.432-54.304s-7.965-39.842-22.43-54.306zM284.706 340.298l29.992-29.992c4.795-4.795 11.224-7.435 18.102-7.435s13.307 2.64 18.102 7.435l73.691 73.693-66.197 66.197-73.691-73.691c-9.982-9.984-9.982-26.224 0-36.206zM892.894 888.502l-29.994 29.992c-4.794 4.794-11.224 7.434-18.099 7.434s-13.306-2.64-18.099-7.434l-432.102-432.099 66.197-66.195 432.098 432.099c9.981 9.981 9.981 26.222 0 36.203z","M179.2 256c-14.138 0-25.6-11.462-25.6-25.6 0-42.347-34.453-76.8-76.8-76.8-14.138 0-25.6-11.462-25.6-25.6s11.462-25.6 25.6-25.6c42.347 0 76.8-34.453 76.8-76.8 0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 42.347 34.453 76.8 76.8 76.8 14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6c-42.347 0-76.8 34.453-76.8 76.8 0 14.138-11.462 25.6-25.6 25.6zM153.52 128c9.725 7.304 18.376 15.957 25.68 25.68 7.304-9.725 15.957-18.376 25.68-25.68-9.725-7.304-18.376-15.957-25.68-25.68-7.304 9.723-15.957 18.376-25.68 25.68z","M179.2 768c-14.138 0-25.6-11.461-25.6-25.6 0-42.347-34.453-76.8-76.8-76.8-14.138 0-25.6-11.461-25.6-25.6s11.462-25.6 25.6-25.6c42.347 0 76.8-34.453 76.8-76.8 0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6c0 42.347 34.453 76.8 76.8 76.8 14.138 0 25.6 11.461 25.6 25.6s-11.462 25.6-25.6 25.6c-42.347 0-76.8 34.453-76.8 76.8 0 14.139-11.462 25.6-25.6 25.6zM153.52 640c9.725 7.302 18.376 15.957 25.68 25.68 7.304-9.723 15.957-18.374 25.68-25.68-9.725-7.302-18.376-15.957-25.68-25.68-7.304 9.723-15.957 18.378-25.68 25.68z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["magic-wand","tool","wizard"],"defaultCode":58923,"grid":20},"attrs":[],"properties":{"name":"magic-wand","prevSize":20,"code":58923,"ligatures":"magic-wand, tool","order":119,"id":20},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M658.099 596.301l-102.4-102.4c-9.995-9.997-26.206-9.997-36.203 0l-102.4 102.4c-9.997 9.995-9.997 26.206 0 36.203s26.206 9.997 36.205 0l58.699-58.699v219.795c0 14.139 11.461 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-219.795l58.701 58.699c4.997 4.997 11.547 7.496 18.099 7.496s13.102-2.499 18.099-7.501c10-9.995 10-26.203 0-36.198z","M819.52 819.2h-179.52c-14.139 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6h179.52c84.518 0 153.28-68.762 153.28-153.28s-68.762-153.28-153.28-153.28c-18.128 0-35.794 3.101-52.507 9.222-11.166 4.088-23.677-0.050-30.202-9.989s-5.349-23.064 2.842-31.685c18.28-19.235 28.347-44.307 28.347-70.589 0-56.464-45.936-102.4-102.4-102.4-32.858 0-62.912 15.187-82.456 41.667-11.798 15.986-18.669 34.707-19.867 54.138-0.67 10.85-8.117 20.093-18.574 23.054-10.462 2.966-21.648-1.006-27.906-9.891-5.632-7.997-11.73-15.702-18.126-22.902-48.587-54.696-118.374-86.066-191.47-86.066-141.158 0-256 114.84-256 256s114.842 256 256 256h128c14.138 0 25.6 11.461 25.6 25.6s-11.462 25.6-25.6 25.6h-128c-169.39 0-307.2-137.81-307.2-307.2s137.81-307.2 307.2-307.2c82.034 0 160.589 32.917 218.104 90.866 4.483-9.947 10.048-19.469 16.643-28.403 28.87-39.112 75.093-62.462 123.653-62.462 84.696 0 153.6 68.904 153.6 153.6 0 17.957-3.118 35.523-9.096 52.051 3.126-0.142 6.267-0.211 9.416-0.211 112.75 0 204.48 91.73 204.48 204.48s-91.73 204.48-204.48 204.48z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["cloud-upload","cloud"],"defaultCode":58955,"grid":20},"attrs":[],"properties":{"name":"cloud-upload","prevSize":20,"code":58955,"ligatures":"cloud-upload, cloud2","order":120,"id":21},"setIdx":0,"setId":2,"iconIdx":20},{"icon":{"paths":["M390.71 1008.755c-2.109 0-4.248-0.262-6.378-0.81-45.976-11.803-90.149-30.042-131.291-54.21-11.923-7.003-16.13-22.21-9.501-34.344 8.15-14.925 12.459-31.866 12.459-48.992 0-56.464-45.936-102.4-102.4-102.4-17.125 0-34.066 4.309-48.992 12.459-12.133 6.627-27.339 2.421-34.342-9.501-24.17-41.142-42.408-85.315-54.211-131.293-3.333-12.989 3.92-26.349 16.629-30.629 41.699-14.037 69.717-53.034 69.717-97.037s-28.018-83-69.718-97.040c-12.707-4.278-19.962-17.638-16.627-30.627 11.803-45.976 30.042-90.149 54.211-131.291 7.003-11.923 22.21-16.13 34.344-9.501 14.923 8.15 31.864 12.459 48.99 12.459 56.464 0 102.4-45.936 102.4-102.4 0-17.126-4.309-34.067-12.459-48.99-6.629-12.134-2.422-27.341 9.501-34.344 41.141-24.168 85.314-42.408 131.291-54.211 12.994-3.334 26.349 3.92 30.627 16.627 14.040 41.701 53.037 69.718 97.040 69.718s83-28.018 97.038-69.717c4.28-12.71 17.645-19.965 30.629-16.629 45.976 11.802 90.15 30.042 131.293 54.211 11.922 7.003 16.128 22.208 9.501 34.342-8.152 14.926-12.461 31.867-12.461 48.992 0 56.464 45.936 102.4 102.4 102.4 17.126 0 34.067-4.309 48.992-12.459 12.138-6.629 27.341-2.421 34.344 9.501 24.166 41.141 42.406 85.314 54.21 131.291 3.334 12.989-3.918 26.349-16.627 30.627-41.701 14.040-69.718 53.037-69.718 97.040s28.018 83 69.718 97.038c12.707 4.28 19.962 17.638 16.627 30.629-11.803 45.976-30.042 90.15-54.21 131.291-7.005 11.925-22.208 16.128-34.344 9.502-14.926-8.152-31.867-12.461-48.992-12.461-56.464 0-102.4 45.936-102.4 102.4 0 17.125 4.309 34.066 12.461 48.992 6.627 12.136 2.421 27.341-9.502 34.344-41.141 24.166-85.314 42.406-131.291 54.21-12.992 3.336-26.349-3.918-30.629-16.627-14.038-41.701-53.035-69.718-97.038-69.718s-83 28.018-97.040 69.718c-3.578 10.624-13.502 17.437-24.25 17.437zM512 870.4c57.715 0 109.693 32.138 135.917 82.029 26.637-8.218 52.507-18.875 77.299-31.846-5.541-16.077-8.416-33.075-8.416-50.182 0-84.696 68.904-153.6 153.6-153.6 17.107 0 34.106 2.875 50.181 8.418 12.971-24.792 23.63-50.662 31.846-77.299-49.89-26.226-82.027-78.203-82.027-135.918s32.138-109.691 82.029-135.918c-8.218-26.637-18.875-52.506-31.846-77.299-16.077 5.542-33.074 8.418-50.182 8.418-84.696 0-153.6-68.904-153.6-153.6 0-17.107 2.875-34.106 8.418-50.181-24.792-12.971-50.662-23.63-77.299-31.846-26.226 49.89-78.203 82.027-135.918 82.027s-109.691-32.138-135.917-82.027c-26.637 8.216-52.507 18.874-77.299 31.846 5.542 16.075 8.416 33.072 8.416 50.181 0 84.696-68.904 153.6-153.6 153.6-17.109 0-34.106-2.874-50.181-8.418-12.973 24.794-23.63 50.662-31.846 77.299 49.89 26.227 82.027 78.203 82.027 135.918s-32.138 109.693-82.027 135.917c8.216 26.637 18.875 52.507 31.846 77.299 16.075-5.541 33.074-8.416 50.181-8.416 84.696 0 153.6 68.904 153.6 153.6 0 17.109-2.875 34.106-8.418 50.181 24.794 12.971 50.662 23.63 77.299 31.846 26.227-49.89 78.203-82.027 135.918-82.027z","M512 665.6c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM512 409.6c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4c56.464 0 102.4-45.936 102.4-102.4s-45.936-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":58994,"grid":20},"attrs":[],"properties":{"name":"cog","prevSize":20,"code":58994,"ligatures":"cog, gear","order":121,"id":22},"setIdx":0,"setId":2,"iconIdx":21},{"icon":{"paths":["M682.187 993.366c-3.794 0-7.579-0.843-11.069-2.517-6.277-3.010-11.056-8.445-13.238-15.054-20.821-63.040-79.445-105.395-145.88-105.395s-125.059 42.355-145.878 105.394c-2.182 6.61-6.963 12.045-13.238 15.054-6.275 3.011-13.507 3.334-20.029 0.899-53.342-19.928-102.701-48.461-146.707-84.81-5.363-4.43-8.691-10.85-9.222-17.784-0.531-6.936 1.784-13.787 6.41-18.981 44.136-49.546 51.482-121.469 18.282-178.973-27.357-47.384-78.389-76.821-133.179-76.821-10.4 0-20.822 1.067-30.978 3.17-6.822 1.419-13.92-0.011-19.664-3.95-5.744-3.936-9.637-10.042-10.782-16.91-4.653-27.944-7.013-56.438-7.013-84.688s2.36-56.742 7.014-84.688c1.144-6.869 5.037-12.976 10.781-16.912 5.746-3.936 12.846-5.362 19.664-3.95 10.157 2.104 20.579 3.171 30.978 3.17 54.792-0.002 105.824-29.437 133.181-76.819 33.2-57.504 25.853-129.427-18.282-178.973-4.627-5.194-6.941-12.046-6.41-18.981s3.861-13.355 9.224-17.784c44.005-36.347 93.365-64.882 146.704-84.808 6.522-2.435 13.752-2.112 20.029 0.899 6.275 3.010 11.056 8.445 13.238 15.054 20.819 63.037 79.443 105.392 145.878 105.392s125.059-42.355 145.88-105.394c2.182-6.61 6.963-12.045 13.238-15.054 6.274-3.013 13.506-3.334 20.029-0.899 53.341 19.928 102.699 48.462 146.704 84.81 5.363 4.429 8.693 10.85 9.222 17.784 0.531 6.934-1.782 13.787-6.41 18.981-44.134 49.544-51.482 121.469-18.282 178.973 27.358 47.387 78.389 76.822 133.179 76.819 10.403 0 20.826-1.067 30.979-3.17 6.816-1.411 13.918 0.014 19.664 3.95 5.744 3.936 9.637 10.043 10.781 16.914 4.654 27.95 7.014 56.443 7.014 84.686s-2.36 56.738-7.013 84.688c-1.144 6.869-5.037 12.976-10.781 16.912-5.746 3.936-12.842 5.368-19.664 3.95-10.157-2.102-20.578-3.17-30.978-3.17-54.79 0-105.824 29.435-133.181 76.821-33.2 57.504-25.853 129.429 18.282 178.971 4.627 5.194 6.941 12.045 6.41 18.981-0.53 6.934-3.859 13.355-9.222 17.784-44.003 36.347-93.363 64.882-146.704 84.81-2.898 1.082-5.931 1.619-8.962 1.619zM238.301 882.749c27.83 20.587 57.77 37.901 89.442 51.718 33.874-69.912 104.886-115.267 184.258-115.267s150.382 45.355 184.258 115.267c31.674-13.819 61.613-31.131 89.442-51.718-43.574-64.286-47.328-148.437-7.658-217.149 36.475-63.174 104.498-102.421 177.522-102.421 4.781 0 9.566 0.168 14.339 0.506 1.926-17.186 2.898-34.486 2.898-51.685s-0.971-34.499-2.898-51.686c-4.773 0.336-9.558 0.506-14.339 0.506-73.024 0.003-141.046-39.242-177.522-102.419-39.67-68.71-35.917-152.864 7.656-217.149-27.83-20.587-57.768-37.901-89.44-51.718-33.875 69.912-104.886 115.267-184.258 115.267s-150.384-45.355-184.258-115.267c-31.672 13.819-61.611 31.131-89.442 51.718 43.574 64.286 47.326 148.438 7.658 217.149-36.474 63.173-104.496 102.418-177.52 102.419-4.781 0-9.566-0.168-14.341-0.504-1.926 17.182-2.898 34.485-2.898 51.685s0.971 34.502 2.898 51.686c4.773-0.336 9.558-0.506 14.339-0.506 73.024 0 141.046 39.245 177.52 102.421 39.67 68.709 35.917 152.861-7.656 217.147z","M512 665.6c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM512 409.6c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4c56.464 0 102.4-45.936 102.4-102.4s-45.936-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["cog","gear","preferences","settings","generate","control","options"],"defaultCode":58995,"grid":20},"attrs":[],"properties":{"name":"cog2","prevSize":20,"code":58995,"ligatures":"cog2, gear2","order":122,"id":23},"setIdx":0,"setId":2,"iconIdx":22},{"icon":{"paths":["M914.101 289.099l-230.4-230.4c-4.8-4.802-11.312-7.499-18.101-7.499h-486.4c-42.347 0-76.8 34.453-76.8 76.8v819.2c0 42.349 34.453 76.8 76.8 76.8h665.6c42.349 0 76.8-34.451 76.8-76.8v-640c0-6.79-2.698-13.301-7.499-18.101zM859.797 307.2h-168.597c-14.115 0-25.6-11.485-25.6-25.6v-168.597l194.197 194.197zM844.8 972.8h-665.6c-14.115 0-25.6-11.485-25.6-25.6v-819.2c0-14.115 11.485-25.6 25.6-25.6h435.2v179.2c0 42.347 34.451 76.8 76.8 76.8h179.2v588.8c0 14.115-11.485 25.6-25.6 25.6z","M588.8 665.6h-128v-128c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.461-25.6 25.6v128h-128c-14.138 0-25.6 11.461-25.6 25.6s11.462 25.6 25.6 25.6h128v128c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-128h128c14.139 0 25.6-11.461 25.6-25.6s-11.461-25.6-25.6-25.6z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["file-add","file"],"defaultCode":59060,"grid":20},"attrs":[{},{}],"properties":{"name":"file-add","prevSize":20,"code":59060,"ligatures":"file-add, file2","order":123,"id":24},"setIdx":0,"setId":2,"iconIdx":23},{"icon":{"paths":["M844.8 204.8h-25.6v-25.6c0-42.347-34.451-76.8-76.8-76.8h-25.6v-25.6c0-42.347-34.451-76.8-76.8-76.8h-384c-6.79 0-13.301 2.698-18.101 7.499l-179.2 179.2c-4.802 4.8-7.499 11.312-7.499 18.101v537.6c0 42.349 34.453 76.8 76.8 76.8h25.6v25.6c0 42.349 34.453 76.8 76.8 76.8h25.6v25.6c0 42.349 34.453 76.8 76.8 76.8h512c42.349 0 76.8-34.451 76.8-76.8v-665.6c0-42.347-34.451-76.8-76.8-76.8zM256 61.803v117.397c0 14.115-11.485 25.6-25.6 25.6h-117.397l142.997-142.997zM102.4 742.4v-486.4h128c42.347 0 76.8-34.453 76.8-76.8v-128h332.8c14.115 0 25.6 11.485 25.6 25.6v665.6c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6zM204.8 844.8v-25.6h435.2c42.349 0 76.8-34.451 76.8-76.8v-588.8h25.6c14.115 0 25.6 11.485 25.6 25.6v665.6c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6zM870.4 947.2c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6v-25.6h435.2c42.349 0 76.8-34.451 76.8-76.8v-588.8h25.6c14.115 0 25.6 11.485 25.6 25.6v665.6z"],"attrs":[{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0}]},"tags":["files","stack"],"defaultCode":59063,"grid":20},"attrs":[{}],"properties":{"name":"files","prevSize":20,"code":59063,"ligatures":"files, stack","order":124,"id":25},"setIdx":0,"setId":2,"iconIdx":24},{"icon":{"paths":["M947.2 102.4h-742.4c-6.79 0-13.301 2.698-18.101 7.499l-179.2 179.2c-4.802 4.8-7.499 11.31-7.499 18.101v537.6c0 42.349 34.453 76.8 76.8 76.8h870.4c42.349 0 76.8-34.451 76.8-76.8v-665.6c0-42.347-34.451-76.8-76.8-76.8zM204.8 164.203v117.397c0 14.115-11.485 25.6-25.6 25.6h-117.397l142.997-142.997zM972.8 844.8c0 14.115-11.485 25.6-25.6 25.6h-512c-14.115 0-25.6-11.485-25.6-25.6v-102.4c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.461-25.6 25.6v102.4c0 8.974 1.562 17.587 4.403 25.6h-286.003c-14.115 0-25.6-11.485-25.6-25.6v-486.4h128c42.347 0 76.8-34.453 76.8-76.8v-128h245.397l-135.499 135.499c-4.802 4.8-7.499 11.312-7.499 18.101v230.4c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-179.2h128c42.347 0 76.8-34.453 76.8-76.8v-128h332.8c14.115 0 25.6 11.485 25.6 25.6v665.6zM563.2 164.203v117.397c0 14.115-11.485 25.6-25.6 25.6h-117.397l142.997-142.997z","M786.101 621.899l-102.4-102.4c-9.997-9.997-26.206-9.997-36.203 0-9.998 9.997-9.998 26.206 0 36.203l58.698 58.698h-490.792l58.699-58.699c9.997-9.997 9.997-26.206 0-36.203s-26.206-9.997-36.205 0l-102.4 102.4c-9.997 9.997-9.997 26.206 0 36.203l102.4 102.4c5 5 11.55 7.499 18.102 7.499s13.102-2.499 18.102-7.499c9.997-9.997 9.997-26.206 0-36.203l-58.699-58.698h490.792l-58.698 58.699c-9.998 9.997-9.998 26.206 0 36.203 5 4.998 11.55 7.498 18.102 7.498s13.102-2.499 18.101-7.499l102.4-102.4c9.998-9.997 9.998-26.205 0-36.202z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["compare","diff","files"],"defaultCode":59065,"grid":20},"attrs":[{},{}],"properties":{"name":"compare","prevSize":20,"code":59065,"ligatures":"compare, diff","order":125,"id":26},"setIdx":0,"setId":2,"iconIdx":25},{"icon":{"paths":["M947.2 921.6h-870.4c-42.347 0-76.8-34.451-76.8-76.8v-537.6c0-18.040 6.085-43.813 14.154-59.947l28.301-56.603c10.558-21.122 36.33-37.050 59.946-37.050h358.4c23.611 0 49.382 15.926 59.947 37.045l28.302 56.61c1.962 3.923 9.765 8.746 14.15 8.746h384c42.349 0 76.8 34.453 76.8 76.8v512c0 42.349-34.451 76.8-76.8 76.8zM102.4 204.8c-4.387 0-12.189 4.821-14.149 8.744l-28.302 56.606c-4.498 8.992-8.749 26.997-8.749 37.050v537.6c0 14.115 11.485 25.6 25.6 25.6h870.4c14.115 0 25.6-11.485 25.6-25.6v-512c0-14.115-11.485-25.6-25.6-25.6h-384c-23.614 0-49.384-15.928-59.946-37.050l-28.301-56.605c-1.962-3.92-9.766-8.746-14.154-8.746h-358.4z","M660.48 727.040l-78.403-104.538c20.088-22.611 32.323-52.347 32.323-84.902 0-70.579-57.421-128-128-128s-128 57.421-128 128 57.421 128 128 128c19.582 0 38.144-4.434 54.754-12.328l78.366 104.488c5.030 6.706 12.715 10.242 20.499 10.242 5.344 0 10.734-1.669 15.339-5.122 11.312-8.483 13.605-24.53 5.122-35.84zM409.6 537.6c0-42.347 34.453-76.8 76.8-76.8s76.8 34.453 76.8 76.8-34.453 76.8-76.8 76.8c-42.347 0-76.8-34.453-76.8-76.8z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["folder-search","folder","directory","lookup","browse"],"defaultCode":59067,"grid":20},"attrs":[{},{}],"properties":{"name":"folder-search","prevSize":20,"code":59067,"ligatures":"folder-search, folder2","order":126,"id":27},"setIdx":0,"setId":2,"iconIdx":26},{"icon":{"paths":["M888.501 161.099l-153.6-153.6c-9.997-9.998-26.206-9.998-36.203 0-9.998 9.997-9.998 26.206 0 36.203l109.899 109.898h-680.597c-42.347 0-76.8 34.453-76.8 76.8v460.8c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-460.8c0-14.115 11.485-25.6 25.6-25.6h680.597l-109.899 109.899c-9.998 9.997-9.998 26.206 0 36.203 5 4.998 11.55 7.498 18.102 7.498s13.102-2.499 18.101-7.499l153.6-153.6c9.998-9.997 9.998-26.205 0-36.202z","M896 307.2c-14.139 0-25.6 11.462-25.6 25.6v460.8c0 14.115-11.485 25.6-25.6 25.6h-680.597l109.898-109.899c9.998-9.997 9.998-26.206 0-36.203-9.997-9.997-26.206-9.997-36.203 0l-153.6 153.6c-9.998 9.997-9.998 26.206 0 36.203l153.6 153.6c5 5 11.55 7.499 18.102 7.499s13.102-2.499 18.101-7.499c9.998-9.997 9.998-26.206 0-36.203l-109.898-109.898h680.597c42.349 0 76.8-34.451 76.8-76.8v-460.8c0-14.138-11.461-25.6-25.6-25.6z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["repeat","loop"],"defaultCode":59118,"grid":20},"attrs":[{},{}],"properties":{"name":"repeat","prevSize":20,"code":59118,"ligatures":"repeat, loop2","order":127,"id":28},"setIdx":0,"setId":2,"iconIdx":27},{"icon":{"paths":["M128 1024c-14.138 0-25.6-11.461-25.6-25.6v-409.6c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v409.6c0 14.139-11.462 25.6-25.6 25.6z","M128 307.2c-14.138 0-25.6-11.462-25.6-25.6v-256c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v256c0 14.138-11.462 25.6-25.6 25.6z","M179.2 512h-102.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8s-34.453 76.8-76.8 76.8zM76.8 409.6c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6s-11.485-25.6-25.6-25.6h-102.4z","M486.4 1024c-14.138 0-25.6-11.461-25.6-25.6v-204.8c0-14.139 11.462-25.6 25.6-25.6s25.6 11.461 25.6 25.6v204.8c0 14.139-11.462 25.6-25.6 25.6z","M486.4 512c-14.138 0-25.6-11.462-25.6-25.6v-460.8c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v460.8c0 14.138-11.462 25.6-25.6 25.6z","M537.6 716.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8s-34.453 76.8-76.8 76.8zM435.2 614.4c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6s-11.485-25.6-25.6-25.6h-102.4z","M844.8 1024c-14.139 0-25.6-11.461-25.6-25.6v-512c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v512c0 14.139-11.461 25.6-25.6 25.6z","M844.8 204.8c-14.139 0-25.6-11.462-25.6-25.6v-153.6c0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6v153.6c0 14.138-11.461 25.6-25.6 25.6z","M896 409.6h-102.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8s-34.453 76.8-76.8 76.8zM793.6 307.2c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6s-11.485-25.6-25.6-25.6h-102.4z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0},{"f":0}]},"tags":["equalizer","settings","options","preferences"],"defaultCode":59122,"grid":20},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"name":"equalizer","prevSize":20,"code":59122,"ligatures":"equalizer, settings","order":128,"id":29},"setIdx":0,"setId":2,"iconIdx":28},{"icon":{"paths":["M947.2 0h-921.6c-14.138 0-25.6 11.462-25.6 25.6v768c0 14.139 11.462 25.6 25.6 25.6h398.997l-161.099 161.099c-9.997 9.997-9.997 26.206 0 36.203 5 4.998 11.55 7.498 18.102 7.498s13.102-2.499 18.102-7.499l161.098-161.096v142.995c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-142.997l161.099 161.099c4.998 4.998 11.549 7.498 18.101 7.498s13.102-2.499 18.101-7.499c9.998-9.997 9.998-26.206 0-36.203l-161.098-161.098h398.997c14.139 0 25.6-11.461 25.6-25.6v-768c0-14.138-11.461-25.6-25.6-25.6zM51.2 51.2h870.4v614.4h-870.4v-614.4zM921.6 768h-870.4v-51.2h870.4v51.2z","M654.682 337.427l-256-179.2c-7.822-5.475-18.037-6.142-26.502-1.734s-13.779 13.162-13.779 22.707v358.4c0 9.546 5.31 18.299 13.778 22.706 3.72 1.938 7.778 2.894 11.821 2.894 5.16 0 10.299-1.558 14.683-4.629l256-179.2c6.842-4.789 10.918-12.618 10.918-20.971s-4.077-16.182-10.918-20.973zM409.6 488.432v-260.064l185.76 130.032-185.76 130.032z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["presentation","board","play"],"defaultCode":59126,"grid":20},"attrs":[],"properties":{"name":"presentation","prevSize":20,"code":59126,"ligatures":"presentation, board","order":129,"id":30},"setIdx":0,"setId":2,"iconIdx":29},{"icon":{"paths":["M947.2 921.6h-563.2c-42.347 0-76.8-34.453-76.8-76.8 0-2.461 0.538-60.952 47.331-118.544 26.883-33.088 63.541-59.31 108.952-77.941 54.856-22.504 122.858-33.915 202.117-33.915s147.261 11.411 202.117 33.915c45.411 18.63 82.067 44.853 108.952 77.941 46.794 57.592 47.331 116.083 47.331 118.544 0 42.347-34.453 76.8-76.8 76.8zM358.4 844.931c0.072 14.056 11.528 25.469 25.6 25.469h563.2c14.072 0 25.528-11.413 25.6-25.469-0.048-1.786-1.656-45.802-37.851-88.786-49.88-59.235-143.019-90.546-269.349-90.546s-219.469 31.31-269.349 90.546c-36.194 42.984-37.803 87-37.851 88.786z","M665.6 563.2c-112.926 0-204.8-91.874-204.8-204.8 0-112.928 91.874-204.8 204.8-204.8s204.8 91.872 204.8 204.8c0 112.926-91.874 204.8-204.8 204.8zM665.6 204.8c-84.696 0-153.6 68.904-153.6 153.6s68.904 153.6 153.6 153.6 153.6-68.904 153.6-153.6-68.904-153.6-153.6-153.6z","M230.4 921.6h-153.6c-42.347 0-76.8-34.451-76.8-76.8 0-1.915 0.386-47.446 33.92-92.16 19.373-25.832 45.778-46.299 78.483-60.834 39.126-17.389 87.438-26.206 143.597-26.206 9.16 0 18.232 0.235 26.962 0.701 14.118 0.754 24.954 12.81 24.2 26.928-0.752 14.117-12.781 24.96-26.928 24.2-7.826-0.418-15.979-0.629-24.234-0.629-199.366 0-204.666 121.826-204.8 128.131 0.072 14.054 11.528 25.469 25.6 25.469h153.6c14.138 0 25.6 11.461 25.6 25.6s-11.462 25.6-25.6 25.6z","M256 614.4c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM256 358.4c-56.464 0-102.4 45.936-102.4 102.4s45.936 102.4 102.4 102.4 102.4-45.936 102.4-102.4c0-56.464-45.936-102.4-102.4-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["users","group","team","people"],"defaultCode":59171,"grid":20},"attrs":[],"properties":{"name":"users2","prevSize":20,"code":59171,"ligatures":"users2, group2","order":130,"id":31},"setIdx":0,"setId":2,"iconIdx":30},{"icon":{"paths":["M691.2 563.2c-42.349 0-76.8-34.451-76.8-76.8 0-42.347 34.451-76.8 76.8-76.8s76.8 34.453 76.8 76.8c0 42.349-34.451 76.8-76.8 76.8zM691.2 460.8c-14.115 0-25.6 11.485-25.6 25.6s11.485 25.6 25.6 25.6 25.6-11.485 25.6-25.6-11.485-25.6-25.6-25.6z","M332.8 563.2c-42.347 0-76.8-34.24-76.8-76.326s34.453-76.326 76.8-76.326 76.8 34.24 76.8 76.326c0 42.086-34.453 76.326-76.8 76.326zM332.8 461.747c-14.115 0-25.6 11.272-25.6 25.126s11.485 25.126 25.6 25.126 25.6-11.272 25.6-25.126-11.485-25.126-25.6-25.126z","M943.080 400.128c-32.251-85.298-88.523-158.419-163.122-211.835-78.474-56.192-171.133-85.893-267.958-85.893s-189.483 29.701-267.958 85.893c-74.598 53.416-130.87 126.539-163.122 211.835-50.818 38.656-80.92 99.008-80.92 163.072 0 64.066 30.098 124.414 80.92 163.072 32.251 85.298 88.525 158.421 163.123 211.835 78.474 56.192 171.131 85.893 267.957 85.893s189.485-29.701 267.958-85.893c74.598-53.416 130.87-126.539 163.123-211.835 50.821-38.658 80.918-99.006 80.918-163.072 0-64.064-30.101-124.416-80.92-163.072zM907.069 689.178c-4.346 3.037-7.64 7.349-9.432 12.339-58.206 162.262-213.182 271.283-385.637 271.283s-327.43-109.021-385.637-271.283c-1.79-4.99-5.086-9.301-9.432-12.339-41.158-28.766-65.731-75.862-65.731-125.978 0-50.118 24.571-97.213 65.731-125.979 4.346-3.037 7.642-7.349 9.432-12.338 52.603-146.638 184.238-249.784 336.381-268.29 58.43 12.786 100.456 64.739 100.456 125.006 0 14.115-11.485 25.6-25.6 25.6s-25.6-11.485-25.6-25.6c0-14.138-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 42.347 34.453 76.8 76.8 76.8s76.8-34.453 76.8-76.8c0-47.957-19.032-92.149-50.474-124.666 151.011 19.382 281.418 122.168 333.71 267.947 1.79 4.99 5.086 9.302 9.432 12.339 41.16 28.766 65.731 75.861 65.731 125.979 0 50.115-24.571 97.211-65.731 125.978z","M512 819.2c-85.611 0-165.19-42.525-212.874-113.757-7.866-11.749-4.717-27.648 7.034-35.514 11.749-7.864 27.65-4.715 35.514 7.034 38.16 57.003 101.834 91.037 170.326 91.037 68.498 0 132.17-34.034 170.33-91.040 7.864-11.749 23.763-14.899 35.514-7.034 11.749 7.864 14.899 23.765 7.034 35.514-47.68 71.234-127.261 113.76-212.877 113.76z"],"attrs":[{},{},{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0},{"f":0},{"f":0}]},"tags":["baby","boy","male","human"],"defaultCode":59178,"grid":20},"attrs":[{},{},{},{}],"properties":{"name":"baby2","prevSize":20,"code":59178,"ligatures":"baby2, boy","order":131,"id":32},"setIdx":0,"setId":2,"iconIdx":31},{"icon":{"paths":["M361.742 428.669c35.702-29.008 86.141-51.075 134.918-72.414 51.909-22.71 105.584-46.194 146.683-79.586 49.427-40.162 73.456-88.792 73.456-148.669v-51.2c0-14.138-11.461-25.6-25.6-25.6s-25.6 11.462-25.6 25.6v51.2c0 6.235-0.36 12.275-1.061 18.147l-376.738-94.158c-1.989-0.496-4.059-0.789-6.202-0.789-14.138 0-25.6 11.462-25.6 25.6v51.2c0 96.826 64.016 146.555 112.168 175.538 4.131 2.486 8.683 3.67 13.178 3.67 8.683 0 17.154-4.421 21.958-12.402 7.291-12.114 3.382-27.843-8.733-35.134-61.242-36.862-87.371-76.242-87.371-131.672v-18.411l341.154 85.288c-8.861 15.109-21.219 28.992-37.298 42.054-35.701 29.008-86.139 51.075-134.917 72.414-51.909 22.71-105.584 46.194-146.682 79.586-49.429 40.162-73.458 88.792-73.458 148.669 0 96.824 64.011 146.552 112.158 175.533 4.131 2.488 8.683 3.67 13.178 3.67 8.683 0 17.154-4.419 21.957-12.402 7.291-12.112 3.382-27.843-8.731-35.134-61.234-36.859-87.362-76.237-87.362-131.667 0-6.234 0.36-12.27 1.059-18.139l340.094 85.018c-8.861 15.107-21.219 28.99-37.298 42.053-35.701 29.008-86.139 51.075-134.917 72.416-51.909 22.709-105.584 46.192-146.682 79.584-49.429 40.162-73.458 88.79-73.458 148.669v51.2c0 14.139 11.462 25.6 25.6 25.6s25.6-11.461 25.6-25.6v-51.2c0-6.235 0.36-12.275 1.061-18.147l376.738 94.157c1.987 0.498 4.058 0.79 6.202 0.79 14.139 0 25.6-11.461 25.6-25.6v-51.2c0-96.826-64.014-146.554-112.165-175.534-12.114-7.294-27.845-3.382-35.134 8.731-7.293 12.114-3.382 27.843 8.731 35.134 61.24 36.859 87.368 76.237 87.368 131.669v18.413l-341.155-85.29c8.861-15.107 21.221-28.992 37.298-42.054 35.702-29.008 86.141-51.075 134.918-72.416 51.909-22.709 105.584-46.192 146.683-79.584 49.427-40.162 73.456-88.79 73.456-148.669 0-96.826-64.014-146.554-112.165-175.534-12.114-7.293-27.845-3.381-35.134 8.733-7.293 12.114-3.382 27.843 8.731 35.134 61.24 36.859 87.368 76.235 87.368 131.667 0 6.235-0.36 12.277-1.061 18.149l-340.098-85.018c8.861-15.112 21.222-28.998 37.301-42.062z"],"attrs":[{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0}]},"tags":["dna","gene","genetics","biology"],"defaultCode":59367,"grid":20},"attrs":[{}],"properties":{"name":"dna","prevSize":20,"code":59367,"ligatures":"dna, gene","order":132,"id":33},"setIdx":0,"setId":2,"iconIdx":32},{"icon":{"paths":["M640 358.4c-14.139 0-25.6-11.462-25.6-25.6s11.461-25.6 25.6-25.6c14.115 0 25.6-11.485 25.6-25.6 0-14.138 11.461-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 42.347-34.453 76.8-76.8 76.8z","M644.371 768.011c-10.546 0-20.421-6.565-24.136-17.074-3.87-10.952-5.835-22.438-5.835-34.138 0-56.464 45.936-102.4 102.4-102.4 11.699 0 23.186 1.965 34.138 5.835 13.331 4.712 20.315 19.339 15.603 32.669-4.714 13.33-19.346 20.317-32.669 15.603-5.458-1.93-11.202-2.907-17.072-2.907-28.232 0-51.2 22.968-51.2 51.2 0 5.87 0.978 11.614 2.907 17.072 4.712 13.33-2.272 27.957-15.603 32.669-2.819 0.997-5.701 1.47-8.533 1.47z","M972.8 537.6c0-125.902-39.125-245.808-113.144-347.061-19.077-56.602-62.358-103.118-119.782-125.437-27.84-39.357-73.706-65.102-125.474-65.102-53.368 0-100.459 27.365-128 68.795-27.539-41.43-74.632-68.795-128-68.795-51.768 0-97.634 25.746-125.474 65.101-57.426 22.318-100.706 68.835-119.782 125.437-74.021 101.254-113.144 221.16-113.144 347.062 0 33.55 2.88 67.15 8.496 99.981-5.616 25.512-8.496 52.053-8.496 79.219 0 81.11 26.021 157.584 73.269 215.333 48.47 59.24 113.366 91.867 182.731 91.867 13.475 0 26.973-1.264 40.21-3.762 11.816 2.462 24.054 3.762 36.59 3.762 65.11 0 122.218-34.909 153.6-86.99 31.382 52.082 88.49 86.99 153.6 86.99 12.536 0 24.773-1.299 36.59-3.762 13.237 2.498 26.734 3.762 40.21 3.762 69.366 0 134.261-32.627 182.731-91.867 47.248-57.749 73.269-134.222 73.269-215.333 0-27.166-2.88-53.707-8.496-79.219 5.616-32.829 8.496-66.429 8.496-99.981zM332.8 972.8c-70.579 0-128-57.421-128-128 0-14.139-11.462-25.6-25.6-25.6s-25.6 11.461-25.6 25.6c0 44.83 16.547 85.866 43.854 117.325-84.488-31.562-146.254-129.587-146.254-245.325 0-59.299 16.667-117.138 46.931-162.859 7.803-11.789 4.573-27.674-7.218-35.477-11.789-7.806-27.672-4.573-35.477 7.218-1.424 2.152-2.813 4.328-4.184 6.514 0.8-82.074 19.802-161.253 55.642-233.307 7.995 37.645 26.485 72.339 54.010 100.434 5.013 5.117 11.648 7.685 18.288 7.685 6.464 0 12.933-2.434 17.914-7.314 10.099-9.894 10.266-26.102 0.37-36.202-28.293-28.88-43.875-67.054-43.875-107.491 0-44.954 19.518-86.454 51.72-115.006-0.339 4.158-0.52 8.362-0.52 12.606 0 10.326 1.034 20.654 3.072 30.696 2.466 12.138 13.138 20.51 25.062 20.51 1.688 0 3.402-0.168 5.122-0.517 13.856-2.814 22.806-16.326 19.994-30.182-1.36-6.696-2.050-13.595-2.050-20.507 0-56.464 45.936-102.4 102.4-102.4s102.4 45.936 102.4 102.4v346.419c-27.195-24.373-63.094-39.219-102.4-39.219-10.405 0-20.811 1.050-30.928 3.12-13.851 2.835-22.782 16.363-19.947 30.213s16.358 22.784 30.213 19.947c6.747-1.379 13.698-2.080 20.662-2.080 56.464 0 102.4 45.936 102.4 102.4v230.4c0 70.579-57.421 128-128 128zM775.346 962.123c27.306-31.458 43.854-72.493 43.854-117.323 0-14.139-11.461-25.6-25.6-25.6s-25.6 11.461-25.6 25.6c0 70.579-57.421 128-128 128s-128-57.421-128-128v-230.4c0-56.464 45.936-102.4 102.4-102.4 6.965 0 13.915 0.701 20.662 2.082 13.846 2.834 27.378-6.098 30.213-19.947 2.835-13.851-6.096-27.378-19.947-30.213-10.117-2.070-20.523-3.12-30.928-3.12-39.306 0-75.205 14.846-102.4 39.219v-346.421c0-56.464 45.936-102.4 102.4-102.4s102.4 45.936 102.4 102.4c0 6.912-0.69 13.811-2.048 20.506-2.814 13.856 6.138 27.368 19.994 30.182 1.718 0.349 3.432 0.517 5.12 0.517 11.922 0 22.597-8.374 25.061-20.51 2.040-10.040 3.074-20.368 3.074-30.694 0-4.245-0.181-8.448-0.52-12.606 32.202 28.552 51.72 70.053 51.72 115.006 0 40.437-15.582 78.611-43.877 107.491-9.896 10.099-9.73 26.307 0.37 36.202 4.982 4.882 11.45 7.314 17.914 7.314 6.638 0 13.275-2.566 18.288-7.685 27.526-28.094 46.016-62.789 54.010-100.434 35.838 72.054 54.842 151.234 55.642 233.307-1.371-2.186-2.76-4.363-4.184-6.514-7.803-11.79-23.686-15.019-35.477-7.218-11.79 7.803-15.022 23.688-7.218 35.477 30.266 45.722 46.933 103.56 46.933 162.859 0 115.736-61.766 213.763-146.254 245.323z","M332.8 358.4c-42.347 0-76.8-34.453-76.8-76.8 0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6c0 14.115 11.485 25.6 25.6 25.6 14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6z","M328.429 768.011c-2.832 0-5.71-0.472-8.533-1.47-13.33-4.712-20.315-19.339-15.602-32.669 1.93-5.458 2.907-11.202 2.907-17.072 0-28.232-22.968-51.2-51.2-51.2-5.87 0-11.614 0.978-17.070 2.907-13.33 4.712-27.955-2.272-32.669-15.603-4.712-13.33 2.272-27.957 15.602-32.669 10.95-3.87 22.437-5.835 34.136-5.835 56.464 0 102.4 45.936 102.4 102.4 0 11.699-1.963 23.186-5.835 34.138-3.715 10.507-13.594 17.074-24.136 17.074z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0},{"f":0},{"f":0},{"f":0}]},"tags":["brain","mind","psychology","think","idea","head"],"defaultCode":59378,"grid":20},"attrs":[{},{},{},{},{}],"properties":{"name":"brain","prevSize":20,"code":59378,"ligatures":"brain, mind","order":133,"id":34},"setIdx":0,"setId":2,"iconIdx":33},{"icon":{"paths":["M844.8 972.8c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM844.8 768c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z","M486.4 972.8c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM486.4 768c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8c42.347 0 76.8-34.453 76.8-76.8s-34.453-76.8-76.8-76.8z","M128 972.8c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM128 768c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z","M844.8 614.4c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM844.8 409.6c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8c0-42.347-34.453-76.8-76.8-76.8z","M486.4 614.4c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM486.4 409.6c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8c42.347 0 76.8-34.453 76.8-76.8s-34.453-76.8-76.8-76.8z","M128 614.4c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM128 409.6c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8c0-42.347-34.453-76.8-76.8-76.8z","M844.8 256c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM844.8 51.2c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z","M486.4 256c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM486.4 51.2c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8c42.347 0 76.8-34.453 76.8-76.8s-34.453-76.8-76.8-76.8z","M128 256c-70.579 0-128-57.421-128-128s57.421-128 128-128 128 57.421 128 128-57.421 128-128 128zM128 51.2c-42.347 0-76.8 34.453-76.8 76.8s34.453 76.8 76.8 76.8 76.8-34.453 76.8-76.8-34.453-76.8-76.8-76.8z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["icons","grid","circles","apps"],"defaultCode":59518,"grid":20},"attrs":[],"properties":{"name":"icons","prevSize":20,"code":59518,"ligatures":"icons, grid","order":134,"id":35},"setIdx":0,"setId":2,"iconIdx":34},{"icon":{"paths":["M179.2 972.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM76.8 768c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M537.6 972.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM435.2 768c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M896 972.8h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM793.6 768c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M179.2 614.4h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM76.8 409.6c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M537.6 614.4h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM435.2 409.6c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M896 614.4h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM793.6 409.6c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M179.2 256h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM76.8 51.2c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M537.6 256h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM435.2 51.2c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z","M896 256h-102.4c-42.347 0-76.8-34.453-76.8-76.8v-102.4c0-42.347 34.453-76.8 76.8-76.8h102.4c42.347 0 76.8 34.453 76.8 76.8v102.4c0 42.347-34.453 76.8-76.8 76.8zM793.6 51.2c-14.115 0-25.6 11.485-25.6 25.6v102.4c0 14.115 11.485 25.6 25.6 25.6h102.4c14.115 0 25.6-11.485 25.6-25.6v-102.4c0-14.115-11.485-25.6-25.6-25.6h-102.4z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["icons","grid","apps"],"defaultCode":59520,"grid":20},"attrs":[],"properties":{"name":"icons2","prevSize":20,"code":59520,"ligatures":"icons2, grid2","order":135,"id":36},"setIdx":0,"setId":2,"iconIdx":35},{"icon":{"paths":["M870.4 668.174v-79.374c0-42.349-34.451-76.8-76.8-76.8h-281.6v-104.976c58.355-11.893 102.4-63.61 102.4-125.424 0-70.579-57.421-128-128-128s-128 57.421-128 128c0 61.814 44.045 113.531 102.4 125.424v104.976h-281.6c-42.347 0-76.8 34.451-76.8 76.8v79.374c-58.355 11.894-102.4 63.611-102.4 125.426 0 70.579 57.421 128 128 128s128-57.421 128-128c0-61.814-44.045-113.531-102.4-125.426v-79.374c0-14.115 11.485-25.6 25.6-25.6h281.6v104.974c-58.355 11.894-102.4 63.611-102.4 125.426 0 70.579 57.421 128 128 128s128-57.421 128-128c0-61.814-44.045-113.531-102.4-125.426v-104.974h281.6c14.115 0 25.6 11.485 25.6 25.6v79.374c-58.355 11.894-102.4 63.611-102.4 125.426 0 70.579 57.421 128 128 128s128-57.421 128-128c0-61.814-44.045-113.531-102.4-125.426zM409.6 281.6c0-42.347 34.453-76.8 76.8-76.8s76.8 34.453 76.8 76.8-34.453 76.8-76.8 76.8c-42.347 0-76.8-34.453-76.8-76.8zM204.8 793.6c0 42.347-34.453 76.8-76.8 76.8s-76.8-34.453-76.8-76.8 34.453-76.8 76.8-76.8 76.8 34.453 76.8 76.8zM563.2 793.6c0 42.347-34.453 76.8-76.8 76.8s-76.8-34.453-76.8-76.8 34.453-76.8 76.8-76.8c42.347 0 76.8 34.453 76.8 76.8zM844.8 870.4c-42.347 0-76.8-34.453-76.8-76.8s34.453-76.8 76.8-76.8 76.8 34.453 76.8 76.8-34.453 76.8-76.8 76.8z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["site-map","tree"],"defaultCode":59523,"grid":20},"attrs":[],"properties":{"name":"site-map","prevSize":20,"code":59523,"ligatures":"site-map, tree2","order":136,"id":37},"setIdx":0,"setId":2,"iconIdx":36},{"icon":{"paths":["M819.2 179.2v-25.6c0-20.061-12.354-37.533-36.715-51.933-17.598-10.402-42.042-19.557-72.651-27.21-59.995-14.997-139.344-23.258-223.434-23.258-84.088 0-163.438 8.261-223.432 23.259-30.61 7.653-55.053 16.806-72.653 27.21-24.362 14.398-36.715 31.87-36.715 51.931v25.6c0 134.691 81.574 255.944 204.795 307.288v102.222c-123.221 51.346-204.795 172.598-204.795 307.29v25.6c0 20.059 12.354 37.533 36.715 51.933 17.6 10.402 42.043 19.557 72.653 27.21 59.994 14.998 139.344 23.258 223.432 23.258 84.090 0 163.438-8.259 223.434-23.258 30.61-7.653 55.053-16.808 72.651-27.21 24.362-14.4 36.715-31.874 36.715-51.933v-25.6c0-134.691-81.573-255.944-204.794-307.29v-102.222c123.221-51.344 204.794-172.597 204.794-307.288zM287.322 121.309c54.56-12.194 125.261-18.909 199.078-18.909 73.819 0 144.52 6.715 199.080 18.909 58.867 13.157 76.701 27.336 81.366 32.291-4.666 4.955-22.499 19.134-81.366 32.291-54.56 12.194-125.261 18.909-199.080 18.909-73.818 0-144.518-6.715-199.078-18.909-58.869-13.157-76.702-27.336-81.37-32.291 4.667-4.955 22.501-19.134 81.37-32.291zM580.275 630.418c112.285 39.69 187.725 146.419 187.725 265.582v24.238c-2.141 2.909-16.598 18.92-82.52 33.653-54.56 12.194-125.261 18.909-199.080 18.909-73.818 0-144.52-6.715-199.078-18.907-65.915-14.731-80.378-30.741-82.522-33.653v-24.24c0-119.163 75.442-225.893 187.726-265.582 10.229-3.616 17.067-13.286 17.067-24.136v-137.363c0-10.85-6.838-20.522-17.069-24.136-101.195-35.768-172.453-125.992-185.544-230.693 15.342 6.923 34.075 13.174 55.986 18.653 59.995 14.997 139.346 23.258 223.434 23.258 84.090 0 163.438-8.261 223.434-23.259 21.91-5.477 40.642-11.73 55.986-18.653-13.093 104.699-84.35 194.923-185.544 230.693-10.23 3.616-17.069 13.288-17.069 24.136v137.363c0 10.851 6.838 20.522 17.069 24.138z","M699.734 846.264c-115.798-40.933-187.734-139.586-187.734-257.464v-154.872c30.741-3.022 60.315-11.496 88.202-25.355 12.661-6.293 17.824-21.658 11.531-34.318s-21.658-17.826-34.318-11.531c-28.408 14.118-59.030 21.277-91.014 21.277s-62.605-7.158-91.013-21.278c-12.659-6.29-28.026-1.13-34.318 11.531s-1.13 28.026 11.531 34.318c27.885 13.859 57.461 22.333 88.2 25.355v154.874c0 117.878-71.936 216.531-187.734 257.464-10.762 3.803-17.706 14.272-17.022 25.666 0.682 11.394 8.826 20.96 19.963 23.453 50.294 11.254 126.824 26.218 210.394 26.218s160.099-14.963 210.394-26.218c11.139-2.494 19.282-12.059 19.965-23.453 0.68-11.394-6.261-21.862-17.024-25.666zM486.4 870.4c-44.885 0-87.093-4.464-124.762-10.478 34.070-21.573 63.706-48.766 87.586-80.626 15.019-20.035 27.45-41.557 37.174-64.211 9.726 22.654 22.155 44.174 37.174 64.211 23.88 31.858 53.515 59.051 87.586 80.626-37.666 6.014-79.874 10.478-124.758 10.478z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["hourglass","loading"],"defaultCode":59599,"grid":20},"attrs":[{},{}],"properties":{"name":"hourglass","prevSize":20,"code":59599,"ligatures":"hourglass, loading","order":137,"id":38},"setIdx":0,"setId":2,"iconIdx":37},{"icon":{"paths":["M1016.501 442.698c-9.997-9.997-26.206-9.997-36.203 0l-58.832 58.832c-2.63-105.486-44.947-204.27-119.835-279.16-77.362-77.365-180.222-119.97-289.63-119.97-152.28 0-291.122 83.699-362.342 218.435-6.606 12.499-1.83 27.989 10.669 34.597 12.498 6.606 27.989 1.83 34.597-10.669 62.33-117.914 183.826-191.163 317.077-191.163 194.014 0 352.501 154.966 358.224 347.619l-58.522-58.522c-9.997-9.997-26.206-9.997-36.203 0-9.998 9.998-9.998 26.206 0 36.205l102.4 102.4c4.998 4.998 11.549 7.498 18.101 7.498s13.102-2.499 18.101-7.499l102.4-102.4c9.998-9.997 9.998-26.205 0-36.203z","M863.674 668.566c-12.502-6.603-27.99-1.832-34.597 10.669-62.328 117.915-183.826 191.165-317.077 191.165-194.016 0-352.502-154.966-358.224-347.621l58.522 58.522c5 5 11.55 7.499 18.102 7.499s13.102-2.499 18.102-7.499c9.997-9.997 9.997-26.206 0-36.203l-102.4-102.4c-9.998-9.997-26.206-9.997-36.205 0l-102.4 102.4c-9.997 9.997-9.997 26.206 0 36.203 9.998 9.997 26.206 9.997 36.205 0l58.83-58.832c2.63 105.488 44.946 204.272 119.835 279.162 77.365 77.363 180.224 119.97 289.632 119.97 152.28 0 291.12-83.699 362.342-218.435 6.608-12.501 1.829-27.99-10.669-34.598z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["sync","spinner","loading","arrows"],"defaultCode":59610,"grid":20},"attrs":[{},{}],"properties":{"name":"sync","prevSize":20,"code":59610,"ligatures":"sync, spinner6","order":138,"id":39},"setIdx":0,"setId":2,"iconIdx":38},{"icon":{"paths":["M830.338 193.664c-91.869-91.869-214.016-142.464-343.938-142.464s-252.067 50.595-343.936 142.464c-91.869 91.869-142.464 214.014-142.464 343.936s50.595 252.069 142.464 343.938 214.014 142.462 343.936 142.462 252.069-50.594 343.938-142.462 142.462-214.016 142.462-343.938-50.594-252.067-142.462-343.936zM486.4 972.8c-239.97 0-435.2-195.23-435.2-435.2s195.23-435.2 435.2-435.2 435.2 195.23 435.2 435.2-195.23 435.2-435.2 435.2z","M774.614 371.2c-7.070-12.245-22.728-16.435-34.97-9.37l-251.92 145.445-196.342-137.482c-11.582-8.11-27.546-5.294-35.654 6.286s-5.294 27.544 6.286 35.654l209.702 146.835c0.051 0.035 0.106 0.066 0.158 0.101 0.429 0.296 0.866 0.574 1.31 0.843 0.118 0.072 0.237 0.147 0.357 0.216 0.446 0.259 0.901 0.502 1.363 0.734 0.11 0.056 0.219 0.118 0.33 0.171 0.518 0.251 1.046 0.485 1.581 0.701 0.315 0.126 0.634 0.234 0.95 0.35 0.234 0.085 0.467 0.17 0.702 0.246 0.346 0.112 0.691 0.213 1.038 0.309 0.219 0.062 0.438 0.122 0.659 0.178 0.347 0.088 0.696 0.166 1.045 0.238 0.237 0.048 0.477 0.093 0.715 0.136 0.331 0.058 0.661 0.115 0.992 0.16 0.299 0.042 0.6 0.072 0.901 0.101 0.274 0.029 0.546 0.061 0.819 0.080 0.594 0.040 1.189 0.066 1.786 0.066 0.971 0 1.944-0.062 2.917-0.174 0.024-0.003 0.050-0.005 0.074-0.006 0.946-0.112 1.888-0.285 2.824-0.502 0.069-0.018 0.139-0.032 0.208-0.048 0.883-0.214 1.758-0.48 2.626-0.794 0.128-0.045 0.253-0.094 0.379-0.142 0.813-0.307 1.619-0.653 2.41-1.051 0.162-0.080 0.317-0.17 0.477-0.254 0.286-0.15 0.576-0.294 0.859-0.458l266.043-153.6c12.248-7.069 16.443-22.725 9.374-34.97z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["clock","time"],"defaultCode":59624,"grid":20},"attrs":[],"properties":{"name":"clock3","prevSize":20,"code":59624,"ligatures":"clock3, time3","order":139,"id":40},"setIdx":0,"setId":2,"iconIdx":39},{"icon":{"paths":["M793.6 460.8h-34.562c-15.242-64.277-49.173-121.395-95.722-165.282l-38.478-174.243c-8.677-39.294-46.997-70.075-87.238-70.075h-204.8c-40.24 0-78.56 30.781-87.238 70.075l-38.478 174.242c-64.408 60.726-104.683 146.786-104.683 242.083 0 95.299 40.275 181.357 104.683 242.083l38.478 174.242c8.678 39.296 46.998 70.075 87.238 70.075h204.8c40.242 0 78.562-30.781 87.238-70.075l38.478-174.242c46.549-43.888 80.48-101.005 95.722-165.283h34.562c42.349 0 76.8-34.451 76.8-76.8 0-42.347-34.451-76.8-76.8-76.8zM295.557 132.315c3.458-15.656 21.21-29.915 37.243-29.915h204.8c16.034 0 33.786 14.259 37.242 29.915l25.741 116.563c-48.749-28.034-105.226-44.078-165.382-44.078s-116.635 16.045-165.384 44.078l25.741-116.563zM574.842 942.885c-3.456 15.656-21.208 29.915-37.242 29.915h-204.8c-16.034 0-33.786-14.259-37.243-29.915l-25.741-116.563c48.749 28.034 105.227 44.078 165.384 44.078s116.634-16.045 165.382-44.078l-25.741 116.563zM435.2 819.2c-155.275 0-281.6-126.325-281.6-281.6s126.325-281.6 281.6-281.6 281.6 126.325 281.6 281.6-126.325 281.6-281.6 281.6zM793.6 563.2h-26.574c0.645-8.45 0.974-16.987 0.974-25.6s-0.33-17.15-0.974-25.6h26.574c14.115 0 25.6 11.485 25.6 25.6s-11.485 25.6-25.6 25.6z","M435.198 563.2c-3.909 0-7.83-0.894-11.446-2.702l-102.4-51.2c-12.646-6.323-17.771-21.701-11.45-34.346 6.322-12.646 21.702-17.771 34.346-11.45l89.112 44.557 141.238-94.16c11.765-7.842 27.659-4.664 35.501 7.101 7.843 11.763 4.664 27.658-7.101 35.501l-153.6 102.4c-4.277 2.853-9.229 4.299-14.2 4.299z"],"attrs":[{},{}],"isMulticolor":false,"colorPermutations":{"6868681":[{"f":0},{"f":0}]},"tags":["watch","time"],"defaultCode":59625,"grid":20},"attrs":[{},{}],"properties":{"name":"watch","prevSize":20,"code":59625,"ligatures":"watch, time4","order":140,"id":41},"setIdx":0,"setId":2,"iconIdx":40},{"icon":{"paths":["M794.134 281.067c-76.134-76.134-175.515-120.557-282.134-126.701v-51.966h25.6c14.139 0 25.6-11.462 25.6-25.6s-11.461-25.6-25.6-25.6h-102.4c-14.138 0-25.6 11.462-25.6 25.6s11.462 25.6 25.6 25.6h25.6v51.966c-106.618 6.144-205.998 50.566-282.133 126.702-82.198 82.198-127.467 191.486-127.467 307.731 0 116.246 45.269 225.536 127.467 307.734 82.2 82.197 191.488 127.466 307.733 127.466 116.246 0 225.536-45.269 307.734-127.466 82.197-82.198 127.466-191.488 127.466-307.734 0-116.245-45.269-225.533-127.466-307.733zM486.4 972.8c-211.738 0-384-172.261-384-384 0-211.738 172.262-384 384-384 211.739 0 384 172.262 384 384 0 211.739-172.261 384-384 384z","M486.4 614.4c-14.138 0-25.6-11.461-25.6-25.6v-307.2c0-14.138 11.462-25.6 25.6-25.6s25.6 11.462 25.6 25.6v307.2c0 14.139-11.462 25.6-25.6 25.6z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["timer","time"],"defaultCode":59633,"grid":20},"attrs":[],"properties":{"name":"timer2","prevSize":20,"code":59633,"ligatures":"timer2, time12","order":141,"id":42},"setIdx":0,"setId":2,"iconIdx":41},{"icon":{"paths":["M256 768c-6.552 0-13.102-2.499-18.101-7.499l-204.8-204.8c-9.998-9.997-9.998-26.206 0-36.203l204.8-204.8c9.997-9.997 26.206-9.997 36.203 0 9.998 9.997 9.998 26.206 0 36.203l-186.699 186.699 186.698 186.699c9.998 9.997 9.998 26.206 0 36.203-4.998 4.998-11.549 7.498-18.101 7.498z","M768 768c-6.552 0-13.102-2.499-18.101-7.499-9.998-9.997-9.998-26.206 0-36.203l186.698-186.698-186.698-186.699c-9.998-9.997-9.998-26.206 0-36.203 9.997-9.997 26.206-9.997 36.203 0l204.8 204.8c9.998 9.997 9.998 26.206 0 36.203l-204.8 204.8c-5 5-11.55 7.499-18.102 7.499z","M383.976 768.003c-4.634 0-9.325-1.258-13.544-3.894-11.989-7.494-15.634-23.288-8.141-35.278l256-409.6c7.493-11.984 23.283-15.634 35.278-8.141 11.989 7.494 15.634 23.288 8.141 35.278l-256 409.6c-4.858 7.77-13.202 12.035-21.734 12.035z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["code","embed"],"defaultCode":59659,"grid":20},"attrs":[],"properties":{"name":"code","prevSize":20,"code":59659,"ligatures":"code, embed","order":142,"id":43},"setIdx":0,"setId":2,"iconIdx":42},{"icon":{"paths":["M819.2 614.4c-70.875 0-133.45 36.194-170.23 91.064l-250.981-125.491c7.51-21.278 11.611-44.154 11.611-67.973 0-23.821-4.101-46.698-11.613-67.979l250.974-125.496c36.779 54.875 99.358 91.075 170.238 91.075 112.926 0 204.8-91.872 204.8-204.8s-91.874-204.8-204.8-204.8-204.8 91.872-204.8 204.8c0 23.813 4.099 46.682 11.605 67.958l-250.978 125.499c-36.782-54.866-99.355-91.058-170.227-91.058-112.928 0-204.8 91.872-204.8 204.8 0 112.926 91.872 204.8 204.8 204.8 70.875 0 133.45-36.194 170.23-91.064l250.981 125.491c-7.51 21.278-11.611 44.154-11.611 67.973 0 112.926 91.874 204.8 204.8 204.8s204.8-91.874 204.8-204.8-91.874-204.8-204.8-204.8zM819.2 51.2c84.696 0 153.6 68.904 153.6 153.6s-68.904 153.6-153.6 153.6-153.6-68.904-153.6-153.6 68.904-153.6 153.6-153.6zM204.8 665.6c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6zM819.2 972.8c-84.696 0-153.6-68.904-153.6-153.6s68.904-153.6 153.6-153.6 153.6 68.904 153.6 153.6-68.904 153.6-153.6 153.6z"],"attrs":[],"isMulticolor":false,"colorPermutations":{"6868681":[]},"tags":["share","social"],"defaultCode":59680,"grid":20},"attrs":[],"properties":{"name":"share2","prevSize":20,"code":59680,"ligatures":"share3, social","order":143,"id":44},"setIdx":0,"setId":2,"iconIdx":43},{"icon":{"paths":["M512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 75 181t181 75 181-75 75-181-75-181-181-75v172l-214-214 214-214v172z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["replay"],"grid":24},"attrs":[{}],"properties":{"order":144,"id":3,"prevSize":24,"code":59649,"name":"replay"},"setIdx":0,"setId":2,"iconIdx":44},{"icon":{"paths":["M564 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-6 8-6 12v86q6 8 6 12zM648 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-18 0-26-4-4-2-10-6t-10-6q-18-10-18-60v-30q0-26 4-34l14-26q12-12 20-12 4 0 13-2t13-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["replay_10"],"grid":24},"attrs":[{}],"properties":{"order":145,"id":2,"prevSize":24,"code":59650,"name":"replay_10"},"setIdx":0,"setId":2,"iconIdx":45},{"icon":{"paths":["M572 648c0 7.531 13.843 14 22 14 4 0 8 0 12-4l8-10s4-8 4-12v-86c0-4-4-8-4-12 0-4.671-15.121-14-20-14-4 0-10 2-14 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"tags":["replay_30"],"grid":24},"attrs":[{}],"properties":{"order":146,"id":1,"prevSize":24,"code":59648,"name":"replay_30"},"setIdx":0,"setId":2,"iconIdx":46},{"icon":{"paths":["M42 426q194 0 332 138t138 332h-86q0-160-113-272t-271-112v-86zM42 598q124 0 212 87t88 211h-86q0-88-63-151t-151-63v-84zM42 768q52 0 90 38t38 90h-128v-128zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-298v-86h298v-596h-768v128h-86v-128q0-34 26-60t60-26h768z"],"attrs":[{}],"isMulticolor":false,"tags":["cast"],"grid":24},"attrs":[{}],"properties":{"order":147,"id":0,"prevSize":24,"code":58880,"name":"cast"},"setIdx":0,"setId":2,"iconIdx":47}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50}},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":4473924,"bgColor":16777215},"historySize":100,"showCodes":true}} \ No newline at end of file diff --git a/grails-app/assets/stylesheets/icomoon/style.css b/grails-app/assets/stylesheets/icomoon/style.css index ec04a19a7..20019f5a9 100644 --- a/grails-app/assets/stylesheets/icomoon/style.css +++ b/grails-app/assets/stylesheets/icomoon/style.css @@ -1,11 +1,11 @@ @font-face { font-family: 'icomoon'; - src: url('fonts/icomoon.eot?vuxibn'); - src: url('fonts/icomoon.eot?vuxibn#iefix') format('embedded-opentype'), - url('fonts/icomoon.woff2?vuxibn') format('woff2'), - url('fonts/icomoon.ttf?vuxibn') format('truetype'), - url('fonts/icomoon.woff?vuxibn') format('woff'), - url('fonts/icomoon.svg?vuxibn#icomoon') format('svg'); + src: url('fonts/icomoon.eot?5807zm'); + src: url('fonts/icomoon.eot?5807zm#iefix') format('embedded-opentype'), + url('fonts/icomoon.woff2?5807zm') format('woff2'), + url('fonts/icomoon.ttf?5807zm') format('truetype'), + url('fonts/icomoon.woff?5807zm') format('woff'), + url('fonts/icomoon.svg?5807zm#icomoon') format('svg'); font-weight: normal; font-style: normal; font-display: block; @@ -14,7 +14,7 @@ [class^="icon-"], [class*=" icon-"] { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'icomoon' !important; - speak: none; + speak: never; font-style: normal; font-weight: normal; font-variant: normal; @@ -26,17 +26,14 @@ -moz-osx-font-smoothing: grayscale; } -.icon-replay:before { - content: "\e901"; +.icon-checkmark:before { + content: "\ed6c"; } -.icon-replay_10:before { - content: "\e902"; +.icon-checkmark2:before { + content: "\ed6d"; } -.icon-replay_30:before { - content: "\e900"; -} -.icon-cast:before { - content: "\e600"; +.icon-checkmark3:before { + content: "\ed6e"; } .icon-clapboard-play:before { content: "\e959"; @@ -161,3 +158,15 @@ .icon-share2:before { content: "\e920"; } +.icon-replay:before { + content: "\e901"; +} +.icon-replay_10:before { + content: "\e902"; +} +.icon-replay_30:before { + content: "\e900"; +} +.icon-cast:before { + content: "\e600"; +} diff --git a/grails-app/controllers/streama/VideoController.groovy b/grails-app/controllers/streama/VideoController.groovy index f816226b6..42e627ab8 100644 --- a/grails-app/controllers/streama/VideoController.groovy +++ b/grails-app/controllers/streama/VideoController.groovy @@ -217,4 +217,25 @@ class VideoController { respond result } + @Transactional + def markAsUnviewed(Video videoInstance){ + ViewingStatus viewingStatus = videoInstance.getViewingStatus() + if(!viewingStatus){ + return + } + viewingStatus.delete() + render status: 200 + } + + @Transactional + def markCompleted(Video videoInstance){ + ViewingStatus viewingStatus = videoInstance.getViewingStatus() + if(!viewingStatus){ + return + } + viewingStatus.completed = true + viewingStatus.save flush:true + respond viewingStatus, [status: OK] + } + } diff --git a/grails-app/domain/streama/Video.groovy b/grails-app/domain/streama/Video.groovy index 0b6b9cc9f..c908acfed 100644 --- a/grails-app/domain/streama/Video.groovy +++ b/grails-app/domain/streama/Video.groovy @@ -51,6 +51,18 @@ class Video implements SimpleInstance{ ViewingStatus.findByVideoAndUser(this, springSecurityService.currentUser) } + String getStatus(){ + ViewingStatus viewingStatus = getViewingStatus() + if(viewingStatus?.completed || viewingStatus?.hasVideoEnded()){ + return VideoStatus.COMPLETED + } + else if(viewingStatus){ + return VideoStatus.VIEWING + } + return VideoStatus.UNVIEWED + } + + def getNextEpisode(){ if(!(this instanceof Episode)){ return @@ -167,6 +179,26 @@ class Video implements SimpleInstance{ return videoFiles.find{it.isDefault} ?: videoFiles[0] } + String getType(){ + if(this instanceof Movie){ + return 'movie' + } + if(this instanceof GenericVideo){ + return 'genericVideo' + } + if(this instanceof Episode){ + return 'episode' + } + } + + def getReleaseDate(){ + if(this instanceof Episode){ + return air_date + }else{ + return release_date + } + } + def inWatchlist(){ User currentUser = springSecurityService.currentUser Profile profile = currentUser.getProfileFromRequest() diff --git a/grails-app/services/streama/marshallers/MarshallerService.groovy b/grails-app/services/streama/marshallers/MarshallerService.groovy index 27234ea69..7ebe4b91c 100644 --- a/grails-app/services/streama/marshallers/MarshallerService.groovy +++ b/grails-app/services/streama/marshallers/MarshallerService.groovy @@ -306,6 +306,7 @@ class MarshallerService { returnArray['episodeString'] = episode.episodeString returnArray['air_date'] = episode.air_date returnArray['still_path'] = episode.still_path + returnArray['status'] = episode.getStatus() return returnArray; } @@ -355,6 +356,8 @@ class MarshallerService { returnArray['tags'] = movie.tags returnArray['genre'] = movie.genre returnArray['poster_image_src'] = movie.poster_image?.src + returnArray['status'] = movie.getStatus() + returnArray['inWatchlist'] = movie.inWatchlist() return returnArray; @@ -430,7 +433,14 @@ class MarshallerService { response['lastUpdated'] = watchlistEntry.lastUpdated response['tvShow'] = watchlistEntry.tvShow - response['video'] = watchlistEntry.video + response['video'] = [ + id: watchlistEntry.video.id, + mediaType: watchlistEntry.video.getType(), + poster_path: watchlistEntry.video.getPosterPath(), + inWatchlist: watchlistEntry.video.inWatchlist(), + release_date: watchlistEntry.video.getReleaseDate() + ] + return response; } diff --git a/grails-app/views/dash/_viewingStatus.gson b/grails-app/views/dash/_viewingStatus.gson index fbb9e1cbe..6ae0071e2 100644 --- a/grails-app/views/dash/_viewingStatus.gson +++ b/grails-app/views/dash/_viewingStatus.gson @@ -21,6 +21,7 @@ json g.render(viewingStatus, [includes: ['id', 'dateCreated', 'lastUpdated', 'cu popularity viewingStatus.video.popularity original_language viewingStatus.video.original_language title viewingStatus.video.getTitle() + status viewingStatus.video.getStatus() if (viewingStatus.video instanceof Movie) { Movie movie = viewingStatus.video as Movie diff --git a/grails-app/views/movie/_movie.gson b/grails-app/views/movie/_movie.gson index f67f970d0..69818056b 100644 --- a/grails-app/views/movie/_movie.gson +++ b/grails-app/views/movie/_movie.gson @@ -12,4 +12,5 @@ json g.render(movie, [deep:true, excludes: ['poster_image']]){ subtitles movie.getSubtitles()*.getSimpleInstance() poster_image_src movie.poster_image?.src inWatchlist movie.inWatchlist() + status movie.getStatus() } diff --git a/grails-app/views/watchlistEntry/_watchlistEntry.gson b/grails-app/views/watchlistEntry/_watchlistEntry.gson index b1db7ab32..aefbf9a4e 100644 --- a/grails-app/views/watchlistEntry/_watchlistEntry.gson +++ b/grails-app/views/watchlistEntry/_watchlistEntry.gson @@ -1,5 +1,6 @@ package watchlistEntry +import streama.Episode import streama.GenericVideo import streama.Movie import streama.TvShow @@ -33,6 +34,13 @@ json g.render(watchlistEntry, [deep:true, includes: ['id', 'dateCreated', 'lastU poster_image_src genericVideo.poster_image?.src inWatchlist genericVideo.inWatchlist() } + if (watchlistEntry.video instanceof Episode) { + Episode episode = watchlistEntry.video as Episode + + mediaType 'episode' + poster_image_src episode.getPosterPath() + inWatchlist episode.inWatchlist() + } } } if(watchlistEntry.tvShow){ diff --git a/src/main/groovy/streama/VideoStatics.groovy b/src/main/groovy/streama/VideoStatics.groovy new file mode 100644 index 000000000..0885b312b --- /dev/null +++ b/src/main/groovy/streama/VideoStatics.groovy @@ -0,0 +1,7 @@ +package streama + +class VideoStatus { + static public String COMPLETED = 'completed' + static public String VIEWING = 'viewing' + static public String UNVIEWED = 'unviewed' +}