From 6271b885ee55d1a41c17174e5e0f38f318496781 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Fri, 30 Oct 2020 14:35:07 -0300 Subject: [PATCH] [NEW] Threads (#2567) * [IMPROVEMENT] Mentions layout without background * Fix RoomItem * Fix tests * Smaller messagebox * Messagebox colors tweak * Beginning header buttons refactor * Add HeaderButtons * item with title * Refactor * Remove lib * Refactor * Update snapshot * Send to channel on messagebox * Add tshow * Add showMessageInMainThread to login.user reducer * Filter threads on main channel based on user setting * Send tshow * Add tunread * Move unread colors logic away from UnreadBadge component so it can be used on other components * Export UnreadBadge on index * Add empty test * Refactor * Update tests * Lint * Thread unread user and group on RoomItem * Thread badge working * Started ThreadMessagesView.Item * Fix separator * Reactivity working * Lint * custom emojis aren't necessary * Basic filter layout * Filtering layout * Refactor * apply filter * DropdownItemHeader * default all * few fixes * No data found * Fixes list performance issues * Use locale on date formats * Fixed minor styles * Thread badge * Refactor getBadgeColor * Fix send to channel background color * starting search threads * Fix lint and tests * Bump to 4.12.0 just for testing :) * Search input layout * query * starting threads header * fix unnecessary tlm on tmid messages * Fix thread header * lint * Fix thread header on ShareView * Add e2e tests * Fix subscriptions sort * Update stories and minor fixes * Fix button sizes on Messagebox * Remove comment * Unnecessary conditional * Add showMessageInMainThread to user collection * Fix thread header * Fix thread messages not working on tablet * Reset Messagebox.tshow after sending a message * Allow to send to channel when replying to a thread from main channel * Unnecessary theme prop * Address comments * Remove re-render * Fix scroll indicator bug * Fix style * Minor i18n fix * Fix dropdown height * I18n ptbr * I18n --- __mocks__/react-native-gesture-handler.js | 8 +- .../__snapshots__/Storyshots.test.js.snap | 20250 +++++++++++++++- android/app/build.gradle | 2 +- android/app/src/main/assets/fonts/custom.ttf | Bin 44044 -> 49044 bytes app/constants/colors.js | 6 +- app/containers/MessageBox/RecordAudio.js | 6 +- .../MessageBox/buttons/BaseButton.js | 7 +- .../MessageBox/buttons/SendButton.js | 2 + app/containers/MessageBox/index.js | 41 +- app/containers/MessageBox/styles.js | 25 +- app/containers/message/CallButton.js | 39 +- app/containers/message/Discussion.js | 12 +- app/containers/message/Thread.js | 33 +- app/containers/message/index.js | 15 +- app/containers/message/styles.js | 36 +- app/containers/message/utils.js | 14 - .../containers/OmnichannelStatus.js | 1 - app/i18n/locales/en.js | 10 +- app/i18n/locales/pt-BR.js | 10 +- app/lib/database/model/Message.js | 2 + app/lib/database/model/Subscription.js | 6 + app/lib/database/model/User.js | 2 + app/lib/database/model/migrations.js | 9 + app/lib/database/model/servers/migrations.js | 1 + app/lib/database/schema/app.js | 6 +- app/lib/database/schema/servers.js | 1 + .../helpers/mergeSubscriptionsRooms.js | 6 +- app/lib/methods/sendMessage.js | 7 +- app/lib/methods/subscriptions/rooms.js | 3 + app/lib/rocketchat.js | 28 +- app/lib/selection.json | 2 +- app/presentation/RoomItem/RoomItem.js | 18 +- app/presentation/RoomItem/index.js | 9 +- .../UnreadBadge/getUnreadStyle.js | 4 +- .../UnreadBadge/getUnreadStyle.test.js | 12 +- app/presentation/UnreadBadge/index.js | 4 +- app/sagas/login.js | 1 + app/stacks/MasterDetailStack/index.js | 1 - app/utils/room.js | 24 +- app/views/RoomView/Header/Header.js | 44 +- app/views/RoomView/Header/Icon.js | 9 +- app/views/RoomView/Header/RightButtons.js | 76 +- app/views/RoomView/Header/index.js | 12 +- app/views/RoomView/List.js | 26 +- app/views/RoomView/Separator.js | 2 +- app/views/RoomView/index.js | 61 +- app/views/RoomsListView/index.js | 2 +- app/views/RoomsListView/styles.js | 2 - app/views/SearchMessagesView/index.js | 2 +- app/views/ShareView/Header.js | 10 +- .../Dropdown/DropdownItem.js | 44 + .../Dropdown/DropdownItemFilter.js | 21 + .../Dropdown/DropdownItemHeader.js | 29 + .../ThreadMessagesView/Dropdown/index.js | 105 + app/views/ThreadMessagesView/Item.js | 139 + app/views/ThreadMessagesView/Item.stories.js | 138 + app/views/ThreadMessagesView/NoDataFound.js | 43 + app/views/ThreadMessagesView/SearchHeader.js | 49 + app/views/ThreadMessagesView/filters.js | 5 + app/views/ThreadMessagesView/index.js | 411 +- app/views/ThreadMessagesView/styles.js | 11 +- e2e/helpers/app.js | 6 +- e2e/tests/room/02-room.spec.js | 44 +- e2e/tests/room/04-roominfo.spec.js | 3 +- ios/RocketChatRN.xcodeproj/project.pbxproj | 4 +- ios/RocketChatRN/Info.plist | 2 +- ios/ShareRocketChatRN/Info.plist | 2 +- ios/custom.ttf | Bin 44044 -> 49044 bytes package.json | 4 - storybook/addons.js | 4 - storybook/index.js | 2 +- storybook/stories/HeaderButtons.js | 2 +- storybook/stories/RoomItem.js | 8 +- storybook/stories/index.js | 5 +- yarn.lock | 63 - 75 files changed, 21134 insertions(+), 919 deletions(-) create mode 100644 app/views/ThreadMessagesView/Dropdown/DropdownItem.js create mode 100644 app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js create mode 100644 app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js create mode 100644 app/views/ThreadMessagesView/Dropdown/index.js create mode 100644 app/views/ThreadMessagesView/Item.js create mode 100644 app/views/ThreadMessagesView/Item.stories.js create mode 100644 app/views/ThreadMessagesView/NoDataFound.js create mode 100644 app/views/ThreadMessagesView/SearchHeader.js create mode 100644 app/views/ThreadMessagesView/filters.js delete mode 100644 storybook/addons.js diff --git a/__mocks__/react-native-gesture-handler.js b/__mocks__/react-native-gesture-handler.js index 2f9960f4..349fd121 100644 --- a/__mocks__/react-native-gesture-handler.js +++ b/__mocks__/react-native-gesture-handler.js @@ -1,5 +1,5 @@ -export const RectButton = () => 'View'; +export const RectButton = ({ children }) => children; export const State = () => 'View'; -export const LongPressGestureHandler = () => 'View'; -export const BorderlessButton = () => 'View'; -export const PanGestureHandler = () => 'View'; +export const LongPressGestureHandler = ({ children }) => children; +export const BorderlessButton = ({ children }) => children; +export const PanGestureHandler = ({ children }) => children; diff --git a/__tests__/__snapshots__/Storyshots.test.js.snap b/__tests__/__snapshots__/Storyshots.test.js.snap index 46237d3a..ac8bb8e8 100644 --- a/__tests__/__snapshots__/Storyshots.test.js.snap +++ b/__tests__/__snapshots__/Storyshots.test.js.snap @@ -1128,7 +1128,7 @@ exports[`Storyshots Header Buttons badge 1`] = ` ] } > -  +  -  +  -  +  -  +  @@ -1566,7 +1566,7 @@ Array [ ] } > -  +  @@ -1774,7 +1774,7 @@ Array [ ] } > -  +  @@ -1876,7 +1876,7 @@ Array [ ] } > -  +  @@ -1978,7 +1978,7 @@ Array [ ] } > -  +  @@ -2080,7 +2080,7 @@ Array [ ] } > -  +  @@ -2180,7 +2180,7 @@ Array [ ] } > -  +  @@ -2248,7 +2248,7 @@ Array [ ] } > -  +  @@ -2343,7 +2343,7 @@ Array [ ] } > -  +  -  +  @@ -2457,7 +2457,7 @@ Array [ ] } > -  +  -  +  @@ -2603,7 +2603,7 @@ Array [ ] } > -  +  @@ -2714,8 +2714,54 @@ Array [ ] } > -  +  + + + 1 + + @@ -2809,7 +2855,7 @@ Array [ ] } > -  +  @@ -2920,8 +2966,54 @@ Array [ ] } > -  +  + + + 1 + + @@ -3015,7 +3107,7 @@ Array [ ] } > -  +  @@ -3126,8 +3218,54 @@ Array [ ] } > -  +  + + + 1 + + @@ -3658,7 +3796,7 @@ exports[`Storyshots List icon 1`] = ` ] } > -  +  @@ -3695,7 +3833,51 @@ exports[`Storyshots List pressable 1`] = ` ] } /> - View + + + + Press me + + + - View + + + + I'm disabled + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + -  +  @@ -5924,7 +7796,7 @@ exports[`Storyshots List with icon 1`] = ` ] } > -  +  @@ -6000,7 +7872,7 @@ exports[`Storyshots List with icon 1`] = ` ] } > -  +  @@ -6082,7 +7954,7 @@ exports[`Storyshots List with icon 1`] = ` ] } > -  +  @@ -6185,7 +8057,7 @@ exports[`Storyshots List with icon 1`] = ` ] } > -  +  @@ -7050,7 +8922,143 @@ exports[`Storyshots List with small font 1`] = ` ] } /> - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + - View + + + + +  + + + + + + Chats + + + All + + + + + +  + + + + -  +  @@ -13597,7 +16008,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -13778,9 +16189,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -13889,7 +16299,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -13899,7 +16309,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "flexDirection": "row", "flexWrap": "wrap", - "marginTop": 6, + "marginTop": 8, } } > @@ -13925,8 +16335,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -14004,8 +16414,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -14105,8 +16515,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -14184,8 +16594,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -14227,7 +16637,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -14299,7 +16709,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -14640,9 +17050,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -14757,7 +17166,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -14938,9 +17347,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -15049,7 +17457,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -15214,9 +17622,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -15270,7 +17677,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -15372,7 +17779,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -15552,9 +17959,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -15663,7 +18069,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -15689,7 +18095,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -15841,7 +18247,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -15867,7 +18273,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -16065,9 +18471,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -16327,9 +18732,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -16649,9 +19053,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -17108,9 +19511,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -17482,9 +19884,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -17911,9 +20312,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -18162,9 +20562,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -18413,9 +20812,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -18812,9 +21210,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -19259,9 +21656,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -19515,9 +21911,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -19771,9 +22166,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -20164,9 +22558,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -20423,9 +22816,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -20714,9 +23106,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -21027,9 +23418,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -21278,9 +23668,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -21337,7 +23726,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "flexDirection": "row", "flexWrap": "wrap", - "marginTop": 6, + "marginTop": 8, } } > @@ -21363,8 +23752,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -21442,8 +23831,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -21543,8 +23932,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -21622,8 +24011,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -21665,7 +24054,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -21867,9 +24256,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -21926,7 +24314,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "flexDirection": "row", "flexWrap": "wrap", - "marginTop": 6, + "marginTop": 8, } } > @@ -21952,8 +24340,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22053,8 +24441,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22154,8 +24542,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22255,8 +24643,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22334,8 +24722,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22413,8 +24801,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22492,8 +24880,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22571,8 +24959,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22650,8 +25038,8 @@ exports[`Storyshots Message list message 1`] = ` Object { "backgroundColor": "#ffffff", "borderRadius": 2, - "marginBottom": 6, - "marginRight": 6, + "marginBottom": 8, + "marginRight": 8, "opacity": 1, } } @@ -22693,7 +25081,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -22895,9 +25283,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -23125,9 +25512,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -23355,9 +25741,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -23585,9 +25970,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -23836,9 +26220,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -23954,7 +26337,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > - Nov 10, 2017 + November 10, 2017 - Nov 10, 2017 + November 10, 2017 -  +  -  +  @@ -26254,9 +28630,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -27334,9 +29709,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -27684,9 +30058,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -28090,9 +30463,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -28414,9 +30786,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -28489,7 +30860,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -28605,7 +30976,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -28803,9 +31174,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -28862,7 +31232,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "alignItems": "center", "flexDirection": "row", - "marginTop": 6, + "marginTop": 8, } } > @@ -28873,12 +31243,9 @@ exports[`Storyshots Message list message 1`] = ` "alignItems": "center", "borderRadius": 2, "flexDirection": "row", - "height": 44, "justifyContent": "center", - "paddingHorizontal": 15, - }, - Object { - "height": 30, + "paddingHorizontal": 12, + "paddingVertical": 8, }, Object { "backgroundColor": "#1d74f5", @@ -28893,11 +31260,11 @@ exports[`Storyshots Message list message 1`] = ` Array [ Object { "color": undefined, - "fontSize": 20, + "fontSize": 16, }, Array [ Object { - "marginRight": 6, + "marginRight": 8, }, Object { "color": "#ffffff", @@ -28912,7 +31279,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  - Nov 10 + November 10, 2017 + + + +  + + @@ -29128,9 +31548,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -29187,7 +31606,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "alignItems": "center", "flexDirection": "row", - "marginTop": 6, + "marginTop": 8, } } > @@ -29198,12 +31617,9 @@ exports[`Storyshots Message list message 1`] = ` "alignItems": "center", "borderRadius": 2, "flexDirection": "row", - "height": 44, "justifyContent": "center", - "paddingHorizontal": 15, - }, - Object { - "height": 30, + "paddingHorizontal": 12, + "paddingVertical": 8, }, Object { "backgroundColor": "#1d74f5", @@ -29218,11 +31634,11 @@ exports[`Storyshots Message list message 1`] = ` Array [ Object { "color": undefined, - "fontSize": 20, + "fontSize": 16, }, Array [ Object { - "marginRight": 6, + "marginRight": 8, }, Object { "color": "#ffffff", @@ -29237,7 +31653,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  - Nov 10 + November 10, 2017 + + + +  + + @@ -29344,7 +31813,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -29576,7 +32045,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -29808,7 +32277,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -30040,7 +32509,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -30272,7 +32741,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -30504,7 +32973,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -30736,7 +33205,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -31096,9 +33565,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -31155,7 +33623,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "alignItems": "center", "flexDirection": "row", - "marginTop": 6, + "marginTop": 8, } } > @@ -31166,12 +33634,9 @@ exports[`Storyshots Message list message 1`] = ` "alignItems": "center", "borderRadius": 2, "flexDirection": "row", - "height": 44, "justifyContent": "center", - "paddingHorizontal": 15, - }, - Object { - "height": 30, + "paddingHorizontal": 12, + "paddingVertical": 8, }, Object { "backgroundColor": "#1d74f5", @@ -31186,11 +33651,11 @@ exports[`Storyshots Message list message 1`] = ` Array [ Object { "color": undefined, - "fontSize": 20, + "fontSize": 16, }, Array [ Object { - "marginRight": 6, + "marginRight": 8, }, Object { "color": "#ffffff", @@ -31205,7 +33670,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  - Nov 10 + November 10, 2017 + + + +  + + @@ -31772,7 +34290,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -32573,9 +35091,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -32627,7 +35144,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "alignItems": "center", "flexDirection": "row", - "marginTop": 6, + "marginTop": 8, } } > @@ -32655,10 +35172,10 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "#1d74f5", "borderRadius": 2, "flexDirection": "row", - "height": 30, "justifyContent": "center", "opacity": 1, - "paddingHorizontal": 15, + "paddingHorizontal": 12, + "paddingVertical": 8, } } > @@ -32668,10 +35185,10 @@ exports[`Storyshots Message list message 1`] = ` Array [ Object { "color": "#ffffff", - "fontSize": 20, + "fontSize": 16, }, Object { - "marginRight": 6, + "marginRight": 8, }, Object { "fontFamily": "custom", @@ -32682,7 +35199,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -32978,10 +35493,10 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "#1d74f5", "borderRadius": 2, "flexDirection": "row", - "height": 30, "justifyContent": "center", "opacity": 1, - "paddingHorizontal": 15, + "paddingHorizontal": 12, + "paddingVertical": 8, } } > @@ -32991,10 +35506,10 @@ exports[`Storyshots Message list message 1`] = ` Array [ Object { "color": "#ffffff", - "fontSize": 20, + "fontSize": 16, }, Object { - "marginRight": 6, + "marginRight": 8, }, Object { "fontFamily": "custom", @@ -33005,7 +35520,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  - Nov 10 + November 10, 2017 @@ -33221,9 +35735,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -33275,7 +35788,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "alignItems": "center", "flexDirection": "row", - "marginTop": 6, + "marginTop": 8, } } > @@ -33303,10 +35816,10 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "#1d74f5", "borderRadius": 2, "flexDirection": "row", - "height": 30, "justifyContent": "center", "opacity": 1, - "paddingHorizontal": 15, + "paddingHorizontal": 12, + "paddingVertical": 8, } } > @@ -33316,10 +35829,10 @@ exports[`Storyshots Message list message 1`] = ` Array [ Object { "color": "#ffffff", - "fontSize": 20, + "fontSize": 16, }, Object { - "marginRight": 6, + "marginRight": 8, }, Object { "fontFamily": "custom", @@ -33330,7 +35843,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  - Nov 10 + November 10, 2017 @@ -33546,9 +36058,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -33600,7 +36111,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "alignItems": "center", "flexDirection": "row", - "marginTop": 6, + "marginTop": 8, } } > @@ -33628,10 +36139,10 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "#1d74f5", "borderRadius": 2, "flexDirection": "row", - "height": 30, "justifyContent": "center", "opacity": 1, - "paddingHorizontal": 15, + "paddingHorizontal": 12, + "paddingVertical": 8, } } > @@ -33641,10 +36152,10 @@ exports[`Storyshots Message list message 1`] = ` Array [ Object { "color": "#ffffff", - "fontSize": 20, + "fontSize": 16, }, Object { - "marginRight": 6, + "marginRight": 8, }, Object { "fontFamily": "custom", @@ -33655,7 +36166,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  - Nov 10 + November 10, 2017 @@ -33892,9 +36402,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -34259,9 +36768,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -34743,9 +37251,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -35364,9 +37871,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -36067,9 +38573,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -36126,7 +38631,7 @@ exports[`Storyshots Message list message 1`] = ` Object { "alignItems": "center", "flexDirection": "row", - "marginTop": 6, + "marginTop": 8, } } > @@ -36154,10 +38659,10 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "#1d74f5", "borderRadius": 2, "flexDirection": "row", - "height": 44, "justifyContent": "center", "opacity": 1, - "paddingHorizontal": 15, + "paddingHorizontal": 12, + "paddingVertical": 8, } } testID="message-broadcast-reply" @@ -36171,7 +38676,7 @@ exports[`Storyshots Message list message 1`] = ` "fontSize": 20, }, Object { - "marginRight": 6, + "marginRight": 8, }, Object { "fontFamily": "custom", @@ -36182,7 +38687,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  -  +  @@ -36827,9 +39330,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -36883,7 +39385,7 @@ exports[`Storyshots Message list message 1`] = ` ] } > -  +  @@ -37124,9 +39626,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -37381,9 +39882,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -40127,9 +42627,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -40378,9 +42877,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -40947,9 +43445,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -41381,9 +43878,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -41827,9 +44323,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -42065,9 +44560,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -42423,9 +44917,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -42706,9 +45199,8 @@ exports[`Storyshots Message list message 1`] = ` "backgroundColor": "transparent", "fontFamily": "System", "fontSize": 12, - "fontWeight": "300", - "lineHeight": 22, - "paddingLeft": 10, + "fontWeight": "400", + "paddingLeft": 8, }, Object { "color": "#9ca2a8", @@ -43209,7 +45701,368 @@ exports[`Storyshots RoomItem list roomitem 1`] = ` > Basic - View + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + User - View - View + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + diego.mello + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + + + + + + Type - View - View - View - View - View - View - View + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + +  + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + +  + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + +  + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + +  + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + +  + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + +  + + + rocket.cat + + + + + + User status - View - View - View - View - View + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + Alerts - View - View - View - View - View - View - View + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + unread + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + unread + + + + +999 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + user mentions + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + group mentions + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + thread unread + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + thread unread user + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + thread unread group + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + user mentions priority 1 + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + group mentions priority 2 + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + thread unread priority 3 + + + + 1 + + + + + + + Last Message - View - View - View - View - View - View - View + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + 10:00 + + + + + No Message + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + 10:00 + + + + + 2 + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + 10:00 + + + + + You: 1 + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + 10:00 + + + + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + 10:00 + + + + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + + + + 1 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + 10:00 + + + + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + + + + +999 + + + + + + + + + + + + +  + + + Read + + + + + + + +  + + + Favorite + + + + +  + + + Hide + + + + + + + + + + + + + + + rocket.cat + + + 10:00 + + + + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + + + + 1 + + + + + + + + + +`; + +exports[`Storyshots Thread Messages.Item badge 1`] = ` + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + +`; + +exports[`Storyshots Thread Messages.Item content 1`] = ` + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1000 + + + + +  + + + 1000 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Attachment title + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + Rocket Cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + +`; + +exports[`Storyshots Thread Messages.Item themes 1`] = ` + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + + + + + + + + + + rocket.cat + + + November 10, 2020 + + + + Message content + + + + +  + + + 1 + + + + +  + + + 1 + + + + +  + + + November 10, 2020 + + + + + + + + + `; @@ -43986,7 +63262,7 @@ exports[`Storyshots Unread Badge all 1`] = ` "paddingVertical": 3, }, Object { - "backgroundColor": "#DB0C27", + "backgroundColor": "#F5455C", "minWidth": 21, }, undefined, @@ -44026,7 +63302,7 @@ exports[`Storyshots Unread Badge all 1`] = ` "paddingVertical": 3, }, Object { - "backgroundColor": "#E26D0E", + "backgroundColor": "#F38C39", "minWidth": 21, }, undefined, @@ -44160,7 +63436,7 @@ exports[`Storyshots Unread Badge different mention types 1`] = ` "paddingVertical": 3, }, Object { - "backgroundColor": "#DB0C27", + "backgroundColor": "#F5455C", "minWidth": 21, }, undefined, @@ -44200,7 +63476,7 @@ exports[`Storyshots Unread Badge different mention types 1`] = ` "paddingVertical": 3, }, Object { - "backgroundColor": "#E26D0E", + "backgroundColor": "#F38C39", "minWidth": 21, }, undefined, @@ -44240,7 +63516,7 @@ exports[`Storyshots Unread Badge different mention types 1`] = ` "paddingVertical": 3, }, Object { - "backgroundColor": "#DB0C27", + "backgroundColor": "#F5455C", "minWidth": 21, }, undefined, @@ -44320,7 +63596,7 @@ exports[`Storyshots Unread Badge different mention types 1`] = ` "paddingVertical": 3, }, Object { - "backgroundColor": "#DB0C27", + "backgroundColor": "#F5455C", "minWidth": 21, }, undefined, @@ -44360,7 +63636,7 @@ exports[`Storyshots Unread Badge different mention types 1`] = ` "paddingVertical": 3, }, Object { - "backgroundColor": "#E26D0E", + "backgroundColor": "#F38C39", "minWidth": 21, }, undefined, @@ -44639,7 +63915,7 @@ Array [ "paddingVertical": 3, }, Object { - "backgroundColor": "#DB0C27", + "backgroundColor": "#F5455C", "minWidth": 21, }, undefined, @@ -44679,7 +63955,7 @@ Array [ "paddingVertical": 3, }, Object { - "backgroundColor": "#E26D0E", + "backgroundColor": "#F38C39", "minWidth": 21, }, undefined, @@ -44810,7 +64086,7 @@ Array [ "paddingVertical": 3, }, Object { - "backgroundColor": "#DB0C27", + "backgroundColor": "#F5455C", "minWidth": 21, }, undefined, @@ -44850,7 +64126,7 @@ Array [ "paddingVertical": 3, }, Object { - "backgroundColor": "#E26D0E", + "backgroundColor": "#F38C39", "minWidth": 21, }, undefined, @@ -44981,7 +64257,7 @@ Array [ "paddingVertical": 3, }, Object { - "backgroundColor": "#DB0C27", + "backgroundColor": "#F5455C", "minWidth": 21, }, undefined, @@ -45021,7 +64297,7 @@ Array [ "paddingVertical": 3, }, Object { - "backgroundColor": "#E26D0E", + "backgroundColor": "#F38C39", "minWidth": 21, }, undefined, diff --git a/android/app/build.gradle b/android/app/build.gradle index 59e9fc64..40300943 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -144,7 +144,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode VERSIONCODE as Integer - versionName "4.11.0" + versionName "4.12.0" vectorDrawables.useSupportLibrary = true if (isPlay) { manifestPlaceholders = [BugsnagAPIKey: BugsnagAPIKey as String] diff --git a/android/app/src/main/assets/fonts/custom.ttf b/android/app/src/main/assets/fonts/custom.ttf index 9077f7ef48956d2f8c1adf21c882fa41a8ce9c6e..68638321309ed229351989f8bcb9a98581afee95 100644 GIT binary patch delta 19857 zcmbt+34B|{o$#9(Nl)+TzVF+Td`UiJTfQyZu@l=#?A(rXAm_eG2!S*qk-|+NAu!xc zsVUG>pbIo%DOWM{_!UaqbX!_zDK$$Mn!-{_%hKgT;``5gvSW^Rf8Tye=DnGDbN*-M ze~+(w8Q=5?&T)w2I1QKQ2vdia8v}q{(wg~C_IPPCR-m-CggFAbZf#be&4}5Rh0vY_hiiaTmDx}M{?7VP) zW9G;!9QQaRN%M~L*LRQW-ky2^`fG+p?%X-Pe>eAAr02M&UxpIFUE@19zEo`f7Nq|U z-w*6QfA57bQ20G_A^Xk|1%Jb27n-^ewGD5996Jn-a4MKo@T~UisO(}KAZW{}?3@I`qJv)F_YAhqr6c{0v;)SF zBG4I0ha7elFQ6n!N2Q!Af4zn{$+b23^`wGV7k3nQs8s~FK(0eUC;D9ifJ1`L9{O?r z+ywOxRSxZQsNm<=Hx%!72jcwC&^DrIPuJ!bHa9e^j6|GPo6YKsL{`$>b6ZRb?g+s4 z2*B3Bd0;)8=yNN=9VQepr5XVg^>!bENGuXo@sUO{;0T2rg*}dN*l~d;9`|@-v1J!r zfZ{v%I1|-|3+h)?q_v0!MtyFyt9aw1Wv$)8Z$Ce{A!@G&u=CssuA1CO%Qr0?Sb=}z z*Biu-KX?l#dz+Ojb(mcrB+*9f6w#iwrC(wt<|>p{agC`M~3_RxA+4A z79SpAaX-q>@9o*(gWrap-ud%;dpG#JUf+h^UR;MvxH?+aV4xS?v&RglBFhEI1j%yi zxrYI9{D^kqP4r&;Lo`gUCt(Qh@JjA-?l3u@UanZwdVcUkqPo*6TD6*kT8+`7GZ=$L zqpo3(C>%S|av)u|HP&tS6h?LP4Yke4Y0+uWLRXc^*5suI<-)BhF2kwF6C@8_jZ{TrDWhGUYaGh+aSL z$fajBYqP)!m3F1gszQ@xE>{@~nRG>{PCX*bscsk;XsGPbE)i;i73qP7hJjQ(SR*XZ z^i;7g)pNu_zAh9`u`lRpxpG-yb1Cwl)9tmEG6->%<>bujIl@ArE2-gY2+MY_*UGcK%2B+U0rG{PSK5?7?=Qm3ZksznzTwD}@yNcV&UCdp< zQ2=TVa8n62!Nkd|`SY{ljwCW5Rk#KL644_cTM9so9SDHTH`yJ2mL=gg$ZASA)d!Ft zb)jfOtO`lX(}wDsc&R7IkU(r*P!O@VDiTa4gVpg4 zu>&Kd^q8tuYPBk24Ji>;E0I!MCO2c*JKZ1(mU4;MVlOMC(h0% z(bdMv9-E`1Y|e#=prCOLP{q{&`*tXcyDB1vhcK3~wN4a3 zjL0&Yn})q&a#^0|VWe^StmoFVj6RkjZ2{-b^UCXa4-W1~?%g5nkKakhh8+K@h3tU|q%Xwv&Qzl1%`Kn~;@_vG~p=5ecH3kxNv; zJ&%8lCpkB*7JPR6YXP9<2CxZ&M>xuWc2w}talzx3cEG*dda{;yOK>{}D~DP+3y5en zeMfM*3q$`1eiVxx!t=0J89c$2(RpIrkN-LNt{4322DGz2b`?D4hDa){3#hN#D{}>+*1n zE+#fk4-D5_`d@}BI%o(Cq4dQUYlW6rCKGEBwAYOpR<$oPyIkgF?W+u9EP`JYguy{+ zi~|GGuxF)E6{@U_BnrPuL~1kiv>{=I1ygVbx#MIFESQdq!B!uoK|>`C89UKUblkWQ z8R;WNA6D4u8DkXKX5dt}aI48>^kd`hk-I%nL(uea)bsF{bYA1P-7!K=3SMLJ!}nYV z3YU)EP@g_8yyAE&y*`qOb#|N_Ta{H|Rasm69jjMw;IRr-I-*gBGa7ZK1_n|<0Zu(- zav+9yut#by0PFFDatq0k9;5@^84=O}u@e`$}ysnSnRE6Ge zs00M+H3kjIR)XggCeed}*6&oC)LwhiQN`O8TKQpR=2^S~D6qX?3RMY^;StfE+B^r8y{Ib!}vYM(u@mPk$1=b!zg!n7aD6A5Lf!=(yI#A3j z)rwBEM8Oxg@rq@FL7||_JaKx+b2xm2%L7C0gHgI+3#Pd?VDB56fW$INF40%&^_F*s zlpx3az^Ki$ndY@d?A<&tu$hHScTKXVCt1^747y`6H_m&aQBNU{^MyR&SZNlDCuq(a z;Ti9@k4(@9y;pQs&7SawYPH~0&zq-q3TpMdxicxXAk3Rr?5qx8E>Kl7JzFkNJ)~68 z3;jWQqi?5AY7>sD4mQU!z?p!rnUEy&5Y*=%KpfrdA42!h)BY}?TWh%{@;DiS$?gSK z@EHB+h9qqW^y9RW9t^m0Q&FF~Az72}>pRizuQ&6e0x5~gsK&ferLn0MYC?$8=>j5S zi-a!Sz436g!Ql@qtgUVBPNf$4{I&`==2b46Ldz?3YPCgBo7KElr7%ETV{Z<2eR*hz zwzOn~a5d_Y*T|e?E5%j}pP=U8F5J;bj|8pf1A-U_fZatjAgFp^eLym?d{&m^<@x$h zsL>QE&AJ0ACDvAEU!RS)w8U|~yt%o&kO#Je9pXX;Pnz|GJal<&)WcTJ6Qw9*&HcFe z!H?Ofe!Nf4jDmFg24IB<96%Qr0TDxjuq10SvM7U@iK1<&(NPk=e2D+-FwqjWTa0Wd zMQJF;%oN);BW&Ub#sP#ck59PSt~w57ifp(D$6JmcKh8GT@eI8u^t=wk7HT3-k`-Kl zyNVjEVWgx#-%v$>ZKQ#l%WD{4la>fJqkbx$Tr3DhN=*@vLZNNpa zU8gf(h08}@4TKZbb`X+kYunhMHs;F63aI$`+HlmMtuwG-aqVEgMQ6msrgIJU&^5ux zU`Np7snBTIx(?I>VU$O`5l-1<0Kg>U$O0vCqYd#YU@e-u5Qy@ObEB*~>bvkXCw)hh0 zENEAxY{4-13Z9R@A@#%BXB?s=+BCpw);sY0&o+v`@wuL1i0Cx5^9X%7;u$^t*&45W zK?SJcLKnge_i$#Y&U%Dy<1wk%0J2;0Tc53UDpGbi1}^u$SeT@NL4Pl1rBgAUz8Ul5 z|K?69;y#4STr^U?C3h2djO@UF1%w*n8libV=n(YM*0OXWAR~iF6()c2s zsQ8uAsg+;FUyI__trES<3ql^iiw?u16qmo@ze4fCOB$_42@zbS)!ap`6(J|EJ}S@_ zWPk|>0x@j|)yxIlVeTkhSkZ}XQF^Rm;YPytbYV(wW^WeE`YgjN&E+`Aa86;Wyjj9D z6{1ZH@H*bEv1|PCu=BJt9QOJYYK5p*kkdqA(kTU{UFX&X78^v3Uat`isp?=5RCK{= znyF0S$+dJ>Wrsn*o!~~uZc@uxVN4#01BB>HYTT-&>2P!QPvYBQAW7tqQL`_wVIyA-Dz)N9rONpH>u3DRG@s4?o&>gomc_$SlM#tW=0)H)=ufzI+lr4R4%S62E9*ZV5x;ypyEB!%k< z{atmBNy*&}nxG9N3lt^-tacNvPsBkeU6}~w@E?j@83wv3Mwnh_q$uVtcDZA?yYLL| zF6N|e0F_MWEf&VZ0!1?^-BpaCY0QxtbfPR+&d3`|Q9sFDk zNDh*MAr(@|_?Mz&5*O~L`L!-OKN$@I3`FjSuvT+{7#e^A)o@+hFn1nzK9}RJ=e|mh zC%a(+KTmcwGy+*>dx7aPBsL1v8%%$})E!KL(TIRzWEg-mY-m!9E~-i8*nA-Ci1cJ1 zAj+Onx|ly#i3FvJ>`}aVrXlq9OzzDy4c{{JStUtt zhL!3DP0tP7?c9B|thSQ0qcmMq>u@T0AV?7&)MLPZ@Db1~w4*rCBzmMan1k6$G?^*U zqB0HRQ$VBvm!wlbw=5EB<^hQ@w1F^b-&I>q3SaTvzt(giU!^&*y5I& z+Fk7k1oYjZP{>#8u8hSxoeuqJK4^d3>{EX|bm6?;!5IP8JPR*+Ufr&oKNt$_1_{6Y z{F(z=o4u{9tg?S!MPW3&x~XTa6+bC)8Bm6fg2x&X-r?bg6u9w^iCpQIR^!ad(U*vvCf0OzZsyp>? z!*YaGN~&%O(u$_9`SRS`AfgPVD0y>{|@Q~pEn(VbSS_xV#N^rIxpw&E7e&@Icg7Wiy)WOjBlQih3Ag_e3S64$~n+p!8FA?Hx_zH%i+2~ z82&$*TtAxBVunU_(DHSpj}_lnTg9(8{Z6p($at!{>wKcT4tS4?=|oR? z<~ob+PfCqqC0fdQEG*MmGI)FOS(T_*`3wevt{}iH6h34h@$z8dPw07~0Fbd=zaDgB zcT;umfzG`QwFDV<2{K$0WTk^>KQn?tsFR)$1O7*E&g;#SBfEExpvmDqdxj_TIt!ib z9m{d=bK7x2Vut_+AV)f7WB=+v_mgr&;2CK|?>d}AgF}T6KCYQU`)(#Sr*r<0r>MsF z&o8`-4&KT}g(VB;Wzdcah#-eT$Pr2-ly-#h!B4p2hljA^Q1S1@53aqo_$Oj3HoW#4 zda>B>=RbQ`Wgh6`!+?CxlvGmnz;ldnYw4E3-mM|>DMZ|uF0pGew+4I?o@DbcWPmT6 zW=W^t6D1U!VsJrIEL98wFs7qA%arsb$i7h1P?JwLIdi57_W<_*$V6|?Pz3tt36D`S zz@Nh)570A1PWtMQ&GJ5LiZvwLf*{77Qq8v^&l)~ccyy6* zNI^)Ux7z=K2vR$b_PX80W4u{Viy!!_8BCcPDGO?(AQ(ZtT!QIva?Hjyjm4uSu+AuR zEO6jKXqIdSU;zo49HGWIALr4n^<|Oz`bb%Q@dYq(acqhO4z}xUyiL4)LaF0@LAtKTAj#|v>ClRC6JeJT9k}c?ezp#JB^hNom;;N^kbmkTD3)O)k-{` zf++Oj<-AS}0=34>YhBu6{kpok>%EtIi9@H;k!_lV;&uWthb(Kf=rJuWy8txIn0t=9 zfh@wW!rGn>>=kIWKz{%VFko{)G+^d7V2D64;+$0tJ0fQN`3N*nj33y4SNq^q)=FN zDve?xNZr_}my3I$IH+%R7SO-T#Zgi!&RXGF1yQ+x4zE~O1sE>R*}&arJ1AmWxIS(X zC?-z9`ojj5XCaLh=w;)n3r2eoc72^by7Kq{&fnjLzz~HVB zh;O?F2Nuimco{Yum!fC;+B?SF@EhxB?+dhgJiFSgm8!CGw`Z)KKE2vYti?y@Z&x?v z`pXmLlxwjn;{xXtnlKRc~nMyeO3#c7Pb8ZLO}_*+E9N+MLrdoJw8P*|4Fy zs>f=DvUSnu>Quw#y4poPpFdL;4rg0h4z_pftg3F+!XUF;Ik}Bw*&w5;lBm|00{;_W zwEPU;vj2cCBt>qdv0nO62l_Wzz{86^J;>buILdO6y8fTW2p%4v)`@g-3&6)?8}}vd zs&o1g8M`5hlOgI@yTTAbz_S2imF;d!VX~I~e(jhEPWlO0mlH7M5a{hV3mrHw2fHr0)y_`s!{1d_YL}Q zB_bN$RO4&Cwl|dV)s`=-9Jsk7&}0)WphhPu4bOuP-NY2yYK_9?Q1MuA)5%JO<mJHcUKi;%=h-+D{YiB1?CnhY8wLNv4wN1qr0?tIJ zf?@J!8uT8mM4@CNHxU{xOLVa>b&<#dFR0bgnAB4tE7B)6k1MC32YE&N;OF z3AeU~$rn9qv!!a@1(8S{YosetHXM?gm;Gl-&C|!W%y$?;12`iY&u|VY>e@QWCV{y< zTn{-!_iwF6aeD98?(wdgF{L6MFJEE{?iq78yERt9UhAn`oxlnN!k;N*3ATU+0_0JJ z#~B5{fh!_PxJ?dGbTCyFk}0Q%C$EdlOFGMkk&Z;XGCFs-3PX@EF_Bcp_KL4mHM-|Fz>fYW5^J3z)v zd&i7!=W3r|+j3Ic@H@cJ0rrhWFSFFkiy#VWS}?R6DV#p1XAI7i2j)Yn2aj`^=RAd; z1e*<5ZdO@z_0y&k@r2+MPTb2{fUsA3LJUdOA?KV65Pe|VO{k7$wl~my+mrO3?bYS5 z3<~afSn=f~1s22#5QZ{<9+`5^6ykxG0$fvrOmX_(+X3Uy_>MMzV6K$|wjgO(XaTb5b%sJtK=S=H$;QT- znm(IV&T)o}#wO5}Rg^`W3`X=!x@E1);tn}0oFR|RI?{+x$hpiJ@-@~Z`>pWnPu4U# zLyj%1xiUC%*U1%)hNfs)#d5Z_awx=&;Xe=)*j+&SXZU`WaYtfZ8-e;aH83AD(4$xZ zxppD^9Qe4Z_%rZ4!-KCZKRNl?3^bQV%vtsY9{z*3EaIPd;&-3TdXmd2k&D}k-$LUc zu4uskz+9kU7!8clI1I>MpJqxA=rr~>+LfeEtyBtWLSP!2RyjJ<*h^Px1Gog*Db z3}<_UCuYsBcpaPDJ@A_b?qIMup$DWRJ$4q$XUedr>JH}iD+MUhjRF9y5JL)HNxWpPNtaKMqtHh5-iYG}fUNo0T)NYJD$9AK^&_)0B!=;P9iU;I*=JY$pl zdm5z*G%4THIC)IWI>o8l12L3C6Ch+{30E?2aI;Jn%tJF$!izIz4clkU91?!Z!w_@; zO6mQn2jR};%EGbqIm;?Q4D33v^ztAOv$1dtM^E?09754|PB7mg_COi=%@TkXKn9yY z*_pwAZs_2WFl~L2rh>jR-H_Cp^vH=I)XpTQ&P7?{3^F(trkUbzQGCg-cx0K`3z!}GyZaie8Z(pKUt9VB#9Uf5ecd3nF zEmZ93XRC!k`p4viLNDYW*xhhsG7El1;I8_?7niA;RfKLh6vX_W>Bd6=4G*)BmCX;+ z2M@LK4Y9_EADQS4Cj(S_xS0>STq|1Jdgu%D!Got8A$CqB&%oX1V#O?z+#w(^`^nMb z3u?DUqfmR>1Hle&dYMzL&}iIhYj50AVYAmb>8Zo}c*5m@Hs)zF`c)DV1Yj0cYsLSnkjkdP+%JFzuHX1#Nia;^@ZC0xdsx;27{!uvYcCBb@>+NZ4 zTj6%O+z{_+-CFS^<2-~X;eY_QxRe|uTG*J>cj-_0L69eN+_m)mOXq_zvh%Wcv2KJW zE-%x-3E}o5HNG0yva!qCmV#kzKTx^-z-L+cVZA8ohapnDYJV0zoRvKEia|Ic_%*ea zzXWcM@ZcT7FD^dKtm3G5G0%6_7Jr1AYxQFBHg=TI7Vy|Rd%1`V&vBc`5>f}CY5`!4 zQha4|PBLDA90Q_`rAb0s63Jq+4%=}|^1%pvu|Kf;k?8Y})z^nyZLUzNezngppnwCZ z?I6q+KLocBw`Xx8=?8PTKap7EcB>Ild{Awua2XOd?278OT9;aDF;~DQ#d=+3#zN`{ zp^snL<{ngr9K~C8HU;>&7<|6bwzeU?TWK^aII6$uo5Ee-4EH6#eReu|RX_oBG)3RI zs(oQdG?A=Qqt!W;)>SrzQ>WD^vI=9+Zmar*fWW2I1%Y|&%HF-(0B08;V@G7)bt;8I zVH74AR=)6Bo+U)O^XkR%EO!kEf}CVVXFO_&c`$&tv1Cm#$@~L-^Xf4D=xTkA+$s^* zZEVwTV?H&)UBE_66z^c&6o;krxJYL<>xvIepUr9IBZ|u2#hcLwQen+z*}Ite9itfs za!}{7uR6<<(-DSW5O)jLL9Qb7$kElHpnvV??pAX(seX3Ef88rp_3nJ$U0?OewZ6sQ z{l&A-SY6j@!seHAAQr!33Tdx(TI3d9;w~rcpgHx@<2U%{*hst6xwN^tE7RP(#OZQ5 zmoztLx|*ApI-Te-`ThCtY~#)}!zJkMVSh`6IsG$?E-@m&#x`Pswdry?U8Ods<6V_5 zli77b9|4S@-%Wpat=sn&)1CfkuSTJR+_A4pQ=RF74YcupHBfr++ACLSXU3|78)gA6 z2~tQGw-9W<=YbXNA~>5IiZ?L*U}IWR_r!TP0}zD`H!H%t*W!{g%)vY0+(0}{)yD#i zQ9l-McNSSw*TCdi?Z6P>OcZT#XO@kp~IZO{9 z1LwqXdi${$h|SL&a|A4hd%=NfA#c-mECcNpS_Taw+jNWL^e@N!80s012MJu{yYae5 zXx;I3xevLgh=3&xA~gh^unCAmhc1s$a*Xu}SBojaa! zI-P=`)C(K5Mx*u>KpugFR7Dqedddx=j+ClkQLPEstVwsQ)8TYl;YI=4&8obP?uDoT zF!Wl?K8;4y=>&&PV>FIy^lpvW1Kvz#v!%{&3G2aG0lGIL!2)E)VDZa^?X0jy=hB+I zOpj!NvhHd#!bZ5r1eTFe&>TJpnnT&j+|11d#JxdsZMuX0=6WCQLiF#~SDJXn3ddwtrHjKY$DKOeA;APf~3LTX5IW1BBrHC?9oH$f;BfY0cS(szckh6-RR z*~SnQJn-`j32bMN_f};xV`G`jsy36UH6BY;$Kx#~__f62)rnYqxYcALLo=npPXhWM zlAk~|#34XZ@Dw}}XD79YAA=&`5GN0?@E)Y3672a0+Id5xX+3b|catn&#Y#9c{oF9U z{D%3tcGMV$Jz#+|;D9p_2dfY7XsS=Of`KZDEE45tN<$Ie0X`+nPR?8HHZQU{*dAi^ zCJk(bym?^nk-NcbVMulz2n8kQ5pW|If;$_!>yo2@w< zj#U=lLHH{tF+MxE+jCOi5URY`;MG@x+zbAY6*}LRSUB8lv+2I9Zz`*N3r-O^iN0d; z>>jEJHRw;iIMmoU!~&XR@&nUe|kXfsu-=>wM2aVC!XcX+l%9}E|NOL^a+#HKHXV&y| zuUXUGvt}gfc15EucQiBD*f2QQ&^XwmLMok7C4zXXU(&cb-rOADQZqjR_C7>72G;4)2sof z#5}AorDtxs!q6z&Xe7@kSPQ!0<~;qEjVooPmoKNgXxdB%4QM%#ZwQlbm{WQjl%-wV z5Ma;spxL>EJI37zNas`bpHky8UU5uo-kFJ@WFVB(mCR-&DRkh&?0l$@oB6=pmZ$IV z{lk_JQ(Vqyyr5Yd7@0z7T;_>ox*KE=gj2P6`Up;xGK&B9*__3eVaZllvOs=er5mTM zQ_OdQxw>HxmSjquohH~)mn;{YJeP)YOFo}Jor5`W(Vwwlf&B_+K$OUXD3B)`;q+C5 zwx4NLWT#F&!^K@ClS>dXX3hu{?eqQJsOFGTWvN$O^kKrYV}ZSORGMlEAR0Tf`2U9HFL%f{1}t*IT}0Y znibqm?)&66{1nI=wP0qLN1wYr1$x{)UvcE{g7TW0ZEbBCXCN@Iyu1ohTU%P%9X?-w zJYI$7U3T!`FPAKB5Q%v8p+o<+cu}2zi!Zh(lI`uuM0@v!{<-Vd&+Xsv7Wkvr*4B)G zK?g=9suiTRwsu%f3IFwADwP}rgMj*fB&>hd|`<8vUKI(f&<9&11t(#NP+FDW3)^>td=>hFZho}J89G#hGw5rbx0Z9s5a$Ee-N?%`}a7h~sv-Nwn%bziCPf;*v& zz`DVo6kr+_*vhgs7PN}6bsO21hGWj0%%jqkUGQ&~(PT)zxIlmLm5r;9FapAej!bXX z6#oqL#W25SOT3xM?PlE;PbH%qIyC~OOrbDnMu-Xn@d3AgUD-M5W-Hr?AXI_S@>Lk3 zL<;C_cdqFkZ!Tw!+~q*idS!R0V!;wK*JoPd2riWLHSw0XrQQ%U%xPsC#8GRn*E+PS zP=$Q?H|nQNU+q&K1=4bq=D&LR*b5~$G*6x}KeAQ6FqQxR&IKR)-4hXd{)G7yoyek4 z9)!v~;Q({63)2jHEC6%FEdKyn`!zQULnW$I@^O&xGiWouEa5Q;xfiAt9sfff&eI3K zRz{!xniXUX9?TzEvWR411P%~KTDbYJ@L7AL?3B*?T! zvJ*M;+GpL#hA*(V9EWZiY8g>zRS2Y2tBp68YS3^W`vVYqgTB&Jd>>UV zDbwx`szC~OEpKh@>DpJFsFkAK|H3z@c=+2GpnVZ}zS3*+D%d3-V4xM4RG=A2!;Zaw0YuiFA4j zr|ot=xK9^bp6G6EUG8$#CK4BBsH$?idZ0#EezOD{4(LvVs{#x#KtH<2t(EU6 zu!|}ki2Co1E{LEbT49->+b(GH+XRqyx8=3M_EIXpoHhG^+4ZZ8pw$Xh>_MdGcCE0S z1*mm11Ua>xp19XRe}b|(7y~GhxJ`KKC+8X3Kj1VHAi3W@^o{2kM5o{64U&hX8gxDK z59*M~PbT5`1X%`ogSGOh-%sV13OI!fqGANLR_vP@;NQHyk z%kX{_!Zncp5WJsyn_PzFe-j#TL8yW-4B@n#mfDys)qe%v>mb|& z_1DAu1iUYWa2bTVA-zly%yB=IKC({a!fY^kDISCwpX)FS`6Z~JAjB_#Z&T9uAonwP zPrv{)kbfP7^$^~d%E*&>0KVrTeFX&8&oZeVtDoc0Bqa7r1y}=enss&z!gF%Iv?QYt zXCTZ%U=6U@yaVq%1lGn6Ah2(2#w^?pVG6?AP;L*rcSG0*;RFP>gwH|#1F-%mB!f-@ zCj%)2sUg-FYh*iwM<7f=g@>U0>kwz(AfSoQ1sO_@LfI=yFQLlPtJD9y@CRrRVO zzm&g&|EaoKy+Qqy&@OBfek5{YR=h)eUlY`v)YfZH>dJKA)|>VB8&rmMh8Ked%ReQlZ%sA*HqTLTYFvI(Omt~`u9>jshb)G8zve) zYHV(NqVc_^JJRc#&CU0;SX&miyw|$F^@%pI?Si%!+uPeOX+PcmPDi+7tm9ug;SUsa z{XO$q_tNg?x?k<7?zyMu&0gGF+q<^+K<{_w)XurTZ%5xR`#1Feu>X&9tLOf4Uemnq z49pw2W6(c%<>2Wd^-%LrerUnNL+{UjYJqjZoCR+#{QmGABRdvl7ONNUU;M92!b|c? zolB1{TfFR@<(Du2`-&5z4WnOMxo+isV;7CRvufe0!>~XM=lv9EK`X+382-+f<<#E$ HZ%6+Zn$4;G delta 15539 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 o;NwMy25Sc=27i6Ya{`sQ>@~ diff --git a/app/constants/colors.js b/app/constants/colors.js index 0e6e7843..6a2e33f3 100644 --- a/app/constants/colors.js +++ b/app/constants/colors.js @@ -37,7 +37,7 @@ export const themes = { auxiliaryText: '#9ca2a8', infoText: '#6d6d72', tintColor: '#1d74f5', - auxiliaryTintColor: '#caced1', + auxiliaryTintColor: '#6C727A', actionTintColor: '#1d74f5', separatorColor: '#cbcbcc', navbarBackground: '#ffffff', @@ -82,7 +82,7 @@ export const themes = { auxiliaryText: '#9297a2', infoText: '#6D6D72', tintColor: '#1d74f5', - auxiliaryTintColor: '#cdcdcd', + auxiliaryTintColor: '#f9f9f9', actionTintColor: '#1d74f5', separatorColor: '#2b2b2d', navbarBackground: '#0b182c', @@ -127,7 +127,7 @@ export const themes = { auxiliaryText: '#b2b8c6', infoText: '#6d6d72', tintColor: '#1e9bfe', - auxiliaryTintColor: '#cdcdcd', + auxiliaryTintColor: '#f9f9f9', actionTintColor: '#1e9bfe', separatorColor: '#272728', navbarBackground: '#0d0d0d', diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index 5d277023..fca259f3 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -186,7 +186,7 @@ export default class RecordAudio extends React.PureComponent { accessibilityLabel={I18n.t('Send_audio_message')} accessibilityTraits='button' > - + ); } @@ -201,7 +201,7 @@ export default class RecordAudio extends React.PureComponent { style={styles.actionButton} > @@ -219,7 +219,7 @@ export default class RecordAudio extends React.PureComponent { style={styles.actionButton} > diff --git a/app/containers/MessageBox/buttons/BaseButton.js b/app/containers/MessageBox/buttons/BaseButton.js index 78e28afe..b2d37445 100644 --- a/app/containers/MessageBox/buttons/BaseButton.js +++ b/app/containers/MessageBox/buttons/BaseButton.js @@ -8,7 +8,7 @@ import styles from '../styles'; import I18n from '../../../i18n'; const BaseButton = React.memo(({ - onPress, testID, accessibilityLabel, icon, theme + onPress, testID, accessibilityLabel, icon, theme, color }) => ( - + )); @@ -26,7 +26,8 @@ BaseButton.propTypes = { onPress: PropTypes.func.isRequired, testID: PropTypes.string.isRequired, accessibilityLabel: PropTypes.string.isRequired, - icon: PropTypes.string.isRequired + icon: PropTypes.string.isRequired, + color: PropTypes.string }; export default BaseButton; diff --git a/app/containers/MessageBox/buttons/SendButton.js b/app/containers/MessageBox/buttons/SendButton.js index 4419a316..7f465db8 100644 --- a/app/containers/MessageBox/buttons/SendButton.js +++ b/app/containers/MessageBox/buttons/SendButton.js @@ -2,6 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import BaseButton from './BaseButton'; +import { themes } from '../../../constants/colors'; const SendButton = React.memo(({ theme, onPress }) => ( ( accessibilityLabel='Send_message' icon='send-filled' theme={theme} + color={themes[theme].tintColor} /> )); diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 3afa274b..8da731b1 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { - View, Alert, Keyboard, NativeModules + View, Alert, Keyboard, NativeModules, Text } from 'react-native'; import { connect } from 'react-redux'; import { KeyboardAccessoryView } from 'react-native-keyboard-input'; @@ -9,6 +9,7 @@ import ImagePicker from 'react-native-image-crop-picker'; import equal from 'deep-equal'; import DocumentPicker from 'react-native-document-picker'; import { Q } from '@nozbe/watermelondb'; +import { TouchableWithoutFeedback } from 'react-native-gesture-handler'; import { generateTriggerId } from '../../lib/methods/actions'; import TextInput from '../../presentation/TextInput'; @@ -47,6 +48,7 @@ import { getUserSelector } from '../../selectors/login'; import Navigation from '../../lib/Navigation'; import { withActionSheet } from '../ActionSheet'; import { sanitizeLikeString } from '../../lib/database/utils'; +import { CustomIcon } from '../../lib/Icons'; const imagePickerConfig = { cropping: true, @@ -121,7 +123,8 @@ class MessageBox extends Component { trackingType: '', commandPreview: [], showCommandPreview: false, - command: {} + command: {}, + tshow: false }; this.text = ''; this.selection = { start: 0, end: 0 }; @@ -254,7 +257,7 @@ class MessageBox extends Component { shouldComponentUpdate(nextProps, nextState) { const { - showEmojiKeyboard, showSend, recording, mentions, commandPreview + showEmojiKeyboard, showSend, recording, mentions, commandPreview, tshow } = this.state; const { @@ -284,6 +287,9 @@ class MessageBox extends Component { if (nextState.recording !== recording) { return true; } + if (nextState.tshow !== tshow) { + return true; + } if (!equal(nextState.mentions, mentions)) { return true; } @@ -576,6 +582,7 @@ class MessageBox extends Component { clearInput = () => { this.setInput(''); this.setShowSend(false); + this.setState({ tshow: false }); } canUploadFile = (file) => { @@ -709,6 +716,7 @@ class MessageBox extends Component { } submit = async() => { + const { tshow } = this.state; const { onSubmit, rid: roomId, tmid, showSend, sharing } = this.props; @@ -772,7 +780,7 @@ class MessageBox extends Component { // Thread if (threadsEnabled && replyWithMention) { - onSubmit(message, replyingMessage.id); + onSubmit(message, replyingMessage.id, tshow); // Legacy reply or quote (quote is a reply without mention) } else { @@ -792,7 +800,7 @@ class MessageBox extends Component { // Normal message } else { - onSubmit(message); + onSubmit(message, undefined, tshow); } } @@ -844,6 +852,27 @@ class MessageBox extends Component { } } + onPressSendToChannel = () => this.setState(({ tshow }) => ({ tshow: !tshow })) + + renderSendToChannel = () => { + const { tshow } = this.state; + const { theme, tmid, replying } = this.props; + + if (!tmid && !replying) { + return null; + } + return ( + + + {I18n.t('Messagebox_Send_to_channel')} + + ); + } + renderContent = () => { const { recording, showEmojiKeyboard, showSend, mentions, trackingType, commandPreview, showCommandPreview @@ -903,6 +932,7 @@ class MessageBox extends Component { keyboardType='twitter' blurOnSubmit={false} placeholder={I18n.t('New_Message')} + placeholderTextColor={themes[theme].auxiliaryTintColor} onChangeText={this.onChangeText} onSelectionChange={this.onSelectionChange} underlineColorAndroid='transparent' @@ -938,6 +968,7 @@ class MessageBox extends Component { {textInputAndButtons} {recordAudio} + {this.renderSendToChannel()} {children} diff --git a/app/containers/MessageBox/styles.js b/app/containers/MessageBox/styles.js index 96001fc1..212ec319 100644 --- a/app/containers/MessageBox/styles.js +++ b/app/containers/MessageBox/styles.js @@ -7,12 +7,6 @@ const MENTION_HEIGHT = 50; const SCROLLVIEW_MENTION_HEIGHT = 4 * MENTION_HEIGHT; export default StyleSheet.create({ - textBox: { - flex: 0, - alignItems: 'center', - borderTopWidth: StyleSheet.hairlineWidth, - zIndex: 2 - }, composer: { flexDirection: 'column', borderTopWidth: 1 @@ -24,7 +18,7 @@ export default StyleSheet.create({ }, textBoxInput: { textAlignVertical: 'center', - maxHeight: 242, + maxHeight: 240, flexGrow: 1, width: 1, // paddingVertical: 12, needs to be paddingTop/paddingBottom because of iOS/Android's TextInput differences on rendering @@ -32,7 +26,7 @@ export default StyleSheet.create({ paddingBottom: 12, paddingLeft: 0, paddingRight: 0, - fontSize: 17, + fontSize: 16, letterSpacing: 0, ...sharedStyles.textRegular }, @@ -40,7 +34,7 @@ export default StyleSheet.create({ alignItems: 'center', justifyContent: 'center', width: 60, - height: 56 + height: 48 }, mentionList: { maxHeight: MENTION_HEIGHT * 4 @@ -110,10 +104,21 @@ export default StyleSheet.create({ justifyContent: 'space-between' }, recordingCancelText: { - fontSize: 17, + fontSize: 16, ...sharedStyles.textRegular }, buttonsWhitespace: { width: 15 + }, + sendToChannelButton: { + flexDirection: 'row', + alignItems: 'center', + paddingVertical: 8, + paddingHorizontal: 18 + }, + sendToChannelText: { + fontSize: 12, + marginLeft: 4, + ...sharedStyles.textRegular } }); diff --git a/app/containers/message/CallButton.js b/app/containers/message/CallButton.js index 83dcd370..4c701a6c 100644 --- a/app/containers/message/CallButton.js +++ b/app/containers/message/CallButton.js @@ -3,36 +3,31 @@ import { View, Text } from 'react-native'; import PropTypes from 'prop-types'; import Touchable from './Touchable'; -import { formatLastMessage, BUTTON_HIT_SLOP } from './utils'; +import { BUTTON_HIT_SLOP } from './utils'; import styles from './styles'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../constants/colors'; const CallButton = React.memo(({ - dlm, theme, callJitsi -}) => { - const time = formatLastMessage(dlm); - return ( - - - <> - - {I18n.t('Click_to_join')} - - - {time} - - ); -}); + theme, callJitsi +}) => ( + + + <> + + {I18n.t('Click_to_join')} + + + +)); CallButton.propTypes = { - dlm: PropTypes.string, theme: PropTypes.string, callJitsi: PropTypes.func }; diff --git a/app/containers/message/Discussion.js b/app/containers/message/Discussion.js index c45906c9..86650f38 100644 --- a/app/containers/message/Discussion.js +++ b/app/containers/message/Discussion.js @@ -3,18 +3,22 @@ import { View, Text } from 'react-native'; import PropTypes from 'prop-types'; import Touchable from './Touchable'; -import { formatLastMessage, formatMessageCount, BUTTON_HIT_SLOP } from './utils'; +import { formatMessageCount, BUTTON_HIT_SLOP } from './utils'; import styles from './styles'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import { DISCUSSION } from './constants'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; +import { formatDateThreads } from '../../utils/room'; const Discussion = React.memo(({ msg, dcount, dlm, theme }) => { - const time = formatLastMessage(dlm); + let time; + if (dlm) { + time = formatDateThreads(dlm); + } const buttonText = formatMessageCount(dcount, DISCUSSION); const { onDiscussionPress } = useContext(MessageContext); return ( @@ -25,11 +29,11 @@ const Discussion = React.memo(({ <> - + {buttonText} diff --git a/app/containers/message/Thread.js b/app/containers/message/Thread.js index 00e1b4fc..55086fa8 100644 --- a/app/containers/message/Thread.js +++ b/app/containers/message/Thread.js @@ -1,32 +1,49 @@ -import React from 'react'; +import React, { useContext } from 'react'; import { View, Text } from 'react-native'; import PropTypes from 'prop-types'; +import Touchable from 'react-native-platform-touchable'; -import { formatLastMessage, formatMessageCount } from './utils'; +import { formatMessageCount } from './utils'; import styles from './styles'; import { CustomIcon } from '../../lib/Icons'; import { THREAD } from './constants'; import { themes } from '../../constants/colors'; +import { formatDateThreads } from '../../utils/room'; +import MessageContext from './Context'; const Thread = React.memo(({ - msg, tcount, tlm, customThreadTimeFormat, isThreadRoom, theme + msg, tcount, tlm, isThreadRoom, theme, id }) => { if (!tlm || isThreadRoom || tcount === 0) { return null; } - const time = formatLastMessage(tlm, customThreadTimeFormat); + const { + getBadgeColor, toggleFollowThread, user, replies + } = useContext(MessageContext); + const time = formatDateThreads(tlm); const buttonText = formatMessageCount(tcount, THREAD); + const badgeColor = getBadgeColor(id); + const isFollowing = replies?.find(u => u === user.id); return ( - + {buttonText} {time} + {badgeColor ? : null} + toggleFollowThread(isFollowing, id)}> + + ); }, (prevProps, nextProps) => { @@ -44,8 +61,8 @@ Thread.propTypes = { tcount: PropTypes.string, theme: PropTypes.string, tlm: PropTypes.string, - customThreadTimeFormat: PropTypes.string, - isThreadRoom: PropTypes.bool + isThreadRoom: PropTypes.bool, + id: PropTypes.string }; Thread.displayName = 'MessageThread'; diff --git a/app/containers/message/index.js b/app/containers/message/index.js index 0aa89f1d..269a8e85 100644 --- a/app/containers/message/index.js +++ b/app/containers/message/index.js @@ -21,7 +21,6 @@ class MessageContainer extends React.Component { }), rid: PropTypes.string, timeFormat: PropTypes.string, - customThreadTimeFormat: PropTypes.string, style: PropTypes.any, archived: PropTypes.bool, broadcast: PropTypes.bool, @@ -49,7 +48,9 @@ class MessageContainer extends React.Component { navToRoomInfo: PropTypes.func, callJitsi: PropTypes.func, blockAction: PropTypes.func, - theme: PropTypes.string + theme: PropTypes.string, + getBadgeColor: PropTypes.func, + toggleFollowThread: PropTypes.func } static defaultProps = { @@ -265,10 +266,10 @@ class MessageContainer extends React.Component { render() { const { author } = this.state; const { - item, user, style, archived, baseUrl, useRealName, broadcast, fetchThreadName, customThreadTimeFormat, showAttachment, timeFormat, isReadReceiptEnabled, autoTranslateRoom, autoTranslateLanguage, navToRoomInfo, getCustomEmoji, isThreadRoom, callJitsi, blockAction, rid, theme + item, user, style, archived, baseUrl, useRealName, broadcast, fetchThreadName, showAttachment, timeFormat, isReadReceiptEnabled, autoTranslateRoom, autoTranslateLanguage, navToRoomInfo, getCustomEmoji, isThreadRoom, callJitsi, blockAction, rid, theme, getBadgeColor, toggleFollowThread } = this.props; const { - id, msg, ts, attachments, urls, reactions, t, avatar, emoji, u, alias, editedBy, role, drid, dcount, dlm, tmid, tcount, tlm, tmsg, mentions, channels, unread, blocks, autoTranslate: autoTranslateMessage + id, msg, ts, attachments, urls, reactions, t, avatar, emoji, u, alias, editedBy, role, drid, dcount, dlm, tmid, tcount, tlm, tmsg, mentions, channels, unread, blocks, autoTranslate: autoTranslateMessage, replies } = item; let message = msg; @@ -291,7 +292,10 @@ class MessageContainer extends React.Component { onReactionPress: this.onReactionPress, onEncryptedPress: this.onEncryptedPress, onDiscussionPress: this.onDiscussionPress, - onReactionLongPress: this.onReactionLongPress + onReactionLongPress: this.onReactionLongPress, + getBadgeColor, + toggleFollowThread, + replies }} > { - if (customFormat) { - return moment(lm).format(customFormat); - } - return lm ? moment(lm).calendar(null, { - lastDay: `[${ I18n.t('Yesterday') }]`, - sameDay: 'h:mm A', - lastWeek: 'dddd', - sameElse: 'MMM D' - }) : null; -}; - export const formatMessageCount = (count, type) => { const discussion = type === DISCUSSION; let text = discussion ? I18n.t('No_messages_yet') : null; diff --git a/app/ee/omnichannel/containers/OmnichannelStatus.js b/app/ee/omnichannel/containers/OmnichannelStatus.js index b0763d76..7ae99a61 100644 --- a/app/ee/omnichannel/containers/OmnichannelStatus.js +++ b/app/ee/omnichannel/containers/OmnichannelStatus.js @@ -54,7 +54,6 @@ const OmnichannelStatus = memo(({ ) : null} diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index 4721ec2b..57a8da13 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -658,5 +658,13 @@ export default { You_will_be_logged_out_from_other_locations: 'You\'ll be logged out from other locations.', Logged_out_of_other_clients_successfully: 'Logged out of other clients successfully', Logout_failed: 'Logout failed!', - Log_analytics_events: 'Log analytics events' + Log_analytics_events: 'Log analytics events', + Following: 'Following', + Threads_displaying_all: 'Displaying All', + Threads_displaying_following: 'Displaying Following', + Threads_displaying_unread: 'Displaying Unread', + No_threads: 'There are no threads', + No_threads_following: 'You are not following any threads', + No_threads_unread: 'There are no unread threads', + Messagebox_Send_to_channel: 'Send to channel' }; diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index f46f1625..ad585a0d 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -602,5 +602,13 @@ export default { You_will_be_logged_out_from_other_locations: 'Você perderá a sessão de outros clientes', Logged_out_of_other_clients_successfully: 'Desconectado de outros clientes com sucesso', Logout_failed: 'Falha ao desconectar!', - Log_analytics_events: 'Logar eventos no analytics' + Log_analytics_events: 'Logar eventos no analytics', + Following: 'Seguindo', + Threads_displaying_all: 'Mostrando Tudo', + Threads_displaying_following: 'Mostrando Seguindo', + Threads_displaying_unread: 'Mostrando Não Lidos', + No_threads: 'Não há tópicos', + No_threads_following: 'Você não está seguindo tópicos', + No_threads_unread: 'Não há tópicos não lidos', + Messagebox_Send_to_channel: 'Mostrar no canal' }; diff --git a/app/lib/database/model/Message.js b/app/lib/database/model/Message.js index c41bad26..bf776fc7 100644 --- a/app/lib/database/model/Message.js +++ b/app/lib/database/model/Message.js @@ -79,4 +79,6 @@ export default class Message extends Model { @json('blocks', sanitizer) blocks; @field('e2e') e2e; + + @field('tshow') tshow; } diff --git a/app/lib/database/model/Subscription.js b/app/lib/database/model/Subscription.js index bc3ac88a..c826a808 100644 --- a/app/lib/database/model/Subscription.js +++ b/app/lib/database/model/Subscription.js @@ -42,6 +42,12 @@ export default class Subscription extends Model { @field('group_mentions') groupMentions; + @json('tunread', sanitizer) tunread; + + @json('tunread_user', sanitizer) tunreadUser; + + @json('tunread_group', sanitizer) tunreadGroup; + @date('room_updated_at') roomUpdatedAt; @field('ro') ro; diff --git a/app/lib/database/model/User.js b/app/lib/database/model/User.js index 74698afb..1b46e236 100644 --- a/app/lib/database/model/User.js +++ b/app/lib/database/model/User.js @@ -16,5 +16,7 @@ export default class User extends Model { @field('login_email_password') loginEmailPassword; + @field('show_message_in_main_thread') showMessageInMainThread; + @json('roles', sanitizer) roles; } diff --git a/app/lib/database/model/migrations.js b/app/lib/database/model/migrations.js index bcdcf90c..cd2df3f7 100644 --- a/app/lib/database/model/migrations.js +++ b/app/lib/database/model/migrations.js @@ -170,6 +170,12 @@ export default schemaMigrations({ { toVersion: 11, steps: [ + addColumns({ + table: 'messages', + columns: [ + { name: 'tshow', type: 'boolean', isOptional: true } + ] + }), createTable({ name: 'users', columns: [ @@ -182,6 +188,9 @@ export default schemaMigrations({ addColumns({ table: 'subscriptions', columns: [ + { name: 'tunread', type: 'string', isOptional: true }, + { name: 'tunread_user', type: 'string', isOptional: true }, + { name: 'tunread_group', type: 'string', isOptional: true }, { name: 'avatar_etag', type: 'string', isOptional: true } ] }), diff --git a/app/lib/database/model/servers/migrations.js b/app/lib/database/model/servers/migrations.js index 9b4d40cd..782700a3 100644 --- a/app/lib/database/model/servers/migrations.js +++ b/app/lib/database/model/servers/migrations.js @@ -90,6 +90,7 @@ export default schemaMigrations({ addColumns({ table: 'users', columns: [ + { name: 'show_message_in_main_thread', type: 'boolean', isOptional: true }, { name: 'avatar_etag', type: 'string', isOptional: true } ] }) diff --git a/app/lib/database/schema/app.js b/app/lib/database/schema/app.js index cbe88670..5389833a 100644 --- a/app/lib/database/schema/app.js +++ b/app/lib/database/schema/app.js @@ -20,6 +20,9 @@ export default appSchema({ { name: 'unread', type: 'number' }, { name: 'user_mentions', type: 'number' }, { name: 'group_mentions', type: 'number' }, + { name: 'tunread', type: 'string', isOptional: true }, + { name: 'tunread_user', type: 'string', isOptional: true }, + { name: 'tunread_group', type: 'string', isOptional: true }, { name: 'room_updated_at', type: 'number' }, { name: 'ro', type: 'boolean' }, { name: 'last_open', type: 'number', isOptional: true }, @@ -108,7 +111,8 @@ export default appSchema({ { name: 'translations', type: 'string', isOptional: true }, { name: 'tmsg', type: 'string', isOptional: true }, { name: 'blocks', type: 'string', isOptional: true }, - { name: 'e2e', type: 'string', isOptional: true } + { name: 'e2e', type: 'string', isOptional: true }, + { name: 'tshow', type: 'boolean', isOptional: true } ] }), tableSchema({ diff --git a/app/lib/database/schema/servers.js b/app/lib/database/schema/servers.js index 98a9dffc..0c81a72f 100644 --- a/app/lib/database/schema/servers.js +++ b/app/lib/database/schema/servers.js @@ -14,6 +14,7 @@ export default appSchema({ { name: 'statusText', type: 'string', isOptional: true }, { name: 'roles', type: 'string', isOptional: true }, { name: 'login_email_password', type: 'boolean', isOptional: true }, + { name: 'show_message_in_main_thread', type: 'boolean', isOptional: true }, { name: 'avatar_etag', type: 'string', isOptional: true } ] }), diff --git a/app/lib/methods/helpers/mergeSubscriptionsRooms.js b/app/lib/methods/helpers/mergeSubscriptionsRooms.js index 5fbb1a74..bd4c85a5 100644 --- a/app/lib/methods/helpers/mergeSubscriptionsRooms.js +++ b/app/lib/methods/helpers/mergeSubscriptionsRooms.js @@ -14,8 +14,12 @@ export const merge = (subscription, room) => { } if (room) { if (room._updatedAt) { - subscription.roomUpdatedAt = room._updatedAt; subscription.lastMessage = normalizeMessage(room.lastMessage); + if (subscription.lastMessage) { + subscription.roomUpdatedAt = subscription.lastMessage.ts; + } else { + subscription.roomUpdatedAt = room._updatedAt; + } subscription.description = room.description; subscription.topic = room.topic; subscription.announcement = room.announcement; diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index 14def098..a9a86ae6 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -86,7 +86,7 @@ export async function resendMessage(message, tmid) { } } -export default async function(rid, msg, tmid, user) { +export default async function(rid, msg, tmid, user, tshow) { try { const db = database.active; const subsCollection = db.collections.get('subscriptions'); @@ -97,7 +97,7 @@ export default async function(rid, msg, tmid, user) { const batch = []; let message = { - _id: messageId, rid, msg, tmid + _id: messageId, rid, msg, tmid, tshow }; message = await Encryption.encryptMessage(message); @@ -179,8 +179,9 @@ export default async function(rid, msg, tmid, user) { }; if (tmid && tMessageRecord) { m.tmid = tmid; - m.tlm = messageDate; + // m.tlm = messageDate; // I don't think this is necessary... leaving it commented just in case... m.tmsg = tMessageRecord.msg; + m.tshow = tshow; } m.t = message.t; if (message.t === E2E_MESSAGE_TYPE) { diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index 9039cce1..6f3b3e21 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -273,6 +273,9 @@ export default function subscribeRooms() { if (diff?.statusLivechat) { store.dispatch(setUser({ statusLivechat: diff.statusLivechat })); } + if (['settings.preferences.showMessageInMainThread'] in diff) { + store.dispatch(setUser({ showMessageInMainThread: diff['settings.preferences.showMessageInMainThread'] })); + } } if (/subscriptions/.test(ev)) { if (type === 'removed') { diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 32e51921..90adc086 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -491,7 +491,8 @@ const RocketChat = { emails: result.me.emails, roles: result.me.roles, avatarETag: result.me.avatarETag, - loginEmailPassword + loginEmailPassword, + showMessageInMainThread: result.me.settings?.preferences?.showMessageInMainThread ?? true }; return user; }, @@ -920,8 +921,12 @@ const RocketChat = { getUidDirectMessage(room) { const { id: userId } = reduxStore.getState().login.user; + if (!room) { + return false; + } + // legacy method - if (!room.uids && room.rid && room.t === 'd') { + if (!room?.uids && room.rid && room.t === 'd') { return room.rid.replace(userId, '').trim(); } @@ -929,8 +934,8 @@ const RocketChat = { return false; } - const me = room && room.uids && room.uids.find(uid => uid === userId); - const other = room && room.uids && room.uids.filter(uid => uid !== userId); + const me = room.uids?.find(uid => uid === userId); + const other = room.uids?.filter(uid => uid !== userId); return other && other.length ? other[0] : me; }, @@ -1242,11 +1247,18 @@ const RocketChat = { } return this.post('chat.unfollowMessage', { mid }); }, - getThreadsList({ rid, count, offset }) { - // RC 1.0 - return this.sdk.get('chat.getThreadsList', { + getThreadsList({ + rid, count, offset, text + }) { + const params = { rid, count, offset, sort: { ts: -1 } - }); + }; + if (text) { + params.text = text; + } + + // RC 1.0 + return this.sdk.get('chat.getThreadsList', params); }, getSyncThreadsList({ rid, updatedSince }) { // RC 1.0 diff --git a/app/lib/selection.json b/app/lib/selection.json index ad1bf20b..ec9ea691 100644 --- a/app/lib/selection.json +++ b/app/lib/selection.json @@ -1 +1 @@ -{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M537.267 295.385c33.135 0 74.667-22.134 99.401-51.645 22.4-26.745 38.733-64.095 38.733-101.445 0-5.072-0.465-10.144-1.399-14.295-36.868 1.383-81.199 24.439-107.802 55.334-21.001 23.517-40.132 60.406-40.132 98.218 0 5.533 0.934 11.066 1.399 12.911 2.334 0.461 6.067 0.922 9.801 0.922zM420.601 853.333c45.268 0 65.334-29.973 121.799-29.973 57.399 0 70.003 29.052 120.401 29.052 49.468 0 82.598-45.188 113.865-89.455 35.004-50.726 49.468-100.527 50.402-102.831-3.268-0.922-98.001-39.194-98.001-146.633 0-93.146 74.667-135.108 78.869-138.336-49.468-70.089-124.604-71.934-145.135-71.934-55.535 0-100.8 33.2-129.267 33.2-30.801 0-71.398-31.356-119.466-31.356-91.467 0-184.333 74.701-184.333 215.802 0 87.612 34.533 180.297 77 240.239 36.4 50.722 68.133 92.224 113.867 92.224z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["apple-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":664,"id":181,"name":"apple-monochromatic","prevSize":32,"code":59749},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M544 208c0-17.673-14.323-32-32-32-17.673 0-32 14.327-32 32v271.996h-271.997c-17.673 0-32 14.327-32 32s14.327 32 32 32h271.997v272.004c0 17.673 14.327 32 32 32 17.677 0 32-14.327 32-32v-272.004h272.004c17.673 0 32-14.327 31.996-32 0-17.673-14.323-32-32-32h-272v-271.996z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":483,"id":180,"name":"add","prevSize":32,"code":59648},"setIdx":0,"setId":2,"iconIdx":1},{"icon":{"paths":["M512 928c-14.217 0-28.275-0.713-42.142-2.112-16.695-1.681-30.558-12.531-36.689-27.392l-40.54-98.308-98.161 40.841c-14.837 6.174-32.3 4.045-45.292-6.554-21.839-17.818-41.831-37.811-59.65-59.648-10.601-12.992-12.726-30.455-6.553-45.295l40.839-98.159-98.307-40.542c-14.864-6.127-25.714-19.994-27.395-36.689-1.396-13.867-2.111-27.925-2.111-42.142s0.714-28.275 2.11-42.142c1.681-16.695 12.531-30.558 27.395-36.685l98.307-40.543-40.84-98.163c-6.173-14.836-4.047-32.3 6.553-45.292 17.818-21.838 37.81-41.83 59.648-59.648 12.992-10.601 30.455-12.726 45.292-6.554l98.163 40.84 40.54-98.309c6.131-14.865 19.994-25.714 36.689-27.395 13.867-1.396 27.925-2.111 42.142-2.111s28.275 0.714 42.142 2.111c16.695 1.681 30.558 12.53 36.689 27.395l40.542 98.309 98.163-40.84c14.835-6.173 32.299-4.047 45.291 6.554 21.837 17.818 41.83 37.81 59.648 59.648 10.598 12.992 12.723 30.455 6.554 45.292l-40.841 98.163 98.308 40.543c14.861 6.127 25.711 19.994 27.392 36.685 1.399 13.867 2.112 27.925 2.112 42.142s-0.713 28.275-2.112 42.142c-1.681 16.695-12.531 30.562-27.392 36.689l-98.308 40.542 40.836 98.159c6.174 14.839 4.049 32.303-6.549 45.295-17.822 21.837-37.811 41.83-59.652 59.648-12.992 10.598-30.455 12.727-45.291 6.554l-98.159-40.841-40.542 98.308c-6.131 14.861-19.994 25.711-36.689 27.392-13.867 1.399-27.925 2.112-42.142 2.112zM444.454 757.982l43.383 105.203c7.979 0.542 16.034 0.815 24.162 0.815s16.183-0.273 24.162-0.815l43.383-105.203c9.455-22.921 35.733-33.805 58.628-24.282l105.054 43.708c12.156-10.598 23.578-22.020 34.18-34.176l-43.708-105.058c-9.527-22.895 1.357-49.173 24.282-58.624l105.203-43.383c0.542-7.983 0.815-16.038 0.815-24.166 0-8.124-0.273-16.183-0.815-24.162l-105.203-43.383c-22.925-9.455-33.809-35.731-24.282-58.625l43.708-105.058c-10.603-12.156-22.020-23.577-34.176-34.177l-105.058 43.709c-22.895 9.525-49.173-1.359-58.628-24.283l-43.383-105.204c-7.979-0.54-16.038-0.815-24.162-0.815s-16.183 0.275-24.162 0.815l-43.383 105.204c-9.455 22.924-35.732 33.809-58.627 24.283l-105.058-43.709c-12.156 10.6-23.577 22.022-34.177 34.177l43.709 105.058c9.525 22.895-1.359 49.17-24.283 58.625l-105.203 43.383c-0.54 7.979-0.815 16.038-0.815 24.162 0 8.128 0.275 16.183 0.815 24.166l105.202 43.383c22.924 9.451 33.809 35.729 24.283 58.624l-43.708 105.058c10.601 12.156 22.022 23.578 34.179 34.176l105.056-43.708c22.895-9.523 49.172 1.361 58.627 24.282zM416 512c0-53.018 42.982-96 96-96s96 42.982 96 96c0 53.018-42.982 96-96 96s-96-42.982-96-96zM512 352c-88.366 0-160 71.634-160 160 0 88.367 71.634 160 160 160 88.367 0 160-71.633 160-160 0-88.366-71.633-160-160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["administration"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":484,"id":179,"name":"administration","prevSize":32,"code":59649},"setIdx":0,"setId":2,"iconIdx":2},{"icon":{"paths":["M892.437 567.625c-41.856-41.139-161.237-29.828-220.928-22.285-59.004-35.998-98.458-85.705-126.242-158.727 13.376-55.195 34.645-139.187 18.526-191.982-14.409-89.82-129.677-80.907-146.143-20.227-15.094 55.194-1.372 131.987 24.014 230.035-34.305 81.935-85.42 191.981-121.44 255.059-68.611 35.311-161.235 89.822-174.957 158.387-11.321 54.165 89.194 189.239 261.063-106.961 76.845-25.37 160.548-56.567 234.647-68.907 64.836 34.965 140.651 58.278 191.424 58.278 87.479 0 96.055-96.674 60.036-132.672zM212.848 834.342c17.496-46.967 84.048-101.133 104.288-119.991-65.18 103.876-104.288 122.389-104.288 119.991zM492.779 180.918c25.387 0 22.985 110.047 6.174 139.872-15.091-47.653-14.75-139.872-6.174-139.872zM409.074 649.216c33.277-57.937 61.748-126.844 84.733-187.524 28.476 51.767 64.836 93.248 103.262 121.702-71.356 14.741-133.449 44.911-187.995 65.822zM860.531 632.077c0 0-17.152 20.57-127.957-26.743 120.41-8.913 140.309 18.513 127.957 26.743z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["adobe-reader-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":485,"id":178,"name":"adobe-reader-monochromatic","prevSize":32,"code":59650},"setIdx":0,"setId":2,"iconIdx":3},{"icon":{"paths":["M498.697 141.563l-298.668 136.533c-11.39 5.207-18.696 16.58-18.696 29.103v386.846c0 11.819 6.513 22.673 16.941 28.233l298.668 159.292c9.408 5.018 20.706 5.018 30.114 0l298.667-159.292c10.428-5.559 16.943-16.414 16.943-28.233v-386.846c0-12.524-7.305-23.896-18.697-29.103l-298.667-136.533c-8.448-3.862-18.159-3.862-26.607 0zM245.333 357.014l234.667 107.276v335.71l-234.667-125.154v-317.832zM544 800l234.667-125.154v-317.832l-234.667 107.276v335.71zM512 408.548l-221.699-101.348 221.699-101.348 221.7 101.348-221.7 101.348z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["apps"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":486,"id":177,"name":"apps","prevSize":32,"code":59651},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M385 297.373c-12.497-12.497-32.758-12.497-45.255 0l-192 192.001c-12.497 12.497-12.497 32.755 0 45.252l192 192c12.497 12.497 32.758 12.497 45.255 0s12.497-32.755 0-45.252l-137.373-137.374h578.745v128c0 17.673 14.327 32 32 32s32-14.327 32-32v-160c0-17.673-14.327-32-32-32h-610.745l137.373-137.373c12.497-12.497 12.497-32.758 0-45.255z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-back"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":487,"id":176,"name":"arrow-back","prevSize":32,"code":59652},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M550.037 242.504c0.192-17.672 14.669-31.845 32.341-31.657s31.846 14.668 31.659 32.34l-1.318 123.488 193.438-193.438c12.497-12.497 32.755-12.497 45.252 0s12.497 32.758 0 45.255l-193.438 193.438 123.49-1.319c17.673-0.189 32.149 13.984 32.337 31.658 0.192 17.673-13.982 32.149-31.654 32.337l-201.92 2.159c-8.606 0.090-16.887-3.285-22.972-9.374-6.084-6.084-9.459-14.362-9.37-22.967l2.155-201.921zM474.628 782.148c-0.192 17.673-14.669 31.846-32.341 31.659-17.672-0.192-31.845-14.669-31.656-32.341l1.318-123.49-193.438 193.438c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l193.438-193.438-123.488 1.318c-17.672 0.188-32.151-13.986-32.34-31.659s13.984-32.149 31.657-32.337l201.919-2.159c8.606-0.090 16.887 3.285 22.972 9.37 6.084 6.089 9.463 14.366 9.37 22.972l-2.155 201.92z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-collapse"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":488,"id":175,"name":"arrow-collapse","prevSize":32,"code":59653},"setIdx":0,"setId":2,"iconIdx":6},{"icon":{"paths":["M586.372 672c-17.673 0-32 14.327-32 32s14.327 32 32 32h224c17.673 0 32-14.327 32-32v-208c0-17.673-14.327-32-32-32s-32 14.327-32 32v130.743l-233.374-233.371c-12.497-12.497-32.755-12.497-45.252 0l-73.374 73.371-169.373-169.371c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.758 0 45.255l192 191.999c12.497 12.497 32.756 12.497 45.254 0l73.374-73.37 210.743 210.743h-146.743z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-decrease"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":489,"id":174,"name":"arrow-decrease","prevSize":32,"code":59654},"setIdx":0,"setId":2,"iconIdx":7},{"icon":{"paths":["M329.373 550.626c-12.497-12.497-12.497-32.755 0-45.252s32.758-12.497 45.255 0l105.373 105.37v-418.743c0-17.673 14.327-32 32-32s32 14.327 32 32v418.743l105.374-105.37c12.497-12.497 32.755-12.497 45.252 0s12.497 32.755 0 45.252l-160 160c-12.497 12.497-32.755 12.497-45.252 0l-160.001-160zM112 864c0 17.673 14.327 32 32 32h768c17.673 0 32-14.327 32-32v-512c0-17.673-14.327-32-32-32h-96c-17.673 0-32 14.327-32 32s14.327 32 32 32h64v448h-704v-448h64c17.673 0 32-14.327 32-32s-14.327-32-32-32h-96c-17.673 0-32 14.327-32 32v512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-box"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":490,"id":173,"name":"arrow-down-box","prevSize":32,"code":59655},"setIdx":0,"setId":2,"iconIdx":8},{"icon":{"paths":["M864 511.326c0-194.147-157.598-351.535-352-351.535-194.404 0-352 157.388-352 351.535 0 194.15 157.596 351.535 352 351.535 194.402 0 352-157.385 352-351.535zM928 511.326c0 229.449-186.249 415.454-416 415.454s-416-186.005-416-415.454c0-229.447 186.249-415.451 416-415.451s416 186.004 416 415.451zM694.259 570.615l-159.97 155.511c-12.425 12.079-32.218 12.079-44.642 0l-159.968-155.511c-12.664-12.309-12.937-32.542-0.61-45.188 12.328-12.651 32.587-12.924 45.251-0.61l105.65 102.707v-275.987c0-17.65 14.327-31.958 32-31.958s32 14.308 32 31.958v275.987l105.647-102.707c12.668-12.314 32.926-12.041 45.252 0.61 12.326 12.646 12.053 32.879-0.61 45.188z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-circle"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":491,"id":172,"name":"arrow-down-circle","prevSize":32,"code":59656},"setIdx":0,"setId":2,"iconIdx":9},{"icon":{"paths":["M734.997 526.067c12.356 12.634 12.13 32.896-0.508 45.248l-191.97 187.721c-12.437 12.16-32.307 12.16-44.745 0l-191.97-187.721c-12.636-12.352-12.863-32.614-0.507-45.248 12.356-12.638 32.616-12.864 45.252-0.508l137.595 134.549v-372.109c0-17.673 14.327-32 32-32 17.677 0 32 14.327 32 32v372.109l137.6-134.549c12.634-12.356 32.896-12.13 45.252 0.508z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":492,"id":171,"name":"arrow-down","prevSize":32,"code":59657},"setIdx":0,"setId":2,"iconIdx":10},{"icon":{"paths":["M858.624 398.148c-0.188 17.672-14.669 31.847-32.337 31.655-17.673-0.188-31.846-14.666-31.659-32.338l1.318-123.488-193.438 193.437c-12.497 12.497-32.759 12.497-45.257 0s-12.497-32.755 0-45.254l193.442-193.439-123.49 1.319c-17.673 0.189-32.154-13.984-32.341-31.657s13.986-32.151 31.659-32.34l201.92-2.156c8.606-0.092 16.883 3.286 22.967 9.37s9.463 14.365 9.374 22.969l-2.159 201.921zM166.041 626.517c0.189-17.673 14.668-31.842 32.34-31.654s31.845 14.669 31.657 32.341l-1.319 123.486 193.438-193.438c12.497-12.497 32.759-12.497 45.257 0s12.497 32.759 0 45.257l-193.44 193.438 123.488-1.318c17.672-0.192 32.153 13.982 32.341 31.654s-13.985 32.154-31.657 32.341l-201.921 2.155c-8.605 0.094-16.884-3.285-22.969-9.37s-9.463-14.366-9.37-22.967l2.156-201.924z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-expand"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":493,"id":170,"name":"arrow-expand","prevSize":32,"code":59658},"setIdx":0,"setId":2,"iconIdx":11},{"icon":{"paths":["M584.115 352c-17.673 0-32-14.327-32-32s14.327-32 32-32h224c17.677 0 32 14.327 32 32v208c0 17.673-14.323 32-32 32-17.673 0-32-14.327-32-32v-130.745l-233.37 233.371c-12.497 12.497-32.759 12.497-45.257 0l-73.372-73.37-169.373 169.37c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l192-192c12.497-12.497 32.759-12.497 45.256 0l73.37 73.37 210.748-210.743h-146.748z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-increase"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":494,"id":169,"name":"arrow-increase","prevSize":32,"code":59659},"setIdx":0,"setId":2,"iconIdx":12},{"icon":{"paths":["M307.745 105.235c12.497-12.48 32.758-12.48 45.255 0s12.497 32.715 0 45.195l-105.373 105.233h610.745c17.673 0 32 14.308 32 31.958v111.852c0 17.65-14.327 31.959-32 31.959s-32-14.309-32-31.959v-79.894h-578.745l105.373 105.233c12.497 12.482 12.497 32.715 0 45.195s-32.758 12.48-45.255 0l-160-159.788c-12.497-12.48-12.497-32.715 0-45.195l160-159.789zM720.998 917.414c-12.497 12.48-32.755 12.48-45.252 0s-12.497-32.713 0-45.193l105.37-105.233h-610.743c-17.673 0-32-14.31-32-31.957v-111.855c0-17.647 14.327-31.957 32-31.957s32 14.31 32 31.957v79.898h578.743l-105.37-105.237c-12.497-12.48-12.497-32.713 0-45.193s32.755-12.48 45.252 0l160 159.787c12.497 12.48 12.497 32.717 0 45.197l-160 159.787z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-looping"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":495,"id":168,"name":"arrow-looping","prevSize":32,"code":59660},"setIdx":0,"setId":2,"iconIdx":13},{"icon":{"paths":["M385 769.293c-12.497 12.497-32.758 12.497-45.255 0l-192-192c-12.497-12.497-12.497-32.755 0-45.252l192-192.001c12.497-12.497 32.758-12.497 45.255 0s12.497 32.758 0 45.255l-137.373 137.373h578.745v-192h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32h224c17.673 0 32 14.327 32 32v256c0 17.673-14.327 32-32 32h-610.745l137.373 137.374c12.497 12.497 12.497 32.755 0 45.252z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-return"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":496,"id":167,"name":"arrow-return","prevSize":32,"code":59661},"setIdx":0,"setId":2,"iconIdx":14},{"icon":{"paths":["M694.626 473.374c12.497 12.497 12.497 32.755 0 45.252s-32.755 12.497-45.252 0l-105.374-105.371v418.745c0 17.673-14.327 32-32 32s-32-14.327-32-32v-418.745l-105.373 105.371c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l160.001-160.001c12.497-12.497 32.755-12.497 45.252 0l160 160.001zM912 160c0-17.673-14.327-32-32-32h-768c-17.673 0-32 14.327-32 32v512c0 17.673 14.327 32 32 32h96c17.673 0 32-14.327 32-32s-14.327-32-32-32h-64v-448h704v448h-64c-17.673 0-32 14.327-32 32s14.327 32 32 32h96c17.673 0 32-14.327 32-32v-512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-box"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":497,"id":166,"name":"arrow-up-box","prevSize":32,"code":59662},"setIdx":0,"setId":2,"iconIdx":15},{"icon":{"paths":["M305.297 498.091c-12.356-12.634-12.129-32.896 0.507-45.252l191.971-187.717c12.437-12.161 32.307-12.161 44.745 0l191.97 187.717c12.638 12.356 12.864 32.619 0.508 45.252-12.356 12.638-32.619 12.864-45.252 0.508l-137.6-134.55v372.11c0 17.673-14.323 32-32 32-17.673 0-32-14.327-32-32v-372.11l-137.595 134.55c-12.636 12.356-32.896 12.13-45.252-0.508z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":498,"id":165,"name":"arrow-up","prevSize":32,"code":59663},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M482.325 229.047c19.767-23.931 49.89-36.827 80.849-34.615l143.936 10.281c42.052 3.004 77.222 33.091 86.703 74.17l30.349 131.517c6.643 28.785-0.337 59.028-18.923 81.991l-252.369 311.744c-11.119 13.739-31.27 15.859-45.005 4.74-13.734-11.123-15.859-31.27-4.736-45.009l252.365-311.744c6.195-7.654 8.521-17.737 6.306-27.331l-30.349-131.517c-3.157-13.693-14.882-23.722-28.898-24.723l-143.936-10.281c-10.321-0.737-20.361 3.561-26.953 11.538l-265.999 322c-5.438 6.583-8.020 15.066-7.17 23.565l7.581 75.81c1.636 16.358 15.401 28.817 31.841 28.817h104.305c9.439 0 18.397-4.169 24.476-11.388l227.597-270.268-10.052-70.344h-69.257l-230.406 276.488c-11.314 13.577-31.492 15.411-45.069 4.096s-15.412-31.492-4.097-45.069l230.403-276.487c12.16-14.592 30.174-23.028 49.169-23.028h69.257c31.851 0 58.854 23.419 63.356 54.949l10.052 70.345c2.577 18.044-2.662 36.331-14.404 50.274l-227.593 270.268c-18.24 21.662-45.116 34.163-73.432 34.163h-104.305c-49.321 0-90.616-37.372-95.524-86.447l-7.581-75.814c-2.549-25.489 5.196-50.944 21.511-70.694l266-321.997z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["attach"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":499,"id":164,"name":"attach","prevSize":32,"code":59664},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M866.129 153.127c-12.497-12.497-32.759-12.497-45.257 0l-668.245 668.244c-12.497 12.497-12.497 32.759 0 45.257s32.758 12.497 45.255 0l668.247-668.246c12.497-12.497 12.497-32.758 0-45.255zM674.645 480.358l55.919-55.923c16.256 79.564 14.515 161.864-5.231 240.844l-11.622 46.485c-4.284 17.148-21.658 27.571-38.805 23.283-17.143-4.284-27.571-21.658-23.283-38.805l11.622-46.485c13.875-55.509 17.677-112.875 11.401-169.399zM817.161 385.922l-11.311-36.77 51.204-51.206 21.278 69.154c33.344 108.369 31.996 224.448-3.861 332.010l-33.446 100.343c-5.589 16.764-23.71 25.826-40.478 20.237-16.764-5.589-25.826-23.71-20.237-40.478l33.446-100.339c31.637-94.912 32.828-197.333 3.405-292.952zM490.667 664.333l64-64v210.342c0 23.565-19.102 42.667-42.667 42.667h-85.333c-35.46 0-68.395-10.812-95.685-29.325l46.611-46.609c14.701 7.629 31.395 11.934 49.073 11.934h64v-125.009zM128 682.675c0 19.742 13.403 36.348 31.604 41.22l62.552-62.554h-30.156v-298.665h118.99l12.367-48.047c11.845-46.020 53.696-79.953 103.31-79.953h64v158.156l64-64v-115.49c0-23.564-19.102-42.667-42.667-42.667h-85.333c-79.524 0-146.344 54.391-165.29 128h-90.71c-23.564 0-42.667 19.103-42.667 42.667v341.332z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["audio-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":500,"id":163,"name":"audio-disabled","prevSize":32,"code":59665},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M317.754 661.342h-118.99v-298.665h118.99l12.367-48.047c11.845-46.020 53.696-79.953 103.308-79.953h64v554.665h-64c-49.613 0-91.464-33.933-103.308-79.949l-12.367-48.051zM177.431 725.342h90.71c18.946 73.613 85.766 128 165.288 128h85.333c23.565 0 42.667-19.102 42.667-42.667v-597.332c0-23.564-19.102-42.667-42.667-42.667h-85.333c-79.522 0-146.342 54.391-165.288 128h-90.71c-23.564 0-42.667 19.103-42.667 42.667v341.332c0 23.565 19.103 42.667 42.667 42.667zM893.393 393.373c12.497 12.497 12.497 32.758 0 45.254l-73.374 73.374 73.374 73.374c12.497 12.497 12.497 32.755 0 45.252s-32.759 12.497-45.257 0l-73.374-73.37-73.37 73.37c-12.497 12.497-32.759 12.497-45.257 0s-12.497-32.755 0-45.252l73.374-73.374-73.374-73.374c-12.497-12.495-12.497-32.757 0-45.254s32.759-12.497 45.257 0l73.37 73.371 73.374-73.371c12.497-12.497 32.759-12.497 45.257 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["audio-unavailable"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":501,"id":162,"name":"audio-unavailable","prevSize":32,"code":59666},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M300.099 631.121h-113.433v-280.89h113.433l12.367-48.048c11.055-42.953 50.122-74.619 96.423-74.619h58.665v526.223h-58.665c-46.301 0-85.367-31.667-96.423-74.62l-12.367-48.047zM163.555 695.121h86.931c18.156 70.541 82.193 122.667 158.403 122.667h81.778c22.583 0 40.887-18.308 40.887-40.892v-572.443c0-22.582-18.304-40.889-40.887-40.889h-81.778c-76.21 0-140.246 52.124-158.403 122.667h-86.931c-22.582 0-40.889 18.307-40.889 40.889v327.11c0 22.583 18.307 40.892 40.889 40.892zM646.46 316.516c17.148-4.286 34.522 6.138 38.805 23.284l11.14 44.551c20.804 83.229 20.804 170.303 0 253.529l-11.14 44.553c-4.284 17.148-21.658 27.571-38.805 23.283-17.143-4.284-27.571-21.658-23.283-38.805l11.14-44.553c18.257-73.037 18.257-149.444 0-222.484l-11.14-44.551c-4.288-17.146 6.14-34.519 23.283-38.806zM807.475 235.938c-5.201-16.892-23.108-26.372-39.996-21.175-16.892 5.198-26.372 23.104-21.175 39.996l35.533 115.49c28.117 91.37 26.978 189.239-3.251 279.931l-32.055 96.158c-5.589 16.768 3.473 34.889 20.237 40.478 16.768 5.589 34.889-3.473 40.478-20.237l32.055-96.162c34.449-103.343 35.746-214.869 3.708-318.99l-35.533-115.49z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["audio"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":502,"id":161,"name":"audio","prevSize":32,"code":59667},"setIdx":0,"setId":2,"iconIdx":20},{"icon":{"paths":["M416 128c-35.346 0-64 28.654-64 64v226.636c20.775-2.822 42.133-3.455 64-1.527v-225.11h176v180.706c0 35.346 28.655 64 64 64h176v331.294h-120.555c-17.156 22.178-36.322 43.87-57.31 64h177.865c35.345 0 64-28.655 64-64v-363.294c0-6.41-1.924-12.672-5.525-17.975l-156.634-230.682c-11.913-17.545-31.74-28.049-52.945-28.049h-264.896zM656 372.706v-180.706h24.896l122.697 180.706h-147.593zM165.234 668.544c120.524 156.143 218.24 174.588 285.134 158.741 73.293-17.361 139.23-81.647 183.462-151.761-115.153-155.87-211.58-174.588-279.148-158.916-74.361 17.25-142.706 81.685-189.449 151.936zM101.723 649.037c100.621-162.799 337.62-357.19 593.253 1.788 9.071 12.74 10.321 29.82 2.423 43.315-95.275 162.854-326.394 358.345-593.236-0.222-9.745-13.094-11.022-30.997-2.44-44.881zM398.961 735.991c31.512 0 60.269-26.854 60.269-64 0-37.141-28.757-64-60.269-64-31.514 0-60.268 26.859-60.268 64 0 37.146 28.755 64 60.268 64zM398.961 799.991c68.632 0 124.269-57.306 124.269-128 0-70.69-55.637-128-124.269-128s-124.268 57.31-124.268 128c0 70.694 55.637 128 124.268 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["auditing"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":503,"id":160,"name":"auditing","prevSize":32,"code":59668},"setIdx":0,"setId":2,"iconIdx":21},{"icon":{"paths":["M224 224c-17.673 0-32 14.327-32 32v544c0 17.673 14.327 32 32 32h544c17.673 0 32-14.327 32-32v-544c0-17.673-14.327-32-32-32h-544zM128 256c0-53.019 42.981-96 96-96h544c53.018 0 96 42.981 96 96v544c0 53.018-42.982 96-96 96h-544c-53.019 0-96-42.982-96-96v-544zM608 460.813c0 41.801-26.714 77.359-64 90.539v133.461h-64v-133.461c-37.286-13.18-64-48.738-64-90.539 0-53.020 42.982-96 96-96s96 42.981 96 96zM608 588.826c38.861-29.193 64-75.665 64-128.013 0-88.366-71.633-160-160-160-88.366 0-160 71.635-160 160 0 52.348 25.138 98.82 64 128.013v127.987c0 17.673 14.327 32 32 32h128c17.673 0 32-14.327 32-32v-127.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["auth"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":504,"id":159,"name":"auth","prevSize":32,"code":59669},"setIdx":0,"setId":2,"iconIdx":22},{"icon":{"paths":["M512 554.018c66.466 0 120.346-52.493 120.346-117.239 0-64.753-53.879-117.243-120.346-117.243s-120.347 52.491-120.347 117.243c0 64.747 53.881 117.239 120.347 117.239zM512 490.018c-32.708 0-56.346-25.404-56.346-53.239 0-27.84 23.637-53.243 56.346-53.243 32.704 0 56.346 25.403 56.346 53.243 0 27.836-23.642 53.239-56.346 53.239z","M364.125 894.144h-172.125c-17.673 0-32-14.327-32-32v-702.144c0-17.673 14.327-32 32-32h640c17.673 0 32 14.327 32 32v702.144c0 17.673-14.327 32-32 32h-172.126c-6.242 1.276-12.702 1.946-19.319 1.946h-257.109c-6.618 0-13.079-0.67-19.32-1.946zM224 830.144h68.244c-3.114-9.455-4.799-19.558-4.799-30.054v-93.449c0-56.107 37.881-105.143 92.172-119.309 19.171-5.005 39.265-5.312 58.583-0.9l42.773 9.766c20.049 4.578 40.909 4.254 60.813-0.939l28.070-7.326c20.693-5.397 42.381-5.73 63.232-0.973 60.531 13.824 103.467 67.665 103.467 129.758v83.371c0 10.496-1.685 20.599-4.8 30.054h68.245v-638.144h-576v638.144zM651.567 830.144c12.245-4.489 20.988-16.252 20.988-30.054v-83.371c0-32.235-22.289-60.186-53.713-67.362-10.825-2.47-22.084-2.3-32.828 0.503l-28.070 7.326c-29.85 7.791-61.141 8.273-91.217 1.404l-42.775-9.766c-9.29-2.121-18.955-1.971-28.175 0.435-26.112 6.814-44.331 30.396-44.331 57.382v93.449c0 13.803 8.74 25.566 20.989 30.054h279.133z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["avatar"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":505,"id":158,"name":"avatar","prevSize":32,"code":59670},"setIdx":0,"setId":2,"iconIdx":23},{"icon":{"paths":["M737.779 361.376c12.497 12.497 12.497 32.758 0 45.255l-110.946 110.95 110.946 110.946c12.497 12.497 12.497 32.759 0 45.257s-32.759 12.497-45.252 0l-110.95-110.95-110.95 110.95c-12.497 12.497-32.755 12.497-45.254 0-12.497-12.497-12.497-32.759 0-45.257l110.947-110.946-110.947-110.95c-12.497-12.497-12.497-32.758 0-45.255 12.498-12.497 32.756-12.497 45.254 0l110.95 110.948 110.95-110.948c12.493-12.497 32.755-12.497 45.252 0z","M312.246 218.073c12.061-16.393 31.2-26.073 51.552-26.073h468.202c35.345 0 64 28.654 64 64v512c0 35.345-28.655 64-64 64h-468.202c-20.352 0-39.491-9.681-51.551-26.074l-188.343-256c-16.598-22.562-16.598-53.291 0-75.853l188.343-256zM363.798 256l-188.343 256 188.343 256h468.202v-512h-468.202z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["backspace"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":506,"id":157,"name":"backspace","prevSize":32,"code":59671},"setIdx":0,"setId":2,"iconIdx":24},{"icon":{"paths":["M875.273 512c0-86.89-31.484-166.427-83.665-227.826l-496.163 496.161c61.399 52.181 140.937 83.665 227.828 83.665 194.402 0 352-157.598 352-352zM250.62 734.652l495.3-495.302c-60.659-49.597-138.18-79.349-222.647-79.349-194.406 0-352.002 157.596-352.002 352 0 84.467 29.752 161.988 79.349 222.652zM939.273 512c0 229.751-186.253 416-416 416-229.752 0-416.002-186.249-416.002-416s186.249-416 416.002-416c229.747 0 416 186.249 416 416z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ban"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":507,"id":156,"name":"ban","prevSize":32,"code":59672},"setIdx":0,"setId":2,"iconIdx":25},{"icon":{"paths":["M384 775.415c-17.673 0-32-14.327-32-32v-453.166c0-17.673 14.327-32 32-32h137.075c56.119 0 98.27 11.603 126.447 34.81 28.416 23.206 42.624 57.542 42.624 103.007 0 24.153-6.865 45.585-20.599 64.29-13.734 18.47-32.444 32.798-56.124 42.978 27.942 7.817 49.967 22.733 66.069 44.757 16.337 21.786 24.508 47.834 24.508 78.144 0 46.409-15.036 82.876-45.111 109.397-30.071 26.522-72.576 39.782-127.514 39.782h-147.375zM420.198 533.53v186.121h112.598c31.731 0 56.713-8.171 74.944-24.508 18.47-16.576 27.708-39.309 27.708-68.198 0-62.276-33.865-93.414-101.585-93.414h-113.664zM420.198 478.827h103.006c29.837 0 53.636-7.458 71.394-22.379 17.997-14.916 26.995-35.163 26.995-60.737 0-28.416-8.286-49.017-24.862-61.804-16.576-13.024-41.796-19.536-75.657-19.536h-100.877v164.456z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bold"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":508,"id":155,"name":"bold","prevSize":32,"code":59673},"setIdx":0,"setId":2,"iconIdx":26},{"icon":{"paths":["M352 445.44c0-17.677 14.327-32.002 32-32.002h256c17.673 0 32 14.325 32 32.002 0 17.673-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32z","M352 322.558c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32s-14.327 32-32 32h-256c-17.673 0-32-14.327-32-32z","M864 679.68c0 17.673-14.327 32-32 32h-18.509c-8.218 40.546-8.218 82.334 0 122.88h19.789c16.964 0 30.72 13.756 30.72 30.72s-13.756 30.72-30.72 30.72h-545.28c-70.692 0-128-55.014-128-122.88v-453.12c0-106.039 85.961-192 192-192h480c17.673 0 32 14.327 32 32v519.68zM748.42 834.56c-6.788-40.678-6.788-82.202 0-122.88h-460.42c-35.346 0-64 27.507-64 61.44s28.654 61.44 64 61.44h460.42zM224 647.68h576v-455.68h-448c-70.692 0-128 57.308-128 128v327.68z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":509,"id":154,"name":"book","prevSize":32,"code":59674},"setIdx":0,"setId":2,"iconIdx":27},{"icon":{"paths":["M224 224h320v576h-96v-112c0-8.836-7.164-16-16-16h-96c-8.837 0-16 7.164-16 16v112h-96v-576zM608 448h192v352h-192v-352zM832 384h-224v-192c0-17.673-14.327-32-32-32h-384c-17.673 0-32 14.327-32 32v640c0 17.673 14.327 32 32 32h640c17.673 0 32-14.327 32-32v-416c0-17.673-14.327-32-32-32zM304 288c-8.837 0-16 7.163-16 16v32c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16v-32c0-8.837-7.163-16-16-16h-32zM288 432c0-8.837 7.163-16 16-16h32c8.837 0 16 7.163 16 16v32c0 8.836-7.163 16-16 16h-32c-8.837 0-16-7.164-16-16v-32zM304 544c-8.837 0-16 7.164-16 16v32c0 8.836 7.163 16 16 16h32c8.837 0 16-7.164 16-16v-32c0-8.836-7.163-16-16-16h-32zM416 304c0-8.837 7.163-16 16-16h32c8.836 0 16 7.163 16 16v32c0 8.837-7.164 16-16 16h-32c-8.837 0-16-7.163-16-16v-32zM432 416c-8.837 0-16 7.163-16 16v32c0 8.836 7.163 16 16 16h32c8.836 0 16-7.164 16-16v-32c0-8.837-7.164-16-16-16h-32zM416 560c0-8.836 7.163-16 16-16h32c8.836 0 16 7.164 16 16v32c0 8.836-7.164 16-16 16h-32c-8.837 0-16-7.164-16-16v-32zM688 512c-8.836 0-16 7.164-16 16v32c0 8.836 7.164 16 16 16h32c8.836 0 16-7.164 16-16v-32c0-8.836-7.164-16-16-16h-32zM672 656c0-8.836 7.164-16 16-16h32c8.836 0 16 7.164 16 16v32c0 8.836-7.164 16-16 16h-32c-8.836 0-16-7.164-16-16v-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["business"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":510,"id":153,"name":"business","prevSize":32,"code":59675},"setIdx":0,"setId":2,"iconIdx":28},{"icon":{"paths":["M276.48 157.44c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v58.877h353.28v-58.877c0-16.259 13.18-29.44 29.44-29.44s29.44 13.181 29.44 29.44v58.877h85.76c17.673 0 32 14.327 32 32v583.679c0 17.673-14.327 32-32 32h-642.56c-17.673 0-32-14.327-32-32v-583.679c0-1.105 0.056-2.196 0.165-3.272 1.639-16.136 15.267-28.728 31.835-28.728h85.76v-58.877zM801.28 392.957h-578.56v407.039h578.56v-407.039zM423.68 644.476c0-8.836 7.163-16 16-16h26.88c8.836 0 16 7.164 16 16v26.88c0 8.836-7.164 16-16 16h-26.88c-8.836 0-16-7.164-16-16v-26.88zM321.92 510.72c-8.836 0-16 7.164-16 16v26.88c0 8.836 7.164 16 16 16h26.88c8.837 0 16-7.164 16-16v-26.88c0-8.836-7.163-16-16-16h-26.88zM541.44 526.72c0-8.836 7.164-16 16-16h26.88c8.836 0 16 7.164 16 16v26.88c0 8.836-7.164 16-16 16h-26.88c-8.836 0-16-7.164-16-16v-26.88zM321.92 628.476c-8.836 0-16 7.164-16 16v26.88c0 8.836 7.164 16 16 16h26.88c8.837 0 16-7.164 16-16v-26.88c0-8.836-7.163-16-16-16h-26.88zM541.44 644.476c0-8.836 7.164-16 16-16h26.88c8.836 0 16 7.164 16 16v26.88c0 8.836-7.164 16-16 16h-26.88c-8.836 0-16-7.164-16-16v-26.88zM439.68 510.72c-8.836 0-16 7.164-16 16v26.88c0 8.836 7.164 16 16 16h26.88c8.836 0 16-7.164 16-16v-26.88c0-8.836-7.164-16-16-16h-26.88zM659.2 526.72c0-8.836 7.164-16 16-16h26.88c8.836 0 16 7.164 16 16v26.88c0 8.836-7.164 16-16 16h-26.88c-8.836 0-16-7.164-16-16v-26.88zM675.2 628.476c-8.836 0-16 7.164-16 16v26.88c0 8.836 7.164 16 16 16h26.88c8.836 0 16-7.164 16-16v-26.88c0-8.836-7.164-16-16-16h-26.88z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":511,"id":152,"name":"calendar","prevSize":32,"code":59676},"setIdx":0,"setId":2,"iconIdx":29},{"icon":{"paths":["M877.402 153.128c-12.497-12.497-32.759-12.497-45.257 0l-668.244 668.244c-12.497 12.497-12.497 32.759 0 45.257s32.758 12.497 45.255 0l668.246-668.246c12.497-12.497 12.497-32.758 0-45.255zM309.94 170.672c-23.564 0-42.667 14.327-42.667 32s19.103 32 42.667 32h255.999c23.565 0 42.667-14.327 42.667-32s-19.102-32-42.667-32h-255.999zM585.446 309.329h-403.506c-41.237 0-74.667 33.429-74.667 74.667v384c0 6.012 0.71 11.853 2.051 17.455l61.949-61.952v-339.503c0-5.891 4.776-10.667 10.667-10.667h339.506l64-64zM387.612 778.662h306.327c5.892 0 10.667-4.774 10.667-10.667v-85.333c0-11.375 6.037-21.897 15.859-27.631 9.822-5.739 21.952-5.833 31.859-0.243l97.83 55.164c2.53 1.425 4.855 3.191 6.908 5.244 6.72 6.72 18.21 1.963 18.21-7.539v-263.322c0-9.502-11.49-14.263-18.206-7.543-2.057 2.057-4.382 3.819-6.912 5.248l-97.83 55.164c-9.907 5.585-22.037 5.495-31.859-0.243s-15.859-16.256-15.859-27.631v-7.663l110.78-73.495c47.42-41.99 123.887-8.7 123.887 56.164v263.322c0 64.862-76.467 98.155-123.887 56.162l-46.78-26.377v30.554c0 41.237-33.429 74.667-74.667 74.667h-370.327l64-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":512,"id":151,"name":"camera-disabled","prevSize":32,"code":59677},"setIdx":0,"setId":2,"iconIdx":30},{"icon":{"paths":["M288 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c17.673 0 32-14.327 32-32s-14.327-32-32-32h-256z","M170.667 341.328c-23.564 0-42.667 19.102-42.667 42.667v384.001c0 23.565 19.103 42.667 42.667 42.667h512c23.565 0 42.667-19.102 42.667-42.667v-128l97.83 97.83c26.88 26.876 72.836 7.842 72.836-30.17v-263.322c0-38.012-45.956-57.049-72.836-30.17l-97.83 97.831v-128.001c0-23.564-19.102-42.667-42.667-42.667h-512z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-filled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":513,"id":150,"name":"camera-filled","prevSize":32,"code":59678},"setIdx":0,"setId":2,"iconIdx":31},{"icon":{"paths":["M195.378 191.997c0-15.807 12.815-28.622 28.622-28.622h128c15.807 0 28.622 12.815 28.622 28.622s-12.815 28.622-28.622 28.622h-128c-15.807 0-28.622-12.814-28.622-28.622z","M736 559.996c0 97.203-78.797 176-176 176s-176-78.797-176-176c0-97.203 78.797-175.999 176-175.999s176 78.796 176 175.999zM672 559.996c0-61.854-50.146-112-112-112s-112 50.146-112 112c0 61.858 50.146 112 112 112s112-50.142 112-112z","M192 255.997c-35.346 0-64 28.654-64 64v447.999c0 35.345 28.654 64 64 64h640c35.345 0 64-28.655 64-64v-447.999c0-35.346-28.655-64-64-64h-640zM832 319.997v447.999h-640v-447.999h640z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-photo"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":514,"id":149,"name":"camera-photo","prevSize":32,"code":59679},"setIdx":0,"setId":2,"iconIdx":32},{"icon":{"paths":["M312.195 170.672c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h256.001c23.565 0 42.667-14.327 42.667-32s-19.102-32-42.667-32h-256.001z","M559.241 503.454c11.268-11.268 11.191-29.611-0.171-40.973-11.362-11.358-29.705-11.435-40.969-0.171l-71.403 71.403-71.997-71.996c-11.36-11.362-29.704-11.435-40.971-0.171-11.267 11.268-11.191 29.611 0.17 40.973l71.997 71.996-71.402 71.403c-11.267 11.264-11.191 29.606 0.17 40.969s29.704 11.439 40.971 0.171l71.404-71.403 71.996 71.996c11.358 11.362 29.705 11.439 40.969 0.171 11.268-11.264 11.191-29.611-0.171-40.969l-71.996-71.996 71.403-71.403z","M109.529 383.995c0-41.237 33.429-74.667 74.667-74.667h512.001c41.237 0 74.667 33.429 74.667 74.667v30.553l46.78-26.377c47.415-41.99 123.887-8.7 123.887 56.164v263.322c0 64.862-76.471 98.155-123.887 56.162l-46.78-26.377v30.554c0 41.237-33.429 74.667-74.667 74.667h-512.001c-41.237 0-74.667-33.429-74.667-74.667v-384.001zM184.195 373.328c-5.891 0-10.667 4.776-10.667 10.667v384.001c0 5.888 4.776 10.667 10.667 10.667h512.001c5.888 0 10.667-4.779 10.667-10.667v-85.333c0-11.375 6.037-21.897 15.859-27.631 9.822-5.739 21.948-5.833 31.859-0.243l97.826 55.164c2.534 1.425 4.855 3.191 6.912 5.244 6.72 6.72 18.21 1.963 18.21-7.539v-263.322c0-9.502-11.49-14.263-18.21-7.543-2.052 2.057-4.378 3.819-6.912 5.248l-97.826 55.164c-9.911 5.585-22.037 5.491-31.859-0.243-9.822-5.739-15.859-16.256-15.859-27.631v-85.334c0-5.891-4.779-10.667-10.667-10.667h-512.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-unavailable"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":515,"id":148,"name":"camera-unavailable","prevSize":32,"code":59680},"setIdx":0,"setId":2,"iconIdx":33},{"icon":{"paths":["M265.018 202.672c0-17.673 19.102-32 42.667-32h256.001c23.565 0 42.667 14.327 42.667 32s-19.102 32-42.667 32h-256.001c-23.564 0-42.667-14.327-42.667-32zM169.018 383.995c0-5.891 4.776-10.667 10.667-10.667h512.001c5.888 0 10.667 4.776 10.667 10.667v85.334c0 11.375 6.037 21.892 15.859 27.631 9.822 5.734 21.948 5.828 31.855 0.243l97.83-55.164c2.534-1.429 4.855-3.191 6.912-5.248 6.72-6.72 18.21-1.958 18.21 7.543v263.322c0 9.502-11.49 14.259-18.21 7.539-2.057-2.052-4.378-3.819-6.912-5.244l-97.83-55.164c-9.907-5.589-22.033-5.495-31.855 0.243-9.822 5.734-15.859 16.256-15.859 27.631v85.333c0 5.888-4.779 10.667-10.667 10.667h-512.001c-5.891 0-10.667-4.779-10.667-10.667v-384.001zM179.685 309.328c-41.237 0-74.667 33.429-74.667 74.667v384.001c0 41.237 33.43 74.667 74.667 74.667h512.001c41.237 0 74.667-33.429 74.667-74.667v-30.554l46.775 26.377c47.42 41.993 123.891 8.7 123.891-56.162v-263.322c0-64.864-76.471-98.155-123.891-56.164l-46.775 26.377v-30.553c0-41.237-33.429-74.667-74.667-74.667h-512.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":516,"id":147,"name":"camera","prevSize":32,"code":59681},"setIdx":0,"setId":2,"iconIdx":34},{"icon":{"paths":["M226.503 304.026c-49.642 68.947-66.502 152.644-66.502 207.97v1.451l-0.131 1.446c-9.702 106.718 28.59 181.931 90.135 234.005 62.938 53.257 152.152 83.733 244.195 93.961 91.968 10.219 193.271 1.446 273.31-15.479 40.017-8.465 73.613-18.735 97.438-29.077 9.246-4.015 16.439-7.787 21.739-11.127-2.466-1.566-5.449-3.302-9.003-5.197-9.225-4.911-19.78-9.579-30.733-14.366l-1.916-0.836c-9.664-4.224-20.471-8.943-28.655-13.521-14.835-8.294-29.389-17.732-40.004-27.772-5.227-4.941-11.166-11.571-15.147-19.827-4.211-8.742-7.223-21.794-1.306-35.601 31.979-74.62 47.177-115.49 54.537-142.481 6.874-25.199 6.874-37.888 6.874-58.061v-0.183c0-16.038-9.318-89.517-55.812-158.033-45.013-66.338-125.99-129.968-274.854-129.968-134.636 0-215.696 55.382-264.163 122.698zM174.565 266.63c60.333-83.796 160.607-149.302 316.102-149.302 171.136 0 271.497 75.037 327.812 158.032 54.839 80.818 66.854 167.337 66.854 193.969 0 22.383-0.021 41.694-9.126 75.085-8.128 29.807-23.484 70.929-51.942 137.924 5.261 4.169 13.069 9.306 23.356 15.061 5.316 2.974 13.487 6.554 24.964 11.571 10.654 4.655 23.437 10.266 35.174 16.512 11.26 5.995 24.418 14.033 34.202 24.542 10.231 10.991 20.975 29.845 13.299 52.864-5.056 15.164-16.794 25.937-26.577 33.092-10.628 7.774-23.817 14.763-38.251 21.030-29.009 12.587-67.029 23.962-109.683 32.981-85.312 18.039-193.583 27.588-293.615 16.474-99.956-11.106-202.741-44.629-278.47-108.71-76.833-65.011-123.811-159.996-112.66-287.223 0.286-65.549 19.841-162.346 78.561-243.902zM496 320c17.673 0 32 14.327 32 32v224c0 17.673-14.327 32-32 32s-32-14.327-32-32v-224c0-17.673 14.327-32 32-32zM528 672c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["canned-response"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":517,"id":146,"name":"canned-response","prevSize":32,"code":59682},"setIdx":0,"setId":2,"iconIdx":35},{"icon":{"paths":["M192 181.333c-53.019 0-96 42.981-96 96v469.333c0 53.018 42.981 96 96 96h640c53.018 0 96-42.982 96-96v-469.333c0-53.019-42.982-96-96-96h-640zM160 277.333c0-17.673 14.327-32 32-32h640c17.673 0 32 14.327 32 32v202.671h-704v-202.671zM160 544.004h704v202.662c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32v-202.662zM810.667 661.333c0-35.345-28.655-64-64-64s-64 28.655-64 64c0 35.345 28.655 64 64 64s64-28.655 64-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":518,"id":145,"name":"card","prevSize":32,"code":59683},"setIdx":0,"setId":2,"iconIdx":36},{"icon":{"paths":["M336 304c0-97.202 78.798-176 176-176 97.203 0 176 78.798 176 176v142.477h16c53.018 0 96 42.978 96 96v257.523c0 53.018-42.982 96-96 96h-384c-53.019 0-96-42.982-96-96v-257.523c0-53.022 42.981-96 96-96h16v-142.477zM400 446.477h224v-142.477c0-61.856-50.146-112-112-112s-112 50.144-112 112v142.477zM320 510.477c-17.673 0-32 14.327-32 32v257.523c0 17.673 14.327 32 32 32h384c17.673 0 32-14.327 32-32v-257.523c0-17.673-14.327-32-32-32h-384z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["channel-private"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":519,"id":144,"name":"channel-private","prevSize":32,"code":59684},"setIdx":0,"setId":2,"iconIdx":37},{"icon":{"paths":["M336 128c17.673 0 32 14.327 32 32v144h288v-144c0-17.673 14.327-32 32-32s32 14.327 32 32v144h144c17.673 0 32 14.327 32 32s-14.327 32-32 32h-144v288h144c17.673 0 32 14.327 32 32s-14.327 32-32 32h-144v144c0 17.673-14.327 32-32 32s-32-14.327-32-32v-144h-288v144c0 17.673-14.327 32-32 32s-32-14.327-32-32v-144h-144c-17.673 0-32-14.327-32-32s14.327-32 32-32h144v-288h-144c-17.673 0-32-14.327-32-32s14.327-32 32-32h144v-144c0-17.673 14.327-32 32-32zM368 368v288h288v-288h-288z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["channel-public"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":520,"id":143,"name":"channel-public","prevSize":32,"code":59685},"setIdx":0,"setId":2,"iconIdx":38},{"icon":{"paths":["M854.507 233.251c12.561 12.43 12.672 32.691 0.243 45.254l-474.877 480.001c-6.013 6.076-14.208 9.498-22.757 9.493s-16.743-3.426-22.752-9.506l-165.124-167.091c-12.423-12.57-12.303-32.828 0.268-45.252s32.832-12.305 45.254 0.269l142.376 144.068 452.113-456.993c12.429-12.564 32.691-12.672 45.257-0.243z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":521,"id":142,"name":"check","prevSize":32,"code":59686},"setIdx":0,"setId":2,"iconIdx":39},{"icon":{"paths":["M282.726 436.041c12.497-12.498 32.758-12.498 45.255 0l185.372 185.37 185.374-185.37c12.497-12.498 32.755-12.498 45.252 0s12.497 32.755 0 45.252l-208 208c-12.497 12.497-32.755 12.497-45.252 0l-208.001-208c-12.497-12.497-12.497-32.755 0-45.252z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-down"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":522,"id":141,"name":"chevron-down","prevSize":32,"code":59687},"setIdx":0,"setId":2,"iconIdx":40},{"icon":{"paths":["M671.057 183.163c16.683 16.663 16.683 43.677 0 60.34l-268.852 268.497 268.852 268.497c16.683 16.661 16.683 43.678 0 60.339-16.687 16.661-43.738 16.661-60.42 0l-299.061-298.667c-8.012-8-12.513-18.854-12.513-30.17s4.501-22.17 12.513-30.17l299.061-298.667c16.683-16.662 43.733-16.662 60.42 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-left-big"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":523,"id":140,"name":"chevron-left-big","prevSize":32,"code":59688},"setIdx":0,"setId":2,"iconIdx":41},{"icon":{"paths":["M593.822 281.373c12.497 12.497 12.497 32.758 0 45.255l-185.372 185.373 185.372 185.374c12.497 12.497 12.497 32.755 0 45.252s-32.755 12.497-45.252 0l-208.002-208c-12.497-12.497-12.497-32.755 0-45.252l208.002-208.001c12.497-12.497 32.755-12.497 45.252 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-left"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":524,"id":139,"name":"chevron-left","prevSize":32,"code":59689},"setIdx":0,"setId":2,"iconIdx":42},{"icon":{"paths":["M444.156 742.626c-12.497-12.497-12.497-32.755 0-45.252l185.374-185.374-185.374-185.373c-12.497-12.497-12.497-32.758 0-45.255s32.759-12.497 45.257 0l208 208.001c12.497 12.497 12.497 32.755 0 45.252l-208 208c-12.497 12.497-32.759 12.497-45.257 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-right"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":525,"id":138,"name":"chevron-right","prevSize":32,"code":59690},"setIdx":0,"setId":2,"iconIdx":43},{"icon":{"paths":["M746.236 587.959c-12.497 12.497-32.759 12.497-45.257 0l-185.374-185.371-185.371 185.371c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l208-208.001c12.497-12.497 32.759-12.497 45.257 0l208 208.001c12.497 12.497 12.497 32.755 0 45.252z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-up"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":526,"id":137,"name":"chevron-up","prevSize":32,"code":59691},"setIdx":0,"setId":2,"iconIdx":44},{"icon":{"paths":["M512 864c194.402 0 352-157.598 352-352 0-46.519-9.024-90.932-25.417-131.582l48.516-48.518c26.214 54.496 40.9 115.584 40.9 180.1 0 229.751-186.249 416-416 416s-416-186.249-416-416c0-229.751 186.249-416 416-416 95.377 0 183.253 32.096 253.423 86.076l-45.709 45.712c-58.223-42.623-130.031-67.788-207.714-67.788-194.404 0-352 157.596-352 352 0 194.402 157.596 352 352 352zM902.63 230.624c12.497-12.499 12.493-32.76-0.009-45.255-12.497-12.495-32.759-12.491-45.252 0.008l-345.387 345.504-105.339-105.491c-12.488-12.506-32.749-12.52-45.255-0.032-12.506 12.489-12.52 32.747-0.032 45.253l127.971 128.158c6.003 6.007 14.144 9.387 22.635 9.387 8.495 0.004 16.636-3.371 22.643-9.374l368.026-368.156z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["circle-check"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":527,"id":136,"name":"circle-check","prevSize":32,"code":59692},"setIdx":0,"setId":2,"iconIdx":45},{"icon":{"paths":["M608 192c0-53.019-42.982-96-96-96s-96 42.981-96 96h-192c-17.673 0-32 14.327-32 32v672c0 17.673 14.327 32 32 32h576c17.673 0 32-14.327 32-32v-672c0-17.673-14.327-32-32-32h-192zM256 864v-608h96v64c0 17.673 14.327 32 32 32h256c17.673 0 32-14.327 32-32v-64h96v608h-512zM512 224c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":528,"id":135,"name":"clipboard","prevSize":32,"code":59693},"setIdx":0,"setId":2,"iconIdx":46},{"icon":{"paths":["M864 512c0 194.402-157.598 352-352 352-194.404 0-352-157.598-352-352 0-194.404 157.596-352 352-352 194.402 0 352 157.596 352 352zM928 512c0-229.751-186.249-416-416-416s-416 186.249-416 416c0 229.751 186.249 416 416 416s416-186.249 416-416zM544 288c0-17.673-14.327-32-32-32s-32 14.327-32 32v224c0 8.486 3.371 16.627 9.374 22.626l96 96c12.497 12.497 32.755 12.497 45.252 0s12.497-32.755 0-45.252l-86.626-86.63v-210.743z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clock"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":529,"id":134,"name":"clock","prevSize":32,"code":59694},"setIdx":0,"setId":2,"iconIdx":47},{"icon":{"paths":["M806.626 262.627c12.497-12.497 12.497-32.758 0-45.255s-32.755-12.497-45.252 0l-249.374 249.371-249.373-249.371c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.758 0 45.255l249.371 249.373-249.371 249.374c-12.497 12.497-12.497 32.755 0 45.252s32.758 12.497 45.255 0l249.373-249.37 249.374 249.37c12.497 12.497 32.755 12.497 45.252 0s12.497-32.755 0-45.252l-249.37-249.374 249.37-249.373z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["close"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":530,"id":133,"name":"close","prevSize":32,"code":59695},"setIdx":0,"setId":2,"iconIdx":48},{"icon":{"paths":["M273.129 356.679c6.747-28.299 25.696-52.005 51.209-67.153 25.601-15.2 56.323-20.858 84.699-14.531 27.639 6.164 55.116 24.12 74.871 60.34l22.541 41.324 30.135-36.162c27.238-32.687 85.129-39.712 134.716-14.063 23.561 12.187 42.206 30.617 52.062 53.489 9.655 22.406 12.113 51.897-1.434 89.149l-15.616 42.935h45.687c53.606 0 82.419 15.881 97.643 33.749 15.65 18.377 21.897 44.651 18.556 74.718-3.345 30.084-16.055 60.514-33.455 82.889-17.941 23.066-36.651 32.644-50.743 32.644h-543.998c-18.791 0-37.067-10.359-52.194-31.578-15.217-21.342-24.977-51.051-25.818-81.31-0.84-30.229 7.238-57.916 23.734-77.491 15.795-18.748 42.268-33.621 86.278-33.621h59.792l-33.166-49.749c-27.882-41.825-32.118-77.815-25.498-105.58zM518.221 272.084c-26.342-32.073-59.669-51.619-95.255-59.554-45.624-10.173-92.902-0.833-131.301 21.965-38.487 22.85-69.538 60.142-80.791 107.342-8.278 34.72-5.369 72.759 10.731 111.77-35.67 8.465-64.099 26.185-84.825 50.782-29.004 34.423-39.927 78.737-38.767 120.508 1.159 41.741 14.399 84.032 37.682 116.689 23.373 32.785 59.097 58.423 104.305 58.423h543.999c41.907 0 77.201-26.419 101.261-57.353 24.597-31.629 41.886-73.195 46.545-115.115 4.659-41.933-3.098-87.659-33.446-123.285-24.102-28.297-59.503-46.771-105.613-53.453 5.833-35.195 1.685-67.675-10.607-96.206-16.644-38.627-46.997-67.197-81.438-85.009-54.899-28.397-128.734-32.652-182.481 2.495zM512 437.333c17.673 0 32 14.327 32 32v53.329h53.333c17.673 0 32 14.323 32 32 0 17.673-14.327 32-32 32h-53.333v53.338c0 17.673-14.327 32-32 32s-32-14.327-32-32v-53.338h-53.333c-17.672 0-31.999-14.327-31.999-32 0-17.677 14.327-32 31.999-32h53.333v-53.329c0-17.673 14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-connectivity"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":531,"id":132,"name":"cloud-connectivity","prevSize":32,"code":59696},"setIdx":0,"setId":2,"iconIdx":49},{"icon":{"paths":["M639.172 204.798c16.495 6.344 24.725 24.859 18.381 41.354l-213.333 554.667c-6.345 16.495-24.861 24.725-41.356 18.381s-24.724-24.862-18.38-41.357l213.335-554.666c6.34-16.495 24.858-24.724 41.353-18.38zM330.312 361.371c12.497 12.497 12.497 32.758 0 45.255l-105.373 105.374 105.373 105.37c12.497 12.497 12.497 32.759 0 45.257s-32.758 12.497-45.255 0l-128-128c-12.497-12.497-12.497-32.759 0-45.257l128-127.999c12.497-12.497 32.758-12.497 45.255 0zM711.723 361.371c12.497-12.497 32.759-12.497 45.257 0l128 127.999c12.497 12.497 12.497 32.759 0 45.257l-128 128c-12.497 12.497-32.759 12.497-45.257 0s-12.497-32.759 0-45.257l105.374-105.37-105.374-105.374c-12.497-12.497-12.497-32.758 0-45.255z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["code"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":532,"id":131,"name":"code","prevSize":32,"code":59697},"setIdx":0,"setId":2,"iconIdx":50},{"icon":{"paths":["M768 224c17.673 0 32 14.327 32 32v544c0 17.673-14.327 32-32 32h-544c-17.673 0-32-14.327-32-32v-128c17.673 0 32-14.327 32-32s-14.327-32-32-32v-192c17.673 0 32-14.327 32-32s-14.327-32-32-32v-96c0-17.673 14.327-32 32-32h544zM128 608c-17.673 0-32 14.327-32 32s14.327 32 32 32v128c0 53.018 42.981 96 96 96h544c53.018 0 96-42.982 96-96v-544c0-53.019-42.982-96-96-96h-544c-53.019 0-96 42.981-96 96v96c-17.673 0-32 14.327-32 32s14.327 32 32 32v192zM425.205 514.266c13.315-3.567 27.309-3.789 40.732-0.644l31.518 7.39c8.73 2.044 17.83 1.903 26.492-0.418l22.182-5.943c14.289-3.823 29.329-4.036 43.682-0.674 40.431 9.476 69.325 45.585 69.325 87.279v24.337c0 31.812-25.788 57.6-57.6 57.6h-180.736c-31.812 0-57.6-25.788-57.6-57.6v-30.528c0-37.862 25.432-71.002 62.005-80.798zM454.251 563.473c-5.205-1.22-10.633-1.135-15.799 0.247-14.186 3.802-24.051 16.657-24.051 31.343v30.528c0 3.533 2.865 6.4 6.4 6.4h180.736c3.537 0 6.4-2.867 6.4-6.4v-24.337c0-17.749-12.365-33.34-29.807-37.427-6.182-1.451-12.659-1.353-18.752 0.282l-22.187 5.943c-16.811 4.501-34.475 4.779-51.418 0.806l-31.522-7.386zM536.448 420.48c0-13.962-11.315-25.28-25.28-25.28-13.961 0-25.28 11.319-25.28 25.28 0 13.96 11.319 25.28 25.28 25.28 13.965 0 25.28-11.319 25.28-25.28zM587.648 420.48c0 42.24-34.24 76.48-76.48 76.48s-76.48-34.24-76.48-76.48c0-42.239 34.24-76.48 76.48-76.48s76.48 34.242 76.48 76.48z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["contacts"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":533,"id":130,"name":"contacts","prevSize":32,"code":59698},"setIdx":0,"setId":2,"iconIdx":51},{"icon":{"paths":["M464 272c-35.345 0-64 28.654-64 64v480c0 35.345 28.655 64 64 64h352c35.345 0 64-28.655 64-64v-304c0-6.511-1.984-12.864-5.692-18.214l-134.455-194.215c-11.955-17.267-31.616-27.57-52.621-27.57h-223.232zM464 336h144v144c0 35.345 28.655 64 64 64h144v272h-352v-480zM672 480v-144h15.232l99.695 144h-114.927zM144 208c0-35.346 28.654-64 64-64h241.843c18.031 0 35.226 7.607 47.356 20.949l39.138 43.051h-328.337v480h128v64h-128c-35.346 0-64-28.655-64-64v-480z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":534,"id":129,"name":"copy","prevSize":32,"code":59699},"setIdx":0,"setId":2,"iconIdx":52},{"icon":{"paths":["M822.242 183.279c-37.141-37.936-98.074-38.532-135.953-1.331l-348.017 341.786c-12.722 12.497-21.706 28.284-25.943 45.594l-23.65 96.623c-6.931 28.318 16.732 54.771 45.685 51.072l90.573-11.563c20.195-2.577 39.050-11.503 53.834-25.485l360.013-340.471c38.933-36.82 40.119-98.352 2.633-136.64l-19.174-19.584zM731.166 227.52c12.625-12.4 32.934-12.201 45.316 0.444l19.174 19.584c12.497 12.762 12.1 33.273-0.879 45.547l-69.871 66.081-63.364-63.28 69.623-68.376zM615.906 340.713l62.511 62.427-243.652 230.426c-4.928 4.659-11.211 7.633-17.943 8.495l-58.231 7.433 15.908-64.99c1.412-5.769 4.407-11.034 8.648-15.198l232.76-228.593zM192.001 265.251c0-17.65 14.327-31.958 32-31.958h280.959c17.673 0 32-14.308 32-31.958s-14.327-31.958-32-31.958h-280.959c-53.019 0-96 42.924-96 95.874v533.695c0 52.949 42.981 95.872 96 95.872h529.065c53.022 0 96-42.923 96-95.872v-279.044c0-17.651-14.327-31.962-32-31.962s-32 14.31-32 31.962v279.044c0 17.651-14.327 31.957-32 31.957h-529.065c-17.673 0-32-14.306-32-31.957v-533.695z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["create"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":535,"id":128,"name":"create","prevSize":32,"code":59700},"setIdx":0,"setId":2,"iconIdx":53},{"icon":{"paths":["M714.667 298.663c0-17.673-14.327-32-32-32s-32 14.327-32 32v426.666c0 17.673 14.327 32 32 32s32-14.327 32-32v-426.666z","M512 394.671c17.673 0 32 14.327 32 32v298.667c0 17.673-14.327 32-32 32s-32-14.327-32-32v-298.667c0-17.673 14.327-32 32-32z","M373.333 554.671c0-17.673-14.327-32-32-32s-32 14.327-32 32v170.667c0 17.677 14.327 32 32 32s32-14.323 32-32v-170.667z","M128 199.555v624.888c0 39.518 32.037 71.556 71.555 71.556h624.888c39.518 0 71.556-32.038 71.556-71.556v-624.888c0-39.519-32.038-71.555-71.556-71.555h-624.888c-39.519 0-71.555 32.037-71.555 71.555zM199.555 192h624.888c4.173 0 7.556 3.383 7.556 7.555v624.888c0 4.173-3.383 7.556-7.556 7.556h-624.888c-4.173 0-7.555-3.383-7.555-7.556v-624.888c0-4.173 3.383-7.555 7.555-7.555z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dashboard"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":536,"id":127,"name":"dashboard","prevSize":32,"code":59701},"setIdx":0,"setId":2,"iconIdx":54},{"icon":{"paths":["M736 864.209v-447.408h-448v447.408h448zM224 864.209v-447.408c-35.346 0-64-28.616-64-63.916v-127.831c0-35.299 28.654-63.916 64-63.916h224c0-35.299 28.655-63.915 64-63.915s64 28.616 64 63.915h224c35.345 0 64 28.616 64 63.916v127.831c0 35.299-28.655 63.916-64 63.916v447.408c0 35.298-28.655 63.915-64 63.915h-448c-35.346 0-64-28.617-64-63.915zM800 225.055h-576v127.831h576v-127.831zM416 544.631v191.748c0 17.647 14.327 31.957 32 31.957s32-14.31 32-31.957v-191.748c0-17.647-14.327-31.957-32-31.957s-32 14.31-32 31.957zM576 512.674c17.673 0 32 14.31 32 31.957v191.748c0 17.647-14.327 31.957-32 31.957s-32-14.31-32-31.957v-191.748c0-17.647 14.327-31.957 32-31.957z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delete"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":537,"id":126,"name":"delete","prevSize":32,"code":59702},"setIdx":0,"setId":2,"iconIdx":55},{"icon":{"paths":["M341.335 778.671c-17.673 0-32 14.327-32 32s14.327 32 32 32h341.332c17.673 0 32-14.327 32-32s-14.327-32-32-32h-341.332z","M85.335 298.672c0-70.692 57.308-128 128-128h597.332c70.694 0 128 57.308 128 128v298.666c0 70.694-57.306 128-128 128h-597.332c-70.693 0-128-57.306-128-128v-298.666zM213.335 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.349 28.654 64 64 64h597.332c35.349 0 64-28.655 64-64v-298.666c0-35.346-28.651-64-64-64h-597.332z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["desktop"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":538,"id":125,"name":"desktop","prevSize":32,"code":59703},"setIdx":0,"setId":2,"iconIdx":56},{"icon":{"paths":["M320 159.791c0-17.649-14.327-31.958-32-31.958h-64c-17.673 0-32 14.308-32 31.958v63.916c0 17.65 14.327 31.958 32 31.958h64c17.673 0 32-14.308 32-31.958v-63.916zM320 585.894c0-17.651-14.327-31.957-32-31.957h-64c-17.673 0-32 14.306-32 31.957v63.915c0 17.651 14.327 31.957 32 31.957h64c17.673 0 32-14.306 32-31.957v-63.915zM448 159.791c0-17.649 14.327-31.958 32-31.958h64c17.673 0 32 14.308 32 31.958v63.916c0 17.65-14.327 31.958-32 31.958h-64c-17.673 0-32-14.308-32-31.958v-63.916zM576 372.843c0-17.65-14.327-31.958-32-31.958h-64c-17.673 0-32 14.308-32 31.958v63.914c0 17.651 14.327 31.957 32 31.957h64c17.673 0 32-14.306 32-31.957v-63.914zM448 585.894c0-17.651 14.327-31.957 32-31.957h64c17.673 0 32 14.306 32 31.957v63.915c0 17.651-14.327 31.957-32 31.957h-64c-17.673 0-32-14.306-32-31.957v-63.915zM576 798.946c0-17.651-14.327-31.957-32-31.957h-64c-17.673 0-32 14.306-32 31.957v63.915c0 17.651 14.327 31.957 32 31.957h64c17.673 0 32-14.306 32-31.957v-63.915zM704 159.791c0-17.649 14.327-31.958 32-31.958h64c17.673 0 32 14.308 32 31.958v63.916c0 17.65-14.327 31.958-32 31.958h-64c-17.673 0-32-14.308-32-31.958v-63.916zM832 372.843c0-17.65-14.327-31.958-32-31.958h-64c-17.673 0-32 14.308-32 31.958v63.914c0 17.651 14.327 31.957 32 31.957h64c17.673 0 32-14.306 32-31.957v-63.914zM704 585.894c0-17.651 14.327-31.957 32-31.957h64c17.673 0 32 14.306 32 31.957v63.915c0 17.651-14.327 31.957-32 31.957h-64c-17.673 0-32-14.306-32-31.957v-63.915zM320 372.843c0-17.65-14.327-31.958-32-31.958h-64c-17.673 0-32 14.308-32 31.958v63.914c0 17.651 14.327 31.957 32 31.957h64c17.673 0 32-14.306 32-31.957v-63.914z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dialpad"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":539,"id":124,"name":"dialpad","prevSize":32,"code":59704},"setIdx":0,"setId":2,"iconIdx":57},{"icon":{"paths":["M512 96c80.094 0 154.901 22.636 218.377 61.859l-46.746 46.746c-24.738-13.843-51.324-24.785-79.287-32.368 12.169 22.394 23.078 49.096 32.405 79.249l-51.998 51.999c-5.658-22.993-12.169-44.004-19.349-62.666-12.821-33.338-26.522-55.927-38.473-69.070-8.397-9.235-13.431-11.29-14.929-11.698-1.498 0.407-6.532 2.463-14.929 11.698-11.951 13.143-25.651 35.731-38.473 69.070-16.299 42.377-29.175 96.867-36.34 159.182h65.976l-64 63.999h-7.114c-0.116 2.47-0.224 4.949-0.322 7.437l-64.536 64.538c-0.174-7.936-0.262-15.927-0.262-23.974 0-16.23 0.358-32.247 1.054-48h-189.809c-2.14 15.697-3.245 31.718-3.245 48 0 33.28 4.619 65.485 13.251 96h106.984l-64 64h-17.852c2.004 3.921 4.079 7.799 6.223 11.631l-46.746 46.746c-39.223-63.475-61.859-138.283-61.859-218.377 0-229.751 186.249-416 416-416zM866.142 293.623l-46.746 46.746c10.56 18.873 19.43 38.819 26.411 59.632h-86.046l-64 63.999h164.992c2.142 15.697 3.247 31.718 3.247 48 0 33.28-4.617 65.485-13.252 96h-183.027c2.799-30.814 4.279-62.959 4.279-96 0-8.047-0.085-16.038-0.26-23.974l-64.538 64.538c-0.751 19.008-2.022 37.517-3.763 55.437h-51.678l-64 64h107.093c-7.369 42.458-17.489 80.081-29.453 111.185-12.821 33.335-26.522 55.923-38.473 69.069-8.397 9.233-13.431 11.29-14.929 11.695-1.498-0.405-6.532-2.462-14.929-11.695-11.951-13.146-25.651-35.733-38.473-69.069-7.177-18.662-13.692-39.676-19.349-62.673l-51.998 52.002c9.327 30.153 20.238 56.853 32.404 79.249-27.964-7.582-54.546-18.526-79.285-32.367l-46.746 46.746c63.347 39.142 137.984 61.769 217.899 61.858h0.956c229.53-0.26 415.522-186.411 415.522-416 0-80.094-22.635-154.903-61.858-218.377zM419.657 172.237c-113.551 30.788-204.311 116.98-241.465 227.764h179.674c10-93.227 32.176-173.254 61.791-227.764zM604.348 851.763c24.393-44.902 43.738-107.119 55.39-179.763h165.879c-44.651 87.347-124.723 153.583-221.269 179.763zM825.374 153.373c12.497-12.497 32.755-12.497 45.252 0s12.497 32.758 0 45.255l-671.999 671.999c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l672.001-672.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directory-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":540,"id":123,"name":"directory-disabled","prevSize":32,"code":59705},"setIdx":0,"setId":2,"iconIdx":58},{"icon":{"paths":["M864 511.326c0 33.237-4.621 65.399-13.252 95.876h-183.027c2.799-30.78 4.279-62.878 4.279-95.876 0-16.209-0.358-32.205-1.054-47.936h189.807c2.142 15.676 3.247 31.676 3.247 47.936zM606.882 463.39c0.734 15.65 1.118 31.646 1.118 47.936 0 33.353-1.604 65.468-4.561 95.876h-182.876c-2.958-30.409-4.562-62.524-4.562-95.876 0-16.29 0.383-32.286 1.12-47.936h189.762zM666.133 399.476c-9.997-93.104-32.175-173.025-61.79-227.464 113.553 30.747 204.309 116.826 241.463 227.464h-179.674zM419.657 172.012c-29.615 54.438-51.791 134.359-61.791 227.464h-179.674c37.155-110.638 127.914-196.717 241.465-227.464zM422.259 399.476c7.164-62.232 20.041-116.651 36.34-158.972 12.821-33.295 26.522-55.853 38.473-68.979 8.397-9.223 13.431-11.276 14.929-11.683 1.498 0.407 6.532 2.46 14.929 11.683 11.951 13.126 25.651 35.684 38.473 68.979 16.299 42.321 29.175 96.739 36.339 158.972h-179.482zM353.054 463.39c-0.696 15.731-1.054 31.727-1.054 47.936 0 32.998 1.482 65.097 4.282 95.876h-183.031c-8.632-30.477-13.251-62.639-13.251-95.876 0-16.26 1.105-32.26 3.245-47.936h189.809zM364.263 671.117c11.652 72.55 30.999 134.682 55.392 179.524-96.549-26.146-176.621-92.292-221.273-179.524h165.881zM512.478 926.775c229.53-0.256 415.522-186.163 415.522-415.45 0-229.447-186.249-415.451-416-415.451s-416 186.004-416 415.451c0 229.291 185.992 415.194 415.522 415.45 0.158 0.004 0.32 0.004 0.478 0.004s0.32 0 0.478-0.004zM604.348 850.641c24.393-44.843 43.738-106.978 55.39-179.524h165.879c-44.651 87.232-124.723 153.378-221.269 179.524zM594.854 671.117c-7.369 42.398-17.489 79.974-29.453 111.036-12.821 33.293-26.522 55.851-38.473 68.979-8.397 9.22-13.431 11.273-14.929 11.682-1.498-0.41-6.532-2.462-14.929-11.682-11.951-13.129-25.651-35.686-38.473-68.979-11.964-31.061-22.080-68.638-29.453-111.036h165.709z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directory"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":541,"id":122,"name":"directory","prevSize":32,"code":59706},"setIdx":0,"setId":2,"iconIdx":59},{"icon":{"paths":["M561.668 127.99c-121.698 0-200.973 50.509-248.815 115.801-46.216 63.073-61.638 137.752-61.933 188.615-8.705 98.748 28.601 172.898 89.423 223.471 59.685 49.626 140.202 75.26 217.847 83.738 77.751 8.486 161.715 1.195 227.857-12.548 33.067-6.869 62.775-15.578 85.641-25.331 11.366-4.847 22.029-10.368 30.797-16.67 7.876-5.662 18.543-14.976 23.245-28.834 7.283-21.474-3.136-38.784-11.968-48.102-8.41-8.879-19.426-15.403-28.237-20.015-9.306-4.868-19.379-9.207-27.533-12.71-8.977-3.853-14.861-6.396-18.56-8.431-4.847-2.662-8.845-5.086-12.028-7.202 20.254-47.142 31.548-77.043 37.696-99.191 7.292-26.27 7.313-41.723 7.313-58.907 0-21.523-9.6-88.542-52.809-151.109-44.702-64.73-124.070-122.573-257.937-122.573zM314.916 433.894c0-40.414 12.606-101.841 49.562-152.276 35.783-48.835 95.882-89.628 197.19-89.628 112.085 0 172.087 46.886 205.274 94.94 34.679 50.219 41.472 104.040 41.472 114.741v0.2c0.004 14.918 0.004 23.638-4.979 41.594-5.491 19.776-16.964 50.189-41.54 106.534-5.798 13.295-2.761 25.771 1.156 33.754 3.665 7.479 9.003 13.244 13.329 17.263 8.836 8.213 20.655 15.684 32.226 22.046 6.618 3.635 15.236 7.334 22.562 10.475l1.562 0.67c5.905 2.539 11.52 4.971 16.687 7.42-0.909 0.41-1.856 0.823-2.833 1.237-17.741 7.569-43.081 15.206-73.557 21.542-60.945 12.663-138.065 19.209-207.885 11.584-69.926-7.633-136.986-30.336-183.881-69.325-45.46-37.798-73.674-92.066-66.481-169.822l0.136-1.472v-1.476zM819.162 553.348l-0.073-0.081c0 0 0.009 0.009 0.026 0.034 0.013 0.013 0.026 0.030 0.047 0.047z","M178.552 502.468c7.496-11.255 16.26-22.259 26.436-32.589 0.876 31.744 6.169 61.227 15.216 88.358-15.094 30.878-18.374 59.315-18.374 65.357v0.188c-0 11.379-0 17.532 3.523 30.699 3.993 14.916 12.441 38.212 30.867 82.022 5.256 12.497 2.48 24.098-0.985 31.428-3.249 6.874-7.925 12.058-11.511 15.514-7.319 7.057-16.852 13.257-25.751 18.33-5.008 2.854-11.333 5.705-16.546 8.026 11.182 3.942 24.979 7.817 40.803 11.226 44.976 9.694 101.833 14.673 153.062 8.87 51.281-5.807 99.779-23.014 133.353-51.964l0.606-0.525c14.793 2.782 29.53 4.937 44.053 6.519 10.88 1.19 21.858 2.091 32.875 2.722-10.121 14.797-22.165 28.045-35.742 39.753-46.362 39.974-108.544 60.365-167.945 67.089-59.451 6.729-123.406 0.947-173.745-9.899-25.169-5.427-48.056-12.352-65.902-20.245-8.86-3.917-17.457-8.503-24.686-13.892-6.431-4.791-15.831-13.171-20.001-25.92-6.422-19.631 2.792-35.443 10.458-43.831 7.193-7.872 16.405-13.461 23.247-17.173 7.309-3.968 15.158-7.467 21.235-10.176 6.906-3.076 10.854-4.855 13.183-6.182 1.35-0.768 2.59-1.502 3.727-2.197-13.937-33.886-21.975-56.119-26.479-72.947-5.68-21.222-5.7-33.873-5.7-47.433 0-17.711 7.436-71.138 40.721-121.126zM155.337 797.244c-0.012 0.004 0.084 0.107 0.317 0.303-0.19-0.205-0.306-0.303-0.317-0.303zM179.587 737.084c-0.003 0-0.052 0.051-0.137 0.149l0.112-0.119c0.019-0.021 0.027-0.030 0.025-0.030z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discussions"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":542,"id":121,"name":"discussions","prevSize":32,"code":59707},"setIdx":0,"setId":2,"iconIdx":60},{"icon":{"paths":["M160 256c0-17.673 14.327-32 32-32h640c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32zM160 421.161c0-17.673 14.327-32 32-32h640c17.673 0 32 14.327 32 32s-14.327 32.001-32 32.001h-640c-17.673 0-32-14.327-32-32.001zM160 602.837c0-17.673 14.327-32 32-32h640c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32zM160 768c0-17.673 14.327-32 32-32h344.614c17.673 0 32 14.327 32 32s-14.327 32-32 32h-344.614c-17.673 0-32-14.327-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":543,"id":120,"name":"document","prevSize":32,"code":59708},"setIdx":0,"setId":2,"iconIdx":61},{"icon":{"paths":["M129.353 351.541c0-17.65 14.327-31.958 32-31.958h704c17.673 0 32 14.308 32 31.958s-14.327 31.958-32 31.958h-704c-17.673 0-32-14.308-32-31.958zM214.686 521.984c0-17.651 14.327-31.957 32-31.957h533.333c17.673 0 32 14.306 32 31.957s-14.327 31.957-32 31.957h-533.333c-17.673 0-32-14.306-32-31.957zM332.019 660.467c-17.673 0-32 14.306-32 31.957 0 17.647 14.327 31.957 32 31.957h362.667c17.673 0 32-14.31 32-31.957 0-17.651-14.327-31.957-32-31.957h-362.667z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["donner"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":544,"id":119,"name":"donner","prevSize":32,"code":59709},"setIdx":0,"setId":2,"iconIdx":62},{"icon":{"paths":["M273.128 356.679c-6.619 27.765-2.384 63.755 25.498 105.58l21.374 32.060v17.69h-48c-44.011 0-70.483 14.874-86.278 33.621-16.496 19.575-24.573 47.262-23.734 77.491 0.841 30.259 10.601 59.968 25.818 81.31 15.127 21.218 33.403 31.578 52.194 31.578h80v64h-80c-45.209 0-80.933-25.638-104.305-58.423-23.283-32.657-36.523-74.948-37.682-116.689-1.161-41.771 9.763-86.084 38.767-120.508 20.726-24.597 49.155-42.317 84.825-50.782-16.1-39.010-19.009-77.050-10.731-111.77 11.253-47.2 42.304-84.492 80.791-107.342 38.399-22.798 85.676-32.138 131.301-21.965 35.587 7.935 68.909 27.48 95.252 59.554 53.751-35.147 127.582-30.892 182.485-2.495 34.436 17.812 64.794 46.382 81.438 85.009 12.292 28.531 16.435 61.011 10.603 96.206 46.114 6.682 81.51 25.156 105.617 53.453 30.349 35.627 38.106 81.353 33.446 123.285-4.659 41.92-21.948 83.486-46.545 115.115-24.060 30.933-59.354 57.353-101.261 57.353h-80v-64h80c14.093 0 32.802-9.579 50.739-32.644 17.404-22.374 30.114-52.804 33.455-82.889 3.341-30.067-2.901-56.341-18.556-74.718-15.219-17.869-44.032-33.749-97.638-33.749h-45.687l15.616-42.935c13.542-37.252 11.089-66.743 1.434-89.149-9.856-22.872-28.501-41.302-52.062-53.489-49.587-25.649-107.477-18.624-134.716 14.063l-30.135 36.162-22.541-41.324c-19.759-36.22-47.232-54.176-74.872-60.34-28.375-6.327-59.098-0.669-84.699 14.531-25.513 15.148-44.462 38.854-51.209 67.153zM630.98 787.221c12.297-12.689 11.981-32.947-0.708-45.248-12.693-12.301-32.951-11.985-45.252 0.708l-41.020 42.321v-273.003c0-17.673-14.327-32-32-32s-32 14.327-32 32v273.003l-41.020-42.321c-12.301-12.693-32.561-13.009-45.251-0.708s-13.007 32.559-0.707 45.248l95.998 99.051c6.029 6.217 14.319 9.728 22.98 9.728s16.951-3.511 22.98-9.728l96-99.051z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["download"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":545,"id":118,"name":"download","prevSize":32,"code":59710},"setIdx":0,"setId":2,"iconIdx":63},{"icon":{"paths":["M794.598 131.828c-24.994-24.994-65.515-24.994-90.509 0l-529.769 529.769c-9.564 9.562-15.852 21.909-17.962 35.273l-19.585 124.019c-1.384 8.764-0.941 17.28 1.005 25.229 7.587 30.997 38.032 53.367 72.195 47.974l124.022-19.584c13.36-2.112 25.708-8.401 35.272-17.963l529.771-529.769c12.497-12.497 18.743-28.877 18.743-45.257 0-10.365-2.505-20.73-7.509-30.111-2.901-5.443-6.647-10.556-11.238-15.144l-104.435-104.437zM629.845 296.585l119.497-119.5 104.439 104.436-119.501 119.5-104.435-104.436zM199.991 830.874l19.585-124.019 365.013-365.015 104.435 104.436-365.012 365.013-124.021 19.584z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["edit"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":546,"id":117,"name":"edit","prevSize":32,"code":59711},"setIdx":0,"setId":2,"iconIdx":64},{"icon":{"paths":["M332.328 644.885c-21.571-19.618-6.007-52.885 23.151-52.885 8.965 0 17.527 3.529 24.272 9.438 21.605 18.918 42.641 31.957 62.702 40.508 36.565 15.59 71.808 17.109 104.794 9.941 37.632-8.179 72.657-27.81 102.11-51.345 6.724-5.376 14.997-8.542 23.607-8.542 30.217 0 45.615 34.257 22.396 53.594-36.911 30.741-82.79 57.591-134.519 68.834-44.8 9.732-93.67 7.629-143.486-13.606-28.791-12.275-57.234-30.656-85.026-55.936z","M402.423 480c35.345 0 64-28.655 64-64 0-35.346-28.655-64-64-64s-64 28.654-64 64c0 35.345 28.654 64 64 64z","M626.423 480c35.345 0 64-28.655 64-64 0-35.346-28.655-64-64-64s-64 28.654-64 64c0 35.345 28.655 64 64 64z","M930.257 512c0 229.751-186.253 416-416 416-229.752 0-416.002-186.249-416.002-416s186.249-416 416.002-416c229.747 0 416 186.249 416 416zM866.257 512c0-194.404-157.598-352-352-352-194.406 0-352.002 157.596-352.002 352 0 194.402 157.596 352 352.002 352 194.402 0 352-157.598 352-352z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":547,"id":116,"name":"emoji","prevSize":32,"code":59712},"setIdx":0,"setId":2,"iconIdx":65},{"icon":{"paths":["M655.292 512c88.367 0 160-71.633 160-160 0-88.366-71.633-160-160-160s-160 71.634-160 160c0 26.934 6.656 52.313 18.411 74.583l-11.913 11.915 0.128 0.128-299.136 299.136c-3.533 9.924-6.409 20.975-7.738 31.607-1.652 13.218-0.562 22.967 1.874 28.937 1.768 4.335 4.22 7.232 10.772 9.015 8.316 2.261 24.518 2.795 52.822-5.504 8.524-3.806 27.721-16.282 45.133-35.379 18.18-19.938 29.647-41.856 29.647-62.438 0-15.642 11.309-28.992 26.739-31.565l91.751-15.292c3.767-2.658 18.765-15.693 10.129-58.867-2.095-10.492 1.186-21.338 8.751-28.902l88.201-88.196c26.466 19.379 59.11 30.822 94.43 30.822zM439.121 410.916c-5.107-18.773-7.829-38.527-7.829-58.916 0-123.712 100.288-224 224-224s224 100.288 224 224c0 123.712-100.288 224-224 224-29.286 0-57.263-5.619-82.906-15.842l-43.004 43.008c7.155 65.493-23.996 104.533-55.974 115.191l-2.381 0.794-74.855 12.476c-7.083 31.407-25.173 58.125-43.235 77.935-23.122 25.357-50.958 44.629-69.762 52.151l-1.324 0.529-1.365 0.41c-34.714 10.415-64.73 13.188-89.594 6.426-26.782-7.283-44.33-24.785-53.228-46.583-8.23-20.164-8.474-42.283-6.126-61.065 2.402-19.217 7.899-37.956 14.042-53.312 1.609-4.023 4.020-7.68 7.084-10.743l286.458-286.458zM623.292 336c0 26.51 21.491 48 48 48s48-21.49 48-48c0-26.51-21.491-48-48-48s-48 21.49-48 48z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["encrypted"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":548,"id":115,"name":"encrypted","prevSize":32,"code":59713},"setIdx":0,"setId":2,"iconIdx":66},{"icon":{"paths":["M416 586.445v177.233l75.516-62.929c11.866-9.89 29.103-9.89 40.969 0l75.516 62.929v-177.233c-29.094 13.82-61.645 21.555-96 21.555s-66.906-7.735-96-21.555zM352 540.766v291.234c0 12.416 7.183 23.71 18.427 28.979 11.244 5.265 24.521 3.554 34.059-4.395l107.514-89.596 107.516 89.596c9.536 7.949 22.814 9.66 34.057 4.395 11.247-5.269 18.428-16.563 18.428-28.979v-291.234c39.59-40.401 64-95.731 64-156.766 0-123.712-100.288-224-224-224s-224 100.288-224 224c0 61.035 24.41 116.365 64 156.766zM416 512.013l-0.015-0.013c-38.854-29.193-63.985-75.661-63.985-128 0-88.366 71.634-160 160-160 88.367 0 160 71.634 160 160 0 52.34-25.131 98.808-63.983 128l-0.017 0.013c-26.739 20.083-59.981 31.987-96 31.987s-69.261-11.904-96-31.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["enterprise-feature"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":549,"id":114,"name":"enterprise-feature","prevSize":32,"code":59714},"setIdx":0,"setId":2,"iconIdx":67},{"icon":{"paths":["M514.338 128c213.35 0 386.334 172.985 386.334 386.338 0 192.866-141.257 352.704-325.978 381.662v-269.961h90.027l17.114-111.701h-107.14v-72.474c0-11.46 2.108-22.822 7.275-32.544 2.475-4.655 5.653-8.932 9.638-12.665 9.865-9.246 24.687-15.152 46.054-15.152h48.734v-95.080c0 0-44.224-7.552-86.49-7.552-84.698 0-141.261 49.314-145.655 138.908-0.183 3.737-0.273 7.545-0.273 11.421v85.137h-98.12v111.701h98.12v269.961c-184.721-29.013-325.978-188.847-325.978-381.662 0-213.353 172.985-386.338 386.338-386.338z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["facebook-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":550,"id":113,"name":"facebook-monochromatic","prevSize":32,"code":59715},"setIdx":0,"setId":2,"iconIdx":68},{"icon":{"paths":["M373.333 448c0-17.673 14.327-32 32-32h213.334c17.673 0 32 14.327 32 32s-14.327 32-32 32h-213.334c-17.673 0-32-14.327-32-32z","M405.333 544c-17.673 0-32 14.327-32 32s14.327 32 32 32h213.334c17.673 0 32-14.327 32-32s-14.327-32-32-32h-213.334z","M256 128c-17.673 0-32 14.327-32 32v704c0 17.673 14.327 32 32 32h512c17.673 0 32-14.327 32-32v-501.745c0-6.67-2.082-13.172-5.961-18.6l-144.469-202.255c-6.003-8.41-15.701-13.4-26.039-13.4h-367.531zM736 372.51v459.49h-448v-640h319.066l128.934 180.51z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-document"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":551,"id":112,"name":"file-document","prevSize":32,"code":59716},"setIdx":0,"setId":2,"iconIdx":69},{"icon":{"paths":["M128 192c-17.673 0-32 14.327-32 32v576.021c0 17.673 14.327 32 32 32h768c17.673 0 32-14.327 32-32v-576.021c0-17.673-14.327-32-32-32h-768zM160 378.302v-122.302h149.333v122.302h-149.333zM160 442.304h149.333v141.722h-149.333v-141.722zM160 648.026h149.333v119.996h-149.333v-119.996zM373.333 768.021v-119.996h490.667v119.996h-490.667zM864 584.026h-490.667v-141.722h490.667v141.722zM864 378.302h-490.667v-122.302h490.667v122.302z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-sheet"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":552,"id":111,"name":"file-sheet","prevSize":32,"code":59717},"setIdx":0,"setId":2,"iconIdx":70},{"icon":{"paths":["M202.342 293.308c-30.381-42.346-0.116-101.308 52.001-101.308h517.886c51.11 0 81.6 56.951 53.265 99.484l-180.442 270.85v220.467c0 46.293-47.629 77.274-89.946 58.505l-121.263-53.777c-23.137-10.261-38.054-33.195-38.054-58.505v-166.084l-193.448-269.632zM772.228 256h-517.886l193.449 269.632c7.804 10.876 11.998 23.923 11.998 37.308v166.084l121.263 53.777v-220.467c0-12.629 3.738-24.977 10.739-35.486l180.437-270.848z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":553,"id":110,"name":"filter","prevSize":32,"code":59718},"setIdx":0,"setId":2,"iconIdx":71},{"icon":{"paths":["M623.091 896c-2.803 0-5.299-0.623-7.168-0.939-61.999-16.858-102.818-39.646-145.813-80.858-55.147-54.007-85.369-125.815-85.369-202.3 0-65.873 56.705-119.573 126.495-119.573 69.794 0 126.498 53.7 126.498 119.573 0 34.965 31.467 63.373 69.79 63.373s69.794-28.407 69.794-63.373c0-135.808-119.646-246.636-266.705-246.636-104.997 0-200.337 57.132-243.334 145.793-14.332 29.35-21.498 63.066-21.498 100.843 0 28.719 2.493 73.365 24.925 131.746 2.804 7.181 2.493 14.673-0.623 21.854-3.116 6.865-9.036 11.861-16.201 14.357-2.804 1.25-6.231 1.562-9.658 1.562-11.84 0-22.433-7.181-26.484-18.108-19.005-50.261-28.352-99.9-28.352-151.727 0-46.204 9.036-88.35 26.795-125.5 52.343-108.020 167.935-177.64 294.431-177.64 178.53 0 323.721 135.805 323.721 302.828 0 65.873-56.704 119.573-126.81 119.573-70.101 0-126.805-53.7-126.805-119.573 0-34.965-31.471-63.373-69.794-63.373-38.635 0-69.79 28.407-69.79 63.373 0 61.504 24.303 119.262 68.544 162.342 35.209 34.031 68.855 53.073 120.576 67.123 7.168 1.873 13.397 6.554 17.139 13.111 3.738 6.558 4.672 14.362 2.803 21.231-2.803 11.861-14.020 20.915-27.106 20.915zM426.803 888.196c-7.79 0-15.267-3.123-20.253-8.742-33.338-32.781-51.72-54.012-77.892-100.527-26.795-47.142-41.127-105.212-41.127-167.339 0-116.446 100.948-211.354 224.95-211.354 124.006 0 224.956 94.908 224.956 211.354 0 15.612-12.463 28.1-28.356 28.1-15.889 0-28.663-12.177-28.663-28.1 0-85.538-75.401-155.157-168.247-155.157-92.846 0-168.245 69.619-168.245 155.157 0 52.45 11.84 100.527 34.272 139.554 23.368 41.519 38.946 59.004 68.855 88.661 10.906 11.238 10.906 28.723 0 39.65-5.918 5.931-13.086 8.742-20.25 8.742zM699.738 818.889c-47.36 0-88.798-11.866-123.383-34.965-59.196-39.65-94.716-103.962-94.716-172.335 0-15.607 12.463-28.096 28.352-28.096s28.352 12.489 28.352 28.096c0 49.643 26.172 96.781 69.794 125.504 25.237 16.858 55.147 24.977 91.601 24.977 7.787 0 22.43-0.939 38.012-3.746 1.557-0.311 3.426-0.311 4.983-0.311 13.709 0 25.237 9.988 27.729 23.411 1.246 7.181-0.311 14.673-4.361 20.608-4.365 6.242-10.906 10.611-18.697 11.861-23.364 4.685-43.93 4.996-47.667 4.996zM188.765 435.823c-5.608 0-11.216-1.562-16.201-4.992-6.543-4.062-10.593-10.616-12.151-18.109-1.246-7.493 0.311-14.985 4.985-21.229 38.634-53.698 87.862-95.844 146.125-125.502 60.133-30.595 129.612-46.829 200.96-46.829 71.040 0 140.207 15.922 200.030 46.205 58.573 29.658 107.802 71.493 146.125 124.566 4.361 5.932 6.229 13.425 4.983 20.917s-5.606 14.049-11.84 18.42c-4.983 3.435-10.594 4.992-16.512 4.992-9.037 0-17.758-4.369-23.057-11.861-33.335-45.893-75.712-82.107-125.559-107.083-52.343-26.224-112.789-40.273-174.481-40.273-62.31 0-122.756 14.049-175.1 40.585-49.851 25.912-92.535 62.127-126.185 108.644-3.739 6.869-12.463 11.55-22.121 11.55zM733.696 239.142c-4.672 0-9.344-1.249-13.397-3.434-71.347-35.902-133.35-51.512-207.505-51.512-74.462 0-144.254 17.483-207.814 51.825-4.050 2.185-8.724 3.122-13.397 3.122-10.282 0-19.629-5.62-24.925-14.361-3.739-6.556-4.674-14.361-2.493-21.542s7.166-13.424 13.709-16.858c72.596-38.712 151.733-58.38 234.921-58.38 82.569 0 154.85 17.795 233.988 58.068 6.857 3.434 11.84 9.366 14.332 16.858 2.185 7.18 1.246 14.673-2.18 21.229-4.983 9.053-14.643 14.985-25.237 14.985z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fingerprint"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":554,"id":109,"name":"fingerprint","prevSize":32,"code":59719},"setIdx":0,"setId":2,"iconIdx":72},{"icon":{"paths":["M266.667 170.667c0-17.673 14.327-32 32-32h500.621c12.122 0 23.202 6.848 28.625 17.689 5.419 10.841 4.25 23.814-3.025 33.511l-122.133 162.845 122.133 162.843c7.275 9.698 8.444 22.673 3.025 33.51-5.423 10.842-16.503 17.69-28.625 17.69h-468.621v286.579c0 17.673-14.327 32-32 32s-32-14.327-32-32v-682.667zM330.667 502.754h404.621l-98.133-130.843c-8.533-11.378-8.533-27.023 0-38.4l98.133-130.845h-404.621v300.087z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flag"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":555,"id":108,"name":"flag","prevSize":32,"code":59720},"setIdx":0,"setId":2,"iconIdx":73},{"icon":{"paths":["M138.667 213.333c0-17.673 14.327-32 32-32h234.057c7.183 0 14.156 2.416 19.798 6.86l88.814 69.94h339.998c17.673 0 32 14.327 32 32v520.533c0 17.673-14.327 32-32 32h-682.667c-17.673 0-32-14.327-32-32v-597.333zM202.667 245.333v533.333h618.667v-456.533h-319.087c-7.181 0-14.153-2.416-19.797-6.86l-88.813-69.94h-190.97z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":556,"id":107,"name":"folder","prevSize":32,"code":59721},"setIdx":0,"setId":2,"iconIdx":74},{"icon":{"paths":["M370.254 544c0-17.673-14.327-32-32-32s-32 14.327-32 32v32h-32c-17.673 0-32 14.327-32 32s14.327 32 32 32h32v32c0 17.673 14.327 32 32 32s32-14.327 32-32v-32h32c17.673 0 31.999-14.327 31.999-32s-14.326-32-31.999-32h-32v-32z","M746.253 624c30.929 0 56-25.071 56-56s-25.071-56-56-56c-30.925 0-56 25.071-56 56s25.075 56 56 56z","M674.253 664c0 30.929-25.071 56-56 56-30.925 0-56-25.071-56-56s25.075-56 56-56c30.929 0 56 25.071 56 56z","M706.253 128c0-17.673-14.327-32-32-32s-32 14.327-32 32v96h-128c-17.673 0-32 14.327-32 32v96h-191.999c-106.039 0-192 85.961-192 192v128c0 106.039 85.961 192 192 192h447.999c106.039 0 192-85.961 192-192v-128c0-106.039-85.961-192-192-192h-192v-64h128c17.673 0 32-14.327 32-32v-128zM866.253 544v128c0 70.694-57.306 128-128 128h-447.999c-70.693 0-128-57.306-128-128v-128c0-70.694 57.307-128 128-128h447.999c70.694 0 128 57.306 128 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["game"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":557,"id":106,"name":"game","prevSize":32,"code":59722},"setIdx":0,"setId":2,"iconIdx":75},{"icon":{"paths":["M508.006 170.646l23.036 24.005 23.633-24.005 74.667 0.041v75.855h74.667v75.855h74.667v26.519h0.004v455.125h-0.004v49.293h-522.675v-682.688h252.006zM554.671 246.5h-224.003v530.98h373.34v-379.23h-149.338v-151.75z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["giphy-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":558,"id":105,"name":"giphy-monochromatic","prevSize":32,"code":59723},"setIdx":0,"setId":2,"iconIdx":76},{"icon":{"paths":["M862.455 324.045c-35.2-60.31-82.944-108.058-143.249-143.253-60.314-35.197-126.161-52.792-197.581-52.792-71.415 0-137.28 17.6-197.58 52.792-60.31 35.194-108.054 82.943-143.253 143.253-35.194 60.308-52.792 126.165-52.792 197.568 0 85.773 25.024 162.901 75.086 231.407 50.056 68.51 114.721 115.917 193.99 142.225 9.227 1.711 16.058 0.508 20.499-3.584 4.443-4.096 6.662-9.225 6.662-15.369 0-1.024-0.088-10.249-0.259-27.678-0.176-17.429-0.259-32.631-0.259-45.606l-11.789 2.039c-7.516 1.378-16.998 1.963-28.446 1.796-11.442-0.162-23.321-1.361-35.619-3.588-12.304-2.21-23.748-7.334-34.342-15.364-10.588-8.030-18.104-18.543-22.547-31.518l-5.125-11.793c-3.416-7.851-8.794-16.576-16.142-26.138-7.347-9.57-14.778-16.055-22.294-19.473l-3.589-2.569c-2.391-1.707-4.61-3.767-6.662-6.157-2.050-2.389-3.585-4.779-4.61-7.172-1.027-2.398-0.176-4.365 2.562-5.905 2.737-1.545 7.685-2.291 14.864-2.291l10.247 1.532c6.834 1.37 15.287 5.461 25.371 12.297 10.078 6.835 18.362 15.718 24.856 26.645 7.863 14.012 17.335 24.691 28.446 32.038 11.101 7.347 22.294 11.017 33.568 11.017s21.010-0.858 29.214-2.556c8.195-1.711 15.884-4.279 23.062-7.693 3.075-22.903 11.446-40.495 25.112-52.796-19.473-2.048-36.983-5.129-52.535-9.229-15.542-4.1-31.604-10.761-48.173-19.998-16.578-9.22-30.331-20.672-41.262-34.334-10.932-13.666-19.904-31.612-26.904-53.815-7.003-22.212-10.505-47.838-10.505-76.881 0-41.348 13.5-76.538 40.493-105.584-12.645-31.088-11.451-65.94 3.585-104.55 9.909-3.079 24.604-0.768 44.078 6.917 19.477 7.689 33.738 14.275 42.796 19.736 9.058 5.459 16.316 10.085 21.784 13.837 31.782-8.881 64.58-13.322 98.406-13.322s66.633 4.441 98.415 13.322l19.477-12.295c13.316-8.204 29.043-15.722 47.142-22.556 18.112-6.831 31.957-8.712 41.532-5.633 15.369 38.612 16.738 73.461 4.092 104.55 26.991 29.045 40.495 64.243 40.495 105.587 0 29.039-3.516 54.746-10.509 77.129-6.997 22.387-16.047 40.316-27.149 53.82-11.115 13.5-24.956 24.862-41.523 34.082-16.576 9.225-32.64 15.885-48.183 19.989-15.548 4.105-33.058 7.189-52.531 9.237 17.762 15.373 26.641 39.633 26.641 72.772v108.139c0 6.14 2.138 11.268 6.413 15.369 4.271 4.092 11.017 5.295 20.245 3.58 79.279-26.304 143.945-73.711 193.997-142.221 50.048-68.506 75.081-145.634 75.081-231.407-0.017-71.394-17.621-137.247-52.8-197.555z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["github-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":559,"id":104,"name":"github-monochromatic","prevSize":32,"code":59724},"setIdx":0,"setId":2,"iconIdx":77},{"icon":{"paths":["M133.618 423.61h215.092l-92.537-284.607c-4.739-14.671-25.504-14.671-30.244 0l-92.311 284.607zM86.899 567.168l46.72-143.543h737.135l46.72 143.543c4.288 13.094-0.452 27.537-11.511 35.435l-403.776 293.41-403.776-293.41c-11.060-7.898-15.799-22.34-11.511-35.435zM655.663 423.61h215.091l-92.314-284.607c-4.74-14.671-25.502-14.671-30.242 0l-92.535 284.607z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gitlab-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":560,"id":103,"name":"gitlab-monochromatic","prevSize":32,"code":59725},"setIdx":0,"setId":2,"iconIdx":78},{"icon":{"paths":["M648.499 170.667h-256.113l-264.387 460.8 124.984 221.867h534.915l124.983-221.867-264.384-460.8zM381.509 631.467l138.935-239.787 138.931 239.787h-277.866z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google-drive-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":561,"id":102,"name":"google-drive-monochromatic","prevSize":32,"code":59726},"setIdx":0,"setId":2,"iconIdx":79},{"icon":{"paths":["M667.081 338.153c-39.799-38.051-90.415-57.425-146.795-57.425-100.014 0-184.669 67.549-214.865 158.313h-0.002c-7.679 23.036-12.042 47.646-12.042 72.951 0 25.31 4.364 49.92 12.044 72.96l0 0.009c30.196 90.761 114.851 158.31 214.865 158.31 51.665 0 95.65-13.615 130.035-36.655v-0.013c40.67-27.23 67.725-67.9 76.629-115.9h-206.665v-148.535h361.66c4.535 25.135 6.98 51.315 6.98 78.545 0 116.945-41.89 215.39-114.5 282.24v0.013c-63.535 58.65-150.46 93.035-254.14 93.035-150.109 0-279.97-86.054-343.156-211.55v-0.009c-26.007-51.84-40.844-110.485-40.844-172.45 0-61.961 14.836-120.61 40.844-172.45h0.004c63.187-125.494 193.046-211.542 343.152-211.542 103.505 0 190.43 38.051 256.93 100.015l-110.135 110.138z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":562,"id":101,"name":"google-monochromatic","prevSize":32,"code":59727},"setIdx":0,"setId":2,"iconIdx":80},{"icon":{"paths":["M509.333 728.098c-44.578-0.546-89.015-14.801-126.453-42.765h-38.88v338.667h-5.333v-334.895l-332.514 332.514-3.771-3.772 332.514-332.514h-334.896v-5.333h338.667v-38.882c-27.959-37.44-42.21-81.877-42.755-126.451h-295.912v-5.333h295.912c0.549-44.57 14.8-89.001 42.755-126.433v-38.9h-338.667v-5.333h334.896l-332.514-332.514 3.771-3.771 332.514 332.514v-334.895h5.333v338.667h38.903c37.433-27.951 81.865-42.2 126.43-42.746v-295.92h5.333v295.92c44.565 0.547 88.998 14.796 126.43 42.746h38.903v-338.667h5.333v334.896l332.514-332.515 3.772 3.771-332.514 332.514h334.895v5.333h-338.667v38.9c27.955 37.433 42.206 81.864 42.756 126.433h295.91v5.333h-295.91c-0.546 44.574-14.797 89.011-42.756 126.451v38.882h338.667v5.333h-334.895l332.514 332.514-3.772 3.772-332.514-332.514v334.895h-5.333v-338.667h-38.882c-37.436 27.964-81.873 42.219-126.451 42.765v295.902h-5.333v-295.902zM509.333 722.551v-37.218h-116.952c35.117 24.294 75.975 36.702 116.952 37.218zM385.018 680h124.315v-161.562l-144.327 144.329c6.388 6.229 13.075 11.977 20.012 17.233zM361.084 666.688l-13.312 13.312h28.26c-5.135-4.169-10.124-8.606-14.947-13.312zM361.235 658.995l144.326-144.329h-161.562v124.314c5.258 6.938 11.003 13.623 17.235 20.015zM344 647.966v28.262l13.313-13.312c-4.708-4.826-9.146-9.813-13.313-14.95zM338.667 631.616v-116.949h-37.208c0.514 40.977 12.917 81.83 37.208 116.949zM301.459 509.333h37.208v-116.931c-24.288 35.113-36.69 75.958-37.208 116.931zM344 385.038v124.295h161.562l-144.318-144.319c-6.235 6.391-11.983 13.082-17.243 20.023zM365.015 361.243l144.319 144.318v-161.562h-124.292c-6.943 5.26-13.634 11.008-20.026 17.243zM376.052 344h-28.281l13.321 13.321c4.827-4.711 9.82-9.152 14.96-13.321zM392.406 338.667h116.927v-37.199c-40.969 0.516-81.818 12.916-116.927 37.199zM514.667 301.467v37.199h116.928c-35.11-24.284-75.959-36.684-116.928-37.199zM638.959 344h-124.292v161.562l144.32-144.318c-6.396-6.236-13.086-11.984-20.028-17.244zM662.758 365.015l-144.32 144.319h161.562v-124.295c-5.261-6.941-11.008-13.632-17.242-20.023zM680 376.050v-28.279l-13.321 13.321c4.71 4.826 9.152 9.818 13.321 14.958zM685.333 392.402v116.931h37.21c-0.521-40.973-12.924-81.818-37.21-116.931zM722.543 514.667h-37.21v116.949c24.29-35.119 36.693-75.972 37.21-116.949zM680 638.98v-124.314h-161.562l144.329 144.329c6.229-6.391 11.977-13.077 17.233-20.015zM658.995 662.767l-144.329-144.329v161.562h124.314c6.938-5.257 13.623-11.004 20.015-17.233zM647.97 680h28.258l-13.312-13.312c-4.821 4.706-9.813 9.143-14.946 13.312zM631.62 685.333h-116.954v37.218c40.977-0.516 81.835-12.924 116.954-37.218zM666.688 662.916l13.312 13.312v-28.262c-4.169 5.137-8.606 10.125-13.312 14.95zM662.908 357.321l13.321-13.321h-28.279c5.137 4.169 10.133 8.61 14.959 13.321zM357.321 361.092l-13.321-13.321v28.279c4.169-5.139 8.61-10.131 13.321-14.958z"],"attrs":[{"fill":"rgb(255, 192, 192)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":6}]}},"attrs":[{"fill":"rgb(255, 192, 192)"}],"properties":{"order":563,"id":100,"name":"grid","prevSize":32,"code":59728},"setIdx":0,"setId":2,"iconIdx":81},{"icon":{"paths":["M132.506 272c0-17.673 14.327-32 32-32h703.999c17.673 0 32 14.327 32 32s-14.327 32-32 32h-703.999c-17.673 0-32-14.327-32-32zM292.506 432c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32zM292.506 752c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32zM452.506 624c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-31.999 14.327-31.999 32s14.327 32 31.999 32zM388.506 400c-17.673 0-32 14.327-32 32s14.327 32 32 32h479.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-479.999zM356.506 752c0-17.673 14.327-32 32-32h479.999c17.673 0 32 14.327 32 32s-14.327 32-32 32h-479.999c-17.673 0-32-14.327-32-32zM580.506 560c-17.673 0-32 14.327-32 32s14.327 32 32 32h288c17.673 0 32-14.327 32-32s-14.327-32-32-32h-288z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["group-by-type"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":564,"id":99,"name":"group-by-type","prevSize":32,"code":59729},"setIdx":0,"setId":2,"iconIdx":82},{"icon":{"paths":["M160 512c0-17.673 13.133-32 29.333-32h645.333c16.201 0 29.333 14.327 29.333 32s-13.133 32-29.333 32h-645.333c-16.201 0-29.333-14.327-29.333-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["h-bar"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":565,"id":98,"name":"h-bar","prevSize":32,"code":59730},"setIdx":0,"setId":2,"iconIdx":83},{"icon":{"paths":["M170.667 245.333c0-17.673 14.327-32 32-32h640.845c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640.845c-17.673 0-32-14.327-32-32zM170.667 501.333c0-17.673 14.327-32 32-32h640.845c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640.845c-17.673 0-32-14.327-32-32zM170.667 757.333c0-17.673 14.327-32 32-32h640.845c17.673 0 32 14.327 32 32s-14.327 32-32 32h-640.845c-17.673 0-32-14.327-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hamburguer"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":566,"id":97,"name":"hamburguer","prevSize":32,"code":59731},"setIdx":0,"setId":2,"iconIdx":84},{"icon":{"paths":["M832 512c0 176.73-143.27 320-320 320-176.731 0-320-143.27-320-320h-64c0 212.079 171.923 384 384 384 212.079 0 384-171.921 384-384 0-212.077-171.921-384-384-384-123.718 0-233.772 58.508-304 149.364v-101.364c0-17.673-14.327-32-32-32s-32 14.327-32 32v192c0 17.673 14.327 32 32 32h176c17.673 0 32-14.327 32-32s-14.327-32-32-32h-107.295c57.239-86.755 155.582-144 267.295-144 176.73 0 320 143.269 320 320z","M544 320c0-17.673-14.327-32-32-32s-32 14.327-32 32v224c0 8.486 3.371 16.627 9.374 22.626l96 96c12.497 12.497 32.755 12.497 45.252 0s12.497-32.755 0-45.252l-86.626-86.63v-210.743z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["history"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":567,"id":96,"name":"history","prevSize":32,"code":59732},"setIdx":0,"setId":2,"iconIdx":85},{"icon":{"paths":["M521.357 195.096l224.171 259.701v365.751c0 5.85-4.749 10.59-10.607 10.59h-136.235v-149.623c0-23.394-18.987-42.355-42.411-42.355h-85.841c-23.424 0-42.415 18.961-42.415 42.355v149.623h-136.229c-5.856 0-10.603-4.74-10.603-10.59v-365.824l224.105-259.628c4.233-4.9 11.836-4.9 16.064 0zM559.834 894.673h175.087c40.994 0 74.223-33.186 74.223-74.125v-243.883h56.154c12.437 0 23.735-7.241 28.919-18.534 5.18-11.294 3.294-24.567-4.826-33.975l-319.846-370.544c-29.611-34.302-82.829-34.302-112.435 0l-319.848 370.544c-8.122 9.408-10.007 22.682-4.825 33.975s16.48 18.534 28.918 18.534h56.214v243.883c0 40.939 33.231 74.125 74.223 74.125h175.085c1.173 0.098 2.359 0.149 3.558 0.149h85.841c1.199 0 2.385-0.051 3.558-0.149z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":568,"id":95,"name":"home","prevSize":32,"code":59733},"setIdx":0,"setId":2,"iconIdx":86},{"icon":{"paths":["M405.333 405.333c0 47.13-38.205 85.333-85.333 85.333s-85.333-38.204-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z","M96 192c0-17.673 14.327-32 32-32h768c17.673 0 32 14.327 32 32v640c0 17.673-14.327 32-32 32h-768c-17.673 0-32-14.327-32-32v-640zM160 764.164l151.704-176.99c9.269-10.816 24.571-14.199 37.538-8.307l153.124 69.602 160.474-204.241c6.007-7.646 15.172-12.147 24.9-12.228 9.728-0.077 18.961 4.271 25.097 11.823l151.164 186.048v-405.871h-704v540.164zM213.575 800h650.425v-68.638l-175.582-216.102-166.78 212.271-176.99-80.448-131.073 152.917z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["image"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":569,"id":94,"name":"image","prevSize":32,"code":59734},"setIdx":0,"setId":2,"iconIdx":87},{"icon":{"paths":["M512 873.024c-199.389 0-361.026-161.634-361.026-361.024s161.637-361.026 361.026-361.026c199.39 0 361.024 161.637 361.024 361.026s-161.634 361.024-361.024 361.024zM512 938.667c235.639 0 426.667-191.027 426.667-426.667 0-235.642-191.027-426.667-426.667-426.667-235.642 0-426.667 191.025-426.667 426.667 0 235.639 191.025 426.667 426.667 426.667zM544.819 347.898c0 18.126-14.694 32.82-32.819 32.82s-32.819-14.694-32.819-32.82c0-18.127 14.694-32.82 32.819-32.82s32.819 14.694 32.819 32.82zM512 413.539c-18.125 0-32.819 14.694-32.819 32.819v229.747c0 18.125 14.694 32.819 32.819 32.819s32.819-14.694 32.819-32.819v-229.747c0-18.125-14.694-32.819-32.819-32.819z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["info"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":570,"id":93,"name":"info","prevSize":32,"code":59735},"setIdx":0,"setId":2,"iconIdx":88},{"icon":{"paths":["M512 864c-194.404 0-352-157.598-352-352 0-194.404 157.596-352 352-352 194.406 0 352 157.596 352 352 0 194.402-157.594 352-352 352zM512 928c229.751 0 416-186.249 416-416s-186.249-416-416-416c-229.751 0-416 186.249-416 416s186.249 416 416 416zM662.626 361.373c12.497 12.497 12.497 32.758 0 45.255l-105.37 105.373 105.37 105.374c12.497 12.497 12.497 32.755 0 45.252s-32.755 12.497-45.252 0l-105.374-105.37-105.373 105.37c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l105.371-105.374-105.371-105.373c-12.497-12.497-12.497-32.758 0-45.255s32.758-12.497 45.255 0l105.373 105.371 105.374-105.371c12.497-12.497 32.755-12.497 45.252 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["input-clear"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":571,"id":92,"name":"input-clear","prevSize":32,"code":59736},"setIdx":0,"setId":2,"iconIdx":89},{"icon":{"paths":["M546.253 352c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM561.865 436.996c2.756-17.457-9.161-33.844-26.62-36.6-17.455-2.756-33.843 9.161-36.599 26.616l-48 304c-2.756 17.459 9.161 33.843 26.62 36.599 17.455 2.756 33.843-9.161 36.599-26.615l48-304z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["italic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":572,"id":91,"name":"italic","prevSize":32,"code":59737},"setIdx":0,"setId":2,"iconIdx":90},{"icon":{"paths":["M497.139 169.373c12.493 12.497 12.493 32.758 0 45.255l-35.964 35.96c1.084-0.017 2.163-0.025 3.247-0.025h191.151c115.11 0 208.427 93.315 208.427 208.424 0 115.11-93.316 208.427-208.427 208.427h-15.573v-64h15.573c79.765 0 144.427-64.661 144.427-144.427 0-79.763-64.661-144.424-144.427-144.424h-191.151c-1.028 0-2.057 0.011-3.081 0.032l35.797 35.797c12.493 12.497 12.493 32.758 0 45.255-12.497 12.497-32.759 12.497-45.257 0l-90.51-90.51c-12.497-12.497-12.497-32.758 0-45.255l90.51-90.51c12.497-12.497 32.759-12.497 45.257 0zM201.318 500.745h56.159v325.82h-59.023v-268.386h-1.909l-76.204 48.678v-54.089l80.977-52.023zM570.411 719.492c0 64.751-48.047 111.526-116.932 111.526-63.637 0-110.887-38.98-112.478-93.069h57.273c2.068 26.726 25.773 45.342 55.206 45.342 34.842 0 59.977-25.933 59.819-62.366 0.158-36.911-25.617-63.317-61.41-63.475-19.567-0.162-40.25 7.953-51.228 20.045l-53.295-8.751 17.023-168h189v49.318h-140.159l-9.386 86.387h1.909c12.091-14.319 35.479-24.819 61.885-24.819 59.183 0 102.775 45.18 102.775 107.861z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["jump-backward"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":573,"id":90,"name":"jump-backward","prevSize":32,"code":59738},"setIdx":0,"setId":2,"iconIdx":91},{"icon":{"paths":["M494.861 169.373c-12.497 12.497-12.497 32.758 0 45.255l35.959 35.96c-1.079-0.017-2.159-0.025-3.247-0.025h-191.148c-115.11 0-208.425 93.315-208.425 208.424 0 115.11 93.315 208.427 208.425 208.427h15.575v-64h-15.575c-79.764 0-144.425-64.661-144.425-144.427 0-79.763 64.661-144.424 144.425-144.424h191.148c1.033 0 2.061 0.011 3.085 0.032l-35.797 35.797c-12.497 12.497-12.497 32.758 0 45.255s32.759 12.497 45.257 0l90.509-90.51c12.497-12.497 12.497-32.758 0-45.255l-90.509-90.51c-12.497-12.497-32.759-12.497-45.257 0zM521.318 500.745h56.158v325.82h-59.021v-268.386h-1.911l-76.203 48.678v-54.089l80.977-52.023zM890.406 719.492c0 64.751-48.043 111.526-116.928 111.526-63.637 0-110.886-38.98-112.478-93.069h57.271c2.069 26.726 25.771 45.342 55.206 45.342 34.837 0 59.977-25.933 59.814-62.366 0.162-36.911-25.613-63.317-61.406-63.475-19.571-0.162-40.252 7.953-51.23 20.045l-53.295-8.751 17.024-168h189.001v49.318h-140.16l-9.387 86.387h1.907c12.092-14.319 35.477-24.819 61.888-24.819 59.183 0 102.771 45.18 102.771 107.861z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["jump-forward"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":574,"id":89,"name":"jump-forward","prevSize":32,"code":59739},"setIdx":0,"setId":2,"iconIdx":92},{"icon":{"paths":["M769.293 649.374c12.497 12.497 12.497 32.755 0 45.252l-192 192c-12.497 12.497-32.755 12.497-45.252 0l-192.001-192c-12.497-12.497-12.497-32.755 0-45.252s32.758-12.497 45.255 0l137.373 137.37v-578.743h-192v192c0 17.673-14.327 32-32 32s-32-14.327-32-32v-224c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32v610.743l137.374-137.37c12.497-12.497 32.755-12.497 45.252 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["jump-to-message"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":575,"id":88,"name":"jump-to-message","prevSize":32,"code":59740},"setIdx":0,"setId":2,"iconIdx":93},{"icon":{"paths":["M577.353 256c0 35.346-28.655 64-64 64s-64-28.654-64-64c0-35.346 28.655-64 64-64s64 28.654 64 64z","M577.353 512c0 35.345-28.655 64-64 64s-64-28.655-64-64c0-35.345 28.655-64 64-64s64 28.655 64 64z","M577.353 768c0 35.345-28.655 64-64 64s-64-28.655-64-64c0-35.345 28.655-64 64-64s64 28.655 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["kebab"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":576,"id":87,"name":"kebab","prevSize":32,"code":59741},"setIdx":0,"setId":2,"iconIdx":94},{"icon":{"paths":["M160 224c-35.346 0-64 28.654-64 64v448c0 35.345 28.654 64 64 64h704c35.345 0 64-28.655 64-64v-448c0-35.346-28.655-64-64-64h-704zM160 288h704v448h-704v-448zM256 352c-17.673 0-32 14.327-32 32s14.327 32 32 32h64c17.673 0 32-14.327 32-32s-14.327-32-32-32h-64zM256 512c0-17.673 14.327-32 32-32h64c17.673 0 32 14.327 32 32s-14.327 32-32 32h-64c-17.673 0-32-14.327-32-32zM480 480c-17.673 0-32 14.327-32 32s14.327 32 32 32h64c17.673 0 32-14.327 32-32s-14.327-32-32-32h-64zM640 512c0-17.673 14.327-32 32-32h64c17.673 0 32 14.327 32 32s-14.327 32-32 32h-64c-17.673 0-32-14.327-32-32zM480 352c-17.673 0-32 14.327-32 32s14.327 32 32 32h64c17.673 0 32-14.327 32-32s-14.327-32-32-32h-64zM320 640c0-17.673 14.327-32 32-32h320c17.673 0 32 14.327 32 32s-14.327 32-32 32h-320c-17.673 0-32-14.327-32-32zM704 352c-17.673 0-32 14.327-32 32s14.327 32 32 32h64c17.673 0 32-14.327 32-32s-14.327-32-32-32h-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["keyboard"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":577,"id":86,"name":"keyboard","prevSize":32,"code":59742},"setIdx":0,"setId":2,"iconIdx":95},{"icon":{"paths":["M680.55 256c0-17.673-14.327-32-32-32s-32 14.327-32 32v56.876l-80.346 13.999c-17.412 3.034-29.069 19.607-26.035 37.018s19.61 29.066 37.022 26.032l69.359-12.085v69.371c-30.383 6.852-60.459 20.075-84.151 43.14-27.925 27.183-44.075 65.242-44.075 113.809 0 25.741 6.263 48.26 18.453 66.62 12.186 18.351 29.065 30.682 47.253 37.999 35.354 14.225 76.719 10.176 108.126-4.578l1.207-0.567c31.125-14.618 62.494-29.35 90.722-57.818 21.325-21.504 39.71-49.536 56.849-88.674 5.653 9.498 9.591 20.966 10.287 34.338 1.63 31.526-14.281 82.812-87.957 153.417-12.762 12.228-13.193 32.486-0.964 45.244 12.228 12.762 32.486 13.193 45.244 0.964 80.196-76.851 110.588-145.033 107.593-202.935-2.987-57.655-38.588-96.021-70.677-113.954-20.774-13.013-50.214-22.827-81.216-28.288-16.623-2.931-34.47-4.749-52.693-4.996v-74.242l101.717-17.723c17.412-3.034 29.069-19.607 26.035-37.018s-19.61-29.066-37.018-26.032l-90.735 15.809v-45.724zM577.041 536.209c10.163-9.894 23.565-17.476 39.509-22.703v138.65c-13.444 2.547-27.486 1.732-38.635-2.752-7.71-3.102-13.658-7.757-17.822-14.029-4.156-6.259-7.77-15.996-7.77-31.215 0-33.348 10.564-54.174 24.717-67.951zM708.642 600.751c-8.683 8.755-17.783 15.706-28.092 22.076v-117.888c14.127 0.239 28.224 1.66 41.587 4.015 13.589 2.394 25.681 5.623 35.763 9.165-16.879 42.039-33.067 66.304-49.259 82.633zM246.351 565.333h98.385l-49.193-184.882-49.193 184.882zM389.497 733.559l-27.732-104.226h-132.443l-27.732 104.226c-4.544 17.079-22.073 27.243-39.152 22.699s-27.241-22.076-22.696-39.151l106.323-399.601c13.494-50.714 85.464-50.713 98.957 0l106.323 399.601c4.544 17.075-5.615 34.607-22.694 39.151s-34.609-5.619-39.153-22.699z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["language"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":578,"id":85,"name":"language","prevSize":32,"code":59743},"setIdx":0,"setId":2,"iconIdx":96},{"icon":{"paths":["M252.138 275.61l-13.972 14.271c-37.092 37.884-36.449 98.665 1.435 135.757l145.62 142.576c37.885 37.090 98.665 36.446 135.756-1.438l13.973-14.268c0.725-0.742 1.434-1.489 2.129-2.244l0.098 0.098c5.807-5.905 13.888-9.566 22.822-9.566 17.673 0 32 14.327 32 32 0 9.6-4.228 18.21-10.923 24.077l-14.37 14.677c-61.82 63.142-163.119 64.213-226.26 2.394l-145.62-142.575c-63.141-61.82-64.212-163.121-2.392-226.262l13.972-14.271c61.82-63.141 163.121-64.212 226.263-2.392l74.692 73.131c0.977 0.847 1.899 1.752 2.769 2.71l0.371 0.366-0.026 0.026c4.937 5.63 7.923 13.005 7.923 21.079 0 17.673-14.327 32-32 32-7.829 0-15.002-2.813-20.565-7.482l-0.107 0.108-77.833-76.207c-37.885-37.092-98.665-36.449-135.757 1.435zM787.861 768l13.973-14.268c37.090-37.884 36.45-98.667-1.434-135.757l-145.621-142.575c-37.888-37.090-98.667-36.45-135.757 1.434l-13.973 14.272c-0.725 0.738-1.434 1.485-2.129 2.244l-0.098-0.102c-5.807 5.905-13.888 9.57-22.822 9.57-17.673 0-32-14.327-32-32 0-9.6 4.228-18.214 10.923-24.077l0.397-0.41 13.973-14.272c61.82-63.139 163.119-64.21 226.261-2.389l145.617 142.575c63.142 61.82 64.213 163.119 2.394 226.261l-13.973 14.268c-61.82 63.142-163.119 64.213-226.261 2.394l-74.692-73.131c-0.977-0.849-1.899-1.754-2.769-2.709l-0.371-0.367 0.026-0.026c-4.937-5.632-7.923-13.005-7.923-21.077 0-17.673 14.327-32 32-32 7.829 0 15.002 2.812 20.565 7.479l0.107-0.107 77.833 76.207c37.884 37.090 98.667 36.45 135.757-1.438z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":579,"id":84,"name":"link","prevSize":32,"code":59744},"setIdx":0,"setId":2,"iconIdx":97},{"icon":{"paths":["M839.189 128c31.317 0 56.811 24.79 56.811 55.383v657.214c0 30.592-25.493 55.424-56.811 55.424h-654.548c-31.254 0-56.642-24.832-56.642-55.424v-657.214c0-30.593 25.388-55.383 56.642-55.383h654.548zM298.842 233.75c-36.588 0-66.092 29.59-66.092 66.050 0 36.481 29.505 66.071 66.092 66.071 36.438 0 66.007-29.59 66.007-66.071 0-36.46-29.569-66.050-66.007-66.050zM241.795 782.46h114.030v-366.515h-114.030v366.515zM536.461 415.921h-109.188v366.517h113.775v-181.274c0-47.829 9.045-94.148 68.331-94.148 58.458 0 59.183 54.682 59.183 97.178v178.244h113.903v-201.007c0-98.714-21.316-174.598-136.666-174.598-55.407 0-92.57 30.38-107.759 59.202h-1.579v-50.114z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["linkedin-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":580,"id":83,"name":"linkedin-monochromatic","prevSize":32,"code":59745},"setIdx":0,"setId":2,"iconIdx":98},{"icon":{"paths":["M439.275 704.371c0-33.643 26.278-47.676 72.725-47.676s72.73 14.033 72.73 47.676c0 32.96-13.193 111.070-23.915 149.764-4.962 17.805-22.076 25.169-48.815 25.169-26.735 0-43.853-7.364-48.815-25.173-10.714-38.665-23.91-116.689-23.91-149.76zM616.781 870.374l0.021-0.094c6.178-22.289 12.57-53.862 17.387-83.447 4.685-28.791 8.721-60.71 8.721-82.462 0-35.891-15.812-67.802-46.797-87.113-26.035-16.226-57.152-19.925-84.113-19.925-26.957 0-58.078 3.699-84.113 19.925-30.982 19.311-46.795 51.221-46.795 87.113 0 21.807 4.036 53.73 8.726 82.517 4.819 29.577 11.21 61.12 17.381 83.392l0.024 0.085c7.401 26.556 24.983 45.666 46.871 56.469 19.473 9.609 40.427 11.831 57.907 11.831 17.485 0 38.434-2.223 57.907-11.831 21.888-10.799 39.471-29.905 46.874-56.461zM459.635 460.8c0-28.275 23.445-51.2 52.365-51.2s52.365 22.925 52.365 51.2c0 28.275-23.445 51.2-52.365 51.2s-52.365-22.925-52.365-51.2zM512 341.333c-67.477 0-122.182 53.487-122.182 119.467s54.704 119.467 122.182 119.467c67.477 0 122.18-53.487 122.18-119.467s-54.703-119.467-122.18-119.467zM677.803 537.254c-6.665 13.79-3.883 31.108 6.276 42.573 14.084 15.893 39.851 17.937 50.206-0.606 19.639-35.17 30.805-75.52 30.805-118.421 0-136.672-113.314-247.467-253.090-247.467-139.779 0-253.092 110.795-253.092 247.467 0 42.901 11.164 83.251 30.806 118.421 10.355 18.543 36.119 16.499 50.205 0.606 10.16-11.465 12.939-28.783 6.275-42.573-11.203-23.189-17.469-49.105-17.469-76.454 0-98.97 82.054-179.2 183.274-179.2 101.218 0 183.27 80.23 183.27 179.2 0 27.349-6.263 53.265-17.468 76.454zM730.159 699.793c-0.303-10.658 3.546-21.069 10.931-28.762 52.77-54.955 85.090-128.9 85.090-210.231 0-169.662-140.663-307.2-314.18-307.2s-314.182 137.538-314.182 307.2c0 81.331 32.323 155.277 85.094 210.231 7.386 7.693 11.234 18.103 10.928 28.762-0.832 29.018-31.273 47.915-52.121 27.716-70.223-68.041-113.718-162.406-113.718-266.709 0-207.365 171.923-375.467 384-375.467 212.079 0 384 168.102 384 375.467 0 104.303-43.494 198.673-113.719 266.709-20.851 20.203-51.29 1.306-52.122-27.716z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["live-streaming"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":581,"id":82,"name":"live-streaming","prevSize":32,"code":59746},"setIdx":0,"setId":2,"iconIdx":99},{"icon":{"paths":["M700.147 361.892c4.681-24.975 34.701-34.093 49.126-13.174 31.991 46.404 50.726 102.656 50.726 163.281 0 60.629-18.735 116.881-50.726 163.285-14.426 20.919-44.446 11.802-49.126-13.175l-1.707-9.101c-1.583-8.431 0.384-17.084 4.855-24.401 20.749-33.967 32.704-73.89 32.704-116.608 0-42.714-11.955-82.637-32.704-116.604-4.471-7.319-6.438-15.972-4.855-24.402l1.707-9.102z","M320.705 395.396c-20.749 33.967-32.705 73.891-32.705 116.604 0 42.718 11.956 82.641 32.705 116.608 4.471 7.317 6.436 15.97 4.856 24.401l-1.707 9.101c-4.683 24.977-34.703 34.095-49.127 13.175-31.994-46.404-50.728-102.656-50.728-163.285 0-60.625 18.734-116.878 50.728-163.281 14.423-20.919 44.444-11.801 49.127 13.174l1.707 9.102c1.58 8.43-0.385 17.083-4.856 24.402z","M728.764 209.256l-0.512 2.747c-2.236 11.911 2.534 23.968 11.763 31.822 75.861 64.565 123.985 160.751 123.985 268.175 0 107.426-48.124 203.614-123.985 268.177-9.229 7.855-13.999 19.913-11.763 31.821l0.512 2.748c4.194 22.362 29.692 33.195 47.262 18.743 92.796-76.292 151.974-191.979 151.974-321.489 0-129.507-59.179-245.193-151.974-321.489-17.57-14.448-43.068-3.615-47.262 18.745z","M283.986 243.825c9.229-7.854 13.998-19.911 11.764-31.822l-0.515-2.747c-4.192-22.359-29.69-33.193-47.262-18.745-92.793 76.296-151.973 191.982-151.973 321.489 0 129.51 59.18 245.197 151.973 321.489 17.572 14.451 43.070 3.618 47.262-18.743l0.515-2.748c2.233-11.908-2.536-23.966-11.764-31.821-75.863-64.563-123.986-160.751-123.986-268.177 0-107.424 48.122-203.61 123.986-268.175z","M608 512c0 53.022-42.982 96-96 96s-96-42.978-96-96c0-53.018 42.982-95.999 96-95.999s96 42.981 96 95.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["live"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":582,"id":81,"name":"live","prevSize":32,"code":59747},"setIdx":0,"setId":2,"iconIdx":100},{"icon":{"paths":["M410.708 527.33c26.575 0 48.121-21.585 48.121-48.213s-21.547-48.213-48.121-48.213c-26.576 0-48.12 21.585-48.12 48.213s21.544 48.213 48.12 48.213z","M603.187 479.117c0 26.628-21.542 48.213-48.119 48.213s-48.119-21.585-48.119-48.213c0-26.628 21.542-48.213 48.119-48.213s48.119 21.585 48.119 48.213z","M747.55 479.117c0 26.628-21.542 48.213-48.119 48.213s-48.119-21.585-48.119-48.213c0-26.628 21.542-48.213 48.119-48.213s48.119 21.585 48.119 48.213z","M101.734 813.683l119.625 31.279c85.312 22.31 173.449-16.252 238.694-79.71 29.5 4.796 59.874 7.245 90.675 7.245 218.295 0 404.339-122.863 404.339-294.519 0-171.663-186.039-294.519-404.339-294.519-218.313 0-404.35 122.852-404.339 294.524 0 65.071 27.642 125.013 75.655 173.585-2.847 24.836-14.596 44.732-36.049 68.553l-84.261 93.564zM550.729 258.994c183.13 0 331.601 98.043 331.601 218.984 0 120.93-148.471 218.982-331.601 218.982-40.781 0-79.834-4.877-115.913-13.76-36.667 45.598-117.332 109.005-195.694 88.516 25.489-28.305 63.251-76.13 55.168-154.91-46.968-37.781-75.162-86.135-75.162-138.829-0.008-120.949 148.46-218.984 331.599-218.984z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["livechat-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":583,"id":80,"name":"livechat-monochromatic","prevSize":32,"code":59748},"setIdx":0,"setId":2,"iconIdx":101},{"icon":{"paths":["M341.335 778.671c-17.673 0-32 14.327-32 32s14.327 32 32 32h341.332c17.673 0 32-14.327 32-32s-14.327-32-32-32h-341.332zM85.335 298.672c0-70.692 57.308-128 128-128h597.332c70.694 0 128 57.308 128 128v298.666c0 70.694-57.306 128-128 128h-597.332c-70.693 0-128-57.306-128-128v-298.666zM213.335 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.349 28.654 64 64 64h597.332c35.349 0 64-28.655 64-64v-298.666c0-35.346-28.651-64-64-64h-597.332zM256 320c0-11.782 9.551-21.333 21.333-21.333h170.667c11.78 0 21.333 9.551 21.333 21.333s-9.553 21.333-21.333 21.333h-170.667c-11.782 0-21.333-9.551-21.333-21.333zM277.333 554.667c-11.782 0-21.333 9.553-21.333 21.333s9.551 21.333 21.333 21.333h85.333c11.782 0 21.333-9.553 21.333-21.333s-9.551-21.333-21.333-21.333h-85.333zM554.667 320c0-11.782 9.553-21.333 21.333-21.333h170.667c11.78 0 21.333 9.551 21.333 21.333s-9.553 21.333-21.333 21.333h-170.667c-11.78 0-21.333-9.551-21.333-21.333zM448 554.667c-11.78 0-21.333 9.553-21.333 21.333s9.553 21.333 21.333 21.333h298.667c11.78 0 21.333-9.553 21.333-21.333s-9.553-21.333-21.333-21.333h-298.667zM256 448c0-11.78 9.551-21.333 21.333-21.333h213.333c11.78 0 21.333 9.553 21.333 21.333s-9.553 21.333-21.333 21.333h-213.333c-11.782 0-21.333-9.553-21.333-21.333zM618.667 426.667c-11.78 0-21.333 9.553-21.333 21.333s9.553 21.333 21.333 21.333h128c11.78 0 21.333-9.553 21.333-21.333s-9.553-21.333-21.333-21.333h-128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["log-view"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":585,"id":78,"name":"log-view","prevSize":32,"code":59751},"setIdx":0,"setId":2,"iconIdx":103},{"icon":{"paths":["M261.333 96c-17.673 0-32 14.327-32 32v768c0 17.673 14.327 32 32 32h512c17.673 0 32-14.327 32-32v-96c0-17.673-14.327-32-32-32s-32 14.327-32 32v64h-448v-704h448v64c0 17.673 14.327 32 32 32s32-14.327 32-32v-96c0-17.673-14.327-32-32-32h-512zM987.959 489.374l-160-160.001c-12.497-12.497-32.755-12.497-45.252 0s-12.497 32.758 0 45.255l105.37 105.373h-418.743c-17.673 0-32 14.327-32 32s14.327 32 32 32h418.743l-105.37 105.374c-12.497 12.497-12.497 32.755 0 45.252s32.755 12.497 45.252 0l160-160c12.497-12.497 12.497-32.755 0-45.252z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["logout"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":586,"id":77,"name":"logout","prevSize":32,"code":59752},"setIdx":0,"setId":2,"iconIdx":104},{"icon":{"paths":["M192 736h640v-448h-640v448zM128 256c0-17.673 14.327-32 32-32h704c17.673 0 32 14.327 32 32v512c0 17.673-14.327 32-32 32h-704c-17.673 0-32-14.327-32-32v-512zM305.304 389.082c-14.866-9.557-34.665-5.253-44.222 9.613s-5.253 34.665 9.613 44.223l241.304 155.123 241.306-155.123c14.865-9.557 19.17-29.356 9.613-44.223s-29.355-19.17-44.224-9.613l-206.694 132.876-206.696-132.876z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mail"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":587,"id":76,"name":"mail","prevSize":32,"code":59753},"setIdx":0,"setId":2,"iconIdx":105},{"icon":{"paths":["M302.769 192h418.464l23.185 72.727h-0.213l23.795 64c0 41.27-31.305 69.818-64 69.818s-64-28.548-64-69.818c0-18.477-14.327-33.455-32-33.455s-32 14.978-32 33.455c0 41.27-31.305 69.818-64 69.818s-64-28.548-64-69.818c0-18.477-14.327-33.455-32-33.455s-32 14.978-32 33.455c0 41.27-31.305 69.818-64 69.818s-64-28.548-64-69.818l23.793-64h-0.213l23.188-72.727zM212.406 264.727l36.491-114.448c4.231-13.27 16.56-22.279 30.488-22.279h465.23c13.931 0 26.257 9.009 30.49 22.279l56.896 178.448c0 33.937-12.083 64.925-32 88.515v350.775c0 53.022-42.982 96-96 96h-384c-53.019 0-96-42.978-96-96v-350.775c-19.916-23.59-32-54.577-32-88.515l20.406-64zM288 458.33v309.687c0 17.673 14.327 32 32 32h128v-192.017h128v192.017h128c17.673 0 32-14.327 32-32v-309.687c-10.227 2.752-20.949 4.215-32 4.215-38.229 0-72.546-17.523-96-45.303-23.454 27.78-57.771 45.303-96 45.303s-72.546-17.523-96-45.303c-23.454 27.78-57.77 45.303-96 45.303-11.049 0-21.772-1.463-32-4.215z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["marketplace"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":588,"id":75,"name":"marketplace","prevSize":32,"code":59754},"setIdx":0,"setId":2,"iconIdx":106},{"icon":{"paths":["M774.426 576c-35.345 0-64-28.655-64-64s28.655-64 64-64c35.345 0 64 28.655 64 64s-28.655 64-64 64z","M518.426 576c-35.345 0-64-28.655-64-64s28.655-64 64-64c35.345 0 64 28.655 64 64s-28.655 64-64 64z","M262.426 576c-35.346 0-64-28.655-64-64s28.654-64 64-64c35.346 0 64 28.655 64 64s-28.654 64-64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["meatballs"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":589,"id":74,"name":"meatballs","prevSize":32,"code":59755},"setIdx":0,"setId":2,"iconIdx":107},{"icon":{"paths":["M651.358 116.071c-57.242-19.989-105.788-20.069-138.355-20.071l-0.004 64-0.998-64c-92.005 0.342-297.345 47.824-381.242 242.996-17.897 38.968-34.758 103.342-34.758 173.004 0 69.961 17.020 146.283 52.216 207.876 23.229 40.653 92.798 131.375 191.178 173.538 94.863 40.653 206.368 52.343 296.488 16.299 16.41-6.566 24.393-25.19 17.83-41.596-6.566-16.41-25.19-24.393-41.596-17.83-69.879 27.955-163.174 20.446-247.512-15.701-80.82-34.637-141.385-112.448-160.822-146.462-28.804-50.406-43.784-115.418-43.784-176.124 0-60.766 15.020-116.183 29.055-146.59l0.184-0.4 0.174-0.404c69.507-162.182 243.825-204.605 323.586-204.605 31.599 0.002 70.882 0.296 117.261 16.493 46.144 16.113 101.389 48.779 161.822 116.767 43.657 49.114 63.535 114.976 69.389 177.712 5.892 63.121-2.85 118.187-11.541 142.093-6.404 17.6-20.429 45.44-59.392 45.7-18.261-0.806-72.823-14.673-83.123-69.568v-235.063c0-17.673-3.413-34.133-29.013-34.133-19.337 0-26.453 16.46-26.453 34.133v34.133c-35.183-39.86-95.403-68.267-152.747-68.267-106.039 0-192 85.961-192 192s85.961 192 192 192c62.178 0 117.658-29.555 152.747-75.388 25.711 71.078 102.571 93.030 137.011 94.135l0.516 0.017h0.512c82.645 0 111.714-64.806 120.085-87.829 12.642-34.761 21.675-99.695 15.125-169.907-6.592-70.597-29.38-151.402-85.278-214.288-66.906-75.265-131.076-114.598-188.561-134.67zM627.2 512c0 70.694-57.306 128-128 128s-128-57.306-128-128c0-70.694 57.306-128 128-128s128 57.306 128 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mention"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":590,"id":73,"name":"mention","prevSize":32,"code":59756},"setIdx":0,"setId":2,"iconIdx":108},{"icon":{"paths":["M480.094 128c104.26 0 181.252 29.018 237.495 70.652l-44.318 44.317c-45.521-31.22-107.746-53.057-193.178-53.057-129.725 0-207.828 53.576-254.528 118.696-47.832 66.699-64.077 147.668-64.077 201.185v1.404l-0.127 1.399c-7.328 80.926 13.761 143.13 51.784 190.498l-43.879 43.883c-50.179-59.904-78.131-139.046-69.44-238.596 0.276-63.411 19.117-157.053 75.696-235.949 58.132-81.062 154.749-144.433 304.572-144.433zM825.105 332.498l-47.010 47.009c16.503 42.634 20.608 78.524 20.608 89.011v0.179c0 19.516 0 31.791-6.622 56.171-7.091 26.108-21.739 65.647-52.553 137.835-5.7 13.355-2.795 25.98 1.263 34.436 3.831 7.987 9.557 14.4 14.592 19.183 10.227 9.711 24.252 18.837 38.545 26.867 7.889 4.429 18.3 8.994 27.614 13.077l1.843 0.806c10.556 4.634 20.727 9.148 29.611 13.897 3.426 1.835 6.302 3.516 8.674 5.030-5.103 3.23-12.036 6.882-20.941 10.765-22.959 10.005-55.33 19.938-93.888 28.126-77.12 16.375-174.729 24.862-263.339 14.976-43.746-4.881-86.83-14.528-126.537-29.231l-47.543 47.543c52.771 23.019 110.493 36.89 167.266 43.221 96.388 10.752 200.708 1.515 282.91-15.936 41.097-8.725 77.734-19.729 105.681-31.906 13.909-6.063 26.615-12.821 36.855-20.343 9.425-6.925 20.74-17.344 25.609-32.017 7.394-22.268-2.953-40.503-12.813-51.136-9.429-10.167-22.106-17.941-32.956-23.74-11.311-6.046-23.625-11.469-33.89-15.979-11.059-4.851-18.931-8.316-24.051-11.191-9.916-5.568-17.442-10.534-22.507-14.571 27.422-64.806 42.214-104.589 50.048-133.423 8.772-32.303 8.794-50.982 8.794-72.64 0-20.105-7.053-75.5-35.264-136.020zM838.293 153.373c12.497-12.497 32.759-12.497 45.257 0s12.497 32.758 0 45.255l-682.667 682.665c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l682.665-682.668z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":591,"id":72,"name":"message-disabled","prevSize":32,"code":59757},"setIdx":0,"setId":2,"iconIdx":109},{"icon":{"paths":["M223.311 308.609c-47.831 66.699-64.077 147.668-64.077 201.185v1.404l-0.127 1.399c-9.348 103.236 27.547 175.996 86.848 226.377 60.643 51.516 146.604 80.998 235.291 90.893 88.61 9.886 186.223 1.399 263.339-14.976 38.562-8.188 70.929-18.121 93.888-28.126 8.909-3.883 15.838-7.535 20.945-10.765-2.377-1.515-5.248-3.196-8.678-5.030-8.883-4.749-19.055-9.263-29.611-13.897l-1.843-0.806c-9.314-4.083-19.725-8.649-27.61-13.077-14.293-8.030-28.318-17.156-38.545-26.867-5.035-4.783-10.761-11.196-14.596-19.183-4.058-8.457-6.959-21.082-1.259-34.436 30.814-72.188 45.457-111.727 52.553-137.835 6.622-24.38 6.622-36.655 6.618-56.171v-0.179c0-15.514-8.977-86.595-53.777-152.876-43.371-64.175-121.395-125.729-264.828-125.729-129.727 0-207.831 53.576-254.531 118.696zM173.267 272.433c58.132-81.062 154.749-144.433 304.574-144.433 164.894 0 261.594 72.589 315.857 152.878 52.838 78.182 64.414 161.879 64.414 187.641 0 21.658-0.017 40.337-8.794 72.64-7.834 28.834-22.626 68.617-50.048 133.423 5.069 4.036 12.591 9.003 22.507 14.571 5.12 2.876 12.992 6.34 24.055 11.191 10.261 4.51 22.579 9.933 33.89 15.979 10.846 5.798 23.526 13.572 32.951 23.74 9.86 10.633 20.211 28.868 12.817 51.136-4.873 14.673-16.183 25.092-25.609 32.017-10.24 7.522-22.946 14.281-36.86 20.343-27.947 12.177-64.58 23.181-105.681 31.906-82.197 17.451-186.522 26.688-282.906 15.936-96.31-10.743-195.347-43.174-268.314-105.165-74.031-62.891-119.295-154.778-108.551-277.854 0.276-63.411 19.118-157.053 75.696-235.949z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":592,"id":71,"name":"message","prevSize":32,"code":59758},"setIdx":0,"setId":2,"iconIdx":110},{"icon":{"paths":["M85.333 85.333l730.795 774.089c0 0 24.896 17.557 43.934-2.927 19.038-20.489 4.395-40.973 4.395-40.973l-779.123-730.189zM316.727 158.5l556.515 599.956c0 0 24.896 17.557 43.938-2.927 19.038-20.489 4.39-40.973 4.39-40.973l-604.844-556.056zM710.682 915.025l-556.516-599.952 604.845 556.057c0 0 14.643 20.484-4.395 40.969-19.038 20.489-43.934 2.927-43.934 2.927zM512.337 221.417l388.804 419.151c0 0 17.395 12.271 30.694-2.044 13.303-14.31 3.072-28.625 3.072-28.625l-422.571-388.482zM596.523 915.674l-388.803-419.153 422.569 388.484c0 0 10.231 14.31-3.068 28.625-13.303 14.31-30.699 2.044-30.699 2.044zM712.145 312.141l176.222 190.549c0 0 8.602 5.751 15.181-0.956s1.519-13.414 1.519-13.414l-192.922-176.179zM481.229 880.226l-176.218-190.549 192.922 176.179c0 0 5.060 6.707-1.519 13.414s-15.185 0.956-15.185 0.956z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["meteor-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":593,"id":70,"name":"meteor-monochromatic","prevSize":32,"code":59759},"setIdx":0,"setId":2,"iconIdx":111},{"icon":{"paths":["M527.782 128c75.546 0 138.859 52.355 155.644 122.761l-59.644 59.644v-22.406c0-53.019-42.982-96-96-96-53.022 0-96 42.981-96 96v128c0 24.068 8.858 46.067 23.488 62.916l-45.322 45.321c-26.182-28.484-42.167-66.496-42.167-108.237v-128c0-88.366 71.634-160 160.001-160zM577.131 568.243l102.895-102.895c-15.765 48.674-54.221 87.13-102.895 102.895zM303.781 416c0 72.154 23.182 123.102 55.327 159.078l-45.303 45.303c-43.427-47.351-74.024-113.993-74.024-204.382 0-17.673 14.327-32 32-32s32 14.327 32 32zM494.438 650.935l-51.806 51.81c18.56 6.374 36.578 10.807 53.15 13.636v115.618h-160.001c-17.673 0-32 14.327-32 32s14.327 32 32 32h384.001c17.673 0 32-14.327 32-32s-14.327-32-32-32h-160v-115.618c44.638-7.62 99.819-26.897 147.721-64.38 60.702-47.501 108.279-123.29 108.279-236.002 0-17.673-14.327-32-32-32s-32 14.327-32 32c0 92.087-37.76 149.632-83.721 185.6-46.468 36.361-102.737 51.58-140.279 54.327-9.971-0.73-21.265-2.338-33.344-4.992zM841.152 153.373c12.497-12.497 32.759-12.497 45.257 0s12.497 32.758 0 45.255l-672 671.999c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l671.998-672.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":594,"id":69,"name":"microphone-disabled","prevSize":32,"code":59760},"setIdx":0,"setId":2,"iconIdx":112},{"icon":{"paths":["M621.53 288c0-53.019-42.982-96-96-96-53.022 0-96 42.981-96 96v128c0 53.018 42.978 96 96 96 53.018 0 96-42.982 96-96v-128zM365.529 288c0-88.366 71.634-160 160.001-160 88.363 0 160 71.634 160 160v128c0 88.367-71.637 160-160 160-88.367 0-160.001-71.633-160.001-160v-128zM269.529 384c17.673 0 32 14.327 32 32 0 92.087 37.758 149.632 83.72 185.6 46.465 36.361 102.734 51.58 140.281 54.327 37.542-2.748 93.811-17.967 140.279-54.327 45.961-35.968 83.721-93.513 83.721-185.6 0-17.673 14.327-32 32-32s32 14.327 32 32c0 112.713-47.578 188.501-108.279 236.002-47.902 37.483-103.083 56.759-147.721 64.38v115.618h160c17.673 0 32 14.327 32 32s-14.327 32-32 32h-384.001c-17.673 0-32-14.327-32-32s14.327-32 32-32h160.001v-115.618c-44.642-7.62-99.819-26.897-147.721-64.38-60.705-47.501-108.28-123.29-108.28-236.002 0-17.673 14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":595,"id":68,"name":"microphone","prevSize":32,"code":59761},"setIdx":0,"setId":2,"iconIdx":113},{"icon":{"paths":["M234.667 170.662c0-47.128 38.205-85.333 85.333-85.333h384c47.13 0 85.333 38.205 85.333 85.333v682.668c0 47.125-38.204 85.333-85.333 85.333h-384c-47.128 0-85.333-38.208-85.333-85.333v-682.668zM298.667 170.662v682.668c0 11.78 9.551 21.333 21.333 21.333h384c11.78 0 21.333-9.553 21.333-21.333v-682.668c0-11.782-9.553-21.333-21.333-21.333h-96.29c-2.654 24.002-23.002 42.672-47.71 42.672h-96c-24.708 0-45.056-18.67-47.707-42.672h-96.293c-11.782 0-21.333 9.551-21.333 21.333z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mobile"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":596,"id":67,"name":"mobile","prevSize":32,"code":59762},"setIdx":0,"setId":2,"iconIdx":114},{"icon":{"paths":["M317.896 231.569c-62.882 49.504-135.086 136.548-141.94 266.125-5.762 108.924 37.404 187.187 89.916 241.51 53.259 55.1 115.701 84.924 144.248 94.443 41.861 13.952 114.271 29.534 234.646-15.607 34.859-13.069 73.161-42.095 108.301-78.426 14.272-14.754 27.614-30.293 39.599-45.773-28.774 9.293-61.696 17.758-96.589 23.595-56.188 9.404-119.287 12.322-179.409-0.235-2.492-0.521-4.958-1.033-7.411-1.536-22.191-4.578-42.731-8.815-62.583-17.651-23.095-10.274-43.808-25.89-69.3-51.383-42.097-42.095-89.143-107.221-89.372-213.841-1.569-34.084 4.621-81.88 13.763-129.219 4.624-23.946 10.142-48.465 16.132-72.002zM344.209 138.22c32.8-17.15 63.709 15.843 53.877 45.907-12.235 37.414-24.586 85.511-33.483 131.58-9.024 46.731-13.946 88.633-12.643 114.698l0.040 0.798v0.802c0 84.915 36.172 134.916 70.627 169.374 22.505 22.507 36.833 32.277 50.064 38.165 13.227 5.884 26.829 8.717 51.085 13.764 1.924 0.397 3.913 0.815 5.978 1.246 49.911 10.423 104.533 8.337 155.759-0.239 65.434-10.953 122.385-31.979 152.375-47.386 17.562-9.020 34.991-2.466 44.476 5.965 9.664 8.589 19.375 27.153 8.887 46.955-20.638 38.95-53.645 84.42-92.181 124.262-38.217 39.509-84.318 76.036-131.836 93.854-135.625 50.863-223.215 34.441-277.353 16.397-36.516-12.173-108.392-46.912-170.026-110.677-62.381-64.533-114.683-159.428-107.809-289.37 10.79-203.98 157.583-317.1 232.164-356.095z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["moon"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":597,"id":66,"name":"moon","prevSize":32,"code":59763},"setIdx":0,"setId":2,"iconIdx":115},{"icon":{"paths":["M809.003 166.758c7.782 6.063 12.331 15.377 12.331 25.242v448h-0.111c0.073 1.732 0.111 3.477 0.111 5.231 0 69.052-57.306 125.026-128 125.026s-128-55.974-128-125.026c0-69.052 57.306-125.030 128-125.030 23.313 0 45.171 6.089 64 16.725v-303.858l-384 96.797v409.139c0 69.052-57.308 125.035-128 125.035s-128-55.979-128-125.030c0-69.052 57.308-125.026 128-125.026 23.314 0 45.173 6.089 64 16.725v-325.777c0-14.66 9.963-27.446 24.178-31.029l448.001-112.929c9.566-2.412 19.708-0.276 27.49 5.787z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["musical-note"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":598,"id":65,"name":"musical-note","prevSize":32,"code":59764},"setIdx":0,"setId":2,"iconIdx":116},{"icon":{"paths":["M208 176c-35.346 0-64 28.654-64 64v576c0 35.345 28.654 64 64 64h576c35.345 0 64-28.655 64-64v-576c0-35.346-28.655-64-64-64h-576zM208 240h576v576h-576v-576zM698.628 558.153c-0.192 17.673-14.669 31.842-32.341 31.654s-31.846-14.669-31.659-32.341l1.323-123.588-309.344 308.77c-12.508 12.484-32.77 12.467-45.255-0.043-12.485-12.506-12.466-32.768 0.042-45.252l309.199-308.627-123.388 1.318c-17.673 0.189-32.149-13.984-32.337-31.657-0.192-17.672 13.982-32.151 31.654-32.34l201.92-2.156c8.606-0.092 16.887 3.286 22.972 9.371s9.459 14.364 9.37 22.969l-2.155 201.922z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["new-window"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":599,"id":64,"name":"new-window","prevSize":32,"code":59765},"setIdx":0,"setId":2,"iconIdx":117},{"icon":{"paths":["M781.837 402.633c0-5.245-0.154-10.454-0.461-15.622l-63.539 63.541v265.361h-265.361l-66.982 66.982h425.365c12.941 0 24.61-7.795 29.564-19.755s2.214-25.719-6.938-34.871l-51.648-51.652v-273.984zM704.764 217.373l-45.252 45.255c-35.639-35.351-84.706-57.189-138.867-57.189-108.909 0-197.196 88.287-197.196 197.194v196.057l-64 64v-260.057c0-144.253 116.94-261.194 261.196-261.194 71.838 0 136.9 29.001 184.119 75.934zM433.579 808.934c0 48.085 38.98 87.066 87.066 87.066s87.066-38.98 87.066-87.066h-174.131zM854.276 190.982c-11.337-11.334-29.709-11.334-41.045 0l-612.731 612.73c-11.334 11.337-11.334 29.709 0 41.045 11.334 11.332 29.709 11.332 41.043 0l612.733-612.733c11.332-11.334 11.332-29.709 0-41.042z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":600,"id":63,"name":"notification-disabled","prevSize":32,"code":59766},"setIdx":0,"setId":2,"iconIdx":118},{"icon":{"paths":["M601.331 808.926h-174.153c0.004 48.090 38.989 87.074 87.078 87.074s87.074-38.985 87.074-87.074zM815.599 731.674c7.27 9.698 8.439 22.673 3.021 33.515-5.423 10.837-16.503 17.685-28.621 17.685h-565.998c-12.943 0-24.611-7.795-29.564-19.75-4.953-11.959-2.215-25.724 6.937-34.876l51.653-51.652v-274.031c0-144.273 116.956-261.229 261.231-261.229 144.273 0 261.227 116.956 261.227 261.229v275.627l40.115 53.483zM711.484 715.895v-313.332c0-108.927-88.303-197.229-197.227-197.229-108.928 0-197.231 88.302-197.231 197.229v313.332h394.457z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":601,"id":62,"name":"notification","prevSize":32,"code":59767},"setIdx":0,"setId":2,"iconIdx":119},{"icon":{"paths":["M711.113 512v54.818c-0.196 76.634-43.682 143.091-107.298 176.209-5.525-25.634-28.326-44.847-55.612-44.847h-72.405c-31.42 0-56.888 25.472-56.888 56.892v41.374c0 31.415 25.469 56.887 56.888 56.887h72.405c28.471 0 52.062-20.919 56.235-48.226 69.167-26.795 123.797-82.773 148.77-152.828 4.715 1.267 9.677 1.941 14.793 1.941h28.446c31.415 0 56.887-25.468 56.887-56.887v-85.333c0-31.42-25.472-56.887-56.887-56.887h-28.446v-28.446c0-141.385-114.615-256-256-256s-256 114.615-256 256v23.275h-28.445c-31.419 0-56.889 25.468-56.889 56.887v103.433c0 31.42 25.47 56.892 56.889 56.892h28.445c31.419 0 56.889-25.472 56.889-56.892v-36.203h0.149c-0.099-2.573-0.148-5.158-0.148-7.757v-139.636c0-109.966 89.145-199.111 199.11-199.111s199.113 89.145 199.113 199.111v85.333z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["omnichannel"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":602,"id":61,"name":"omnichannel","prevSize":32,"code":59768},"setIdx":0,"setId":2,"iconIdx":120},{"icon":{"paths":["M697.698 626.56c12.676-12.314 32.934-12.023 45.252 0.649 12.314 12.676 12.023 32.934-0.649 45.252l-208 202.121c-12.42 12.066-32.183 12.066-44.604 0l-207.999-202.121c-12.675-12.318-12.965-32.576-0.649-45.252 12.317-12.672 32.576-12.962 45.25-0.649l185.699 180.45 185.698-180.45zM697.698 416.798c12.676 12.317 32.934 12.027 45.252-0.649 12.314-12.675 12.023-32.934-0.649-45.25l-208-202.119c-12.42-12.067-32.183-12.067-44.604 0l-207.999 202.119c-12.675 12.316-12.965 32.576-0.649 45.25 12.316 12.676 32.576 12.966 45.25 0.649l185.699-180.449 185.698 180.449z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["order"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":603,"id":60,"name":"order","prevSize":32,"code":59769},"setIdx":0,"setId":2,"iconIdx":121},{"icon":{"paths":["M749.756 660.215c16.887-16.435 17.259-43.447 0.823-60.335-16.431-16.887-43.443-17.259-60.335-0.823l59.511 61.158zM512 832.021l-29.756 30.579c16.563 16.115 42.948 16.115 59.511 0l-29.756-30.579zM333.754 599.057c-16.889-16.435-43.901-16.064-60.334 0.823s-16.064 43.9 0.825 60.335l59.509-61.158zM690.244 599.057l-208 202.385 59.511 61.158 208-202.385-59.511-61.158zM541.756 801.442l-208.001-202.385-59.509 61.158 207.999 202.385 59.511-61.158z","M749.756 363.805c16.887 16.433 17.259 43.445 0.823 60.334-16.431 16.889-43.443 17.26-60.335 0.826l59.511-61.16zM512 191.999l-29.756-30.58c16.563-16.116 42.948-16.116 59.511 0l-29.756 30.58zM333.754 424.965c-16.889 16.434-43.901 16.063-60.334-0.825s-16.064-43.901 0.825-60.334l59.509 61.159zM690.244 424.965l-208-202.386 59.511-61.159 208 202.386-59.511 61.16zM541.756 222.579l-208.001 202.386-59.509-61.159 207.999-202.386 59.511 61.159z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ordering-ascending"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":5}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":604,"id":59,"name":"ordering-ascending","prevSize":32,"code":59770,"codes":[59770,59771]},"setIdx":0,"setId":2,"iconIdx":122},{"icon":{"paths":["M274.246 363.785c-16.889 16.433-17.258 43.445-0.825 60.334s43.445 17.259 60.334 0.825l-59.509-61.159zM512 191.978l29.756-30.58c-16.563-16.116-42.948-16.116-59.511 0l29.756 30.58zM690.244 424.944c16.892 16.434 43.904 16.063 60.335-0.825 16.435-16.889 16.064-43.901-0.823-60.334l-59.511 61.159zM333.754 424.944l208.001-202.386-59.511-61.16-207.999 202.386 59.509 61.159zM482.244 222.558l208 202.386 59.511-61.159-208-202.386-59.511 61.16z","M274.246 660.194c-16.889-16.431-17.258-43.443-0.825-60.335 16.433-16.887 43.445-17.259 60.334-0.823l-59.509 61.158zM512 832l29.756 30.579c-16.563 16.115-42.948 16.115-59.511 0l29.756-30.579zM690.244 599.036c16.892-16.435 43.904-16.064 60.335 0.823 16.435 16.892 16.064 43.904-0.823 60.335l-59.511-61.158zM333.754 599.036l208.001 202.385-59.511 61.158-207.999-202.385 59.509-61.158zM482.244 801.421l208-202.385 59.511 61.158-208 202.385-59.511-61.158z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ordering-descending"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":5}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":605,"id":58,"name":"ordering-descending","prevSize":32,"code":59772,"codes":[59772,59773]},"setIdx":0,"setId":2,"iconIdx":123},{"icon":{"paths":["M512.674 928c229.751 0 416-186.249 416-416s-186.249-416-416-416c-229.749 0-415.998 186.249-415.998 416s186.249 416 415.998 416zM400.675 383.995c0-17.673 14.327-32 32-32s32 14.327 32 32v256.001c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256.001zM560.674 383.995c0-17.673 14.327-32 32-32s32 14.327 32 32v256.001c0 17.673-14.327 32-32 32s-32-14.327-32-32v-256.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pause-filled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":606,"id":57,"name":"pause-filled","prevSize":32,"code":59774},"setIdx":0,"setId":2,"iconIdx":124},{"icon":{"paths":["M905.088 512c0-194.404-157.598-352-352-352-194.405 0-352.001 157.596-352.001 352 0 194.402 157.596 352 352.001 352 194.402 0 352-157.598 352-352zM969.088 512c0 229.751-186.249 416-416 416s-416.001-186.249-416.001-416c0-229.751 186.25-416 416.001-416s416 186.249 416 416zM441.088 383.995v256.001c0 17.673 14.323 32 32 32 17.673 0 32-14.327 32-32v-256.001c0-17.673-14.327-32-32-32-17.677 0-32 14.327-32 32zM601.084 383.995v256.001c0 17.673 14.327 32 32 32s32-14.327 32-32v-256.001c0-17.673-14.327-32-32-32s-32 14.327-32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pause"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":607,"id":56,"name":"pause","prevSize":32,"code":59775},"setIdx":0,"setId":2,"iconIdx":125},{"icon":{"paths":["M825.374 153.373c12.497-12.497 32.755-12.497 45.252 0s12.497 32.758 0 45.255l-671.999 671.999c-12.497 12.497-32.758 12.497-45.255 0s-12.497-32.755 0-45.252l672.001-672.001zM575.612 569.067l-44.706 44.71c7.846 5.905 15.846 11.452 23.535 16.013 9.199 5.461 22.835 12.578 36.971 13.222 16.226 0.738 31.445-5.299 42.47-10.974 11.742-6.042 22.793-13.824 31.744-20.945 1.054-0.836 2.133-1.229 2.884-1.34 0.401-0.060 0.61-0.030 0.687-0.013l121.097 59.076c-5.581 29.329-20.382 66.769-42.394 92.621-11.23 13.184-23.198 22.037-35.388 26.317-11.597 4.075-25.404 4.766-42.65-1.673-48.427-18.074-103.407-53.154-151.693-89.263-14.029-10.492-27.298-20.919-39.467-30.844l-44.39 44.39c14.187 11.686 29.841 24.064 46.447 36.48 49.805 37.248 110.447 76.561 167.258 97.762 30.276 11.298 59.149 11.238 85.197 2.086 25.455-8.939 46.093-25.783 62.246-44.757 31.868-37.423 50.637-88.141 57.062-126.246 4.719-27.985-11.776-51.767-33.139-62.191l-122.807-59.908c-24.41-11.908-51.46-6.003-69.837 8.61-7.006 5.572-14.541 10.739-21.44 14.289-5.577 2.867-8.93 3.742-10.313 4.006l-0.094-0.038c-0.99-0.401-3.729-1.515-8.567-4.386-3.277-1.946-6.874-4.301-10.714-7.006zM313.636 589.683l44.39-44.39c-9.92-12.164-20.35-25.438-30.839-39.462-36.108-48.286-71.191-103.267-89.262-151.691-6.437-17.249-5.748-31.055-1.675-42.651 4.282-12.192 13.134-24.16 26.319-35.388 25.85-22.012 63.29-36.814 92.623-42.392l59.075 121.096c0.018 0.076 0.047 0.285-0.012 0.687-0.111 0.75-0.504 1.83-1.343 2.884-7.118 8.951-14.9 20.001-20.943 31.741-5.673 11.025-11.714 26.246-10.976 42.472 0.643 14.135 7.761 27.772 13.222 36.971 4.562 7.689 10.109 15.684 16.014 23.535l44.705-44.71c-2.701-3.836-5.056-7.433-7.002-10.709-2.867-4.838-3.981-7.578-4.386-8.567l-0.038-0.094c0.265-1.382 1.139-4.738 4.006-10.312 3.55-6.9 8.717-14.437 14.289-21.443 14.613-18.374 20.523-45.425 8.614-69.835l-59.913-122.809c-10.421-21.361-34.203-37.856-62.191-33.137-38.103 6.425-88.824 25.194-126.246 57.060-18.972 16.155-35.817 36.795-44.758 62.246-9.15 26.048-9.211 54.92 2.088 85.196 21.201 56.813 60.513 117.455 97.761 167.26 12.417 16.606 24.795 32.256 36.478 46.443z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":608,"id":55,"name":"phone-disabled","prevSize":32,"code":59776},"setIdx":0,"setId":2,"iconIdx":126},{"icon":{"paths":["M801.122 657.591c22.477 7.735 50.957 2.581 67.409-20.544 22.4-31.488 44.992-80.623 48.922-129.617 1.993-24.841-0.691-51.345-12.365-75.665-11.951-24.887-32.324-45.347-61.722-58.766-55.164-25.181-125.841-40.262-187.396-49.144-61.948-8.937-117.495-11.981-143.966-11.981v62.47c23.198 0 75.755 2.787 135.044 11.341 59.674 8.61 123.358 22.681 170.377 44.143 16.751 7.646 26.027 17.894 31.347 28.975 5.589 11.648 7.795 26.372 6.409 43.635-2.714 33.839-18.718 70.784-35.516 95.467l-127.398-43.853c-0.068-0.043-0.239-0.171-0.478-0.495-0.452-0.61-0.939-1.651-1.092-2.991-1.297-11.362-3.605-24.678-7.633-37.252-3.785-11.806-10.278-26.842-22.272-37.794-10.449-9.54-25.126-14.148-35.494-16.794-11.917-3.038-25.566-5.18-38.946-6.716-26.859-3.085-55.77-4.092-74.351-4.092v62.468c16.9 0 43.341 0.939 67.217 3.686 11.994 1.374 22.554 3.123 30.643 5.184 5.449 1.391 8.175 2.543 9.161 2.957l0.094 0.043c0.789 1.161 2.543 4.151 4.459 10.121 2.368 7.39 4.041 16.375 5.056 25.267 2.662 23.326 17.613 46.63 43.294 55.471l129.199 44.476zM222.876 657.587c-22.474 7.735-50.954 2.581-67.407-20.544-22.4-31.488-44.993-80.623-48.922-129.617-1.992-24.841 0.691-51.345 12.367-75.665 11.948-24.887 32.321-45.347 61.719-58.765 55.165-25.181 125.841-40.263 187.399-49.144 61.946-8.937 117.494-11.981 143.964-11.981v62.47c-23.198 0-75.755 2.787-135.043 11.341-59.675 8.61-123.36 22.681-170.38 44.143-16.748 7.646-26.025 17.894-31.343 28.975-5.593 11.648-7.797 26.372-6.412 43.635 2.714 33.843 18.721 70.784 35.518 95.467l127.4-43.853c0.067-0.043 0.235-0.171 0.478-0.495 0.452-0.61 0.937-1.651 1.090-2.991 1.296-11.362 3.606-24.678 7.636-37.252 3.784-11.806 10.276-26.842 22.27-37.794 10.45-9.54 25.127-14.148 35.493-16.794 11.916-3.038 25.568-5.18 38.947-6.716 26.859-3.085 55.77-4.092 74.351-4.092v62.468c-16.9 0-43.341 0.939-67.221 3.686-11.989 1.378-22.551 3.123-30.638 5.184-5.452 1.391-8.175 2.543-9.162 2.957l-0.092 0.043c-0.791 1.161-2.546 4.151-4.459 10.121-2.368 7.39-4.044 16.375-5.058 25.267-2.66 23.326-17.611 46.63-43.292 55.471l-129.202 44.476z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone-end"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":609,"id":54,"name":"phone-end","prevSize":32,"code":59777},"setIdx":0,"setId":2,"iconIdx":127},{"icon":{"paths":["M410.504 204.615c-10.421-21.361-34.203-37.856-62.191-33.137-38.103 6.425-88.824 25.194-126.246 57.060-18.972 16.155-35.817 36.795-44.758 62.246-9.15 26.048-9.211 54.92 2.088 85.196 21.201 56.813 60.513 117.455 97.761 167.26 37.482 50.125 74.609 91.554 93.327 110.272l44.173-44.173c-16.405-16.405-51.598-55.539-87.472-103.509-36.108-48.286-71.191-103.267-89.262-151.691-6.437-17.249-5.748-31.055-1.675-42.651 4.282-12.192 13.134-24.16 26.319-35.388 25.85-22.012 63.29-36.814 92.623-42.392l59.075 121.096c0.018 0.075 0.047 0.285-0.012 0.687-0.111 0.75-0.504 1.83-1.343 2.884-7.118 8.951-14.9 20.001-20.943 31.741-5.673 11.025-11.714 26.246-10.976 42.472 0.643 14.135 7.761 27.772 13.222 36.971 6.277 10.577 14.417 21.743 22.79 32.29 16.809 21.175 36.542 42.33 49.679 55.467l44.173-44.173c-11.951-11.951-29.978-31.309-44.924-50.133-7.505-9.455-13.739-18.159-18.001-25.335-2.867-4.838-3.981-7.578-4.386-8.567l-0.038-0.094c0.265-1.382 1.139-4.738 4.006-10.312 3.55-6.9 8.717-14.437 14.289-21.443 14.613-18.374 20.523-45.425 8.614-69.835l-59.913-122.809zM819.383 613.5c21.363 10.423 37.858 34.206 33.139 62.191-6.426 38.106-25.195 88.823-57.062 126.246-16.154 18.974-36.791 35.819-62.246 44.757-26.048 9.152-54.921 9.212-85.197-2.086-56.811-21.201-117.453-60.514-167.258-97.762-50.125-37.483-91.555-74.607-110.273-93.325l44.173-44.173c16.407 16.405 55.54 51.597 103.511 87.471 48.286 36.109 103.266 71.189 151.693 89.263 17.246 6.434 31.053 5.747 42.65 1.673 12.19-4.279 24.158-13.133 35.388-26.317 22.012-25.852 36.813-63.292 42.394-92.621l-121.097-59.076c-0.077-0.017-0.286-0.047-0.687 0.013-0.751 0.111-1.83 0.503-2.884 1.34-8.951 7.121-20.002 14.903-31.744 20.945-11.025 5.675-26.244 11.712-42.47 10.974-14.135-0.644-27.772-7.761-36.971-13.222-10.577-6.276-21.743-14.417-32.29-22.788-21.175-16.811-42.33-36.544-55.467-49.681l44.173-44.173c11.951 11.951 31.309 29.982 50.133 44.928 9.455 7.501 18.159 13.734 25.335 17.997 4.838 2.871 7.578 3.985 8.567 4.386l0.094 0.038c1.382-0.265 4.736-1.139 10.313-4.006 6.899-3.55 14.434-8.717 21.44-14.289 18.377-14.613 45.427-20.518 69.837-8.61l122.807 59.908z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":610,"id":53,"name":"phone","prevSize":32,"code":59778},"setIdx":0,"setId":2,"iconIdx":128},{"icon":{"paths":["M512.606 128.018c-72.375-1.375-144.904 25.78-199.305 80.524-54.654 54.999-89.301 136.056-89.301 239.466 0 80.23 44.5 174.869 97.546 252.804 53.065 77.965 120.83 148.16 176.139 175.821l15.194 7.603 14.81-8.333c217.156-122.15 272.311-333.879 272.311-427.895 0-101.732-27.925-181.775-80.179-236.931-52.343-55.247-125.295-81.503-207.215-83.060zM288 448.009c0-88.591 29.353-152.747 70.699-194.353 41.599-41.862 97.071-62.705 152.691-61.648 68.992 1.311 124.041 23.055 161.971 63.089 38.016 40.126 62.639 102.647 62.639 192.913 0 74.551-44.689 253.679-224.175 363.034-39.684-25.613-92.187-79.855-137.371-146.24-50.954-74.863-86.454-156.22-86.454-216.794zM544 416c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32zM608 416c0 53.018-42.982 96-96 96s-96-42.982-96-96c0-53.019 42.982-96 96-96s96 42.981 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin-map"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":611,"id":52,"name":"pin-map","prevSize":32,"code":59779},"setIdx":0,"setId":2,"iconIdx":129},{"icon":{"paths":["M403.11 199.401c17.543-17.543 45.987-17.543 63.531 0 17.54 17.543 17.54 45.987 0 63.53l-43.66 43.659 177.83 177.827 60.339-60.338c24.994-24.994 65.515-24.994 90.509 0l45.257 45.256-331.87 331.87-45.255-45.257c-24.994-24.994-24.994-65.515 0-90.509l60.338-60.339-177.827-177.83-43.66 43.661c-17.543 17.545-45.987 17.545-63.53 0s-17.543-45.986 0-63.529l207.999-207.999zM149.856 362.145c-42.537 42.537-42.537 111.502 0 154.041 42.001 42.001 109.771 42.53 152.421 1.583l87.335 87.339-15.077 15.074c-49.987 49.988-49.987 131.034 0 181.022l67.884 67.878c12.497 12.497 32.755 12.497 45.252 0l167.936-167.932 88.013 92.002c12.215 12.77 32.474 13.222 45.244 1.003 12.77-12.215 13.218-32.474 1.003-45.244l-88.994-93.026 163.925-163.925c12.493-12.497 12.493-32.759 0-45.257l-67.883-67.88c-49.988-49.987-131.034-49.987-181.022 0l-15.906 15.907-87.322-87.322c41.762-42.596 41.506-110.984-0.772-153.262-42.534-42.537-111.502-42.537-154.038 0l-207.999 207.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":612,"id":51,"name":"pin","prevSize":32,"code":59780},"setIdx":0,"setId":2,"iconIdx":130},{"icon":{"paths":["M533.333 128c200.294 0 362.667 162.371 362.667 362.667h-362.667v-362.667z","M128 533.333c0-200.295 162.371-362.667 362.667-362.667v362.667h362.667c0 200.294-162.372 362.667-362.667 362.667s-362.667-162.372-362.667-362.667z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pizza-graph"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":613,"id":50,"name":"pizza-graph","prevSize":32,"code":59781},"setIdx":0,"setId":2,"iconIdx":131},{"icon":{"paths":["M512.678 928.004c229.747 0 416-186.249 416-416 0-229.749-186.253-415.999-416-415.999-229.752 0-416.001 186.25-416.001 415.999 0 229.751 186.249 416 416.001 416zM452.523 357.193l195.255 136.768c14.208 9.95 18.496 30.874 9.583 46.729-2.432 4.322-5.709 7.979-9.583 10.692l-195.255 136.768c-14.204 9.95-32.95 5.163-41.866-10.692-3.036-5.397-4.646-11.644-4.646-18.018v-273.536c0-18.72 13.597-33.897 30.372-33.897 5.709 0 11.307 1.798 16.141 5.186z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play-filled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":614,"id":49,"name":"play-filled","prevSize":32,"code":59782},"setIdx":0,"setId":2,"iconIdx":132},{"icon":{"paths":["M864 512c0-194.404-157.598-352-352-352-194.404 0-352 157.596-352 352 0 194.402 157.596 352 352 352 194.402 0 352-157.598 352-352zM928 512c0 229.751-186.249 416-416 416s-416-186.249-416-416c0-229.751 186.249-416 416-416s416 186.249 416 416zM451.849 357.186l195.255 136.766c14.208 9.954 18.496 30.874 9.579 46.733-2.432 4.322-5.705 7.979-9.579 10.692l-195.255 136.768c-14.208 9.95-32.952 5.163-41.868-10.692-3.036-5.402-4.646-11.648-4.646-18.022v-273.534c0-18.72 13.597-33.897 30.369-33.897 5.713 0 11.307 1.798 16.145 5.186z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":615,"id":48,"name":"play","prevSize":32,"code":59783},"setIdx":0,"setId":2,"iconIdx":133},{"icon":{"paths":["M321.626 430.882l224.49 224.491-126.12 126.118-224.49-224.491 126.12-126.118zM366.881 385.626l192.116-192.116 224.491 224.49-192.115 192.116-224.492-224.49zM581.623 125.628c-12.497-12.497-32.759-12.497-45.257 0l-408.743 408.747c-12.497 12.497-12.497 32.755 0 45.252l269.745 269.747c5.23 5.231 11.82 8.269 18.631 9.122v0.068h0.571c2.276 0.243 4.573 0.243 6.85 0h440.579c17.673 0 32-14.327 32-32s-14.327-32-32-32h-366.566l353.937-353.937c12.497-12.497 12.497-32.757 0-45.254l-269.747-269.745z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["prune"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":619,"id":44,"name":"prune","prevSize":32,"code":59789},"setIdx":0,"setId":2,"iconIdx":137},{"icon":{"paths":["M230.487 636.693c-14.92-9.472-34.694-5.056-44.167 9.865-9.473 14.916-5.058 34.692 9.862 44.164l298.665 189.632c10.47 6.647 23.838 6.647 34.304 0l298.667-189.632c14.921-9.472 19.337-29.248 9.865-44.164-9.472-14.921-29.248-19.337-44.169-9.865l-281.515 178.739-281.513-178.739zM186.32 494.852c9.473-14.921 29.247-19.337 44.167-9.86l281.513 178.739 281.515-178.739c14.921-9.476 34.697-5.060 44.169 9.86s5.056 34.697-9.865 44.169l-298.667 189.628c-10.466 6.647-23.834 6.647-34.304 0l-298.665-189.628c-14.92-9.472-19.336-29.248-9.862-44.169zM529.152 143.663l298.667 189.63c9.25 5.871 14.848 16.062 14.848 27.015s-5.598 21.144-14.848 27.015l-298.667 189.629c-10.466 6.647-23.834 6.647-34.304 0l-298.665-189.629c-9.246-5.871-14.848-16.062-14.848-27.015s5.602-21.144 14.848-27.015l298.665-189.63c10.47-6.647 23.838-6.647 34.304 0zM273.035 360.307l238.965 151.723 238.967-151.723-238.967-151.725-238.965 151.725z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["queue"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":620,"id":43,"name":"queue","prevSize":32,"code":59790},"setIdx":0,"setId":2,"iconIdx":138},{"icon":{"paths":["M160 800c-11.706 0-22.478-6.391-28.087-16.666s-5.161-22.793 1.169-32.64l112.304-174.694h-69.387c-17.673 0-32-14.327-32-32v-288c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32v288c0 6.135-1.762 12.143-5.082 17.306l-144.001 224c-5.888 9.156-16.029 14.694-26.918 14.694h-128zM330.918 561.306l-112.304 174.694h51.916l129.47-201.399v-246.601h-192v224h96c11.706 0 22.478 6.391 28.087 16.666s5.161 22.793-1.169 32.64zM576 800c-11.708 0-22.477-6.391-28.087-16.666s-5.158-22.793 1.169-32.64l112.307-174.694h-69.389c-17.673 0-32-14.327-32-32v-288c0-17.673 14.327-32 32-32h256c17.673 0 32 14.327 32 32v288c0 6.135-1.762 12.143-5.082 17.306l-144 224c-5.888 9.156-16.030 14.694-26.918 14.694h-128zM746.918 561.306l-112.307 174.694h51.917l129.472-201.399v-246.601h-192v224h96c11.708 0 22.477 6.391 28.087 16.666s5.158 22.793-1.169 32.64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":621,"id":42,"name":"quote","prevSize":32,"code":59791},"setIdx":0,"setId":2,"iconIdx":139},{"icon":{"paths":["M802.257 544c0 176.73-143.27 320-320 320-176.733 0-320.002-143.27-320.002-320 0-176.731 143.269-320 320.002-320v-64c-212.079 0-384.002 171.923-384.002 384 0 212.079 171.922 384 384.002 384 212.075 0 384-171.921 384-384 0-10.778-0.444-21.449-1.314-32h-64.269c1.045 10.526 1.583 21.201 1.583 32zM802.257 112c0-17.673-14.327-32-32-32-17.677 0-32 14.327-32 32v112h-112c-17.677 0-32 14.327-32 32s14.323 32 32 32h112v112c0 17.673 14.323 32 32 32 17.673 0 32-14.327 32-32v-112h112c17.673 0 32-14.327 32-32s-14.327-32-32-32h-112v-112zM386.255 512c35.346 0 64.002-28.655 64.002-64 0-35.346-28.656-64-64.002-64s-64 28.654-64 64c0 35.345 28.654 64 64 64zM642.257 448c0 35.345-28.655 64-64 64-35.349 0-64-28.655-64-64 0-35.346 28.651-64 64-64 35.345 0 64 28.654 64 64zM332.060 589.077c-10.451-14.251-30.477-17.335-44.729-6.882-14.252 10.449-17.332 30.477-6.881 44.727 37.658 51.354 77.753 84.625 119.178 102.665 41.737 18.18 82.796 19.989 120.364 11.652 73.468-16.307 132.211-70.874 164.070-114.317 10.449-14.251 7.369-34.278-6.882-44.727-14.251-10.453-34.278-7.369-44.727 6.882-26.812 36.557-73.668 77.99-126.332 89.681-25.502 5.662-52.642 4.476-80.938-7.846-28.608-12.459-60.38-37.188-93.122-81.835z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["reaction-add"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":622,"id":41,"name":"reaction-add","prevSize":32,"code":59792},"setIdx":0,"setId":2,"iconIdx":140},{"icon":{"paths":["M832.678 512c0-176.731-143.27-320-320-320-176.733 0-320.001 143.269-320.001 320 0 176.73 143.269 320 320.001 320 176.73 0 320-143.27 320-320zM896.678 512c0 212.079-171.925 384-384 384-212.079 0-384.001-171.921-384.001-384 0-212.077 171.923-384 384.001-384 212.075 0 384 171.923 384 384zM512.678 704c-106.040 0-192.001-85.961-192.001-192s85.961-192 192.001-192c106.039 0 192 85.961 192 192s-85.961 192-192 192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["record"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":623,"id":40,"name":"record","prevSize":32,"code":59793},"setIdx":0,"setId":2,"iconIdx":141},{"icon":{"paths":["M896 512h-63.987c0-175.415-145.749-320-328.516-320-115.27 0-215.817 57.513-274.36 144h110.768c17.673 0 32 14.327 32 32s-14.327 32-32 32h-179.904c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v102.32c71.751-91.401 184.591-150.32 311.497-150.32 216.781 0 392.503 171.923 392.503 384 0 1.114 0.009 2.227 0 3.337v-3.337z","M127.997 512h63.986c0 175.415 145.751 320 328.52 320 115.268 0 215.817-57.515 274.359-144h-110.767c-17.677 0-32-14.327-32-32s14.323-32 32-32h179.904c17.673 0 32 14.327 32 32v192c0 17.673-14.327 32-32 32s-32-14.327-32-32v-102.319c-71.753 91.401-184.593 150.319-311.497 150.319-216.783 0-392.506-171.921-392.506-384 0-1.084-0.009-2.163 0-3.247v3.247z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["refresh"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":624,"id":39,"name":"refresh","prevSize":32,"code":59794},"setIdx":0,"setId":2,"iconIdx":142},{"icon":{"paths":["M245.333 480h533.333c17.673 0 32 14.327 32 32s-14.327 32-32 32h-533.333c-17.673 0-32-14.327-32-32s14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Remove"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":625,"id":38,"name":"Remove","prevSize":32,"code":59795},"setIdx":0,"setId":2,"iconIdx":143},{"icon":{"paths":["M708.723 449.771c0-142.502-115.674-258.022-258.364-258.022-142.687 0-258.359 115.52-258.359 258.022s115.673 258.022 258.359 258.022c142.69 0 258.364-115.52 258.364-258.022zM654.379 699.042c-55.573 45.419-126.609 72.666-204.019 72.666-178.033 0-322.359-144.137-322.359-321.937s144.326-321.937 322.359-321.937c178.035 0 322.364 144.137 322.364 321.937 0 77.303-27.281 148.245-72.755 203.742l186.59 186.347c12.591 12.574 12.591 32.956 0 45.53-12.587 12.574-32.998 12.574-45.589 0l-186.59-186.347z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":626,"id":37,"name":"search","prevSize":32,"code":59796},"setIdx":0,"setId":2,"iconIdx":144},{"icon":{"paths":["M891.494 238.961l-297.476 637.446c-16.853 36.113-69.619 31.458-79.889-7.049l-66.001-247.501 151.249-189.056-219.993 109.995-226.834-113.417c-35.43-17.715-29.696-69.947 8.733-79.555l681.2-170.3c34.837-8.71 64.196 26.892 49.011 59.436z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send-filled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":627,"id":36,"name":"send-filled","prevSize":32,"code":59797},"setIdx":0,"setId":2,"iconIdx":145},{"icon":{"paths":["M878.020 192.976c7.851 9.521 9.527 22.708 4.309 33.891l-298.667 640c-5.692 12.194-18.402 19.529-31.808 18.342-13.406-1.182-24.64-10.628-28.109-23.629l-81.617-306.074-285.774-142.884c-11.977-5.989-18.959-18.802-17.498-32.113s11.056-24.305 24.048-27.553l682.667-170.667c11.972-2.993 24.597 1.165 32.448 10.686zM505.822 545.967l57.079 214.054 233.028-499.351-533.581 133.396 203.605 101.802 69.513-52.134c14.14-10.603 34.197-7.735 44.8 6.4 10.603 14.14 7.74 34.197-6.4 44.8l-68.045 51.034z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":628,"id":35,"name":"send","prevSize":32,"code":59798},"setIdx":0,"setId":2,"iconIdx":146},{"icon":{"paths":["M421.334 256c0-44.183-35.817-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80s80-35.817 80-80zM465.301 288c-14.208 55.207-64.324 96-123.967 96s-109.758-40.793-123.968-96h-89.367c-17.673 0-32-14.327-32-32s14.327-32 32-32h89.367c14.209-55.207 64.325-96 123.968-96s109.759 40.793 123.967 96h430.699c17.673 0 32 14.327 32 32s-14.327 32-32 32h-430.699zM96 768c0-17.673 14.327-32 32-32h89.367c14.209-55.206 64.325-96 123.968-96 60.782 0 111.671 42.368 124.744 99.179 4.207-2.035 8.93-3.179 13.922-3.179h416c17.673 0 32 14.327 32 32s-14.327 32-32 32h-416c-4.992 0-9.715-1.143-13.922-3.179-13.073 56.811-63.962 99.179-124.744 99.179-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.327-32-32zM341.334 848c44.183 0 80-35.819 80-80s-35.817-80-80-80c-44.183 0-80 35.819-80 80s35.817 80 80 80zM796.032 543.757c-14.127 55.33-64.303 96.243-124.032 96.243s-109.905-40.913-124.028-96.243c-1.301 0.162-2.628 0.243-3.972 0.243h-416c-17.673 0-32-14.327-32-32s14.327-32 32-32h416c1.344 0 2.671 0.081 3.972 0.243 14.123-55.331 64.299-96.243 124.028-96.243s109.905 40.913 124.032 96.243c1.297-0.162 2.624-0.243 3.968-0.243h96c17.673 0 32 14.327 32 32s-14.327 32-32 32h-96c-1.344 0-2.671-0.081-3.968-0.243zM752 512c0-44.181-35.819-80-80-80s-80 35.819-80 80c0 44.181 35.819 80 80 80s80-35.819 80-80z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["settings"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":629,"id":34,"name":"settings","prevSize":32,"code":59799},"setIdx":0,"setId":2,"iconIdx":147},{"icon":{"paths":["M694.626 300.76c12.497-12.854 12.497-33.694 0-46.548l-160-164.571c-12.497-12.854-32.755-12.854-45.252 0l-160.001 164.571c-12.497 12.854-12.497 33.694 0 46.548s32.758 12.854 45.255 0l105.373-108.383v430.711c0 18.176 14.327 32.913 32 32.913s32-14.737 32-32.913v-430.711l105.374 108.384c12.497 12.854 32.755 12.854 45.252 0z","M192 384h160v64h-128v416h576v-416h-128v-64h160c17.673 0 32 14.327 32 32v480c0 17.673-14.327 32-32 32h-640c-17.673 0-32-14.327-32-32v-480c0-17.673 14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["share"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":630,"id":33,"name":"share","prevSize":32,"code":59800},"setIdx":0,"setId":2,"iconIdx":148},{"icon":{"paths":["M664.081 405.067c11.639-13.3 10.291-33.517-3.008-45.155s-33.519-10.29-45.154 3.011l-125.252 143.142-39.919-45.619c-11.635-13.299-31.852-14.647-45.153-3.008-13.3 11.635-14.648 31.851-3.011 45.154l64.001 73.143c6.076 6.942 14.852 10.927 24.081 10.927s18.005-3.985 24.081-10.927l149.333-170.669z","M541.99 143.045c-12.855-3.633-26.449-3.753-39.364-0.345l-264.722 69.849c-29.793 7.861-52.548 33.743-54.753 65.632-23.59 341.206 187.75 520.291 276.51 579.794 33.135 22.212 75.362 22.144 108.416-0.26 88.218-59.789 297.118-239.070 272.614-580.213-2.253-31.321-24.341-56.895-53.508-65.14l-245.193-69.318zM518.955 204.582c1.847-0.487 3.789-0.47 5.623 0.049l245.197 69.318c4.292 1.214 6.839 4.781 7.078 8.139 22.153 308.364-165.303 468.85-244.685 522.653-11.435 7.753-25.365 7.787-36.873 0.073-80.083-53.683-269.603-214.050-248.298-522.217 0.234-3.389 2.833-7.004 7.234-8.165l264.723-69.849z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-check"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":631,"id":32,"name":"shield-check","prevSize":32,"code":59801},"setIdx":0,"setId":2,"iconIdx":149},{"icon":{"paths":["M515.558 142.7c12.915-3.408 26.505-3.288 39.36 0.345l245.197 69.318c29.163 8.245 51.255 33.818 53.504 65.14 24.503 341.143-184.397 520.424-272.614 580.213-33.050 22.404-75.277 22.473-108.416 0.26-88.759-59.503-300.099-238.588-276.509-579.794 2.205-31.89 24.96-57.772 54.753-65.632l264.726-69.849zM537.506 204.631c-1.835-0.519-3.776-0.536-5.623-0.049l-264.722 69.849c-4.4 1.161-6.999 4.776-7.233 8.165-21.305 308.167 168.215 468.534 248.301 522.217 11.507 7.714 25.434 7.68 36.873-0.073 79.377-53.803 266.833-214.289 244.681-522.653-0.239-3.358-2.786-6.925-7.078-8.139l-245.197-69.318z","M492.928 337.331c-19.759 4.672-47.249 12.307-81.151 24.553 20.812 108.773 53.221 187.015 81.151 238.829v-263.382zM495.125 271.311c33.766-6.897 61.803 19.742 61.803 51.124v360.966c0 17.024-10.334 31.748-25.643 37.521-15.671 5.909-33.779 1.327-44.86-12.676-32.657-41.267-106.324-152.951-141.192-354.565-3.241-18.744 7.065-37.694 25.329-44.725 56.185-21.63 99.095-32.442 124.562-37.644z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":632,"id":31,"name":"shield","prevSize":32,"code":59802},"setIdx":0,"setId":2,"iconIdx":150},{"icon":{"paths":["M778.641 213.333c-17.673 0-32 14.327-32 32v533.333c0 17.673 14.327 32 32 32s32-14.327 32-32v-533.333c0-17.673-14.327-32-32-32z","M600.87 341.333c-17.673 0-32 14.327-32 32v405.333c0 17.673 14.327 32 32 32s32-14.327 32-32v-405.333c0-17.673-14.327-32-32-32z","M423.103 810.667c-17.673 0-32-14.327-32-32v-277.333c0-17.673 14.327-32 32-32s32.001 14.327 32.001 32v277.333c0 17.673-14.327 32-32.001 32z","M245.333 597.333c-17.673 0-32 14.327-32 32v149.333c0 17.673 14.327 32 32 32s32-14.327 32-32v-149.333c0-17.673-14.327-32-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["signal"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":633,"id":30,"name":"signal","prevSize":32,"code":59803},"setIdx":0,"setId":2,"iconIdx":151},{"icon":{"paths":["M292.515 192c13.364 0 25.321 8.305 29.987 20.829l96 257.699c6.17 16.559-2.255 34.987-18.816 41.156s-34.988-2.253-41.158-18.816l-20.476-54.963h-91.075l-20.476 54.963c-6.17 16.563-24.596 24.986-41.158 18.816s-24.985-24.597-18.816-41.156l96-257.699c4.666-12.524 16.623-20.829 29.987-20.829zM314.211 373.904l-21.695-58.238-21.696 58.238h43.391z","M525.286 626.436c-12.156 12.826-11.61 33.079 1.22 45.235l160 151.586c12.343 11.695 31.676 11.695 44.019 0l160-151.586c12.826-12.156 13.376-32.41 1.22-45.235-12.156-12.83-32.41-13.38-45.239-1.225l-105.993 100.42v-501.632c0-17.673-14.327-32-32-32s-32 14.327-32 32v501.632l-105.988-100.42c-12.83-12.156-33.084-11.605-45.239 1.225z","M196.515 570.944c-17.673 0-32 14.327-32 32 0 17.677 14.327 32 32 32h116.145l-139.065 142.733c-8.979 9.216-11.565 22.916-6.564 34.769 5.001 11.857 16.617 19.563 29.484 19.563h192c17.673 0 32-14.327 32-32s-14.327-32-32-32h-116.145l139.065-142.733c8.979-9.216 11.565-22.912 6.564-34.769-5.001-11.853-16.617-19.563-29.484-19.563h-192z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sort-az"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":634,"id":29,"name":"sort-az","prevSize":32,"code":59804},"setIdx":0,"setId":2,"iconIdx":152},{"icon":{"paths":["M922.551 666.351c12.587-12.237 12.86-32.35 0.606-44.919-12.254-12.574-32.393-12.843-44.983-0.606l-105.971 103.019v-500.139c0-17.545-14.242-31.767-31.808-31.767-17.57 0-31.812 14.223-31.812 31.767v500.139l-105.971-103.019c-12.591-12.237-32.73-11.968-44.983 0.606-12.254 12.57-11.981 32.683 0.606 44.919l159.97 155.511c12.352 12.006 32.026 12.006 44.378 0l159.97-155.511zM564.425 333.229c17.57 0 31.808-14.223 31.808-31.767s-14.238-31.767-31.808-31.767h-431.919c-17.568 0-31.809 14.223-31.809 31.767s14.242 31.767 31.809 31.767h431.919zM468.442 535.394c17.57 0 31.812-14.221 31.812-31.765s-14.242-31.77-31.812-31.77h-335.936c-17.568 0-31.809 14.225-31.809 31.77s14.242 31.765 31.809 31.765h335.936zM388.458 722.010c17.568 0 31.809-14.221 31.809-31.765s-14.241-31.77-31.809-31.77h-255.952c-17.568 0-31.809 14.225-31.809 31.77s14.241 31.765 31.809 31.765h255.952z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sort"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":635,"id":28,"name":"sort","prevSize":32,"code":59805},"setIdx":0,"setId":2,"iconIdx":153},{"icon":{"paths":["M192 405.333h213.333v-213.333h-213.333v213.333zM128 170.667c0-23.564 19.103-42.667 42.667-42.667h256c23.565 0 42.667 19.103 42.667 42.667v256c0 23.565-19.102 42.667-42.667 42.667h-256c-23.564 0-42.667-19.102-42.667-42.667v-256zM618.667 405.333h213.333v-213.333h-213.333v213.333zM554.667 170.667c0-23.564 19.102-42.667 42.667-42.667h256c23.565 0 42.667 19.103 42.667 42.667v256c0 23.565-19.102 42.667-42.667 42.667h-256c-23.565 0-42.667-19.102-42.667-42.667v-256zM618.667 618.667h213.333v213.333h-213.333v-213.333zM597.333 554.667c-23.565 0-42.667 19.102-42.667 42.667v256c0 23.565 19.102 42.667 42.667 42.667h256c23.565 0 42.667-19.102 42.667-42.667v-256c0-23.565-19.102-42.667-42.667-42.667h-256zM192 832h213.333v-213.333h-213.333v213.333zM128 597.333c0-23.565 19.103-42.667 42.667-42.667h256c23.565 0 42.667 19.102 42.667 42.667v256c0 23.565-19.102 42.667-42.667 42.667h-256c-23.564 0-42.667-19.102-42.667-42.667v-256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["squares"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":636,"id":27,"name":"squares","prevSize":32,"code":59806},"setIdx":0,"setId":2,"iconIdx":154},{"icon":{"paths":["M593.937 170.244c-20.864-57.726-103.155-55.816-121.318 2.816l-58.978 190.35h-221.512c-58.947 0-86.549 72.943-42.37 111.965l157.591 139.204-53.209 216.93c-14.17 57.771 51.25 101.935 99.535 67.2l177.739-127.881 177.741 127.881c48.286 34.735 113.707-9.429 99.537-67.2l-53.389-217.651 147.891-139.968c42.031-39.778 13.879-110.481-43.994-110.481h-195.439l-69.824-193.165z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star-filled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":637,"id":26,"name":"star-filled","prevSize":32,"code":59807},"setIdx":0,"setId":2,"iconIdx":155},{"icon":{"paths":["M472.619 172.834c18.163-58.554 100.454-60.462 121.318-2.812l69.824 192.91h195.439c57.873 0 86.025 70.608 43.994 110.335l-147.891 139.785 53.389 217.361c14.17 57.694-51.251 101.803-99.537 67.11l-177.741-127.706-177.739 127.706c-48.284 34.692-113.705-9.417-99.535-67.11l53.209-216.64-157.591-139.021c-44.179-38.976-16.577-111.82 42.37-111.82h221.512l58.978-190.098zM603.571 384.66l-69.82-192.91-58.978 190.098c-8.303 26.758-33.084 44.998-61.133 44.998h-221.512l157.591 139.025c17.834 15.731 25.456 40.047 19.787 63.125l-53.209 216.644 177.74-127.706c22.332-16.047 52.425-16.047 74.756 0l177.741 127.706-53.389-217.361c-5.478-22.319 1.455-45.854 18.167-61.649l147.887-139.785h-195.439c-26.957 0-51.025-16.868-60.19-42.186z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":638,"id":25,"name":"star","prevSize":32,"code":59808},"setIdx":0,"setId":2,"iconIdx":156},{"icon":{"paths":["M520.533 827.733c169.66 0 307.2-137.54 307.2-307.2 0-169.662-137.54-307.2-307.2-307.2-169.662 0-307.2 137.538-307.2 307.2 0 169.66 137.538 307.2 307.2 307.2zM418.133 477.867c-23.564 0-42.667 19.102-42.667 42.667 0 23.561 19.103 42.667 42.667 42.667h204.8c23.565 0 42.667-19.106 42.667-42.667 0-23.565-19.102-42.667-42.667-42.667h-204.8z"],"attrs":[{"fill":"rgb(245, 69, 92)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-busy"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":4}]}},"attrs":[{"fill":"rgb(245, 69, 92)"}],"properties":{"order":640,"id":23,"name":"status-busy","prevSize":32,"code":59810},"setIdx":0,"setId":2,"iconIdx":158},{"icon":{"paths":["M520.533 742.4c-122.534 0-221.867-99.332-221.867-221.867s99.333-221.867 221.867-221.867c122.534 0 221.867 99.333 221.867 221.867s-99.332 221.867-221.867 221.867zM520.533 827.733c169.66 0 307.2-137.54 307.2-307.2 0-169.662-137.54-307.2-307.2-307.2-169.662 0-307.2 137.538-307.2 307.2 0 169.66 137.538 307.2 307.2 307.2z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-invisible"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":5}]}},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":641,"id":22,"name":"status-invisible","prevSize":32,"code":59811},"setIdx":0,"setId":2,"iconIdx":159},{"icon":{"paths":["M825.135 560.657l-84.617-11.038c1.237-9.481 1.882-19.187 1.882-29.086s-0.644-19.605-1.882-29.086l84.617-11.038c1.715 13.133 2.598 26.526 2.598 40.124s-0.883 26.991-2.598 40.124zM804.425 402.941l-78.827 32.686c-7.458-17.989-17.242-34.822-28.996-50.116l67.665-51.996c16.243 21.139 29.798 44.451 40.158 69.426zM707.55 276.801l-51.994 67.663c-15.296-11.753-32.128-21.534-50.116-28.995l32.687-78.825c24.973 10.356 48.286 23.913 69.423 40.157zM560.657 215.93l-11.038 84.617c-9.481-1.237-19.187-1.88-29.086-1.88s-19.605 0.643-29.086 1.88l-11.038-84.617c13.133-1.713 26.526-2.597 40.124-2.597s26.991 0.884 40.124 2.597zM402.941 236.644l32.686 78.825c-17.989 7.461-34.822 17.242-50.116 28.995l-51.996-67.663c21.139-16.244 44.451-29.801 69.426-40.157zM276.801 333.515l67.663 51.996c-11.753 15.294-21.534 32.126-28.995 50.116l-78.825-32.686c10.356-24.975 23.913-48.287 40.157-69.426zM215.93 480.41c-1.713 13.133-2.597 26.526-2.597 40.124s0.884 26.991 2.597 40.124l84.617-11.038c-1.237-9.481-1.88-19.187-1.88-29.086s0.643-19.605 1.88-29.086l-84.617-11.038zM236.644 638.127l78.825-32.687c7.461 17.988 17.242 34.82 28.995 50.116l-67.663 51.994c-16.244-21.137-29.801-44.45-40.157-69.423zM333.515 764.267l51.996-67.665c15.294 11.755 32.126 21.538 50.116 28.996l-32.686 78.827c-24.975-10.359-48.287-23.915-69.426-40.158zM480.41 825.135l11.038-84.617c9.481 1.237 19.187 1.882 29.086 1.882s19.605-0.644 29.086-1.882l11.038 84.617c-13.133 1.715-26.526 2.598-40.124 2.598s-26.991-0.883-40.124-2.598zM638.127 804.425l-32.687-78.827c17.988-7.458 34.82-17.242 50.116-28.996l51.994 67.665c-21.137 16.243-44.45 29.798-69.423 40.158zM764.267 707.55l-67.665-51.994c11.755-15.296 21.538-32.128 28.996-50.116l78.827 32.687c-10.359 24.973-23.915 48.286-40.158 69.423z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-loading"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":5}]}},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":642,"id":21,"name":"status-loading","prevSize":32,"code":59812},"setIdx":0,"setId":2,"iconIdx":160},{"icon":{"paths":["M819.2 512c0 169.662-137.538 307.2-307.2 307.2s-307.2-137.538-307.2-307.2c0-169.662 137.538-307.2 307.2-307.2s307.2 137.538 307.2 307.2z"],"attrs":[{"fill":"rgb(45, 224, 165)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-online"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":3}]}},"attrs":[{"fill":"rgb(45, 224, 165)"}],"properties":{"order":643,"id":20,"name":"status-online","prevSize":32,"code":59813},"setIdx":0,"setId":2,"iconIdx":161},{"icon":{"paths":["M536.845 548.215h-255.502c-20.173 0-36.527-16.354-36.527-36.527s16.354-36.527 36.527-36.527h102.99c-21.546-22.75-32.32-50.118-32.32-82.102 0-39.587 15.766-72.27 47.297-98.048 31.764-26.008 72.959-39.012 123.596-39.012 34.526 0 65.25 6.675 92.177 20.024 27.162 13.349 48.107 31.762 62.835 55.238 8.849 13.888 15.083 28.54 18.697 43.958 4.198 17.914-11.17 33.030-29.572 33.030-18.398 0-32.499-15.279-37.828-32.89-4.617-15.263-12.779-28.121-24.486-38.574-19.332-17.492-46.609-26.238-81.822-26.238-32.683 0-58.231 7.25-76.642 21.75-18.185 14.27-27.275 34.179-27.275 59.726 0 20.484 8.629 37.86 25.892 52.132 13.764 11.046 35.012 21.385 63.744 31.006h247.556c20.173 0 36.527 16.354 36.527 36.527s-16.354 36.527-36.527 36.527h-90.027c7.138 7.215 13.133 14.878 17.975 22.989 11.511 18.871 17.263 41.079 17.263 66.628 0 40.738-15.881 73.421-47.642 98.048-31.761 24.397-74.227 36.595-127.394 36.595-34.522 0-66.743-6.558-96.666-19.678-29.921-13.35-53.052-31.531-69.393-54.549-9.777-13.965-16.588-29.077-20.432-45.338-4.233-17.903 11.182-33.028 29.581-33.028s32.466 15.364 38.446 32.764c5.318 15.475 14.771 28.604 28.356 39.39 22.558 17.493 52.591 26.236 90.108 26.236 34.987 0 61.798-7.134 80.439-21.402 18.645-14.272 27.968-33.719 27.968-58.347s-8.631-43.614-25.894-56.964c-14.332-11.273-38.34-22.387-72.026-33.344z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["strike"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":644,"id":19,"name":"strike","prevSize":32,"code":59814},"setIdx":0,"setId":2,"iconIdx":162},{"icon":{"paths":["M480 117.333c0-17.673 14.327-32 32-32s32 14.327 32 32v106.667c0 17.673-14.327 32-32 32s-32-14.327-32-32v-106.667zM770.039 214.629c12.497-12.497 32.759-12.497 45.257 0s12.497 32.758 0 45.255l-75.413 75.412c-12.497 12.497-32.759 12.497-45.257 0s-12.497-32.758 0-45.255l75.413-75.412zM335.377 694.63c-12.497-12.497-32.758-12.497-45.255 0l-75.495 75.494c-12.497 12.497-12.497 32.755 0 45.252s32.758 12.497 45.255 0l75.495-75.494c12.497-12.497 12.497-32.755 0-45.252zM480 800c0-17.673 14.327-32 32-32s32 14.327 32 32v106.667c0 17.673-14.327 32-32 32s-32-14.327-32-32v-106.667zM212 211.999c-12.497 12.497-12.497 32.758 0 45.255l75.349 75.349c12.497 12.497 32.758 12.497 45.255 0s12.497-32.758 0-45.255l-75.349-75.349c-12.497-12.497-32.758-12.497-45.255 0zM694.626 739.883c-12.497-12.497-12.497-32.759 0-45.257s32.759-12.497 45.257 0l75.328 75.328c12.497 12.497 12.497 32.759 0 45.257s-32.759 12.497-45.257 0l-75.328-75.328zM86.4 512c0 17.673 14.327 32 32 32h106.667c17.673 0 32-14.327 32-32s-14.327-32-32-32h-106.667c-17.673 0-32 14.327-32 32zM800 544c-17.673 0-32-14.327-32-32s14.327-32 32-32h106.667c17.673 0 32 14.327 32 32s-14.327 32-32 32h-106.667zM666.816 512c0-85.505-69.316-154.82-154.82-154.82-85.503 0-154.817 69.315-154.817 154.82 0 85.504 69.315 154.816 154.817 154.816 85.504 0 154.82-69.312 154.82-154.816zM725.329 512c0 117.82-95.509 213.333-213.333 213.333-117.819 0-213.332-95.514-213.332-213.333 0-117.822 95.512-213.335 213.332-213.335 117.824 0 213.333 95.513 213.333 213.335z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sun"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":645,"id":18,"name":"sun","prevSize":32,"code":59815},"setIdx":0,"setId":2,"iconIdx":163},{"icon":{"paths":["M930.253 512c0 229.751-186.249 416-416 416-229.749 0-415.999-186.249-415.999-416s186.249-416 415.999-416c229.751 0 416 186.249 416 416zM570.039 859.605l-41.83-156.105c-4.608 0.333-9.263 0.499-13.956 0.499-4.57 0-9.101-0.158-13.594-0.474l-41.835 156.134c18.057 2.854 36.57 4.339 55.428 4.339 18.982 0 37.615-1.502 55.787-4.395zM438.443 688.452c-47.551-20.459-85.181-59.571-103.675-108.126l-155.028 41.54c33.967 103.484 114.617 185.805 217.044 222.054l41.659-155.469zM162.254 512c0 16.090 1.079 31.927 3.17 47.445l156.904-42.044c-0.049-1.796-0.074-3.597-0.074-5.402 0-4.911 0.184-9.779 0.546-14.596l-156.051-41.813c-2.958 18.368-4.495 37.21-4.495 56.41zM395.858 180.407c-99.159 35.408-177.785 114.033-213.195 213.191l155.535 41.675c19.356-44.352 54.982-79.977 99.336-99.331l-41.676-155.535zM514.253 160c-19.196 0-38.037 1.537-56.401 4.495l41.813 156.051c4.817-0.361 9.681-0.546 14.588-0.546 5.030 0 10.018 0.194 14.95 0.573l41.805-156.022c-18.475-2.995-37.431-4.552-56.755-4.552zM632.064 843.802c102.656-36.45 183.39-119.194 217.092-223.121l-154.974-41.523c-18.291 48.981-56.009 88.491-103.787 109.15l41.668 155.494zM863.249 558.199c1.984-15.121 3.004-30.541 3.004-46.199 0-18.769-1.468-37.197-4.297-55.172l-156.156 41.843c0.299 4.403 0.452 8.849 0.452 13.329 0 1.378-0.013 2.752-0.043 4.122l157.039 42.078zM846.263 394.775c-35.166-99.601-113.886-178.641-213.278-214.248l-41.681 155.559c44.587 19.556 80.311 55.564 99.507 100.343l155.452-41.653zM642.253 512c0-70.694-57.306-128-128-128-70.69 0-127.999 57.306-127.999 128s57.309 128 127.999 128c70.694 0 128-57.306 128-128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["support"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":646,"id":17,"name":"support","prevSize":32,"code":59816},"setIdx":0,"setId":2,"iconIdx":164},{"icon":{"paths":["M368 412.435c-53.592 0-96-42.819-96-94.367s42.408-94.366 96-94.366c53.592 0 96 42.819 96 94.366s-42.408 94.367-96 94.367zM368 476.352c88.367 0 160-70.867 160-158.284s-71.633-158.282-160-158.282c-88.366 0-160 70.865-160 158.282s71.634 158.284 160 158.284zM713.6 396.606c-35.921 0-64-28.646-64-62.71s28.079-62.71 64-62.71c35.921 0 64 28.646 64 62.71s-28.079 62.71-64 62.71zM713.6 460.523c70.69 0 128-56.693 128-126.626s-57.31-126.626-128-126.626c-70.694 0-128 56.692-128 126.626s57.306 126.626 128 126.626zM197.459 526.571c27.344-8.695 56.671-9.229 84.32-1.536l48.489 13.491c24.207 6.733 49.884 6.268 73.824-1.348l30.101-9.57c29.474-9.37 61.086-9.946 90.889-1.655 67.964 18.91 114.918 80.226 114.918 150.071v91.866c0 52.45-42.982 94.967-96 94.967h-352c-53.019 0-96-42.517-96-94.967v-103.633c0-62.822 40.999-118.46 101.459-137.685zM264.451 585.98c-15.545-4.322-32.034-4.023-47.407 0.866-33.993 10.807-57.044 42.091-57.044 77.41v103.633c0 17.485 14.327 31.654 32 31.654h352c17.673 0 32-14.17 32-31.654v-91.866c0-41.476-27.887-77.892-68.245-89.122-17.702-4.924-36.476-4.582-53.978 0.981l-30.1 9.57c-35.91 11.422-74.426 12.122-110.737 2.018l-48.489-13.491zM691.2 777.685h140.8c53.018 0 96-42.923 96-95.872v-30.571c0-56.802-38.613-106.351-93.747-120.294-21.397-5.414-43.853-5.035-65.058 1.092l-16.397 4.745c-21.845 6.31-44.975 6.703-67.017 1.126l-29.807-7.539c-19.908-5.035-40.798-4.685-60.523 1.015-1.062 0.311-2.121 0.631-3.174 0.969 10.714 4.045 20.898 9.527 30.255 16.354l2.428 1.771 15.040 13.193c9.937 8.713 18.142 19.221 24.183 30.972l2.206 4.292 3.678 0.934c33.062 8.363 67.759 7.778 100.523-1.694l16.401-4.74c10.283-2.974 21.171-3.157 31.548-0.529 26.735 6.763 45.461 30.788 45.461 58.334v30.571c0 17.651-14.327 31.957-32 31.957h-140.8v63.915z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["team"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":647,"id":16,"name":"team","prevSize":32,"code":59817},"setIdx":0,"setId":2,"iconIdx":165},{"icon":{"paths":["M223.311 308.609c-47.831 66.699-64.077 147.668-64.077 201.185v1.404l-0.127 1.399c-9.348 103.236 27.547 175.996 86.848 226.377 60.643 51.516 146.604 80.998 235.291 90.893 88.61 9.886 186.223 1.399 263.339-14.976 38.562-8.188 70.929-18.121 93.888-28.126 8.909-3.883 15.838-7.535 20.945-10.765-2.377-1.515-5.248-3.196-8.678-5.030-8.883-4.749-19.055-9.263-29.611-13.897l-1.843-0.806c-9.314-4.083-19.725-8.649-27.61-13.077-14.293-8.030-28.318-17.156-38.545-26.867-5.035-4.783-10.761-11.196-14.596-19.183-4.058-8.457-6.959-21.082-1.259-34.436 30.814-72.188 45.457-111.727 52.548-137.835 6.622-24.38 6.622-36.655 6.622-56.171v-0.179c0-15.514-8.977-86.595-53.777-152.876-43.371-64.175-121.395-125.729-264.828-125.729-129.727 0-207.831 53.576-254.531 118.696zM173.267 272.433c58.132-81.062 154.749-144.433 304.574-144.433 164.894 0 261.594 72.589 315.857 152.878 52.838 78.182 64.414 161.879 64.414 187.641 0 21.658-0.017 40.337-8.794 72.64-7.834 28.834-22.626 68.617-50.048 133.423 5.069 4.036 12.591 9.003 22.507 14.571 5.12 2.876 12.992 6.34 24.055 11.191 10.261 4.51 22.579 9.933 33.89 15.979 10.846 5.798 23.526 13.572 32.951 23.74 9.86 10.633 20.211 28.868 12.817 51.136-4.873 14.673-16.183 25.092-25.609 32.017-10.24 7.522-22.946 14.281-36.86 20.343-27.947 12.177-64.585 23.181-105.681 31.906-82.197 17.451-186.522 26.688-282.906 15.936-96.311-10.743-195.347-43.174-268.314-105.165-74.031-62.891-119.295-154.778-108.551-277.854 0.276-63.411 19.118-157.053 75.696-235.949zM333.953 422.052c0-17.648 14.25-31.955 31.828-31.955h183.011c17.574 0 31.825 14.307 31.825 31.955s-14.251 31.955-31.825 31.955h-183.011c-17.578 0-31.828-14.306-31.828-31.955zM365.781 539.708c-17.578 0-31.828 14.306-31.828 31.957 0 17.647 14.25 31.953 31.828 31.953h224.12c17.579 0 31.825-14.306 31.825-31.953 0-17.651-14.246-31.957-31.825-31.957h-224.12z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["threads"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":648,"id":15,"name":"threads","prevSize":32,"code":59818},"setIdx":0,"setId":2,"iconIdx":166},{"icon":{"paths":["M392.557 853.333c317.455 0 491.091-262.665 491.091-490.443 0-7.46 0-14.887-0.503-22.281 33.779-24.401 62.938-54.613 86.11-89.223-31.501 13.94-64.917 23.081-99.136 27.12 36.032-21.542 62.997-55.424 75.883-95.34-33.882 20.078-70.946 34.228-109.598 41.839-53.5-56.814-138.513-70.72-207.369-33.919-68.851 36.8-104.427 115.155-86.767 191.127-138.778-6.948-268.076-72.41-355.717-180.093-45.81 78.76-22.411 179.517 53.437 230.097-27.467-0.811-54.336-8.211-78.337-21.573 0 0.706 0 1.445 0 2.185 0.022 82.053 57.937 152.722 138.47 168.969-25.41 6.921-52.071 7.932-77.934 2.957 22.611 70.217 87.409 118.319 161.251 119.706-61.117 47.97-136.617 74.010-214.351 73.933-13.732-0.026-27.452-0.858-41.087-2.487 78.931 50.586 170.772 77.419 264.557 77.295z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["twitter-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":649,"id":14,"name":"twitter-monochromatic","prevSize":32,"code":59819},"setIdx":0,"setId":2,"iconIdx":167},{"icon":{"paths":["M388.508 320c0-17.673-14.327-32-32-32s-32 14.327-32 32v256c0 106.039 85.961 192 192.002 192 106.035 0 192-85.961 192-192v-256c0-17.673-14.327-32-32-32-17.677 0-32 14.327-32 32v256c0 70.694-57.31 128-128 128-70.694 0-128.002-57.306-128.002-128v-256zM356.508 848c-17.673 0-32 14.327-32 32s14.327 32 32 32h320.002c17.673 0 32-14.327 32-32s-14.327-32-32-32h-320.002z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["underline"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":650,"id":13,"name":"underline","prevSize":32,"code":59820},"setIdx":0,"setId":2,"iconIdx":168},{"icon":{"paths":["M512 832c176.73 0 320-143.27 320-320 0-176.731-143.27-320-320-320-111.713 0-210.056 57.245-267.295 144h107.295c17.673 0 32 14.327 32 32s-14.327 32-32 32h-176c-17.673 0-32-14.327-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v101.364c70.228-90.856 180.282-149.364 304-149.364 212.079 0 384 171.923 384 384 0 212.079-171.921 384-384 384-212.077 0-384-171.921-384-384h64c0 176.73 143.269 320 320 320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["undo"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":651,"id":12,"name":"undo","prevSize":32,"code":59821},"setIdx":0,"setId":2,"iconIdx":169},{"icon":{"paths":["M825.374 153.173c12.497-12.48 32.755-12.48 45.252 0s12.497 32.715 0 45.195l-671.999 671.115c-12.497 12.48-32.758 12.48-45.255 0s-12.497-32.717 0-45.197l672.002-671.113zM107.307 479.424c101.801-153.5 303.397-327.248 541.397-225.142l-49.51 49.446c-56.452-19.184-107.934-19.478-153.323-9.713-114.755 24.688-215.37 118.236-280.422 213.585 38.582 47.94 75.869 86.711 111.715 117.73l-45.303 45.244c-39.632-34.692-80.083-77.333-121.157-129.007-14.229-17.903-16.035-43.089-3.398-62.144zM794.227 349.994l-45.269 45.21c35.494 31.386 72.239 70.857 110.037 119.924-61.461 95.061-158.443 188.433-271.761 213.342-46.694 10.266-100.493 9.719-160.384-11.588l-49.266 49.203c244.342 107.191 442.802-69.069 540.065-223.957 11.657-18.564 9.882-42.598-3.392-60.049-40.439-53.163-80.533-96.801-120.030-132.084zM511.599 346.974c13.692 0 26.999 1.57 39.753 4.534l-203.471 203.201c-3.895-13.82-5.974-28.365-5.974-43.379 0-90.772 75.975-164.356 169.693-164.356zM675.494 468.57l-202.995 202.726c12.553 2.867 25.643 4.386 39.1 4.386 93.722 0 169.694-73.583 169.694-164.352 0-14.793-2.018-29.129-5.798-42.761z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["unread-on-top-disabled"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":652,"id":11,"name":"unread-on-top-disabled","prevSize":32,"code":59822},"setIdx":0,"setId":2,"iconIdx":170},{"icon":{"paths":["M587.234 728.474c-107.23 23.573-251.957-9.865-421.785-220.868 65.051-95.352 165.667-188.9 280.422-213.588 108.169-23.272 250.953 10.59 413.124 221.111-61.461 95.061-158.443 188.433-271.761 213.346zM914.257 482.082c-347.132-456.361-668.857-210.879-806.95-2.658-12.638 19.055-10.832 44.241 3.398 62.144 362.307 455.817 676.142 208.862 806.945 0.563 11.657-18.569 9.882-42.598-3.392-60.049zM617.293 511.33c0-53.641-45.457-100.439-105.694-100.439s-105.693 46.799-105.693 100.439c0 53.636 45.456 100.437 105.693 100.437s105.694-46.801 105.694-100.437zM681.293 511.33c0 90.769-75.972 164.352-169.694 164.352-93.718 0-169.693-73.583-169.693-164.352 0-90.771 75.975-164.355 169.693-164.355 93.722 0 169.694 73.584 169.694 164.355z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["unread-on-top"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":653,"id":10,"name":"unread-on-top","prevSize":32,"code":59823},"setIdx":0,"setId":2,"iconIdx":171},{"icon":{"paths":["M273.128 356.679c-6.619 27.765-2.384 63.755 25.498 105.58l33.166 49.749h-59.792c-44.011 0-70.483 14.874-86.278 33.621-16.496 19.575-24.573 47.262-23.734 77.491 0.841 30.259 10.601 59.968 25.818 81.31 15.127 21.218 33.403 31.578 52.194 31.578h144v64h-144c-45.209 0-80.933-25.638-104.305-58.423-23.283-32.657-36.523-74.948-37.682-116.689-1.161-41.771 9.763-86.084 38.767-120.508 20.726-24.597 49.155-42.317 84.825-50.782-16.1-39.010-19.009-77.050-10.731-111.77 11.253-47.2 42.304-84.492 80.791-107.342 38.399-22.798 85.676-32.138 131.301-21.965 35.587 7.935 68.909 27.48 95.252 59.554 53.751-35.147 127.582-30.892 182.485-2.495 34.436 17.812 64.794 46.382 81.438 85.009 12.292 28.531 16.435 61.011 10.603 96.206 46.114 6.682 81.51 25.156 105.617 53.453 30.349 35.627 38.106 81.353 33.446 123.285-4.659 41.92-21.948 83.486-46.545 115.115-24.060 30.933-59.354 57.353-101.261 57.353h-144v-64h144c14.093 0 32.802-9.579 50.739-32.644 17.404-22.374 30.114-52.804 33.455-82.889 3.341-30.067-2.901-56.341-18.556-74.718-15.219-17.869-44.032-33.749-97.638-33.749h-45.687l15.616-42.935c13.547-37.252 11.089-66.743 1.434-89.149-9.856-22.872-28.501-41.302-52.062-53.489-49.587-25.649-107.477-18.624-134.716 14.063l-30.135 36.162-22.541-41.324c-19.759-36.22-47.232-54.176-74.872-60.34-28.375-6.327-59.098-0.669-84.699 14.531-25.513 15.148-44.462 38.854-51.209 67.153zM630.98 588.779l-96-99.051c-6.029-6.217-14.319-9.728-22.98-9.728s-16.951 3.511-22.98 9.728l-95.998 99.051c-12.3 12.689-11.983 32.947 0.707 45.248s32.951 11.985 45.251-0.708l41.020-42.321v273.003c0 17.673 14.327 32 32 32s32-14.327 32-32v-273.003l41.020 42.321c12.301 12.693 32.559 13.009 45.252 0.708 12.689-12.301 13.005-32.559 0.708-45.248z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["upload"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":654,"id":9,"name":"upload","prevSize":32,"code":59824},"setIdx":0,"setId":2,"iconIdx":172},{"icon":{"paths":["M553.412 325.606c0 91.58-75.849 165.821-169.412 165.821s-169.412-74.241-169.412-165.821c0-91.579 75.848-165.819 169.412-165.819s169.412 74.24 169.412 165.819zM485.649 325.606c0-54.947-45.513-99.491-101.649-99.491-56.138 0-101.647 44.544-101.647 99.491s45.509 99.492 101.647 99.492c56.137 0 101.649-44.544 101.649-99.492z","M203.427 510.558c28.952-9.109 60.004-9.668 89.279-1.613l51.342 14.135c25.632 7.057 52.819 6.566 78.167-1.408l31.873-10.027c31.206-9.822 64.678-10.423 96.23-1.737 71.962 19.81 121.681 84.049 121.681 157.218v96.239c0 54.946-45.508 99.49-101.649 99.49h-372.704c-56.138 0-101.647-44.544-101.647-99.49v-108.565c0-65.818 43.411-124.105 107.427-144.243zM274.359 572.796c-16.46-4.531-33.918-4.215-50.196 0.905-35.992 11.324-60.399 44.096-60.399 81.101v108.565c0 18.317 15.169 33.165 33.882 33.165h372.704c18.714 0 33.886-14.848 33.886-33.165v-96.239c0-43.452-29.53-81.604-72.265-93.367-18.739-5.158-38.618-4.8-57.148 1.028l-31.872 10.031c-38.024 11.959-78.804 12.698-117.251 2.112l-51.342-14.135z","M797.090 188.646c0-15.913-13.022-28.812-29.090-28.812s-29.090 12.9-29.090 28.812v100.844h-101.82c-16.064 0-29.090 12.9-29.090 28.812s13.026 28.813 29.090 28.813h101.82v100.842c0 15.915 13.022 28.813 29.090 28.813s29.090-12.898 29.090-28.813v-100.842h101.82c16.064 0 29.090-12.9 29.090-28.813s-13.026-28.812-29.090-28.812h-101.82v-100.844z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-add"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":655,"id":8,"name":"user-add","prevSize":32,"code":59825},"setIdx":0,"setId":2,"iconIdx":173},{"icon":{"paths":["M464 318.068c0-51.548-42.408-94.366-96-94.366s-96 42.819-96 94.366c0 51.548 42.408 94.367 96 94.367s96-42.819 96-94.367zM528 318.068c0 87.417-71.633 158.284-160 158.284-88.366 0-160-70.867-160-158.284s71.634-158.282 160-158.282c88.367 0 160 70.865 160 158.282zM281.778 525.035c-27.649-7.693-56.976-7.159-84.32 1.536-60.46 19.226-101.459 74.863-101.459 137.685v103.633c0 52.45 42.981 94.967 96 94.967h352c3.605 0 7.164-0.196 10.667-0.576v-64.538c-3.337 1.169-6.925 1.801-10.667 1.801h-352c-17.673 0-32-14.17-32-31.654v-103.633c0-35.319 23.051-66.603 57.043-77.41 15.374-4.89 31.862-5.188 47.407-0.866l48.489 13.491c36.311 10.103 74.826 9.404 110.737-2.018l30.1-9.57c17.502-5.564 36.275-5.905 53.978-0.981 18.901 5.257 35.063 16.038 46.912 30.281v-79.714c-9.31-4.749-19.204-8.627-29.585-11.516-29.803-8.29-61.414-7.714-90.889 1.655l-30.101 9.57c-23.941 7.616-49.617 8.081-73.825 1.348l-48.489-13.491zM763.366 489.033c-12.326-12.651-32.585-12.919-45.248-0.61s-12.937 32.542-0.61 45.193l102.839 105.506h-324.348c-17.673 0-32 14.31-32 31.962 0 17.647 14.327 31.957 32 31.957h324.348l-102.839 105.51c-12.326 12.646-12.053 32.879 0.61 45.188 12.663 12.314 32.922 12.041 45.248-0.606l155.721-159.761c12.092-12.407 12.092-32.175 0-44.582l-155.721-159.757z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-forward"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":656,"id":7,"name":"user-forward","prevSize":32,"code":59826},"setIdx":0,"setId":2,"iconIdx":174},{"icon":{"paths":["M608 336c0-53.019-42.982-96-96-96s-96 42.981-96 96c0 53.019 42.982 96 96 96s96-42.981 96-96zM672 336c0 88.366-71.633 160-160 160-88.366 0-160-71.634-160-160s71.634-160 160-160c88.367 0 160 71.634 160 160zM412.451 551.799c-24.621-5.769-50.286-5.363-74.713 1.178-67.087 17.971-113.738 78.763-113.738 148.215v66.807c0 53.018 42.981 96 96 96h384c53.018 0 96-42.982 96-96v-58.53c0-74.3-51.149-138.825-123.49-155.78l-6.455-1.51c-25.673-6.020-52.437-5.598-77.909 1.225l-49.626 13.295c-20.378 5.457-41.788 5.794-62.327 0.981l-67.741-15.881zM354.297 614.797c14.238-3.81 29.199-4.049 43.55-0.683l67.744 15.876c30.805 7.219 62.921 6.716 93.487-1.472l49.626-13.295c15.283-4.092 31.343-4.343 46.746-0.734l6.455 1.51c43.405 10.176 74.095 48.887 74.095 93.47v58.53c0 17.673-14.327 32-32 32h-384c-17.673 0-32-14.327-32-32v-66.807c0-40.486 27.193-75.921 66.297-86.396z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":657,"id":6,"name":"user","prevSize":32,"code":59827},"setIdx":0,"setId":2,"iconIdx":175},{"icon":{"paths":["M206.090 672c35.346 0 64-28.655 64-64s-28.654-64-64-64c-35.346 0-64 28.655-64 64s28.654 64 64 64z","M334.090 576c-17.673 0-32 14.327-32 32s14.327 32 32 32h543.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-543.999z","M206.090 480c35.346 0 64-28.655 64-64 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.345 28.654 64 64 64z","M334.090 384c-17.673 0-32 14.327-32 32s14.327 32 32 32h543.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-543.999z","M206.090 288c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M334.090 192c-17.673 0-32 14.327-32 32s14.327 32 32 32h543.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-543.999z","M206.090 864c35.346 0 64-28.655 64-64s-28.654-64-64-64c-35.346 0-64 28.655-64 64s28.654 64 64 64z","M334.090 768c-17.673 0-32 14.327-32 32s14.327 32 32 32h543.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-543.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["view-condensed"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":658,"id":5,"name":"view-condensed","prevSize":32,"code":59828},"setIdx":0,"setId":2,"iconIdx":176},{"icon":{"paths":["M288 192c0-17.673 14.327-32 32-32h544c17.673 0 32 14.327 32 32s-14.327 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 288c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 304c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M288 464c0-17.673 14.327-32 32-32h544c17.673 0 32 14.327 32 32s-14.327 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 560c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 576c35.346 0 64-28.655 64-64s-28.654-64-64-64c-35.346 0-64 28.655-64 64s28.654 64 64 64z","M288 736c0-17.673 14.327-32 32-32h544c17.673 0 32 14.327 32 32s-14.327 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 832c0-17.673 14.327-32 32-32h448c17.673 0 32 14.327 32 32s-14.327 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 848c35.346 0 64-28.655 64-64s-28.654-64-64-64c-35.346 0-64 28.655-64 64s28.654 64 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["view-extended"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":659,"id":4,"name":"view-extended","prevSize":32,"code":59829},"setIdx":0,"setId":2,"iconIdx":177},{"icon":{"paths":["M194.254 320c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M322.254 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h543.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-543.999z","M194.254 576c35.346 0 64-28.655 64-64s-28.654-64-64-64c-35.346 0-64 28.655-64 64s28.654 64 64 64z","M322.254 480c-17.673 0-32 14.327-32 32s14.327 32 32 32h543.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-543.999z","M194.254 832c35.346 0 64-28.655 64-64s-28.654-64-64-64c-35.346 0-64 28.655-64 64s28.654 64 64 64z","M322.254 736c-17.673 0-32 14.327-32 32s14.327 32 32 32h543.999c17.673 0 32-14.327 32-32s-14.327-32-32-32h-543.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["view-medium"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":660,"id":3,"name":"view-medium","prevSize":32,"code":59830},"setIdx":0,"setId":2,"iconIdx":178},{"icon":{"paths":["M512 352.004c17.673 0 32 14.327 32 32v224c0 17.673-14.327 32-32 32s-32-14.327-32-32v-224c0-17.673 14.327-32 32-32z","M512 672.004c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z","M567.1 158.348c-24.772-41.922-85.427-41.922-110.199 0l-359.921 609.098c-25.21 42.662 5.544 96.559 55.099 96.559h719.845c49.553 0 80.307-53.897 55.095-96.559l-359.919-609.098zM512 190.906l359.923 609.098h-719.845l359.922-609.098z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["warning"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":661,"id":2,"name":"warning","prevSize":32,"code":59831},"setIdx":0,"setId":2,"iconIdx":179},{"icon":{"paths":["M367.701 399.123l14.031 0.627-0.541-16.725-152.878 1.576c49.916-116.49 165.641-198.132 300.366-198.132 99.644 0 188.894 44.66 248.811 115.065-3.712 0.171-7.492 0.492-11.524 1.068 0 0-63.765 14.898-13.308 118.709 0 0 31.087 84.541-19.302 198.773l-28.407 73.306-99.098-264.725c0 0-5.982-28.15 23.607-28.15l23.761-1.475 0.341-16.034h-228.368v14.456c0 0 39.828-0.288 56.153 27.151l40.759 103.78-73.015 174.4-108.608-272.397c0 0-3.39-31.781 27.22-31.273z","M855.3 513.169c0-33.865-5.235-66.645-14.729-97.356l-145.946 378.756c96.132-56.883 160.674-161.574 160.674-281.399z","M425.173 823.010c32.491 10.914 67.268 16.777 103.492 16.777 37.845 0 74.099-6.404 107.895-18.253l-99.712-258.505-111.676 259.981z","M201.975 513.148c0-32.081 4.712-63.066 13.339-92.335l1 2.051 152.657 375.229c-99.607-55.881-166.995-162.539-166.995-284.945z","M144.401 512.094c0-211.776 172.317-384.094 384.077-384.094 211.725 0 383.923 172.318 383.923 384.094 0 211.772-172.203 384.009-383.923 384.009-211.759 0-384.077-172.233-384.077-384.009zM528.478 879.253c202.385 0 367.108-164.74 367.108-367.177 0-202.487-164.723-367.145-367.108-367.161-202.49 0-367.214 164.673-367.214 367.161 0 202.436 164.724 367.177 367.214 367.177z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1067,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wordpress-monochromatic"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":662,"id":1,"name":"wordpress-monochromatic","prevSize":32,"code":59832},"setIdx":0,"setId":2,"iconIdx":180},{"icon":{"paths":["M384 149.138c0-11.766 9.551-21.305 21.333-21.305h85.333c11.78 0 21.333 9.539 21.333 21.305v106.526h-106.667c-11.782 0-21.333-9.539-21.333-21.305v-85.221z","M512 255.665h106.667c11.78 0 21.333 9.539 21.333 21.305v85.221c0 11.767-9.553 21.305-21.333 21.305h-106.667v-127.831z","M384 404.801c0-11.767 9.551-21.305 21.333-21.305h106.667v127.83h-106.667c-11.782 0-21.333-9.536-21.333-21.303v-85.222z","M512 511.326h106.667c11.78 0 21.333 9.54 21.333 21.308v106.526h-128v-127.834z","M426.667 639.159c-23.564 0-42.667 19.076-42.667 42.607v170.445c0 23.531 19.103 42.611 42.667 42.611h170.667c23.565 0 42.667-19.081 42.667-42.611v-213.052h-213.333zM490.667 724.378c-11.78 0-21.333 9.54-21.333 21.308v42.607c0 11.767 9.553 21.308 21.333 21.308h42.667c11.78 0 21.333-9.54 21.333-21.308v-42.607c0-11.767-9.553-21.308-21.333-21.308h-42.667z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zip"],"colorPermutations":{"108114122115816216812282312341243190812456992125519219214522416519902101":[{"f":1},{"f":1},{"f":1},{"f":1},{"f":1}]}},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":663,"id":0,"name":"zip","prevSize":32,"code":59833},"setIdx":0,"setId":2,"iconIdx":181}],"height":1024,"metadata":{"name":"custom"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"custom","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"noie8":true,"ie7":false,"autoHost":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16,"quickUsageToken":{"RC":"OGIzMzFiYmJjOThlMGY0OTQwMDc5MzgzOWRkY2MxZGQjMSMxNTk3MDkyNDU2IyMj"}}} \ No newline at end of file +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M819.2 204.8v614.4h-614.4v-614.4h614.4zM204.8 128c-42.415 0-76.8 34.385-76.8 76.8v614.4c0 42.416 34.385 76.8 76.8 76.8h614.4c42.416 0 76.8-34.384 76.8-76.8v-614.4c0-42.415-34.384-76.8-76.8-76.8h-614.4z"],"attrs":[{"fill":"rgb(203, 206, 209)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["checkbox-unchecked"]},"attrs":[{"fill":"rgb(203, 206, 209)"}],"properties":{"order":242,"id":212,"name":"checkbox-unchecked","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M204.8 128h614.4c42.416 0 76.8 34.385 76.8 76.8v614.4c0 42.416-34.384 76.8-76.8 76.8h-614.4c-42.415 0-76.8-34.384-76.8-76.8v-614.4c0-42.415 34.385-76.8 76.8-76.8zM769.062 336.88c9.322-9.424 9.238-24.619-0.182-33.941-9.424-9.322-24.621-9.241-33.942 0.182l-339.085 342.745-106.782-108.051c-9.317-9.43-24.513-9.52-33.94-0.202s-9.518 24.512-0.201 33.939l123.842 125.318c4.509 4.56 10.653 7.126 17.066 7.13s12.557-2.563 17.069-7.12l356.157-360z"],"attrs":[{"fill":"rgb(29, 116, 245)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["checkbox-checked"]},"attrs":[{"fill":"rgb(29, 116, 245)"}],"properties":{"order":243,"id":211,"name":"checkbox-checked","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M862.454 324.045c-35.2-60.31-82.944-108.057-143.248-143.253-60.314-35.198-126.16-52.792-197.581-52.792-71.414 0-137.28 17.6-197.581 52.792-60.31 35.194-108.053 82.943-143.253 143.253-35.194 60.307-52.792 126.166-52.792 197.571 0 85.77 25.024 162.899 75.086 231.405 50.056 68.509 114.721 115.917 193.989 142.224 9.229 1.712 16.058 0.509 20.499-3.584 4.442-4.096 6.662-9.226 6.662-15.37 0-1.024-0.090-10.246-0.259-27.674-0.176-17.43-0.259-32.637-0.259-45.61l-11.789 2.038c-7.517 1.379-16.998 1.962-28.445 1.795-11.443-0.16-23.322-1.357-35.619-3.587-12.304-2.211-23.747-7.334-34.342-15.366-10.588-8.029-18.104-18.538-22.547-31.514l-5.125-11.795c-3.416-7.853-8.795-16.573-16.142-26.134-7.348-9.571-14.778-16.058-22.294-19.475l-3.588-2.57c-2.391-1.706-4.61-3.766-6.662-6.154-2.050-2.39-3.585-4.781-4.61-7.174-1.027-2.397-0.176-4.365 2.562-5.907 2.738-1.539 7.685-2.288 14.864-2.288l10.247 1.53c6.834 1.37 15.287 5.462 25.371 12.298 10.078 6.835 18.363 15.715 24.856 26.646 7.863 14.013 17.335 24.688 28.445 32.038 11.101 7.347 22.294 11.014 33.568 11.014s21.011-0.854 29.216-2.557c8.192-1.709 15.882-4.275 23.062-7.69 3.075-22.902 11.446-40.499 25.11-52.797-19.475-2.045-36.982-5.13-52.534-9.226-15.542-4.106-31.603-10.765-48.173-20-16.579-9.222-30.331-20.672-41.262-34.333-10.932-13.67-19.905-31.613-26.904-53.818-7.003-22.214-10.505-47.837-10.505-76.88 0-41.35 13.5-76.541 40.493-105.584-12.645-31.088-11.451-65.939 3.585-104.55 9.908-3.079 24.606-0.768 44.078 6.916 19.478 7.689 33.738 14.275 42.797 19.736 9.059 5.46 16.317 10.087 21.786 13.837 31.782-8.88 64.582-13.322 98.406-13.322s66.63 4.442 98.416 13.322l19.475-12.295c13.318-8.204 29.046-15.722 47.142-22.556 18.112-6.83 31.958-8.712 41.53-5.633 15.37 38.612 16.739 73.46 4.093 104.548 26.992 29.046 40.496 64.243 40.496 105.587 0 29.043-3.514 54.746-10.506 77.13-7.002 22.387-16.051 40.314-27.152 53.818-11.114 13.501-24.957 24.864-41.526 34.083-16.573 9.226-32.637 15.888-48.179 19.99-15.552 4.102-33.059 7.187-52.534 9.238 17.763 15.37 26.646 39.632 26.646 72.774v108.134c0 6.141 2.134 11.27 6.41 15.37 4.272 4.090 11.018 5.296 20.243 3.581 79.28-26.304 143.946-73.712 194-142.224 50.048-68.502 75.082-145.632 75.082-231.405-0.019-71.395-17.626-137.248-52.803-197.555z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["github-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":152,"id":210,"name":"github-monochromatic","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M133.618 423.61h215.092l-92.537-284.607c-4.74-14.67-25.504-14.67-30.244 0l-92.311 284.607zM86.899 567.171l46.72-143.546h737.133l46.72 143.546c4.288 13.088-0.451 27.533-11.51 35.434l-403.776 293.408-403.776-293.408c-11.060-7.901-15.799-22.346-11.511-35.434zM655.661 423.61h215.091l-92.31-284.607c-4.739-14.67-25.504-14.67-30.243 0l-92.538 284.607z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gitlab-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":153,"id":209,"name":"gitlab-monochromatic","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M658.794 338.154c-39.798-38.052-90.416-57.426-146.794-57.426-100.016 0-184.669 67.548-214.865 158.313l-0.002-0.003c-7.679 23.040-12.042 47.648-12.042 72.957s4.364 49.92 12.044 72.96l0 0.003c30.196 90.765 114.849 158.314 214.865 158.314 51.664 0 95.651-13.613 130.035-36.653v-0.016c40.669-27.229 67.725-67.898 76.627-115.898h-206.662v-148.538h361.658c4.538 25.136 6.982 51.315 6.982 78.547 0 116.944-41.891 215.389-114.502 282.24v0.013c-63.533 58.646-150.458 93.030-254.138 93.030-150.109 0-279.971-86.048-343.156-211.549l-0-0.003c-26.007-51.84-40.844-110.49-40.844-172.451 0-61.965 14.836-120.611 40.844-172.451h0.004c63.187-125.495 193.047-211.542 343.153-211.542 103.504 0 190.429 38.051 256.931 100.014l-110.138 110.139z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":154,"id":208,"name":"google-monochromatic","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M840.541 128c31.318 0 56.813 24.79 56.813 55.383v657.212c0 30.592-25.494 55.427-56.813 55.427h-654.546c-31.254 0-56.642-24.835-56.642-55.427v-657.212c0-30.593 25.387-55.383 56.642-55.383h654.546zM300.196 233.75c-36.588 0-66.093 29.59-66.093 66.050 0 36.482 29.505 66.072 66.093 66.072 36.437 0 66.005-29.59 66.005-66.072 0-36.46-29.568-66.050-66.005-66.050zM243.148 782.461h114.029v-366.515h-114.029v366.515zM537.814 415.923h-109.187v366.515h113.773v-181.274c0-47.83 9.046-94.147 68.333-94.147 58.454 0 59.181 54.678 59.181 97.174v178.246h113.901v-201.008c0-98.714-21.312-174.598-136.666-174.598-55.402 0-92.566 30.381-107.757 59.203h-1.578v-50.112z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["linkedin-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":155,"id":207,"name":"linkedin-monochromatic","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M86.686 85.336l730.792 774.088c0 0 24.899 17.558 43.936-2.928 19.040-20.486 4.394-40.973 4.394-40.973l-779.122-730.187zM318.080 158.503l556.516 599.955c0 0 24.896 17.558 43.936-2.928 19.037-20.486 4.394-40.973 4.394-40.973l-604.845-556.054zM712.035 915.030l-556.517-599.955 604.843 556.054c0 0 14.646 20.486-4.39 40.973-19.040 20.486-43.936 2.928-43.936 2.928zM513.693 221.419l388.803 419.15c0 0 17.395 12.269 30.694-2.042 13.302-14.314 3.069-28.627 3.069-28.627l-422.566-388.482zM597.878 915.677l-388.805-419.152 422.568 388.48c0 0 10.234 14.314-3.069 28.627-13.302 14.31-30.694 2.045-30.694 2.045zM713.498 312.143l176.221 190.551c0 0 8.605 5.747 15.184-0.96 6.579-6.704 1.517-13.411 1.517-13.411l-192.922-176.18zM482.582 880.23l-176.219-190.55 192.923 176.179c0 0 5.059 6.707-1.52 13.414-6.579 6.704-15.184 0.957-15.184 0.957z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["meteor-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":156,"id":206,"name":"meteor-monochromatic","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M378.861 853.331c317.456 0 491.091-262.662 491.091-490.442 0-7.462 0-14.89-0.506-22.282 33.779-24.401 62.938-54.614 86.112-89.224-31.501 13.94-64.918 23.082-99.136 27.12 36.032-21.542 62.998-55.424 75.882-95.34-33.878 20.078-70.944 34.228-109.597 41.839-53.501-56.814-138.515-70.72-207.37-33.919-68.851 36.801-104.426 115.155-86.768 191.127-138.774-6.947-268.074-72.409-355.715-180.093-45.811 78.76-22.412 179.517 53.436 230.1-27.467-0.813-54.335-8.214-78.337-21.574 0 0.704 0 1.443 0 2.182 0.022 82.051 57.937 152.723 138.47 168.97-25.41 6.922-52.071 7.933-77.933 2.957 22.611 70.218 87.409 118.32 161.25 119.706-61.116 47.968-136.616 74.010-214.35 73.933-13.732-0.026-27.452-0.858-41.087-2.486 78.931 50.586 170.772 77.418 264.557 77.293z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["twitter-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":157,"id":205,"name":"twitter-monochromatic","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M512 928c-14.218 0-28.275-0.714-42.144-2.112-16.694-1.68-30.557-12.528-36.688-27.395l-40.538-98.304-98.162 40.838c-14.837 6.173-32.3 4.048-45.292-6.554-21.838-17.818-41.831-37.811-59.65-59.648-10.601-12.992-12.726-30.454-6.553-45.293l40.839-98.16-98.307-40.541c-14.864-6.131-25.714-19.994-27.395-36.688-1.396-13.869-2.111-27.926-2.111-42.144 0-14.214 0.714-28.275 2.11-42.141 1.681-16.694 12.531-30.557 27.395-36.688l98.308-40.541-40.84-98.163c-6.173-14.837-4.047-32.3 6.553-45.292 17.818-21.838 37.81-41.83 59.648-59.648 12.992-10.6 30.455-12.726 45.292-6.553l98.165 40.84 40.541-98.309c6.128-14.865 19.994-25.714 36.688-27.395 13.866-1.396 27.926-2.11 42.141-2.11s28.275 0.714 42.141 2.11c16.694 1.681 30.56 12.531 36.688 27.395l40.541 98.309 98.163-40.84c14.838-6.173 32.301-4.047 45.293 6.553 21.837 17.818 41.83 37.81 59.648 59.648 10.602 12.992 12.726 30.455 6.554 45.292l-40.842 98.163 98.31 40.541c14.864 6.131 25.712 19.994 27.392 36.688 1.398 13.866 2.112 27.926 2.112 42.141 0 14.218-0.714 28.275-2.112 42.144-1.68 16.694-12.528 30.557-27.395 36.688l-98.307 40.541 40.842 98.16c6.173 14.838 4.045 32.301-6.554 45.293-17.821 21.837-37.811 41.83-59.651 59.648-12.992 10.602-30.454 12.726-45.29 6.554l-98.163-40.838-40.538 98.304c-6.131 14.867-19.994 25.715-36.688 27.395-13.869 1.398-27.93 2.112-42.144 2.112zM444.451 757.984l43.386 105.2c7.981 0.541 16.038 0.816 24.163 0.816s16.182-0.275 24.163-0.816l43.382-105.2c9.456-22.925 35.731-33.808 58.627-24.285l105.056 43.709c12.157-10.602 23.578-22.022 34.179-34.179l-43.709-105.056c-9.526-22.893 1.36-49.171 24.282-58.624l105.203-43.386c0.541-7.978 0.816-16.038 0.816-24.163s-0.275-16.182-0.816-24.16l-105.203-43.386c-22.922-9.453-33.808-35.731-24.282-58.624l43.709-105.060c-10.602-12.156-22.022-23.577-34.176-34.177l-105.059 43.708c-22.896 9.525-49.171-1.359-58.627-24.283l-43.382-105.204c-7.981-0.54-16.038-0.815-24.163-0.815s-16.182 0.275-24.163 0.815l-43.386 105.204c-9.453 22.924-35.728 33.808-58.624 24.283l-105.058-43.708c-12.156 10.6-23.577 22.021-34.177 34.177l43.708 105.059c9.525 22.893-1.359 49.171-24.284 58.624l-105.203 43.386c-0.54 7.978-0.815 16.035-0.815 24.16 0 8.128 0.275 16.186 0.815 24.163l105.203 43.386c22.924 9.453 33.809 35.731 24.284 58.624l-43.708 105.056c10.601 12.157 22.022 23.578 34.178 34.179l105.056-43.709c22.896-9.523 49.171 1.36 58.624 24.285zM416 512c0-53.021 42.979-96 96-96s96 42.979 96 96c0 53.021-42.979 96-96 96s-96-42.979-96-96zM512 352c-88.365 0-160 71.635-160 160s71.635 160 160 160c88.365 0 160-71.635 160-160s-71.635-160-160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["administration"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":159,"id":203,"name":"administration","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M878.739 567.622c-41.853-41.136-161.235-29.824-220.925-22.282-59.005-35.997-98.458-85.706-126.243-158.73 13.379-55.194 34.646-139.185 18.525-191.98-14.41-89.82-129.674-80.907-146.141-20.227-15.094 55.195-1.373 131.988 24.013 230.034-34.304 81.936-85.421 191.984-121.441 255.062-68.611 35.312-161.235 89.821-174.957 158.384-11.321 54.166 89.194 189.238 261.063-106.96 76.845-25.37 160.547-56.566 234.65-68.909 64.835 34.97 140.65 58.282 191.421 58.282 87.478 0 96.054-96.678 60.035-132.675zM199.152 834.342c17.496-46.97 84.048-101.133 104.288-119.99-65.18 103.875-104.288 122.39-104.288 119.99zM479.082 180.918c25.386 0 22.986 110.047 6.176 139.873-15.094-47.653-14.752-139.873-6.176-139.873zM395.379 649.216c33.274-57.936 61.747-126.845 84.733-187.526 28.474 51.766 64.838 93.251 103.258 121.706-71.354 14.739-133.446 44.909-187.99 65.821zM846.835 632.074c0 0-17.152 20.57-127.958-26.739 120.413-8.912 140.307 18.512 127.958 26.739z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["adobe-reader-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":161,"id":201,"name":"adobe-reader-monochromatic","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M448 188.865c0 33.615 27.251 60.865 60.864 60.865 33.616 0 60.867-27.25 60.867-60.865s-27.251-60.865-60.867-60.865c-33.613 0-60.864 27.25-60.864 60.865zM384 188.865c0 59.026 40.957 108.485 96 121.512v77.745c-44.314 11.69-78.986 47.13-89.578 91.878h-80.045c-13.027-55.043-62.486-96-121.512-96-68.961 0-124.865 55.904-124.865 124.864 0 68.963 55.904 124.867 124.865 124.867 56.762 0 104.678-37.875 119.854-89.731h83.361c12.227 41.773 45.696 74.47 87.92 85.61v77.744c-55.043 13.027-96 62.486-96 121.51 0 68.963 55.904 124.867 124.864 124.867 68.963 0 124.867-55.904 124.867-124.867 0-56.762-37.875-104.675-89.731-119.853v-79.437c42.163-11.171 75.578-43.846 87.789-85.574h77.222c15.178 51.856 63.091 89.731 119.853 89.731 68.963 0 124.867-55.904 124.867-124.867 0-68.96-55.904-124.864-124.867-124.864-59.024 0-108.483 40.957-121.51 96h-73.907c-10.579-44.707-45.194-80.122-89.446-91.843v-79.438c51.856-15.176 89.731-63.092 89.731-119.854 0-68.961-55.904-124.865-124.867-124.865-68.96 0-124.864 55.904-124.864 124.865zM828.864 569.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867zM188.865 569.731c-33.615 0-60.865-27.251-60.865-60.867 0-33.613 27.25-60.864 60.865-60.864s60.865 27.251 60.865 60.864c0 33.616-27.25 60.867-60.865 60.867zM451.069 508.864c0 33.616 27.251 60.867 60.867 60.867 33.613 0 60.864-27.251 60.864-60.867 0-33.613-27.251-60.864-60.864-60.864-33.616 0-60.867 27.251-60.867 60.864zM508.864 889.731c-33.613 0-60.864-27.251-60.864-60.867 0-33.613 27.251-60.864 60.864-60.864 33.616 0 60.867 27.251 60.867 60.864 0 33.616-27.251 60.867-60.867 60.867z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["all-contacts-in-channels"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":162,"id":200,"name":"all-contacts-in-channels","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M861.437 160c17.67 0 32 14.327 32 32s-14.33 32-32 32h-384c-17.674 0-32-14.327-32-32s14.326-32 32-32h384zM334.717 442.397c-24.962 0-45.197-20.237-45.197-45.2 0-24.96 20.236-45.197 45.197-45.197 24.963 0 45.2 20.237 45.2 45.197 0 24.963-20.237 45.2-45.2 45.2zM334.717 506.397c-60.308 0-109.197-48.89-109.197-109.2 0-60.307 48.89-109.197 109.197-109.197 60.31 0 109.2 48.89 109.2 109.197 0 60.31-48.89 109.2-109.2 109.2zM456.278 535.504c-18.288-4.899-37.504-5.2-55.939-0.88l-45.005 10.547c-13.194 3.091-26.947 2.877-40.036-0.63l-31.676-8.483c-19.669-5.27-40.384-5.562-60.154-0.928-55.68 13.050-95.468 62.781-95.468 120.179v34.752c0 42.906 34.783 77.686 77.689 77.686h258.057c42.906 0 77.69-34.781 77.69-77.686v-43.587c0-52-34.928-97.514-85.158-110.97zM414.944 596.934c8.166-1.914 16.675-1.779 24.774 0.39 22.246 5.958 37.718 26.118 37.718 49.149v43.587c0 7.558-6.131 13.686-13.69 13.686h-258.057c-7.56 0-13.689-6.128-13.689-13.686v-34.752c0-27.469 19.123-51.552 46.072-57.869 9.556-2.24 19.564-2.086 28.99 0.438l31.676 8.483c23.277 6.237 47.738 6.621 71.2 1.12l45.005-10.547zM893.437 512c0-17.674-14.33-32-32-32h-224c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.67 0 32-14.326 32-32zM861.437 640c17.67 0 32 14.326 32 32s-14.33 32-32 32h-192c-17.674 0-32-14.326-32-32s14.326-32 32-32h192zM893.437 352c0-17.674-14.33-32-32-32h-288c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.67 0 32-14.326 32-32zM861.437 800c17.67 0 32 14.326 32 32s-14.33 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32h256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["all-contacts-in-queue"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":163,"id":199,"name":"all-contacts-in-queue","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M523.571 295.385c33.133 0 74.669-22.133 99.402-51.645 22.4-26.745 38.733-64.095 38.733-101.445 0-5.072-0.467-10.144-1.402-14.294-36.864 1.383-81.2 24.439-107.798 55.334-21.002 23.517-40.134 60.406-40.134 98.218 0 5.533 0.934 11.067 1.402 12.911 2.333 0.461 6.067 0.922 9.798 0.922zM406.906 853.334c45.267 0 65.334-29.974 121.798-29.974 57.402 0 70 29.050 120.4 29.050 49.469 0 82.602-45.187 113.869-89.456 34.998-50.72 49.466-100.522 50.4-102.829-3.267-0.922-98-39.194-98-146.634 0-93.146 74.666-135.107 78.867-138.333-49.469-70.090-124.602-71.935-145.136-71.935-55.533 0-100.8 33.199-129.264 33.199-30.8 0-71.402-31.354-119.469-31.354-91.466 0-184.333 74.701-184.333 215.802 0 87.61 34.533 180.294 77 240.24 36.402 50.723 68.133 92.224 113.867 92.224z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["apple-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":236,"id":197,"name":"apple-monochromatic","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M498.694 141.561l-298.666 136.533c-11.39 5.207-18.696 16.58-18.696 29.103v386.844c0 11.818 6.513 22.675 16.941 28.237l298.667 159.286c9.411 5.021 20.707 5.021 30.118 0l298.666-159.286c10.429-5.562 16.941-16.419 16.941-28.237v-386.844c0-12.524-7.306-23.896-18.694-29.103l-298.666-136.533c-8.451-3.862-18.16-3.862-26.611 0zM245.333 357.011l234.667 107.277v335.709l-234.667-125.155v-317.83zM544 799.997l234.666-125.155v-317.83l-234.666 107.277v335.709zM512 408.544l-221.7-101.347 221.7-101.348 221.699 101.348-221.699 101.347z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["apps"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":166,"id":196,"name":"apps","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M374.627 297.372c-12.496-12.497-32.758-12.497-45.254 0l-192 192c-12.497 12.496-12.497 32.758 0 45.254l192 192c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-137.372-137.373h578.745v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-160c0-17.674-14.326-32-32-32h-610.745l137.372-137.373c12.496-12.496 12.496-32.758 0-45.255z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-back"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":167,"id":195,"name":"arrow-back","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M551.392 242.502c0.189-17.672 14.669-31.845 32.339-31.656 17.674 0.189 31.846 14.668 31.658 32.34l-1.318 123.489 193.44-193.439c12.496-12.497 32.755-12.497 45.254 0 12.496 12.497 12.496 32.758 0 45.255l-193.44 193.439 123.488-1.318c17.674-0.189 32.154 13.984 32.339 31.654 0.189 17.674-13.984 32.154-31.654 32.342l-201.92 2.154c-8.605 0.093-16.886-3.283-22.97-9.37-6.086-6.083-9.462-14.365-9.373-22.97l2.157-201.92zM475.981 782.147c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.342l1.318-123.488-193.438 193.44c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l193.438-193.44-123.488 1.318c-17.672 0.189-32.151-13.984-32.34-31.654-0.189-17.674 13.984-32.154 31.656-32.342l201.922-2.154c8.605-0.093 16.883 3.283 22.966 9.37 6.086 6.083 9.462 14.365 9.373 22.97l-2.157 201.92z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-collapse"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":168,"id":194,"name":"arrow-collapse","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M576 672c-17.674 0-32 14.326-32 32s14.326 32 32 32h224c17.674 0 32-14.326 32-32v-208c0-17.674-14.326-32-32-32s-32 14.326-32 32v130.746l-233.373-233.373c-12.496-12.496-32.758-12.496-45.254 0l-73.373 73.373-169.372-169.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.759 0 45.255l192 192c12.496 12.496 32.758 12.496 45.254 0l73.373-73.373 210.746 210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-decrease"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":169,"id":193,"name":"arrow-decrease","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M329.373 550.627c-12.497-12.496-12.497-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373v-418.746c0-17.673 14.326-32 32-32s32 14.327 32 32v418.746l105.373-105.373c12.496-12.496 32.758-12.496 45.254 0s12.496 32.758 0 45.254l-160 160c-12.496 12.496-32.758 12.496-45.254 0l-160-160zM112 864c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-512c0-17.674-14.326-32-32-32h-96c-17.674 0-32 14.326-32 32s14.326 32 32 32h64v448h-704v-448h64c17.673 0 32-14.326 32-32s-14.327-32-32-32h-96c-17.673 0-32 14.326-32 32v512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-box"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":170,"id":192,"name":"arrow-down-box","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M865.139 512c0-194.404-157.802-352-352.464-352-194.66 0-352.464 157.596-352.464 352s157.804 352 352.464 352c194.662 0 352.464-157.597 352.464-352zM929.226 512c0 229.75-186.496 416-416.55 416-230.053 0-416.548-186.25-416.548-416s186.495-416 416.548-416c230.054 0 416.55 186.25 416.55 416zM695.178 571.37l-160.182 155.715c-12.438 12.093-32.259 12.093-44.701 0l-160.179-155.715c-12.682-12.33-12.955-32.589-0.611-45.251 12.342-12.666 32.63-12.938 45.309-0.611l105.789 102.842 0.003-276.349c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v276.349l105.789-102.842c12.682-12.326 32.966-12.054 45.309 0.611 12.346 12.662 12.070 32.922-0.608 45.251z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-circle"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":171,"id":191,"name":"arrow-down-circle","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M726.88 526.064c12.355 12.637 12.128 32.896-0.509 45.254l-191.968 187.715c-12.438 12.163-32.31 12.163-44.746 0l-191.97-187.715c-12.636-12.358-12.863-32.618-0.507-45.254 12.356-12.634 32.615-12.861 45.252-0.506l137.597 134.55v-372.109c0-17.673 14.33-32 32-32 17.674 0 32 14.327 32 32v372.109l137.6-134.55c12.634-12.355 32.896-12.128 45.251 0.506z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":172,"id":190,"name":"arrow-down","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M859.978 398.15c-0.189 17.67-14.666 31.843-32.339 31.654-17.67-0.189-31.846-14.666-31.658-32.339l1.318-123.488-193.437 193.437c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.755 0-45.254l193.437-193.437-123.488 1.318c-17.67 0.189-32.15-13.984-32.339-31.656s13.984-32.151 31.658-32.34l201.92-2.156c8.605-0.092 16.883 3.286 22.97 9.371 6.083 6.085 9.462 14.364 9.37 22.969l-2.157 201.922zM167.394 626.522c0.189-17.674 14.668-31.846 32.34-31.658s31.845 14.669 31.657 32.339l-1.319 123.488 193.438-193.437c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-193.438 193.437 123.489-1.318c17.67-0.189 32.15 13.984 32.339 31.658 0.189 17.67-13.984 32.15-31.658 32.339l-201.92 2.157c-8.605 0.093-16.884-3.286-22.969-9.37-6.085-6.086-9.463-14.365-9.371-22.97l2.156-201.92z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-expand"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":173,"id":189,"name":"arrow-expand","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M576 352c-17.674 0-32-14.326-32-32s14.326-32 32-32h224c17.674 0 32 14.327 32 32v208c0 17.674-14.326 32-32 32s-32-14.326-32-32v-130.746l-233.373 233.373c-12.496 12.496-32.758 12.496-45.254 0l-73.373-73.373-169.372 169.373c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l192-192c12.496-12.496 32.758-12.496 45.254 0l73.373 73.373 210.746-210.746h-146.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-increase"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":174,"id":188,"name":"arrow-increase","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M297.766 105.372c12.513-12.497 32.801-12.497 45.316 0 12.512 12.497 12.512 32.758 0 45.255l-105.513 105.372h611.551c17.699 0 32.045 14.327 32.045 32v112c0 17.674-14.346 32-32.045 32-17.696 0-32.042-14.326-32.042-32v-80h-579.51l105.513 105.373c12.512 12.496 12.512 32.758 0 45.254-12.515 12.496-32.803 12.496-45.316 0l-160.212-160c-12.513-12.497-12.513-32.758 0-45.255l160.212-160zM711.568 918.627c-12.515 12.496-32.803 12.496-45.315 0-12.515-12.496-12.515-32.758 0-45.254l105.51-105.373h-611.552c-17.696 0-32.042-14.326-32.042-32v-112c0-17.674 14.346-32 32.042-32s32.042 14.326 32.042 32v80h579.509l-105.51-105.373c-12.515-12.496-12.515-32.758 0-45.254 12.512-12.496 32.8-12.496 45.315 0l160.211 160c12.512 12.496 12.512 32.758 0 45.254l-160.211 160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-looping"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":175,"id":187,"name":"arrow-looping","prevSize":32,"code":59672},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M374.627 769.296c-12.496 12.496-32.758 12.496-45.254 0l-192-192c-12.497-12.496-12.497-32.758 0-45.254l192-192c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-137.372 137.373h578.745v-192h-192c-17.674 0-32-14.328-32-32.001s14.326-32 32-32h224c17.674 0 32 14.327 32 32v256.001c0 17.674-14.326 32-32 32h-610.745l137.372 137.373c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-return"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":176,"id":186,"name":"arrow-return","prevSize":32,"code":59673},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M694.627 473.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373v418.746c0 17.674-14.326 32-32 32s-32-14.326-32-32v-418.746l-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.497-32.758 0-45.254l160-160c12.496-12.497 32.758-12.497 45.254 0l160 160zM912 160c0-17.673-14.326-32-32-32h-768c-17.673 0-32 14.327-32 32v512c0 17.674 14.327 32 32 32h96c17.673 0 32-14.326 32-32s-14.327-32-32-32h-64v-448h704v448h-64c-17.674 0-32 14.326-32 32s14.326 32 32 32h96c17.674 0 32-14.326 32-32v-512z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-box"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":177,"id":185,"name":"arrow-up-box","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M297.181 498.090c-12.356-12.634-12.129-32.896 0.507-45.251l191.97-187.717c12.435-12.161 32.307-12.161 44.746 0l191.968 187.717c12.637 12.355 12.864 32.618 0.509 45.251-12.355 12.637-32.618 12.864-45.251 0.509l-137.6-134.55v372.109c0 17.674-14.326 32-32 32-17.67 0-32-14.326-32-32v-372.109l-137.597 134.55c-12.637 12.355-32.895 12.128-45.251-0.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":178,"id":184,"name":"arrow-up","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M482.323 229.047c19.77-23.932 49.891-36.827 80.854-34.615l143.933 10.281c42.051 3.004 77.222 33.091 86.704 74.17l30.349 131.517c6.643 28.787-0.336 59.027-18.925 81.99l-252.368 311.744c-11.12 13.738-31.267 15.859-45.005 4.739s-15.856-31.27-4.736-45.008l252.365-311.744c6.195-7.654 8.522-17.734 6.307-27.331l-30.349-131.517c-3.162-13.693-14.883-23.722-28.902-24.723l-143.933-10.281c-10.323-0.737-20.362 3.561-26.95 11.538l-266 322c-5.438 6.582-8.020 15.066-7.17 23.562l7.581 75.814c1.636 16.358 15.401 28.816 31.841 28.816h104.305c9.44 0 18.397-4.166 24.477-11.386l227.594-270.269-10.048-70.346h-69.258l-230.406 276.486c-11.312 13.578-31.492 15.411-45.068 4.096-13.577-11.312-15.411-31.491-4.097-45.069l230.404-276.483c12.16-14.593 30.173-23.029 49.168-23.029h69.258c31.85 0 58.851 23.42 63.357 54.949l10.048 70.346c2.579 18.045-2.659 36.333-14.4 50.275l-227.594 270.266c-18.243 21.661-45.114 34.163-73.434 34.163h-104.305c-49.32 0-90.616-37.373-95.524-86.448l-7.581-75.811c-2.549-25.491 5.196-50.944 21.511-70.694l265.998-321.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["attach"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":179,"id":183,"name":"attach","prevSize":32,"code":59676},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M866.128 153.127c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.245c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.245c12.496-12.497 12.496-32.758 0-45.255zM674.643 480.358l55.92-55.923c16.259 79.565 14.515 161.866-5.229 240.842l-11.622 46.49c-4.288 17.146-21.661 27.571-38.806 23.283-17.146-4.285-27.568-21.661-23.283-38.806l11.622-46.486c13.875-55.507 17.677-112.874 11.398-169.398zM817.162 385.923l-11.312-36.771 51.203-51.206 21.28 69.155c33.344 108.368 31.994 224.445-3.859 332.010l-33.45 100.342c-5.587 16.765-23.709 25.827-40.477 20.24-16.765-5.59-25.827-23.712-20.237-40.48l33.446-100.339c31.635-94.912 32.826-197.334 3.405-292.95zM490.666 664.333l64-64v210.346c0 23.562-19.101 42.666-42.666 42.666h-85.334c-35.459 0-68.394-10.816-95.683-29.325l46.611-46.611c14.701 7.629 31.395 11.936 49.072 11.936h64v-125.011zM128 682.678c0 19.738 13.403 36.346 31.604 41.216l62.552-62.55h-30.156v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v158.155l64-64v-115.488c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["audio-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":180,"id":182,"name":"audio-disabled","prevSize":32,"code":59677},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M310.99 661.344h-118.99v-298.666h118.99l12.367-48.049c11.843-46.020 53.696-79.953 103.309-79.953h64v554.667h-64c-49.613 0-91.466-33.933-103.309-79.952l-12.367-48.048zM170.667 725.344h90.71c18.946 73.61 85.766 128 165.289 128h85.334c23.565 0 42.666-19.104 42.666-42.666v-597.335c0-23.564-19.101-42.667-42.666-42.667h-85.334c-79.523 0-146.343 54.39-165.289 128h-90.71c-23.564 0-42.667 19.102-42.667 42.667v341.334c0 23.562 19.103 42.666 42.667 42.666zM886.627 393.373c12.496 12.496 12.496 32.758 0 45.254l-73.373 73.373 73.373 73.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-73.373-73.373-73.373 73.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l73.373-73.373-73.373-73.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l73.373 73.373 73.373-73.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["audio-unavailable"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":181,"id":181,"name":"audio-unavailable","prevSize":32,"code":59678},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M300.1 631.12h-113.433v-280.89h113.433l12.366-48.048c11.054-42.953 50.123-74.619 96.423-74.619h58.666v526.223h-58.666c-46.301 0-85.37-31.667-96.423-74.621l-12.366-48.045zM163.556 695.12h86.931c18.156 70.541 82.192 122.666 158.403 122.666h81.776c22.582 0 40.89-18.307 40.89-40.89v-572.444c0-22.582-18.307-40.889-40.89-40.889h-81.776c-76.211 0-140.247 52.124-158.403 122.667h-86.931c-22.582 0-40.889 18.306-40.889 40.89v327.11c0 22.582 18.307 40.89 40.889 40.89zM646.461 316.515c17.146-4.286 34.518 6.138 38.806 23.284l11.136 44.55c20.81 83.229 20.81 170.301 0 253.533l-11.136 44.55c-4.288 17.146-21.661 27.568-38.806 23.283-17.146-4.288-27.571-21.661-23.283-38.806l11.136-44.55c18.262-73.040 18.262-149.45 0.003-222.486l-11.139-44.55c-4.288-17.146 6.138-34.522 23.283-38.807zM807.472 235.936c-5.197-16.892-23.104-26.372-39.994-21.174-16.893 5.197-26.371 23.104-21.174 39.996l35.536 115.489c28.112 91.37 26.976 189.242-3.254 279.933l-32.054 96.16c-5.59 16.765 3.472 34.886 20.237 40.477 16.768 5.587 34.89-3.472 40.48-20.24l32.051-96.16c34.448-103.344 35.747-214.87 3.709-318.989l-35.536-115.491z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["audio"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":182,"id":180,"name":"audio","prevSize":32,"code":59679},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M418.704 128c-35.344 0-64 28.654-64 64v226.637c20.774-2.822 42.134-3.456 64-1.526v-225.11h176v180.707c0 35.344 28.656 64 64 64h176v331.293h-120.554c-17.155 22.179-36.323 43.869-57.312 64h177.866c35.347 0 64-28.653 64-64v-363.293c0-6.413-1.923-12.675-5.526-17.978l-156.63-230.681c-11.914-17.544-31.741-28.049-52.947-28.049h-264.896zM658.704 372.707v-180.707h24.896l122.698 180.707h-147.594zM167.939 668.547c120.524 156.138 218.24 174.586 285.133 158.739 73.293-17.36 139.232-81.648 183.466-151.763-115.155-155.869-211.581-174.589-279.149-158.915-74.362 17.251-142.707 81.683-189.45 151.939zM104.428 649.037c100.621-162.8 337.62-357.19 593.252 1.789 9.072 12.739 10.32 29.818 2.422 43.315-95.27 162.854-326.394 358.346-593.234-0.224-9.745-13.094-11.022-30.995-2.44-44.88zM401.664 735.994c31.514 0 60.269-26.858 60.269-64 0-37.146-28.755-64-60.269-64-31.51 0-60.266 26.854-60.266 64 0 37.142 28.755 64 60.266 64zM401.664 799.994c68.634 0 124.269-57.309 124.269-128 0-70.694-55.635-128-124.269-128-68.63 0-124.267 57.306-124.267 128 0 70.691 55.636 128 124.267 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["auditing"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":183,"id":179,"name":"auditing","prevSize":32,"code":59680},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M224 224c-17.673 0-32 14.327-32 32v544c0 17.674 14.327 32 32 32h544c17.674 0 32-14.326 32-32v-544c0-17.673-14.326-32-32-32h-544zM128 256c0-53.019 42.981-96 96-96h544c53.021 0 96 42.981 96 96v544c0 53.021-42.979 96-96 96h-544c-53.019 0-96-42.979-96-96v-544zM608 460.813c0 41.798-26.714 77.357-64 90.538v133.462h-64v-133.462c-37.286-13.181-64-48.739-64-90.538 0-53.021 42.979-96 96-96s96 42.979 96 96zM608 588.826c38.861-29.19 64-75.667 64-128.013 0-88.365-71.635-160-160-160s-160 71.636-160 160c0 52.346 25.139 98.822 64 128.013v127.987c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-127.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["auth"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":184,"id":178,"name":"auth","prevSize":32,"code":59681},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M513.35 554.019c66.467 0 120.349-52.493 120.349-117.242 0-64.752-53.882-117.243-120.349-117.243-66.464 0-120.346 52.491-120.346 117.243 0 64.749 53.882 117.242 120.346 117.242zM513.35 490.019c-32.704 0-56.346-25.405-56.346-53.242 0-27.84 23.642-53.242 56.346-53.242 32.707 0 56.349 25.402 56.349 53.242 0 27.837-23.642 53.242-56.349 53.242z","M365.478 894.144h-172.126c-17.673 0-32-14.33-32-32v-702.144c0-17.673 14.327-32 32-32h640.001c17.674 0 32 14.327 32 32v702.144c0 17.67-14.326 32-32 32h-172.128c-6.24 1.274-12.701 1.942-19.318 1.942h-257.11c-6.618 0-13.078-0.669-19.318-1.942zM225.353 830.144h68.244c-3.114-9.456-4.799-19.558-4.799-30.058v-93.446c0-56.109 37.881-105.142 92.172-119.309 19.171-5.002 39.264-5.312 58.579-0.902l42.778 9.766c20.051 4.579 40.909 4.259 60.81-0.934l28.070-7.325c20.694-5.398 42.384-5.734 63.232-0.973 60.534 13.821 103.469 67.664 103.469 129.754v83.37c0 10.499-1.686 20.602-4.8 30.058h68.246v-638.144h-576.001v638.144zM652.918 830.144c12.246-4.49 20.989-16.253 20.989-30.058v-83.37c0-32.234-22.288-60.186-53.715-67.36-10.822-2.47-22.083-2.298-32.826 0.506l-28.070 7.325c-29.853 7.789-61.139 8.272-91.216 1.405l-42.774-9.766c-9.293-2.122-18.957-1.974-28.176 0.432-26.112 6.813-44.333 30.397-44.333 57.382v93.446c0 13.805 8.742 25.568 20.989 30.058h279.133z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["avatar"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":185,"id":177,"name":"avatar","prevSize":32,"code":59682},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M737.779 361.376c12.499 12.496 12.499 32.758 0 45.254l-110.947 110.95 110.947 110.947c12.499 12.496 12.499 32.758 0 45.254-12.496 12.499-32.758 12.499-45.254 0l-110.947-110.947-110.95 110.947c-12.496 12.499-32.758 12.499-45.254 0-12.496-12.496-12.496-32.758 0-45.254l110.95-110.947-110.95-110.95c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l110.95 110.95 110.947-110.95c12.496-12.496 32.758-12.496 45.254 0z","M312.246 218.073c12.061-16.393 31.2-26.073 51.552-26.073h468.202c35.347 0 64 28.654 64 64v512c0 35.347-28.653 64-64 64h-468.202c-20.352 0-39.491-9.68-51.552-26.074l-188.343-256c-16.598-22.56-16.598-53.293 0-75.853l188.343-256.001zM363.798 256l-188.343 256 188.343 256h468.202v-512h-468.202z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["backspace"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":186,"id":176,"name":"backspace","prevSize":32,"code":59683},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M376 775.418c-13.254 0-24-10.746-24-24v-469.168c0-13.255 10.746-24 24-24h145.075c56.118 0 98.269 11.603 126.448 34.809 28.416 23.206 42.624 57.542 42.624 103.008 0 24.154-6.867 45.584-20.602 64.291-13.734 18.47-32.442 32.794-56.122 42.976 27.942 7.814 49.965 22.733 66.067 44.755 16.339 21.786 24.509 47.834 24.509 78.144 0 46.413-15.037 82.88-45.11 109.402s-72.579 39.782-127.517 39.782h-155.373zM420.198 533.526v186.125h112.595c31.731 0 56.714-8.17 74.947-24.509 18.47-16.576 27.706-39.309 27.706-68.198 0-62.278-33.862-93.418-101.587-93.418h-113.661zM420.198 478.829h103.008c29.834 0 53.632-7.459 71.392-22.378 17.997-14.918 26.995-35.165 26.995-60.739 0-28.416-8.288-49.018-24.864-61.805-16.576-13.024-41.795-19.536-75.654-19.536h-100.877v164.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bold"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":187,"id":175,"name":"bold","prevSize":32,"code":59684},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M352 445.437c0-17.67 14.326-32 32-32h256c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M352 322.557c0-17.672 14.326-31.999 32-31.999h256c17.674 0 32 14.327 32 31.999 0 17.674-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M864 679.68c0 17.674-14.326 32-32 32h-18.509c-8.218 40.547-8.218 82.333 0 122.88h19.789c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72h-545.28c-70.692 0-128-55.014-128-122.88v-453.12c0-106.038 85.961-192 192-192h480c17.674 0 32 14.327 32 32v519.68zM748.419 834.56c-6.787-40.678-6.787-82.202 0-122.88h-460.419c-35.346 0-64 27.507-64 61.44s28.654 61.44 64 61.44h460.419zM224 647.68h576v-455.68h-448c-70.692 0-128 57.308-128 128v327.68z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":188,"id":174,"name":"book","prevSize":32,"code":59685},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M224 224h320v576h-96v-112c0-8.835-7.165-16-16-16h-96c-8.835 0-16 7.165-16 16v112h-96v-576zM608 448h192v352h-192v-352zM832 384h-224v-192c0-17.673-14.326-32-32-32h-384c-17.673 0-32 14.327-32 32v640c0 17.674 14.327 32 32 32h640c17.674 0 32-14.326 32-32v-416c0-17.674-14.326-32-32-32zM304 288c-8.836 0-16 7.164-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.836-7.165-16-16-16h-32zM288 432c0-8.835 7.164-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.836 0-16-7.165-16-16v-32zM304 544c-8.836 0-16 7.165-16 16v32c0 8.835 7.164 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 304c0-8.836 7.165-16 16-16h32c8.835 0 16 7.164 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM432 416c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM416 560c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32zM688 512c-8.835 0-16 7.165-16 16v32c0 8.835 7.165 16 16 16h32c8.835 0 16-7.165 16-16v-32c0-8.835-7.165-16-16-16h-32zM672 656c0-8.835 7.165-16 16-16h32c8.835 0 16 7.165 16 16v32c0 8.835-7.165 16-16 16h-32c-8.835 0-16-7.165-16-16v-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["business"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":189,"id":173,"name":"business","prevSize":32,"code":59686},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M277.831 157.44c0-16.259 13.181-29.44 29.44-29.44s29.439 13.181 29.439 29.44v58.876h353.28v-58.876c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v58.876h85.76c17.674 0 32 14.327 32 32v583.68c0 17.674-14.326 32-32 32h-642.559c-17.673 0-32-14.326-32-32v-583.68c0-1.105 0.056-2.196 0.165-3.272 1.639-16.136 15.266-28.728 31.835-28.728h85.76v-58.876zM802.63 392.957h-578.559v407.040h578.559v-407.040zM425.034 644.474c0-8.835 7.162-16 16-16h26.88c8.835 0 16 7.165 16 16v26.88c0 8.838-7.165 16-16 16h-26.88c-8.838 0-16-7.162-16-16v-26.88zM323.27 510.72c-8.836 0-15.999 7.162-15.999 16v26.88c0 8.835 7.163 16 15.999 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.838-7.162-16-16-16h-26.88zM542.79 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM323.27 628.474c-8.835 0-15.999 7.165-15.999 16v26.88c0 8.838 7.164 16 15.999 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM542.79 644.474c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.838-7.162 16-16 16h-26.88c-8.835 0-16-7.162-16-16v-26.88zM441.030 510.72c-8.835 0-16 7.165-16 16v26.88c0 8.835 7.165 16 16 16h26.88c8.838 0 16-7.165 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88zM660.55 526.72c0-8.835 7.165-16 16-16h26.88c8.838 0 16 7.165 16 16v26.88c0 8.835-7.162 16-16 16h-26.88c-8.835 0-16-7.165-16-16v-26.88zM676.55 628.474c-8.835 0-16 7.165-16 16v26.88c0 8.838 7.165 16 16 16h26.88c8.838 0 16-7.162 16-16v-26.88c0-8.835-7.162-16-16-16h-26.88z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":190,"id":172,"name":"calendar","prevSize":32,"code":59687},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M866.128 153.126c-12.496-12.497-32.758-12.497-45.254 0l-668.246 668.246c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l668.246-668.246c12.496-12.497 12.496-32.758 0-45.255zM298.667 170.671c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999zM574.173 309.327h-403.506c-41.237 0-74.667 33.428-74.667 74.667v384c0 6.010 0.71 11.856 2.051 17.453l61.949-61.949v-339.504c0-5.891 4.776-10.666 10.667-10.666h339.506l64-64.001zM376.339 778.659h306.326c5.891 0 10.669-4.774 10.669-10.666v-85.334c0-11.373 6.038-21.891 15.859-27.629s21.949-5.83 31.856-0.243l97.83 55.162c2.531 1.427 4.858 3.194 6.912 5.248 6.72 6.72 18.208 1.962 18.208-7.542v-263.322c0-9.501-11.488-14.262-18.208-7.542-2.054 2.054-4.381 3.821-6.912 5.248l-97.83 55.162c-9.907 5.587-22.035 5.494-31.856-0.243-9.821-5.734-15.859-16.256-15.859-27.629v-7.661l110.778-73.498c47.418-41.99 123.888-8.701 123.888 56.163v263.322c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.378v30.554c0 41.238-33.43 74.666-74.669 74.666h-370.327l64.001-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":191,"id":171,"name":"camera-disabled","prevSize":32,"code":59688},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M288 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h256c17.674 0 32-14.327 32-32s-14.326-32-32-32h-256z","M170.667 341.328c-23.564 0-42.667 19.104-42.667 42.666v384c0 23.565 19.102 42.669 42.667 42.669h511.999c23.565 0 42.669-19.104 42.669-42.669v-128l97.83 97.83c26.877 26.88 72.835 7.843 72.835-30.17v-263.318c0-38.013-45.958-57.050-72.835-30.173l-97.83 97.83v-128c0-23.562-19.104-42.666-42.669-42.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-filled"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":192,"id":170,"name":"camera-filled","prevSize":32,"code":59689},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M196.731 191.997c0-15.807 12.814-28.622 28.622-28.622h128.001c15.805 0 28.621 12.814 28.621 28.622s-12.816 28.621-28.621 28.621h-128.001c-15.807 0-28.622-12.814-28.622-28.621z","M737.354 559.997c0 97.203-78.8 176-176 176-97.203 0-176-78.797-176-176s78.797-176 176-176c97.2 0 176 78.797 176 176zM673.354 559.997c0-61.856-50.144-112-112-112s-112 50.144-112 112c0 61.856 50.144 112 112 112s112-50.144 112-112z","M193.353 255.997c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h640.001c35.344 0 64-28.653 64-64v-448c0-35.346-28.656-64-64-64h-640.001zM833.354 319.997v448h-640.001v-448h640.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-photo"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":193,"id":169,"name":"camera-photo","prevSize":32,"code":59690},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M298.667 170.672c-23.564 0-42.667 14.327-42.667 32s19.102 32 42.667 32h255.999c23.565 0 42.669-14.327 42.669-32s-19.104-32-42.669-32h-255.999z","M545.712 503.453c11.267-11.267 11.19-29.61-0.17-40.97s-29.706-11.437-40.973-0.17l-71.402 71.402-71.994-71.997c-11.363-11.36-29.706-11.437-40.973-0.17s-11.19 29.61 0.17 40.97l71.997 71.997-71.402 71.402c-11.266 11.267-11.19 29.61 0.17 40.97 11.363 11.36 29.706 11.437 40.973 0.17l71.402-71.402 71.997 71.997c11.36 11.36 29.702 11.437 40.97 0.17s11.19-29.61-0.17-40.97l-71.997-71.997 71.402-71.402z","M96 383.994c0-41.235 33.429-74.666 74.667-74.666h511.999c41.238 0 74.669 33.43 74.669 74.666v30.554l46.778-26.378c47.418-41.99 123.888-8.698 123.888 56.166v263.318c0 64.864-76.47 98.154-123.888 56.163l-46.778-26.374v30.55c0 41.238-33.43 74.669-74.669 74.669h-511.999c-41.237 0-74.667-33.43-74.667-74.669v-384zM170.667 373.328c-5.891 0-10.667 4.774-10.667 10.666v384c0 5.891 4.776 10.669 10.667 10.669h511.999c5.891 0 10.669-4.778 10.669-10.669v-85.331c0-11.376 6.038-21.894 15.859-27.632s21.949-5.83 31.856-0.243l97.83 55.165c2.531 1.427 4.858 3.19 6.912 5.245 6.72 6.72 18.208 1.962 18.208-7.542v-263.318c0-9.504-11.488-14.262-18.208-7.546-2.054 2.058-4.381 3.821-6.912 5.248l-97.83 55.165c-9.907 5.587-22.035 5.494-31.856-0.243s-15.859-16.256-15.859-27.632v-85.334c0-5.891-4.778-10.666-10.669-10.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera-unavailable"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":194,"id":168,"name":"camera-unavailable","prevSize":32,"code":59691},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M256 202.672c0-17.673 19.102-32 42.667-32h255.999c23.565 0 42.669 14.327 42.669 32s-19.104 32-42.669 32h-255.999c-23.564 0-42.667-14.327-42.667-32zM160 383.994c0-5.891 4.776-10.666 10.667-10.666h511.999c5.891 0 10.669 4.774 10.669 10.666v85.334c0 11.376 6.038 21.894 15.859 27.632s21.949 5.83 31.856 0.243l97.83-55.165c2.531-1.427 4.858-3.19 6.912-5.248 6.72-6.717 18.208-1.958 18.208 7.546v263.318c0 9.504-11.488 14.262-18.208 7.542-2.054-2.054-4.381-3.818-6.912-5.245l-97.83-55.165c-9.907-5.587-22.035-5.494-31.856 0.243s-15.859 16.256-15.859 27.632v85.331c0 5.891-4.778 10.669-10.669 10.669h-511.999c-5.891 0-10.667-4.778-10.667-10.669v-384zM170.667 309.328c-41.237 0-74.667 33.43-74.667 74.666v384c0 41.238 33.429 74.669 74.667 74.669h511.999c41.238 0 74.669-33.43 74.669-74.669v-30.55l46.778 26.374c47.418 41.99 123.888 8.701 123.888-56.163v-263.318c0-64.864-76.47-98.157-123.888-56.166l-46.778 26.378v-30.554c0-41.235-33.43-74.666-74.669-74.666h-511.999z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["camera"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":195,"id":167,"name":"camera","prevSize":32,"code":59692},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M224.248 304.026c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.702 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.152 83.731 244.197 93.958 91.965 10.218 193.27 1.446 273.306-15.482 40.022-8.461 73.616-18.733 97.443-29.075 9.245-4.013 16.438-7.786 21.734-11.126-2.464-1.565-5.446-3.306-9.002-5.197-9.222-4.912-19.779-9.578-30.733-14.368l-1.914-0.835c-9.667-4.221-20.47-8.941-28.656-13.517-14.835-8.298-29.389-17.734-40.006-27.776-5.222-4.941-11.165-11.571-15.146-19.827-4.208-8.742-7.226-21.792-1.306-35.597 31.978-74.621 47.178-115.494 54.538-142.483 6.874-25.2 6.874-37.888 6.874-58.064v-0.182c0-16.035-9.318-89.517-55.811-158.032-45.018-66.338-125.99-129.968-274.854-129.968-134.637 0-215.698 55.382-264.165 122.698zM172.309 266.63c60.333-83.796 160.606-149.302 316.103-149.302 171.136 0 271.494 75.037 327.811 158.032 54.842 80.819 66.854 167.338 66.854 193.968 0 22.384-0.022 41.696-9.126 75.088-8.131 29.805-23.485 70.928-51.946 137.923 5.261 4.166 13.072 9.306 23.36 15.062 5.315 2.97 13.485 6.55 24.963 11.568 10.653 4.659 23.437 10.266 35.174 16.515 11.258 5.994 24.416 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.056 15.168-16.794 25.939-26.576 33.094-10.63 7.776-23.818 14.762-38.253 21.030-29.008 12.589-67.030 23.962-109.683 32.982-85.309 18.038-193.581 27.587-293.616 16.474-99.955-11.107-202.74-44.634-278.468-108.71-76.833-65.011-123.811-159.994-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904zM493.744 320c17.674 0 32 14.326 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.674 14.326-32 32-32zM525.744 672c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["canned-response"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":196,"id":166,"name":"canned-response","prevSize":32,"code":59693},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M193.352 181.331c-53.020 0-96 42.981-96 96v469.335c0 53.018 42.98 96 96 96h639.999c53.021 0 96-42.982 96-96v-469.335c0-53.019-42.979-96-96-96h-639.999zM161.352 277.331c0-17.673 14.327-32 32-32h639.999c17.674 0 32 14.327 32 32v202.673h-703.999v-202.673zM161.352 544.003h703.999v202.662c0 17.67-14.326 32-32 32h-639.999c-17.673 0-32-14.33-32-32v-202.662zM812.016 661.331c0-35.347-28.653-64-64-64-35.344 0-64 28.653-64 64s28.656 64 64 64c35.347 0 64-28.653 64-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["card"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":197,"id":165,"name":"card","prevSize":32,"code":59694},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M338.704 304c0-97.202 78.8-176 176-176 97.203 0 176 78.798 176 176v142.477h16c53.021 0 96 42.979 96 96v257.523c0 53.021-42.979 96-96 96h-384c-53.018 0-95.999-42.979-95.999-96v-257.523c0-53.021 42.981-96 95.999-96h16v-142.477zM402.704 446.477h224v-142.477c0-61.856-50.144-112-112-112s-112 50.144-112 112v142.477zM322.704 510.477c-17.672 0-31.999 14.326-31.999 32v257.523c0 17.674 14.327 32 31.999 32h384c17.674 0 32-14.326 32-32v-257.523c0-17.674-14.326-32-32-32h-384z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["channel-private"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":198,"id":164,"name":"channel-private","prevSize":32,"code":59695},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M336 128c17.674 0 32 14.327 32 32v144h288v-144c0-17.673 14.326-32 32-32s32 14.327 32 32v144h144c17.674 0 32 14.327 32 32s-14.326 32-32 32h-144v288h144c17.674 0 32 14.326 32 32s-14.326 32-32 32h-144v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-288v144c0 17.674-14.326 32-32 32s-32-14.326-32-32v-144h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-288h-144c-17.673 0-32-14.326-32-32s14.327-32 32-32h144v-144c0-17.673 14.327-32 32-32zM368 368v288h288v-288h-288z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["channel-public"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":199,"id":163,"name":"channel-public","prevSize":32,"code":59696},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M886.627 105.372c12.496 12.497 12.496 32.758 0 45.255l-89.373 89.372 89.373 89.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-89.373-89.372-89.373 89.372c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l89.373-89.373-89.373-89.372c-12.496-12.497-12.496-32.758 0-45.255s32.758-12.497 45.254 0l89.373 89.373 89.373-89.373c12.496-12.497 32.758-12.497 45.254 0zM226.501 304.042c-49.642 68.947-66.502 152.646-66.502 207.968v1.453l-0.132 1.446c-9.701 106.717 28.59 181.93 90.135 234.006 62.938 53.254 152.151 83.731 244.196 93.958 91.968 10.218 193.27 1.446 273.309-15.482 40.019-8.461 73.613-18.733 97.44-29.075 9.245-4.013 16.438-7.786 21.738-11.126-2.467-1.565-5.446-3.306-9.005-5.2-9.222-4.909-19.776-9.574-30.733-14.365l-1.917-0.838c-9.667-4.221-20.47-8.938-28.653-13.517-14.835-8.294-29.389-17.731-40.003-27.773-5.226-4.941-11.168-11.571-15.146-19.827-4.211-8.742-7.226-21.792-1.309-35.6 42.086-98.205 54.957-137.722 59.219-163.318 2.906-17.434 19.392-29.21 36.822-26.307 17.434 2.906 29.213 19.389 26.307 36.822-5.453 32.749-20.333 76.41-58.006 165.088 5.261 4.166 13.069 9.306 23.357 15.059 5.315 2.973 13.485 6.554 24.963 11.571 10.656 4.656 23.437 10.266 35.174 16.515 11.261 5.994 24.419 14.029 34.202 24.538 10.234 10.992 20.973 29.846 13.299 52.864-5.053 15.168-16.794 25.939-26.576 33.094-10.627 7.776-23.814 14.762-38.253 21.027-29.005 12.592-67.027 23.965-109.68 32.986-85.312 18.038-193.584 27.587-293.616 16.47-99.955-11.104-202.742-44.63-278.471-108.707-76.833-65.014-123.811-159.997-112.66-287.222 0.286-65.549 19.841-162.349 78.561-243.904 60.333-83.796 160.605-149.302 316.103-149.302 17.674 0 32 14.327 32 32s-14.326 32-32 32c-134.637 0-215.697 55.382-264.164 122.698z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-close"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":200,"id":162,"name":"chat-close","prevSize":32,"code":59697},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M778 93.833c-11.795-13.162-32.026-14.271-45.187-2.477s-14.272 32.025-2.477 45.187l81.222 90.645h-216.358c-17.674 0-32 14.327-32 32s14.326 32 32 32h216.358l-81.222 90.646c-11.795 13.162-10.685 33.392 2.477 45.187 13.162 11.792 33.392 10.685 45.187-2.477l129.030-144.001c10.893-12.154 10.893-30.556 0-42.71l-129.030-144zM159.999 512.010c0-55.322 16.86-139.021 66.502-207.968 48.467-67.316 129.527-122.698 264.164-122.698 17.674 0 32-14.327 32-32s-14.326-32-32-32c-155.498 0-255.77 65.507-316.102 149.302-58.72 81.555-78.275 178.355-78.561 243.904-11.151 127.229 35.827 222.211 112.66 287.222 75.729 64.077 178.516 97.603 278.471 108.707 100.032 11.117 208.304 1.568 293.616-16.47 42.653-9.021 80.675-20.394 109.68-32.982 14.438-6.269 27.626-13.254 38.253-21.030 9.782-7.155 21.523-17.926 26.579-33.094 7.67-23.018-3.069-41.872-13.302-52.864-9.782-10.509-22.941-18.544-34.202-24.538-11.738-6.25-24.518-11.859-35.171-16.515-11.482-5.018-19.651-8.598-24.966-11.571-10.288-5.754-18.096-10.89-23.357-15.059 37.674-88.678 52.554-132.339 58.010-165.088 2.902-17.43-8.877-33.917-26.31-36.822-17.43-2.902-33.917 8.877-36.822 26.307-4.262 25.597-17.133 65.114-59.219 163.318-5.917 13.808-2.902 26.858 1.309 35.6 3.978 8.256 9.92 14.886 15.146 19.827 10.614 10.042 25.171 19.478 40.003 27.776 8.186 4.576 18.989 9.296 28.656 13.517v0l1.914 0.835c10.957 4.79 21.51 9.456 30.733 14.368 3.558 1.891 6.541 3.632 9.005 5.197-5.299 3.341-12.493 7.114-21.738 11.126-23.827 10.342-57.421 20.614-97.44 29.075-80.038 16.928-181.341 25.699-273.309 15.482-92.045-10.227-181.258-40.704-244.196-93.958-61.545-52.077-99.836-127.29-90.135-234.006l0.132-1.446v-1.453z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chat-forward"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":201,"id":161,"name":"chat-forward","prevSize":32,"code":59698},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M854.506 233.252c12.563 12.429 12.672 32.691 0.243 45.254l-474.877 480c-6.013 6.077-14.208 9.498-22.755 9.494-8.55-0.003-16.742-3.427-22.752-9.507l-165.126-167.088c-12.423-12.57-12.303-32.832 0.268-45.254s32.831-12.304 45.254 0.269l142.375 144.067 452.115-456.992c12.429-12.564 32.691-12.672 45.254-0.243z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":202,"id":160,"name":"check","prevSize":32,"code":59699},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M281.372 436.042c12.497-12.499 32.758-12.499 45.255 0l185.373 185.373 185.373-185.373c12.496-12.499 32.758-12.499 45.254 0 12.496 12.496 12.496 32.758 0 45.254l-208 208c-12.496 12.496-32.758 12.496-45.254 0l-208-208c-12.497-12.496-12.497-32.758 0-45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-down"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":203,"id":159,"name":"chevron-down","prevSize":32,"code":59700},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M670.17 183.165c16.662 16.662 16.662 43.677 0 60.34l-268.496 268.495 268.496 268.499c16.662 16.662 16.662 43.677 0 60.339s-43.677 16.662-60.339 0l-298.668-298.669c-8.002-8-12.497-18.851-12.497-30.17 0-11.315 4.495-22.166 12.497-30.17l298.668-298.666c16.662-16.662 43.677-16.662 60.339 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-left-big"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":204,"id":158,"name":"chevron-left-big","prevSize":32,"code":59701},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M587.962 281.372c12.496 12.497 12.496 32.758 0 45.255l-185.373 185.373 185.373 185.373c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-208-208c-12.496-12.496-12.496-32.758 0-45.254l208-208c12.499-12.497 32.758-12.497 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-left"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":205,"id":157,"name":"chevron-left","prevSize":32,"code":59702},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M436.038 742.627c-12.496-12.496-12.496-32.758 0-45.254l185.373-185.373-185.373-185.373c-12.496-12.497-12.496-32.758 0-45.254 12.499-12.497 32.758-12.497 45.254 0l208 208c12.499 12.496 12.499 32.758 0 45.254l-207.997 208c-12.499 12.496-32.758 12.496-45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-right"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":206,"id":156,"name":"chevron-right","prevSize":32,"code":59703},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M742.627 587.958c-12.496 12.499-32.758 12.499-45.254 0l-185.373-185.373-185.373 185.373c-12.496 12.499-32.758 12.499-45.254 0-12.497-12.496-12.497-32.758 0-45.254l208-208c12.496-12.496 32.758-12.496 45.254 0l208 208c12.496 12.496 12.496 32.758 0 45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chevron-up"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":207,"id":155,"name":"chevron-up","prevSize":32,"code":59704},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M512 864c194.403 0 352-157.597 352-352 0-46.522-9.024-90.931-25.418-131.581l48.518-48.518c26.211 54.496 40.899 115.581 40.899 180.099 0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416 95.376 0 183.254 32.096 253.424 86.076l-45.712 45.712c-58.221-42.623-130.029-67.788-207.712-67.788-194.404 0-352 157.596-352 352s157.596 352 352 352zM902.63 230.623c12.496-12.499 12.493-32.76-0.006-45.255s-32.762-12.491-45.254 0.008l-345.386 345.503-105.341-105.491c-12.486-12.506-32.749-12.522-45.254-0.032-12.506 12.486-12.522 32.749-0.032 45.254l127.971 128.157c6 6.006 14.144 9.386 22.634 9.389 8.493 0 16.637-3.373 22.64-9.376l368.029-368.157z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["circle-check"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":208,"id":154,"name":"circle-check","prevSize":32,"code":59705},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M608 192c0-53.019-42.979-96-96-96s-96 42.981-96 96h-192c-17.673 0-32 14.327-32 32v672c0 17.674 14.327 32 32 32h576c17.674 0 32-14.326 32-32v-672c0-17.673-14.326-32-32-32h-192zM256 864v-608h96v64c0 17.674 14.326 32 32 32h256c17.674 0 32-14.326 32-32v-64h96v608h-512zM512 224c17.674 0 32-14.327 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":209,"id":153,"name":"clipboard","prevSize":32,"code":59706},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M864 512c0 194.403-157.597 352-352 352s-352-157.597-352-352c0-194.404 157.596-352 352-352s352 157.596 352 352zM928 512c0-229.75-186.25-416-416-416s-416 186.25-416 416c0 229.75 186.25 416 416 416s416-186.25 416-416zM544 288c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clock"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":210,"id":152,"name":"clock","prevSize":32,"code":59707},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M806.627 262.628c12.496-12.497 12.496-32.758 0-45.255s-32.758-12.497-45.254 0l-249.373 249.373-249.372-249.373c-12.497-12.497-32.758-12.497-45.255 0s-12.497 32.758 0 45.255l249.373 249.372-249.373 249.373c-12.497 12.496-12.497 32.758 0 45.254s32.758 12.496 45.255 0l249.372-249.373 249.373 249.373c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-249.373-249.373 249.373-249.372z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["close"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":211,"id":151,"name":"close","prevSize":32,"code":59708},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M273.129 356.678c6.747-28.298 25.696-52.004 51.21-67.152 25.6-15.2 56.323-20.858 84.698-14.53 27.642 6.163 55.117 24.12 74.874 60.339l22.541 41.325 30.134-36.16c27.238-32.689 85.126-39.713 134.714-14.064 23.562 12.186 42.208 30.618 52.064 53.488 9.654 22.406 12.112 51.898-1.434 89.149l-15.616 42.938h45.686c53.606 0 82.419 15.882 97.642 33.75 15.651 18.374 21.898 44.646 18.557 74.714-3.344 30.083-16.054 60.518-33.456 82.89-17.939 23.066-36.646 32.646-50.742 32.646h-543.998c-18.791 0-37.068-10.362-52.195-31.578-15.217-21.344-24.978-51.050-25.818-81.312-0.84-30.227 7.237-57.914 23.733-77.491 15.796-18.746 42.268-33.619 86.279-33.619h59.791l-33.165-49.75c-27.882-41.824-32.118-77.814-25.498-105.581zM518.218 272.084c-26.339-32.073-59.667-51.619-95.251-59.554-45.626-10.174-92.902-0.833-131.301 21.965-38.487 22.85-69.538 60.142-80.791 107.342-8.278 34.72-5.369 72.758 10.731 111.77-35.67 8.464-64.099 26.186-84.825 50.784-29.004 34.422-39.927 78.733-38.766 120.506 1.159 41.738 14.399 84.032 37.682 116.688 23.373 32.784 59.097 58.426 104.306 58.426h543.999c41.907 0 77.2-26.419 101.261-57.354 24.598-31.629 41.888-73.197 46.544-115.114 4.659-41.933-3.094-87.658-33.443-123.283-24.106-28.301-59.504-46.774-105.616-53.456 5.83-35.194 1.686-67.674-10.605-96.205-16.646-38.628-46.998-67.197-81.437-85.010-54.902-28.397-128.733-32.652-182.486 2.495zM512 437.331c17.674 0 32 14.33 32 32v53.328h53.334c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-53.334v53.341c0 17.674-14.326 32-32 32s-32-14.326-32-32v-53.341h-53.331c-17.674 0-32-14.326-32-32 0-17.67 14.326-32 32-32h53.331v-53.328c0-17.67 14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-connectivity"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":212,"id":150,"name":"cloud-connectivity","prevSize":32,"code":59709},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M630.154 204.798c16.496 6.344 24.723 24.859 18.381 41.355l-213.334 554.667c-6.342 16.496-24.858 24.723-41.354 18.381-16.496-6.346-24.723-24.861-18.381-41.357l213.334-554.666c6.346-16.495 24.858-24.724 41.354-18.38zM321.293 361.37c12.499 12.499 12.499 32.758 0 45.258l-105.371 105.37 105.371 105.373c12.499 12.499 12.499 32.758 0 45.258-12.495 12.496-32.756 12.496-45.253 0l-128-128c-12.497-12.499-12.497-32.758 0-45.258l128-128c12.497-12.496 32.758-12.496 45.253 0zM702.707 361.37c12.496-12.496 32.758-12.496 45.254 0l128 128c12.496 12.499 12.496 32.758 0 45.258l-128 128c-12.496 12.496-32.758 12.496-45.254 0-12.499-12.499-12.499-32.758 0-45.258l105.373-105.373-105.373-105.37c-12.499-12.499-12.499-32.758 0-45.258z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["code"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":213,"id":149,"name":"code","prevSize":32,"code":59710},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M770.704 224c17.674 0 32 14.327 32 32v544c0 17.674-14.326 32-32 32h-543.999c-17.673 0-32-14.326-32-32v-128c17.673 0 32-14.326 32-32s-14.327-32-32-32v-192c17.673 0 32-14.326 32-32s-14.327-32-32-32v-96c0-17.673 14.327-32 32-32h543.999zM130.705 608c-17.673 0-32 14.326-32 32s14.327 32 32 32v128c0 53.021 42.981 96 96 96h543.999c53.021 0 96-42.979 96-96v-544c0-53.019-42.979-96-96-96h-543.999c-53.019 0-96 42.981-96 96v96c-17.673 0-32 14.326-32 32s14.327 32 32 32v192zM427.91 514.266c13.315-3.568 27.309-3.789 40.73-0.643l31.52 7.389c8.73 2.045 17.83 1.904 26.49-0.416l22.186-5.942c14.285-3.827 29.328-4.042 43.683-0.675 40.429 9.475 69.325 45.584 69.325 87.277v24.336c0 31.811-25.789 57.6-57.6 57.6h-180.739c-31.811 0-57.6-25.789-57.6-57.6v-30.525c0-37.862 25.434-71.005 62.006-80.8zM456.957 563.472c-5.206-1.219-10.634-1.133-15.798 0.25-14.189 3.798-24.054 16.656-24.054 31.344v30.525c0 3.536 2.867 6.4 6.4 6.4h180.739c3.533 0 6.4-2.864 6.4-6.4v-24.336c0-17.75-12.365-33.341-29.808-37.427-6.186-1.45-12.662-1.35-18.752 0.282l-22.186 5.942c-16.813 4.502-34.474 4.781-51.421 0.81l-31.52-7.389zM539.155 420.48c0-13.962-11.318-25.28-25.28-25.28s-25.283 11.318-25.283 25.28c0 13.962 11.322 25.28 25.283 25.28s25.28-11.318 25.28-25.28zM590.355 420.48c0 42.24-34.243 76.48-76.48 76.48-42.24 0-76.483-34.24-76.483-76.48s34.243-76.48 76.483-76.48c42.237 0 76.48 34.24 76.48 76.48z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["contacts"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":214,"id":148,"name":"contacts","prevSize":32,"code":59711},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M464 272c-35.347 0-64 28.654-64 64v480c0 35.347 28.653 64 64 64h352c35.347 0 64-28.653 64-64v-304c0-6.509-1.984-12.864-5.69-18.214l-134.458-194.215c-11.952-17.267-31.619-27.571-52.621-27.571h-223.232zM464 336h144v144c0 35.347 28.653 64 64 64h144v272h-352v-480zM672 480v-144h15.232l99.693 144h-114.925zM144 208c0-35.346 28.654-64 64-64h241.844c18.032 0 35.229 7.607 47.357 20.949l39.136 43.051h-328.336v480h128v64h-128c-35.346 0-64-28.653-64-64v-480z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":215,"id":147,"name":"copy","prevSize":32,"code":59712},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M824.682 183.521c-37.19-37.986-98.202-38.583-136.131-1.333l-348.48 342.237c-12.739 12.512-21.733 28.32-25.976 45.654l-23.681 96.749c-6.94 28.355 16.754 54.845 45.747 51.142l90.691-11.578c20.224-2.582 39.104-11.52 53.907-25.52l360.486-340.922c38.986-36.868 40.173-98.482 2.637-136.82l-19.2-19.61zM733.485 227.821c12.643-12.417 32.979-12.218 45.376 0.444l19.2 19.61c12.512 12.78 12.115 33.317-0.88 45.607l-69.965 66.169-63.446-63.364 69.715-68.466zM618.074 341.162l62.592 62.512-243.971 230.73c-4.934 4.666-11.229 7.645-17.968 8.506l-58.307 7.443 15.926-65.075c1.414-5.779 4.413-11.046 8.659-15.219l233.069-228.896zM193.608 265.602c0-17.673 14.346-32 32.042-32h281.332c17.696 0 32.042-14.327 32.042-32s-14.346-32-32.042-32h-281.332c-53.089 0-96.127 42.981-96.127 96v534.402c0 53.018 43.037 95.997 96.127 95.997h529.764c53.091 0 96.128-42.979 96.128-96v-279.414c0-17.67-14.346-32-32.042-32s-32.042 14.33-32.042 32v279.414c0 17.674-14.346 32-32.045 32h-529.764c-17.696 0-32.042-14.326-32.042-31.997v-534.402z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["create"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":216,"id":146,"name":"create","prevSize":32,"code":59713},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M717.373 298.663c0-17.673-14.326-32-32-32s-32 14.327-32 32v426.665c0 17.674 14.326 32 32 32s32-14.326 32-32v-426.665z","M514.704 394.672c17.674 0 32 14.326 32 32v298.666c0 17.674-14.326 32-32 32s-32-14.326-32-32v-298.666c0-17.674 14.326-32 32-32z","M376.038 554.672c0-17.674-14.326-32-32-32s-32 14.326-32 32v170.669c0 17.67 14.327 32 32 32s32-14.33 32-32v-170.669z","M130.705 199.556v624.889c0 39.52 32.036 71.555 71.556 71.555h624.888c39.52 0 71.555-32.035 71.555-71.555v-624.889c0-39.519-32.035-71.556-71.555-71.556h-624.888c-39.519 0-71.556 32.036-71.556 71.556zM202.26 192h624.888c4.173 0 7.555 3.383 7.555 7.556v624.889c0 4.173-3.382 7.555-7.555 7.555h-624.888c-4.173 0-7.556-3.382-7.556-7.555v-624.889c0-4.173 3.383-7.556 7.556-7.556z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dashboard"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":217,"id":145,"name":"dashboard","prevSize":32,"code":59714},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M739.68 864v-448h-448.593v448h448.593zM227.003 864v-448c-35.393 0-64.084-28.653-64.084-64v-128c0-35.346 28.692-64 64.084-64h224.297c0-35.346 28.691-64 64.083-64 35.395 0 64.086 28.654 64.086 64h224.294c35.395 0 64.086 28.654 64.086 64v128c0 35.347-28.691 64-64.086 64v448c0 35.347-28.691 64-64.083 64h-448.593c-35.393 0-64.085-28.653-64.085-64zM803.763 224h-576.761v128h576.761v-128zM419.258 544v192c0 17.674 14.346 32 32.042 32s32.042-14.326 32.042-32v-192c0-17.674-14.346-32-32.042-32s-32.042 14.326-32.042 32zM579.469 512c17.696 0 32.042 14.326 32.042 32v192c0 17.674-14.346 32-32.042 32s-32.042-14.326-32.042-32v-192c0-17.674 14.346-32 32.042-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delete"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":218,"id":144,"name":"delete","prevSize":32,"code":59715},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.327 32 32 32h341.334c17.67 0 32-14.326 32-32s-14.33-32-32-32h-341.334z","M85.334 298.672c0-70.692 57.308-128 128-128h597.335c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.335c-70.692 0-128-57.306-128-128v-298.666zM213.334 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.335c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.335z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["desktop"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":219,"id":143,"name":"desktop","prevSize":32,"code":59716},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M325.837 160c0-17.673-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.327-32.042 32v64c0 17.673 14.346 32 32.042 32h64.085c17.696 0 32.043-14.327 32.043-32v-64zM325.837 586.666c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64zM454.006 160c0-17.673 14.346-32 32.042-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.327-32.042-32v-64zM582.173 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM454.006 586.666c0-17.674 14.346-32 32.042-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.696 0-32.042-14.326-32.042-32v-64zM582.173 800c0-17.674-14.346-32-32.042-32h-64.083c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 160c0-17.673 14.346-32 32.045-32h64.083c17.696 0 32.042 14.327 32.042 32v64c0 17.673-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.327-32.045-32v-64zM838.512 373.334c0-17.674-14.346-32-32.042-32h-64.083c-17.699 0-32.045 14.326-32.045 32v64c0 17.674 14.346 32 32.045 32h64.083c17.696 0 32.042-14.326 32.042-32v-64zM710.342 586.666c0-17.674 14.346-32 32.045-32h64.083c17.696 0 32.042 14.326 32.042 32v64c0 17.674-14.346 32-32.042 32h-64.083c-17.699 0-32.045-14.326-32.045-32v-64zM325.837 373.334c0-17.674-14.347-32-32.043-32h-64.085c-17.696 0-32.042 14.326-32.042 32v64c0 17.674 14.346 32 32.042 32h64.085c17.696 0 32.043-14.326 32.043-32v-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dialpad"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":220,"id":142,"name":"dialpad","prevSize":32,"code":59717},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M514.704 96c80.096 0 154.906 22.636 218.378 61.859l-46.746 46.746c-24.739-13.843-51.322-24.785-79.286-32.368 12.166 22.395 23.078 49.095 32.403 79.249l-51.997 51.999c-5.654-22.994-12.17-44.005-19.347-62.666-12.822-33.339-26.522-55.927-38.474-69.070-8.4-9.235-13.43-11.291-14.928-11.698-1.501 0.407-6.531 2.463-14.931 11.698-11.949 13.143-25.651 35.731-38.474 69.070-16.298 42.377-29.174 96.867-36.339 159.18h65.974l-63.997 64h-7.117c-0.115 2.47-0.221 4.95-0.32 7.437l-64.538 64.538c-0.173-7.933-0.259-15.926-0.259-23.974 0-16.234 0.355-32.25 1.053-48h-189.81c-2.14 15.696-3.245 31.718-3.245 48 0 33.28 4.619 65.485 13.251 96h106.984l-64 64h-17.852c2.004 3.92 4.078 7.798 6.223 11.629l-46.746 46.749c-39.223-63.475-61.859-138.282-61.859-218.378 0-229.75 186.25-416 415.999-416zM868.845 293.623l-46.746 46.748c10.56 18.87 19.434 38.816 26.413 59.629h-86.045l-64 64h164.992c2.141 15.696 3.245 31.718 3.245 48 0 33.28-4.618 65.485-13.248 96h-183.030c2.8-30.816 4.282-62.957 4.282-96 0-8.045-0.090-16.042-0.262-23.974l-64.538 64.534c-0.752 19.008-2.022 37.523-3.763 55.44h-51.677l-64 64h107.091c-7.37 42.458-17.488 80.083-29.45 111.184-12.822 33.338-26.522 55.926-38.474 69.069-8.397 9.235-13.43 11.29-14.928 11.699-1.501-0.41-6.531-2.464-14.931-11.699-11.949-13.142-25.651-35.731-38.474-69.069-7.178-18.662-13.693-39.677-19.347-62.669l-52 51.997c9.328 30.154 20.24 56.854 32.406 79.251-27.965-7.584-54.547-18.525-79.286-32.368l-46.747 46.746c63.348 39.146 137.985 61.77 217.899 61.859h0.957c229.53-0.259 415.52-186.41 415.52-416 0-80.096-22.634-154.902-61.859-218.377zM422.362 172.237c-113.55 30.788-204.31 116.98-241.464 227.763h179.676c10-93.226 32.176-173.252 61.789-227.763zM607.050 851.763c24.397-44.902 43.741-107.117 55.395-179.763h165.878c-44.653 87.35-124.723 153.584-221.274 179.763zM828.077 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-671.999 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l671.999-672z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directory-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":221,"id":141,"name":"directory-disabled","prevSize":32,"code":59718},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M866.493 512c0 33.28-4.624 65.485-13.267 96h-183.27c2.803-30.816 4.285-62.957 4.285-96 0-16.234-0.358-32.25-1.053-48h190.058c2.141 15.696 3.248 31.718 3.248 48zM609.037 464c0.736 15.67 1.12 31.686 1.12 48 0 33.398-1.606 65.555-4.57 96h-183.117c-2.96-30.445-4.566-62.602-4.566-96 0-16.314 0.381-32.33 1.12-48h190.013zM668.368 400c-10.013-93.226-32.218-173.252-61.872-227.763 113.699 30.788 204.579 116.981 241.782 227.763h-179.91zM421.565 172.237c-29.654 54.51-51.859 134.537-61.872 227.763h-179.913c37.204-110.782 128.083-196.975 241.785-227.763zM424.17 400c7.171-62.314 20.067-116.804 36.387-159.18 12.838-33.339 26.557-55.927 38.525-69.070 8.41-9.235 13.446-11.291 14.947-11.698 1.501 0.407 6.541 2.463 14.95 11.698 11.965 13.143 25.683 35.731 38.525 69.070 16.32 42.377 29.213 96.867 36.387 159.18h-179.722zM354.874 464c-0.698 15.75-1.056 31.766-1.056 48 0 33.043 1.485 65.184 4.288 96h-183.274c-8.643-30.515-13.268-62.72-13.268-96 0-16.282 1.107-32.304 3.249-48h190.060zM366.096 672c11.667 72.646 31.040 134.861 55.466 179.763-96.675-26.179-176.853-92.413-221.565-179.763h166.099zM514.509 928c229.834-0.259 416.070-186.41 416.070-416 0-229.75-186.496-416-416.55-416s-416.549 186.25-416.549 416c0 229.59 186.237 415.741 416.073 416 0.16 0 0.317 0 0.477 0s0.32 0 0.48 0zM606.496 851.763c24.426-44.902 43.798-107.117 55.466-179.763h166.099c-44.71 87.35-124.886 153.584-221.565 179.763zM596.992 672c-7.379 42.458-17.51 80.083-29.488 111.184-12.842 33.338-26.56 55.926-38.525 69.069-8.41 9.235-13.45 11.29-14.95 11.699-1.501-0.41-6.538-2.464-14.947-11.699-11.968-13.142-25.686-35.731-38.525-69.069-11.978-31.101-22.112-68.726-29.491-111.184h165.926z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directory"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":222,"id":140,"name":"directory","prevSize":32,"code":59719},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M561.667 127.992c-121.696 0-200.973 50.509-248.813 115.801-46.216 63.073-61.638 137.752-61.933 188.616-8.705 98.746 28.601 172.896 89.422 223.469 59.686 49.626 140.202 75.258 217.85 83.738 77.75 8.486 161.715 1.197 227.856-12.547 33.066-6.87 62.774-15.581 85.642-25.331 11.366-4.848 22.029-10.368 30.797-16.669 7.875-5.661 18.541-14.976 23.242-28.835 7.286-21.475-3.133-38.784-11.965-48.102-8.41-8.877-19.427-15.405-28.24-20.016-9.306-4.867-19.379-9.206-27.533-12.707-8.973-3.856-14.858-6.4-18.56-8.432-4.845-2.662-8.842-5.088-12.026-7.203 20.256-47.142 31.549-77.043 37.696-99.19 7.293-26.272 7.315-41.725 7.315-58.909 0-21.523-9.603-88.542-52.81-151.108-44.701-64.73-124.074-122.573-257.939-122.573zM314.916 433.898c0-40.416 12.607-101.84 49.564-152.277 35.782-48.836 95.882-89.628 197.187-89.628 112.086 0 172.090 46.886 205.277 94.94 34.678 50.219 41.472 104.040 41.472 114.741v0.198c0 14.918 0 23.638-4.982 41.594-5.491 19.779-16.963 50.189-41.539 106.538-5.802 13.296-2.762 25.77 1.155 33.754 3.664 7.478 9.005 13.242 13.331 17.261 8.835 8.211 20.653 15.686 32.224 22.045 6.618 3.638 15.238 7.334 22.563 10.477l1.562 0.672c5.904 2.534 11.52 4.97 16.688 7.418-0.909 0.406-1.856 0.819-2.835 1.238-17.741 7.568-43.078 15.206-73.555 21.539-60.947 12.666-138.064 19.21-207.888 11.587-69.926-7.635-136.982-30.336-183.878-69.328-45.459-37.798-73.674-92.064-66.481-169.821l0.136-1.469v-1.478zM819.162 553.354l-0.074-0.086c0 0.003 0.010 0.013 0.029 0.035 0.010 0.013 0.026 0.029 0.045 0.051z","M178.552 502.474c7.496-11.258 16.26-22.259 26.436-32.592 0.876 31.747 6.169 61.226 15.216 88.358-15.094 30.877-18.374 59.315-18.374 65.357v0.186c0 11.382 0 17.536 3.524 30.701 3.993 14.918 12.441 38.211 30.867 82.022 5.256 12.496 2.48 24.099-0.985 31.43-3.249 6.874-7.925 12.058-11.512 15.514-7.319 7.053-16.852 13.254-25.75 18.326-5.008 2.854-11.333 5.706-16.546 8.029 11.182 3.939 24.98 7.814 40.802 11.226 44.977 9.693 101.833 14.669 153.062 8.87 51.28-5.808 99.776-23.014 133.35-51.965l0.608-0.528c14.794 2.784 29.53 4.938 44.051 6.525 10.886 1.187 21.862 2.086 32.877 2.72-10.122 14.797-22.163 28.045-35.741 39.754-46.362 39.974-108.547 60.362-167.946 67.088-59.45 6.73-123.405 0.947-173.744-9.901-25.17-5.424-48.056-12.352-65.901-20.243-8.86-3.92-17.458-8.502-24.686-13.891-6.431-4.794-15.831-13.171-20.001-25.92-6.422-19.632 2.792-35.443 10.458-43.834 7.193-7.872 16.405-13.462 23.248-17.174 7.309-3.965 15.158-7.466 21.235-10.173 6.907-3.078 10.854-4.858 13.183-6.186 1.349-0.768 2.591-1.501 3.727-2.195-13.937-33.885-21.976-56.118-26.48-72.947-5.68-21.222-5.7-33.875-5.7-47.434 0-17.712 7.436-71.139 40.721-121.123zM155.337 797.248c-0.012 0 0.084 0.102 0.317 0.301-0.19-0.202-0.306-0.301-0.317-0.301zM179.587 737.085c-0.004 0-0.052 0.051-0.137 0.15l0.112-0.118c0.019-0.022 0.027-0.032 0.025-0.032z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discussions"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":223,"id":139,"name":"discussions","prevSize":32,"code":59720},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M160 256c0-17.673 14.327-32 32-32h640c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.327-32-32zM160 421.162c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 602.838c0-17.674 14.327-32 32-32h640c17.674 0 32 14.326 32 32s-14.326 32-32 32h-640c-17.673 0-32-14.326-32-32zM160 768c0-17.674 14.327-32 32-32h344.614c17.674 0 32 14.326 32 32s-14.326 32-32 32h-344.614c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":224,"id":138,"name":"document","prevSize":32,"code":59721},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M128.169 352c0-17.674 14.346-32 32.042-32h704.928c17.696 0 32.045 14.326 32.045 32s-14.349 32-32.045 32h-704.928c-17.696 0-32.042-14.326-32.042-32zM213.615 522.669c0-17.674 14.346-32 32.042-32h534.036c17.699 0 32.045 14.326 32.045 32s-14.346 32-32.045 32h-534.036c-17.697 0-32.042-14.326-32.042-32zM331.104 661.331c-17.698 0-32.043 14.326-32.043 32s14.346 32 32.043 32h363.146c17.696 0 32.042-14.326 32.042-32s-14.346-32-32.042-32h-363.146z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["donner"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":225,"id":137,"name":"donner","prevSize":32,"code":59722},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l21.374 32.061v17.69h-48c-44.011 0-70.483 14.874-86.278 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h79.999v64h-80c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.304-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.613 53.456 30.349 35.626 38.106 81.35 33.446 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-80v-64h80c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 787.222c12.298-12.691 11.981-32.95-0.707-45.251-12.691-12.298-32.95-11.981-45.251 0.707l-41.021 42.326v-273.005c0-17.674-14.326-32-32-32s-32 14.326-32 32v273.005l-41.021-42.326c-12.301-12.688-32.56-13.005-45.251-0.707-12.688 12.301-13.005 32.56-0.707 45.251l96 99.050c6.029 6.218 14.32 9.728 22.979 9.728s16.95-3.51 22.979-9.728l96-99.050z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["download"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":226,"id":136,"name":"download","prevSize":32,"code":59723},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M795.648 132.004c-25.027-25.027-65.603-25.027-90.63-0l-530.467 530.469c-9.577 9.574-15.873 21.939-17.985 35.318l-19.611 124.186c-1.386 8.771-0.942 17.299 1.006 25.261 7.597 31.037 38.083 53.44 72.291 48.038l124.184-19.613c13.379-2.112 25.744-8.41 35.322-17.984l530.467-530.47c12.512-12.513 18.768-28.914 18.768-45.316 0-10.379-2.506-20.757-7.517-30.15-2.906-5.451-6.656-10.57-11.251-15.164l-104.576-104.575zM630.675 296.979l119.658-119.658 104.576 104.574-119.658 119.657-104.576-104.573zM200.255 831.974l19.611-124.186 365.494-365.494 104.576 104.573-365.494 365.494-124.187 19.613z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["edit"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":227,"id":135,"name":"edit","prevSize":32,"code":59724},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM353.226 720c8.963 0 17.526-3.53 24.272-9.437 21.603-18.918 42.64-31.958 62.701-40.509 36.563-15.59 71.805-17.107 104.794-9.939 37.632 8.176 72.659 27.808 102.109 51.341 6.726 5.376 14.995 8.544 23.606 8.544 30.218 0 45.616-34.256 22.397-53.594-36.912-30.742-82.79-57.59-134.522-68.832-44.794-9.734-93.67-7.632-143.485 13.606-28.79 12.275-57.232 30.653-85.024 55.933-21.572 19.619-6.010 52.886 23.152 52.886z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji-bad-mood"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":228,"id":134,"name":"emoji-bad-mood","prevSize":32,"code":59725},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM400.166 480c-35.347 0-64-28.653-64-64s28.653-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64zM688.166 416c0-35.347-28.653-64-64-64s-64 28.653-64 64c0 35.347 28.653 64 64 64s64-28.653 64-64zM384 640h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32s14.326-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji-neutral-mood"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":229,"id":133,"name":"emoji-neutral-mood","prevSize":32,"code":59726},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M330.074 644.886c-21.572-19.619-6.010-52.886 23.152-52.886 8.963 0 17.526 3.53 24.272 9.437 21.603 18.918 42.64 31.958 62.701 40.509 36.563 15.59 71.805 17.107 104.794 9.939 37.632-8.176 72.659-27.808 102.109-51.341 6.726-5.376 14.995-8.544 23.606-8.544 30.218 0 45.616 34.256 22.397 53.594-36.912 30.742-82.79 57.59-134.522 68.832-44.794 9.734-93.67 7.632-143.485-13.606-28.79-12.275-57.232-30.653-85.024-55.933z","M400.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M624.17 480c35.344 0 64-28.653 64-64s-28.656-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64z","M928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":230,"id":132,"name":"emoji","prevSize":32,"code":59727},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M655.744 512c88.365 0 160-71.635 160-160s-71.635-160-160-160c-88.368 0-160 71.635-160 160 0 26.934 6.653 52.314 18.41 74.582l-11.914 11.914 0.128 0.131-299.135 299.136c-3.533 9.926-6.41 20.976-7.738 31.606-1.652 13.219-0.563 22.966 1.874 28.938 1.768 4.333 4.22 7.232 10.772 9.014 8.316 2.262 24.518 2.794 52.822-5.501 8.524-3.808 27.721-16.285 45.132-35.382 18.18-19.939 29.648-41.856 29.648-62.438 0-15.642 11.309-28.992 26.736-31.565l91.75-15.293c3.766-2.656 18.768-15.693 10.134-58.867-2.099-10.49 1.184-21.338 8.749-28.902l88.198-88.195c26.467 19.379 59.114 30.822 94.432 30.822zM439.571 410.915c-5.104-18.771-7.827-38.525-7.827-58.915 0-123.712 100.288-224 224-224 123.709 0 224 100.288 224 224s-100.291 224-224 224c-29.29 0-57.264-5.619-82.906-15.843l-43.008 43.008c7.158 65.494-23.99 104.534-55.968 115.194l-2.384 0.794-74.854 12.477c-7.085 31.405-25.174 58.122-43.235 77.933-23.123 25.357-50.958 44.627-69.762 52.15l-1.324 0.528-1.365 0.41c-34.714 10.416-64.73 13.19-89.594 6.429-26.782-7.286-44.33-24.784-53.228-46.586-8.23-20.163-8.473-42.282-6.126-61.062 2.402-19.216 7.899-37.958 14.042-53.315 1.61-4.022 4.020-7.677 7.084-10.742l286.456-286.458zM623.744 336c0 26.509 21.488 48 48 48 26.509 0 48-21.491 48-48s-21.491-48-48-48c-26.512 0-48 21.49-48 48z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["encrypted"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":231,"id":131,"name":"encrypted","prevSize":32,"code":59728},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M536.89 64c233.677 0 423.11 189.433 423.11 423.11h-423.11v-423.11z","M64 536.89c0-233.678 189.433-423.112 423.11-423.112v423.112h423.11c0 233.677-189.43 423.11-423.11 423.11-233.677 0-423.11-189.434-423.11-423.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["engagement-dashboard"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":232,"id":130,"name":"engagement-dashboard","prevSize":32,"code":59729},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M416 586.445v177.232l75.514-62.928c11.869-9.888 29.104-9.888 40.973 0l75.514 62.928v-177.232c-29.098 13.821-61.645 21.555-96 21.555s-66.902-7.734-96-21.555zM352 540.768v291.232c0 12.416 7.184 23.712 18.426 28.979 11.245 5.267 24.522 3.552 34.061-4.397l107.514-89.594 107.514 89.594c9.539 7.949 22.816 9.664 34.061 4.397 11.242-5.267 18.426-16.563 18.426-28.979v-291.232c39.59-40.403 64-95.734 64-156.768 0-123.712-100.288-224.001-224-224.001s-224 100.288-224 224.001c0 61.034 24.41 116.365 64 156.768zM416 512.013l-0.016-0.013c-38.854-29.19-63.984-75.661-63.984-128 0-88.366 71.635-160.001 160-160.001s160 71.635 160 160.001c0 52.339-25.13 98.81-63.984 128l-0.016 0.013c-26.742 20.083-59.981 31.987-96 31.987s-69.258-11.904-96-31.987z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["enterprise-feature"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":233,"id":129,"name":"enterprise-feature","prevSize":32,"code":59730},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M500.64 128c213.35 0 386.336 172.985 386.336 386.336 0 192.87-141.254 352.707-325.974 381.664v-269.958h90.022l17.114-111.706h-107.136v-72.47c0-11.462 2.102-22.822 7.274-32.544 2.474-4.656 5.651-8.934 9.635-12.666 9.866-9.245 24.688-15.152 46.058-15.152h48.733v-95.080c0 0-44.224-7.552-86.493-7.552-84.698 0-141.258 49.313-145.651 138.907-0.182 3.738-0.275 7.546-0.275 11.424v85.133h-98.122v111.706h98.122v269.958c-184.721-29.011-325.978-188.848-325.978-381.664 0-213.351 172.985-386.336 386.336-386.336z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["facebook-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":30,"id":126,"name":"facebook-monochromatic","prevSize":32,"code":59731},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M373.334 448c0-17.674 14.326-32 32-32h213.331c17.674 0 32 14.326 32 32s-14.326 32-32 32h-213.331c-17.674 0-32-14.326-32-32z","M405.334 544c-17.674 0-32 14.326-32 32s14.326 32 32 32h213.331c17.674 0 32-14.326 32-32s-14.326-32-32-32h-213.331z","M256 128c-17.673 0-32 14.327-32 32v704c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-501.744c0-6.672-2.083-13.174-5.962-18.602l-144.467-202.254c-6.006-8.409-15.706-13.4-26.038-13.4h-367.533zM736 372.509v459.491h-448v-640h319.066l128.934 180.509z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-document"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":29,"id":125,"name":"file-document","prevSize":32,"code":59732},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M128 192c-17.673 0-32 14.327-32 32v576.019c0 17.674 14.327 32 32 32h768c17.674 0 32-14.326 32-32v-576.019c0-17.673-14.326-32-32-32h-768zM160 378.301v-122.301h149.333v122.301h-149.333zM160 442.301h149.333v141.722h-149.333v-141.722zM160 648.022h149.333v119.997h-149.333v-119.997zM373.334 768.019v-119.997h490.666v119.997h-490.666zM864 584.022h-490.666v-141.722h490.666v141.722zM864 378.301h-490.666v-122.301h490.666v122.301z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-sheet"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":28,"id":124,"name":"file-sheet","prevSize":32,"code":59733},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M206.667 293.692c-30.421-42.402-0.116-101.442 52.070-101.442h518.572c51.174 0 81.706 57.026 53.334 99.615l-180.678 271.207v220.762c0 46.352-47.693 77.373-90.067 58.582l-121.424-53.85c-23.168-10.275-38.102-33.238-38.102-58.582v-166.304l-193.704-269.988zM777.309 256.334h-518.572l193.705 269.989c7.811 10.89 12.013 23.955 12.013 37.357v166.304l121.424 53.85v-220.762c0-12.646 3.741-25.008 10.752-35.533l180.678-271.205z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":27,"id":123,"name":"filter","prevSize":32,"code":59734},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M623.091 896c-2.806 0-5.296-0.624-7.168-0.938-62-16.858-102.816-39.648-145.811-80.858-55.149-54.010-85.37-125.814-85.37-202.301 0-65.875 56.704-119.571 126.496-119.571s126.496 53.696 126.496 119.571c0 34.963 31.469 63.373 69.792 63.373s69.789-28.41 69.789-63.373c0-135.808-119.642-246.637-266.701-246.637-104.998 0-200.338 57.133-243.334 145.795-14.332 29.347-21.498 63.066-21.498 100.842 0 28.72 2.492 73.363 24.925 131.744 2.804 7.181 2.492 14.675-0.623 21.856-3.116 6.867-9.035 11.862-16.201 14.358-2.804 1.251-6.231 1.562-9.659 1.562-11.84 0-22.433-7.181-26.484-18.106-19.005-50.266-28.353-99.904-28.353-151.728 0-46.205 9.036-88.352 26.795-125.504 52.343-108.019 167.936-177.638 294.432-177.638 178.528 0 323.718 135.804 323.718 302.828 0 65.875-56.704 119.571-126.806 119.571s-126.81-53.696-126.81-119.571c0-34.963-31.469-63.373-69.792-63.373-38.634 0-69.789 28.41-69.789 63.373 0 61.504 24.301 119.261 68.544 162.342 35.206 34.029 68.858 53.072 120.576 67.123 7.168 1.872 13.398 6.557 17.136 13.11 3.741 6.557 4.675 14.362 2.806 21.229-2.806 11.866-14.022 20.918-27.107 20.918zM426.803 888.195c-7.789 0-15.267-3.123-20.253-8.742-33.338-32.781-51.718-54.010-77.891-100.525-26.795-47.142-41.127-105.21-41.127-167.338 0-116.448 100.948-211.357 224.951-211.357s224.954 94.909 224.954 211.357c0 15.61-12.464 28.096-28.352 28.096-15.891 0-28.666-12.173-28.666-28.096 0-85.542-75.398-155.162-168.246-155.162s-168.246 69.619-168.246 155.162c0 52.448 11.84 100.528 34.272 139.552 23.366 41.52 38.947 59.005 68.858 88.662 10.902 11.238 10.902 28.723 0 39.648-5.92 5.933-13.088 8.742-20.253 8.742zM699.738 818.886c-47.36 0-88.797-11.862-123.382-34.963-59.197-39.651-94.717-103.962-94.717-172.333 0-15.61 12.464-28.099 28.352-28.099 15.891 0 28.355 12.49 28.355 28.099 0 49.638 26.17 96.781 69.789 125.501 25.238 16.861 55.149 24.976 91.603 24.976 7.789 0 22.432-0.934 38.010-3.744 1.558-0.314 3.427-0.314 4.986-0.314 13.709 0 25.238 9.99 27.728 23.414 1.248 7.181-0.31 14.672-4.362 20.605-4.362 6.243-10.902 10.614-18.694 11.862-23.366 4.685-43.93 4.995-47.667 4.995zM188.765 435.824c-5.608 0-11.217-1.562-16.202-4.995-6.543-4.058-10.593-10.614-12.151-18.106-1.246-7.494 0.311-14.986 4.985-21.232 38.635-53.696 87.862-95.843 146.125-125.501 60.132-30.595 129.613-46.829 200.961-46.829 71.037 0 140.205 15.922 200.029 46.205 58.573 29.659 107.802 71.492 146.125 124.567 4.362 5.93 6.23 13.424 4.986 20.915-1.248 7.494-5.61 14.048-11.84 18.419-4.986 3.437-10.595 4.995-16.515 4.995-9.034 0-17.757-4.371-23.056-11.862-33.338-45.891-75.709-82.109-125.562-107.083-52.342-26.224-112.787-40.273-174.477-40.273-62.314 0-122.758 14.049-175.101 40.585-49.852 25.913-92.537 62.128-126.186 108.643-3.739 6.87-12.463 11.552-22.121 11.552zM733.696 239.141c-4.672 0-9.347-1.249-13.395-3.434-71.35-35.902-133.354-51.512-207.504-51.512-74.467 0-144.256 17.483-207.817 51.824-4.050 2.185-8.724 3.122-13.397 3.122-10.282 0-19.629-5.62-24.925-14.361-3.739-6.556-4.673-14.361-2.492-21.541s7.166-13.424 13.709-16.859c72.594-38.712 151.733-58.38 234.924-58.38 82.563 0 154.848 17.795 233.987 58.068 6.854 3.434 11.84 9.366 14.33 16.859 2.182 7.18 1.248 14.673-2.179 21.229-4.986 9.054-14.643 14.985-25.238 14.985z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fingerprint"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":26,"id":122,"name":"fingerprint","prevSize":32,"code":59735},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M266.667 170.664c0-17.673 14.327-32 32-32h500.623c12.122 0 23.2 6.848 28.621 17.689s4.253 23.814-3.021 33.511l-122.134 162.843 122.134 162.845c7.274 9.696 8.442 22.672 3.021 33.51-5.421 10.842-16.499 17.69-28.621 17.69h-468.624v286.579c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-682.667zM330.666 502.752h404.624l-98.134-130.845c-8.531-11.376-8.531-27.021 0-38.4l98.134-130.843h-404.624v300.088z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flag"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":25,"id":121,"name":"flag","prevSize":32,"code":59736},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M140.020 213.336c0-17.673 14.327-32 32-32h234.057c7.181 0 14.157 2.416 19.798 6.86l88.813 69.94h339.997c17.674 0 32 14.327 32 32v520.533c0 17.674-14.326 32-32 32h-682.665c-17.673 0-32-14.326-32-32v-597.333zM204.020 245.336v533.333h618.665v-456.534h-319.085c-7.181 0-14.154-2.415-19.798-6.858l-88.813-69.94h-190.969z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":24,"id":120,"name":"folder","prevSize":32,"code":59737},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M370.704 544c0-17.674-14.326-32-32-32s-31.999 14.326-31.999 32v32h-32c-17.673 0-32 14.326-32 32s14.327 32 32 32h32v32c0 17.674 14.325 32 31.999 32s32-14.326 32-32v-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32h-32v-32z","M746.704 624c30.928 0 56-25.072 56-56s-25.072-56-56-56c-30.928 0-56 25.072-56 56s25.072 56 56 56z","M674.704 664c0 30.928-25.072 56-56 56s-56-25.072-56-56c0-30.928 25.072-56 56-56s56 25.072 56 56z","M706.704 128c0-17.673-14.326-32-32-32s-32 14.327-32 32v96h-128c-17.674 0-32 14.327-32 32v96h-191.999c-106.038 0-192 85.962-192 192v128c0 106.038 85.961 192 192 192h447.999c106.038 0 192-85.962 192-192v-128c0-106.038-85.962-192-192-192h-192v-64h128c17.674 0 32-14.327 32-32v-128zM866.704 544v128c0 70.691-57.306 128-128 128h-447.999c-70.692 0-128-57.309-128-128v-128c0-70.691 57.308-128 128-128h447.999c70.694 0 128 57.309 128 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["game"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":23,"id":119,"name":"game","prevSize":32,"code":59738},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M494.31 170.648l23.037 24.005 23.629-24.005 74.669 0.041v75.854h74.669v75.856h74.666v26.518h0.003v504.419h-522.678v-682.689h252.006zM540.976 246.503h-224.004v530.979h373.341v-379.229h-149.338v-151.75z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["giphy-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":21,"id":117,"name":"giphy-monochromatic","prevSize":32,"code":59739},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M634.803 170.664h-256.112l-264.387 460.802 124.984 221.866h534.916l124.982-221.866-264.384-460.802zM367.814 631.466l138.931-239.789 138.934 239.789h-277.866z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google-drive-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":19,"id":115,"name":"google-drive-monochromatic","prevSize":32,"code":59756},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M129.354 272c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32s-14.326 32-32 32h-704c-17.673 0-32-14.327-32-32zM289.354 432c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM289.354 752c0 17.674-14.327 32-32 32s-32-14.326-32-32c0-17.674 14.327-32 32-32s32 14.326 32 32zM449.354 624c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.326-32 32s14.326 32 32 32zM385.354 400c-17.674 0-32 14.326-32 32s14.326 32 32 32h480c17.674 0 32-14.326 32-32s-14.326-32-32-32h-480zM353.354 752c0-17.674 14.326-32 32-32h480c17.674 0 32 14.326 32 32s-14.326 32-32 32h-480c-17.674 0-32-14.326-32-32zM577.354 560c-17.674 0-32 14.326-32 32s14.326 32 32 32h288c17.674 0 32-14.326 32-32s-14.326-32-32-32h-288z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["group-by-type"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":150,"id":113,"name":"group-by-type","prevSize":32,"code":59757},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M170.668 245.336c0-17.673 14.327-32 32-32h640.846c17.674 0 32 14.327 32 32s-14.326 32-32 32h-640.846c-17.673 0-32-14.327-32-32zM170.668 501.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32zM170.668 757.334c0-17.67 14.327-32 32-32h640.846c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32h-640.846c-17.673 0-32-14.326-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["hamburguer"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":148,"id":111,"name":"hamburguer","prevSize":32,"code":59758},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M832 512c0 176.73-143.27 320-320 320s-320-143.27-320-320h-64c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-123.718 0-233.772 58.508-304 149.364v-101.364c0-17.673-14.327-32-32-32s-32 14.327-32 32v192c0 17.674 14.327 32 32 32h176c17.674 0 32-14.326 32-32s-14.326-32-32-32h-107.295c57.24-86.756 155.583-144 267.295-144 176.73 0 320 143.27 320 320z","M544 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v224c0 8.486 3.373 16.627 9.373 22.627l96 96c12.496 12.496 32.758 12.496 45.254 0s12.496-32.758 0-45.254l-86.627-86.627v-210.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["history"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":145,"id":110,"name":"history","prevSize":32,"code":59759},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M522.042 195.354l224.464 260.044v366.234c0 5.856-4.752 10.605-10.614 10.605h-136.416v-149.821c0-23.424-19.014-42.413-42.47-42.413h-85.955c-23.453 0-42.467 18.989-42.467 42.413v149.821h-136.41c-5.864 0-10.617-4.749-10.617-10.605v-366.307l224.403-259.971c4.237-4.907 11.85-4.907 16.083 0zM560.57 895.856h175.322c41.043 0 74.32-33.232 74.32-74.224v-244.205h56.227c12.454 0 23.766-7.251 28.954-18.557 5.19-11.309 3.302-24.602-4.829-34.022l-320.272-371.033c-29.648-34.347-82.934-34.347-112.582 0l-320.27 371.033c-8.132 9.421-10.020 22.714-4.831 34.022 5.188 11.306 16.501 18.557 28.956 18.557h56.288v244.205c0 40.992 33.274 74.224 74.32 74.224h175.316c1.174 0.096 2.362 0.147 3.562 0.147h85.955c1.2 0 2.39-0.051 3.565-0.147z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":146,"id":109,"name":"home","prevSize":32,"code":59760},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M406.685 405.334c0 47.126-38.205 85.331-85.334 85.331-47.127 0-85.332-38.205-85.332-85.331 0-47.13 38.205-85.334 85.332-85.334 47.13 0 85.334 38.205 85.334 85.334z","M97.352 192c0-17.673 14.327-32 32-32h767.999c17.674 0 32 14.327 32 32v640c0 17.674-14.326 32-32 32h-767.999c-17.673 0-32-14.326-32-32v-640zM161.352 764.163l151.704-176.989c9.271-10.813 24.57-14.202 37.536-8.307l153.123 69.603 160.474-204.24c6.010-7.651 15.174-12.15 24.902-12.23s18.963 4.272 25.098 11.821l151.162 186.048v-405.869h-703.999v540.163zM214.927 800h650.423v-68.64l-175.581-216.099-166.781 212.269-176.989-80.448-131.073 152.918z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["image"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":147,"id":108,"name":"image","prevSize":32,"code":59761},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M512 873.027c-199.389 0-361.026-161.635-361.026-361.024s161.636-361.026 361.026-361.026c199.389 0 361.024 161.637 361.024 361.026s-161.635 361.024-361.024 361.024zM512 938.669c235.642 0 426.666-191.024 426.666-426.666s-191.024-426.667-426.666-426.667c-235.642 0-426.667 191.025-426.667 426.667s191.025 426.666 426.667 426.666zM544.819 347.901c0 18.125-14.694 32.819-32.819 32.819-18.128 0-32.822-14.694-32.822-32.819 0-18.128 14.694-32.821 32.822-32.821 18.125 0 32.819 14.693 32.819 32.821zM512 413.542c-18.128 0-32.822 14.694-32.822 32.819v229.744c0 18.125 14.694 32.819 32.822 32.819 18.125 0 32.819-14.694 32.819-32.819v-229.744c0-18.125-14.694-32.819-32.819-32.819z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["info"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":144,"id":107,"name":"info","prevSize":32,"code":59762},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M512 864c-194.404 0-352-157.597-352-352s157.596-352 352-352c194.403 0 352 157.596 352 352s-157.597 352-352 352zM512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.75 0-416 186.25-416 416s186.25 416 416 416zM662.627 361.373c12.496 12.496 12.496 32.758 0 45.254l-105.373 105.373 105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-105.373-105.373-105.373 105.373c-12.496 12.496-32.758 12.496-45.254 0s-12.496-32.758 0-45.254l105.373-105.373-105.373-105.373c-12.496-12.496-12.496-32.758 0-45.254s32.758-12.496 45.254 0l105.373 105.373 105.373-105.373c12.496-12.496 32.758-12.496 45.254 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["input-clear"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":143,"id":106,"name":"input-clear","prevSize":32,"code":59763},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M384 288c-17.674 0-32 14.327-32 32s14.326 32 32 32h256c17.674 0 32-14.326 32-32s-14.326-32-32-32h-256z","M352 448c0-17.674 14.326-32 32-32h256c17.674 0 32 14.326 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M512 640c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M224 224v576c0 35.347 28.654 64 64 64h448c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-448c-35.346 0-64 28.654-64 64zM288 800v-576h448v576h-448z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["instance"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":18,"id":105,"name":"instance","prevSize":32,"code":59764},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M544 352c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.674 0-32 14.327-32 32s14.326 32 32 32zM559.61 436.995c2.755-17.456-9.162-33.843-26.618-36.598-17.456-2.758-33.843 9.162-36.598 26.618l-48 304c-2.758 17.456 9.158 33.843 26.618 36.598 17.456 2.755 33.84-9.162 36.598-26.618l48-304z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["italic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":17,"id":104,"name":"italic","prevSize":32,"code":59765},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M497.136 169.372c12.499 12.497 12.499 32.758 0 45.255l-35.958 35.96c1.078-0.016 2.163-0.025 3.245-0.025h191.152c115.11 0 208.426 93.316 208.426 208.426 0 115.107-93.315 208.422-208.426 208.422h-15.574v-64h15.574c79.763 0 144.426-64.659 144.426-144.422 0-79.766-64.662-144.426-144.426-144.426h-191.152c-1.030 0-2.058 0.011-3.082 0.032l35.795 35.796c12.499 12.499 12.499 32.758 0 45.258-12.496 12.496-32.758 12.496-45.254 0l-90.509-90.511c-12.496-12.497-12.496-32.758 0-45.255l90.509-90.51c12.496-12.497 32.758-12.497 45.254 0zM201.318 500.746h56.159v325.818h-59.023v-268.387h-1.909l-76.204 48.682v-54.090l80.977-52.022zM570.41 719.494c0 64.749-48.045 111.523-116.931 111.523-63.638 0-110.886-38.979-112.48-93.069h57.274c2.070 26.726 25.773 45.341 55.206 45.341 34.838 0 59.978-25.933 59.818-62.365 0.16-36.909-25.613-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.024-168h188.998v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.184 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["jump-backward"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":16,"id":103,"name":"jump-backward","prevSize":32,"code":59766},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M494.861 169.372c-12.496 12.497-12.496 32.758 0 45.255l35.962 35.96c-1.082-0.016-2.163-0.025-3.248-0.025h-191.149c-115.111 0-208.426 93.316-208.426 208.426 0 115.107 93.315 208.422 208.426 208.422h15.574v-64h-15.574c-79.764 0-144.426-64.659-144.426-144.422 0-79.766 64.661-144.426 144.426-144.426h191.149c1.030 0 2.061 0.011 3.085 0.032l-35.798 35.796c-12.496 12.499-12.496 32.758 0 45.258 12.499 12.496 32.758 12.496 45.258 0l90.509-90.511c12.496-12.497 12.496-32.758 0-45.255l-90.509-90.51c-12.499-12.497-32.758-12.497-45.258 0zM521.318 500.746h56.157v325.818h-59.021v-268.387h-1.91l-76.205 48.682v-54.090l80.979-52.022zM890.41 719.494c0 64.749-48.048 111.523-116.934 111.523-63.635 0-110.886-38.979-112.477-93.069h57.274c2.067 26.726 25.773 45.341 55.203 45.341 34.842 0 59.978-25.933 59.821-62.365 0.157-36.909-25.616-63.318-61.411-63.475-19.568-0.16-40.25 7.955-51.226 20.045l-53.296-8.749 17.021-168h189.002v49.318h-140.16l-9.386 86.384h1.91c12.090-14.317 35.475-24.816 61.885-24.816 59.181 0 102.774 45.181 102.774 107.862z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["jump-forward"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":15,"id":102,"name":"jump-forward","prevSize":32,"code":59767},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M769.296 649.373c12.496 12.496 12.496 32.758 0 45.254l-192 192c-12.499 12.496-32.758 12.496-45.258 0l-192-192c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.258 0l137.37 137.373v-578.746h-192v192c0 17.674-14.325 32-31.999 32s-32-14.326-32-32v-224c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v610.746l137.373-137.373c12.499-12.496 32.758-12.496 45.258 0z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["jump-to-message"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":14,"id":101,"name":"jump-to-message","prevSize":32,"code":59768},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M576 256c0 35.346-28.653 64-64 64s-64-28.654-64-64c0-35.346 28.653-64 64-64s64 28.654 64 64z","M576 512c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z","M576 768c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["kebab"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":13,"id":100,"name":"kebab","prevSize":32,"code":59769},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M160 224c-35.346 0-64 28.654-64 64v448c0 35.347 28.654 64 64 64h704c35.347 0 64-28.653 64-64v-448c0-35.346-28.653-64-64-64h-704zM160 288h704v448h-704v-448zM256 352c-17.673 0-32 14.326-32 32s14.327 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM256 512c0-17.674 14.327-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.673 0-32-14.326-32-32zM480 480c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM640 512c0-17.674 14.326-32 32-32h64c17.674 0 32 14.326 32 32s-14.326 32-32 32h-64c-17.674 0-32-14.326-32-32zM480 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64zM320 640c0-17.674 14.326-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-320c-17.674 0-32-14.326-32-32zM704 352c-17.674 0-32 14.326-32 32s14.326 32 32 32h64c17.674 0 32-14.326 32-32s-14.326-32-32-32h-64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["keyboard"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":12,"id":99,"name":"keyboard","prevSize":32,"code":59770},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M681.904 256c0-17.673-14.326-32-32-32s-32 14.327-32 32v56.875l-80.346 13.998c-17.411 3.034-29.069 19.61-26.035 37.021 3.034 17.408 19.61 29.066 37.021 26.032l69.36-12.086v69.373c-30.384 6.851-60.461 20.074-84.154 43.139-27.923 27.184-44.070 65.238-44.070 113.808 0 25.741 6.262 48.262 18.451 66.621 12.186 18.349 29.062 30.682 47.251 38 35.357 14.221 76.72 10.173 108.128-4.579l1.206-0.566c31.126-14.621 62.493-29.354 90.723-57.818 21.325-21.507 39.709-49.539 56.848-88.678 5.654 9.498 9.594 20.966 10.285 34.339 1.632 31.526-14.275 82.813-87.955 153.418-12.758 12.227-13.19 32.483-0.963 45.245 12.227 12.758 32.486 13.19 45.245 0.963 80.192-76.851 110.586-145.034 107.59-202.934-2.986-57.658-38.586-96.022-70.675-113.955-20.774-13.014-50.214-22.826-81.216-28.288-16.624-2.931-34.47-4.749-52.694-4.995v-74.243l101.718-17.722c17.411-3.034 29.066-19.61 26.032-37.019-3.034-17.411-19.606-29.066-37.018-26.032l-90.733 15.809v-45.724zM578.394 536.208c10.163-9.891 23.565-17.475 39.51-22.704v138.653c-13.443 2.547-27.485 1.731-38.634-2.752-7.712-3.104-13.658-7.757-17.824-14.029-4.157-6.262-7.766-15.997-7.766-31.216 0-33.35 10.563-54.176 24.714-67.952zM709.994 600.752c-8.682 8.755-17.782 15.706-28.090 22.074v-117.888c14.125 0.24 28.224 1.661 41.587 4.016 13.587 2.397 25.683 5.622 35.763 9.165-16.88 42.038-33.069 66.304-49.261 82.634zM247.704 565.334h98.386l-49.193-184.883-49.193 184.883zM390.851 733.562l-27.734-104.227h-132.442l-27.732 104.227c-4.544 17.078-22.073 27.242-39.152 22.694-17.079-4.544-27.24-22.070-22.696-39.152l106.323-399.598c13.494-50.714 85.462-50.713 98.956 0l106.323 399.598c4.544 17.082-5.616 34.608-22.694 39.152-17.078 4.547-34.608-5.616-39.152-22.694z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["language"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":11,"id":98,"name":"language","prevSize":32,"code":59771},"setIdx":0,"setId":0,"iconIdx":114},{"icon":{"paths":["M253.489 275.612l-13.972 14.271c-37.092 37.883-36.45 98.664 1.435 135.758l145.62 142.573c37.885 37.091 98.666 36.448 135.757-1.437l13.971-14.269c0.723-0.739 1.434-1.488 2.128-2.243l0.102 0.099c5.805-5.904 13.885-9.568 22.822-9.568 17.674 0 32 14.326 32 32 0 9.6-4.227 18.211-10.922 24.077l-0.4 0.41-13.971 14.269c-61.821 63.142-163.12 64.214-226.262 2.394l-145.62-142.576c-63.141-61.818-64.212-163.119-2.392-226.26l13.972-14.27c61.82-63.141 163.121-64.212 226.26-2.392l74.694 73.131c0.976 0.847 1.901 1.752 2.768 2.71l0.374 0.366-0.026 0.026c4.931 5.63 7.923 13.005 7.923 21.078 0 17.674-14.326 32-32 32-7.83 0-15.005-2.813-20.566-7.482l-0.106 0.109-77.837-76.206c-37.882-37.092-98.664-36.45-135.756 1.435zM789.213 768.003l13.974-14.269c37.091-37.885 36.448-98.666-1.437-135.757l-145.619-142.576c-37.885-37.091-98.666-36.448-135.757 1.437l-13.974 14.269c-0.723 0.739-1.43 1.488-2.125 2.243l-0.102-0.099c-5.805 5.907-13.885 9.568-22.822 9.568-17.674 0-32-14.326-32-32 0-9.6 4.227-18.211 10.922-24.077l0.397-0.406 13.974-14.272c61.818-63.142 163.12-64.211 226.259-2.39l145.622 142.573c63.139 61.821 64.211 163.12 2.39 226.262l-13.971 14.269c-61.821 63.142-163.12 64.211-226.262 2.394l-74.691-73.133c-0.976-0.845-1.901-1.75-2.768-2.71l-0.374-0.365 0.026-0.026c-4.934-5.629-7.923-13.005-7.923-21.078 0-17.674 14.326-32 32-32 7.83 0 15.005 2.813 20.566 7.482l0.106-0.109 77.834 76.208c37.885 37.091 98.666 36.448 135.757-1.437z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["link"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":10,"id":97,"name":"link","prevSize":32,"code":59772},"setIdx":0,"setId":0,"iconIdx":115},{"icon":{"paths":["M439.274 704.374c0-33.645 26.278-47.677 72.726-47.677s72.73 14.032 72.73 47.677c0 32.96-13.19 111.069-23.914 149.76-4.963 17.808-22.080 25.171-48.816 25.171s-43.85-7.363-48.813-25.174c-10.717-38.666-23.914-116.688-23.914-149.757zM616.778 870.374l0.026-0.090c6.176-22.291 12.566-53.869 17.386-83.453 4.688-28.787 8.72-60.707 8.72-82.458 0-35.891-15.811-67.802-46.797-87.114-26.035-16.227-57.152-19.926-84.112-19.926-26.957 0-58.077 3.699-84.112 19.926-30.982 19.312-46.797 51.222-46.797 87.114 0 21.805 4.035 53.728 8.726 82.515 4.819 29.578 11.21 61.123 17.379 83.392l0.026 0.086c7.402 26.557 24.982 45.664 46.87 56.467 19.472 9.61 40.426 11.834 57.907 11.834 17.485 0 38.435-2.224 57.907-11.83 21.888-10.8 39.469-29.907 46.87-56.464zM459.635 460.8c0-28.275 23.446-51.2 52.365-51.2s52.365 22.925 52.365 51.2c0 28.278-23.446 51.2-52.365 51.2s-52.365-22.922-52.365-51.2zM512 341.334c-67.478 0-122.182 53.488-122.182 119.466 0 65.981 54.704 119.469 122.182 119.469s122.182-53.488 122.182-119.469c0-65.978-54.704-119.466-122.182-119.466zM677.802 537.254c-6.662 13.792-3.882 31.11 6.278 42.573 14.086 15.894 39.85 17.939 50.205-0.602 19.642-35.174 30.806-75.526 30.806-118.426 0-136.672-113.315-247.465-253.091-247.465-139.779 0-253.092 110.793-253.092 247.465 0 42.899 11.164 83.251 30.806 118.426 10.354 18.541 36.119 16.496 50.205 0.602 10.16-11.462 12.938-28.781 6.275-42.573-11.203-23.187-17.469-49.104-17.469-76.454 0-98.97 82.054-179.199 183.274-179.199s183.27 80.229 183.27 179.199c0 27.35-6.262 53.267-17.469 76.454zM730.16 699.795c-0.304-10.659 3.542-21.072 10.928-28.762 52.771-54.957 85.094-128.902 85.094-210.234 0-169.661-140.666-307.199-314.182-307.199s-314.182 137.538-314.182 307.199c0 81.331 32.323 155.28 85.093 210.234 7.386 7.69 11.234 18.102 10.928 28.762-0.833 29.018-31.273 47.917-52.121 27.715-70.223-68.042-113.718-162.41-113.718-266.71 0-207.363 171.923-375.465 384-375.465s384 168.102 384 375.465c0 104.304-43.498 198.672-113.722 266.714-20.848 20.202-51.286 1.302-52.118-27.718z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["live-streaming"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":9,"id":96,"name":"live-streaming","prevSize":32,"code":59773},"setIdx":0,"setId":0,"iconIdx":116},{"icon":{"paths":["M700.144 361.891c4.685-24.973 34.704-34.093 49.13-13.171 31.994 46.403 50.726 102.653 50.726 163.28s-18.733 116.88-50.726 163.283c-14.426 20.922-44.445 11.802-49.13-13.174l-1.706-9.101c-1.581-8.429 0.384-17.082 4.858-24.403 20.749-33.965 32.704-73.888 32.704-116.605 0-42.714-11.955-82.637-32.704-116.605-4.474-7.318-6.438-15.971-4.858-24.4l1.706-9.104z","M320.704 395.395c-20.748 33.968-32.704 73.891-32.704 116.605 0 42.717 11.956 82.64 32.704 116.605 4.474 7.322 6.438 15.974 4.858 24.403l-1.706 9.101c-4.684 24.976-34.705 34.096-49.128 13.174-31.994-46.403-50.728-102.656-50.728-163.283s18.733-116.877 50.728-163.28c14.424-20.922 44.444-11.802 49.128 13.171l1.706 9.104c1.581 8.429-0.384 17.082-4.858 24.4z","M728.765 209.256l-0.515 2.747c-2.234 11.911 2.534 23.967 11.763 31.821 75.866 64.565 123.987 160.751 123.987 268.175 0 107.427-48.122 203.613-123.987 268.176-9.229 7.856-13.997 19.914-11.763 31.824l0.515 2.746c4.192 22.362 29.69 33.194 47.261 18.746 92.794-76.294 151.974-191.981 151.974-321.491 0-129.507-59.181-245.193-151.974-321.489-17.571-14.448-43.069-3.615-47.261 18.745z","M283.986 243.825c9.228-7.854 13.998-19.911 11.764-31.821l-0.515-2.747c-4.192-22.359-29.69-33.193-47.262-18.745-92.793 76.296-151.973 191.981-151.973 321.489 0 129.51 59.18 245.197 151.973 321.491 17.572 14.448 43.070 3.616 47.262-18.746l0.515-2.746c2.233-11.91-2.536-23.968-11.764-31.824-75.864-64.563-123.986-160.749-123.986-268.176 0-107.424 48.122-203.61 123.986-268.175z","M608 512c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.018 42.979-96 96-96s96 42.982 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["live"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":8,"id":95,"name":"live","prevSize":32,"code":59774},"setIdx":0,"setId":0,"iconIdx":117},{"icon":{"paths":["M397.011 527.334c26.576 0 48.122-21.587 48.122-48.214s-21.546-48.214-48.122-48.214c-26.576 0-48.118 21.587-48.118 48.214s21.542 48.214 48.118 48.214z","M589.491 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M733.853 479.12c0 26.627-21.542 48.214-48.118 48.214s-48.122-21.587-48.122-48.214c0-26.627 21.546-48.214 48.122-48.214s48.118 21.587 48.118 48.214z","M88.039 813.683l119.625 31.283c85.312 22.307 173.45-16.256 238.691-79.709 29.501 4.794 59.875 7.242 90.678 7.242 218.294 0 404.339-122.864 404.339-294.518 0-171.664-186.042-294.52-404.339-294.52-218.314 0-404.351 122.852-404.34 294.523 0 65.072 27.642 125.014 75.655 173.587-2.847 24.835-14.596 44.73-36.049 68.55l-84.261 93.562zM537.034 258.997c183.13 0 331.6 98.043 331.6 218.984 0 120.931-148.47 218.982-331.6 218.982-40.781 0-79.834-4.877-115.91-13.763-36.669 45.6-117.335 109.008-195.697 88.518 25.489-28.304 63.251-76.131 55.168-154.909-46.968-37.779-75.162-86.134-75.162-138.829-0.008-120.95 148.461-218.984 331.6-218.984z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["livechat-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":31,"id":93,"name":"livechat-monochromatic","prevSize":32,"code":59775},"setIdx":0,"setId":0,"iconIdx":119},{"icon":{"paths":["M430.842 103.994c80.698-16.052 164.339-7.813 240.355 23.673 76.013 31.486 140.982 84.806 186.694 153.217s70.109 148.842 70.109 231.117h-64c0-69.619-20.643-137.674-59.322-195.561s-93.654-103.003-157.974-129.645c-64.32-26.642-135.094-33.613-203.376-20.031s-131.002 47.107-180.23 96.335c-49.228 49.228-82.753 111.948-96.335 180.229s-6.611 139.056 20.031 203.376c26.642 64.32 71.759 119.296 129.645 157.974s125.941 59.322 195.561 59.322v64c-82.278 0-162.707-24.397-231.117-70.109-68.411-45.709-121.731-110.682-153.217-186.694v0c-31.486-76.013-39.724-159.658-23.673-240.355 16.052-80.694 55.672-154.819 113.85-212.998s132.304-97.799 212.998-113.85z","M593.158 920.006c-80.698 16.051-164.339 7.814-240.355-23.674-76.014-31.485-140.984-84.806-186.695-153.216s-70.108-148.842-70.108-231.117h64c0 69.619 20.644 137.674 59.323 195.562 38.678 57.885 93.653 103.002 157.973 129.645 64.32 26.64 135.094 33.613 203.376 20.029 68.282-13.581 131.002-47.107 180.23-96.333 49.229-49.229 82.752-111.949 96.333-180.23 13.584-68.282 6.611-139.056-20.029-203.376-26.643-64.32-71.76-119.295-129.645-157.973-57.888-38.678-125.942-59.323-195.562-59.323v-64c82.278 0 162.707 24.398 231.117 70.109 68.413 45.711 121.731 110.681 153.216 186.695v0c31.488 76.013 39.725 159.658 23.674 240.355-16.051 80.694-55.67 154.819-113.85 212.998s-132.304 97.798-212.998 113.85z"],"attrs":[{"fill":"rgb(228, 231, 234)"},{"fill":"rgb(9, 90, 210)"}],"isMulticolor":true,"isMulticolor2":false,"grid":0,"tags":["loading"]},"attrs":[{"fill":"rgb(228, 231, 234)"},{"fill":"rgb(9, 90, 210)"}],"properties":{"order":32,"id":92,"name":"loading","prevSize":32,"code":59776,"codes":[59776,59777]},"setIdx":0,"setId":0,"iconIdx":120},{"icon":{"paths":["M341.334 778.672c-17.674 0-32 14.326-32 32s14.326 32 32 32h341.334c17.674 0 32-14.326 32-32s-14.326-32-32-32h-341.334zM85.335 298.672c0-70.692 57.308-128 128-128h597.334c70.691 0 128 57.308 128 128v298.666c0 70.694-57.309 128-128 128h-597.334c-70.692 0-128-57.306-128-128v-298.666zM213.335 234.672c-35.346 0-64 28.654-64 64v298.666c0 35.347 28.654 64 64 64h597.334c35.344 0 64-28.653 64-64v-298.666c0-35.347-28.656-64-64-64h-597.334zM256 320c0-11.782 9.551-21.333 21.333-21.333h170.667c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.667c-11.782 0-21.333-9.552-21.333-21.334zM277.333 554.666c-11.782 0-21.333 9.552-21.333 21.334s9.551 21.334 21.333 21.334h85.332c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-85.332zM554.666 320c0-11.782 9.552-21.333 21.334-21.333h170.666c11.782 0 21.334 9.551 21.334 21.333s-9.552 21.334-21.334 21.334h-170.666c-11.782 0-21.334-9.552-21.334-21.334zM448 554.666c-11.782 0-21.334 9.552-21.334 21.334s9.552 21.334 21.334 21.334h298.666c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-298.666zM256 448c0-11.782 9.551-21.334 21.333-21.334h213.332c11.782 0 21.334 9.552 21.334 21.334s-9.552 21.334-21.334 21.334h-213.332c-11.782 0-21.333-9.552-21.333-21.334zM618.666 426.666c-11.782 0-21.331 9.552-21.331 21.334s9.549 21.334 21.331 21.334h128c11.782 0 21.334-9.552 21.334-21.334s-9.552-21.334-21.334-21.334h-128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["log-view"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":33,"id":91,"name":"log-view","prevSize":32,"code":59778},"setIdx":0,"setId":0,"iconIdx":121},{"icon":{"paths":["M176 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM521.373 329.373c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.254l-105.373 105.373h418.746c17.674 0 32 14.326 32 32s-14.326 32-32 32h-418.746l105.373 105.373c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0l-160-160c-12.496-12.496-12.496-32.758 0-45.254l160-160z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["login"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":34,"id":90,"name":"login","prevSize":32,"code":59779},"setIdx":0,"setId":0,"iconIdx":122},{"icon":{"paths":["M268.099 96c-17.673 0-32 14.327-32 32v768c0 17.674 14.327 32 32 32h512c17.674 0 32-14.326 32-32v-96c0-17.674-14.326-32-32-32s-32 14.326-32 32v64h-448v-704h448v64c0 17.673 14.326 32 32 32s32-14.327 32-32v-96c0-17.673-14.326-32-32-32h-512zM994.726 489.373l-160-160c-12.496-12.497-32.758-12.497-45.254 0s-12.496 32.758 0 45.254l105.373 105.373h-418.746c-17.674 0-32 14.326-32 32s14.326 32 32 32h418.746l-105.373 105.373c-12.496 12.496-12.496 32.758 0 45.254s32.758 12.496 45.254 0l160-160c12.496-12.496 12.496-32.758 0-45.254z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["logout"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":35,"id":89,"name":"logout","prevSize":32,"code":59780},"setIdx":0,"setId":0,"iconIdx":123},{"icon":{"paths":["M192 736h640v-448h-640v448zM128 256c0-17.673 14.327-32 32-32h704c17.674 0 32 14.327 32 32v512c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512zM305.304 389.082c-14.866-9.555-34.665-5.251-44.222 9.613-9.557 14.867-5.253 34.666 9.613 44.224l241.304 155.123 241.306-155.123c14.864-9.558 19.168-29.357 9.613-44.224-9.558-14.864-29.357-19.168-44.224-9.613l-206.694 132.877-206.696-132.877z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mail"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":36,"id":88,"name":"mail","prevSize":32,"code":59781},"setIdx":0,"setId":0,"iconIdx":124},{"icon":{"paths":["M302.769 192h418.463l23.187 72.727h-0.211l23.792 63.999c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818c0-18.476-14.326-33.454-32-33.454s-32 14.978-32 33.454c0 41.27-31.306 69.818-64 69.818s-64-28.547-64-69.818l23.794-63.999h-0.213l23.188-72.727zM212.406 264.727l36.491-114.448c4.231-13.27 16.56-22.279 30.488-22.279h465.23c13.93 0 26.259 9.009 30.49 22.279l56.896 178.447c0 33.939-12.083 64.925-32 88.515v350.778c0 53.018-42.979 96-96 96h-384c-53.019 0-96-42.982-96-96v-350.778c-19.916-23.59-32-54.576-32-88.515l20.406-63.999zM288 458.33v309.69c0 17.67 14.327 32 32 32h128v-192.019h128v192.019h128c17.674 0 32-14.33 32-32v-309.69c-10.227 2.752-20.95 4.214-32 4.214-38.23 0-72.547-17.52-96-45.302-23.453 27.782-57.77 45.302-96 45.302s-72.547-17.52-96-45.302c-23.453 27.782-57.77 45.302-96 45.302-11.050 0-21.772-1.462-32-4.214z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["marketplace"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":37,"id":87,"name":"marketplace","prevSize":32,"code":59782},"setIdx":0,"setId":0,"iconIdx":125},{"icon":{"paths":["M773.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M517.072 576c-35.344 0-64-28.653-64-64s28.656-64 64-64c35.347 0 64 28.653 64 64s-28.653 64-64 64z","M261.073 576c-35.346 0-64-28.653-64-64s28.654-64 64-64c35.346 0 63.999 28.653 63.999 64s-28.652 64-63.999 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["meatballs"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":38,"id":86,"name":"meatballs","prevSize":32,"code":59783},"setIdx":0,"setId":0,"iconIdx":126},{"icon":{"paths":["M651.36 116.071c-57.242-19.989-105.792-20.069-138.358-20.071v64l-1.002-64c-92.006 0.342-297.345 47.824-381.242 242.995-17.897 38.97-34.758 103.344-34.758 173.005 0 69.958 17.020 146.285 52.216 207.875 23.229 40.653 92.799 131.376 191.179 173.536 94.861 40.656 206.368 52.349 296.49 16.301 16.41-6.563 24.39-25.187 17.827-41.597s-25.187-24.39-41.597-17.827c-69.878 27.952-163.171 20.445-247.51-15.699-80.819-34.64-141.384-112.451-160.821-146.464-28.804-50.41-43.784-115.418-43.784-176.125 0-60.765 15.020-116.182 29.055-146.589l0.184-0.4 0.173-0.406c69.507-162.181 243.823-204.604 323.589-204.605 31.594 0.002 70.877 0.296 117.258 16.493 46.147 16.114 101.389 48.779 161.824 116.767 43.658 49.115 63.533 114.977 69.389 177.713 5.891 63.12-2.854 118.189-11.546 142.093-6.4 17.6-20.429 45.44-59.392 45.699-18.259-0.806-72.822-14.672-83.12-69.568v-235.062c0-17.674-3.414-34.134-29.014-34.134-19.338 0-26.454 16.461-26.454 34.134v34.131c-35.181-39.859-95.402-68.266-152.746-68.266-106.038 0-192 85.962-192 192s85.962 192 192 192c62.179 0 117.658-29.555 152.746-75.386 25.715 71.078 102.57 93.027 137.014 94.134l0.515 0.016h0.512c82.643 0 111.715-64.806 120.086-87.83 12.64-34.762 21.674-99.696 15.12-169.907-6.589-70.595-29.379-151.401-85.277-214.287-66.902-75.265-131.075-114.597-188.557-134.67zM627.2 512c0 70.691-57.309 128-128 128s-128-57.309-128-128c0-70.691 57.309-128 128-128s128 57.309 128 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mention"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":142,"id":85,"name":"mention","prevSize":32,"code":59784},"setIdx":0,"setId":0,"iconIdx":127},{"icon":{"paths":["M477.84 128c104.256 0 181.251 29.018 237.494 70.652l-44.317 44.317c-45.52-31.22-107.747-53.057-193.178-53.057-129.725 0-207.83 53.576-254.529 118.696-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-7.328 80.928 13.761 143.126 51.784 190.499l-43.879 43.878c-50.179-59.901-78.131-139.043-69.441-238.595 0.276-63.411 19.117-157.053 75.696-235.948 58.132-81.063 154.749-144.433 304.573-144.433zM822.848 332.499l-47.008 47.008c16.502 42.634 20.608 78.525 20.608 89.011v0.179c0 19.517 0 31.792-6.621 56.17-7.094 26.109-21.738 65.648-52.554 137.834-5.699 13.357-2.794 25.981 1.261 34.435 3.834 7.99 9.562 14.403 14.595 19.184 10.227 9.712 24.253 18.842 38.544 26.867 7.888 4.429 18.298 8.995 27.613 13.078l1.843 0.81c10.554 4.634 20.726 9.146 29.613 13.894 3.427 1.834 6.298 3.517 8.672 5.030-5.104 3.229-12.035 6.883-20.941 10.765-22.96 10.003-55.328 19.939-93.888 28.128-77.12 16.371-174.73 24.858-263.341 14.973-43.744-4.88-86.826-14.525-126.534-29.229l-47.542 47.542c52.771 23.018 110.492 36.886 167.267 43.222 96.387 10.752 200.71 1.517 282.909-15.936 41.098-8.726 77.731-19.731 105.68-31.907 13.91-6.064 26.618-12.822 36.858-20.342 9.427-6.925 20.739-17.344 25.61-32.016 7.392-22.269-2.957-40.509-12.816-51.139-9.427-10.166-22.106-17.939-32.954-23.738-11.309-6.048-23.626-11.472-33.891-15.978-11.059-4.854-18.934-8.317-24.054-11.194-9.914-5.565-17.437-10.538-22.506-14.57 27.421-64.81 42.214-104.589 50.048-133.424 8.774-32.304 8.797-50.986 8.797-72.64 0-20.106-7.053-75.501-35.267-136.019zM836.038 153.372c12.499-12.497 32.758-12.497 45.254 0 12.499 12.497 12.499 32.758 0 45.255l-682.665 682.665c-12.497 12.499-32.758 12.499-45.255 0-12.497-12.496-12.497-32.755 0-45.254l682.666-682.666z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":57,"id":84,"name":"message-disabled","prevSize":32,"code":59785},"setIdx":0,"setId":0,"iconIdx":128},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.643 51.52 146.602 80.998 235.29 90.893 88.614 9.885 186.224 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.944-10.765-2.378-1.514-5.248-3.197-8.675-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.395-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.83 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.123 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.946 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":58,"id":83,"name":"message","prevSize":32,"code":59786},"setIdx":0,"setId":0,"iconIdx":129},{"icon":{"paths":["M512 128c75.546 0 138.861 52.356 155.645 122.762l-59.645 59.644v-22.405c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 24.067 8.858 46.067 23.488 62.915l-45.322 45.325c-26.182-28.49-42.166-66.499-42.166-108.24v-128c0-88.365 71.635-160 160-160zM561.35 568.243l102.893-102.893c-15.763 48.672-54.221 87.13-102.893 102.893zM288 416c0 72.154 23.181 123.101 55.328 159.078l-45.304 45.302c-43.428-47.35-74.024-113.99-74.024-204.381 0-17.674 14.327-32 32-32s32 14.326 32 32zM478.659 650.938l-51.808 51.808c18.56 6.374 36.579 10.806 53.149 13.635v115.619h-160c-17.673 0-32 14.326-32 32s14.327 32 32 32h384c17.674 0 32-14.326 32-32s-14.326-32-32-32h-160v-115.619c44.64-7.619 99.818-26.896 147.722-64.381 60.704-47.501 108.278-123.286 108.278-236 0-17.674-14.326-32-32-32s-32 14.326-32 32c0 92.086-37.757 149.632-83.722 185.6-46.464 36.358-102.736 51.581-140.278 54.326-9.971-0.73-21.264-2.339-33.341-4.989zM825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":59,"id":82,"name":"microphone-disabled","prevSize":32,"code":59787},"setIdx":0,"setId":0,"iconIdx":130},{"icon":{"paths":["M608 288c0-53.019-42.979-96-96-96s-96 42.981-96 96v128c0 53.021 42.979 96 96 96s96-42.979 96-96v-128zM352 288c0-88.365 71.635-160 160-160s160 71.635 160 160v128c0 88.365-71.635 160-160 160s-160-71.635-160-160v-128zM256 384c17.673 0 32 14.326 32 32 0 92.086 37.757 149.632 83.722 185.6 46.464 36.358 102.736 51.581 140.278 54.326 37.542-2.746 93.814-17.968 140.278-54.326 45.962-35.968 83.722-93.514 83.722-185.6 0-17.674 14.326-32 32-32s32 14.326 32 32c0 112.714-47.574 188.499-108.278 236-47.904 37.485-103.082 56.762-147.722 64.381v115.619h160c17.674 0 32 14.326 32 32s-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32s14.327-32 32-32h160v-115.619c-44.64-7.619-99.818-26.896-147.722-64.381-60.703-47.501-108.278-123.286-108.278-236 0-17.674 14.327-32 32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microphone"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":60,"id":81,"name":"microphone","prevSize":32,"code":59788},"setIdx":0,"setId":0,"iconIdx":131},{"icon":{"paths":["M234.666 170.661c0-47.128 38.205-85.333 85.333-85.333h384.001c47.126 0 85.331 38.205 85.331 85.333v682.667c0 47.13-38.205 85.334-85.331 85.334h-384.001c-47.128 0-85.333-38.205-85.333-85.334v-682.667zM298.666 170.661v682.667c0 11.782 9.551 21.334 21.333 21.334h384.001c11.782 0 21.331-9.552 21.331-21.334v-682.667c0-11.782-9.549-21.333-21.331-21.333h-96.291c-2.653 24.002-23.002 42.672-47.709 42.672h-96c-24.707 0-45.056-18.67-47.709-42.672h-96.292c-11.782 0-21.333 9.551-21.333 21.333z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mobile"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":61,"id":80,"name":"mobile","prevSize":32,"code":59789},"setIdx":0,"setId":0,"iconIdx":132},{"icon":{"paths":["M319.247 231.566c-62.882 49.504-135.086 136.549-141.94 266.127-5.762 108.922 37.404 187.184 89.915 241.51 53.258 55.098 115.702 84.925 144.25 94.438 41.859 13.955 114.269 29.536 234.643-15.603 34.858-13.072 73.165-42.096 108.304-78.426 14.272-14.755 27.616-30.294 39.6-45.773-28.778 9.293-61.699 17.754-96.589 23.594-56.192 9.405-119.29 12.32-179.411-0.237-2.49-0.518-4.96-1.030-7.408-1.536-22.195-4.576-42.733-8.816-62.589-17.648-23.091-10.275-43.805-25.891-69.299-51.386-42.096-42.096-89.142-107.222-89.371-213.843-1.569-34.080 4.622-81.878 13.764-129.216 4.624-23.946 10.142-48.465 16.132-72.003zM345.562 138.217c32.8-17.15 63.709 15.843 53.875 45.907-12.234 37.414-24.586 85.511-33.482 131.58-9.024 46.732-13.949 88.633-12.643 114.7l0.038 0.797v0.8c0 84.915 36.173 134.918 70.627 169.373 22.509 22.509 36.835 32.278 50.064 38.166 13.229 5.885 26.832 8.717 51.085 13.763 1.923 0.4 3.917 0.816 5.978 1.248 49.914 10.426 104.534 8.336 155.76-0.237 65.434-10.954 122.384-31.981 152.374-47.386 17.562-9.021 34.992-2.47 44.477 5.965 9.661 8.589 19.376 27.152 8.886 46.954-20.637 38.95-53.645 84.419-92.182 124.259-38.211 39.51-84.317 76.038-131.834 93.859-135.626 50.858-223.216 34.438-277.354 16.394-36.515-12.173-108.392-46.912-170.026-110.675-62.381-64.534-114.684-159.427-107.81-289.373 10.79-203.979 157.583-317.098 232.165-356.093z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["moon"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":62,"id":79,"name":"moon","prevSize":32,"code":59790},"setIdx":0,"setId":0,"iconIdx":133},{"icon":{"paths":["M144 160c-17.673 0-32 14.327-32 32s14.327 32 32 32h192c17.674 0 32-14.327 32-32s-14.326-32-32-32h-192zM700.4 346.646c11.795-13.165 32.026-14.272 45.187-2.48 13.162 11.795 14.272 32.026 2.477 45.187l-81.222 90.646h216.358c17.674 0 32 14.326 32 32s-14.326 32-32 32h-216.358l81.222 90.646c11.795 13.162 10.685 33.392-2.477 45.187-13.162 11.792-33.392 10.685-45.187-2.48l-129.030-144c-10.893-12.154-10.893-30.554 0-42.707l129.030-144zM112 512c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 640c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192zM112 352c0-17.674 14.327-32 32-32h192c17.674 0 32 14.326 32 32s-14.326 32-32 32h-192c-17.673 0-32-14.326-32-32zM144 800c-17.673 0-32 14.326-32 32s14.327 32 32 32h192c17.674 0 32-14.326 32-32s-14.326-32-32-32h-192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["move-to-the-queue"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":63,"id":78,"name":"move-to-the-queue","prevSize":32,"code":59791},"setIdx":0,"setId":0,"iconIdx":134},{"icon":{"paths":["M809.002 166.758c7.782 6.063 12.333 15.377 12.333 25.242v448h-0.112c0.074 1.734 0.112 3.478 0.112 5.229 0 69.053-57.309 125.030-128 125.030-70.694 0-128-55.978-128-125.030s57.306-125.030 128-125.030c23.312 0 45.171 6.090 64 16.73v-303.86l-384 96.798v409.136c0 69.053-57.309 125.037-128.001 125.037s-128-55.978-128-125.030c0-69.050 57.308-125.027 128-125.027 23.314 0 45.173 6.086 64 16.726v-325.777c0-14.66 9.962-27.446 24.177-31.029l448-112.93c9.568-2.411 19.709-0.276 27.491 5.788z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["musical-note"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":64,"id":77,"name":"musical-note","prevSize":32,"code":59792},"setIdx":0,"setId":0,"iconIdx":135},{"icon":{"paths":["M208 176c-35.346 0-64 28.654-64 64v576c0 35.347 28.654 64 64 64h576c35.347 0 64-28.653 64-64v-576c0-35.346-28.653-64-64-64h-576zM208 240h576v576h-576v-576zM698.627 558.15c-0.189 17.674-14.669 31.846-32.339 31.658-17.674-0.189-31.846-14.669-31.658-32.339l1.318-123.594-309.341 308.774c-12.51 12.483-32.771 12.464-45.256-0.042-12.485-12.509-12.467-32.771 0.042-45.258l309.195-308.624-123.382 1.315c-17.674 0.189-32.154-13.984-32.339-31.654-0.189-17.674 13.984-32.15 31.654-32.339l201.92-2.157c8.605-0.093 16.886 3.286 22.97 9.37 6.086 6.086 9.462 14.365 9.373 22.97l-2.157 201.92z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["new-window"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":65,"id":76,"name":"new-window","prevSize":32,"code":59793},"setIdx":0,"setId":0,"iconIdx":136},{"icon":{"paths":["M781.837 402.634c0-5.245-0.154-10.454-0.461-15.622l-63.539 63.539v265.363h-265.363l-66.979 66.979h425.363c12.944 0 24.611-7.795 29.565-19.754 4.954-11.955 2.214-25.722-6.938-34.874l-51.648-51.648v-273.984zM704.765 217.373l-45.254 45.255c-35.638-35.351-84.704-57.189-138.867-57.189-108.909 0-197.194 88.287-197.194 197.195v196.054l-64.001 64v-260.054c0-144.254 116.941-261.195 261.194-261.195 71.837 0 136.899 29.001 184.122 75.934zM433.578 808.934c0 48.086 38.982 87.066 87.066 87.066s87.066-38.979 87.066-87.066h-174.131zM854.275 190.982c-11.334-11.334-29.709-11.334-41.043 0l-612.732 612.733c-11.333 11.331-11.333 29.709 0 41.040 11.334 11.334 29.709 11.334 41.043 0l612.732-612.731c11.334-11.333 11.334-29.709 0-41.043z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":66,"id":75,"name":"notification-disabled","prevSize":32,"code":59794},"setIdx":0,"setId":0,"iconIdx":137},{"icon":{"paths":["M601.331 808.928h-174.154c0.003 48.090 38.989 87.072 87.078 87.072s87.075-38.982 87.075-87.072zM815.597 731.677c7.274 9.696 8.442 22.669 3.021 33.51s-16.499 17.69-28.621 17.69h-565.996c-12.943 0-24.611-7.798-29.564-19.757-4.953-11.955-2.215-25.718 6.937-34.87l51.653-51.654v-274.032c0-144.272 116.957-261.228 261.229-261.228s261.229 116.956 261.229 261.228v275.629l40.112 53.485zM711.485 715.894v-313.331c0-108.926-88.304-197.228-197.229-197.228-108.928 0-197.229 88.302-197.229 197.228v313.331h394.458z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":67,"id":74,"name":"notification","prevSize":32,"code":59795},"setIdx":0,"setId":0,"iconIdx":138},{"icon":{"paths":["M712.051 512.675v54.89c-0.195 76.736-43.741 143.283-107.44 176.445-5.53-25.67-28.362-44.906-55.683-44.906h-72.502c-31.459 0-56.963 25.501-56.963 56.963v41.427c0 31.462 25.504 56.963 56.963 56.963h72.502c28.509 0 52.128-20.944 56.307-48.288 69.261-26.829 123.962-82.883 148.966-153.030 4.723 1.27 9.69 1.946 14.813 1.946h28.483c31.459 0 56.963-25.504 56.963-56.963v-85.446c0-31.459-25.504-56.963-56.963-56.963h-28.483v-28.483c0-141.572-114.765-256.338-256.336-256.338s-256.339 114.766-256.339 256.338v23.302h-28.483c-31.46 0-56.964 25.504-56.964 56.966v103.571c0 31.459 25.504 56.963 56.964 56.963h28.482c31.46 0 56.964-25.504 56.964-56.963v-36.253h0.149c-0.099-2.576-0.148-5.165-0.148-7.766v-139.821c0-110.111 89.263-199.374 199.375-199.374s199.373 89.263 199.373 199.374v85.446z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["omnichannel"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":123,"id":73,"name":"omnichannel","prevSize":32,"code":59796},"setIdx":0,"setId":0,"iconIdx":139},{"icon":{"paths":["M705.578 633.158c9.507-9.235 24.701-9.018 33.939 0.486 9.238 9.507 9.021 24.701-0.486 33.939l-208.275 202.387c-9.312 9.050-24.138 9.050-33.45 0l-208.276-202.387c-9.506-9.238-9.724-24.432-0.487-33.939 9.237-9.504 24.432-9.722 33.937-0.486l191.549 186.134 191.549-186.134zM705.578 411.584c9.507 9.238 24.701 9.021 33.939-0.486s9.021-24.701-0.486-33.939l-208.275-202.385c-9.312-9.051-24.138-9.051-33.45 0l-208.276 202.385c-9.506 9.238-9.724 24.432-0.487 33.939 9.237 9.504 24.432 9.725 33.937 0.486l191.549-186.134 191.549 186.134z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["order"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":124,"id":72,"name":"order","prevSize":32,"code":59797},"setIdx":0,"setId":0,"iconIdx":140},{"icon":{"paths":["M742.317 652.566c12.666-12.323 12.944-32.582 0.618-45.248-12.323-12.669-32.582-12.944-45.251-0.621l44.634 45.869zM512 832.019l-22.317 22.934c12.422 12.086 32.211 12.086 44.634 0l-22.317-22.934zM326.317 606.698c-12.667-12.323-32.927-12.048-45.252 0.621-12.324 12.666-12.047 32.925 0.619 45.248l44.632-45.869zM697.683 606.698l-208 202.387 44.634 45.869 208-202.387-44.634-45.869zM534.317 809.085l-208-202.387-44.632 45.869 207.999 202.387 44.634-45.869z","M742.317 371.456c12.666 12.323 12.944 32.582 0.618 45.251-12.323 12.666-32.582 12.944-45.251 0.618l44.634-45.869zM512 192.004l-22.317-22.935c12.422-12.087 32.211-12.087 44.634 0l-22.317 22.935zM326.317 417.325c-12.668 12.326-32.927 12.048-45.252-0.618-12.325-12.669-12.048-32.928 0.619-45.251l44.633 45.869zM697.683 417.325l-208-202.386 44.634-45.87 208 202.387-44.634 45.869zM534.317 214.939l-208 202.386-44.633-45.869 207.999-202.387 44.634 45.87z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ordering-ascending"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":125,"id":71,"name":"ordering-ascending","prevSize":32,"code":59798,"codes":[59798,59799]},"setIdx":0,"setId":0,"iconIdx":141},{"icon":{"paths":["M281.684 371.434c-12.667 12.323-12.944 32.582-0.619 45.248 12.324 12.669 32.584 12.944 45.252 0.621l-44.633-45.869zM512 191.981l22.317-22.935c-12.422-12.087-32.211-12.087-44.634 0l22.317 22.935zM697.683 417.302c12.669 12.323 32.928 12.048 45.251-0.621 12.326-12.666 12.048-32.925-0.618-45.248l-44.634 45.869zM326.317 417.302l208-202.387-44.634-45.869-207.999 202.387 44.633 45.869zM489.683 214.916l208 202.387 44.634-45.869-208-202.387-44.634 45.869z","M281.684 652.544c-12.667-12.323-12.944-32.582-0.619-45.251 12.324-12.666 32.584-12.944 45.252-0.618l-44.633 45.869zM512 831.997l22.317 22.934c-12.422 12.086-32.211 12.086-44.634 0l22.317-22.934zM697.683 606.675c12.669-12.326 32.928-12.048 45.251 0.618 12.326 12.669 12.048 32.928-0.618 45.251l-44.634-45.869zM326.317 606.675l208 202.384-44.634 45.872-207.999-202.387 44.633-45.869zM489.683 809.059l208-202.384 44.634 45.869-208 202.387-44.634-45.872z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ordering-descending"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(158, 162, 168)","opacity":0.7}],"properties":{"order":126,"id":70,"name":"ordering-descending","prevSize":32,"code":59800,"codes":[59800,59801]},"setIdx":0,"setId":0,"iconIdx":142},{"icon":{"paths":["M512 928c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.752 0-416.001 186.25-416.001 416s186.25 416 416.001 416zM399.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256zM559.997 383.994c0-17.67 14.326-32 32-32s32 14.33 32 32v256c0 17.674-14.326 32-32 32s-32-14.326-32-32v-256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pause-filled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":128,"id":68,"name":"pause-filled","prevSize":32,"code":59802},"setIdx":0,"setId":0,"iconIdx":144},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352-194.405 0-352.001 157.596-352.001 352s157.596 352 352.001 352c194.403 0 352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416-229.752 0-416.001-186.25-416.001-416s186.25-416 416.001-416c229.75 0 416 186.25 416 416zM399.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32zM559.997 383.994v256c0 17.674 14.326 32 32 32s32-14.326 32-32v-256c0-17.67-14.326-32-32-32s-32 14.33-32 32z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pause"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":129,"id":67,"name":"pause","prevSize":32,"code":59803},"setIdx":0,"setId":0,"iconIdx":145},{"icon":{"paths":["M825.373 153.372c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-672 672c-12.497 12.496-32.758 12.496-45.255 0s-12.497-32.758 0-45.254l672-672zM575.613 569.069l-44.707 44.707c7.846 5.904 15.846 11.453 23.533 16.016 9.2 5.459 22.838 12.579 36.973 13.222 16.224 0.736 31.446-5.302 42.47-10.976 11.741-6.042 22.79-13.824 31.744-20.944 1.053-0.838 2.134-1.232 2.883-1.341 0.403-0.061 0.611-0.032 0.688-0.013l121.094 59.075c-5.578 29.331-20.381 66.771-42.39 92.621-11.229 13.187-23.197 22.038-35.389 26.32-11.597 4.074-25.402 4.762-42.653-1.677-48.422-18.070-103.405-53.152-151.69-89.261-14.026-10.49-27.299-20.922-39.469-30.842l-44.387 44.39c14.186 11.683 29.84 24.061 46.445 36.48 49.808 37.248 110.448 76.56 167.261 97.76 30.275 11.299 59.149 11.238 85.197 2.086 25.45-8.938 46.090-25.786 62.246-44.755 31.866-37.424 50.634-88.144 57.059-126.246 4.72-27.987-11.776-51.77-33.136-62.192l-122.81-59.91c-24.41-11.907-51.462-6-69.834 8.611-7.008 5.571-14.544 10.739-21.443 14.291-5.574 2.867-8.931 3.741-10.314 4.003l-0.093-0.038c-0.992-0.4-3.731-1.514-8.57-4.387-3.277-1.942-6.87-4.301-10.71-7.002zM313.636 589.683l44.389-44.387c-9.92-12.17-20.349-25.44-30.838-39.466-36.109-48.285-71.192-103.267-89.263-151.69-6.437-17.251-5.748-31.056-1.675-42.652 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.291-36.814 92.622-42.392l59.075 121.095c0.019 0.077 0.048 0.285-0.013 0.688-0.109 0.752-0.502 1.83-1.341 2.883-7.12 8.954-14.902 20.003-20.944 31.744-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.134 7.763 27.773 13.222 36.973 4.563 7.686 10.109 15.683 16.013 23.53l44.707-44.707c-2.701-3.837-5.056-7.434-7.002-10.707-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.739 4.006-10.314 3.552-6.899 8.72-14.435 14.291-21.443 14.611-18.371 20.518-45.424 8.611-69.834l-59.91-122.809c-10.422-21.362-34.205-37.856-62.192-33.137-38.103 6.425-88.824 25.194-126.246 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.921 2.087 85.196 21.202 56.813 60.513 117.453 97.761 167.261 12.417 16.605 24.795 32.256 36.478 46.442z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":130,"id":66,"name":"phone-disabled","prevSize":32,"code":59804},"setIdx":0,"setId":0,"iconIdx":146},{"icon":{"paths":["M801.123 657.59c22.474 7.734 50.954 2.582 67.408-20.544 22.4-31.488 44.992-80.624 48.922-129.619 1.99-24.838-0.691-51.344-12.368-75.661-11.949-24.89-32.32-45.35-61.718-58.768-55.165-25.181-125.84-40.262-187.398-49.146-61.946-8.936-117.494-11.98-143.965-11.98v62.469c23.2 0 75.757 2.787 135.043 11.341 59.677 8.611 123.36 22.682 170.381 44.144 16.749 7.645 26.022 17.894 31.344 28.973 5.59 11.651 7.795 26.371 6.413 43.635-2.717 33.843-18.723 70.784-35.52 95.469l-127.398-43.853c-0.067-0.042-0.237-0.17-0.48-0.496-0.451-0.608-0.934-1.651-1.088-2.989-1.296-11.363-3.606-24.678-7.635-37.254-3.786-11.808-10.278-26.842-22.272-37.792-10.451-9.539-25.126-14.15-35.494-16.794-11.914-3.040-25.568-5.181-38.944-6.717-26.858-3.088-55.773-4.093-74.352-4.093v62.47c16.902 0 43.338 0.938 67.219 3.683 11.99 1.379 22.554 3.123 30.64 5.187 5.45 1.389 8.173 2.541 9.162 2.957l0.093 0.038c0.79 1.165 2.544 4.154 4.458 10.125 2.368 7.392 4.045 16.374 5.059 25.267 2.659 23.325 17.61 46.63 43.29 55.469l129.203 44.477zM222.875 657.584c-22.474 7.738-50.954 2.586-67.407-20.544-22.4-31.485-44.993-80.621-48.922-129.616-1.992-24.838 0.691-51.344 12.366-75.664 11.949-24.886 32.321-45.347 61.719-58.765 55.165-25.181 125.841-40.262 187.4-49.146 61.946-8.937 117.494-11.98 143.965-11.98v62.47c-23.2 0-75.757 2.787-135.046 11.341-59.674 8.608-123.358 22.682-170.378 44.144-16.748 7.645-26.024 17.894-31.343 28.973-5.593 11.651-7.797 26.371-6.412 43.635 2.714 33.843 18.721 70.784 35.518 95.469l127.4-43.856c0.067-0.038 0.234-0.166 0.477-0.493 0.454-0.611 0.938-1.651 1.091-2.989 1.296-11.363 3.606-24.682 7.635-37.254 3.786-11.808 10.275-26.842 22.272-37.792 10.448-9.542 25.126-14.15 35.491-16.794 11.917-3.040 25.568-5.181 38.947-6.717 26.858-3.088 55.77-4.093 74.349-4.093v62.47c-16.899 0-43.338 0.938-67.216 3.683-11.99 1.376-22.554 3.123-30.64 5.187-5.453 1.389-8.176 2.541-9.162 2.957l-0.093 0.038c-0.79 1.162-2.547 4.154-4.458 10.125-2.371 7.389-4.045 16.371-5.059 25.267-2.659 23.322-17.61 46.627-43.293 55.469l-129.202 44.474z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone-end"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":131,"id":65,"name":"phone-end","prevSize":32,"code":59805},"setIdx":0,"setId":0,"iconIdx":147},{"icon":{"paths":["M410.502 204.616c-10.419-21.362-34.202-37.856-62.189-33.137-38.104 6.425-88.825 25.194-126.247 57.060-18.972 16.155-35.817 36.795-44.757 62.246-9.15 26.048-9.211 54.919 2.087 85.195 21.202 56.816 60.513 117.456 97.761 167.264 37.482 50.122 74.609 91.552 93.329 110.269l44.173-44.173c-16.406-16.403-51.6-55.536-87.472-103.51-36.11-48.285-71.192-103.264-89.264-151.69-6.437-17.248-5.748-31.056-1.675-42.651 4.283-12.192 13.134-24.16 26.319-35.388 25.849-22.012 63.292-36.814 92.623-42.392l59.075 121.097c0.019 0.074 0.045 0.285-0.013 0.688-0.112 0.749-0.502 1.827-1.344 2.883-7.117 8.95-14.899 20-20.941 31.741-5.674 11.024-11.715 26.246-10.976 42.47 0.643 14.138 7.76 27.773 13.222 36.973 6.275 10.576 14.416 21.741 22.79 32.291 16.806 21.171 36.541 42.326 49.68 55.466l44.173-44.173c-11.952-11.952-29.981-31.309-44.928-50.134-7.504-9.453-13.738-18.157-17.997-25.334-2.87-4.838-3.984-7.578-4.387-8.57l-0.038-0.093c0.266-1.382 1.139-4.736 4.006-10.31 3.552-6.902 8.717-14.438 14.291-21.443 14.611-18.374 20.518-45.424 8.611-69.837l-59.914-122.808zM819.386 613.504c21.36 10.419 37.856 34.202 33.136 62.189-6.426 38.106-25.194 88.826-57.059 126.246-16.157 18.973-36.797 35.818-62.246 44.758-26.048 9.149-54.922 9.21-85.197-2.086-56.813-21.203-117.453-60.515-167.261-97.763-50.122-37.482-91.555-74.608-110.272-93.328l44.173-44.173c16.403 16.406 55.539 51.6 103.51 87.472 48.285 36.109 103.267 71.194 151.69 89.264 17.248 6.435 31.056 5.747 42.653 1.674 12.192-4.282 24.16-13.133 35.386-26.317 22.013-25.85 36.816-63.293 42.394-92.624l-121.094-59.075c-0.077-0.019-0.288-0.048-0.688 0.013-0.752 0.112-1.83 0.502-2.886 1.344-8.95 7.117-20 14.899-31.741 20.941-11.024 5.674-26.246 11.715-42.47 10.976-14.134-0.643-27.773-7.76-36.973-13.222-10.576-6.275-21.741-14.416-32.288-22.79-21.174-16.806-42.33-36.541-55.469-49.68l44.173-44.173c11.952 11.952 31.309 29.981 50.134 44.928 9.453 7.504 18.16 13.738 25.334 17.997 4.838 2.87 7.578 3.984 8.57 4.387l0.093 0.038c1.382-0.266 4.739-1.139 10.314-4.006 6.899-3.552 14.435-8.717 21.44-14.291 18.374-14.611 45.427-20.518 69.837-8.611l122.81 59.914z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":68,"id":64,"name":"phone","prevSize":32,"code":59806},"setIdx":0,"setId":0,"iconIdx":148},{"icon":{"paths":["M512.608 128.019c-72.378-1.376-144.906 25.78-199.307 80.524-54.654 54.999-89.301 136.056-89.301 239.464 0 80.234 44.5 174.87 97.546 252.806 53.066 77.965 120.829 148.157 176.141 175.821l15.194 7.6 14.81-8.326c217.158-122.154 272.31-333.882 272.31-427.898 0-101.731-27.923-181.776-80.179-236.932-52.346-55.248-125.296-81.503-207.213-83.060zM288 448.006c0-88.589 29.353-152.745 70.698-194.351 41.6-41.862 97.072-62.705 152.694-61.648 68.992 1.311 124.038 23.054 161.968 63.088 38.019 40.126 62.64 102.649 62.64 192.914 0 74.55-44.691 253.677-224.176 363.030-39.683-25.61-92.186-79.853-137.37-146.237-50.954-74.864-86.454-156.221-86.454-216.797zM544 416c0-17.674-14.326-32-32-32s-32 14.326-32 32c0 17.674 14.326 32 32 32s32-14.326 32-32zM608 416c0 53.021-42.979 96-96 96s-96-42.979-96-96c0-53.021 42.979-96 96-96s96 42.979 96 96z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin-map"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":69,"id":63,"name":"pin-map","prevSize":32,"code":59807},"setIdx":0,"setId":0,"iconIdx":149},{"icon":{"paths":["M428.346 199.399c17.542-17.543 45.984-17.543 63.53 0 17.542 17.543 17.542 45.986 0 63.53l-43.661 43.659 177.83 177.828 60.339-60.339c24.992-24.995 65.517-24.995 90.509 0l45.254 45.254-331.869 331.869-45.254-45.254c-24.992-24.995-24.992-65.517 0-90.509l60.339-60.339-177.827-177.83-43.661 43.661c-17.543 17.542-45.987 17.542-63.53 0s-17.543-45.987 0-63.53l208.001-207.999zM175.090 362.144c-42.537 42.538-42.537 111.501 0 154.038 42.001 42.003 109.771 42.531 152.42 1.587l87.334 87.334-15.075 15.075c-49.987 49.987-49.987 131.034 0 181.021l67.882 67.882c12.496 12.496 32.758 12.496 45.254 0l167.936-167.933 88.013 92.003c12.218 12.771 32.474 13.219 45.245 1.002 12.771-12.214 13.219-32.47 1.002-45.242l-88.995-93.030 163.923-163.923c12.499-12.496 12.499-32.758 0-45.254l-67.882-67.882c-49.987-49.987-131.030-49.987-181.018 0l-15.907 15.907-87.325-87.323c41.766-42.596 41.51-110.983-0.768-153.262-42.538-42.537-111.504-42.537-154.042 0l-207.998 208z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":70,"id":62,"name":"pin","prevSize":32,"code":59808},"setIdx":0,"setId":0,"iconIdx":150},{"icon":{"paths":["M513.354 160c17.674 0 32 13.133 32 29.333v645.332c0 16.202-14.326 29.334-32 29.334s-32-13.133-32-29.334v-645.332c0-16.2 14.326-29.333 32-29.333z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Pipe"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":71,"id":61,"name":"Pipe","prevSize":32,"code":59809},"setIdx":0,"setId":0,"iconIdx":151},{"icon":{"paths":["M512 928.003c229.75 0 416-186.25 416-416s-186.25-415.999-416-415.999c-229.75 0-416 186.25-416 415.999s186.25 416 416 416zM451.846 357.19l195.258 136.768c14.205 9.952 18.496 30.874 9.578 46.73-2.429 4.323-5.706 7.978-9.578 10.691l-195.258 136.768c-14.205 9.952-32.95 5.165-41.866-10.691-3.037-5.398-4.646-11.645-4.646-18.019v-273.536c0-18.72 13.597-33.894 30.368-33.894 5.712 0 11.309 1.795 16.144 5.184z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play-filled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":72,"id":60,"name":"play-filled","prevSize":32,"code":59810},"setIdx":0,"setId":0,"iconIdx":152},{"icon":{"paths":["M864 512c0-194.404-157.597-352-352-352s-352 157.596-352 352c0 194.403 157.596 352 352 352s352-157.597 352-352zM928 512c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM451.85 357.187l195.254 136.768c14.208 9.949 18.496 30.87 9.581 46.726-2.432 4.326-5.706 7.981-9.581 10.694l-195.254 136.768c-14.208 9.952-32.954 5.165-41.869-10.694-3.037-5.398-4.646-11.642-4.646-18.016v-273.536c0-18.723 13.597-33.898 30.371-33.898 5.709 0 11.306 1.798 16.144 5.187z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["play"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":73,"id":59,"name":"play","prevSize":32,"code":59811},"setIdx":0,"setId":0,"iconIdx":153},{"icon":{"paths":["M448 192c-17.674 0-32 14.327-32 32v128c0 17.674 14.326 32 32 32h128c17.674 0 32-14.326 32-32v-128c0-17.673-14.326-32-32-32h-128z","M416 448c0-17.674 14.326-32 32-32h128c17.674 0 32 14.326 32 32v128c0 17.674-14.326 32-32 32h-128c-17.674 0-32-14.326-32-32v-128z","M416 672c0-17.674 14.326-32 32-32h128c17.674 0 32 14.326 32 32v128c0 17.674-14.326 32-32 32h-128c-17.674 0-32-14.326-32-32v-128z"],"attrs":[{"fill":"rgb(245, 69, 92)"},{"fill":"rgb(245, 69, 92)"},{"fill":"rgb(245, 69, 92)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["priority-high"]},"attrs":[{"fill":"rgb(245, 69, 92)"},{"fill":"rgb(245, 69, 92)"},{"fill":"rgb(245, 69, 92)"}],"properties":{"order":74,"id":58,"name":"priority-high","prevSize":32,"code":59812},"setIdx":0,"setId":0,"iconIdx":154},{"icon":{"paths":["M440 640h144c13.255 0 24 10.745 24 24v144c0 13.255-10.745 24-24 24h-144c-13.255 0-24-10.745-24-24v-144c0-13.255 10.745-24 24-24z","M440 192c-13.254 0-24 10.745-24 24v144c0 13.254 10.746 24 24 24h144c13.254 0 24-10.746 24-24v-144c0-13.255-10.746-24-24-24h-144zM440 416c-13.254 0-24 10.746-24 24v144c0 13.254 10.746 24 24 24h144c13.254 0 24-10.746 24-24v-144c0-13.254-10.746-24-24-24h-144z"],"attrs":[{"fill":"rgb(45, 224, 165)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":true,"isMulticolor2":false,"grid":0,"tags":["priority-low"]},"attrs":[{"fill":"rgb(45, 224, 165)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":75,"id":57,"name":"priority-low","prevSize":32,"code":59813,"codes":[59813,59814]},"setIdx":0,"setId":0,"iconIdx":155},{"icon":{"paths":["M440 416c-13.254 0-24 10.746-24 24v144c0 13.254 10.746 24 24 24h144c13.254 0 24-10.746 24-24v-144c0-13.254-10.746-24-24-24h-144zM440 640c-13.254 0-24 10.746-24 24v144c0 13.254 10.746 24 24 24h144c13.254 0 24-10.746 24-24v-144c0-13.254-10.746-24-24-24h-144z","M440 192h144c13.255 0 24 10.745 24 24v144c0 13.255-10.745 24-24 24h-144c-13.255 0-24-10.745-24-24v-144c0-13.255 10.745-24 24-24z"],"attrs":[{"fill":"rgb(243, 190, 8)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":true,"isMulticolor2":false,"grid":0,"tags":["priority-medium"]},"attrs":[{"fill":"rgb(243, 190, 8)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":76,"id":56,"name":"priority-medium","prevSize":32,"code":59815,"codes":[59815,59816]},"setIdx":0,"setId":0,"iconIdx":156},{"icon":{"paths":["M325.686 430.88l224.49 224.49-126.118 126.118-224.491-224.49 126.12-126.118zM370.941 385.626l192.115-192.117 224.49 224.491-192.115 192.115-224.49-224.49zM585.683 125.627c-12.496-12.497-32.758-12.497-45.254 0l-408.745 408.745c-12.497 12.496-12.497 32.758 0 45.254l269.746 269.747c5.229 5.229 11.818 8.269 18.63 9.123v0.067h0.57c2.278 0.243 4.576 0.243 6.851 0h440.579c17.674 0 32-14.33 32-32 0-17.674-14.326-32.003-32-32.003h-366.566l353.936-353.933c12.496-12.496 12.496-32.758 0-45.254l-269.747-269.746z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["prune"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":77,"id":55,"name":"prune","prevSize":32,"code":59817},"setIdx":0,"setId":0,"iconIdx":157},{"icon":{"paths":["M230.486 636.688c-14.92-9.472-34.694-5.056-44.167 9.862-9.473 14.922-5.057 34.694 9.862 44.166l298.666 189.632c10.47 6.646 23.837 6.646 34.304 0l298.669-189.632c14.918-9.472 19.334-29.245 9.862-44.166-9.475-14.918-29.248-19.334-44.166-9.862l-281.517 178.739-281.514-178.739zM186.319 494.848c9.473-14.922 29.247-19.334 44.167-9.862l281.514 178.739 281.517-178.739c14.918-9.472 34.691-5.059 44.166 9.862 9.472 14.918 5.056 34.694-9.862 44.166l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-14.92-9.472-19.335-29.248-9.862-44.166zM529.152 143.657l298.669 189.629c9.245 5.872 14.848 16.064 14.848 27.014 0 10.954-5.603 21.146-14.848 27.014l-298.669 189.632c-10.467 6.646-23.834 6.646-34.304 0l-298.666-189.632c-9.246-5.869-14.848-16.061-14.848-27.014 0-10.95 5.602-21.142 14.848-27.014l298.666-189.629c10.47-6.647 23.837-6.647 34.304 0zM273.035 360.301l238.965 151.725 238.966-151.725-238.966-151.724-238.965 151.724z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["queue"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":78,"id":54,"name":"queue","prevSize":32,"code":59818},"setIdx":0,"setId":0,"iconIdx":158},{"icon":{"paths":["M161.352 800c-11.706 0-22.477-6.39-28.087-16.666s-5.161-22.79 1.169-32.64l112.304-174.694h-69.387c-17.673 0-32-14.326-32-32v-288c0-17.673 14.327-32 32-32h255.999c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-143.999 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM332.269 561.306l-112.304 174.694h51.916l129.469-201.398v-246.602h-191.999v224h96c11.706 0 22.479 6.39 28.085 16.666 5.61 10.275 5.162 22.79-1.168 32.64zM577.35 800c-11.706 0-22.477-6.39-28.086-16.666s-5.162-22.79 1.171-32.64l112.304-174.694h-69.389c-17.67 0-32-14.326-32-32v-288c0-17.673 14.33-32 32-32h256c17.674 0 32 14.327 32 32v288c0 6.138-1.763 12.144-5.082 17.306l-144 224c-5.888 9.158-16.029 14.694-26.918 14.694h-128zM748.269 561.306l-112.304 174.694h51.917l129.469-201.398v-246.602h-192v224h96c11.706 0 22.48 6.39 28.086 16.666 5.61 10.275 5.162 22.79-1.168 32.64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["quote"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":79,"id":53,"name":"quote","prevSize":32,"code":59819},"setIdx":0,"setId":0,"iconIdx":159},{"icon":{"paths":["M800 544c0 176.73-143.27 320-320 320-176.731 0-320-143.27-320-320s143.269-320 320-320v-64c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384 0-10.778-0.445-21.45-1.315-32h-64.266c1.046 10.525 1.581 21.2 1.581 32zM800 112c0-17.673-14.326-32-32-32s-32 14.327-32 32v112h-112c-17.674 0-32 14.327-32 32s14.326 32 32 32h112v112c0 17.674 14.326 32 32 32s32-14.326 32-32v-112h112c17.674 0 32-14.327 32-32s-14.326-32-32-32h-112v-112zM384 512c35.347 0 64-28.653 64-64s-28.653-64-64-64c-35.347 0-64 28.653-64 64s28.653 64 64 64zM640 448c0 35.347-28.653 64-64 64s-64-28.653-64-64c0-35.347 28.653-64 64-64s64 28.653 64 64zM329.805 589.075c-10.451-14.25-30.477-17.331-44.728-6.88s-17.333 30.477-6.882 44.73c37.658 51.35 77.754 84.624 119.178 102.662 41.741 18.179 82.797 19.99 120.362 11.651 73.469-16.307 132.211-70.87 164.070-114.314 10.451-14.253 7.37-34.278-6.88-44.73-14.253-10.451-34.278-7.37-44.73 6.88-26.81 36.557-73.664 77.994-126.33 89.686-25.501 5.661-52.643 4.474-80.938-7.85-28.608-12.461-60.381-37.187-93.123-81.837z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["reaction-add"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":132,"id":52,"name":"reaction-add","prevSize":32,"code":59820},"setIdx":0,"setId":0,"iconIdx":160},{"icon":{"paths":["M832 512c0-176.73-143.27-320-320-320s-320 143.27-320 320c0 176.73 143.27 320 320 320s320-143.27 320-320zM896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384zM512 704c-106.038 0-192-85.962-192-192s85.962-192 192-192c106.038 0 192 85.962 192 192s-85.962 192-192 192z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["record"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":133,"id":51,"name":"record","prevSize":32,"code":59821},"setIdx":0,"setId":0,"iconIdx":161},{"icon":{"paths":["M896 512h-63.984c0-175.414-145.754-320-328.518-320-115.27 0-215.818 57.513-274.362 144h110.768c17.674 0 32 14.326 32 32s-14.326 32-32 32h-179.904c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v102.32c71.751-91.401 184.589-150.32 311.498-150.32 216.781 0 392.502 171.923 392.502 384 0 1.114 0.010 2.227 0 3.338v-3.338z","M127.997 512h63.986c0 175.414 145.751 320 328.519 320 115.27 0 215.818-57.514 274.358-144h-110.768c-17.67 0-32-14.326-32-32s14.33-32 32-32h179.907c17.67 0 32 14.326 32 32v192c0 17.674-14.33 32-32 32-17.674 0-32-14.326-32-32v-102.32c-71.754 91.402-184.592 150.32-311.498 150.32-216.782 0-392.505-171.923-392.505-384 0-1.082-0.009-2.166 0-3.245v3.245z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["refresh"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":134,"id":50,"name":"refresh","prevSize":32,"code":59822},"setIdx":0,"setId":0,"iconIdx":162},{"icon":{"paths":["M713.718 450.362c0-142.689-115.824-258.362-258.701-258.362-142.878 0-258.704 115.673-258.704 258.362 0 142.691 115.826 258.365 258.704 258.365 142.877 0 258.701-115.674 258.701-258.365zM659.302 699.965c-55.645 45.475-126.774 72.762-204.285 72.762-178.271 0-322.788-144.326-322.788-322.365 0-178.035 144.517-322.362 322.788-322.362 178.269 0 322.787 144.327 322.787 322.362 0 77.408-27.318 148.442-72.854 204.013l186.838 186.592c12.608 12.589 12.608 33.002 0 45.59-12.605 12.589-33.043 12.589-45.648 0l-186.838-186.592z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":136,"id":48,"name":"search","prevSize":32,"code":59823},"setIdx":0,"setId":0,"iconIdx":164},{"icon":{"paths":["M891.494 238.96l-297.475 637.446c-16.854 36.115-69.622 31.459-79.891-7.050l-66-247.498 151.248-189.059-219.994 109.997-226.833-113.418c-35.43-17.715-29.696-69.949 8.733-79.555l681.197-170.3c34.842-8.71 64.202 26.892 49.014 59.436z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send-filled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":137,"id":47,"name":"send-filled","prevSize":32,"code":59824},"setIdx":0,"setId":0,"iconIdx":165},{"icon":{"paths":["M878.022 192.974c7.85 9.521 9.526 22.708 4.31 33.891l-298.669 640.002c-5.69 12.195-18.403 19.526-31.811 18.342-13.405-1.184-24.637-10.627-28.106-23.632l-81.619-306.070-285.772-142.886c-11.978-5.987-18.959-18.8-17.498-32.112s11.056-24.307 24.048-27.552l682.665-170.668c11.974-2.993 24.598 1.165 32.451 10.686zM505.821 545.968l57.082 214.051 233.027-499.35-533.58 133.395 203.606 101.802 69.51-52.131c14.141-10.605 34.198-7.741 44.8 6.4 10.605 14.138 7.741 34.195-6.4 44.8l-68.045 51.034z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":138,"id":46,"name":"send","prevSize":32,"code":59825},"setIdx":0,"setId":0,"iconIdx":166},{"icon":{"paths":["M421.334 256c0-44.183-35.818-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80s80-35.817 80-80zM465.302 288c-14.211 55.206-64.326 96-123.968 96-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.327-32-32s14.327-32 32-32h89.367c14.209-55.207 64.324-96 123.968-96 59.642 0 109.757 40.793 123.968 96h430.698c17.674 0 32 14.327 32 32s-14.326 32-32 32h-430.698zM96 768c0-17.674 14.327-32 32-32h89.367c14.209-55.206 64.324-96 123.968-96 60.781 0 111.67 42.365 124.742 99.181 4.208-2.038 8.934-3.181 13.923-3.181h416c17.674 0 32 14.326 32 32s-14.326 32-32 32h-416c-4.989 0-9.715-1.142-13.923-3.181-13.072 56.816-63.962 99.181-124.742 99.181-59.643 0-109.758-40.794-123.968-96h-89.367c-17.673 0-32-14.326-32-32zM341.334 848c44.182 0 80-35.818 80-80s-35.818-80-80-80c-44.183 0-80 35.818-80 80s35.817 80 80 80zM796.029 543.757c-14.122 55.331-64.298 96.243-124.029 96.243s-109.904-40.912-124.029-96.243c-1.302 0.16-2.627 0.243-3.971 0.243h-416c-17.673 0-32-14.326-32-32s14.327-32 32-32h416c1.344 0 2.669 0.083 3.971 0.243 14.125-55.331 64.298-96.243 124.029-96.243s109.907 40.912 124.029 96.243c1.302-0.16 2.627-0.243 3.971-0.243h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96c-1.344 0-2.669-0.083-3.971-0.243zM752 512c0-44.182-35.818-80-80-80s-80 35.818-80 80c0 44.182 35.818 80 80 80s80-35.818 80-80z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["settings"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":139,"id":45,"name":"settings","prevSize":32,"code":59826},"setIdx":0,"setId":0,"iconIdx":167},{"icon":{"paths":["M520.97 225.57c9.373-9.641 9.373-25.271 0-34.911l-120-123.428c-9.373-9.641-24.566-9.641-33.939 0l-120.001 123.428c-9.372 9.64-9.372 25.27 0 34.911s24.569 9.641 33.941 0l79.029-81.287v323.033c0 13.632 10.746 24.685 24 24.685s24-11.053 24-24.685v-323.033l79.030 81.288c9.373 9.64 24.566 9.64 33.939 0z","M144 288h120v48h-96v312h432v-312h-96v-48h120c13.254 0 24 10.745 24 24v360c0 13.254-10.746 24-24 24h-480c-13.255 0-24-10.746-24-24v-360c0-13.255 10.745-24 24-24z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["share"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":140,"id":44,"name":"share","prevSize":32,"code":59827},"setIdx":0,"setId":0,"iconIdx":168},{"icon":{"paths":["M664.083 405.072c11.638-13.299 10.288-33.517-3.011-45.155s-33.517-10.288-45.155 3.011l-125.251 143.142-39.917-45.619c-11.638-13.299-31.853-14.646-45.155-3.011-13.299 11.638-14.646 31.856-3.008 45.155l64 73.142c6.077 6.944 14.854 10.928 24.080 10.928 9.229 0 18.006-3.984 24.083-10.928l149.334-170.666z","M541.99 143.050c-12.854-3.634-26.448-3.753-39.363-0.345l-264.724 69.849c-29.793 7.861-52.548 33.743-54.753 65.633-23.589 341.205 187.752 520.29 276.51 579.794 33.136 22.211 75.363 22.144 108.416-0.259 88.218-59.792 297.117-239.072 272.611-580.214-2.25-31.321-24.339-56.895-53.504-65.14l-245.194-69.318zM518.957 204.587c1.843-0.487 3.786-0.47 5.622 0.049l245.194 69.318c4.294 1.214 6.838 4.781 7.082 8.139 22.15 308.362-165.306 468.851-244.685 522.65-11.437 7.754-25.363 7.792-36.87 0.077-80.086-53.686-269.606-214.054-248.301-522.218 0.234-3.389 2.833-7.004 7.233-8.164l264.725-69.849z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-check"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":80,"id":43,"name":"shield-check","prevSize":32,"code":59828},"setIdx":0,"setId":0,"iconIdx":169},{"icon":{"paths":["M513.302 142.705c12.915-3.408 26.509-3.289 39.36 0.345l245.197 69.318c29.165 8.245 51.254 33.818 53.504 65.14 24.506 341.142-184.397 520.422-272.611 580.214-33.053 22.403-75.28 22.47-108.416 0.259-88.762-59.504-300.101-238.589-276.511-579.794 2.205-31.89 24.96-57.772 54.753-65.633l264.725-69.849zM535.251 204.637c-1.834-0.519-3.776-0.536-5.622-0.050l-264.723 69.849c-4.4 1.161-6.999 4.775-7.234 8.164-21.305 308.164 168.216 468.532 248.299 522.218 11.507 7.715 25.434 7.677 36.874-0.077 79.379-53.798 266.832-214.288 244.682-522.65-0.24-3.358-2.784-6.925-7.078-8.139l-245.197-69.317z","M490.672 337.334c-19.76 4.672-47.245 12.31-81.149 24.554 20.81 108.771 53.219 187.014 81.149 238.832v-263.386zM492.867 271.316c33.77-6.898 61.805 19.742 61.805 51.125v360.963c0 17.024-10.333 31.747-25.642 37.52-15.67 5.91-33.779 1.331-44.861-12.675-32.656-41.267-106.323-152.95-141.19-354.563-3.242-18.746 7.066-37.695 25.328-44.726 56.186-21.63 99.094-32.442 124.56-37.644z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":81,"id":42,"name":"shield","prevSize":32,"code":59829},"setIdx":0,"setId":0,"iconIdx":170},{"icon":{"paths":["M778.64 213.336c-17.674 0-32 14.327-32 32v533.333c0 17.674 14.326 32 32 32s32-14.326 32-32v-533.333c0-17.673-14.326-32-32-32z","M600.87 341.334c-17.674 0-32 14.33-32 32v405.334c0 17.674 14.326 32 32 32s32-14.326 32-32v-405.334c0-17.67-14.326-32-32-32z","M423.104 810.669c-17.674 0-32-14.326-32-32v-277.334c0-17.67 14.326-32 32-32 17.67 0 32 14.33 32 32v277.334c0 17.674-14.33 32-32 32z","M245.333 597.334c-17.673 0-32 14.33-32 32v149.334c0 17.674 14.327 32 32 32s32-14.326 32-32v-149.334c0-17.67-14.327-32-32-32z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["signal"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":82,"id":41,"name":"signal","prevSize":32,"code":59830},"setIdx":0,"setId":0,"iconIdx":171},{"icon":{"paths":["M289.362 192c13.364 0 25.321 8.305 29.987 20.829l96.001 257.699c6.17 16.56-2.256 34.986-18.816 41.155-16.563 6.17-34.989-2.253-41.158-18.816l-20.477-54.963h-91.074l-20.476 54.963c-6.17 16.563-24.597 24.986-41.158 18.816s-24.986-24.595-18.816-41.155l96-257.699c4.666-12.524 16.622-20.829 29.987-20.829zM311.058 373.904l-21.695-58.238-21.695 58.238h43.391z","M522.131 626.435c-12.154 12.829-11.606 33.082 1.222 45.238l160 151.587c12.342 11.693 31.674 11.693 44.016 0l160-151.587c12.832-12.157 13.376-32.41 1.222-45.238s-32.41-13.376-45.238-1.222l-105.99 100.419v-501.632c0-17.673-14.326-32-32-32s-32 14.327-32 32v501.632l-105.994-100.419c-12.829-12.154-33.082-11.606-45.238 1.222z","M193.362 570.947c-17.673 0-32 14.326-32 32 0 17.67 14.327 32 32 32h116.145l-139.065 142.73c-8.979 9.216-11.565 22.915-6.564 34.771 5.001 11.853 16.617 19.562 29.484 19.562h192.001c17.674 0 32-14.326 32-32s-14.326-32-32-32h-116.146l139.064-142.733c8.979-9.216 11.565-22.915 6.563-34.768-4.998-11.856-16.614-19.562-29.482-19.562h-192.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sort-az"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":83,"id":40,"name":"sort-az","prevSize":32,"code":59831},"setIdx":0,"setId":0,"iconIdx":172},{"icon":{"paths":["M919.258 667.229c12.605-12.253 12.877-32.394 0.605-44.982-12.269-12.589-32.435-12.858-45.040-0.605l-106.112 103.155v-500.8c0-17.568-14.259-31.81-31.853-31.81-17.59 0-31.85 14.242-31.85 31.81v500.8l-106.115-103.155c-12.605-12.253-32.768-11.984-45.040 0.605-12.269 12.589-11.997 32.73 0.608 44.982l160.179 155.718c12.368 12.019 32.070 12.019 44.435 0l160.182-155.718zM560.659 333.667c17.59 0 31.85-14.243 31.85-31.811s-14.259-31.809-31.85-31.809h-432.49c-17.591 0-31.852 14.242-31.852 31.809s14.26 31.811 31.852 31.811h432.49zM464.55 536.099c17.59 0 31.85-14.243 31.85-31.811 0-17.565-14.259-31.808-31.85-31.808h-336.381c-17.591 0-31.852 14.24-31.852 31.808s14.26 31.811 31.852 31.811h336.381zM384.458 722.96c17.594 0 31.853-14.24 31.853-31.808s-14.259-31.811-31.853-31.811h-256.289c-17.591 0-31.852 14.243-31.852 31.811s14.26 31.808 31.852 31.808h256.289z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sort"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":84,"id":39,"name":"sort","prevSize":32,"code":59832},"setIdx":0,"setId":0,"iconIdx":173},{"icon":{"paths":["M593.939 170.244c-20.867-57.726-103.155-55.816-121.322 2.815l-58.976 190.348h-221.513c-58.947 0-86.549 72.944-42.37 111.968l157.591 139.206-53.209 216.928c-14.17 57.77 51.25 101.936 99.533 67.197l177.741-127.875 177.741 127.875c48.285 34.739 113.706-9.427 99.536-67.197l-53.386-217.651 147.888-139.968c42.032-39.779 13.878-110.483-43.99-110.483h-195.443l-69.821-193.164z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star-filled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":85,"id":38,"name":"star-filled","prevSize":32,"code":59833},"setIdx":0,"setId":0,"iconIdx":174},{"icon":{"paths":["M472.618 173.508c18.166-58.554 100.454-60.461 121.322-2.812l69.821 192.91h195.44c57.872 0 86.026 70.611 43.994 110.336l-147.888 139.782 53.386 217.363c14.17 57.696-51.251 101.805-99.536 67.11l-177.741-127.709-177.741 127.709c-48.283 34.691-113.703-9.414-99.533-67.11l53.209-216.64-157.591-139.024c-44.179-38.973-16.577-111.818 42.37-111.818h221.513l58.976-190.098zM603.574 385.334l-69.824-192.91-58.976 190.098c-8.304 26.758-33.085 45.002-61.133 45.002h-221.513l157.59 139.021c17.837 15.731 25.456 40.048 19.789 63.13l-53.209 216.643 177.74-127.709c22.33-16.045 52.426-16.045 74.755 0l177.738 127.709-53.386-217.363c-5.478-22.317 1.456-45.856 18.166-61.648l147.888-139.782h-195.44c-26.957 0-51.024-16.87-60.186-42.189z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":86,"id":37,"name":"star","prevSize":32,"code":59834},"setIdx":0,"setId":0,"iconIdx":175},{"icon":{"paths":["M827.84 520.637c0 169.662-137.538 307.2-307.2 307.2s-307.2-137.538-307.2-307.2c0-169.662 137.538-307.2 307.2-307.2s307.2 137.538 307.2 307.2z","M520.534 827.734c-169.664 0-307.201-137.536-307.201-307.2 0-169.661 137.537-307.198 307.201-307.198 169.661 0 307.2 137.538 307.2 307.198 0 169.664-137.539 307.2-307.2 307.2zM563.2 341.334c0-23.563-19.104-42.665-42.666-42.665-23.565 0-42.669 19.103-42.669 42.665v199.709l144.013 115.21c18.4 14.72 45.251 11.738 59.971-6.662s11.738-45.251-6.662-59.971l-111.987-89.59v-158.694z"],"attrs":[{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(243, 190, 8)"}],"isMulticolor":true,"isMulticolor2":false,"grid":0,"tags":["status-away"]},"attrs":[{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(243, 190, 8)"}],"properties":{"order":239,"id":35,"name":"status-away","prevSize":32,"code":59837,"codes":[59837,59838]},"setIdx":0,"setId":0,"iconIdx":177},{"icon":{"paths":["M827.84 520.637c0 169.662-137.538 307.2-307.2 307.2s-307.2-137.538-307.2-307.2c0-169.662 137.538-307.2 307.2-307.2s307.2 137.538 307.2 307.2z","M520.534 827.734c169.661 0 307.2-137.536 307.2-307.2 0-169.661-137.539-307.198-307.2-307.198-169.664 0-307.201 137.538-307.201 307.198 0 169.664 137.537 307.2 307.201 307.2zM418.134 477.866c-23.565 0-42.669 19.104-42.669 42.669s19.104 42.666 42.669 42.666h204.8c23.562 0 42.666-19.101 42.666-42.666s-19.104-42.669-42.666-42.669h-204.8z"],"attrs":[{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(245, 69, 92)"}],"isMulticolor":true,"isMulticolor2":false,"grid":0,"tags":["status-busy"]},"attrs":[{"fill":"rgb(255, 255, 255)"},{"fill":"rgb(245, 69, 92)"}],"properties":{"order":238,"id":33,"name":"status-busy","prevSize":32,"code":59841,"codes":[59841,59842]},"setIdx":0,"setId":0,"iconIdx":179},{"icon":{"paths":["M825.136 560.653l-84.614-11.040c1.235-9.482 1.878-19.187 1.878-29.085s-0.643-19.603-1.878-29.085l84.614-11.037c1.715 13.13 2.598 26.522 2.598 40.122s-0.883 26.992-2.598 40.125zM804.422 402.934l-78.826 32.688c-7.459-17.99-17.242-34.822-28.992-50.118l67.661-51.994c16.243 21.139 29.802 44.451 40.157 69.424zM707.552 276.796l-51.997 67.662c-15.293-11.754-32.125-21.533-50.115-28.994l32.685-78.825c24.976 10.356 48.288 23.913 69.427 40.157zM560.656 215.925l-11.037 84.616c-9.482-1.237-19.187-1.88-29.085-1.88-9.901 0-19.606 0.643-29.088 1.88l-11.037-84.616c13.133-1.713 26.525-2.597 40.125-2.597 13.597 0 26.992 0.884 40.122 2.597zM402.941 236.639l32.688 78.825c-17.99 7.461-34.822 17.241-50.118 28.994l-51.997-67.662c21.139-16.244 44.454-29.801 69.427-40.157zM276.801 333.51l67.663 51.994c-11.754 15.296-21.536 32.128-28.996 50.118l-78.824-32.688c10.356-24.973 23.913-48.285 40.157-69.424zM215.93 480.406c-1.713 13.13-2.596 26.522-2.596 40.122s0.884 26.992 2.596 40.125l84.617-11.040c-1.237-9.482-1.88-19.187-1.88-29.085s0.643-19.603 1.88-29.085l-84.617-11.037zM236.644 638.122l78.825-32.688c7.46 17.99 17.242 34.822 28.996 50.118l-67.663 51.994c-16.244-21.139-29.801-44.451-40.157-69.424zM333.514 764.259l51.997-67.661c15.296 11.754 32.128 21.533 50.118 28.995l-32.688 78.826c-24.973-10.358-48.288-23.914-69.427-40.16zM480.41 825.133l11.037-84.618c9.482 1.235 19.187 1.878 29.088 1.878 9.898 0 19.603-0.643 29.085-1.878l11.037 84.618c-13.13 1.712-26.525 2.595-40.122 2.595-13.6 0-26.992-0.883-40.125-2.595zM638.125 804.419l-32.685-78.826c17.99-7.462 34.822-17.242 50.115-28.995l51.997 67.661c-21.139 16.246-44.451 29.802-69.427 40.16zM764.266 707.546l-67.661-51.994c11.75-15.296 21.533-32.128 28.992-50.118l78.826 32.688c-10.355 24.973-23.914 48.285-40.157 69.424z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-loading"]},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":91,"id":32,"name":"status-loading","prevSize":32,"code":59843},"setIdx":0,"setId":0,"iconIdx":180},{"icon":{"paths":["M520.534 742.403c-122.534 0-221.868-99.334-221.868-221.869 0-122.531 99.333-221.865 221.868-221.865 122.531 0 221.866 99.334 221.866 221.865 0 122.534-99.334 221.869-221.866 221.869zM520.534 827.734c169.661 0 307.2-137.536 307.2-307.2 0-169.661-137.539-307.198-307.2-307.198-169.664 0-307.201 137.538-307.201 307.198 0 169.664 137.537 307.2 307.201 307.2z"],"attrs":[{"fill":"rgb(158, 162, 168)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-offline"]},"attrs":[{"fill":"rgb(158, 162, 168)"}],"properties":{"order":92,"id":31,"name":"status-offline","prevSize":32,"code":59844},"setIdx":0,"setId":0,"iconIdx":181},{"icon":{"paths":["M819.2 511.997c0 169.662-137.538 307.2-307.2 307.2s-307.2-137.538-307.2-307.2c0-169.662 137.538-307.2 307.2-307.2s307.2 137.538 307.2 307.2z"],"attrs":[{"fill":"rgb(45, 224, 165)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status-online"]},"attrs":[{"fill":"rgb(45, 224, 165)"}],"properties":{"order":93,"id":30,"name":"status-online","prevSize":32,"code":59845},"setIdx":0,"setId":0,"iconIdx":182},{"icon":{"paths":["M499.952 539.082c2.714 0.819 5.462 1.629 8.25 2.429 45.341 13.12 76.643 26.47 93.904 40.048 17.264 13.35 25.894 32.339 25.894 56.966s-9.322 44.074-27.965 58.346c-18.643 14.269-45.456 21.405-80.442 21.405-37.514 0-67.552-8.749-90.106-26.24-15.216-12.077-25.245-27.094-30.090-45.050-3.942-14.605-15.664-27.104-30.794-27.104h-11.843c-15.13 0-27.722 12.378-24.893 27.242 3.514 18.47 10.736 35.514 21.667 51.126 16.339 23.018 39.472 41.2 69.392 54.547 29.92 13.12 62.144 19.68 96.666 19.68 53.168 0 95.632-12.198 127.395-36.595 31.76-24.627 47.642-57.309 47.642-98.048 0-25.549-5.754-47.757-17.261-66.63-6.947-11.626-16.25-22.33-27.91-32.122h99.962c15.13 0 27.395-12.266 27.395-27.395s-12.266-27.392-27.395-27.392h-217.398c-1.709-0.493-3.437-0.986-5.178-1.472-41.658-11.738-71.235-24.627-88.726-38.669-17.261-14.269-25.894-31.645-25.894-52.131 0-25.546 9.091-45.456 27.277-59.725 18.41-14.5 43.958-21.75 76.64-21.75 35.216 0 62.49 8.746 81.824 26.24 13.139 11.731 21.814 26.496 26.022 44.288 3.485 14.723 15.242 27.174 30.371 27.174h11.84c15.13 0 27.702-12.374 24.88-27.238-3.331-17.552-9.974-34.134-19.923-49.75-14.733-23.475-35.677-41.888-62.835-55.237-26.928-13.349-57.654-20.024-92.179-20.024-50.634 0-91.834 13.004-123.594 39.012-31.533 25.779-47.299 58.46-47.299 98.047 0 34.986 12.89 64.445 38.669 88.381 1.050 0.957 2.125 1.907 3.222 2.854h-112.56c-15.13 0-27.395 12.262-27.395 27.392s12.265 27.395 27.395 27.395h225.373z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["strike"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":94,"id":29,"name":"strike","prevSize":32,"code":59846},"setIdx":0,"setId":0,"iconIdx":183},{"icon":{"paths":["M481.35 117.336c0-17.673 14.326-32 32-32s32 14.327 32 32v106.667c0 17.673-14.326 32-32 32s-32-14.327-32-32v-106.667zM771.392 214.631c12.496-12.497 32.758-12.497 45.254 0s12.496 32.758 0 45.255l-75.411 75.413c-12.499 12.496-32.758 12.496-45.254 0-12.499-12.496-12.499-32.759 0-45.255l75.411-75.412zM336.73 694.63c-12.499-12.496-32.759-12.496-45.256 0l-75.495 75.498c-12.497 12.496-12.497 32.755 0 45.254 12.497 12.496 32.758 12.496 45.255 0l75.496-75.498c12.496-12.496 12.496-32.755 0-45.254zM481.35 800.003c0-17.674 14.326-32 32-32s32 14.326 32 32v106.669c0 17.67-14.326 32-32 32s-32-14.33-32-32v-106.669zM213.352 212.001c-12.497 12.497-12.497 32.758 0 45.255l75.349 75.348c12.497 12.496 32.758 12.496 45.254 0 12.499-12.496 12.496-32.757 0-45.254l-75.348-75.349c-12.497-12.497-32.758-12.497-45.255 0zM695.978 739.885c-12.496-12.496-12.496-32.758 0-45.254 12.499-12.496 32.758-12.496 45.254 0l75.331 75.328c12.496 12.496 12.496 32.758 0 45.254-12.499 12.496-32.758 12.496-45.258 0l-75.328-75.328zM87.751 512.003c0 17.674 14.327 32 32 32h106.667c17.673 0 32-14.326 32-32s-14.327-32-32-32h-106.667c-17.673 0-32 14.326-32 32zM801.35 544.003c-17.674 0-32-14.326-32-32s14.326-32 32-32h106.669c17.67 0 32 14.326 32 32s-14.33 32-32 32h-106.669zM668.17 512c0-85.504-69.315-154.816-154.819-154.816-85.507 0-154.819 69.312-154.819 154.816 0 85.507 69.312 154.819 154.819 154.819 85.504 0 154.819-69.312 154.819-154.819zM726.682 512c0 117.821-95.51 213.334-213.331 213.334s-213.335-95.514-213.335-213.334c0-117.821 95.514-213.332 213.335-213.332s213.331 95.511 213.331 213.332z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sun"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":95,"id":28,"name":"sun","prevSize":32,"code":59847},"setIdx":0,"setId":0,"iconIdx":184},{"icon":{"paths":["M930.704 512c0 229.75-186.25 416-416 416s-415.999-186.25-415.999-416c0-229.75 186.25-416 415.999-416s416 186.25 416 416zM570.49 859.603l-41.827-156.102c-4.611 0.33-9.264 0.499-13.958 0.499-4.57 0-9.101-0.16-13.594-0.474l-41.837 156.134c18.058 2.854 36.573 4.339 55.43 4.339 18.986 0 37.616-1.504 55.786-4.397zM438.893 688.451c-47.549-20.454-85.181-59.571-103.674-108.125l-155.029 41.539c33.968 103.485 114.617 185.805 217.045 222.058l41.658-155.472zM162.705 512c0 16.090 1.080 31.926 3.17 47.443l156.906-42.042c-0.051-1.795-0.077-3.594-0.077-5.402 0-4.909 0.186-9.776 0.547-14.595l-156.051-41.814c-2.958 18.368-4.496 37.21-4.496 56.41zM396.31 180.407c-99.16 35.408-177.786 114.033-213.196 213.19l155.535 41.677c19.357-44.352 54.982-79.978 99.334-99.331l-41.674-155.536zM514.704 160c-19.197 0-38.035 1.537-56.4 4.494l41.814 156.053c4.813-0.362 9.68-0.547 14.586-0.547 5.030 0 10.019 0.192 14.95 0.573l41.808-156.021c-18.477-2.995-37.437-4.552-56.758-4.552zM632.512 843.802c102.659-36.451 183.392-119.194 217.094-223.12l-154.973-41.526c-18.291 48.982-56.010 88.493-103.786 109.155l41.664 155.491zM863.699 558.198c1.984-15.117 3.005-30.538 3.005-46.198 0-18.771-1.469-37.197-4.298-55.171l-156.157 41.84c0.301 4.406 0.454 8.851 0.454 13.331 0 1.376-0.013 2.752-0.042 4.122l157.037 42.077zM846.714 394.774c-35.165-99.6-113.885-178.641-213.277-214.247l-41.68 155.559c44.582 19.555 80.314 55.565 99.504 100.342l155.453-41.654zM642.704 512c0-70.691-57.306-128-128-128-70.691 0-128 57.309-128 128s57.309 128 128 128c70.694 0 128-57.309 128-128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["support"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":96,"id":27,"name":"support","prevSize":32,"code":59848},"setIdx":0,"setId":0,"iconIdx":185},{"icon":{"paths":["M368 412.982c-53.592 0-96-42.877-96-94.491 0-51.616 42.408-94.491 96-94.491 53.594 0 96 42.876 96 94.491 0 51.614-42.406 94.491-96 94.491zM368 476.982c88.365 0 160-70.96 160-158.491s-71.635-158.491-160-158.491c-88.365 0-160 70.959-160 158.491s71.635 158.491 160 158.491zM713.6 397.133c-35.92 0-64-28.685-64-62.794s28.080-62.792 64-62.792c35.92 0 64 28.684 64 62.792s-28.080 62.794-64 62.794zM713.6 461.133c70.691 0 128-56.768 128-126.794s-57.309-126.792-128-126.792c-70.691 0-128 56.767-128 126.792s57.309 126.794 128 126.794zM197.459 527.267c27.344-8.707 56.67-9.242 84.319-1.539l48.491 13.51c24.205 6.742 49.882 6.275 73.824-1.347l30.099-9.584c29.475-9.386 61.085-9.962 90.89-1.658 67.962 18.934 114.918 80.333 114.918 150.269v91.987c0 52.518-42.979 95.094-96 95.094h-352c-53.019 0-96-42.576-96-95.094v-103.766c0-62.909 40.999-118.621 101.459-137.872zM264.451 586.758c-15.545-4.333-32.034-4.032-47.407 0.864-33.993 10.822-57.044 42.147-57.044 77.517v103.766c0 17.507 14.327 31.699 32 31.699h352c17.674 0 32-14.192 32-31.699v-91.987c0-41.533-27.885-77.997-68.246-89.242-17.699-4.931-36.474-4.589-53.978 0.986l-30.099 9.584c-35.91 11.434-74.426 12.138-110.737 2.019l-48.489-13.507zM691.2 778.717h140.8c53.021 0 96-42.979 96-96v-30.611c0-56.877-38.614-106.49-93.747-120.454-21.398-5.418-43.853-5.040-65.056 1.098l-16.4 4.746c-21.843 6.323-44.973 6.714-67.018 1.13l-29.805-7.549c-19.907-5.043-40.797-4.691-60.522 1.018-1.066 0.31-2.122 0.634-3.174 0.97 10.71 4.048 20.896 9.539 30.253 16.374l2.429 1.776 15.040 13.206c9.939 8.726 18.141 19.248 24.182 31.014l2.208 4.301 3.677 0.931c33.062 8.374 67.76 7.789 100.525-1.693l16.4-4.749c10.282-2.976 21.171-3.158 31.546-0.531 26.736 6.771 45.462 30.832 45.462 58.413v30.611c0 17.674-14.326 32-32 32h-140.8v64z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["team"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":97,"id":26,"name":"team","prevSize":32,"code":59849},"setIdx":0,"setId":0,"iconIdx":186},{"icon":{"paths":["M223.311 308.609c-47.832 66.7-64.077 147.667-64.077 201.187v1.405l-0.127 1.398c-9.348 103.235 27.547 175.997 86.848 226.374 60.642 51.52 146.602 80.998 235.29 90.893 88.611 9.885 186.221 1.398 263.341-14.973 38.56-8.189 70.928-18.125 93.888-28.128 8.906-3.882 15.837-7.536 20.941-10.765-2.374-1.514-5.245-3.197-8.672-5.030-8.886-4.749-19.059-9.261-29.613-13.894l-1.843-0.81c-9.315-4.083-19.725-8.65-27.613-13.078-14.291-8.026-28.317-17.155-38.544-26.867-5.034-4.781-10.762-11.194-14.595-19.184-4.054-8.454-6.96-21.078-1.261-34.435 30.816-72.186 45.459-111.725 52.554-137.834 6.621-24.378 6.621-36.653 6.621-56.17v-0.179c0-15.51-8.979-86.595-53.776-152.876-43.376-64.174-121.398-125.729-264.832-125.729-129.725 0-207.83 53.576-254.529 118.696zM173.267 272.433c58.132-81.063 154.749-144.433 304.573-144.433 164.896 0 261.594 72.589 315.859 152.878 52.838 78.181 64.416 161.881 64.416 187.641 0 21.654-0.022 40.336-8.797 72.64-7.834 28.835-22.627 68.614-50.048 133.424 5.069 4.032 12.592 9.005 22.506 14.57 5.12 2.877 12.995 6.339 24.054 11.194 10.266 4.506 22.582 9.93 33.891 15.978 10.848 5.798 23.526 13.571 32.954 23.738 9.859 10.63 20.208 28.87 12.816 51.139-4.87 14.672-16.182 25.091-25.61 32.016-10.24 7.52-22.947 14.278-36.858 20.342-27.949 12.176-64.582 23.181-105.68 31.907-82.198 17.453-186.522 26.688-282.909 15.936-96.31-10.746-195.346-43.178-268.313-105.165-74.031-62.893-119.295-154.778-108.551-277.856 0.276-63.411 19.117-157.053 75.696-235.948zM333.952 422.051c0-17.648 14.25-31.955 31.83-31.955h183.008c17.578 0 31.827 14.307 31.827 31.955s-14.25 31.955-31.827 31.955h-183.008c-17.581 0-31.83-14.307-31.83-31.955zM365.782 539.709c-17.581 0-31.83 14.307-31.83 31.955s14.25 31.955 31.83 31.955h224.118c17.578 0 31.827-14.307 31.827-31.955s-14.25-31.955-31.827-31.955h-224.118z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["threads"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":98,"id":25,"name":"threads","prevSize":32,"code":59850},"setIdx":0,"setId":0,"iconIdx":187},{"icon":{"paths":["M353.354 320c0-17.673 14.326-32 32-32h256c17.674 0 32 14.327 32 32s-14.326 32-32 32h-256c-17.674 0-32-14.326-32-32z","M385.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 448c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 416c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M353.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M513.354 544c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M609.354 576c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M385.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M481.354 704c0-17.674 14.326-32 32-32s32 14.326 32 32c0 17.674-14.326 32-32 32s-32-14.326-32-32z","M641.354 672c-17.674 0-32 14.326-32 32s14.326 32 32 32c17.674 0 32-14.326 32-32s-14.326-32-32-32z","M289.353 160h448.001c35.344 0 64 28.654 64 64v576c0 35.347-28.656 64-64 64h-448.001c-35.346 0-64-28.653-64-64v-576c0-35.346 28.654-64 64-64zM289.353 224v576h448.001v-576h-448.001z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["total"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":99,"id":24,"name":"total","prevSize":32,"code":59851},"setIdx":0,"setId":0,"iconIdx":188},{"icon":{"paths":["M713.613 91.356c13.162-11.794 33.392-10.685 45.187 2.477l129.034 144c10.89 12.154 10.89 30.556 0 42.71l-129.034 144.001c-11.795 13.162-32.026 14.269-45.187 2.477-13.162-11.795-14.272-32.026-2.477-45.187l81.222-90.646h-216.358c-17.674 0-32-14.327-32-32s14.326-32 32-32h216.358l-81.222-90.645c-11.795-13.162-10.685-33.393 2.477-45.187zM340.026 464.461c8.586-15.45 28.067-21.018 43.514-12.432l128.461 71.366 128.461-71.366c15.446-8.586 34.928-3.018 43.514 12.432 8.582 15.45 3.014 34.931-12.435 43.514l-159.539 88.634-159.539-88.634c-15.45-8.582-21.018-28.064-12.435-43.514zM192 288v448h640v-192c0-17.674 14.326-32 32-32s32 14.326 32 32v224c0 17.674-14.326 32-32 32h-704c-17.673 0-32-14.326-32-32v-512c0-17.673 14.327-32 32-32h272c17.674 0 32 14.327 32 32s-14.326 32-32 32h-240z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["transcript"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":100,"id":23,"name":"transcript","prevSize":32,"code":59852},"setIdx":0,"setId":0,"iconIdx":189},{"icon":{"paths":["M384 320c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 106.038 85.962 192 192 192s192-85.962 192-192v-256c0-17.673-14.326-32-32-32s-32 14.327-32 32v256c0 70.691-57.309 128-128 128s-128-57.309-128-128v-256zM352 856c-13.254 0-24 10.746-24 24s10.746 24 24 24h320c13.254 0 24-10.746 24-24s-10.746-24-24-24h-320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["underline"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":101,"id":22,"name":"underline","prevSize":32,"code":59853},"setIdx":0,"setId":0,"iconIdx":190},{"icon":{"paths":["M512 832c176.73 0 320-143.27 320-320s-143.27-320-320-320c-111.712 0-210.056 57.244-267.295 144h107.295c17.674 0 32 14.326 32 32s-14.326 32-32 32h-176c-17.673 0-32-14.326-32-32v-192c0-17.673 14.327-32 32-32s32 14.327 32 32v101.364c70.228-90.856 180.282-149.364 304-149.364 212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384h64c0 176.73 143.27 320 320 320z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["undo"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":102,"id":21,"name":"undo","prevSize":32,"code":59854},"setIdx":0,"setId":0,"iconIdx":191},{"icon":{"paths":["M467.808 512c0-63.322-61.053-128-153.903-128s-153.905 64.678-153.905 128c0 63.322 61.054 128 153.905 128s153.903-64.678 153.903-128zM512 592.099c34.454 66.042 110.195 111.901 198.096 111.901 120.346 0 217.904-85.962 217.904-192s-97.558-192-217.904-192c-87.901 0-163.642 45.859-198.096 111.901-34.451-66.042-110.195-111.901-198.095-111.901-120.345 0-217.905 85.962-217.905 192s97.559 192 217.905 192c87.9 0 163.644-45.859 198.095-111.901zM864 512c0 63.322-61.053 128-153.904 128s-153.904-64.678-153.904-128c0-63.322 61.053-128 153.904-128s153.904 64.678 153.904 128z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["Unlimited"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":103,"id":20,"name":"Unlimited","prevSize":32,"code":59855},"setIdx":0,"setId":0,"iconIdx":192},{"icon":{"paths":["M829.168 153.372c12.515-12.497 32.803-12.497 45.315 0 12.515 12.497 12.515 32.758 0 45.255l-672.887 672c-12.513 12.496-32.801 12.496-45.315 0s-12.513-32.758 0-45.254l672.887-672zM110.155 480.051c101.936-153.699 303.797-327.676 542.114-225.436l-49.578 49.512c-56.528-19.209-108.077-19.504-153.526-9.726-114.906 24.721-215.653 118.392-280.79 213.871 38.633 48 75.969 86.822 111.862 117.885l-45.363 45.302c-39.684-34.736-80.189-77.437-121.317-129.181-14.248-17.923-16.056-43.146-3.402-62.227zM797.981 350.454l-45.328 45.27c35.546 31.427 72.336 70.947 110.186 120.080-61.546 95.187-158.656 188.682-272.125 213.626-46.752 10.278-100.624 9.734-160.592-11.603l-49.331 49.267c244.662 107.334 443.389-69.158 540.778-224.253 11.674-18.589 9.894-42.656-3.395-60.128-40.493-53.235-80.64-96.931-120.192-132.259zM514.982 347.43c13.709 0 27.037 1.571 39.802 4.541l-203.738 203.469c-3.901-13.837-5.981-28.403-5.981-43.44 0-90.89 76.074-164.57 169.917-164.57zM679.091 469.184l-203.264 202.998c12.57 2.87 25.68 4.39 39.155 4.39 93.843 0 169.917-73.68 169.917-164.573 0-14.81-2.019-29.162-5.808-42.816z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["unread-on-top-disabled"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":104,"id":19,"name":"unread-on-top-disabled","prevSize":32,"code":59856},"setIdx":0,"setId":0,"iconIdx":193},{"icon":{"paths":["M589.36 729.43c-107.366 23.603-252.288-9.875-422.339-221.158 65.137-95.478 165.885-189.15 280.79-213.871 108.314-23.302 251.286 10.604 413.674 221.404-61.546 95.187-158.653 188.682-272.125 213.626zM916.819 482.714c-347.59-456.963-669.742-211.156-808.018-2.662-12.655 19.082-10.846 44.304 3.402 62.227 362.786 456.419 677.038 209.142 808.011 0.563 11.674-18.589 9.894-42.656-3.395-60.128zM619.462 512c0-53.709-45.517-100.57-105.834-100.57s-105.834 46.861-105.834 100.57c0 53.709 45.517 100.573 105.834 100.573s105.834-46.864 105.834-100.573zM683.546 512c0 90.893-76.074 164.573-169.917 164.573s-169.917-73.68-169.917-164.573c0-90.89 76.074-164.57 169.917-164.57s169.917 73.68 169.917 164.57z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["unread-on-top"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":105,"id":18,"name":"unread-on-top","prevSize":32,"code":59857},"setIdx":0,"setId":0,"iconIdx":194},{"icon":{"paths":["M273.128 356.678c-6.62 27.766-2.384 63.757 25.498 105.581l33.166 49.75h-59.792c-44.011 0-70.484 14.874-86.279 33.619-16.496 19.578-24.573 47.264-23.734 77.491 0.841 30.262 10.601 59.968 25.818 81.312 15.127 21.216 33.404 31.578 52.195 31.578h143.999v64h-144c-45.209 0-80.932-25.642-104.306-58.426-23.283-32.656-36.522-74.95-37.682-116.688-1.16-41.773 9.763-86.083 38.766-120.506 20.726-24.598 49.155-42.32 84.825-50.784-16.1-39.011-19.009-77.050-10.731-111.77 11.253-47.2 42.305-84.492 80.791-107.342 38.4-22.798 85.677-32.139 131.303-21.965 35.584 7.935 68.909 27.48 95.251 59.554 53.75-35.147 127.584-30.892 182.483-2.495 34.438 17.812 64.794 46.382 81.437 85.010 12.294 28.531 16.438 61.011 10.608 96.205 46.112 6.682 81.507 25.155 105.616 53.456 30.346 35.626 38.102 81.35 33.443 123.283-4.659 41.917-21.946 83.485-46.544 115.114-24.061 30.934-59.354 57.354-101.261 57.354h-144v-64h144c14.093 0 32.8-9.581 50.742-32.646 17.398-22.371 30.112-52.806 33.453-82.89 3.341-30.067-2.902-56.339-18.554-74.714-15.222-17.869-44.035-33.75-97.642-33.75h-45.686l15.613-42.938c13.546-37.251 11.091-66.742 1.437-89.149-9.856-22.87-28.502-41.302-52.064-53.488-49.587-25.649-107.475-18.625-134.717 14.064l-30.134 36.16-22.541-41.325c-19.757-36.219-47.232-54.175-74.87-60.339-28.378-6.327-59.098-0.669-84.701 14.53-25.512 15.148-44.461 38.855-51.208 67.152zM630.979 588.778l-96-99.050c-6.029-6.218-14.32-9.728-22.979-9.728s-16.95 3.51-22.979 9.728l-96 99.050c-12.298 12.691-11.981 32.95 0.707 45.251 12.691 12.298 32.95 11.981 45.251-0.707l41.021-42.326v273.005c0 17.674 14.326 32 32 32s32-14.326 32-32v-273.005l41.021 42.326c12.301 12.688 32.56 13.005 45.251 0.707 12.691-12.301 13.005-32.56 0.707-45.251z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["upload"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":106,"id":17,"name":"upload","prevSize":32,"code":59858},"setIdx":0,"setId":0,"iconIdx":195},{"icon":{"paths":["M553.411 326.282c0 91.578-75.846 165.818-169.411 165.818-93.564 0-169.412-74.24-169.412-165.818 0-91.581 75.848-165.821 169.412-165.821 93.565 0 169.411 74.24 169.411 165.821zM485.648 326.282c0-54.949-45.51-99.493-101.648-99.493s-101.647 44.544-101.647 99.493c0 54.947 45.509 99.491 101.647 99.491s101.648-44.544 101.648-99.491z","M203.427 511.232c28.952-9.11 60.004-9.67 89.279-1.61l51.342 14.131c25.632 7.056 52.819 6.566 78.166-1.408l31.872-10.026c31.206-9.821 64.678-10.422 96.234-1.738 71.962 19.811 121.68 84.051 121.68 157.219v96.24c0 54.947-45.51 99.491-101.648 99.491h-372.705c-56.138 0-101.647-44.544-101.647-99.491v-108.566c0-65.814 43.411-124.106 107.427-144.243zM274.359 573.472c-16.46-4.531-33.918-4.218-50.196 0.906-35.992 11.322-60.399 44.093-60.399 81.098v108.566c0 18.317 15.17 33.165 33.882 33.165h372.705c18.714 0 33.882-14.848 33.882-33.165v-96.24c0-43.453-29.523-81.603-72.259-93.366-18.739-5.158-38.618-4.8-57.152 1.030l-31.872 10.026c-38.022 11.962-78.803 12.698-117.248 2.115l-51.343-14.134z","M797.091 189.321c0-15.913-13.024-28.812-29.091-28.812s-29.091 12.9-29.091 28.812v100.844h-101.818c-16.067 0-29.091 12.9-29.091 28.812s13.024 28.812 29.091 28.812h101.818v100.845c0 15.914 13.024 28.813 29.091 28.813s29.091-12.899 29.091-28.813v-100.845h101.818c16.067 0 29.091-12.899 29.091-28.812s-13.024-28.812-29.091-28.812h-101.818v-100.844z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-add"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":107,"id":16,"name":"user-add","prevSize":32,"code":59859},"setIdx":0,"setId":0,"iconIdx":196},{"icon":{"paths":["M464 318.747c0-51.548-42.406-94.366-96-94.366-53.592 0-96 42.819-96 94.366s42.408 94.367 96 94.367c53.594 0 96-42.819 96-94.367zM528 318.747c0 87.416-71.635 158.284-160 158.284s-160-70.867-160-158.284c0-87.417 71.635-158.282 160-158.282s160 70.865 160 158.282zM281.778 525.712c-27.649-7.693-56.976-7.158-84.319 1.536-60.46 19.226-101.459 74.864-101.459 137.69v103.629c0 52.451 42.981 94.97 96 94.97h352c3.606 0 7.165-0.195 10.666-0.579v-64.534c-3.334 1.168-6.925 1.802-10.666 1.802h-352c-17.673 0-32-14.173-32-31.658v-103.629c0-35.325 23.051-66.605 57.044-77.414 15.373-4.89 31.862-5.187 47.407-0.864l48.489 13.491c36.311 10.102 74.827 9.402 110.737-2.016l30.099-9.571c17.504-5.568 36.278-5.91 53.978-0.986 18.899 5.261 35.066 16.042 46.912 30.282v-79.712c-9.309-4.749-19.203-8.627-29.584-11.517-29.805-8.291-61.414-7.715-90.89 1.654l-30.099 9.574c-23.942 7.61-49.619 8.080-73.824 1.344l-48.491-13.491zM763.366 489.709c-12.326-12.646-32.586-12.918-45.248-0.608-12.666 12.31-12.938 32.544-0.611 45.19l102.842 105.51h-324.349c-17.674 0-32 14.307-32 31.958 0 17.648 14.326 31.958 32 31.958h324.349l-102.842 105.507c-12.326 12.65-12.054 32.88 0.611 45.194 12.662 12.31 32.922 12.038 45.248-0.611l155.718-159.757c12.093-12.406 12.093-32.176 0-44.582l-155.718-159.76z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-forward"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":108,"id":15,"name":"user-forward","prevSize":32,"code":59860},"setIdx":0,"setId":0,"iconIdx":197},{"icon":{"paths":["M609.354 336c0-53.019-42.979-96-96-96s-96 42.981-96 96c0 53.021 42.979 96 96 96s96-42.979 96-96zM673.354 336c0 88.365-71.635 160-160 160s-160-71.635-160-160c0-88.365 71.635-160 160-160s160 71.635 160 160zM413.805 551.802c-24.621-5.77-50.285-5.366-74.714 1.178-67.086 17.968-113.738 78.762-113.738 148.211v66.81c0 53.021 42.98 96 96 96h384c53.021 0 96-42.979 96-96v-58.531c0-74.301-51.149-138.826-123.488-155.779l-6.458-1.514c-25.674-6.016-52.435-5.594-77.907 1.229l-49.626 13.293c-20.378 5.456-41.789 5.795-62.326 0.979l-67.744-15.875zM355.651 614.8c14.237-3.814 29.197-4.051 43.549-0.688l67.744 15.878c30.806 7.219 62.925 6.714 93.488-1.472l49.629-13.293c15.283-4.096 31.341-4.349 46.742-0.736l6.458 1.51c43.402 10.173 74.093 48.89 74.093 93.469v58.531c0 17.674-14.326 32-32 32h-384c-17.673 0-32-14.326-32-32v-66.81c0-40.483 27.193-75.917 66.298-86.39z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":109,"id":14,"name":"user","prevSize":32,"code":59861},"setIdx":0,"setId":0,"iconIdx":198},{"icon":{"paths":["M201.583 672c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 576c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 480c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 384c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M201.583 288c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M329.584 192c-17.674 0-32.001 14.327-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M201.583 864c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M329.584 768c-17.674 0-32.001 14.326-32.001 32s14.327 32 32.001 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["view-condensed"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":110,"id":13,"name":"view-condensed","prevSize":32,"code":59862},"setIdx":0,"setId":0,"iconIdx":199},{"icon":{"paths":["M288 192c0-17.673 14.327-32 32-32h544c17.674 0 32 14.327 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.327-32-32zM288 288c0-17.673 14.327-32 32-32h448c17.674 0 32 14.327 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.327-32-32zM192 304c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M288 464c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 560c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M288 736c0-17.674 14.327-32 32-32h544c17.674 0 32 14.326 32 32s-14.326 32-32 32h-544c-17.673 0-32-14.326-32-32zM288 832c0-17.674 14.327-32 32-32h448c17.674 0 32 14.326 32 32s-14.326 32-32 32h-448c-17.673 0-32-14.326-32-32zM192 848c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["view-extended"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":111,"id":12,"name":"view-extended","prevSize":32,"code":59863},"setIdx":0,"setId":0,"iconIdx":200},{"icon":{"paths":["M192 320c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64z","M320 224c-17.673 0-32 14.327-32 32s14.327 32 32 32h544c17.674 0 32-14.327 32-32s-14.326-32-32-32h-544z","M192 576c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 480c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z","M192 832c35.346 0 64-28.653 64-64s-28.654-64-64-64c-35.346 0-64 28.653-64 64s28.654 64 64 64z","M320 736c-17.673 0-32 14.326-32 32s14.327 32 32 32h544c17.674 0 32-14.326 32-32s-14.326-32-32-32h-544z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["view-medium"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":112,"id":11,"name":"view-medium","prevSize":32,"code":59864},"setIdx":0,"setId":0,"iconIdx":201},{"icon":{"paths":["M640.854 256c26.512 0 48-21.49 48-48s-21.488-48-48-48c-26.509 0-48 21.49-48 48s21.491 48 48 48zM640.854 320c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112zM592.854 416v256h-160v128h32v-96h224v-288h-96zM528.854 768h160c35.347 0 64-28.653 64-64v-288c0-35.347-28.653-64-64-64h-96c-35.344 0-64 28.653-64 64v192h-96c-35.344 0-64 28.653-64 64v128c0 35.347 28.656 64 64 64h32c35.347 0 64-28.653 64-64v-32zM784.854 448c0-17.674 14.326-32 32-32s32 14.326 32 32v384c0 17.674-14.326 32-32 32h-224c-17.674 0-32-14.326-32-32s14.326-32 32-32h192v-352zM368.403 401.52c9.677-9.059 10.176-24.246 1.117-33.923l-48.272-51.558v-47.925c0-13.255-10.746-24-24-24s-24 10.745-24 24v57.406c0 6.093 2.316 11.955 6.48 16.403l54.752 58.48c9.059 9.677 24.246 10.176 33.923 1.117zM170.974 414.278c53.308 74.218 156.687 91.171 230.908 37.862 10.765-7.731 25.76-5.274 33.494 5.491 7.731 10.768 5.274 25.763-5.494 33.494-95.75 68.771-229.121 46.902-297.894-48.848s-46.902-229.123 48.848-297.895c75.545-54.26 174.453-52.073 246.597-1.796 10.874 7.578 13.546 22.538 5.968 33.412s-22.538 13.547-33.411 5.968c-55.971-39.005-132.65-40.618-191.153 1.402-74.219 53.308-91.171 156.688-37.864 230.909z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["waiting-on-me"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":113,"id":10,"name":"waiting-on-me","prevSize":32,"code":59865},"setIdx":0,"setId":0,"iconIdx":202},{"icon":{"paths":["M512 352.003c17.674 0 32 14.33 32 32v224c0 17.674-14.326 32-32 32s-32-14.326-32-32v-224c0-17.67 14.326-32 32-32z","M512 672.003c17.674 0 32 14.33 32 32 0 17.674-14.326 32-32 32s-32-14.326-32-32c0-17.67 14.326-32 32-32z","M567.101 158.348c-24.774-41.922-85.427-41.922-110.202 0l-359.92 609.099c-25.21 42.662 5.544 96.557 55.099 96.557h719.845c49.555 0 80.307-53.894 55.098-96.557l-359.92-609.099zM512 190.906l359.923 609.097h-719.845l359.922-609.097z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["warning"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":114,"id":9,"name":"warning","prevSize":32,"code":59866},"setIdx":0,"setId":0,"iconIdx":203},{"icon":{"paths":["M784.131 240.143c-35.43-35.658-77.581-63.931-124.016-83.181s-96.227-29.094-146.493-28.961c-210.863 0-382.322 171.532-382.414 382.376-0.085 67.104 17.523 133.043 51.047 191.171l-54.256 198.154 202.72-53.174c56.064 30.531 118.883 46.531 182.717 46.538h0.166c210.752 0 382.32-171.552 382.394-382.394 0.16-50.25-9.645-100.029-28.848-146.464-19.2-46.436-47.418-88.604-83.018-124.065zM513.622 828.486h-0.186c-56.922 0.006-112.797-15.293-161.776-44.298l-11.606-6.896-120.302 31.555 32.124-117.347-7.573-12.029c-31.783-50.64-48.608-109.232-48.535-169.021 0-175.235 142.653-317.816 317.981-317.816 84.301 0.049 165.13 33.58 224.707 93.218 59.581 59.638 93.034 140.499 92.998 224.8-0.074 175.254-142.653 317.834-317.834 317.834zM687.958 590.451c-9.552-4.787-56.528-27.907-65.293-31.171s-15.126-4.768-21.491 4.784c-6.362 9.555-24.678 31.171-30.253 37.462-5.574 6.288-11.149 7.187-20.701 2.4-9.555-4.784-40.339-14.87-76.845-47.434-28.403-25.322-47.584-56.621-53.174-66.192-5.594-9.571-0.589-14.669 4.198-19.491 4.291-4.291 9.552-11.168 14.32-16.742s6.381-9.571 9.552-15.933c3.174-6.362 1.597-11.955-0.787-16.739-2.384-4.787-21.491-51.818-29.466-70.96-7.757-18.63-15.622-16.099-21.491-16.394-5.501-0.275-11.955-0.349-18.336-0.349-4.842 0.131-9.606 1.264-13.994 3.325-4.387 2.058-8.298 5.005-11.491 8.65-8.749 9.552-33.428 32.675-33.428 79.706s34.234 92.467 39.002 98.848c4.765 6.381 67.382 102.883 163.187 144.266 17.792 7.68 35.974 14.413 54.477 20.17 22.902 7.334 43.731 6.237 60.179 3.779 18.336-2.733 56.547-23.104 64.506-45.418 7.955-22.317 7.955-41.459 5.501-45.456-2.458-3.997-8.618-6.326-18.173-11.11z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["whatsapp-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":237,"id":7,"name":"whatsapp-monochromatic","prevSize":32,"code":59868},"setIdx":0,"setId":0,"iconIdx":205},{"icon":{"paths":["M354.006 399.123l14.029 0.627-0.541-16.726-152.878 1.578c49.916-116.491 165.64-198.133 300.366-198.133 99.645 0 188.893 44.659 248.81 115.065-3.712 0.171-7.491 0.492-11.526 1.068 0 0-63.76 14.898-13.302 118.708 0 0 31.085 84.541-19.306 198.774l-28.403 73.306-99.101-264.723c0 0-5.984-28.154 23.61-28.154l23.76-1.472 0.339-16.035h-228.368v14.458c0 0 39.83-0.288 56.15 27.149l40.762 103.779-73.014 174.403-108.608-272.4c0 0-3.389-31.779 27.222-31.27z","M841.603 513.168c0-33.862-5.235-66.643-14.726-97.357l-145.949 378.755c96.134-56.88 160.675-161.571 160.675-281.398z","M411.478 823.011c32.49 10.912 67.267 16.778 103.488 16.778 37.85 0 74.102-6.406 107.898-18.256l-99.709-258.502-111.677 259.981z","M188.279 513.149c0-32.083 4.712-63.066 13.339-92.336l1 2.051 152.656 375.229c-99.606-55.882-166.994-162.538-166.994-284.944z","M130.705 512.093c0-211.775 172.316-384.093 384.076-384.093 211.725 0 383.923 172.318 383.923 384.093 0 211.776-172.198 384.010-383.923 384.010-211.757 0-384.076-172.234-384.076-384.010zM514.781 879.254c202.384 0 367.11-164.742 367.11-367.178 0-202.486-164.726-367.145-367.11-367.161-202.489 0-367.213 164.673-367.213 367.161 0 202.435 164.724 367.178 367.213 367.178z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wordpress-monochromatic"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":241,"id":5,"name":"wordpress-monochromatic","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":207},{"icon":{"paths":["M193.353 405.334h213.332v-213.334h-213.332v213.334zM129.353 170.667c0-23.564 19.102-42.667 42.667-42.667h256c23.565 0 42.666 19.102 42.666 42.667v255.999c0 23.565-19.101 42.669-42.666 42.669h-256c-23.564 0-42.667-19.104-42.667-42.669v-255.999zM620.019 405.334h213.334v-213.334h-213.334v213.334zM556.019 170.667c0-23.564 19.104-42.667 42.666-42.667h256c23.565 0 42.669 19.102 42.669 42.667v255.999c0 23.565-19.104 42.669-42.669 42.669h-256c-23.562 0-42.666-19.104-42.666-42.669v-255.999zM620.019 618.666h213.334v213.334h-213.334v-213.334zM598.685 554.666c-23.562 0-42.666 19.104-42.666 42.669v256c0 23.562 19.104 42.666 42.666 42.666h256c23.565 0 42.669-19.104 42.669-42.666v-256c0-23.565-19.104-42.669-42.669-42.669h-256zM193.353 832h213.332v-213.334h-213.332v213.334zM129.353 597.334c0-23.565 19.102-42.669 42.667-42.669h256c23.565 0 42.666 19.104 42.666 42.669v256c0 23.562-19.101 42.666-42.666 42.666h-256c-23.564 0-42.667-19.104-42.667-42.666v-256z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["workspaces"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":119,"id":4,"name":"workspaces","prevSize":32,"code":59870},"setIdx":0,"setId":0,"iconIdx":208},{"icon":{"paths":["M384.509 149.333c0-11.782 9.562-21.333 21.36-21.333h85.446c11.798 0 21.363 9.551 21.363 21.333v106.667h-106.81c-11.798 0-21.36-9.551-21.36-21.333v-85.333z","M512.678 256h106.806c11.798 0 21.36 9.551 21.36 21.333v85.332c0 11.782-9.562 21.334-21.36 21.334h-106.806v-128z","M384.509 405.334c0-11.782 9.562-21.334 21.36-21.334h106.81v128h-106.81c-11.798 0-21.36-9.552-21.36-21.334v-85.331z","M512.678 512h106.806c11.798 0 21.36 9.552 21.36 21.334v106.666h-128.166v-128z","M427.232 640c-23.597 0-42.723 19.104-42.723 42.666v170.669c0 23.562 19.126 42.666 42.723 42.666h170.89c23.597 0 42.723-19.104 42.723-42.666v-213.334h-213.613zM491.315 725.334c-11.798 0-21.36 9.549-21.36 21.331v42.669c0 11.782 9.562 21.331 21.36 21.331h42.723c11.798 0 21.36-9.549 21.36-21.331v-42.669c0-11.782-9.562-21.331-21.36-21.331h-42.723z"],"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"width":1056,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["zip"]},"attrs":[{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"},{"fill":"rgb(108, 114, 122)"}],"properties":{"order":120,"id":3,"name":"zip","prevSize":32,"code":59871},"setIdx":0,"setId":0,"iconIdx":209},{"icon":{"paths":["M544 208c0-17.673-14.326-32-32-32s-32 14.327-32 32v271.997h-271.998c-17.673 0-32 14.326-32 32s14.327 32 32 32h271.998v272.003c0 17.674 14.326 32 32 32s32-14.326 32-32v-272.003l272-0.003c17.674 0 32-14.326 32-32s-14.326-32-32-32l-272 0.003v-271.997z"],"attrs":[{"fill":"rgb(108, 114, 122)"}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add"]},"attrs":[{"fill":"rgb(108, 114, 122)"}],"properties":{"order":240,"id":2,"name":"add","prevSize":32,"code":59872},"setIdx":0,"setId":0,"iconIdx":210}],"height":1024,"metadata":{"name":"custom"},"preferences":{"showGlyphs":true,"showCodes":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"custom","majorVersion":1,"minorVersion":0},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false,"noie8":true,"ie7":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"name":"icomoon","classSelector":".icon","height":32,"columns":16,"margin":16},"historySize":50}} \ No newline at end of file diff --git a/app/presentation/RoomItem/RoomItem.js b/app/presentation/RoomItem/RoomItem.js index a704e3f5..b5133fd0 100644 --- a/app/presentation/RoomItem/RoomItem.js +++ b/app/presentation/RoomItem/RoomItem.js @@ -37,9 +37,11 @@ const RoomItem = ({ alert, hideUnreadStatus, unread, - tunread, userMentions, groupMentions, + tunread, + tunreadUser, + tunreadGroup, roomUpdatedAt, testID, swipeEnabled, @@ -113,10 +115,11 @@ const RoomItem = ({ /> @@ -138,10 +141,11 @@ const RoomItem = ({ /> ) @@ -177,9 +181,11 @@ RoomItem.propTypes = { alert: PropTypes.bool, hideUnreadStatus: PropTypes.bool, unread: PropTypes.number, - tunread: PropTypes.array, userMentions: PropTypes.number, groupMentions: PropTypes.number, + tunread: PropTypes.array, + tunreadUser: PropTypes.array, + tunreadGroup: PropTypes.array, roomUpdatedAt: PropTypes.instanceOf(Date), swipeEnabled: PropTypes.bool, toggleFav: PropTypes.func, diff --git a/app/presentation/RoomItem/index.js b/app/presentation/RoomItem/index.js index dc7ed58b..320e126c 100644 --- a/app/presentation/RoomItem/index.js +++ b/app/presentation/RoomItem/index.js @@ -178,6 +178,7 @@ class RoomItemContainer extends React.Component { const avatar = getRoomAvatar(item); const isRead = getIsRead(item); const date = item.lastMessage?.ts && formatDate(item.lastMessage.ts); + const alert = (item.alert || item.tunread?.length); let accessibilityLabel = name; if (item.unread === 1) { @@ -203,7 +204,6 @@ class RoomItemContainer extends React.Component { onPress={this.onPress} date={date} accessibilityLabel={accessibilityLabel} - userMentions={item.userMentions} width={width} favorite={item.f} toggleFav={toggleFav} @@ -221,15 +221,18 @@ class RoomItemContainer extends React.Component { prid={item.prid} status={status} hideUnreadStatus={item.hideUnreadStatus} - alert={item.alert} + alert={alert} roomUpdatedAt={item.roomUpdatedAt} lastMessage={item.lastMessage} showLastMessage={showLastMessage} username={username} useRealName={useRealName} unread={item.unread} - tunread={item.tunread} + userMentions={item.userMentions} groupMentions={item.groupMentions} + tunread={item.tunread} + tunreadUser={item.tunreadUser} + tunreadGroup={item.tunreadGroup} avatarETag={avatarETag || item.avatarETag} swipeEnabled={swipeEnabled} /> diff --git a/app/presentation/UnreadBadge/getUnreadStyle.js b/app/presentation/UnreadBadge/getUnreadStyle.js index a8786fdc..ee9af888 100644 --- a/app/presentation/UnreadBadge/getUnreadStyle.js +++ b/app/presentation/UnreadBadge/getUnreadStyle.js @@ -10,9 +10,9 @@ export const getUnreadStyle = ({ let backgroundColor = themes[theme].unreadBackground; const color = themes[theme].buttonText; if (userMentions > 0 || tunreadUser?.length) { - backgroundColor = themes[theme].mentionMeColor; + backgroundColor = themes[theme].mentionMeBackground; } else if (groupMentions > 0 || tunreadGroup?.length) { - backgroundColor = themes[theme].mentionGroupColor; + backgroundColor = themes[theme].mentionGroupBackground; } else if (tunread?.length > 0) { backgroundColor = themes[theme].tunreadBackground; } diff --git a/app/presentation/UnreadBadge/getUnreadStyle.test.js b/app/presentation/UnreadBadge/getUnreadStyle.test.js index b639fb6a..9b35ccb9 100644 --- a/app/presentation/UnreadBadge/getUnreadStyle.test.js +++ b/app/presentation/UnreadBadge/getUnreadStyle.test.js @@ -5,6 +5,10 @@ import { getUnreadStyle } from './getUnreadStyle'; const testsForTheme = (theme) => { const getUnreadStyleUtil = ({ ...props }) => getUnreadStyle({ theme, ...props }); + test('render empty', () => { + expect(getUnreadStyleUtil({})).toEqual({}); + }); + test('render unread', () => { expect(getUnreadStyleUtil({ unread: 1 @@ -28,7 +32,7 @@ const testsForTheme = (theme) => { unread: 1, userMentions: 1 })).toEqual({ - backgroundColor: themes[theme].mentionMeColor, + backgroundColor: themes[theme].mentionMeBackground, color: themes[theme].buttonText }); }); @@ -38,7 +42,7 @@ const testsForTheme = (theme) => { unread: 1, groupMentions: 1 })).toEqual({ - backgroundColor: themes[theme].mentionGroupColor, + backgroundColor: themes[theme].mentionGroupBackground, color: themes[theme].buttonText }); }); @@ -50,7 +54,7 @@ const testsForTheme = (theme) => { groupMentions: 1, tunread: [1] })).toEqual({ - backgroundColor: themes[theme].mentionMeColor, + backgroundColor: themes[theme].mentionMeBackground, color: themes[theme].buttonText }); expect(getUnreadStyleUtil({ @@ -58,7 +62,7 @@ const testsForTheme = (theme) => { groupMentions: 1, tunread: [1] })).toEqual({ - backgroundColor: themes[theme].mentionGroupColor, + backgroundColor: themes[theme].mentionGroupBackground, color: themes[theme].buttonText }); expect(getUnreadStyleUtil({ diff --git a/app/presentation/UnreadBadge/index.js b/app/presentation/UnreadBadge/index.js index 291fc45f..566876e7 100644 --- a/app/presentation/UnreadBadge/index.js +++ b/app/presentation/UnreadBadge/index.js @@ -22,10 +22,8 @@ const styles = StyleSheet.create({ justifyContent: 'center' }, unreadText: { - // overflow: 'hidden', fontSize: 13, - ...sharedStyles.textSemibold, - fontWeight: '600' + ...sharedStyles.textSemibold }, textSmall: { fontSize: 10 diff --git a/app/sagas/login.js b/app/sagas/login.js index d8cb0a75..3e76f1b1 100644 --- a/app/sagas/login.js +++ b/app/sagas/login.js @@ -179,6 +179,7 @@ const handleLoginSuccess = function* handleLoginSuccess({ user }) { statusText: user.statusText, roles: user.roles, loginEmailPassword: user.loginEmailPassword, + showMessageInMainThread: user.showMessageInMainThread, avatarETag: user.avatarETag }; yield serversDB.action(async() => { diff --git a/app/stacks/MasterDetailStack/index.js b/app/stacks/MasterDetailStack/index.js index 8e8da858..8491865f 100644 --- a/app/stacks/MasterDetailStack/index.js +++ b/app/stacks/MasterDetailStack/index.js @@ -190,7 +190,6 @@ const ModalStackNavigator = React.memo(({ navigation }) => { ThreadMessagesView.navigationOptions({ ...props, isMasterDetail: true })} /> moment(date).calendar(null, { lastDay: `[${ I18n.t('Yesterday') }]`, sameDay: 'LT', lastWeek: 'dddd', - sameElse: 'MMM D' + sameElse: 'L' }); + +export const formatDateThreads = date => moment(date).calendar(null, { + sameDay: 'LT', + lastDay: `[${ I18n.t('Yesterday') }] LT`, + lastWeek: 'dddd LT', + sameElse: 'LL' +}); + +export const getBadgeColor = ({ subscription, messageId, theme }) => { + if (subscription?.tunreadUser?.includes(messageId)) { + return themes[theme].mentionMeBackground; + } + if (subscription?.tunreadGroup?.includes(messageId)) { + return themes[theme].mentionGroupBackground; + } + if (subscription?.tunread?.includes(messageId)) { + return themes[theme].tunreadBackground; + } +}; + +export const makeThreadName = messageRecord => messageRecord.msg || messageRecord?.attachments[0]?.title; diff --git a/app/views/RoomView/Header/Header.js b/app/views/RoomView/Header/Header.js index 6acc6646..281d29ef 100644 --- a/app/views/RoomView/Header/Header.js +++ b/app/views/RoomView/Header/Header.js @@ -24,9 +24,6 @@ const styles = StyleSheet.create({ ...sharedStyles.textSemibold, fontSize: TITLE_SIZE }, - scroll: { - alignItems: 'center' - }, subtitle: { ...sharedStyles.textRegular, fontSize: 12 @@ -36,11 +33,9 @@ const styles = StyleSheet.create({ } }); -const SubTitle = React.memo(({ usersTyping, subtitle, theme }) => { - if (!subtitle && !usersTyping.length) { - return null; - } - +const SubTitle = React.memo(({ + usersTyping, subtitle, renderFunc, theme +}) => { // typing if (usersTyping.length) { let usersText; @@ -57,6 +52,11 @@ const SubTitle = React.memo(({ usersTyping, subtitle, theme }) => { ); } + // renderFunc + if (renderFunc) { + return renderFunc(); + } + // subtitle if (subtitle) { return ( @@ -69,12 +69,15 @@ const SubTitle = React.memo(({ usersTyping, subtitle, theme }) => { /> ); } + + return null; }); SubTitle.propTypes = { usersTyping: PropTypes.array, theme: PropTypes.string, - subtitle: PropTypes.string + subtitle: PropTypes.string, + renderFunc: PropTypes.func }; const HeaderTitle = React.memo(({ @@ -113,7 +116,7 @@ HeaderTitle.propTypes = { }; const Header = React.memo(({ - title, subtitle, type, status, usersTyping, width, height, prid, tmid, connecting, goRoomActionsView, roomUserId, theme + title, subtitle, parentTitle, type, status, usersTyping, width, height, prid, tmid, connecting, goRoomActionsView, roomUserId, theme }) => { const portrait = height > width; let scale = 1; @@ -126,6 +129,22 @@ const Header = React.memo(({ const onPress = () => goRoomActionsView(); + let renderFunc; + if (tmid) { + renderFunc = () => ( + + + {parentTitle} + + ); + } + return ( - + {tmid ? null : } - {tmid ? null : } + ); }); @@ -163,6 +182,7 @@ Header.propTypes = { usersTyping: PropTypes.array, connecting: PropTypes.bool, roomUserId: PropTypes.string, + parentTitle: PropTypes.string, goRoomActionsView: PropTypes.func }; diff --git a/app/views/RoomView/Header/Icon.js b/app/views/RoomView/Header/Icon.js index 7eaa02ad..0a5c6277 100644 --- a/app/views/RoomView/Header/Icon.js +++ b/app/views/RoomView/Header/Icon.js @@ -21,9 +21,9 @@ const styles = StyleSheet.create({ }); const Icon = React.memo(({ - roomUserId, type, status, theme + roomUserId, type, status, theme, tmid }) => { - if (type === 'd' && roomUserId) { + if ((type === 'd' || tmid) && roomUserId) { return ; } @@ -37,8 +37,6 @@ const Icon = React.memo(({ let icon; if (type === 'discussion') { icon = 'discussions'; - } else if (type === 'thread') { - icon = 'threads'; } else if (type === 'c') { icon = 'channel-public'; } else if (type === 'l') { @@ -68,6 +66,7 @@ Icon.propTypes = { roomUserId: PropTypes.string, type: PropTypes.string, status: PropTypes.string, - theme: PropTypes.string + theme: PropTypes.string, + tmid: PropTypes.string }; export default Icon; diff --git a/app/views/RoomView/Header/RightButtons.js b/app/views/RoomView/Header/RightButtons.js index ba28a572..6580351c 100644 --- a/app/views/RoomView/Header/RightButtons.js +++ b/app/views/RoomView/Header/RightButtons.js @@ -1,14 +1,14 @@ -import React from 'react'; +import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; +import isEqual from 'react-fast-compare'; import * as HeaderButton from '../../../containers/HeaderButton'; import database from '../../../lib/database'; import { getUserSelector } from '../../../selectors/login'; import { logEvent, events } from '../../../utils/log'; - -class RightButtonsContainer extends React.PureComponent { +class RightButtonsContainer extends Component { static propTypes = { userId: PropTypes.string, threadsEnabled: PropTypes.bool, @@ -23,30 +23,63 @@ class RightButtonsContainer extends React.PureComponent { constructor(props) { super(props); this.state = { - isFollowingThread: true + isFollowingThread: true, + tunread: [], + tunreadUser: [], + tunreadGroup: [] }; } async componentDidMount() { - const { tmid } = this.props; + const { tmid, rid } = this.props; + const db = database.active; if (tmid) { - const db = database.active; try { const threadRecord = await db.collections.get('messages').find(tmid); - this.observeThead(threadRecord); + this.observeThread(threadRecord); } catch (e) { console.log('Can\'t find message to observe.'); } } + if (rid) { + try { + const subCollection = db.collections.get('subscriptions'); + const subRecord = await subCollection.find(rid); + this.observeSubscription(subRecord); + } catch (e) { + console.log('Can\'t find subscription to observe.'); + } + } + } + + shouldComponentUpdate(nextProps, nextState) { + const { + isFollowingThread, tunread, tunreadUser, tunreadGroup + } = this.state; + if (nextState.isFollowingThread !== isFollowingThread) { + return true; + } + if (!isEqual(nextState.tunread, tunread)) { + return true; + } + if (!isEqual(nextState.tunreadUser, tunreadUser)) { + return true; + } + if (!isEqual(nextState.tunreadGroup, tunreadGroup)) { + return true; + } } componentWillUnmount() { if (this.threadSubscription && this.threadSubscription.unsubscribe) { this.threadSubscription.unsubscribe(); } + if (this.subSubscription && this.subSubscription.unsubscribe) { + this.subSubscription.unsubscribe(); + } } - observeThead = (threadRecord) => { + observeThread = (threadRecord) => { const threadObservable = threadRecord.observe(); this.threadSubscription = threadObservable .subscribe(thread => this.updateThread(thread)); @@ -59,6 +92,22 @@ class RightButtonsContainer extends React.PureComponent { }); } + observeSubscription = (subRecord) => { + const subObservable = subRecord.observe(); + this.subSubscription = subObservable + .subscribe((sub) => { + this.updateSubscription(sub); + }); + } + + updateSubscription = (sub) => { + this.setState({ + tunread: sub?.tunread, + tunreadUser: sub?.tunreadUser, + tunreadGroup: sub?.tunreadGroup + }); + } + goThreadsView = () => { logEvent(events.ROOM_GO_THREADS); const { @@ -93,7 +142,9 @@ class RightButtonsContainer extends React.PureComponent { } render() { - const { isFollowingThread } = this.state; + const { + isFollowingThread, tunread, tunreadUser, tunreadGroup + } = this.state; const { t, tmid, threadsEnabled } = this.props; if (t === 'l') { return null; @@ -116,6 +167,13 @@ class RightButtonsContainer extends React.PureComponent { iconName='threads' onPress={this.goThreadsView} testID='room-view-header-threads' + badge={() => ( + + )} /> ) : null} ); } @@ -111,10 +113,12 @@ class RoomHeaderView extends Component { const mapStateToProps = (state, ownProps) => { let statusText; let status = 'offline'; - const { roomUserId, type, visitor = {} } = ownProps; + const { + roomUserId, type, visitor = {}, tmid + } = ownProps; if (state.meteor.connected) { - if (type === 'd' && state.activeUsers[roomUserId]) { + if ((type === 'd' || (tmid && roomUserId)) && state.activeUsers[roomUserId]) { ({ status, statusText } = state.activeUsers[roomUserId]); } else if (type === 'l' && visitor?.status) { ({ status } = visitor); diff --git a/app/views/RoomView/List.js b/app/views/RoomView/List.js index 209ec18b..0008153a 100644 --- a/app/views/RoomView/List.js +++ b/app/views/RoomView/List.js @@ -30,7 +30,8 @@ class List extends React.Component { loading: PropTypes.bool, listRef: PropTypes.func, hideSystemMessages: PropTypes.array, - navigation: PropTypes.object + navigation: PropTypes.object, + showMessageInMainThread: PropTypes.bool }; // this.state.loading works for this.onEndReached and RoomView.init @@ -140,7 +141,7 @@ class List extends React.Component { query = async() => { this.count += QUERY_SIZE; - const { rid, tmid } = this.props; + const { rid, tmid, showMessageInMainThread } = this.props; const db = database.active; // handle servers with version < 3.0.0 @@ -167,14 +168,23 @@ class List extends React.Component { ) .observe(); } else if (rid) { + const whereClause = [ + Q.where('rid', rid), + Q.experimentalSortBy('ts', Q.desc), + Q.experimentalSkip(0), + Q.experimentalTake(this.count) + ]; + if (!showMessageInMainThread) { + whereClause.push( + Q.or( + Q.where('tmid', null), + Q.where('tshow', Q.eq(true)) + ) + ); + } this.messagesObservable = db.collections .get('messages') - .query( - Q.where('rid', rid), - Q.experimentalSortBy('ts', Q.desc), - Q.experimentalSkip(0), - Q.experimentalTake(this.count) - ) + .query(...whereClause) .observe(); } diff --git a/app/views/RoomView/Separator.js b/app/views/RoomView/Separator.js index 8e2e7a16..c705f1fe 100644 --- a/app/views/RoomView/Separator.js +++ b/app/views/RoomView/Separator.js @@ -35,7 +35,7 @@ const styles = StyleSheet.create({ }); const DateSeparator = React.memo(({ ts, unread, theme }) => { - const date = ts ? moment(ts).format('MMM DD, YYYY') : null; + const date = ts ? moment(ts).format('LL') : null; const unreadLine = { backgroundColor: themes[theme].dangerColor }; const unreadText = { color: themes[theme].dangerColor }; if (ts && unread) { diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 34961d20..a12c5227 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -35,7 +35,7 @@ import { themes } from '../../constants/colors'; import debounce from '../../utils/debounce'; import ReactionsModal from '../../containers/ReactionsModal'; import { LISTENER } from '../../containers/Toast'; -import { isBlocked } from '../../utils/room'; +import { getBadgeColor, isBlocked, makeThreadName } from '../../utils/room'; import { isReadOnly } from '../../utils/isReadOnly'; import { isIOS, isTablet } from '../../utils/deviceInfo'; import { showErrorAlert } from '../../utils/info'; @@ -82,7 +82,8 @@ class RoomView extends React.Component { user: PropTypes.shape({ id: PropTypes.string.isRequired, username: PropTypes.string.isRequired, - token: PropTypes.string.isRequired + token: PropTypes.string.isRequired, + showMessageInMainThread: PropTypes.bool }), appState: PropTypes.string, useRealName: PropTypes.bool, @@ -108,17 +109,18 @@ class RoomView extends React.Component { this.rid = props.route.params?.rid; this.t = props.route.params?.t; this.tmid = props.route.params?.tmid; - const room = props.route.params?.room; const selectedMessage = props.route.params?.message; const name = props.route.params?.name; const fname = props.route.params?.fname; const search = props.route.params?.search; const prid = props.route.params?.prid; + const room = props.route.params?.room ?? { + rid: this.rid, t: this.t, name, fname, prid + }; + const roomUserId = props.route.params?.roomUserId ?? RocketChat.getUidDirectMessage(room); this.state = { joined: true, - room: room || { - rid: this.rid, t: this.t, name, fname, prid - }, + room, roomUpdate: {}, member: {}, lastOpen: null, @@ -132,7 +134,7 @@ class RoomView extends React.Component { reacting: false, readOnly: false, unreadsCount: null, - roomUserId: null + roomUserId }; this.setHeader(); @@ -292,24 +294,28 @@ class RoomView extends React.Component { } setHeader = () => { - const { room, unreadsCount, roomUserId: stateRoomUserId } = this.state; const { - navigation, route, isMasterDetail, theme, baseUrl, user, insets + room, unreadsCount, roomUserId + } = this.state; + const { + navigation, isMasterDetail, theme, baseUrl, user, insets, route } = this.props; - const rid = route.params?.rid; - const prid = route.params?.prid; + const { rid, tmid } = this; + const prid = room?.prid; let title = route.params?.name; - if ((room.id || room.rid) && !this.tmid) { + let parentTitle; + if ((room.id || room.rid) && !tmid) { title = RocketChat.getRoomTitle(room); } + if (tmid) { + parentTitle = RocketChat.getRoomTitle(room); + } const subtitle = room?.topic; - const t = route.params?.t || room?.t; - const tmid = route.params?.tmid; + const t = room?.t; const { id: userId, token } = user; const avatar = room?.name; - const roomUserId = route.params?.roomUserId || stateRoomUserId; const visitor = room?.visitor; - if (!rid) { + if (!room?.rid) { return; } const headerTitlePosition = getHeaderTitlePosition(insets); @@ -341,6 +347,7 @@ class RoomView extends React.Component { prid={prid} tmid={tmid} title={title} + parentTitle={parentTitle} subtitle={subtitle} type={t} roomUserId={roomUserId} @@ -625,6 +632,7 @@ class RoomView extends React.Component { }; onThreadPress = debounce(async(item) => { + const { roomUserId } = this.state; const { navigation } = this.props; if (item.tmid) { if (!item.tmsg) { @@ -635,11 +643,11 @@ class RoomView extends React.Component { name = I18n.t('Encrypted_message'); } navigation.push('RoomView', { - rid: item.subscription.id, tmid: item.tmid, name, t: 'thread' + rid: item.subscription.id, tmid: item.tmid, name, t: 'thread', roomUserId }); } else if (item.tlm) { navigation.push('RoomView', { - rid: item.subscription.id, tmid: item.id, name: item.msg, t: 'thread' + rid: item.subscription.id, tmid: item.id, name: makeThreadName(item), t: 'thread', roomUserId }); } }, 1000, true) @@ -669,10 +677,10 @@ class RoomView extends React.Component { this.setState(...args); } - sendMessage = (message, tmid) => { + sendMessage = (message, tmid, tshow) => { logEvent(events.ROOM_SEND_MESSAGE); const { user } = this.props; - RocketChat.sendMessage(this.rid, message, this.tmid || tmid, user).then(() => { + RocketChat.sendMessage(this.rid, message, this.tmid || tmid, user, tshow).then(() => { if (this.list && this.list.current) { this.list.current.update(); } @@ -761,15 +769,21 @@ class RoomView extends React.Component { } } - toggleFollowThread = async(isFollowingThread) => { + toggleFollowThread = async(isFollowingThread, tmid) => { try { - await RocketChat.toggleFollowMessage(this.tmid, !isFollowingThread); + await RocketChat.toggleFollowMessage(tmid ?? this.tmid, !isFollowingThread); EventEmitter.emit(LISTENER, { message: isFollowingThread ? I18n.t('Unfollowed_thread') : I18n.t('Following_thread') }); } catch (e) { log(e); } } + getBadgeColor = (messageId) => { + const { room } = this.state; + const { theme } = this.props; + return getBadgeColor({ subscription: room, theme, messageId }); + } + navToRoomInfo = (navParam) => { const { navigation, user, isMasterDetail } = this.props; logEvent(events[`ROOM_GO_${ navParam.t === 'd' ? 'USER' : 'ROOM' }_INFO`]); @@ -895,6 +909,8 @@ class RoomView extends React.Component { getCustomEmoji={this.getCustomEmoji} callJitsi={this.callJitsi} blockAction={this.blockAction} + getBadgeColor={this.getBadgeColor} + toggleFollowThread={this.toggleFollowThread} /> ); @@ -1042,6 +1058,7 @@ class RoomView extends React.Component { loading={loading} navigation={navigation} hideSystemMessages={Array.isArray(sysMes) ? sysMes : Hide_System_Messages} + showMessageInMainThread={user.showMessageInMainThread} /> {this.renderFooter()} {this.renderActions()} diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 8404ce67..8c1d78c3 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -75,7 +75,7 @@ const GROUPS_HEADER = 'Private_Groups'; const OMNICHANNEL_HEADER = 'Open_Livechats'; const QUERY_SIZE = 20; -const filterIsUnread = s => (s.unread > 0 || s.alert) && !s.hideUnreadStatus; +const filterIsUnread = s => (s.unread > 0 || s.tunread?.length > 0 || s.alert) && !s.hideUnreadStatus; const filterIsFavorite = s => s.f; const filterIsOmnichannel = s => s.t === 'l'; diff --git a/app/views/RoomsListView/styles.js b/app/views/RoomsListView/styles.js index fe848d34..a921830a 100644 --- a/app/views/RoomsListView/styles.js +++ b/app/views/RoomsListView/styles.js @@ -63,8 +63,6 @@ export default StyleSheet.create({ marginHorizontal: 12 }, queueIcon: { - width: 22, - height: 22, marginHorizontal: 12 }, groupTitleContainer: { diff --git a/app/views/SearchMessagesView/index.js b/app/views/SearchMessagesView/index.js index 4f6d896e..18380e55 100644 --- a/app/views/SearchMessagesView/index.js +++ b/app/views/SearchMessagesView/index.js @@ -149,7 +149,7 @@ class SearchMessagesView extends React.Component { item={item} baseUrl={baseUrl} user={user} - timeFormat='MMM Do YYYY, h:mm:ss a' + timeFormat='LLL' isHeader showAttachment={() => {}} getCustomEmoji={this.getCustomEmoji} diff --git a/app/views/ShareView/Header.js b/app/views/ShareView/Header.js index aa1f88c0..85ef0878 100644 --- a/app/views/ShareView/Header.js +++ b/app/views/ShareView/Header.js @@ -9,6 +9,7 @@ import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { isAndroid, isTablet } from '../../utils/deviceInfo'; import sharedStyles from '../Styles'; +import { makeThreadName } from '../../utils/room'; const androidMarginLeft = isTablet ? 0 : 4; @@ -64,6 +65,13 @@ const Header = React.memo(({ room, thread, theme }) => { const textColor = themes[theme].previewTintColor; + let title; + if (thread?.id) { + title = makeThreadName(thread); + } else { + title = RocketChat.getRoomTitle(room); + } + return ( @@ -78,7 +86,7 @@ const Header = React.memo(({ room, thread, theme }) => { style={[styles.name, { color: textColor }]} numberOfLines={1} > - {thread?.msg ?? RocketChat.getRoomTitle(room)} + {title} diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItem.js b/app/views/ThreadMessagesView/Dropdown/DropdownItem.js new file mode 100644 index 00000000..4ebca916 --- /dev/null +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItem.js @@ -0,0 +1,44 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { View, Text, StyleSheet } from 'react-native'; + +import { themes } from '../../../constants/colors'; +import { withTheme } from '../../../theme'; +import Touch from '../../../utils/touch'; +import { CustomIcon } from '../../../lib/Icons'; +import sharedStyles from '../../Styles'; + +const styles = StyleSheet.create({ + container: { + paddingVertical: 8, + minHeight: 40, + paddingHorizontal: 16, + flexDirection: 'row', + alignItems: 'center' + }, + text: { + flex: 1, + fontSize: 16, + ...sharedStyles.textRegular + } +}); + +const DropdownItem = React.memo(({ + theme, onPress, iconName, text +}) => ( + + + {text} + {iconName ? : null} + + +)); + +DropdownItem.propTypes = { + text: PropTypes.string, + iconName: PropTypes.string, + theme: PropTypes.string, + onPress: PropTypes.func +}; + +export default withTheme(DropdownItem); diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js b/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js new file mode 100644 index 00000000..cab41d22 --- /dev/null +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItemFilter.js @@ -0,0 +1,21 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +import DropdownItem from './DropdownItem'; +import I18n from '../../../i18n'; + +const DropdownItemFilter = ({ currentFilter, value, onPress }) => ( + onPress(value)} + /> +); + +DropdownItemFilter.propTypes = { + currentFilter: PropTypes.string, + value: PropTypes.string, + onPress: PropTypes.func +}; + +export default DropdownItemFilter; diff --git a/app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js b/app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js new file mode 100644 index 00000000..5ffbaea2 --- /dev/null +++ b/app/views/ThreadMessagesView/Dropdown/DropdownItemHeader.js @@ -0,0 +1,29 @@ +import React from 'react'; +import PropTypes from 'prop-types'; + +import DropdownItem from './DropdownItem'; +import { FILTER } from '../filters'; +import I18n from '../../../i18n'; + +const DropdownItemHeader = ({ currentFilter, onPress }) => { + let text; + switch (currentFilter) { + case FILTER.FOLLOWING: + text = I18n.t('Threads_displaying_following'); + break; + case FILTER.UNREAD: + text = I18n.t('Threads_displaying_unread'); + break; + default: + text = I18n.t('Threads_displaying_all'); + break; + } + return ; +}; + +DropdownItemHeader.propTypes = { + currentFilter: PropTypes.string, + onPress: PropTypes.func +}; + +export default DropdownItemHeader; diff --git a/app/views/ThreadMessagesView/Dropdown/index.js b/app/views/ThreadMessagesView/Dropdown/index.js new file mode 100644 index 00000000..49533e4b --- /dev/null +++ b/app/views/ThreadMessagesView/Dropdown/index.js @@ -0,0 +1,105 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { + Animated, Easing, TouchableWithoutFeedback +} from 'react-native'; +import { withSafeAreaInsets } from 'react-native-safe-area-context'; + +import styles from '../styles'; +import { themes } from '../../../constants/colors'; +import { withTheme } from '../../../theme'; +import { headerHeight } from '../../../containers/Header'; +import * as List from '../../../containers/List'; +import { FILTER } from '../filters'; +import DropdownItemFilter from './DropdownItemFilter'; +import DropdownItemHeader from './DropdownItemHeader'; + +const ANIMATION_DURATION = 200; + +class Dropdown extends React.Component { + static propTypes = { + isMasterDetail: PropTypes.bool, + theme: PropTypes.string, + insets: PropTypes.object, + currentFilter: PropTypes.string, + onClose: PropTypes.func, + onFilterSelected: PropTypes.func + } + + constructor(props) { + super(props); + this.animatedValue = new Animated.Value(0); + } + + componentDidMount() { + Animated.timing( + this.animatedValue, + { + toValue: 1, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + } + ).start(); + } + + close = () => { + const { onClose } = this.props; + Animated.timing( + this.animatedValue, + { + toValue: 0, + duration: ANIMATION_DURATION, + easing: Easing.inOut(Easing.quad), + useNativeDriver: true + } + ).start(() => onClose()); + } + + render() { + const { + isMasterDetail, insets, theme, currentFilter, onFilterSelected + } = this.props; + const statusBarHeight = insets?.top ?? 0; + const heightDestination = isMasterDetail ? headerHeight + statusBarHeight : 0; + const translateY = this.animatedValue.interpolate({ + inputRange: [0, 1], + outputRange: [-300, heightDestination] // approximated height of the component when closed/open + }); + const backdropOpacity = this.animatedValue.interpolate({ + inputRange: [0, 1], + outputRange: [0, 0.3] + }); + return ( + <> + + + + + + + + + + + + ); + } +} + +export default withTheme(withSafeAreaInsets(Dropdown)); diff --git a/app/views/ThreadMessagesView/Item.js b/app/views/ThreadMessagesView/Item.js new file mode 100644 index 00000000..168ff93c --- /dev/null +++ b/app/views/ThreadMessagesView/Item.js @@ -0,0 +1,139 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { View, Text, StyleSheet } from 'react-native'; + +import { withTheme } from '../../theme'; +import Avatar from '../../containers/Avatar'; +import Touch from '../../utils/touch'; +import sharedStyles from '../Styles'; +import { themes } from '../../constants/colors'; +import Markdown from '../../containers/markdown'; +import { CustomIcon } from '../../lib/Icons'; +import { formatDateThreads, makeThreadName } from '../../utils/room'; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + padding: 16 + }, + contentContainer: { + flexDirection: 'column', + flex: 1 + }, + titleContainer: { + flexDirection: 'row', + marginBottom: 2, + alignItems: 'center' + }, + title: { + flexShrink: 1, + fontSize: 18, + ...sharedStyles.textMedium + }, + time: { + fontSize: 14, + marginLeft: 4, + ...sharedStyles.textRegular + }, + avatar: { + marginRight: 8 + }, + detailsContainer: { + marginTop: 8, + flexDirection: 'row' + }, + detailContainer: { + marginRight: 8, + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center' + }, + detailText: { + fontSize: 10, + marginLeft: 2, + ...sharedStyles.textSemibold + }, + badgeContainer: { + marginLeft: 8, + justifyContent: 'center' + }, + badge: { + width: 12, + height: 12, + borderRadius: 6 + } +}); + +const Item = ({ + item, baseUrl, theme, useRealName, user, badgeColor, onPress +}) => { + const username = (useRealName && item?.u?.name) || item?.u?.username; + let time; + if (item?.ts) { + time = formatDateThreads(item.ts); + } + + let tlm; + if (item?.tlm) { + tlm = formatDateThreads(item.tlm); + } + + return ( + onPress(item)} testID={`thread-messages-view-${ item.msg }`} style={{ backgroundColor: themes[theme].backgroundColor }}> + + + + + {username} + {time} + + + + + + {item?.tcount} + + + + + {item?.replies?.length} + + + + + {tlm} + + + + {badgeColor + ? ( + + + + ) + : null} + + + ); +}; + +Item.propTypes = { + item: PropTypes.object, + baseUrl: PropTypes.string, + theme: PropTypes.string, + useRealName: PropTypes.bool, + user: PropTypes.object, + badgeColor: PropTypes.string, + onPress: PropTypes.func +}; + +export default withTheme(Item); diff --git a/app/views/ThreadMessagesView/Item.stories.js b/app/views/ThreadMessagesView/Item.stories.js new file mode 100644 index 00000000..81181e98 --- /dev/null +++ b/app/views/ThreadMessagesView/Item.stories.js @@ -0,0 +1,138 @@ +/* eslint-disable import/no-extraneous-dependencies, import/no-unresolved, import/extensions, react/prop-types */ +import React from 'react'; +import { storiesOf } from '@storybook/react-native'; +import { ScrollView } from 'react-native'; +import { combineReducers, createStore } from 'redux'; +import { Provider } from 'react-redux'; + +import Item from './Item'; +import * as List from '../../containers/List'; +import { themes } from '../../constants/colors'; +import { ThemeContext } from '../../theme'; + +const author = { + _id: 'userid', + username: 'rocket.cat', + name: 'Rocket Cat' +}; +const baseUrl = 'https://open.rocket.chat'; +const date = new Date(2020, 10, 10, 10); +const longText = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'; +const defaultItem = { + msg: 'Message content', + tcount: 1, + replies: [1], + ts: date, + tlm: date, + u: author, + attachments: [] +}; + +const BaseItem = ({ item, ...props }) => ( + alert('pressed')} + {...props} + /> +); + +const listDecorator = story => ( + + + {story()} + + +); + +const reducers = combineReducers({ + login: () => ({ + user: { + id: 'abc', + username: 'rocket.cat', + name: 'Rocket Cat' + } + }), + share: () => ({ + server: 'https://open.rocket.chat' + }), + settings: () => ({ + blockUnauthenticatedAccess: false + }) +}); +const store = createStore(reducers); + +const stories = storiesOf('Thread Messages.Item', module) + .addDecorator(listDecorator) + .addDecorator(story => {story()}); + +stories.add('content', () => ( + <> + + + + + + + + + + +)); + +stories.add('badge', () => ( + <> + + + + + + + +)); + +const ThemeStory = ({ theme }) => ( + + + +); + +stories.add('themes', () => ( + <> + + + + +)); diff --git a/app/views/ThreadMessagesView/NoDataFound.js b/app/views/ThreadMessagesView/NoDataFound.js new file mode 100644 index 00000000..2b2ea550 --- /dev/null +++ b/app/views/ThreadMessagesView/NoDataFound.js @@ -0,0 +1,43 @@ +import React from 'react'; +import { + ImageBackground, StyleSheet, Text, View +} from 'react-native'; +import PropTypes from 'prop-types'; + +import { withTheme } from '../../theme'; +import sharedStyles from '../Styles'; +import { themes } from '../../constants/colors'; + +const styles = StyleSheet.create({ + container: { + flex: 1 + }, + image: { + width: '100%', + height: '100%', + position: 'absolute' + }, + text: { + position: 'absolute', + top: 60, + left: 0, + right: 0, + textAlign: 'center', + fontSize: 16, + paddingHorizontal: 24, + ...sharedStyles.textRegular + } +}); + +const EmptyRoom = ({ theme, text }) => ( + + + {text} + +); + +EmptyRoom.propTypes = { + text: PropTypes.string, + theme: PropTypes.string +}; +export default withTheme(EmptyRoom); diff --git a/app/views/ThreadMessagesView/SearchHeader.js b/app/views/ThreadMessagesView/SearchHeader.js new file mode 100644 index 00000000..ae8c96e8 --- /dev/null +++ b/app/views/ThreadMessagesView/SearchHeader.js @@ -0,0 +1,49 @@ +import React from 'react'; +import { StyleSheet, View } from 'react-native'; +import PropTypes from 'prop-types'; + +import { withTheme } from '../../theme'; +import sharedStyles from '../Styles'; +import { themes } from '../../constants/colors'; +import TextInput from '../../presentation/TextInput'; +import { isTablet, isIOS } from '../../utils/deviceInfo'; +import { useOrientation } from '../../dimensions'; + +const styles = StyleSheet.create({ + container: { + flex: 1, + justifyContent: 'center', + marginLeft: 0 + }, + title: { + ...sharedStyles.textSemibold + } +}); + +// TODO: it might be useful to refactor this component for reusage +const SearchHeader = ({ theme, onSearchChangeText }) => { + const titleColorStyle = { color: themes[theme].headerTitleColor }; + const isLight = theme === 'light'; + const { isLandscape } = useOrientation(); + const scale = isIOS && isLandscape && !isTablet ? 0.8 : 1; + const titleFontSize = 16 * scale; + + return ( + + + + ); +}; + +SearchHeader.propTypes = { + theme: PropTypes.string, + onSearchChangeText: PropTypes.func +}; +export default withTheme(SearchHeader); diff --git a/app/views/ThreadMessagesView/filters.js b/app/views/ThreadMessagesView/filters.js new file mode 100644 index 00000000..388f28f2 --- /dev/null +++ b/app/views/ThreadMessagesView/filters.js @@ -0,0 +1,5 @@ +export const FILTER = { + ALL: 'All', + FOLLOWING: 'Following', + UNREAD: 'Unread' +}; diff --git a/app/views/ThreadMessagesView/index.js b/app/views/ThreadMessagesView/index.js index 71c2aeee..4d296a9a 100644 --- a/app/views/ThreadMessagesView/index.js +++ b/app/views/ThreadMessagesView/index.js @@ -1,20 +1,19 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - FlatList, View, Text, InteractionManager -} from 'react-native'; +import { FlatList, InteractionManager } from 'react-native'; import { connect } from 'react-redux'; -import moment from 'moment'; -import orderBy from 'lodash/orderBy'; import { Q } from '@nozbe/watermelondb'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; +import { withSafeAreaInsets } from 'react-native-safe-area-context'; +import { HeaderBackButton } from '@react-navigation/stack'; import styles from './styles'; -import Message from '../../containers/message'; +import Item from './Item'; import ActivityIndicator from '../../containers/ActivityIndicator'; import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; import database from '../../lib/database'; +import { sanitizeLikeString } from '../../lib/database/utils'; import StatusBar from '../../containers/StatusBar'; import buildMessage from '../../lib/methods/helpers/buildMessage'; import log from '../../utils/log'; @@ -25,25 +24,19 @@ import { withTheme } from '../../theme'; import { getUserSelector } from '../../selectors/login'; import SafeAreaView from '../../containers/SafeAreaView'; import * as HeaderButton from '../../containers/HeaderButton'; - -const Separator = React.memo(({ theme }) => ); -Separator.propTypes = { - theme: PropTypes.string -}; +import * as List from '../../containers/List'; +import Dropdown from './Dropdown'; +import DropdownItemHeader from './Dropdown/DropdownItemHeader'; +import { FILTER } from './filters'; +import NoDataFound from './NoDataFound'; +import { isIOS } from '../../utils/deviceInfo'; +import { getBadgeColor, makeThreadName } from '../../utils/room'; +import { getHeaderTitlePosition } from '../../containers/Header'; +import SearchHeader from './SearchHeader'; const API_FETCH_COUNT = 50; class ThreadMessagesView extends React.Component { - static navigationOptions = ({ navigation, isMasterDetail }) => { - const options = { - title: I18n.t('Threads') - }; - if (isMasterDetail) { - options.headerLeft = () => ; - } - return options; - } - static propTypes = { user: PropTypes.object, navigation: PropTypes.object, @@ -51,8 +44,8 @@ class ThreadMessagesView extends React.Component { baseUrl: PropTypes.string, useRealName: PropTypes.bool, theme: PropTypes.string, - customEmojis: PropTypes.object, - isMasterDetail: PropTypes.bool + isMasterDetail: PropTypes.bool, + insets: PropTypes.object } constructor(props) { @@ -63,9 +56,17 @@ class ThreadMessagesView extends React.Component { this.state = { loading: false, end: false, - messages: [] + messages: [], + displayingThreads: [], + subscription: {}, + showFilterDropdown: false, + currentFilter: FILTER.ALL, + isSearching: false, + searchText: '' }; - this.subscribeData(); + this.setHeader(); + this.initSubscription(); + this.subscribeMessages(); } componentDidMount() { @@ -75,6 +76,15 @@ class ThreadMessagesView extends React.Component { }); } + componentDidUpdate(prevProps) { + const { + insets + } = this.props; + if (insets.left !== prevProps.insets.left || insets.right !== prevProps.insets.right) { + this.setHeader(); + } + } + componentWillUnmount() { console.countReset(`${ this.constructor.name }.render calls`); if (this.mountInteraction && this.mountInteraction.cancel) { @@ -91,48 +101,133 @@ class ThreadMessagesView extends React.Component { } } - // eslint-disable-next-line react/sort-comp - subscribeData = async() => { + getHeader = () => { + const { isSearching } = this.state; + const { + navigation, isMasterDetail, insets, theme + } = this.props; + const headerTitlePosition = getHeaderTitlePosition(insets); + + if (isSearching) { + return { + headerTitleAlign: 'left', + headerLeft: () => ( + + + + ), + headerTitle: () => , + headerTitleContainerStyle: { + left: headerTitlePosition.left, + right: headerTitlePosition.right + }, + headerRight: () => null + }; + } + + const options = { + headerLeft: () => ( + navigation.pop()} + tintColor={themes[theme].headerTintColor} + /> + ), + headerTitleAlign: 'center', + headerTitle: I18n.t('Threads'), + headerTitleContainerStyle: { + left: null, + right: null + } + }; + + if (isMasterDetail) { + options.headerLeft = () => ; + } + + options.headerRight = () => ( + + + + ); + return options; + } + + setHeader = () => { + const { navigation } = this.props; + const options = this.getHeader(); + navigation.setOptions(options); + } + + initSubscription = async() => { try { const db = database.active; + + // subscription query const subscription = await db.collections .get('subscriptions') .find(this.rid); const observable = subscription.observe(); this.subSubscription = observable .subscribe((data) => { - this.subscription = data; - }); - this.messagesObservable = db.collections - .get('threads') - .query( - Q.where('rid', this.rid), - Q.where('t', Q.notEq('rm')) - ) - .observeWithColumns(['updated_at']); - this.messagesSubscription = this.messagesObservable - .subscribe((data) => { - const messages = orderBy(data, ['ts'], ['desc']); - if (this.mounted) { - this.setState({ messages }); - } else { - this.state.messages = messages; - } + this.setState({ subscription: data }); }); + + this.subscribeMessages(subscription); } catch (e) { - // Do nothing + log(e); + } + } + + subscribeMessages = (subscription, searchText) => { + try { + const db = database.active; + + if (this.messagesSubscription && this.messagesSubscription.unsubscribe) { + this.messagesSubscription.unsubscribe(); + } + + const whereClause = [ + Q.where('rid', this.rid), + Q.experimentalSortBy('tlm', Q.desc) + ]; + + if (searchText?.trim()) { + whereClause.push(Q.where('msg', Q.like(`%${ sanitizeLikeString(searchText.trim()) }%`))); + } + + this.messagesObservable = db.collections + .get('threads') + .query(...whereClause) + .observeWithColumns(['updated_at']); + this.messagesSubscription = this.messagesObservable + .subscribe((messages) => { + const { currentFilter } = this.state; + const displayingThreads = this.getFilteredThreads(messages, subscription, currentFilter); + if (this.mounted) { + this.setState({ messages, displayingThreads }); + } else { + this.state.messages = messages; + this.state.displayingThreads = displayingThreads; + } + }); + } catch (e) { + log(e); } } - // eslint-disable-next-line react/sort-comp init = () => { - if (!this.subscription) { + const { subscription } = this.state; + if (!subscription) { return this.load(); } try { const lastThreadSync = new Date(); - if (this.subscription.lastThreadSync) { - this.sync(this.subscription.lastThreadSync); + if (subscription.lastThreadSync) { + this.sync(subscription.lastThreadSync); } else { this.load(lastThreadSync); } @@ -142,9 +237,10 @@ class ThreadMessagesView extends React.Component { } updateThreads = async({ update, remove, lastThreadSync }) => { + const { subscription } = this.state; // if there's no subscription, manage data on this.state.messages // note: sync will never be called without subscription - if (!this.subscription) { + if (!subscription) { this.setState(({ messages }) => ({ messages: [...messages, ...update] })); return; } @@ -152,7 +248,7 @@ class ThreadMessagesView extends React.Component { try { const db = database.active; const threadsCollection = db.collections.get('threads'); - const allThreadsRecords = await this.subscription.threads.fetch(); + const allThreadsRecords = await subscription.threads.fetch(); let threadsToCreate = []; let threadsToUpdate = []; let threadsToDelete = []; @@ -164,7 +260,7 @@ class ThreadMessagesView extends React.Component { threadsToUpdate = allThreadsRecords.filter(i1 => update.find(i2 => i1.id === i2._id)); threadsToCreate = threadsToCreate.map(thread => threadsCollection.prepareCreate(protectedFunction((t) => { t._raw = sanitizedRaw({ id: thread._id }, threadsCollection.schema); - t.subscription.set(this.subscription); + t.subscription.set(subscription); Object.assign(t, thread); }))); threadsToUpdate = threadsToUpdate.map((thread) => { @@ -185,7 +281,7 @@ class ThreadMessagesView extends React.Component { ...threadsToCreate, ...threadsToUpdate, ...threadsToDelete, - this.subscription.prepareUpdate((s) => { + subscription.prepareUpdate((s) => { s.lastThreadSync = lastThreadSync; }) ); @@ -197,7 +293,9 @@ class ThreadMessagesView extends React.Component { // eslint-disable-next-line react/sort-comp load = debounce(async(lastThreadSync) => { - const { loading, end, messages } = this.state; + const { + loading, end, messages, searchText + } = this.state; if (end || loading || !this.mounted) { return; } @@ -206,7 +304,7 @@ class ThreadMessagesView extends React.Component { try { const result = await RocketChat.getThreadsList({ - rid: this.rid, count: API_FETCH_COUNT, offset: messages.length + rid: this.rid, count: API_FETCH_COUNT, offset: messages.length, text: searchText }); if (result.success) { this.updateThreads({ update: result.threads, lastThreadSync }); @@ -244,112 +342,168 @@ class ThreadMessagesView extends React.Component { } } - formatMessage = lm => ( - lm ? moment(lm).calendar(null, { - lastDay: `[${ I18n.t('Yesterday') }]`, - sameDay: 'h:mm A', - lastWeek: 'dddd', - sameElse: 'MMM D' - }) : null - ) - - getCustomEmoji = (name) => { - const { customEmojis } = this.props; - const emoji = customEmojis[name]; - if (emoji) { - return emoji; - } - return null; + onSearchPress = () => { + this.setState({ isSearching: true }, () => this.setHeader()); } - showAttachment = (attachment) => { - const { navigation } = this.props; - navigation.navigate('AttachmentView', { attachment }); + onCancelSearchPress = () => { + this.setState({ isSearching: false, searchText: '' }, () => { + const { subscription } = this.state; + this.setHeader(); + this.subscribeMessages(subscription); + }); } + onSearchChangeText = debounce((searchText) => { + const { subscription } = this.state; + this.setState({ searchText }, () => this.subscribeMessages(subscription, searchText)); + }, 300) + + onThreadPress = debounce((item) => { + const { subscription } = this.state; const { navigation, isMasterDetail } = this.props; if (isMasterDetail) { navigation.pop(); } navigation.push('RoomView', { - rid: item.subscription.id, tmid: item.id, name: item.msg, t: 'thread' + rid: item.subscription.id, + tmid: item.id, + name: makeThreadName(item), + t: 'thread', + roomUserId: RocketChat.getUidDirectMessage(subscription) }); }, 1000, true) - renderSeparator = () => { + getBadgeColor = (item) => { + const { subscription } = this.state; const { theme } = this.props; - return ; + return getBadgeColor({ subscription, theme, messageId: item?.id }); } - renderEmpty = () => { - const { theme } = this.props; - return ( - - {I18n.t('No_thread_messages')} - - ); - } - - navToRoomInfo = (navParam) => { - const { navigation, user } = this.props; - if (navParam.rid === user.id) { - return; + // helper to query threads + getFilteredThreads = (messages, subscription, currentFilter) => { + // const { currentFilter } = this.state; + const { user } = this.props; + if (currentFilter === FILTER.FOLLOWING) { + return messages?.filter(item => item?.replies?.find(u => u === user.id)); + } else if (currentFilter === FILTER.UNREAD) { + return messages?.filter(item => subscription?.tunread?.includes(item?.id)); } - navigation.navigate('RoomInfoView', navParam); + return messages; + } + + // method to update state with filtered threads + filterThreads = () => { + const { messages, subscription } = this.state; + const displayingThreads = this.getFilteredThreads(messages, subscription); + this.setState({ displayingThreads }); + } + + showFilterDropdown = () => this.setState({ showFilterDropdown: true }) + + closeFilterDropdown = () => this.setState({ showFilterDropdown: false }) + + onFilterSelected = (filter) => { + const { messages, subscription } = this.state; + const displayingThreads = this.getFilteredThreads(messages, subscription, filter); + this.setState({ currentFilter: filter, displayingThreads }); } renderItem = ({ item }) => { const { user, navigation, baseUrl, useRealName } = this.props; + const badgeColor = this.getBadgeColor(item); return ( - + ); + } + + renderHeader = () => { + const { messages, currentFilter } = this.state; + if (!messages.length) { + return null; + } + + return ( + <> + + + + ); + } + + renderContent = () => { + const { + loading, messages, displayingThreads, currentFilter + } = this.state; + const { theme } = this.props; + if (!messages?.length || !displayingThreads?.length) { + let text; + if (currentFilter === FILTER.FOLLOWING) { + text = I18n.t('No_threads_following'); + } else if (currentFilter === FILTER.UNREAD) { + text = I18n.t('No_threads_unread'); + } else { + text = I18n.t('No_threads'); + } + return ( + <> + {this.renderHeader()} + + + ); + } + + return ( + : null} + scrollIndicatorInsets={{ right: 1 }} // https://github.com/facebook/react-native/issues/26610#issuecomment-539843444 /> ); } render() { console.count(`${ this.constructor.name }.render calls`); - const { loading, messages } = this.state; - const { theme } = this.props; - - if (!loading && messages.length === 0) { - return this.renderEmpty(); - } + const { showFilterDropdown, currentFilter } = this.state; return ( - item._id} - onEndReached={this.load} - onEndReachedThreshold={0.5} - maxToRenderPerBatch={5} - initialNumToRender={1} - ItemSeparatorComponent={this.renderSeparator} - ListFooterComponent={loading ? : null} - /> + {this.renderContent()} + {showFilterDropdown + ? ( + + ) + : null} ); } @@ -359,8 +513,7 @@ const mapStateToProps = state => ({ baseUrl: state.server.server, user: getUserSelector(state), useRealName: state.settings.UI_Use_Real_Name, - customEmojis: state.customEmojis, isMasterDetail: state.app.isMasterDetail }); -export default connect(mapStateToProps)(withTheme(ThreadMessagesView)); +export default connect(mapStateToProps)(withTheme(withSafeAreaInsets(ThreadMessagesView))); diff --git a/app/views/ThreadMessagesView/styles.js b/app/views/ThreadMessagesView/styles.js index 1bb0b0e1..ec24da20 100644 --- a/app/views/ThreadMessagesView/styles.js +++ b/app/views/ThreadMessagesView/styles.js @@ -18,10 +18,13 @@ export default StyleSheet.create({ contentContainer: { paddingBottom: 30 }, - separator: { - height: StyleSheet.hairlineWidth, + dropdownContainer: { width: '100%', - marginLeft: 60, - marginTop: 10 + position: 'absolute', + top: 0, + borderBottomWidth: StyleSheet.hairlineWidth + }, + backdrop: { + ...StyleSheet.absoluteFill } }); diff --git a/e2e/helpers/app.js b/e2e/helpers/app.js index fcc6dc2e..993f2eb9 100644 --- a/e2e/helpers/app.js +++ b/e2e/helpers/app.js @@ -54,9 +54,9 @@ async function logout() { } async function mockMessage(message) { - await element(by.id('messagebox-input')).tap(); - await element(by.id('messagebox-input')).typeText(`${ data.random }${ message }`); - await element(by.id('messagebox-send-message')).tap(); + await element(by.id('messagebox-input')).atIndex(0).tap(); + await element(by.id('messagebox-input')).atIndex(0).typeText(`${ data.random }${ message }`); + await element(by.id('messagebox-send-message')).atIndex(0).tap(); await waitFor(element(by.label(`${ data.random }${ message }`)).atIndex(0)).toExist().withTimeout(60000); await expect(element(by.label(`${ data.random }${ message }`)).atIndex(0)).toExist(); await element(by.label(`${ data.random }${ message }`)).atIndex(0).tap(); diff --git a/e2e/tests/room/02-room.spec.js b/e2e/tests/room/02-room.spec.js index 224c8c9f..ee9f5bd4 100644 --- a/e2e/tests/room/02-room.spec.js +++ b/e2e/tests/room/02-room.spec.js @@ -294,24 +294,42 @@ describe('Room screen', () => { await element(by.id('room-view-header-follow')).tap(); await waitFor(element(by.id('room-view-header-unfollow'))).toExist().withTimeout(60000); await expect(element(by.id('room-view-header-unfollow'))).toExist(); - await tapBack(); }); - it('should navigate to thread from thread name', async() => { + it('should send message in thread only', async() => { + const messageText = 'threadonly'; + await mockMessage(messageText); + await tapBack(); await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000); await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000); await sleep(500) //TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :( - - await mockMessage('dummymessagebetweenthethread'); - await element(by.label(thread)).atIndex(0).longPress(); - await expect(element(by.id('action-sheet'))).toExist(); - await expect(element(by.id('action-sheet-handle'))).toBeVisible(); - await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); - await element(by.label('Reply in Thread')).tap(); - await element(by.id('messagebox-input')).typeText('repliedagain'); + await waitFor(element(by.label(`${ data.random }${ messageText }`)).atIndex(0)).toNotExist().withTimeout(2000); + }); + + it('should mark send to channel and show on main channel', async() => { + const messageText = 'sendToChannel'; + await element(by.id(`message-thread-button-${ thread }`)).tap(); + await element(by.id('messagebox-input')).atIndex(0).typeText(messageText); + await element(by.id('messagebox-send-to-channel')).tap(); await element(by.id('messagebox-send-message')).tap(); - await waitFor(element(by.id(`message-thread-replied-on-${ thread }`))).toExist().withTimeout(5000); - await expect(element(by.id(`message-thread-replied-on-${ thread }`))).toExist(); + await tapBack(); + await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000); + await sleep(500) //TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :( + await waitFor(element(by.label(messageText)).atIndex(0)).toExist().withTimeout(2000); + }); + + it('should navigate to thread from thread name', async() => { + const messageText = 'navthreadname'; + await mockMessage('dummymessagebetweenthethread'); + await element(by.id(`message-thread-button-${ thread }`)).tap(); + await element(by.id('messagebox-input')).atIndex(0).typeText(messageText); + await element(by.id('messagebox-send-to-channel')).tap(); + await element(by.id('messagebox-send-message')).tap(); + await tapBack(); + await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000); + await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000); + await sleep(500) //TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :( await element(by.id(`message-thread-replied-on-${ thread }`)).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); @@ -325,7 +343,7 @@ describe('Room screen', () => { await element(by.id('room-view-header-threads')).tap(); await waitFor(element(by.id('thread-messages-view'))).toExist().withTimeout(5000); await expect(element(by.id('thread-messages-view'))).toExist(); - await element(by.id(`message-thread-button-${ thread }`)).atIndex(0).tap(); + await element(by.id(`thread-messages-view-${ thread }`)).atIndex(0).tap(); await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000); await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000); await expect(element(by.id(`room-view-title-${ thread }`))).toExist(); diff --git a/e2e/tests/room/04-roominfo.spec.js b/e2e/tests/room/04-roominfo.spec.js index e687c0bb..d8f079b5 100644 --- a/e2e/tests/room/04-roominfo.spec.js +++ b/e2e/tests/room/04-roominfo.spec.js @@ -14,7 +14,7 @@ async function navigateToRoomInfo(type) { room = privateRoomName; } await searchRoom(room); - await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toExist().withTimeout(60000); + await waitFor(element(by.id(`rooms-list-view-item-${ room }`)).atIndex(0)).toExist().withTimeout(60000); await element(by.id(`rooms-list-view-item-${ room }`)).atIndex(0).tap(); await waitFor(element(by.id('room-view'))).toExist().withTimeout(2000); await element(by.id('room-view-header-actions')).tap(); @@ -167,6 +167,7 @@ describe('Room info screen', () => { await element(by.id('room-info-edit-view-name')).replaceText(`${ privateRoomName }new`); await element(by.type('UIScrollView')).atIndex(1).swipe('up'); await element(by.id('room-info-edit-view-submit')).tap(); + await waitForToast(); await tapBack(); await waitFor(element(by.id('room-info-view'))).toExist().withTimeout(2000); await expect(element(by.id('room-info-view-name'))).toHaveLabel(`${ privateRoomName }new`); diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index c5814ba7..1c72f481 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -1396,7 +1396,7 @@ INFOPLIST_FILE = NotificationService/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; - MARKETING_VERSION = 4.11.0; + MARKETING_VERSION = 4.12.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative.NotificationService; @@ -1433,7 +1433,7 @@ INFOPLIST_FILE = NotificationService/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; - MARKETING_VERSION = 4.11.0; + MARKETING_VERSION = 4.12.0; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative.NotificationService; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/ios/RocketChatRN/Info.plist b/ios/RocketChatRN/Info.plist index eda38837..85aabc62 100644 --- a/ios/RocketChatRN/Info.plist +++ b/ios/RocketChatRN/Info.plist @@ -21,7 +21,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 4.11.0 + 4.12.0 CFBundleSignature ???? CFBundleURLTypes diff --git a/ios/ShareRocketChatRN/Info.plist b/ios/ShareRocketChatRN/Info.plist index 3cdcad19..5a4b6a47 100644 --- a/ios/ShareRocketChatRN/Info.plist +++ b/ios/ShareRocketChatRN/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 4.11.0 + 4.12.0 CFBundleVersion 1 NSAppTransportSecurity diff --git a/ios/custom.ttf b/ios/custom.ttf index 9077f7ef48956d2f8c1adf21c882fa41a8ce9c6e..68638321309ed229351989f8bcb9a98581afee95 100644 GIT binary patch delta 19857 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 HZ%6+Zn$4;G delta 15539 zcmbt*d0<<`o$$maiS0NhiA`?g9OQ69oP?AB0V|X% zM?>fk$`KZGlyVbdSjw?r+R|MD+fBPkOIzA{+ioGW3)vRhZa<`azj?Al%F=#+e2VAI zym@o}W`6fCcbsPqy~B(nj1bbG0%B3^q9rx;dXwtEpym}w`E}by#!ic;Pa%Ze@V<59 z$gVNS4e)*|{8x-@+i<4T z^c1|q#Q2)A?Ypjog~IQN-_h@gRS36Fwc{7Rid*N<9tQYFzhmS-yW#9DXD80Sc)oc4 zJk&tzv*_%`vtK#;pj?B`|4LFwtgU1#LJv%i;2|>in|Y%G<&mGAVDo4_dKUc?dXs#W zzZ{3ipZV`Hnr`wRLXdnzV7*(T&vX@ z&7wgc&>M8A9UAqaeJxiv)oqG)T3yBEV!ysFgY9Nf!z^?pjMhdExlB8dR-ot60Ncmb zBRg`#?!vGUr4Cz-7MrBB)n_7YxY5`UjYXnCj+2ZrWyZ+WV6xxPZM^O}+%}rIe8UFV z`W@&jdky)uA@116yZ9+Vn1YPw_cNVlQD-vgivO^mM2tb}Q)nBzgf$~CngbIxq*L`a zD@Rrt?S35&1*7elQw3wu2FQcaM);hmw@F@X<(MdW#%Oo+VUtcYWBj_{6nOqydquNJ z_a>)RD9IbfHsxtF&Gr(tDe3AJ&1P|$PArjgKLLZf_$_8pG;g8n7x3%zJ93w~T`u=!xsLe@a=E zU-!zt1v({DBu^Wi1Y2A9@53?9XC_dDbX#L=h?!5eS>2eB{Z=o>paUoYhkV@HH{L*@ z!*6ERmO)&6bu+xW0Di&*z7Gn5u(^02Jp-MI>Dnv^^c&Alu$NL$@LNo}?X=^f&GIl4 z^y{amp_NnEY!=68zroGWP7v+~Fx)R+uh-aXnCDRhp$I^YTw@D)K7Y}sE}S{NY%kf) zDC^J^^9yo^6tdOva3P%lTe`{v6t4SWXQdw7|SA2n!a-YhTa{Q}BFmue{0L z1+W90z?HS3Wbuc|kbykwOj_wFD$up)uzZL*6hm!jIdMA^#O-Qhw6~I#t^uYtM;>>1 z7*-;0x+0tkU5-|<1@dRt*x-aKV(=S|M_k9R)_M#lToIN%#=8xrKb>=2TimzuNPQ+B zxb$#+)4EW5q;1Zzl`HZbR)w#VhsEOi!G={x6RS(xclUCwtKz~jL z=x+tW6Csz}?;2u9t70X6_3jRecWzhl2>z&gM-E;tbGs{}%yEBU2SvXAz8w@1cl6P6 z|BiqkPj&3BE*WA;8B_1X=OUG5oNeD({R{H?%@UdPEoqYXw7;_5X0-}}#%;0&w4zqB zN$r&+yu%*R>BRcf&W%z?C+bA47wjhBpWJRW-$Rp#%qmQt!ao}_~P|C6E=xMj97e?=`7vCb1s!2s9YR> zImgeuOv&%^%TK?ka>HkpWJlOSYQlbejO-0pkZZ$9U?rnyHNZKBbjX8}XbpKOT!S;@ zY`A`W8(h!gdKpofV}ek8)8ufNFrv@%2%AgWd{r2?aSFU7_Xe(4aB5C%W zIvs_}2!KhgRw>ClvF+Z?Fxz85Ms%nZ4I`Pw1>{YI0>IJ8`uGCOlc(c-jQBkHOT67i z$w3~a*_YWqltDXD0UZKRkpHeqkUbSWaF3=c9Qaq{OUZD^?og_*H5j~M`-bswgU#n1 zsI6_yrBau8J=RJG!>Q~x@<=jhz}qOgLQ2X{ku0s;8C3&6q}A{!P0W0kr``>MhXzC# zC$Ron@?oWC+!}y0ke3^2h=zg`BUAP1sd!UUoGH*}vEVNgg<_7GGK)n(CFWq%NzcF; zWi`#QQe~{UIfj22YtGZD-paj2vtegcZiGPinFf;M2mG<40IDm4sov%Ra$vKP!wGSy z6*rdW=3su1MN)zKG?ha_c#xjIfi9yYFUF9YrWaw5&VXShu(Bick{pI*lxQ=|#F`J& z+wwi~=fs=jY|U`J3+tKp87(ry%;|a`5TJVLB8H4zz$IRMNoG!`;CV_A$c|bkzMmYb z^&0ON#nK40V$773lRMsj71=d*$=re++o_;)^nJor32np0W;%J@`uI17-&@!3!OKR$ijp zuvwT7KELwG`|ECGu#bcrf@EHUhk@w^8>}i>B>A7o8yh^BiP*_Qjhn{rLtkNcGk<`a z8$b;(x)*b-4#%o-#@vQM7W`kEQkLhWa*Qmp!GjqW1;r1QcI`}7dP@*Cm-&Bz=L@_G z-vSFP7lFOQC*}{(x_Cyb5tLA15?YP&7&)2_IAFI(1*nl@^Q<3e8AYcZ=sL8Yd@tRG zl|+{r*nsG97pFxt&1o`=@`Zzo>X$F-bi9dH;|jql_&AZXX>1yAEGRv14~ASGg<2u# z6zubi!YBe?vuRyg|6-j+(CY<_t|967S5^7_N%DFoiPw^InK?#^tVhrwJI2-`3#=(f zvQ5#N5XiBVa`|w;n6iQt+lWt5T)=tCpKk{K{EH(I*OAi1DgF9g#dG9HQ==9(rvO~< zU@rkK|AVGA<7xLIPw8P^R7fhXb*0{|!J9mc$Gj4R2n#Rtw9nnu_6G&8Y|%3c_H1bx z?8!lQR(g-_lQG7d$^a;SB$`>?joqckc}X0x23RfD33#b{&|^sof(4-8+1|aQ?LAh3 zxtvnX{<@#a&|=cu94mexql+YudzL;KAWxud6yOjFfUF`&t`(>S^^td*7dE7rx5~1; zXqM3%I$TfXZCd$BrI#7=R#tk8N4%BunK1?YiboU*va+QUkWPsvKpM!imjNXRg1ps8 zo^FYeAGQR>Q_OTJm!r^|j<{TrXIb(ic?IkR4DILG*8f(Xv*W)N*(yMsI%aV zQVJs%N*&OXxu-Do8s)q4!#|V53rsr%bovRIPWw0~Es7!$DZLL<69zT!B zldWwY0ZqYC^hdoGyYzH$3lm2Ww%?@RKx;Yr<%wmqN4j$xt z*)VxGYolp=rjG7o_B-pJsf6Ra^Fk4SaG`kgLMeCVLh-Xo=Cv=Vyr?C%Uih9XA839? z-Rwj+!w&93-ynC*sZ2Gb8$+P^f&7)?LS8I!)j))0@hqj};622pKozs7xDe=sS=`83 zROI71{_#{@S%?F`#Ud(Mh~rXi7^p@jrNd^Kwt^T+i9`l7D7(F;+8np?My^32sNi<1 z)EKL2K{Tm4b6f|06$3LH&6yaMsqy-$Ue!O0*Vd?Y%HiDC>9-dcrh{Qpxlxs#=i4tD zK_w^}I3sV3o2zTKXD^lYGQYRfnTST)B)jf8&i`*_H~&a**BvrpE#@I3@3dX9)e|VI za~<$|QacywAwJ%V3%)JjsVLu=P+?O}Lcc+Jh- zU7@vFTO;9$Usdd$TM>@5TCG2-zQpGU@tji0@gaxrlIq;WT~1|I1}$qk&!dZ#=}1|d zE^FES!IhcLH52|O$q^LjC_>O7HTe-DxehD-cQV}Z!^vdlFx(6Uxv9%f9`1T*d>{H9 zyN@ZzVsMo#T!IKek3kk}B+!g6el27FEb{LI$~Ps;>wu!eCLJRqQ1Q1q({74Mc$7X% zN0~frBbrR&w_wH*Ce=L&dnbD*o2Bdm#o=mzAqDF&a7_!@(Iah* z;S835)w;}$=HiDO&zLcztZ?oXOdMn41%-l9v75er)#g2$N{cOc+olrP%Vy2AsY%$Y z5>=8%VP<$}D@ahdnH=~2Ej=sea#Kr4Ss`%{=&8djj*eWauRn*S(DIKB_@PTnwnJq3A2g9h9m}Rk-T-~>atnUATk}|2ANW;Pe z0|twcg_bIY8JyR%*$aB?vexX}6~<9k!6;cyGSsI1xdFx6wR5wr%N!1`Z*xx%d2nII z3LJSF2Jz2ux>`_6z)1JjZkG-JwGdiEwbg)<_y(N8l1zsg1ZEW%TRV`GC;1)Yg}x@1KUMqnt>0O!;rU?y0~q^$H`ow3de;*S&pl`YhW zKb7pgeSO7GKCPL?yN|L~yS=~9Rcfwd9`7su7rypulg}|p%Xf&mz zx7{XKRHdKdh{__|CRhE6+RF;C+S_5ZDg^Q~4qz#e!8ju^x1L9(KVQd4*OmTM`s0Cv zthLne^Pl6lOAQ}=1o(o{t+0%%;U=^r;!t)b@AdX3`gTi7j#Emz`(m9AUyS=VyoFU{ zGd24Lni?9GfqrJT+06D(cp14>**p#c?D;7LVyDm|v=prXez6g41qE-9%p(qh9C;KS zLl2?H(9>uVy@Xyz-$ies@1q}~pHXon8VeaiMjXR|#y}%54#*nP8JYpTFs6*aVBui| z=0P){AOTR@fIUM7ti~DuEe>-Sh5(jMM`{F)9!oU>ACGY<;3SQi5Hy!!)(m~2>>j=X zx5-#jl<#CDDhqI#5am? zkm$&4hR&jl(F$A)bhu;6(xd_}EIo^tSZ$?uaNK4sJ%ty^mCBgABcPHS;f0FQBve0T zwc&W_9h(&|fiASN+-SEeyJqhZrC=7_K>TihP{D&Z&yI8IC^ng+QL_mr9=shYtw;6( zMrhokg0t-QX7jWCl=j&^9IKT3m`#;m)T2#gIaVRhQu-b(zyEg@JpOl9`~`bY!aC(i zc{;HAub1k&7S`(BOE-DZV$1vcg0(6Pu)Xdt+8^ywA#VWJf3_L8?;N@b9cOQ1P65Ak zf(H+iCi(KGfm7gzS(?&egX1QPe}}(rf(&5 zp#+3yTK?dtAIPzx^x(hF3ig0}6L^Bn<7rq7wF+I#sV9tD=4NW-DP9AXHF^o z&=c%d=C>CZJ}C~li7>3kjl?lrZPlGeGb_5NG`V8fij_BlY=1qu^3sm+x>O5JG5mjU zid!8fu=C!kR86x28+*o=XcF`a1*5>C@6z6{@4u zn08d9z*k_Z@pM;tKNfhknZrAs&eCDdtmcJ}y;ZeQlK%$#W;MlJ`}2_sRYUxD{rv~&)i*{mB0G|g{THj z|FvQ+%^W!X$g^K&65;y#Fzs-L0)rZE%wqSmYNc}S+bWfcytqs^`R1}uagM>?2HSZj z$hsOZ&>>vbisa*$($QE{#jz@zWJ_n5AU#GH#={sy(aO{^dQr47zY zt8|H|XBeBeIZ-NFjWqHLejd#4WfaCE-N;v zEn1BQbPSeN>NGckX&USSf=MmfwWYdsb@jKoZgMFkQL9sI5f%ws6gsUaDax0-Sw{>b zyXH`Z9k|I9x}6ZxsjQgJv)AJ|uBo5n&wTdB7TsCgZQ>Zdw4_T27SROai@3Aju0KB+z=!vnOM$=|N+#P}b_s<*mD~K+ zcRmAXIE$OoMP+j6@_EbdwYc3DNT=l|ly3LXSBu3{yymLh^>wytY4L&u+XH@oVEcjv zix>AU*zOO+!;HzW6u;g*C%eK4zZKaz-M$u=dt0lyQWc6r#T=5@=w?dyk=~8z@p-Xi zJf1az0gB$j-+)Zh3P)!JTMWfbxK5ytQ?@Ou?^auVimj)&3CytL@8CMy&1Xr$5ZlrWR;XCtfim7P{QpAFC5mGrwBLL_LY zNrEW#*XEOU$}9kDuK^FptSMzynIfNVy4sY$c!<&(JWQW6b`=M?Z}VJSAaAsWiE2w4 z9E|@7O3J(B+?M&ZO4^P=W#R(z^i-Lzlo0bH>MjJ+VQIBI;6r8WBH1+h8orFgw~pW# z*}t_9tI6rDJz9{vsZ9A@Twr@hcv}rtO)lMb5G&WCx!?i*^%Y+kpB~tqNCq#~ILuezoQFR#(^3>YRQCCjpER&CL!^c+^}K@MOP8kMou({ivgkn`5Y zhZ6ITwt3T5jY-Yv6@ayzNzEJ8YOR9PvKG5a#ptYJ+2}ANZ-9B6&Bgqa=eBGEh z|B#isD>#5`75fdcNj0!wi212krxQN?T0T^| z7C*v)WpCGUjZ(pumK}ecRVoE`^wYn9g5_X-x}f+dIj>4{N{}>j?3c*t9lOGYrc1T0 z^!95tNsDbwXWd3^x^&WKPX;O|7k)LRbBbhir&ClLc}z`^;4RAY>W_g@+8YMxHOqgXNgR#0nNwjm|=F!)BJYC@p zx5nN1>Y7fa!s(h9jgrvr%gJ3|BDkJZUDZHi0kW7+)4axEb_S&id%$J23^rmMun*Y-?#7y$xfb}%t*L300``rxa~L3WureG@8}xcZ z8ths_upLH=9cYMokCnh-5hK;t*vIQL=>~9D1gT*{vema^iIF`Z)L8)@5b8Jw2L=s_ zxVQo@6fkw^zs18JI0CWo+;czRslWdu4}XBE{PWLK04lK&jW8eK&2Yst9@}947%hWX5#gi^$Tkx5p%!b!keL0@D+WdH2`EAZo;Z~~bqW%$(uTkZGv`U4 zR_i;f6~&Nt&dIj7zH)NTTQd_f67v!3o0-r7ArrDw0}PRw8tRkbWZy|Tql{%FZXCoZ zPz(R|l-WCA&MdR^3n!g(5@v-v0lS=;R0X1)1!N~WsSdnB^_g~R`H^S|Bq%PBfgNTf zcw!UX=6Favaq%{@rDJryizhw%*BhOk^CHleC$)pA34sJcy;?qMcg@KDEfp6FNL&mi zlGcT58%sC91=3?o#E4E5t4?IWqLwT@mo%HRCla~{ zc+D?X zahL8ae<|0)Wo14CD1+)|;Hf5GxyhFJoACU$0A?^H`)!Q_Y#}Bsc-sM>&dK+05&*Re zXaj7a6HbZ)_c~Z6+0LC0q=+%WM#v1lb z<>|L`U)UgV;rj&n$pIh!BYmnt2%{#-6GU;aMFo^KWU-O%gUiN)4#%Y}EnS^0t;0@- z!#UjA(z&RoXOqwC^=<0uSu_Y`uNUX!;3he8XpBkCeQ+oCky{Tf z>gp&jqN`=L+3ezS7q7_ch1Cs~S6V7i0~(mp@Kkwla^J!5WZPF#xC5gzpz0=ORNad# z(jX*%0-6g5K}FdQgr_g4$Mk~su~&io=R)nI*6d~BI+DOV>o^svXZ_C18&*qCO-&kD zLXXvAu|l~q4P}cpQ?a?Fv$ge73eHPgTRXd;>~O|{F9T_J@h{_&+zhzL=emC<7;`$x z9a_L{3TD-o)~=RKm6Rz6!b@P`Ox^Y_w*Ul~>(K#XJJL_q9r+Mc?M0u;pW-P z$ql!+E`0$)!2tarA`G4o@g|yhZIzCNFV1)e82L zq`tzTPg)sAM5om_c&*tKw}70g(^a;UcS(*>cM{JXF4BC*BmCDP!euXukVM|U!>33| zF^*`CW(OjIL6KKzw4z;MU1?F;MR0iMS%bz3CNSWh6TAZwRb*)xqRzAhj->QWdYi92 z$bm`0AWYF6?=HXaI}A)2QE)ig5iHVI~P=u6L)UJHsbu+Skhd@Bwio%9{O=ry|Yko)>plA z(6i*#)33j3aU9eJjXy4EwS}J;f|^4Tc)tmE_st}5@9}^Zok2IUSuk3O016LEfE%$D z^#aXZ0UGEIbTxVUZo4l*aUlg5UNhz0Iayp;9Y&wPd&F;?7!|6cjlDnu|J% zQlS%!5JVW)K`@}G2|MsHt6pz2R@l9DX0t^Q1h*05Nhnp)nAI?#M&mW>of`1M+4TC2 zR+UDj3!0&=3H*41i#q6ZW{U`hD7mf2WOfUnA_D&hck(dUN}d2)Njb)XqVW=gxbf5ez-33{n z9Ff~6+%k)prH^^2q!`@~F*-k)`Ao(5;!?9H`#a&moTSJuznxo|%dMoT#b9iS#j2`e zu@n$oK!jqc6TEuc^E;TtiC#(CCsKl`Iu4D}kEzfMsDd z+5)kaH=x7BaL`U_=c&ln`@`d4bBlqw12_UFfsF%f)0~v92LrA|Egfdr@R80y6HbCi z1bRU@H-=zlt3+=KoBiRmpM+u*z48Zk^7pyD^m3-K$+>vu1+9 zSVie~489K^W7rS+#+>)+Q^9^{QVF&Kg_^C@x%FR)1%nx@O?$5{9j<&2EXB;R`;5-9 zzRF-qfA8CUjg5UY;VC&Tb@xOPA14n_G@C$f%cBw5L|nE>)sPP-{6znNm+X5|B3%!d zJTsO?C1AiD8ci#!ZZzU7$XSA9=L3}t#D(7fK!izlkvAU5jfX+O%FvWs)!DInbw}r_ zMNx+{5&?Y3^))p1_BJ;3bwZp5#5AgSnlEiw6>DmWZK~><@=B~z8F&R&VNMC5)d7nSjL}qmUaJL@%Y7iUWY8|Oj~sdM zCi2d1kx5|k(by=t?IA0kCM$LaLYC`k+JDu`ReJ+|?5HwI z^-fnza5Q=1yBZp5#fJL2mGKIH$k%L*nFg}vn8mm}lic0{mfqG|=8>1U0OPM9KjZ8W z{4f{QGH;NHM^f&aWN8tEGn)4`rhCCN0X#29cS=5b#KE7NMG<2B#=B-E7`ax0H=l;r zCcs#|1OjYdd30zzCBcP)gP_-pZI%&9jxB+}*ok6&w5jRPC6}zIuUr^R#N+e9CGBZ) zCB0dnhT)lKlCF$f@_6UQVu{dTvTo(#B?mI;h?)_+S#Rk#5VG|a%dVUE&|88<=vfD5 zCLv08aG zYp9E>)qTw^ExLdh?{u;Z`HL?i`4r>&>!QRQd0%BAhSUUR12al!3 zW6F!Lr7?Ap71YY~#cOJ|w6^9PKJWZ^JOOW;nw#g$Yzoi2;o58eed*E$p3&U8_qrck zvbYX5SNc&lS)I*RC$qVAJ@eMBo7c1MeV$d+*48Wvhl0&EE6*zwwKcViX4W46;}fY= zvUkCNKB#*eQo!)L0Mk#CA?e z?e4aEa>J94E~h=_j*QH$Y-y>iXlXej-+Yyz#+?4rOrF+mtzV>XgR8Diy0_{q7G2)o zz$=ts<526c9Fn}A#u{&+-lz?qS_NK0;hs=mDiXTax4V@&`z!9GNzGr>{NCi6V% zJdMtvZ={+Erw}?=mdFCs00Jxg(^DJrHc&Q6dr6AH#rj^ zl!|H)7h#zo8xFE62HNl{2u%)y6gewiZvisPgIo#!!v*jOmN^aXCqMb-)2lo3vJo6i zfw?uE)QH!)ru3;PYD%?3;4H+~&P{XXxVg^YGjz8Auj`g-qMMxmh=&Y6 zGgo;S#ydB9eaE%uWm$3x_{5h9 zzbQfV2L=#AG7cDwm+7;gAdP}vSM<{j|9s}Nyc|_QPJL4vPtaOuL;GF)d!gK~Tt$5V z@O~UpUXehzL;gJEcR>CW4s4NcRK3XmRy30#m8kcJ?=0?9+py=aB) z-8a+r$V^+>ege`Eq$x=GnY0%22^f1H-@0Cm_*Hz<}}~bOCu-D22)%`5PTDfnT5behBiZa=kn- zv;~MI&~KoQ_WjS9Z&OhBT`1G<>mjF$2OvogRjHa9=PJ1q z>YRFlZ{qLZ&k6m)KWYwZH);PUHi!pwY269^4f>M?gW(FpU4~Z-?;EwoTH|8l+a`h7waUwFRbvo~PI%6pZ9?1I?G5eUY5#dHms^{AWNAmfl&{LMgN o;NwMy25Sc=27i6Ya{`sQ>@~ diff --git a/package.json b/package.json index 179259e8..575a48e5 100644 --- a/package.json +++ b/package.json @@ -129,12 +129,8 @@ "@babel/core": "^7.8.4", "@babel/plugin-proposal-decorators": "^7.8.3", "@babel/runtime": "^7.8.4", - "@storybook/addon-actions": "5.3.19", - "@storybook/addon-links": "5.3.19", "@storybook/addon-storyshots": "5.3.19", - "@storybook/addons": "5.3.19", "@storybook/react-native": "5.3.19", - "@storybook/theming": "5.3.19", "@types/react-native": "^0.62.7", "axios": "^0.19.2", "babel-core": "^6.26.3", diff --git a/storybook/addons.js b/storybook/addons.js deleted file mode 100644 index 967b2053..00000000 --- a/storybook/addons.js +++ /dev/null @@ -1,4 +0,0 @@ -/* eslint-disable import/no-extraneous-dependencies, import/no-unresolved, import/extensions */ - -import '@storybook/addon-actions/register'; -import '@storybook/addon-links/register'; diff --git a/storybook/index.js b/storybook/index.js index 993860a8..8e12a5a9 100644 --- a/storybook/index.js +++ b/storybook/index.js @@ -5,7 +5,7 @@ import RNBootSplash from 'react-native-bootsplash'; import 'react-native-gesture-handler'; // eslint-disable-next-line no-undef -// jest.mock('react-native/Libraries/Components/Touchable/TouchableOpacity', () => jest.fn(() => null)); +jest.mock('../app/lib/database', () => jest.fn(() => null)); // comment this line to make storybook work RNBootSplash.hide(); diff --git a/storybook/stories/HeaderButtons.js b/storybook/stories/HeaderButtons.js index 0d2243c7..a0d8cd97 100644 --- a/storybook/stories/HeaderButtons.js +++ b/storybook/stories/HeaderButtons.js @@ -106,7 +106,7 @@ const ThemeStory = ({ theme }) => ( right={() => ( - } /> + } /> )} /> diff --git a/storybook/stories/RoomItem.js b/storybook/stories/RoomItem.js index a4cf156e..293ec8a6 100644 --- a/storybook/stories/RoomItem.js +++ b/storybook/stories/RoomItem.js @@ -75,7 +75,11 @@ export default ({ theme }) => { - + + + + + { diff --git a/storybook/stories/index.js b/storybook/stories/index.js index d9de6880..4be88875 100644 --- a/storybook/stories/index.js +++ b/storybook/stories/index.js @@ -12,10 +12,12 @@ import UiKitModal from './UiKitModal'; import Markdown from './Markdown'; import './HeaderButtons'; import './UnreadBadge'; +import '../../app/views/ThreadMessagesView/Item.stories.js'; import Avatar from './Avatar'; // import RoomViewHeader from './RoomViewHeader'; import MessageContext from '../../app/containers/message/Context'; +import { themes } from '../../app/constants/colors'; // MessageProvider const baseUrl = 'https://open.rocket.chat'; @@ -53,7 +55,8 @@ const messageDecorator = story => ( replyBroadcast: () => {}, onReactionPress: () => {}, onDiscussionPress: () => {}, - onReactionLongPress: () => {} + onReactionLongPress: () => {}, + getBadgeColor: () => themes.light.tunreadBackground }} > {story()} diff --git a/yarn.lock b/yarn.lock index e2b1a488..b23bde04 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2248,42 +2248,6 @@ dependencies: type-detect "4.0.8" -"@storybook/addon-actions@5.3.19": - version "5.3.19" - resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.3.19.tgz#50548fa6e84bc79ad95233ce23ade4878fc7cfac" - integrity sha512-gXF29FFUgYlUoFf1DcVCmH1chg2ElaHWMmCi5h7aZe+g6fXBQw0UtEdJnYLMOqZCIiWoZyuf1ETD0RbNHPhRIw== - dependencies: - "@storybook/addons" "5.3.19" - "@storybook/api" "5.3.19" - "@storybook/client-api" "5.3.19" - "@storybook/components" "5.3.19" - "@storybook/core-events" "5.3.19" - "@storybook/theming" "5.3.19" - core-js "^3.0.1" - fast-deep-equal "^2.0.1" - global "^4.3.2" - polished "^3.3.1" - prop-types "^15.7.2" - react "^16.8.3" - react-inspector "^4.0.0" - uuid "^3.3.2" - -"@storybook/addon-links@5.3.19": - version "5.3.19" - resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-5.3.19.tgz#3c23e886d44b56978ae254fed3bf8be54c877178" - integrity sha512-gn9u8lebREfRsyzxoDPG0O+kOf5aJ0BhzcCJGZZdqha0F6OWHhh8vJYZZvjJ/Qwze+Qt2zjrgWm+Q6+JLD8ugQ== - dependencies: - "@storybook/addons" "5.3.19" - "@storybook/client-logger" "5.3.19" - "@storybook/core-events" "5.3.19" - "@storybook/csf" "0.0.1" - "@storybook/router" "5.3.19" - core-js "^3.0.1" - global "^4.3.2" - prop-types "^15.7.2" - qs "^6.6.0" - ts-dedent "^1.1.0" - "@storybook/addon-storyshots@5.3.19": version "5.3.19" resolved "https://registry.yarnpkg.com/@storybook/addon-storyshots/-/addon-storyshots-5.3.19.tgz#cb07ac3cc20d3a399ed4b6758008e10f910691d0" @@ -8464,14 +8428,6 @@ is-docker@^2.0.0: resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== -is-dom@^1.0.9: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a" - integrity sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ== - dependencies: - is-object "^1.0.1" - is-window "^1.0.2" - is-dotfile@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" @@ -8608,11 +8564,6 @@ is-obj@^1.0.0: resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= -is-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470" - integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA= - is-plain-obj@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" @@ -8711,11 +8662,6 @@ is-weakset@^2.0.1: resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.1.tgz#e9a0af88dbd751589f5e50d80f4c98b780884f83" integrity sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw== -is-window@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d" - integrity sha1-LIlspT25feRdPDMTOmXYyfVjSA0= - is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -12701,15 +12647,6 @@ react-hotkeys@2.0.0: dependencies: prop-types "^15.6.1" -react-inspector@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-4.0.1.tgz#0f888f78ff7daccbc7be5d452b20c96dc6d5fbb8" - integrity sha512-xSiM6CE79JBqSj8Fzd9dWBHv57tLTH7OM57GP3VrE5crzVF3D5Khce9w1Xcw75OAbvrA0Mi2vBneR1OajKmXFg== - dependencies: - "@babel/runtime" "^7.6.3" - is-dom "^1.0.9" - prop-types "^15.6.1" - react-is@^16.12.0, react-is@^16.13.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"