diff --git a/application/src/main/java/org/thingsboard/server/config/ThingsboardSecurityConfiguration.java b/application/src/main/java/org/thingsboard/server/config/ThingsboardSecurityConfiguration.java index 793670f0ab..0cf820c6f3 100644 --- a/application/src/main/java/org/thingsboard/server/config/ThingsboardSecurityConfiguration.java +++ b/application/src/main/java/org/thingsboard/server/config/ThingsboardSecurityConfiguration.java @@ -19,9 +19,11 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.boot.autoconfigure.security.SecurityProperties; +import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.annotation.Order; +import org.springframework.http.HttpHeaders; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.authentication.DefaultAuthenticationEventPublisher; import org.springframework.security.config.annotation.ObjectPostProcessor; @@ -29,7 +31,6 @@ import org.springframework.security.config.annotation.authentication.builders.Au import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; -import org.springframework.security.config.annotation.web.configuration.WebSecurityCustomizer; import org.springframework.security.config.http.SessionCreationPolicy; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestResolver; @@ -37,9 +38,11 @@ import org.springframework.security.web.SecurityFilterChain; import org.springframework.security.web.authentication.AuthenticationFailureHandler; import org.springframework.security.web.authentication.AuthenticationSuccessHandler; import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter; +import org.springframework.security.web.header.writers.StaticHeadersWriter; import org.springframework.security.web.util.matcher.AntPathRequestMatcher; import org.springframework.web.cors.UrlBasedCorsConfigurationSource; import org.springframework.web.filter.CorsFilter; +import org.springframework.web.filter.ShallowEtagHeaderFilter; import org.thingsboard.server.dao.oauth2.OAuth2Configuration; import org.thingsboard.server.exception.ThingsboardErrorResponseHandler; import org.thingsboard.server.queue.util.TbCoreComponent; @@ -119,6 +122,17 @@ public class ThingsboardSecurityConfiguration { @Autowired private RateLimitProcessingFilter rateLimitProcessingFilter; + @Bean + protected FilterRegistrationBean buildEtagFilter() throws Exception { + ShallowEtagHeaderFilter etagFilter = new ShallowEtagHeaderFilter(); + etagFilter.setWriteWeakETag(true); + FilterRegistrationBean filterRegistrationBean + = new FilterRegistrationBean<>( etagFilter); + filterRegistrationBean.addUrlPatterns("*.js","*.css","*.ico","/assets/*","/static/*"); + filterRegistrationBean.setName("etagFilter"); + return filterRegistrationBean; + } + @Bean protected RestLoginProcessingFilter buildRestLoginProcessingFilter() throws Exception { RestLoginProcessingFilter filter = new RestLoginProcessingFilter(FORM_BASED_LOGIN_ENTRY_POINT, successHandler, failureHandler); @@ -181,8 +195,18 @@ public class ThingsboardSecurityConfiguration { private OAuth2AuthorizationRequestResolver oAuth2AuthorizationRequestResolver; @Bean - public WebSecurityCustomizer webSecurityCustomizer() { - return (web) -> web.ignoring().antMatchers("/*.js","/*.css","/*.ico","/assets/**","/static/**"); + @Order(0) + SecurityFilterChain resources(HttpSecurity http) throws Exception { + http + .requestMatchers((matchers) -> matchers.antMatchers("/*.js","/*.css","/*.ico","/assets/**","/static/**")) + .headers().defaultsDisabled() + .addHeaderWriter(new StaticHeadersWriter(HttpHeaders.CACHE_CONTROL, "max-age=0, public")) + .and() + .authorizeHttpRequests((authorize) -> authorize.anyRequest().permitAll()) + .requestCache().disable() + .securityContext().disable() + .sessionManagement().disable(); + return http.build(); } @Bean diff --git a/ui-ngx/src/app/core/services/resources.service.ts b/ui-ngx/src/app/core/services/resources.service.ts index 70084153e8..f407e8f354 100644 --- a/ui-ngx/src/app/core/services/resources.service.ts +++ b/ui-ngx/src/app/core/services/resources.service.ts @@ -47,6 +47,7 @@ export interface ModulesWithFactories { }) export class ResourcesService { + private loadedJsonResources: { [url: string]: ReplaySubject } = {}; private loadedResources: { [url: string]: ReplaySubject } = {}; private loadedModules: { [url: string]: ReplaySubject[]> } = {}; private loadedModulesAndFactories: { [url: string]: ReplaySubject } = {}; @@ -61,6 +62,27 @@ export class ResourcesService { this.store.pipe(select(selectIsAuthenticated)).subscribe(() => this.clearModulesCache()); } + public loadJsonResource(url: string): Observable { + if (this.loadedJsonResources[url]) { + return this.loadedJsonResources[url].asObservable(); + } + const subject = new ReplaySubject(); + this.loadedJsonResources[url] = subject; + this.http.get(url).subscribe( + { + next: (o) => { + this.loadedJsonResources[url].next(o); + this.loadedJsonResources[url].complete(); + }, + error: () => { + this.loadedJsonResources[url].error(new Error(`Unable to load ${url}`)); + delete this.loadedJsonResources[url]; + } + } + ); + return subject.asObservable(); + } + public loadResource(url: string): Observable { if (this.loadedResources[url]) { return this.loadedResources[url].asObservable(); diff --git a/ui-ngx/src/app/shared/components/dialog/material-icons-dialog.component.ts b/ui-ngx/src/app/shared/components/dialog/material-icons-dialog.component.ts index cfa4c3d44f..e63b6a0c9c 100644 --- a/ui-ngx/src/app/shared/components/dialog/material-icons-dialog.component.ts +++ b/ui-ngx/src/app/shared/components/dialog/material-icons-dialog.component.ts @@ -22,8 +22,10 @@ import { Router } from '@angular/router'; import { DialogComponent } from '@shared/components/dialog.component'; import { UtilsService } from '@core/services/utils.service'; import { UntypedFormControl } from '@angular/forms'; -import { merge, Observable, of } from 'rxjs'; +import { merge, Observable } from 'rxjs'; import { delay, map, mapTo, mergeMap, share, startWith, tap } from 'rxjs/operators'; +import { ResourcesService } from '@core/services/resources.service'; +import { getMaterialIcons } from '@shared/models/icon.models'; export interface MaterialIconsDialogData { icon: string; @@ -50,6 +52,7 @@ export class MaterialIconsDialogComponent extends DialogComponent) { super(store, router, dialogRef); this.selectedIcon = data.icon; @@ -58,15 +61,13 @@ export class MaterialIconsDialogComponent extends DialogComponent { - return {firstTime: false, showAll}; - }), - startWith<{firstTime: boolean, showAll: boolean}>({firstTime: true, showAll: false}), + map((showAll) => ({firstTime: false, showAll})), + startWith<{firstTime: boolean; showAll: boolean}>({firstTime: true, showAll: false}), mergeMap((data) => { + const res = getMaterialIcons(this.resourcesService, data.showAll, ''); if (data.showAll) { - return this.utils.getMaterialIcons().pipe(delay(100)); + return res.pipe(delay(100)); } else { - const res = of(this.utils.getCommonMaterialIcons()); return data.firstTime ? res : res.pipe(delay(50)); } }), diff --git a/ui-ngx/src/app/shared/components/material-icons.component.ts b/ui-ngx/src/app/shared/components/material-icons.component.ts new file mode 100644 index 0000000000..5588540018 --- /dev/null +++ b/ui-ngx/src/app/shared/components/material-icons.component.ts @@ -0,0 +1,24 @@ +import { PageComponent } from '@shared/components/page.component'; +import { OnInit } from '@angular/core'; +import { Store } from '@ngrx/store'; +import { AppState } from '@core/core.state'; +import { UntypedFormControl } from '@angular/forms'; +import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs'; + +export class MaterialIconsComponent extends PageComponent implements OnInit { + + searchIconsControl: UntypedFormControl; + showAllSubject = new BehaviorSubject(false); + + icons$: Observable>; + + constructor(protected store: Store) { + super(store); + this.searchIconsControl = new UntypedFormControl(''); + } + + ngOnInit(): void { + + } + +} diff --git a/ui-ngx/src/app/shared/models/icon.models.ts b/ui-ngx/src/app/shared/models/icon.models.ts new file mode 100644 index 0000000000..c774b65ae5 --- /dev/null +++ b/ui-ngx/src/app/shared/models/icon.models.ts @@ -0,0 +1,36 @@ +import { Unit, units } from '@shared/models/unit.models'; +import { ResourcesService } from '@core/services/resources.service'; +import { Observable } from 'rxjs'; +import { map } from 'rxjs/operators'; +import { isEmptyStr, isNotEmptyStr } from '@core/utils'; + +export interface MaterialIcon { + name: string; + tags: string[]; +} + +export const iconByName = (icons: Array, name: string): MaterialIcon => icons.find(i => i.name === name); + +const searchIconTags = (icon: MaterialIcon, searchText: string): boolean => + !!icon.tags.find(t => t.toUpperCase().includes(searchText.toUpperCase())); + +const searchIcons = (_icons: Array, searchText: string): Array => _icons.filter( + i => i.name.toUpperCase().includes(searchText.toUpperCase()) || + searchIconTags(i, searchText) +); + +const getCommonMaterialIcons = (icons: Array): Array => icons.slice(0, 44); + +export const getMaterialIcons = (resourcesService: ResourcesService, all = false, searchText: string): Observable => + resourcesService.loadJsonResource>('/assets/metadata/material-icons.json').pipe( + map((icons) => { + if (isNotEmptyStr(searchText)) { + return searchIcons(icons, searchText); + } else if (!all) { + return getCommonMaterialIcons(icons); + } else { + return icons; + } + }), + map((icons) => icons.map(icon => icon.name)) + ); diff --git a/ui-ngx/src/assets/fonts/MaterialIcons-Regular.ttf b/ui-ngx/src/assets/fonts/MaterialIcons-Regular.ttf index be4be29c86..9d09b0feb8 100644 Binary files a/ui-ngx/src/assets/fonts/MaterialIcons-Regular.ttf and b/ui-ngx/src/assets/fonts/MaterialIcons-Regular.ttf differ diff --git a/ui-ngx/src/assets/metadata/material-icons.json b/ui-ngx/src/assets/metadata/material-icons.json new file mode 100644 index 0000000000..7f12a1e605 --- /dev/null +++ b/ui-ngx/src/assets/metadata/material-icons.json @@ -0,0 +1,6367 @@ +[ { + "name" : "more_horiz", + "tags" : [ "3", "DISABLE_IOS", "app", "application", "components", "disable_ios", "dots", "etc", "horiz", "horizontal", "interface", "ios", "more", "screen", "site", "three", "ui", "ux", "web", "website" ] +}, { + "name" : "more_vert", + "tags" : [ "3", "DISABLE_IOS", "android", "app", "application", "components", "disable_ios", "dots", "etc", "interface", "more", "screen", "site", "three", "ui", "ux", "vert", "vertical", "web", "website" ] +}, { + "name" : "open_in_new", + "tags" : [ "app", "application", "arrow", "box", "components", "in", "interface", "new", "open", "right", "screen", "site", "ui", "up", "ux", "web", "website", "window" ] +}, { + "name" : "visibility", + "tags" : [ "eye", "on", "reveal", "see", "show", "view", "visibility" ] +}, { + "name" : "play_arrow", + "tags" : [ "arrow", "control", "controls", "media", "music", "play", "video" ] +}, { + "name" : "arrow_back", + "tags" : [ "DISABLE_IOS", "app", "application", "arrow", "back", "components", "direction", "disable_ios", "interface", "left", "navigation", "previous", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "arrow_downward", + "tags" : [ "app", "application", "arrow", "components", "direction", "down", "downward", "interface", "navigation", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "arrow_forward", + "tags" : [ "app", "application", "arrow", "arrows", "components", "direction", "forward", "interface", "navigation", "right", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "arrow_upward", + "tags" : [ "app", "application", "arrow", "components", "direction", "interface", "navigation", "screen", "site", "ui", "up", "upward", "ux", "web", "website" ] +}, { + "name" : "close", + "tags" : [ "cancel", "close", "exit", "stop", "x" ] +}, { + "name" : "refresh", + "tags" : [ "around", "arrow", "arrows", "direction", "inprogress", "load", "loading refresh", "navigation", "refresh", "renew", "right", "rotate", "turn" ] +}, { + "name" : "menu", + "tags" : [ "app", "application", "components", "hamburger", "interface", "line", "lines", "menu", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "show_chart", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "line", "measure", "metrics", "presentation", "show chart", "statistics", "tracking" ] +}, { + "name" : "multiline_chart", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "line", "measure", "metrics", "multiple", "statistics", "tracking" ] +}, { + "name" : "pie_chart", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "pie", "statistics", "tracking" ] +}, { + "name" : "insert_chart", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "insert", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "people", + "tags" : [ "accounts", "committee", "face", "family", "friends", "humans", "network", "people", "persons", "profiles", "social", "team", "users" ] +}, { + "name" : "person", + "tags" : [ "account", "face", "human", "people", "person", "profile", "user" ] +}, { + "name" : "domain", + "tags" : [ "apartment", "architecture", "building", "business", "domain", "estate", "home", "place", "real", "residence", "residential", "shelter", "web", "www" ] +}, { + "name" : "devices_other", + "tags" : [ "Android", "OS", "ar", "cell", "chrome", "desktop", "device", "gadget", "hardware", "iOS", "ipad", "mac", "mobile", "monitor", "other", "phone", "tablet", "vr", "watch", "wearables", "window" ] +}, { + "name" : "widgets", + "tags" : [ "app", "box", "menu", "setting", "squares", "ui", "widgets" ] +}, { + "name" : "dashboard", + "tags" : [ "cards", "dashboard", "format", "layout", "rectangle", "shapes", "square", "web", "website" ] +}, { + "name" : "map", + "tags" : [ "destination", "direction", "location", "map", "maps", "pin", "place", "route", "stop", "travel" ] +}, { + "name" : "pin_drop", + "tags" : [ "destination", "direction", "drop", "location", "maps", "navigation", "pin", "place", "stop" ] +}, { + "name" : "gps_fixed", + "tags" : [ "destination", "direction", "fixed", "gps", "location", "maps", "pin", "place", "pointer", "stop", "tracking" ] +}, { + "name" : "extension", + "tags" : [ "app", "extended", "extension", "game", "jigsaw", "plugin add", "puzzle", "shape" ] +}, { + "name" : "search", + "tags" : [ "filter", "find", "glass", "look", "magnify", "magnifying", "search", "see" ] +}, { + "name" : "settings", + "tags" : [ "application", "change", "details", "gear", "info", "information", "options", "personal", "service", "settings" ] +}, { + "name" : "notifications", + "tags" : [ "active", "alarm", "alert", "bell", "chime", "notifications", "notify", "reminder", "ring", "sound" ] +}, { + "name" : "notifications_active", + "tags" : [ "active", "alarm", "alert", "bell", "chime", "notifications", "notify", "reminder", "ring", "ringing", "sound" ] +}, { + "name" : "info", + "tags" : [ "alert", "announcement", "assistance", "details", "help", "i", "info", "information", "service", "support" ] +}, { + "name" : "error_outline", + "tags" : [ "!", "alert", "attention", "caution", "circle", "danger", "error", "exclamation", "important", "mark", "notification", "outline", "symbol", "warning" ] +}, { + "name" : "warning", + "tags" : [ "!", "alert", "attention", "caution", "danger", "error", "exclamation", "important", "mark", "notification", "symbol", "triangle", "warning" ] +}, { + "name" : "list", + "tags" : [ "file", "format", "index", "list", "menu", "options" ] +}, { + "name" : "download", + "tags" : [ "arrow", "down", "download", "downloads", "drive", "install", "upload" ] +}, { + "name" : "import_export", + "tags" : [ "arrow", "arrows", "direction", "down", "explort", "import", "up" ] +}, { + "name" : "share", + "tags" : [ "DISABLE_IOS", "android", "connect", "contect", "disable_ios", "link", "media", "multimedia", "multiple", "network", "options", "share", "shared", "sharing", "social" ] +}, { + "name" : "add", + "tags" : [ "+", "add", "new symbol", "plus", "symbol" ] +}, { + "name" : "edit", + "tags" : [ "compose", "create", "edit", "editing", "input", "new", "pen", "pencil", "write", "writing" ] +}, { + "name" : "check", + "tags" : [ "DISABLE_IOS", "check", "confirm", "correct", "disable_ios", "done", "enter", "mark", "ok", "okay", "select", "tick", "yes" ] +}, { + "name" : "delete", + "tags" : [ "bin", "can", "delete", "garbage", "remove", "trash" ] +}, { + "name" : "thermostat", + "tags" : [ "climate", "forecast", "temperature", "thermostat", "weather" ] +}, { + "name" : "air", + "tags" : [ "air", "blowing", "breeze", "flow", "wave", "weather", "wind" ] +}, { + "name" : "lightbulb", + "tags" : [ "alert", "announcement", "idea", "info", "information", "light", "lightbulb" ] +}, { + "name" : "home", + "tags" : [ "address", "app", "application--house", "architecture", "building", "components", "design", "estate", "home", "interface", "layout", "place", "real", "residence", "residential", "screen", "shelter", "site", "structure", "ui", "unit", "ux", "web", "website", "window" ] +}, { + "name" : "account_circle", + "tags" : [ "account", "avatar", "circle", "face", "human", "people", "person", "profile", "thumbnail", "user" ] +}, { + "name" : "done", + "tags" : [ "DISABLE_IOS", "approve", "check", "complete", "disable_ios", "done", "mark", "ok", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "check_circle", + "tags" : [ "approve", "check", "circle", "complete", "done", "mark", "ok", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "expand_more", + "tags" : [ "arrow", "arrows", "chevron", "collapse", "direction", "down", "expand", "expandable", "list", "more" ] +}, { + "name" : "shopping_cart", + "tags" : [ "add", "bill", "buy", "card", "cart", "cash", "checkout", "coin", "commerce", "credit", "currency", "dollars", "money", "online", "pay", "payment", "shopping" ] +}, { + "name" : "email", + "tags" : [ "email", "envelop", "letter", "mail", "message", "send" ] +}, { + "name" : "favorite", + "tags" : [ "appreciate", "favorite", "heart", "like", "love", "remember", "save", "shape" ] +}, { + "name" : "description", + "tags" : [ "article", "data", "description", "doc", "document", "drive", "file", "folder", "folders", "notes", "page", "paper", "sheet", "slide", "text", "writing" ] +}, { + "name" : "logout", + "tags" : [ "app", "application", "arrow", "components", "design", "exit", "interface", "leave", "log", "login", "logout", "right", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "favorite_border", + "tags" : [ "border", "favorite", "heart", "like", "love", "outline", "remember", "save", "shape" ] +}, { + "name" : "chevron_right", + "tags" : [ "arrow", "arrows", "chevron", "direction", "right" ] +}, { + "name" : "lock", + "tags" : [ "lock", "locked", "password", "privacy", "private", "protection", "safety", "secure", "security" ] +}, { + "name" : "location_on", + "tags" : [ "destination", "direction", "location", "maps", "on", "pin", "place", "room", "stop" ] +}, { + "name" : "schedule", + "tags" : [ "clock", "date", "schedule", "time" ] +}, { + "name" : "local_shipping", + "tags" : [ "automobile", "car", "cars", "delivery", "letter", "local", "mail", "maps", "office", "package", "parcel", "post", "postal", "send", "shipping", "shopping", "stamp", "transportation", "truck", "vehicle" ] +}, { + "name" : "language", + "tags" : [ "globe", "internet", "language", "planet", "website", "world", "www" ] +}, { + "name" : "call", + "tags" : [ "call", "cell", "contact", "device", "hardware", "mobile", "phone", "telephone" ] +}, { + "name" : "file_download", + "tags" : [ "arrow", "arrows", "down", "download", "downloads", "drive", "export", "file", "install", "upload" ] +}, { + "name" : "arrow_forward_ios", + "tags" : [ "app", "application", "arrow", "chevron", "components", "direction", "forward", "interface", "ios", "navigation", "next", "right", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "arrow_back_ios", + "tags" : [ "DISABLE_IOS", "app", "application", "arrow", "back", "chevron", "components", "direction", "disable_ios", "interface", "ios", "left", "navigation", "previous", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "groups", + "tags" : [ "body", "club", "collaboration", "crowd", "gathering", "groups", "human", "meeting", "people", "person", "social", "teams" ] +}, { + "name" : "cancel", + "tags" : [ "cancel", "circle", "close", "exit", "stop", "x" ] +}, { + "name" : "help_outline", + "tags" : [ "?", "assistance", "circle", "help", "info", "information", "outline", "punctuation", "question mark", "recent", "restore", "shape", "support", "symbol" ] +}, { + "name" : "arrow_drop_down", + "tags" : [ "app", "application", "arrow", "components", "direction", "down", "drop", "interface", "navigation", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "face", + "tags" : [ "account", "emoji", "eyes", "face", "human", "lock", "log", "login", "logout", "people", "person", "profile", "recognition", "security", "social", "thumbnail", "unlock", "user" ] +}, { + "name" : "manage_accounts", + "tags" : [ "accounts", "change", "details service-human", "face", "gear", "manage", "options", "people", "person", "profile", "settings", "user" ] +}, { + "name" : "place", + "tags" : [ "destination", "direction", "location", "maps", "navigation", "pin", "place", "point", "stop" ] +}, { + "name" : "verified", + "tags" : [ "approve", "badge", "burst", "check", "complete", "done", "mark", "ok", "select", "star", "tick", "validate", "verified", "yes" ] +}, { + "name" : "add_circle_outline", + "tags" : [ "+", "add", "circle", "create", "new", "outline", "plus" ] +}, { + "name" : "filter_alt", + "tags" : [ "alt", "edit", "filter", "funnel", "options", "refine", "sift" ] +}, { + "name" : "thumb_up", + "tags" : [ "favorite", "fingers", "gesture", "hand", "hands", "like", "rank", "ranking", "rate", "rating", "thumb", "up" ] +}, { + "name" : "event", + "tags" : [ "calendar", "date", "day", "event", "mark", "month", "range", "remember", "reminder", "today", "week" ] +}, { + "name" : "star", + "tags" : [ "best", "bookmark", "favorite", "highlight", "ranking", "rate", "rating", "save", "star", "toggle" ] +}, { + "name" : "fingerprint", + "tags" : [ "finger", "fingerprint", "id", "identification", "identity", "print", "reader", "thumbprint", "verification" ] +}, { + "name" : "content_copy", + "tags" : [ "content", "copy", "cut", "doc", "document", "duplicate", "file", "multiple", "past" ] +}, { + "name" : "login", + "tags" : [ "access", "app", "application", "arrow", "components", "design", "enter", "in", "interface", "left", "log", "login", "screen", "sign", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "add_circle", + "tags" : [ "+", "add", "circle", "create", "new", "plus" ] +}, { + "name" : "visibility_off", + "tags" : [ "disabled", "enabled", "eye", "off", "on", "reveal", "see", "show", "slash", "view", "visibility" ] +}, { + "name" : "check_circle_outline", + "tags" : [ "approve", "check", "circle", "complete", "done", "finished", "mark", "ok", "outline", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "chevron_left", + "tags" : [ "DISABLE_IOS", "arrow", "arrows", "chevron", "direction", "disable_ios", "left" ] +}, { + "name" : "calendar_today", + "tags" : [ "calendar", "date", "day", "event", "month", "schedule", "today" ] +}, { + "name" : "send", + "tags" : [ "email", "mail", "message", "paper", "plane", "reply", "right", "send", "share" ] +}, { + "name" : "check_box", + "tags" : [ "approved", "box", "button", "check", "component", "control", "form", "mark", "ok", "select", "selected", "selection", "tick", "toggle", "ui", "yes" ] +}, { + "name" : "highlight_off", + "tags" : [ "cancel", "close", "exit", "highlight", "no", "off", "quit", "remove", "stop", "x" ] +}, { + "name" : "navigate_next", + "tags" : [ "arrow", "arrows", "direction", "navigate", "next", "right" ] +}, { + "name" : "help", + "tags" : [ "?", "assistance", "circle", "help", "info", "information", "punctuation", "question mark", "recent", "restore", "shape", "support", "symbol" ] +}, { + "name" : "phone", + "tags" : [ "call", "cell", "contact", "device", "hardware", "mobile", "phone", "telephone" ] +}, { + "name" : "paid", + "tags" : [ "circle", "currency", "money", "paid", "payment", "transaction" ] +}, { + "name" : "task_alt", + "tags" : [ "approve", "check", "circle", "complete", "done", "mark", "ok", "select", "task", "tick", "validate", "verified", "yes" ] +}, { + "name" : "question_answer", + "tags" : [ "answer", "bubble", "chat", "comment", "communicate", "conversation", "feedback", "message", "question", "speech", "talk" ] +}, { + "name" : "expand_less", + "tags" : [ "arrow", "arrows", "chevron", "collapse", "direction", "expand", "expandable", "less", "list", "up" ] +}, { + "name" : "clear", + "tags" : [ "back", "cancel", "clear", "correct", "delete", "erase", "exit", "x" ] +}, { + "name" : "date_range", + "tags" : [ "calendar", "date", "day", "event", "month", "range", "remember", "reminder", "schedule", "time", "today", "week" ] +}, { + "name" : "article", + "tags" : [ "article", "doc", "document", "file", "page", "paper", "text", "writing" ] +}, { + "name" : "error", + "tags" : [ "!", "alert", "attention", "caution", "circle", "danger", "error", "exclamation", "important", "mark", "notification", "symbol", "warning" ] +}, { + "name" : "photo_camera", + "tags" : [ "camera", "image", "photo", "photography", "picture" ] +}, { + "name" : "check_box_outline_blank", + "tags" : [ "blank", "box", "button", "check", "component", "control", "deselected", "empty", "form", "outline", "select", "selection", "square", "tick", "toggle", "ui" ] +}, { + "name" : "image", + "tags" : [ "disabled", "enabled", "hide", "image", "landscape", "mountain", "mountains", "off", "on", "photo", "photography", "picture", "slash" ] +}, { + "name" : "shopping_bag", + "tags" : [ "bag", "bill", "business", "buy", "card", "cart", "cash", "coin", "commerce", "credit", "currency", "dollars", "money", "online", "pay", "payment", "shop", "shopping", "store", "storefront" ] +}, { + "name" : "person_outline", + "tags" : [ "account", "face", "human", "outline", "people", "person", "profile", "user" ] +}, { + "name" : "school", + "tags" : [ "academy", "achievement", "cap", "class", "college", "education", "graduation", "hat", "knowledge", "learning", "school", "university" ] +}, { + "name" : "file_upload", + "tags" : [ "arrow", "arrows", "download", "drive", "export", "file", "up", "upload" ] +}, { + "name" : "perm_identity", + "tags" : [ "account", "avatar", "face", "human", "identity", "people", "perm", "person", "profile", "thumbnail", "user" ] +}, { + "name" : "credit_card", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "price", "shopping", "symbol" ] +}, { + "name" : "history", + "tags" : [ "arrow", "back", "backwards", "clock", "date", "history", "refresh", "renew", "reverse", "rotate", "schedule", "time", "turn" ] +}, { + "name" : "trending_up", + "tags" : [ "analytics", "arrow", "data", "diagram", "graph", "infographic", "measure", "metrics", "movement", "rate", "rating", "statistics", "tracking", "trending", "up" ] +}, { + "name" : "support_agent", + "tags" : [ "agent", "care", "customer", "face", "headphone", "person", "representative", "service", "support" ] +}, { + "name" : "account_balance", + "tags" : [ "account", "balance", "bank", "bill", "card", "cash", "coin", "commerce", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment" ] +}, { + "name" : "delete_outline", + "tags" : [ "bin", "can", "delete", "garbage", "outline", "remove", "trash" ] +}, { + "name" : "attach_money", + "tags" : [ "attach", "attachment", "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "symbol" ] +}, { + "name" : "person_add", + "tags" : [ "+", "account", "add", "avatar", "face", "human", "new", "people", "person", "plus", "profile", "symbol", "user" ] +}, { + "name" : "public", + "tags" : [ "earth", "global", "globe", "map", "network", "planet", "public", "social", "space", "web", "world" ] +}, { + "name" : "save", + "tags" : [ "data", "disk", "document", "drive", "file", "floppy", "multimedia", "save", "storage" ] +}, { + "name" : "mail", + "tags" : [ "email", "envelop", "letter", "mail", "message", "send" ] +}, { + "name" : "report_problem", + "tags" : [ "!", "alert", "attention", "caution", "danger", "error", "exclamation", "feedback", "important", "mark", "notification", "problem", "report", "symbol", "triangle", "warning" ] +}, { + "name" : "fact_check", + "tags" : [ "approve", "check", "complete", "done", "fact", "list", "mark", "ok", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "radio_button_unchecked", + "tags" : [ "bullet", "button", "circle", "deselected", "form", "off", "on", "point", "radio", "record", "select", "toggle", "unchecked" ] +}, { + "name" : "verified_user", + "tags" : [ "approve", "certified", "check", "complete", "done", "mark", "ok", "privacy", "private", "protect", "protection", "security", "select", "shield", "tick", "user", "validate", "verified", "yes" ] +}, { + "name" : "assignment", + "tags" : [ "assignment", "clipboard", "doc", "document", "text", "writing" ] +}, { + "name" : "link", + "tags" : [ "chain", "clip", "connection", "link", "linked", "links", "multimedia", "url" ] +}, { + "name" : "play_circle_filled", + "tags" : [ "arrow", "circle", "control", "controls", "media", "music", "play", "video" ] +}, { + "name" : "emoji_events", + "tags" : [ "achievement", "award", "chalice", "champion", "cup", "emoji", "events", "first", "prize", "reward", "sport", "trophy", "winner" ] +}, { + "name" : "remove", + "tags" : [ "can", "delete", "minus", "negative", "remove", "substract", "trash" ] +}, { + "name" : "star_rate", + "tags" : [ "achievement", "bookmark", "favorite", "highlight", "important", "marked", "ranking", "rate", "rating rank", "reward", "save", "saved", "shape", "special", "star" ] +}, { + "name" : "apps", + "tags" : [ "all", "applications", "apps", "circles", "collection", "components", "dots", "grid", "interface", "squares", "ui", "ux" ] +}, { + "name" : "business", + "tags" : [ "apartment", "architecture", "building", "business", "company", "estate", "home", "place", "real", "residence", "residential", "shelter" ] +}, { + "name" : "filter_list", + "tags" : [ "filter", "lines", "list", "organize", "sort" ] +}, { + "name" : "arrow_right_alt", + "tags" : [ "alt", "arrow", "arrows", "direction", "east", "navigation", "pointing", "right" ] +}, { + "name" : "chat", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "message", "speech" ] +}, { + "name" : "account_balance_wallet", + "tags" : [ "account", "balance", "bank", "bill", "card", "cash", "coin", "commerce", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "wallet" ] +}, { + "name" : "payments", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "layer", "money", "multiple", "online", "pay", "payment", "payments", "price", "shopping", "symbol" ] +}, { + "name" : "menu_book", + "tags" : [ "book", "dining", "food", "meal", "menu", "restaurant" ] +}, { + "name" : "folder", + "tags" : [ "data", "doc", "document", "drive", "file", "folder", "folders", "sheet", "slide", "storage" ] +}, { + "name" : "keyboard_arrow_down", + "tags" : [ "arrow", "arrows", "down", "keyboard" ] +}, { + "name" : "autorenew", + "tags" : [ "around", "arrow", "arrows", "autorenew", "cache", "cached", "direction", "inprogress", "load", "loading refresh", "navigation", "renew", "rotate", "turn" ] +}, { + "name" : "build", + "tags" : [ "adjust", "build", "fix", "home", "nest", "repair", "tool", "tools", "wrench" ] +}, { + "name" : "videocam", + "tags" : [ "cam", "camera", "conference", "film", "filming", "hardware", "image", "motion", "picture", "video", "videography" ] +}, { + "name" : "view_list", + "tags" : [ "design", "format", "grid", "layout", "lines", "list", "stacked", "view", "website" ] +}, { + "name" : "print", + "tags" : [ "draft", "fax", "ink", "machine", "office", "paper", "print", "printer", "send" ] +}, { + "name" : "work", + "tags" : [ "bag", "baggage", "briefcase", "business", "case", "job", "suitcase", "work" ] +}, { + "name" : "store", + "tags" : [ "bill", "building", "business", "card", "cash", "coin", "commerce", "company", "credit", "currency", "dollars", "market", "money", "online", "pay", "payment", "shop", "shopping", "store", "storefront" ] +}, { + "name" : "analytics", + "tags" : [ "analytics", "assessment", "bar", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "radio_button_checked", + "tags" : [ "app", "application", "bullet", "button", "checked", "circle", "components", "design", "form", "interface", "off", "on", "point", "radio", "record", "screen", "select", "selected", "site", "toggle", "ui", "ux", "web", "website" ] +}, { + "name" : "phone_iphone", + "tags" : [ "Android", "OS", "cell", "device", "hardware", "iOS", "iphone", "mobile", "phone", "tablet" ] +}, { + "name" : "play_circle", + "tags" : [ "arrow", "circle", "control", "controls", "media", "music", "play", "video" ] +}, { + "name" : "tune", + "tags" : [ "adjust", "audio", "controls", "custom", "customize", "edit", "editing", "filter", "filters", "instant", "mix", "music", "options", "setting", "settings", "slider", "sliders", "switches", "tune" ] +}, { + "name" : "delete_forever", + "tags" : [ "bin", "can", "cancel", "delete", "exit", "forever", "garbage", "remove", "trash", "x" ] +}, { + "name" : "today", + "tags" : [ "calendar", "date", "day", "event", "mark", "month", "remember", "reminder", "schedule", "time", "today" ] +}, { + "name" : "grid_view", + "tags" : [ "app", "application square", "blocks", "components", "dashboard", "design", "grid", "interface", "layout", "screen", "site", "tiles", "ui", "ux", "view", "web", "website", "window" ] +}, { + "name" : "east", + "tags" : [ "arrow", "directional", "east", "maps", "navigation", "right" ] +}, { + "name" : "inventory_2", + "tags" : [ "archive", "box", "file", "inventory", "organize", "packages", "product", "stock", "storage", "supply" ] +}, { + "name" : "mail_outline", + "tags" : [ "email", "envelop", "letter", "mail", "message", "outline", "send" ] +}, { + "name" : "admin_panel_settings", + "tags" : [ "account", "admin", "avatar", "certified", "face", "human", "panel", "people", "person", "privacy", "private", "profile", "protect", "protection", "security", "settings", "shield", "user", "verified" ] +}, { + "name" : "mic", + "tags" : [ "hear", "hearing", "mic", "microphone", "noise", "record", "sound", "voice" ] +}, { + "name" : "calendar_month", + "tags" : [ "calendar", "date", "day", "event", "month", "schedule", "today" ] +}, { + "name" : "group", + "tags" : [ "accounts", "committee", "face", "family", "friends", "group", "humans", "network", "people", "persons", "profiles", "social", "team", "users" ] +}, { + "name" : "picture_as_pdf", + "tags" : [ "alphabet", "as", "character", "document", "file", "font", "image", "letter", "multiple", "pdf", "photo", "photography", "picture", "symbol", "text", "type" ] +}, { + "name" : "lock_open", + "tags" : [ "lock", "open", "password", "privacy", "private", "protection", "safety", "secure", "security", "unlocked" ] +}, { + "name" : "volume_up", + "tags" : [ "audio", "control", "music", "sound", "speaker", "tv", "up", "volume" ] +}, { + "name" : "watch_later", + "tags" : [ "clock", "date", "later", "schedule", "time", "watch" ] +}, { + "name" : "grade", + "tags" : [ "'favorite_news' .", "'star_outline'", "Duplicate of 'star_boarder'", "star_border_purple500'" ] +}, { + "name" : "receipt_long", + "tags" : [ "bill", "check", "document", "list", "long", "paper", "paperwork", "receipt", "record", "store", "transaction" ] +}, { + "name" : "local_offer", + "tags" : [ "deal", "discount", "offer", "price", "shop", "shopping", "store", "tag" ] +}, { + "name" : "room", + "tags" : [ "destination", "direction", "location", "maps", "pin", "place", "room", "stop" ] +}, { + "name" : "update", + "tags" : [ "arrow", "back", "backwards", "clock", "forward", "history", "load", "refresh", "reverse", "schedule", "time", "update" ] +}, { + "name" : "badge", + "tags" : [ "account", "avatar", "badge", "card", "certified", "employee", "face", "human", "identification", "name", "people", "person", "profile", "security", "user", "work" ] +}, { + "name" : "savings", + "tags" : [ "bank", "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "pig", "piggy", "savings", "symbol" ] +}, { + "name" : "code", + "tags" : [ "brackets", "code", "css", "develop", "developer", "engineer", "engineering", "html", "platform" ] +}, { + "name" : "light_mode", + "tags" : [ "bright", "brightness", "day", "device", "light", "lighting", "mode", "morning", "sky", "sun", "sunny" ] +}, { + "name" : "receipt", + "tags" : [ ] +}, { + "name" : "circle", + "tags" : [ "circle", "full", "geometry", "moon" ] +}, { + "name" : "inventory", + "tags" : [ "archive", "box", "clipboard", "doc", "document", "file", "inventory", "organize", "packages", "product", "stock", "supply" ] +}, { + "name" : "add_shopping_cart", + "tags" : [ "add", "card", "cart", "cash", "checkout", "coin", "commerce", "credit", "currency", "dollars", "money", "online", "pay", "payment", "plus", "shopping" ] +}, { + "name" : "contact_support", + "tags" : [ "?", "bubble", "chat", "comment", "communicate", "contact", "help", "info", "information", "mark", "message", "punctuation", "question", "question mark", "speech", "support", "symbol" ] +}, { + "name" : "category", + "tags" : [ "categories", "category", "circle", "collection", "items", "product", "sort", "square", "triangle" ] +}, { + "name" : "edit_note", + "tags" : [ "compose", "create", "draft", "edit", "editing", "input", "lines", "note", "pen", "pencil", "text", "write", "writing" ] +}, { + "name" : "insights", + "tags" : [ "ai", "analytics", "artificial", "automatic", "automation", "bar", "bars", "chart", "custom", "data", "diagram", "genai", "graph", "infographic", "insights", "intelligence", "magic", "measure", "metrics", "smart", "spark", "sparkle", "star", "stars", "statistics", "tracking" ] +}, { + "name" : "power_settings_new", + "tags" : [ "info", "information", "off", "on", "power", "save", "settings", "shutdown" ] +}, { + "name" : "campaign", + "tags" : [ "alert", "announcement", "campaign", "loud", "megaphone", "microphone", "notification", "speaker" ] +}, { + "name" : "format_list_bulleted", + "tags" : [ "align", "alignment", "bulleted", "doc", "edit", "editing", "editor", "format", "list", "notes", "sheet", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "star_border", + "tags" : [ "best", "bookmark", "border", "favorite", "highlight", "outline", "ranking", "rate", "rating", "save", "star", "toggle" ] +}, { + "name" : "pause", + "tags" : [ "control", "controls", "media", "music", "pause", "video" ] +}, { + "name" : "remove_circle_outline", + "tags" : [ "block", "can", "circle", "delete", "minus", "negative", "outline", "remove", "substract", "trash" ] +}, { + "name" : "warning_amber", + "tags" : [ "!", "alert", "amber", "attention", "caution", "danger", "error", "exclamation", "important", "mark", "notification", "symbol", "triangle", "warning" ] +}, { + "name" : "wifi", + "tags" : [ "connection", "data", "internet", "network", "scan", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "arrow_back_ios_new", + "tags" : [ "DISABLE_IOS", "app", "application", "arrow", "back", "chevron", "components", "direction", "disable_ios", "interface", "ios", "left", "navigation", "new", "previous", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "restart_alt", + "tags" : [ "alt", "around", "arrow", "inprogress", "load", "loading refresh", "reboot", "renew", "repeat", "reset", "restart" ] +}, { + "name" : "done_all", + "tags" : [ "all", "approve", "check", "complete", "done", "layers", "mark", "multiple", "ok", "select", "stack", "tick", "validate", "verified", "yes" ] +}, { + "name" : "pets", + "tags" : [ "animal", "cat", "dog", "hand", "paw", "pet" ] +}, { + "name" : "storefront", + "tags" : [ "business", "buy", "cafe", "commerce", "front", "market", "places", "restaurant", "retail", "sell", "shop", "shopping", "store", "storefront" ] +}, { + "name" : "sort", + "tags" : [ "filter", "find", "lines", "list", "organize", "sort" ] +}, { + "name" : "mode_edit", + "tags" : [ "compose", "create", "draft", "draw", "edit", "mode", "pen", "pencil", "write" ] +}, { + "name" : "list_alt", + "tags" : [ "alt", "box", "contained", "format", "lines", "list", "order", "reorder", "stacked", "title" ] +}, { + "name" : "toggle_on", + "tags" : [ "active", "app", "application", "components", "configuration", "control", "design", "disable", "inable", "inactive", "interface", "off", "on", "selection", "settings", "site", "slider", "switch", "toggle", "ui", "ux", "web", "website" ] +}, { + "name" : "dark_mode", + "tags" : [ "app", "application", "dark", "device", "interface", "mode", "moon", "night", "silent", "theme", "ui", "ux", "website" ] +}, { + "name" : "engineering", + "tags" : [ "body", "cogs", "cogwheel", "construction", "engineering", "fixing", "gears", "hat", "helmet", "human", "maintenance", "people", "person", "setting", "worker" ] +}, { + "name" : "explore", + "tags" : [ "compass", "destination", "direction", "east", "explore", "location", "maps", "needle", "north", "south", "travel", "west" ] +}, { + "name" : "bolt", + "tags" : [ "bolt", "electric", "energy", "fast", "flash", "lightning", "power", "thunderbolt" ] +}, { + "name" : "construction", + "tags" : [ "build", "carpenter", "construction", "equipment", "fix", "hammer", "improvement", "industrial", "industry", "repair", "tools", "wrench" ] +}, { + "name" : "qr_code_scanner", + "tags" : [ "barcode", "camera", "code", "media", "product", "qr", "quick", "response", "scanner", "smartphone", "url", "urls" ] +}, { + "name" : "bookmark", + "tags" : [ "archive", "bookmark", "favorite", "label", "library", "read", "reading", "remember", "ribbon", "save", "tag" ] +}, { + "name" : "vpn_key", + "tags" : [ "code", "key", "lock", "network", "passcode", "password", "unlock", "vpn" ] +}, { + "name" : "monetization_on", + "tags" : [ "bill", "card", "cash", "circle", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "monetization", "money", "on", "online", "pay", "payment", "shopping", "symbol" ] +}, { + "name" : "attach_file", + "tags" : [ "add", "attach", "attachment", "clip", "file", "link", "mail", "media" ] +}, { + "name" : "timer", + "tags" : [ "alarm", "alert", "bell", "clock", "disabled", "duration", "enabled", "notification", "off", "on", "slash", "stop", "time", "timer", "watch" ] +}, { + "name" : "account_box", + "tags" : [ "account", "avatar", "box", "face", "human", "people", "person", "profile", "square", "thumbnail", "user" ] +}, { + "name" : "note_add", + "tags" : [ "+", "-doc", "add", "data", "document", "drive", "file", "folder", "folders", "new", "note", "page", "paper", "plus", "sheet", "slide", "symbol", "writing" ] +}, { + "name" : "reorder", + "tags" : [ "format", "lines", "list", "order", "reorder", "stacked" ] +}, { + "name" : "bookmark_border", + "tags" : [ "archive", "bookmark", "border", "favorite", "label", "library", "read", "reading", "remember", "ribbon", "save", "tag" ] +}, { + "name" : "arrow_right", + "tags" : [ "app", "application", "arrow", "components", "direction", "interface", "navigation", "right", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "pending_actions", + "tags" : [ "actions", "clipboard", "clock", "date", "doc", "document", "pending", "remember", "schedule", "time" ] +}, { + "name" : "smartphone", + "tags" : [ "Android", "OS", "call", "cell", "chat", "device", "hardware", "iOS", "mobile", "phone", "smartphone", "tablet", "text" ] +}, { + "name" : "upload_file", + "tags" : [ "arrow", "data", "doc", "document", "download", "drive", "file", "folder", "folders", "page", "paper", "sheet", "slide", "up", "upload", "writing" ] +}, { + "name" : "account_tree", + "tags" : [ "account", "analytics", "chart", "connect", "data", "diagram", "flow", "graph", "infographic", "measure", "metrics", "process", "square", "statistics", "structure", "tracking", "tree" ] +}, { + "name" : "shopping_basket", + "tags" : [ "add", "basket", "bill", "buy", "card", "cart", "cash", "checkout", "coin", "commerce", "credit", "currency", "dollars", "money", "online", "pay", "payment", "shopping" ] +}, { + "name" : "flag", + "tags" : [ "country", "flag", "goal", "mark", "nation", "report", "start" ] +}, { + "name" : "apartment", + "tags" : [ "accommodation", "apartment", "architecture", "building", "city", "company", "estate", "flat", "home", "house", "office", "places", "real", "residence", "residential", "shelter", "units", "workplace" ] +}, { + "name" : "restaurant", + "tags" : [ "breakfast", "dining", "dinner", "eat", "food", "fork", "knife", "local", "lunch", "meal", "places", "restaurant", "spoon", "utensils" ] +}, { + "name" : "people_alt", + "tags" : [ "accounts", "committee", "face", "family", "friends", "humans", "network", "people", "persons", "profiles", "social", "team", "users" ] +}, { + "name" : "reply", + "tags" : [ "arrow", "backward", "left", "mail", "message", "reply", "send", "share" ] +}, { + "name" : "play_circle_outline", + "tags" : [ "arrow", "circle", "control", "controls", "media", "music", "outline", "play", "video" ] +}, { + "name" : "payment", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "price", "shopping", "symbol" ] +}, { + "name" : "sync", + "tags" : [ "360", "around", "arrow", "arrows", "direction", "inprogress", "load", "loading refresh", "renew", "rotate", "sync", "turn" ] +}, { + "name" : "task", + "tags" : [ "approve", "check", "complete", "data", "doc", "document", "done", "drive", "file", "folder", "folders", "mark", "ok", "page", "paper", "select", "sheet", "slide", "task", "tick", "validate", "verified", "writing", "yes" ] +}, { + "name" : "launch", + "tags" : [ "app", "application", "arrow", "box", "components", "interface", "launch", "new", "open", "screen", "site", "ui", "ux", "web", "website", "window" ] +}, { + "name" : "menu_open", + "tags" : [ "app", "application", "arrow", "components", "hamburger", "interface", "left", "line", "lines", "menu", "open", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "add_box", + "tags" : [ "add", "box", "new square", "plus", "symbol" ] +}, { + "name" : "drag_indicator", + "tags" : [ "app", "application", "circles", "components", "design", "dots", "drag", "drop", "indicator", "interface", "layout", "mobile", "monitor", "move", "phone", "screen", "shape", "shift", "site", "tablet", "ui", "ux", "web", "website", "window" ] +}, { + "name" : "supervisor_account", + "tags" : [ "account", "avatar", "control", "face", "human", "parental", "parental control", "parents", "people", "person", "profile", "supervised", "supervisor", "user" ] +}, { + "name" : "touch_app", + "tags" : [ "app", "command", "fingers", "gesture", "hand", "press", "tap", "touch" ] +}, { + "name" : "pending", + "tags" : [ "circle", "dots", "loading", "pending", "progress", "wait", "waiting" ] +}, { + "name" : "zoom_in", + "tags" : [ "big", "bigger", "find", "glass", "grow", "in", "look", "magnify", "magnifying", "plus", "scale", "search", "see", "size", "zoom" ] +}, { + "name" : "manage_search", + "tags" : [ "glass", "history", "magnifying", "manage", "search", "text" ] +}, { + "name" : "remove_circle", + "tags" : [ "block", "can", "circle", "delete", "minus", "negative", "remove", "substract", "trash" ] +}, { + "name" : "group_add", + "tags" : [ "accounts", "add", "committee", "face", "family", "friends", "group", "humans", "increase", "more", "network", "people", "persons", "plus", "profiles", "social", "team", "users" ] +}, { + "name" : "chat_bubble_outline", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "message", "outline", "speech" ] +}, { + "name" : "assessment", + "tags" : [ "analytics", "assessment", "bar", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "priority_high", + "tags" : [ "!", "alert", "attention", "caution", "danger", "error", "exclamation", "high", "important", "mark", "notification", "symbol", "warning" ] +}, { + "name" : "push_pin", + "tags" : [ "location", "marker", "pin", "place", "push", "remember", "save" ] +}, { + "name" : "feed", + "tags" : [ "article", "feed", "headline", "information", "news", "newspaper", "paper", "public", "social", "timeline" ] +}, { + "name" : "leaderboard", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "leaderboard", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "summarize", + "tags" : [ "doc", "document", "list", "menu", "note", "report", "summary" ] +}, { + "name" : "block", + "tags" : [ "avoid", "block", "cancel", "close", "entry", "exit", "no", "prohibited", "quit", "remove", "stop" ] +}, { + "name" : "event_available", + "tags" : [ "approve", "available", "calendar", "check", "complete", "date", "done", "event", "mark", "ok", "schedule", "select", "tick", "time", "validate", "verified", "yes" ] +}, { + "name" : "thumb_up_off_alt", + "tags" : [ "alt", "disabled", "enabled", "favorite", "fingers", "gesture", "hand", "hands", "like", "off", "offline", "on", "rank", "ranking", "rate", "rating", "slash", "thumb", "up" ] +}, { + "name" : "directions_car", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "open_in_full", + "tags" : [ "action", "arrow", "arrows", "expand", "full", "grow", "in", "move", "open" ] +}, { + "name" : "auto_stories", + "tags" : [ "auto", "book", "flipping", "pages", "stories" ] +}, { + "name" : "post_add", + "tags" : [ "+", "add", "data", "doc", "document", "drive", "file", "folder", "folders", "page", "paper", "plus", "post", "sheet", "slide", "text", "writing" ] +}, { + "name" : "calculate", + "tags" : [ "+", "-", "=", "calculate", "count", "finance calculator", "math" ] +}, { + "name" : "alternate_email", + "tags" : [ "@", "address", "alternate", "contact", "email", "tag" ] +}, { + "name" : "create", + "tags" : [ "compose", "create", "edit", "editing", "input", "new", "pen", "pencil", "write", "writing" ] +}, { + "name" : "cloud_upload", + "tags" : [ "app", "application", "arrow", "backup", "cloud", "connection", "download", "drive", "files", "folders", "internet", "network", "sky", "storage", "up", "upload" ] +}, { + "name" : "local_fire_department", + "tags" : [ "911", "climate", "department", "fire", "firefighter", "flame", "heat", "home", "hot", "nest", "thermostat" ] +}, { + "name" : "bar_chart", + "tags" : [ "analytics", "bar", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "password", + "tags" : [ "key", "login", "password", "pin", "security", "star", "unlock" ] +}, { + "name" : "collections", + "tags" : [ "album", "collections", "gallery", "image", "landscape", "library", "mountain", "mountains", "photo", "photography", "picture", "stack" ] +}, { + "name" : "preview", + "tags" : [ "design", "eye", "layout", "preview", "reveal", "screen", "see", "show", "site", "view", "web", "website", "window", "www" ] +}, { + "name" : "star_outline", + "tags" : [ "bookmark", "favorite", "half", "highlight", "ranking", "rate", "rating", "save", "star", "toggle" ] +}, { + "name" : "exit_to_app", + "tags" : [ "app", "application", "arrow", "components", "design", "exit", "export", "interface", "layout", "leave", "mobile", "monitor", "move", "output", "phone", "screen", "site", "tablet", "to", "ui", "ux", "web", "website", "window" ] +}, { + "name" : "done_outline", + "tags" : [ "all", "approve", "check", "complete", "done", "mark", "ok", "outline", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "psychology", + "tags" : [ "behavior", "body", "brain", "cognitive", "function", "gear", "head", "human", "intellectual", "mental", "mind", "people", "person", "preferences", "psychiatric", "psychology", "science", "settings", "social", "therapy", "thinking", "thoughts" ] +}, { + "name" : "assignment_ind", + "tags" : [ "account", "assignment", "clipboard", "doc", "document", "face", "ind", "people", "person", "profile", "user" ] +}, { + "name" : "volunteer_activism", + "tags" : [ "activism", "donation", "fingers", "gesture", "giving", "hand", "hands", "heart", "love", "sharing", "volunteer" ] +}, { + "name" : "navigate_before", + "tags" : [ "arrow", "arrows", "before", "direction", "left", "navigate" ] +}, { + "name" : "published_with_changes", + "tags" : [ "approve", "arrow", "arrows", "changes", "check", "complete", "done", "inprogress", "load", "loading", "mark", "ok", "published", "refresh", "renew", "replace", "rotate", "select", "tick", "validate", "verified", "with", "yes" ] +}, { + "name" : "add_a_photo", + "tags" : [ "+", "a photo", "add", "camera", "lens", "new", "photography", "picture", "plus", "symbol" ] +}, { + "name" : "auto_awesome", + "tags" : [ "adjust", "ai", "artificial", "automatic", "automation", "custom", "edit", "editing", "enhance", "genai", "intelligence", "magic", "smart", "spark", "sparkle", "star", "stars" ] +}, { + "name" : "card_giftcard", + "tags" : [ "account", "balance", "bill", "card", "cart", "cash", "certificate", "coin", "commerce", "credit", "currency", "dollars", "gift", "giftcard", "money", "online", "pay", "payment", "present", "shopping" ] +}, { + "name" : "fullscreen", + "tags" : [ "adjust", "app", "application", "components", "full", "fullscreen", "interface", "screen", "site", "size", "ui", "ux", "view", "web", "website" ] +}, { + "name" : "sell", + "tags" : [ "bill", "card", "cart", "cash", "coin", "commerce", "credit", "currency", "dollars", "money", "online", "pay", "payment", "price", "sell", "shopping", "tag" ] +}, { + "name" : "checklist", + "tags" : [ "align", "alignment", "approve", "check", "checklist", "complete", "doc", "done", "edit", "editing", "editor", "format", "list", "mark", "notes", "ok", "select", "sheet", "spreadsheet", "text", "tick", "type", "validate", "verified", "writing", "yes" ] +}, { + "name" : "view_in_ar", + "tags" : [ "3d", "ar", "augmented", "cube", "daydream", "headset", "in", "reality", "square", "view", "vr" ] +}, { + "name" : "undo", + "tags" : [ "arrow", "backward", "mail", "previous", "redo", "repeat", "rotate", "undo" ] +}, { + "name" : "arrow_drop_up", + "tags" : [ "app", "application", "arrow", "components", "direction", "drop", "interface", "navigation", "screen", "site", "ui", "up", "ux", "web", "website" ] +}, { + "name" : "feedback", + "tags" : [ "!", "alert", "announcement", "attention", "bubble", "caution", "chat", "comment", "communicate", "danger", "error", "exclamation", "feedback", "important", "mark", "message", "notification", "speech", "symbol", "warning" ] +}, { + "name" : "health_and_safety", + "tags" : [ "+", "add", "and", "certified", "cross", "health", "home", "nest", "plus", "privacy", "private", "protect", "protection", "safety", "security", "shield", "symbol", "verified" ] +}, { + "name" : "work_outline", + "tags" : [ "bag", "baggage", "briefcase", "business", "case", "job", "suitcase", "work" ] +}, { + "name" : "unfold_more", + "tags" : [ "arrow", "arrows", "chevron", "collapse", "direction", "down", "expand", "expandable", "list", "more", "navigation", "unfold" ] +}, { + "name" : "travel_explore", + "tags" : [ "earth", "explore", "find", "glass", "global", "globe", "look", "magnify", "magnifying", "map", "network", "planet", "search", "see", "social", "space", "travel", "web", "world" ] +}, { + "name" : "palette", + "tags" : [ "art", "color", "colors", "filters", "paint", "palette" ] +}, { + "name" : "keyboard_arrow_right", + "tags" : [ "arrow", "arrows", "keyboard", "right" ] +}, { + "name" : "double_arrow", + "tags" : [ "arrow", "arrows", "direction", "double", "multiple", "navigation", "right" ] +}, { + "name" : "computer", + "tags" : [ "Android", "OS", "chrome", "computer", "desktop", "device", "hardware", "iOS", "mac", "monitor", "web", "window" ] +}, { + "name" : "timeline", + "tags" : [ "data", "history", "line", "movement", "point", "points", "timeline", "tracking", "trending", "zigzag" ] +}, { + "name" : "thumb_up_alt", + "tags" : [ "agreed", "approved", "confirm", "correct", "favorite", "feedback", "good", "happy", "like", "okay", "positive", "satisfaction", "social", "thumb", "up", "vote", "yes" ] +}, { + "name" : "signal_cellular_alt", + "tags" : [ "alt", "analytics", "bar", "cell", "cellular", "chart", "data", "diagram", "graph", "infographic", "internet", "measure", "metrics", "mobile", "network", "phone", "signal", "statistics", "tracking", "wifi", "wireless" ] +}, { + "name" : "replay", + "tags" : [ "arrow", "arrows", "control", "controls", "music", "refresh", "renew", "repeat", "replay", "video" ] +}, { + "name" : "swap_horiz", + "tags" : [ "arrow", "arrows", "back", "forward", "horizontal", "swap" ] +}, { + "name" : "volume_off", + "tags" : [ "audio", "control", "disabled", "enabled", "low", "music", "off", "on", "slash", "sound", "speaker", "tv", "volume" ] +}, { + "name" : "forum", + "tags" : [ "bubble", "chat", "comment", "communicate", "community", "conversation", "feedback", "forum", "hub", "message", "speech" ] +}, { + "name" : "skip_next", + "tags" : [ "arrow", "control", "controls", "music", "next", "play", "previous", "skip", "video" ] +}, { + "name" : "water_drop", + "tags" : [ "drink", "drop", "droplet", "eco", "liquid", "nature", "ocean", "rain", "social", "water" ] +}, { + "name" : "assignment_turned_in", + "tags" : [ "approve", "assignment", "check", "clipboard", "complete", "doc", "document", "done", "in", "mark", "ok", "select", "tick", "turn", "validate", "verified", "yes" ] +}, { + "name" : "library_books", + "tags" : [ "add", "album", "audio", "book", "books", "collection", "library", "read", "reading" ] +}, { + "name" : "maps_home_work", + "tags" : [ "building", "home", "house", "maps", "office", "work" ] +}, { + "name" : "dns", + "tags" : [ "address", "bars", "dns", "domain", "information", "ip", "list", "lookup", "name", "server", "system" ] +}, { + "name" : "sync_alt", + "tags" : [ "alt", "arrow", "arrows", "horizontal", "internet", "sync", "technology", "up", "update", "wifi" ] +}, { + "name" : "how_to_reg", + "tags" : [ "approve", "ballot", "check", "complete", "done", "election", "how", "mark", "ok", "poll", "register", "registration", "select", "tick", "to reg", "validate", "verified", "vote", "yes" ] +}, { + "name" : "notifications_none", + "tags" : [ "alarm", "alert", "bell", "none", "notifications", "notify", "reminder", "sound" ] +}, { + "name" : "stars", + "tags" : [ "achievement", "bookmark", "circle", "favorite", "highlight", "important", "marked", "ranking", "rate", "rating rank", "reward", "save", "saved", "shape", "special", "star" ] +}, { + "name" : "flight_takeoff", + "tags" : [ "airport", "departed", "departing", "flight", "fly", "landing", "plane", "takeoff", "transportation", "travel" ] +}, { + "name" : "label", + "tags" : [ "favorite", "indent", "label", "library", "mail", "remember", "save", "stamp", "sticker", "tag" ] +}, { + "name" : "devices", + "tags" : [ "Android", "OS", "computer", "desktop", "device", "hardware", "iOS", "laptop", "mobile", "monitor", "phone", "tablet", "watch", "wearable", "web" ] +}, { + "name" : "chat_bubble", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "message", "speech" ] +}, { + "name" : "emoji_emotions", + "tags" : [ "+", "add", "emoji", "emotions", "expressions", "face", "feelings", "glad", "happiness", "happy", "icon", "icons", "insert", "like", "mood", "new", "person", "pleased", "plus", "smile", "smiling", "social", "survey", "symbol" ] +}, { + "name" : "remove_red_eye", + "tags" : [ "eye", "iris", "look", "looking", "preview", "red", "remove", "see", "sight", "vision" ] +}, { + "name" : "content_paste", + "tags" : [ "clipboard", "content", "copy", "cut", "doc", "document", "file", "multiple", "past" ] +}, { + "name" : "folder_open", + "tags" : [ "data", "doc", "document", "drive", "file", "folder", "folders", "open", "sheet", "slide", "storage" ] +}, { + "name" : "text_snippet", + "tags" : [ "data", "doc", "document", "file", "note", "notes", "snippet", "storage", "text", "writing" ] +}, { + "name" : "tips_and_updates", + "tags" : [ "ai", "alert", "and", "announcement", "artificial", "automatic", "automation", "custom", "electricity", "genai", "idea", "info", "information", "intelligence", "light", "lightbulb", "magic", "smart", "spark", "sparkle", "star", "tips", "updates" ] +}, { + "name" : "my_location", + "tags" : [ "destination", "direction", "location", "maps", "navigation", "pin", "place", "point", "stop" ] +}, { + "name" : "textsms", + "tags" : [ "bubble", "chat", "comment", "communicate", "dots", "feedback", "message", "speech", "textsms" ] +}, { + "name" : "cloud", + "tags" : [ "cloud", "connection", "internet", "network", "sky", "upload" ] +}, { + "name" : "sports_esports", + "tags" : [ "controller", "entertainment", "esports", "game", "gamepad", "gaming", "hobby", "online", "social", "sports", "video" ] +}, { + "name" : "security", + "tags" : [ "certified", "privacy", "private", "protect", "protection", "security", "shield", "verified" ] +}, { + "name" : "request_quote", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "price", "quote", "request", "shopping", "symbol" ] +}, { + "name" : "toggle_off", + "tags" : [ "active", "app", "application", "components", "configuration", "control", "design", "disable", "inable", "inactive", "interface", "off", "on", "selection", "settings", "site", "slider", "switch", "toggle", "ui", "ux", "web", "website" ] +}, { + "name" : "book", + "tags" : [ "book", "bookmark", "favorite", "label", "library", "read", "reading", "remember", "ribbon", "save", "tag" ] +}, { + "name" : "contact_page", + "tags" : [ "account", "avatar", "contact", "data", "doc", "document", "drive", "face", "file", "folder", "folders", "human", "page", "people", "person", "profile", "sheet", "slide", "storage", "user", "writing" ] +}, { + "name" : "speed", + "tags" : [ "arrow", "control", "controls", "fast", "gauge", "meter", "motion", "music", "slow", "speed", "speedometer", "velocity", "video" ] +}, { + "name" : "bug_report", + "tags" : [ "animal", "bug", "fix", "insect", "issue", "problem", "report", "testing", "virus", "warning" ] +}, { + "name" : "space_dashboard", + "tags" : [ "cards", "dashboard", "format", "grid", "layout", "rectangle", "shapes", "space", "squares", "web", "website" ] +}, { + "name" : "fiber_manual_record", + "tags" : [ "circle", "dot", "fiber", "manual", "play", "record", "watch" ] +}, { + "name" : "report", + "tags" : [ "!", "alert", "attention", "caution", "danger", "error", "exclamation", "important", "mark", "notification", "octagon", "report", "symbol", "warning" ] +}, { + "name" : "alarm", + "tags" : [ "alarm", "alert", "bell", "clock", "countdown", "date", "notification", "schedule", "time" ] +}, { + "name" : "cached", + "tags" : [ "around", "arrows", "cache", "cached", "inprogress", "load", "loading refresh", "renew", "rotate" ] +}, { + "name" : "translate", + "tags" : [ "language", "speaking", "speech", "translate", "translator", "words" ] +}, { + "name" : "pan_tool", + "tags" : [ "fingers", "gesture", "hand", "hands", "human", "move", "pan", "scan", "stop", "tool" ] +}, { + "name" : "gavel", + "tags" : [ "agreement", "contract", "court", "document", "gavel", "government", "judge", "law", "mallet", "official", "police", "rule", "rules", "terms" ] +}, { + "name" : "settings_suggest", + "tags" : [ "ai", "artificial", "automatic", "automation", "change", "custom", "details", "gear", "genai", "intelligence", "magic", "options", "recommendation", "service", "settings", "smart", "spark", "sparkle", "star", "suggest", "suggestion", "system" ] +}, { + "name" : "file_copy", + "tags" : [ "content", "copy", "cut", "doc", "document", "duplicate", "file", "multiple", "past" ] +}, { + "name" : "edit_calendar", + "tags" : [ "calendar", "compose", "create", "date", "day", "draft", "edit", "editing", "event", "month", "pen", "pencil", "schedule", "write", "writing" ] +}, { + "name" : "contact_mail", + "tags" : [ "account", "address", "avatar", "communicate", "contact", "email", "face", "human", "info", "information", "mail", "message", "people", "person", "profile", "user" ] +}, { + "name" : "quiz", + "tags" : [ "?", "assistance", "faq", "help", "info", "information", "punctuation", "question mark", "quiz", "support", "symbol", "test" ] +}, { + "name" : "supervised_user_circle", + "tags" : [ "account", "avatar", "circle", "control", "face", "human", "parental", "parents", "people", "person", "profile", "supervised", "supervisor", "user" ] +}, { + "name" : "cloud_download", + "tags" : [ "app", "application", "arrow", "backup", "cloud", "connection", "down", "download", "drive", "files", "folders", "internet", "network", "sky", "storage", "upload" ] +}, { + "name" : "stop", + "tags" : [ "control", "controls", "music", "pause", "play", "square", "stop", "video" ] +}, { + "name" : "person_search", + "tags" : [ "account", "avatar", "face", "find", "glass", "human", "look", "magnify", "magnifying", "people", "person", "profile", "search", "user" ] +}, { + "name" : "location_city", + "tags" : [ "apartments", "architecture", "buildings", "business", "city", "estate", "home", "landscape", "location", "place", "real", "residence", "residential", "shelter", "town", "urban" ] +}, { + "name" : "sentiment_very_satisfied", + "tags" : [ "emotions", "expressions", "face", "feelings", "glad", "happiness", "happy", "like", "mood", "person", "pleased", "satisfied", "sentiment", "smile", "smiling", "survey", "very" ] +}, { + "name" : "ios_share", + "tags" : [ "arrow", "export", "ios", "send", "share", "up" ] +}, { + "name" : "minimize", + "tags" : [ "app", "application", "components", "design", "interface", "line", "minimize", "screen", "shape", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "qr_code", + "tags" : [ "barcode", "camera", "code", "media", "product", "qr", "quick", "response", "smartphone", "url", "urls" ] +}, { + "name" : "sentiment_satisfied_alt", + "tags" : [ "account", "alt", "emoji", "face", "happy", "human", "people", "person", "profile", "satisfied", "sentiment", "smile", "user" ] +}, { + "name" : "local_mall", + "tags" : [ "bag", "bill", "building", "business", "buy", "card", "cart", "cash", "coin", "commerce", "credit", "currency", "dollars", "handbag", "local", "mall", "money", "online", "pay", "payment", "shop", "shopping", "store", "storefront" ] +}, { + "name" : "qr_code_2", + "tags" : [ "barcode", "camera", "code", "media", "product", "qr", "quick", "response", "smartphone", "url", "urls" ] +}, { + "name" : "flight", + "tags" : [ "air", "airplane", "airport", "flight", "plane", "transportation", "travel", "trip" ] +}, { + "name" : "desktop_windows", + "tags" : [ "Android", "OS", "chrome", "desktop", "device", "display", "hardware", "iOS", "mac", "monitor", "screen", "television", "tv", "web", "window", "windows" ] +}, { + "name" : "music_note", + "tags" : [ "audio", "audiotrack", "key", "music", "note", "sound", "track" ] +}, { + "name" : "sentiment_satisfied", + "tags" : [ "emotions", "expressions", "face", "feelings", "glad", "happiness", "happy", "like", "mood", "person", "pleased", "satisfied", "sentiment", "smile", "smiling", "survey" ] +}, { + "name" : "android", + "tags" : [ "android", "character", "logo", "mascot", "toy" ] +}, { + "name" : "accessibility", + "tags" : [ "accessibility", "accessible", "body", "handicap", "help", "human", "people", "person" ] +}, { + "name" : "backspace", + "tags" : [ "arrow", "back", "backspace", "cancel", "clear", "correct", "delete", "erase", "remove" ] +}, { + "name" : "precision_manufacturing", + "tags" : [ "arm", "automatic", "chain", "conveyor", "crane", "factory", "industry", "machinery", "manufacturing", "mechanical", "precision", "production", "repairing", "robot", "supply", "warehouse" ] +}, { + "name" : "drag_handle", + "tags" : [ "app", "application ui", "components", "design", "drag", "handle", "interface", "layout", "menu", "move", "screen", "site", "ui", "ux", "web", "website", "window" ] +}, { + "name" : "smart_display", + "tags" : [ "airplay", "cast", "chrome", "connect", "device", "display", "play", "screen", "screencast", "smart", "stream", "television", "tv", "video", "wireless" ] +}, { + "name" : "near_me", + "tags" : [ "destination", "direction", "location", "maps", "me", "navigation", "near", "pin", "place", "point", "stop" ] +}, { + "name" : "west", + "tags" : [ "arrow", "directional", "left", "maps", "navigation", "west" ] +}, { + "name" : "get_app", + "tags" : [ "app", "arrow", "arrows", "down", "download", "downloads", "export", "get", "install", "play", "upload" ] +}, { + "name" : "person_add_alt", + "tags" : [ "+", "account", "add", "face", "human", "people", "person", "plus", "profile", "user" ] +}, { + "name" : "fitness_center", + "tags" : [ "athlete", "center", "dumbbell", "exercise", "fitness", "gym", "hobby", "places", "sport", "weights", "workout" ] +}, { + "name" : "shield", + "tags" : [ "certified", "privacy", "private", "protect", "protection", "security", "shield", "verified" ] +}, { + "name" : "message", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "message", "speech" ] +}, { + "name" : "rocket_launch", + "tags" : [ "launch", "rocket", "space", "spaceship", "takeoff" ] +}, { + "name" : "record_voice_over", + "tags" : [ "account", "face", "human", "over", "people", "person", "profile", "record", "recording", "speak", "speaking", "speech", "transcript", "user", "voice" ] +}, { + "name" : "add_task", + "tags" : [ "+", "add", "approve", "check", "circle", "completed", "increase", "mark", "ok", "plus", "select", "task", "tick", "yes" ] +}, { + "name" : "drive_file_rename_outline", + "tags" : [ "compose", "create", "draft", "drive", "edit", "editing", "file", "input", "marker", "pen", "pencil", "rename", "write", "writing" ] +}, { + "name" : "insert_drive_file", + "tags" : [ "doc", "drive", "file", "format", "insert", "sheet", "slide" ] +}, { + "name" : "question_mark", + "tags" : [ "?", "assistance", "help", "info", "information", "punctuation", "question mark", "support", "symbol" ] +}, { + "name" : "trending_flat", + "tags" : [ "arrow", "change", "data", "flat", "metric", "movement", "rate", "right", "track", "tracking", "trending" ] +}, { + "name" : "handyman", + "tags" : [ "build", "construction", "fix", "hammer", "handyman", "repair", "screw", "screwdriver", "tools" ] +}, { + "name" : "emoji_objects", + "tags" : [ "bulb", "creative", "emoji", "idea", "light", "objects", "solution", "thinking" ] +}, { + "name" : "military_tech", + "tags" : [ "army", "award", "badge", "honor", "medal", "merit", "military", "order", "privilege", "prize", "rank", "reward", "ribbon", "soldier", "star", "status", "tech", "trophy", "win", "winner" ] +}, { + "name" : "hourglass_empty", + "tags" : [ "countdown", "empty", "hourglass", "loading", "minutes", "time", "wait", "waiting" ] +}, { + "name" : "help_center", + "tags" : [ "?", "assistance", "center", "help", "info", "information", "punctuation", "question mark", "recent", "restore", "support", "symbol" ] +}, { + "name" : "science", + "tags" : [ "beaker", "chemical", "chemistry", "experiment", "flask", "glass", "laboratory", "research", "science", "tube" ] +}, { + "name" : "storage", + "tags" : [ "computer", "data", "drive", "memory", "storage" ] +}, { + "name" : "movie", + "tags" : [ "cinema", "film", "media", "movie", "slate", "video" ] +}, { + "name" : "accessibility_new", + "tags" : [ "accessibility", "accessible", "body", "handicap", "help", "human", "new", "people", "person" ] +}, { + "name" : "workspace_premium", + "tags" : [ "certification", "degree", "ecommerce", "guarantee", "medal", "permit", "premium", "ribbon", "verification", "workspace" ] +}, { + "name" : "directions_run", + "tags" : [ "body", "directions", "human", "jogging", "maps", "people", "person", "route", "run", "running", "walk" ] +}, { + "name" : "rule", + "tags" : [ "approve", "check", "complete", "done", "incomplete", "line", "mark", "missing", "no", "ok", "rule", "select", "tick", "validate", "verified", "wrong", "x", "yes" ] +}, { + "name" : "thumb_down", + "tags" : [ "ate", "dislike", "down", "favorite", "fingers", "gesture", "hand", "hands", "like", "rank", "ranking", "rating", "thumb" ] +}, { + "name" : "event_note", + "tags" : [ "calendar", "date", "event", "note", "schedule", "text", "time", "writing" ] +}, { + "name" : "contacts", + "tags" : [ "account", "avatar", "call", "cell", "contacts", "face", "human", "info", "information", "mobile", "people", "person", "phone", "profile", "user" ] +}, { + "name" : "comment", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "message", "outline", "speech" ] +}, { + "name" : "restaurant_menu", + "tags" : [ "book", "dining", "eat", "food", "fork", "knife", "local", "meal", "menu", "restaurant", "spoon" ] +}, { + "name" : "add_photo_alternate", + "tags" : [ "+", "add", "alternate", "image", "landscape", "mountain", "mountains", "new", "photo", "photography", "picture", "plus", "symbol" ] +}, { + "name" : "confirmation_number", + "tags" : [ "admission", "confirmation", "entertainment", "event", "number", "ticket" ] +}, { + "name" : "sticky_note_2", + "tags" : [ "2", "bookmark", "mark", "message", "note", "paper", "sticky", "text", "writing" ] +}, { + "name" : "format_quote", + "tags" : [ "doc", "edit", "editing", "editor", "format", "quotation", "quote", "sheet", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "history_edu", + "tags" : [ "document", "edu", "education", "feather", "history", "letter", "paper", "pen", "quill", "school", "story", "tools", "write", "writing" ] +}, { + "name" : "business_center", + "tags" : [ "bag", "baggage", "briefcase", "business", "case", "center", "places", "purse", "suitcase", "work" ] +}, { + "name" : "upload", + "tags" : [ "arrow", "arrows", "download", "drive", "up", "upload" ] +}, { + "name" : "skip_previous", + "tags" : [ "arrow", "control", "controls", "music", "next", "play", "previous", "skip", "video" ] +}, { + "name" : "archive", + "tags" : [ "archive", "inbox", "mail", "store" ] +}, { + "name" : "wb_sunny", + "tags" : [ "balance", "bright", "light", "lighting", "sun", "sunny", "wb", "white" ] +}, { + "name" : "cake", + "tags" : [ "add", "baked", "birthday", "cake", "candles", "celebration", "dessert", "food", "frosting", "new", "party", "pastries", "pastry", "plus", "social", "sweet", "symbol" ] +}, { + "name" : "attachment", + "tags" : [ "attach", "attachment", "clip", "compose", "file", "image", "link" ] +}, { + "name" : "source", + "tags" : [ "code", "composer", "content", "creation", "data", "doc", "document", "file", "folder", "mode", "source", "storage", "view" ] +}, { + "name" : "settings_applications", + "tags" : [ "application", "change", "details", "gear", "info", "information", "options", "personal", "service", "settings" ] +}, { + "name" : "dashboard_customize", + "tags" : [ "cards", "customize", "dashboard", "format", "layout", "rectangle", "shapes", "square", "web", "website" ] +}, { + "name" : "find_in_page", + "tags" : [ "data", "doc", "document", "drive", "file", "find", "folder", "folders", "glass", "in", "look", "magnify", "magnifying", "page", "paper", "search", "see", "sheet", "slide", "writing" ] +}, { + "name" : "support", + "tags" : [ "assist", "buoy", "help", "life", "lifebuoy", "rescue", "safe", "safety", "support" ] +}, { + "name" : "ads_click", + "tags" : [ "ads", "browser", "click", "clicks", "cursor", "internet", "target", "traffic", "web" ] +}, { + "name" : "new_releases", + "tags" : [ "approve", "award", "check", "checkmark", "complete", "done", "new", "notification", "ok", "release", "releases", "select", "star", "symbol", "tick", "verification", "verified", "warning", "yes" ] +}, { + "name" : "flutter_dash", + "tags" : [ "bird", "dash", "flutter", "mascot" ] +}, { + "name" : "playlist_add", + "tags" : [ "+", "add", "collection", "list", "music", "new", "playlist", "plus", "symbol" ] +}, { + "name" : "save_alt", + "tags" : [ "alt", "arrow", "disk", "document", "down", "file", "floppy", "multimedia", "save" ] +}, { + "name" : "close_fullscreen", + "tags" : [ "action", "arrow", "arrows", "close", "collapse", "direction", "full", "fullscreen", "minimize", "screen" ] +}, { + "name" : "credit_score", + "tags" : [ "approve", "bill", "card", "cash", "check", "coin", "commerce", "complete", "cost", "credit", "currency", "dollars", "done", "finance", "loan", "mark", "money", "ok", "online", "pay", "payment", "score", "select", "symbol", "tick", "validate", "verified", "yes" ] +}, { + "name" : "layers", + "tags" : [ "arrange", "disabled", "enabled", "interaction", "layers", "maps", "off", "on", "overlay", "pages", "slash" ] +}, { + "name" : "redeem", + "tags" : [ "bill", "card", "cart", "cash", "certificate", "coin", "commerce", "credit", "currency", "dollars", "gift", "giftcard", "money", "online", "pay", "payment", "present", "redeem", "shopping" ] +}, { + "name" : "spa", + "tags" : [ "aromatherapy", "flower", "healthcare", "leaf", "massage", "meditation", "nature", "petals", "places", "relax", "spa", "wellbeing", "wellness" ] +}, { + "name" : "announcement", + "tags" : [ "!", "alert", "announcement", "attention", "bubble", "caution", "chat", "comment", "communicate", "danger", "error", "exclamation", "feedback", "important", "mark", "message", "notification", "speech", "symbol", "warning" ] +}, { + "name" : "keyboard_backspace", + "tags" : [ "arrow", "back", "backspace", "keyboard", "left" ] +}, { + "name" : "loyalty", + "tags" : [ "benefits", "card", "credit", "heart", "loyalty", "membership", "miles", "points", "program", "subscription", "tag", "travel", "trip" ] +}, { + "name" : "swap_vert", + "tags" : [ "arrow", "arrows", "direction", "down", "navigation", "swap", "up", "vert", "vertical" ] +}, { + "name" : "sentiment_dissatisfied", + "tags" : [ "angry", "disappointed", "dislike", "dissatisfied", "emotions", "expressions", "face", "feelings", "frown", "mood", "person", "sad", "sentiment", "survey", "unhappy", "unsatisfied", "upset" ] +}, { + "name" : "medical_services", + "tags" : [ "aid", "bag", "briefcase", "emergency", "first", "kit", "medical", "medicine", "services" ] +}, { + "name" : "view_headline", + "tags" : [ "design", "format", "grid", "headline", "layout", "paragraph", "text", "view", "website" ] +}, { + "name" : "arrow_circle_right", + "tags" : [ "arrow", "circle", "direction", "navigation", "right" ] +}, { + "name" : "format_list_numbered", + "tags" : [ "align", "alignment", "digit", "doc", "edit", "editing", "editor", "format", "list", "notes", "number", "numbered", "sheet", "spreadsheet", "symbol", "text", "type", "writing" ] +}, { + "name" : "phone_android", + "tags" : [ "OS", "android", "cell", "device", "hardware", "iOS", "mobile", "phone", "tablet" ] +}, { + "name" : "sms", + "tags" : [ "3", "bubble", "chat", "communication", "conversation", "dots", "message", "more", "service", "sms", "speech", "three" ] +}, { + "name" : "restore", + "tags" : [ "arrow", "back", "backwards", "clock", "date", "history", "refresh", "renew", "restore", "reverse", "rotate", "schedule", "time", "turn" ] +}, { + "name" : "policy", + "tags" : [ "certified", "find", "glass", "legal", "look", "magnify", "magnifying", "policy", "privacy", "private", "protect", "protection", "search", "security", "see", "shield", "verified" ] +}, { + "name" : "dangerous", + "tags" : [ "broken", "danger", "dangerous", "fix", "no", "sign", "stop", "update", "warning", "wrong", "x" ] +}, { + "name" : "battery_full", + "tags" : [ "battery", "cell", "charge", "full", "mobile", "power" ] +}, { + "name" : "euro_symbol", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "euro", "finance", "money", "online", "pay", "payment", "symbol" ] +}, { + "name" : "query_stats", + "tags" : [ "analytics", "chart", "data", "diagram", "find", "glass", "graph", "infographic", "line", "look", "magnify", "magnifying", "measure", "metrics", "query", "search", "see", "statistics", "stats", "tracking" ] +}, { + "name" : "group_work", + "tags" : [ "alliance", "collaboration", "group", "partnership", "team", "teamwork", "together", "work" ] +}, { + "name" : "expand_circle_down", + "tags" : [ "arrow", "arrows", "chevron", "circle", "collapse", "direction", "down", "expand", "expandable", "list", "more" ] +}, { + "name" : "sensors", + "tags" : [ "connection", "network", "scan", "sensors", "signal", "wireless" ] +}, { + "name" : "keyboard_arrow_up", + "tags" : [ "arrow", "arrows", "keyboard", "up" ] +}, { + "name" : "brush", + "tags" : [ "art", "brush", "design", "draw", "edit", "editing", "paint", "painting", "tool" ] +}, { + "name" : "meeting_room", + "tags" : [ "building", "door", "doorway", "entrance", "home", "house", "interior", "meeting", "office", "open", "places", "room" ] +}, { + "name" : "key", + "tags" : [ "key", "lock", "password", "unlock" ] +}, { + "name" : "house", + "tags" : [ "architecture", "building", "estate", "family", "home", "homepage", "house", "place", "places", "real", "residence", "residential", "shelter" ] +}, { + "name" : "lunch_dining", + "tags" : [ "breakfast", "dining", "dinner", "drink", "fastfood", "food", "hamburger", "lunch", "meal" ] +}, { + "name" : "table_chart", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic grid", "measure", "metrics", "statistics", "table", "tracking" ] +}, { + "name" : "border_color", + "tags" : [ "all", "border", "doc", "edit", "editing", "editor", "pen", "pencil", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "compare_arrows", + "tags" : [ "arrow", "arrows", "collide", "compare", "direction", "left", "pressure", "push", "right", "together" ] +}, { + "name" : "south", + "tags" : [ "arrow", "directional", "down", "maps", "navigation", "south" ] +}, { + "name" : "directions_walk", + "tags" : [ "body", "direction", "directions", "human", "jogging", "maps", "people", "person", "route", "run", "walk" ] +}, { + "name" : "arrow_left", + "tags" : [ "app", "application", "arrow", "components", "direction", "interface", "left", "navigation", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "tag", + "tags" : [ "hash", "hashtag", "key", "media", "number", "pound", "social", "tag", "trend" ] +}, { + "name" : "change_circle", + "tags" : [ "around", "arrows", "change", "circle", "direction", "navigation", "rotate" ] +}, { + "name" : "subject", + "tags" : [ "alignment", "doc", "document", "email", "full", "justify", "list", "note", "subject", "text", "writing" ] +}, { + "name" : "sentiment_very_dissatisfied", + "tags" : [ "angry", "disappointed", "dislike", "dissatisfied", "emotions", "expressions", "face", "feelings", "mood", "person", "sad", "sentiment", "sorrow", "survey", "unhappy", "unsatisfied", "upset", "very" ] +}, { + "name" : "local_hospital", + "tags" : [ "911", "aid", "cross", "emergency", "first", "hospital", "local", "medicine" ] +}, { + "name" : "table_view", + "tags" : [ "format", "grid", "group", "layout", "multiple", "table", "view" ] +}, { + "name" : "disabled_by_default", + "tags" : [ "box", "by", "cancel", "close", "default", "disabled", "exit", "no", "quit", "remove", "square", "stop", "x" ] +}, { + "name" : "notification_important", + "tags" : [ "!", "active", "alarm", "alert", "attention", "bell", "caution", "chime", "danger", "error", "exclamation", "important", "mark", "notification", "notifications", "notify", "reminder", "ring", "sound", "symbol", "warning" ] +}, { + "name" : "celebration", + "tags" : [ "activity", "birthday", "celebration", "event", "fun", "party" ] +}, { + "name" : "laptop", + "tags" : [ "Android", "OS", "chrome", "computer", "desktop", "device", "hardware", "iOS", "laptop", "mac", "monitor", "web", "windows" ] +}, { + "name" : "loop", + "tags" : [ "around", "arrow", "arrows", "direction", "inprogress", "load", "loading refresh", "loop", "music", "navigation", "renew", "rotate", "turn" ] +}, { + "name" : "nightlight_round", + "tags" : [ "dark", "half", "light", "mode", "moon", "night", "nightlight", "round" ] +}, { + "name" : "privacy_tip", + "tags" : [ "alert", "announcement", "assistance", "certified", "details", "help", "i", "info", "information", "privacy", "private", "protect", "protection", "security", "service", "shield", "support", "tip", "verified" ] +}, { + "name" : "import_contacts", + "tags" : [ "address", "book", "contacts", "import", "info", "information", "open" ] +}, { + "name" : "equalizer", + "tags" : [ "adjustment", "analytics", "chart", "data", "equalizer", "graph", "measure", "metrics", "music", "noise", "sound", "static", "statistics", "tracking", "volume" ] +}, { + "name" : "app_registration", + "tags" : [ "app", "apps", "edit", "pencil", "register", "registration" ] +}, { + "name" : "keyboard_double_arrow_right", + "tags" : [ "arrow", "arrows", "direction", "double", "multiple", "navigation", "right" ] +}, { + "name" : "handshake", + "tags" : [ "agreement", "hand", "hands", "partnership", "shake" ] +}, { + "name" : "corporate_fare", + "tags" : [ "architecture", "building", "business", "corporate", "estate", "fare", "organization", "place", "real", "residence", "residential", "shelter" ] +}, { + "name" : "local_library", + "tags" : [ "book", "community learning", "library", "local", "read" ] +}, { + "name" : "https", + "tags" : [ "https", "lock", "locked", "password", "privacy", "private", "protection", "safety", "secure", "security" ] +}, { + "name" : "euro", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "euro", "euros", "finance", "money", "online", "pay", "payment", "price", "shopping", "symbol" ] +}, { + "name" : "coronavirus", + "tags" : [ "19", "bacteria", "coronavirus", "covid", "disease", "germs", "illness", "sick", "social" ] +}, { + "name" : "price_check", + "tags" : [ "approve", "bill", "card", "cash", "check", "coin", "commerce", "complete", "cost", "credit", "currency", "dollars", "done", "finance", "mark", "money", "ok", "online", "pay", "payment", "price", "select", "shopping", "symbol", "tick", "validate", "verified", "yes" ] +}, { + "name" : "live_tv", + "tags" : [ "Android", "OS", "antennas hardware", "chrome", "desktop", "device", "iOS", "live", "mac", "monitor", "movie", "play", "stream", "television", "tv", "web", "window" ] +}, { + "name" : "park", + "tags" : [ "attraction", "fresh", "local", "nature", "outside", "park", "plant", "tree" ] +}, { + "name" : "toc", + "tags" : [ "content", "format", "lines", "list", "order", "reorder", "stacked", "table", "title", "titles", "toc" ] +}, { + "name" : "track_changes", + "tags" : [ "bullseye", "changes", "circle", "evolve", "lines", "movement", "rotate", "shift", "target", "track" ] +}, { + "name" : "arrow_circle_up", + "tags" : [ "arrow", "circle", "direction", "navigation", "up" ] +}, { + "name" : "emoji_people", + "tags" : [ "arm", "body", "emoji", "greeting", "human", "people", "person", "social", "waving" ] +}, { + "name" : "flash_on", + "tags" : [ "bolt", "disabled", "electric", "enabled", "fast", "flash", "lightning", "off", "on", "slash", "thunderbolt" ] +}, { + "name" : "copyright", + "tags" : [ "alphabet", "c", "character", "copyright", "emblem", "font", "legal", "letter", "owner", "symbol", "text" ] +}, { + "name" : "bookmarks", + "tags" : [ "bookmark", "bookmarks", "favorite", "label", "layers", "library", "multiple", "read", "reading", "remember", "ribbon", "save", "stack", "tag" ] +}, { + "name" : "ac_unit", + "tags" : [ "ac", "air", "cold", "conditioner", "flake", "snow", "temperature", "unit", "weather", "winter" ] +}, { + "name" : "contact_phone", + "tags" : [ "account", "avatar", "call", "communicate", "contact", "face", "human", "info", "information", "message", "mobile", "people", "person", "phone", "profile", "user" ] +}, { + "name" : "keyboard_arrow_left", + "tags" : [ "arrow", "arrows", "keyboard", "left" ] +}, { + "name" : "medication", + "tags" : [ "doctor", "drug", "emergency", "hospital", "medication", "medicine", "pharmacy", "pills", "prescription" ] +}, { + "name" : "grading", + "tags" : [ "'favorite'_new'. ' Remove this icon & keep 'star'.", "'star_boarder'", "'star_border_purple500'", "'star_outline'", "'star_purple500'", "'star_rate'", "Same as 'star'" ] +}, { + "name" : "keyboard_return", + "tags" : [ "arrow", "back", "keyboard", "left", "return" ] +}, { + "name" : "api", + "tags" : [ "api", "developer", "development", "enterprise", "software" ] +}, { + "name" : "smart_toy", + "tags" : [ "bot", "droid", "games", "robot", "smart", "toy" ] +}, { + "name" : "input", + "tags" : [ "arrow", "box", "download", "input", "login", "move", "right" ] +}, { + "name" : "self_improvement", + "tags" : [ "body", "calm", "care", "chi", "human", "improvement", "meditate", "meditation", "people", "person", "relax", "self", "sitting", "wellbeing", "yoga", "zen" ] +}, { + "name" : "live_help", + "tags" : [ "?", "assistance", "bubble", "chat", "comment", "communicate", "help", "info", "information", "live", "message", "punctuation", "question mark", "recent", "restore", "speech", "support", "symbol" ] +}, { + "name" : "query_builder", + "tags" : [ "builder", "clock", "date", "query", "schedule", "time" ] +}, { + "name" : "perm_media", + "tags" : [ "collection", "data", "doc", "document", "file", "folder", "folders", "image", "landscape", "media", "mountain", "mountains", "perm", "photo", "photography", "picture", "storage" ] +}, { + "name" : "download_for_offline", + "tags" : [ "arrow", "circle", "down", "download", "for offline", "install", "upload" ] +}, { + "name" : "view_module", + "tags" : [ "design", "format", "grid", "layout", "module", "square", "squares", "stacked", "view", "website" ] +}, { + "name" : "pin", + "tags" : [ "1", "2", "3", "digit", "key", "login", "logout", "number", "password", "pattern", "pin", "security", "star", "symbol", "unlock" ] +}, { + "name" : "fast_forward", + "tags" : [ "control", "fast", "forward", "media", "music", "play", "speed", "time", "tv", "video" ] +}, { + "name" : "forward_to_inbox", + "tags" : [ "arrow", "arrows", "directions", "email", "envelop", "forward", "inbox", "letter", "mail", "message", "navigation", "outgoing", "right", "send", "to" ] +}, { + "name" : "person_remove", + "tags" : [ "account", "avatar", "delete", "face", "human", "minus", "people", "person", "profile", "remove", "unfriend", "user" ] +}, { + "name" : "local_atm", + "tags" : [ "atm", "bill", "card", "cart", "cash", "coin", "commerce", "credit", "currency", "dollars", "local", "money", "online", "pay", "payment", "shopping", "symbol" ] +}, { + "name" : "star_half", + "tags" : [ "achievement", "bookmark", "favorite", "half", "highlight", "important", "marked", "ranking", "rate", "rating rank", "reward", "save", "saved", "shape", "special", "star", "toggle" ] +}, { + "name" : "build_circle", + "tags" : [ "adjust", "build", "circle", "fix", "repair", "tool", "wrench" ] +}, { + "name" : "redo", + "tags" : [ "arrow", "backward", "forward", "next", "redo", "repeat", "rotate", "undo" ] +}, { + "name" : "web", + "tags" : [ "browser", "internet", "page", "screen", "site", "web", "website", "www" ] +}, { + "name" : "north_east", + "tags" : [ "arrow", "east", "maps", "navigation", "noth", "right", "up" ] +}, { + "name" : "north", + "tags" : [ "arrow", "directional", "maps", "navigation", "north", "up" ] +}, { + "name" : "cottage", + "tags" : [ "architecture", "beach", "cottage", "estate", "home", "house", "lake", "lodge", "maps", "place", "real", "residence", "residential", "stay", "traveling" ] +}, { + "name" : "local_activity", + "tags" : [ "activity", "event", "event ticket", "local", "star", "things", "ticket" ] +}, { + "name" : "currency_exchange", + "tags" : [ "360", "around", "arrow", "arrows", "cash", "coin", "commerce", "currency", "direction", "dollars", "exchange", "inprogress", "money", "pay", "renew", "rotate", "sync", "turn", "universal" ] +}, { + "name" : "video_library", + "tags" : [ "arrow", "collection", "library", "play", "video" ] +}, { + "name" : "hourglass_bottom", + "tags" : [ "bottom", "countdown", "half", "hourglass", "loading", "minute", "minutes", "time", "wait", "waiting" ] +}, { + "name" : "headphones", + "tags" : [ "accessory", "audio", "device", "ear", "earphone", "headphones", "headset", "listen", "music", "sound" ] +}, { + "name" : "zoom_out", + "tags" : [ "find", "glass", "look", "magnify", "magnifying", "minus", "negative", "out", "scale", "search", "see", "size", "small", "smaller", "zoom" ] +}, { + "name" : "poll", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "poll", "statistics", "survey", "tracking", "vote" ] +}, { + "name" : "perm_contact_calendar", + "tags" : [ "account", "calendar", "contact", "date", "face", "human", "information", "people", "perm", "person", "profile", "schedule", "time", "user" ] +}, { + "name" : "forward", + "tags" : [ "arrow", "forward", "mail", "message", "playback", "right", "sent" ] +}, { + "name" : "person_pin", + "tags" : [ "account", "avatar", "destination", "direction", "face", "human", "location", "maps", "people", "person", "pin", "place", "profile", "stop", "user" ] +}, { + "name" : "home_work", + "tags" : [ "architecture", "building", "estate", "home", "place", "real", "residence", "residential", "shelter", "work" ] +}, { + "name" : "playlist_add_check", + "tags" : [ "add", "approve", "check", "collection", "complete", "done", "list", "mark", "music", "ok", "playlist", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "local_cafe", + "tags" : [ "bottle", "cafe", "coffee", "cup", "drink", "food", "restaurant", "tea" ] +}, { + "name" : "ondemand_video", + "tags" : [ "Android", "OS", "chrome", "demand", "desktop", "device", "hardware", "iOS", "mac", "monitor", "ondemand", "play", "television", "tv", "video", "web", "window" ] +}, { + "name" : "design_services", + "tags" : [ "compose", "create", "design", "draft", "edit", "editing", "input", "pen", "pencil", "ruler", "service", "write", "writing" ] +}, { + "name" : "looks_one", + "tags" : [ "1", "digit", "looks", "numbers", "square", "symbol" ] +}, { + "name" : "backup", + "tags" : [ "arrow", "backup", "cloud", "data", "drive", "files folders", "storage", "up", "upload" ] +}, { + "name" : "newspaper", + "tags" : [ "article", "data", "doc", "document", "drive", "file", "folder", "folders", "magazine", "media", "news", "newspaper", "notes", "page", "paper", "sheet", "slide", "text", "writing" ] +}, { + "name" : "memory", + "tags" : [ "card", "chip", "digital", "memory", "micro", "processor", "sd", "storage" ] +}, { + "name" : "open_with", + "tags" : [ "arrow", "arrows", "direction", "expand", "move", "open", "pan", "with" ] +}, { + "name" : "content_cut", + "tags" : [ "content", "copy", "cut", "doc", "document", "file", "past", "scissors", "trim" ] +}, { + "name" : "keyboard", + "tags" : [ "computer", "device", "hardware", "input", "keyboard", "keypad", "letter", "office", "text", "type" ] +}, { + "name" : "hourglass_top", + "tags" : [ "countdown", "half", "hourglass", "loading", "minute", "minutes", "time", "top", "wait", "waiting" ] +}, { + "name" : "settings_phone", + "tags" : [ "call", "cell", "contact", "device", "hardware", "mobile", "phone", "settings", "telephone" ] +}, { + "name" : "rss_feed", + "tags" : [ "application", "blog", "connection", "data", "feed", "internet", "network", "rss", "service", "signal", "website", "wifi", "wireless" ] +}, { + "name" : "first_page", + "tags" : [ "arrow", "back", "chevron", "first", "left", "page", "rewind" ] +}, { + "name" : "delivery_dining", + "tags" : [ "delivery", "dining", "food", "meal", "restaurant", "scooter", "takeout", "transportation", "vehicle", "vespa" ] +}, { + "name" : "rate_review", + "tags" : [ "comment", "feedback", "pen", "pencil", "rate", "review", "stars", "write" ] +}, { + "name" : "control_point", + "tags" : [ "+", "add", "circle", "control", "plus", "point" ] +}, { + "name" : "gpp_good", + "tags" : [ "certified", "check", "good", "gpp", "ok", "pass", "security", "shield", "sim", "tick" ] +}, { + "name" : "circle_notifications", + "tags" : [ "active", "alarm", "alert", "bell", "chime", "circle", "notifications", "notify", "reminder", "ring", "sound" ] +}, { + "name" : "auto_fix_high", + "tags" : [ "adjust", "ai", "artificial", "auto", "automatic", "automation", "custom", "edit", "editing", "enhance", "erase", "fix", "genai", "high", "intelligence", "magic", "modify", "pen", "smart", "spark", "sparkle", "star", "tool", "wand" ] +}, { + "name" : "book_online", + "tags" : [ "Android", "OS", "admission", "appointment", "book", "cell", "device", "event", "hardware", "iOS", "mobile", "online", "pass", "phone", "reservation", "tablet", "ticket" ] +}, { + "name" : "notes", + "tags" : [ "comment", "doc", "document", "note", "notes", "text", "write", "writing" ] +}, { + "name" : "point_of_sale", + "tags" : [ "checkout", "cost", "machine", "merchant", "money", "of", "pay", "payment", "point", "pos", "retail", "sale", "system", "transaction" ] +}, { + "name" : "perm_phone_msg", + "tags" : [ "bubble", "call", "cell", "chat", "comment", "communicate", "contact", "device", "message", "msg", "perm", "phone", "recording", "speech", "telephone", "voice" ] +}, { + "name" : "speaker_notes", + "tags" : [ "bubble", "chat", "comment", "communicate", "format", "list", "message", "notes", "speaker", "speech", "text" ] +}, { + "name" : "fullscreen_exit", + "tags" : [ "adjust", "app", "application", "components", "exit", "full", "fullscreen", "interface", "screen", "site", "size", "ui", "ux", "view", "web", "website" ] +}, { + "name" : "headset_mic", + "tags" : [ "accessory", "audio", "chat", "device", "ear", "earphone", "headphones", "headset", "listen", "mic", "music", "sound", "talk" ] +}, { + "name" : "create_new_folder", + "tags" : [ "+", "add", "create", "data", "doc", "document", "drive", "file", "folder", "new", "plus", "sheet", "slide", "storage", "symbol" ] +}, { + "name" : "wysiwyg", + "tags" : [ "composer", "mode", "screen", "site", "software", "system", "text", "view", "visibility", "web", "website", "window", "wysiwyg" ] +}, { + "name" : "label_important", + "tags" : [ "favorite", "important", "indent", "label", "library", "mail", "remember", "save", "stamp", "sticker", "tag", "wing" ] +}, { + "name" : "card_membership", + "tags" : [ "bill", "bookmark", "card", "cash", "certificate", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "loyalty", "membership", "money", "online", "pay", "payment", "shopping", "subscription" ] +}, { + "name" : "style", + "tags" : [ "booklet", "cards", "filters", "options", "style", "tags" ] +}, { + "name" : "arrow_circle_down", + "tags" : [ "arrow", "circle", "direction", "down", "navigation" ] +}, { + "name" : "file_present", + "tags" : [ "clip", "data", "doc", "document", "drive", "file", "folder", "folders", "note", "paper", "present", "reminder", "sheet", "slide", "storage", "writing" ] +}, { + "name" : "directions_bus", + "tags" : [ "automobile", "bus", "car", "cars", "directions", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "whatshot", + "tags" : [ "arrow", "circle", "direction", "fire", "frames", "hot", "round", "whatshot" ] +}, { + "name" : "sports_soccer", + "tags" : [ "athlete", "athletic", "ball", "entertainment", "exercise", "football", "game", "hobby", "soccer", "social", "sports" ] +}, { + "name" : "indeterminate_check_box", + "tags" : [ "app", "application", "box", "button", "check", "components", "control", "design", "form", "indeterminate", "interface", "screen", "select", "selected", "selection", "site", "square", "toggle", "ui", "undetermined", "ux", "web", "website" ] +}, { + "name" : "outlined_flag", + "tags" : [ "country", "flag", "goal", "mark", "nation", "outlined", "report", "start" ] +}, { + "name" : "price_change", + "tags" : [ "arrows", "bill", "card", "cash", "change", "coin", "commerce", "cost", "credit", "currency", "dollars", "down", "finance", "money", "online", "pay", "payment", "price", "shopping", "symbol", "up" ] +}, { + "name" : "mark_email_read", + "tags" : [ "approve", "check", "complete", "done", "email", "envelop", "letter", "mail", "mark", "message", "note", "ok", "read", "select", "send", "sent", "tick", "yes" ] +}, { + "name" : "library_add", + "tags" : [ "+", "add", "collection", "layers", "library", "multiple", "music", "new", "plus", "stacked", "symbol", "video" ] +}, { + "name" : "pageview", + "tags" : [ "doc", "document", "find", "glass", "magnifying", "page", "paper", "search", "view" ] +}, { + "name" : "tv", + "tags" : [ "device", "display", "monitor", "screen", "screencast", "stream", "television", "tv", "video", "wireless" ] +}, { + "name" : "inbox", + "tags" : [ "archive", "email", "inbox", "incoming", "mail", "message" ] +}, { + "name" : "adjust", + "tags" : [ "adjust", "alter", "center", "circle", "circles", "dot", "fix", "image", "move", "target" ] +}, { + "name" : "3d_rotation", + "tags" : [ "3", "3d", "D", "alphabet", "arrow", "arrows", "av", "camera", "character", "digit", "font", "letter", "number", "rotation", "symbol", "text", "type", "vr" ] +}, { + "name" : "battery_charging_full", + "tags" : [ "battery", "bolt", "cell", "charge", "charging", "full", "lightening", "mobile", "power", "thunderbolt" ] +}, { + "name" : "chair", + "tags" : [ "chair", "comfort", "couch", "decoration", "furniture", "home", "house", "living", "lounging", "loveseat", "room", "seat", "seating", "sofa" ] +}, { + "name" : "directions_bike", + "tags" : [ "bicycle", "bike", "direction", "directions", "human", "maps", "person", "public", "route", "transportation" ] +}, { + "name" : "mic_off", + "tags" : [ "audio", "disabled", "enabled", "hear", "hearing", "mic", "microphone", "noise", "off", "on", "record", "recording", "slash", "sound", "voice" ] +}, { + "name" : "local_police", + "tags" : [ "911", "badge", "law", "local", "officer", "police", "protect", "protection", "security", "shield" ] +}, { + "name" : "fastfood", + "tags" : [ "drink", "fastfood", "food", "hamburger", "maps", "meal", "places" ] +}, { + "name" : "tungsten", + "tags" : [ "electricity", "indoor", "lamp", "light", "lightbulb", "setting", "tungsten" ] +}, { + "name" : "mood", + "tags" : [ "emoji", "emotions", "expressions", "face", "feelings", "glad", "happiness", "happy", "like", "mood", "person", "pleased", "smile", "smiling", "social", "survey" ] +}, { + "name" : "pause_circle", + "tags" : [ "circle", "control", "controls", "media", "music", "pause", "video" ] +}, { + "name" : "upgrade", + "tags" : [ "arrow", "export", "instal", "line", "replace", "up", "update", "upgrade" ] +}, { + "name" : "recommend", + "tags" : [ "approved", "circle", "confirm", "favorite", "gesture", "hand", "like", "reaction", "recommend", "social", "support", "thumbs", "up", "well" ] +}, { + "name" : "directions_car_filled", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "filled", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "fmd_good", + "tags" : [ "destination", "direction", "fmd", "good", "location", "maps", "pin", "place", "stop" ] +}, { + "name" : "integration_instructions", + "tags" : [ "brackets", "clipboard", "code", "css", "develop", "developer", "doc", "document", "engineer", "engineering clipboard", "html", "instructions", "integration", "platform" ] +}, { + "name" : "format_bold", + "tags" : [ "B", "alphabet", "bold", "character", "doc", "edit", "editing", "editor", "font", "format", "letter", "sheet", "spreadsheet", "styles", "symbol", "text", "type", "writing" ] +}, { + "name" : "people_outline", + "tags" : [ "accounts", "committee", "face", "family", "friends", "humans", "network", "outline", "people", "persons", "profiles", "social", "team", "users" ] +}, { + "name" : "trending_down", + "tags" : [ "analytics", "arrow", "data", "diagram", "down", "graph", "infographic", "measure", "metrics", "movement", "rate", "rating", "statistics", "tracking", "trending" ] +}, { + "name" : "change_history", + "tags" : [ "change", "history", "shape", "triangle" ] +}, { + "name" : "female", + "tags" : [ "female", "gender", "girl", "lady", "social", "symbol", "woman", "women" ] +}, { + "name" : "link_off", + "tags" : [ "attached", "chain", "clip", "connection", "disabled", "enabled", "link", "linked", "links", "multimedia", "off", "on", "slash", "url" ] +}, { + "name" : "text_fields", + "tags" : [ "T", "add", "alphabet", "character", "field", "fields", "font", "input", "letter", "symbol", "text", "type" ] +}, { + "name" : "swipe", + "tags" : [ "arrow", "arrows", "fingers", "gesture", "hand", "hands", "swipe", "touch" ] +}, { + "name" : "reviews", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "message", "rate", "rating", "recommendation", "reviews", "speech" ] +}, { + "name" : "home_repair_service", + "tags" : [ "box", "equipment", "fix", "home", "kit", "mechanic", "repair", "repairing", "service", "tool", "toolbox", "tools", "workshop" ] +}, { + "name" : "subscriptions", + "tags" : [ "enroll", "list", "media", "order", "play", "signup", "subscribe", "subscriptions" ] +}, { + "name" : "video_call", + "tags" : [ "+", "add", "call", "camera", "chat", "conference", "film", "filming", "hardware", "image", "motion", "new", "picture", "plus", "symbol", "video", "videography" ] +}, { + "name" : "zoom_out_map", + "tags" : [ "arrow", "arrows", "destination", "location", "maps", "move", "out", "place", "stop", "zoom" ] +}, { + "name" : "straighten", + "tags" : [ "length", "measure", "measurement", "ruler", "size", "straighten" ] +}, { + "name" : "arrow_drop_down_circle", + "tags" : [ "app", "application", "arrow", "circle", "components", "direction", "down", "drop", "interface", "navigation", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "bed", + "tags" : [ "bed", "bedroom", "double", "full", "furniture", "home", "hotel", "house", "king", "night", "pillows", "queen", "rest", "room", "size", "sleep" ] +}, { + "name" : "drive_eta", + "tags" : [ "automobile", "car", "cars", "destination", "direction", "drive", "estimate", "eta", "maps", "public", "transportation", "travel", "trip", "vehicle" ] +}, { + "name" : "class", + "tags" : [ "archive", "book", "bookmark", "class", "favorite", "label", "library", "read", "reading", "remember", "ribbon", "save", "tag" ] +}, { + "name" : "drafts", + "tags" : [ "document", "draft", "drafts", "email", "file", "letter", "mail", "message", "read" ] +}, { + "name" : "ballot", + "tags" : [ "ballot", "bullet", "election", "list", "point", "poll", "vote" ] +}, { + "name" : "volume_mute", + "tags" : [ "audio", "control", "music", "mute", "sound", "speaker", "tv", "volume" ] +}, { + "name" : "table_rows", + "tags" : [ "grid", "layout", "lines", "rows", "stacked", "table" ] +}, { + "name" : "accessible", + "tags" : [ "accessibility", "accessible", "body", "handicap", "help", "human", "people", "person", "wheelchair" ] +}, { + "name" : "stop_circle", + "tags" : [ "circle", "control", "controls", "music", "pause", "play", "square", "stop", "video" ] +}, { + "name" : "family_restroom", + "tags" : [ "bathroom", "child", "children", "family", "father", "kids", "mother", "parents", "restroom", "wc" ] +}, { + "name" : "title", + "tags" : [ "T", "alphabet", "character", "font", "header", "letter", "subject", "symbol", "text", "title", "type" ] +}, { + "name" : "biotech", + "tags" : [ "biotech", "chemistry", "laboratory", "microscope", "research", "science", "technology" ] +}, { + "name" : "insert_emoticon", + "tags" : [ "account", "emoji", "emoticon", "face", "happy", "human", "insert", "people", "person", "profile", "sentiment", "smile", "user" ] +}, { + "name" : "g_translate", + "tags" : [ "emblem", "g", "google", "language", "logo", "mark", "speaking", "speech", "translate", "translator", "words" ] +}, { + "name" : "last_page", + "tags" : [ "app", "application", "arrow", "chevron", "components", "end", "forward", "interface", "last", "page", "right", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "publish", + "tags" : [ "arrow", "cloud", "file", "import", "publish", "up", "upload" ] +}, { + "name" : "repeat", + "tags" : [ "arrow", "arrows", "control", "controls", "media", "music", "repeat", "video" ] +}, { + "name" : "checklist_rtl", + "tags" : [ "align", "alignment", "approve", "check", "checklist", "complete", "doc", "done", "edit", "editing", "editor", "format", "list", "mark", "notes", "ok", "rtl", "select", "sheet", "spreadsheet", "text", "tick", "type", "validate", "verified", "writing", "yes" ] +}, { + "name" : "wifi_off", + "tags" : [ "connection", "data", "disabled", "enabled", "internet", "network", "off", "offline", "on", "scan", "service", "signal", "slash", "wifi", "wireless" ] +}, { + "name" : "settings_accessibility", + "tags" : [ "accessibility", "body", "details", "human", "information", "people", "person", "personal", "preferences", "profile", "settings", "user" ] +}, { + "name" : "percent", + "tags" : [ "math", "number", "percent", "symbol" ] +}, { + "name" : "insert_photo", + "tags" : [ "image", "insert", "landscape", "mountain", "mountains", "photo", "photography", "picture" ] +}, { + "name" : "hotel", + "tags" : [ "body", "hotel", "human", "people", "person", "sleep", "stay", "travel", "trip" ] +}, { + "name" : "cleaning_services", + "tags" : [ "clean", "cleaning", "dust", "services", "sweep" ] +}, { + "name" : "downloading", + "tags" : [ "arrow", "circle", "down", "download", "downloading", "downloads", "install", "pending", "progress", "upload" ] +}, { + "name" : "expand", + "tags" : [ "arrow", "arrows", "compress", "enlarge", "expand", "grow", "move", "push", "together" ] +}, { + "name" : "local_phone", + "tags" : [ "booth", "call", "communication", "phone", "telecommunication" ] +}, { + "name" : "offline_bolt", + "tags" : [ "bolt", "circle", "electric", "fast", "lightning", "offline", "thunderbolt" ] +}, { + "name" : "auto_graph", + "tags" : [ "analytics", "auto", "chart", "data", "diagram", "graph", "infographic", "line", "measure", "metrics", "stars", "statistics", "tracking" ] +}, { + "name" : "local_grocery_store", + "tags" : [ "grocery", "market", "shop", "store" ] +}, { + "name" : "photo_library", + "tags" : [ "album", "image", "library", "mountain", "mountains", "photo", "photography", "picture" ] +}, { + "name" : "miscellaneous_services", + "tags" : [ ] +}, { + "name" : "note_alt", + "tags" : [ "alt", "clipboard", "document", "file", "memo", "note", "page", "paper", "writing" ] +}, { + "name" : "settings_backup_restore", + "tags" : [ "arrow", "back", "backup", "backwards", "refresh", "restore", "reverse", "rotate", "settings" ] +}, { + "name" : "production_quantity_limits", + "tags" : [ "!", "alert", "attention", "bill", "card", "cart", "cash", "caution", "coin", "commerce", "credit", "currency", "danger", "dollars", "error", "exclamation", "important", "limits", "mark", "money", "notification", "online", "pay", "payment", "production", "quantity", "shopping", "symbol", "warning" ] +}, { + "name" : "person_off", + "tags" : [ "account", "avatar", "disabled", "enabled", "face", "human", "off", "on", "people", "person", "profile", "slash", "user" ] +}, { + "name" : "report_gmailerrorred", + "tags" : [ "!", "alert", "attention", "caution", "danger", "error", "exclamation", "gmail", "gmailerrorred", "important", "mark", "notification", "octagon", "report", "symbol", "warning" ] +}, { + "name" : "camera", + "tags" : [ "aperture", "camera", "lens", "photo", "photography", "picture", "shutter" ] +}, { + "name" : "recycling", + "tags" : [ "bio", "eco", "green", "loop", "recyclable", "recycle", "recycling", "rotate", "sustainability", "sustainable", "trash" ] +}, { + "name" : "male", + "tags" : [ "boy", "gender", "male", "man", "social", "symbol" ] +}, { + "name" : "not_interested", + "tags" : [ "cancel", "close", "dislike", "exit", "interested", "no", "not", "off", "quit", "remove", "stop", "x" ] +}, { + "name" : "event_busy", + "tags" : [ "busy", "calendar", "cancel", "close", "date", "event", "exit", "no", "remove", "schedule", "stop", "time", "unavailable", "x" ] +}, { + "name" : "arrow_circle_left", + "tags" : [ "arrow", "circle", "direction", "left", "navigation" ] +}, { + "name" : "shuffle", + "tags" : [ "arrow", "arrows", "control", "controls", "music", "random", "shuffle", "video" ] +}, { + "name" : "aspect_ratio", + "tags" : [ "aspect", "expand", "image", "ratio", "resize", "scale", "size", "square" ] +}, { + "name" : "other_houses", + "tags" : [ "architecture", "cottage", "estate", "home", "house", "houses", "maps", "other", "place", "real", "residence", "residential", "stay", "traveling" ] +}, { + "name" : "model_training", + "tags" : [ "arrow", "bulb", "idea", "inprogress", "light", "load", "loading", "model", "refresh", "renew", "restore", "reverse", "rotate", "training" ] +}, { + "name" : "unfold_less", + "tags" : [ "arrow", "arrows", "chevron", "collapse", "direction", "expand", "expandable", "inward", "less", "list", "navigation", "unfold", "up" ] +}, { + "name" : "insert_chart_outlined", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "insert", "measure", "metrics", "outlined", "statistics", "tracking" ] +}, { + "name" : "donut_large", + "tags" : [ "analytics", "chart", "data", "diagram", "donut", "graph", "infographic", "inprogress", "large", "measure", "metrics", "pie", "statistics", "tracking" ] +}, { + "name" : "view_column", + "tags" : [ "column", "design", "format", "grid", "layout", "vertical", "view", "website" ] +}, { + "name" : "segment", + "tags" : [ "alignment", "fonts", "format", "lines", "list", "paragraph", "part", "piece", "rule", "rules", "segment", "style", "text" ] +}, { + "name" : "checkroom", + "tags" : [ "checkroom", "closet", "clothes", "coat check", "hanger" ] +}, { + "name" : "mode", + "tags" : [ "compose", "create", "draft", "draw", "edit", "mode", "pen", "pencil", "write" ] +}, { + "name" : "portrait", + "tags" : [ "account", "face", "human", "people", "person", "photo", "picture", "portrait", "profile", "user" ] +}, { + "name" : "camera_alt", + "tags" : [ "alt", "camera", "image", "photo", "photography", "picture" ] +}, { + "name" : "keyboard_double_arrow_left", + "tags" : [ "arrow", "arrows", "direction", "double", "left", "multiple", "navigation" ] +}, { + "name" : "delete_sweep", + "tags" : [ "bin", "can", "delete", "garbage", "remove", "sweep", "trash" ] +}, { + "name" : "hub", + "tags" : [ "center", "connection", "core", "focal point", "hub", "network", "nucleus", "topology" ] +}, { + "name" : "audiotrack", + "tags" : [ "audio", "audiotrack", "key", "music", "note", "sound", "track" ] +}, { + "name" : "calendar_view_month", + "tags" : [ "calendar", "date", "day", "event", "format", "grid", "layout", "month", "schedule", "today", "view" ] +}, { + "name" : "draw", + "tags" : [ "compose", "create", "design", "draft", "draw", "edit", "editing", "input", "pen", "pencil", "write", "writing" ] +}, { + "name" : "navigation", + "tags" : [ "destination", "direction", "location", "maps", "navigation", "pin", "place", "point", "stop" ] +}, { + "name" : "folder_shared", + "tags" : [ "account", "collaboration", "data", "doc", "document", "drive", "face", "file", "folder", "human", "people", "person", "profile", "share", "shared", "sheet", "slide", "storage", "team", "user" ] +}, { + "name" : "read_more", + "tags" : [ "arrow", "more", "read", "text" ] +}, { + "name" : "stacked_bar_chart", + "tags" : [ "analytics", "bar", "chart-chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "stacked", "statistics", "tracking" ] +}, { + "name" : "mode_comment", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "message", "mode comment", "speech" ] +}, { + "name" : "schedule_send", + "tags" : [ "calendar", "clock", "date", "email", "letter", "mail", "remember", "schedule", "send", "share", "time" ] +}, { + "name" : "bluetooth", + "tags" : [ "bluetooth", "cast", "connect", "connection", "device", "paring", "streaming", "symbol", "wireless" ] +}, { + "name" : "graphic_eq", + "tags" : [ "audio", "eq", "equalizer", "graphic", "music", "recording", "sound", "voice" ] +}, { + "name" : "markunread", + "tags" : [ "email", "envelop", "letter", "mail", "markunread", "message", "send", "unread" ] +}, { + "name" : "alarm_on", + "tags" : [ "alarm", "alert", "bell", "clock", "disabled", "duration", "enabled", "notification", "off", "on", "slash", "time", "timer", "watch" ] +}, { + "name" : "local_gas_station", + "tags" : [ "auto", "car", "gas", "local", "oil", "station", "vehicle" ] +}, { + "name" : "person_add_alt_1", + "tags" : [ ] +}, { + "name" : "maximize", + "tags" : [ "app", "application", "components", "design", "interface", "line", "maximize", "screen", "shape", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "bookmark_add", + "tags" : [ "+", "add", "bookmark", "favorite", "plus", "remember", "ribbon", "save", "symbol" ] +}, { + "name" : "dvr", + "tags" : [ "Android", "OS", "audio", "chrome", "computer", "desktop", "device", "display", "dvr", "electronic", "hardware", "iOS", "list", "mac", "monitor", "record", "recorder", "screen", "tv", "video", "web", "window" ] +}, { + "name" : "do_not_disturb_on", + "tags" : [ "cancel", "close", "denied", "deny", "disabled", "disturb", "do", "enabled", "off", "on", "remove", "silence", "slash", "stop" ] +}, { + "name" : "train", + "tags" : [ "automobile", "car", "cars", "direction", "maps", "public", "rail", "subway", "train", "transportation", "vehicle" ] +}, { + "name" : "person_pin_circle", + "tags" : [ "account", "circle", "destination", "direction", "face", "human", "location", "maps", "people", "person", "pin", "place", "profile", "stop", "user" ] +}, { + "name" : "square_foot", + "tags" : [ "construction", "feet", "foot", "inches", "length", "measurement", "ruler", "school", "set", "square", "tools" ] +}, { + "name" : "more_time", + "tags" : [ "+", "add", "clock", "date", "more", "new", "plus", "schedule", "symbol", "time" ] +}, { + "name" : "document_scanner", + "tags" : [ "article", "data", "doc", "document", "drive", "file", "folder", "folders", "notes", "page", "paper", "scan", "scanner", "sheet", "slide", "text", "writing" ] +}, { + "name" : "thumbs_up_down", + "tags" : [ "dislike", "down", "favorite", "fingers", "gesture", "hands", "like", "rate", "rating", "thumbs", "up" ] +}, { + "name" : "settings_ethernet", + "tags" : [ "arrows", "computer", "connect", "connection", "connectivity", "dots", "ethernet", "internet", "network", "settings", "wifi" ] +}, { + "name" : "sort_by_alpha", + "tags" : [ "alphabet", "alphabetize", "az", "by alpha", "character", "font", "letter", "list", "order", "organize", "sort", "symbol", "text", "type" ] +}, { + "name" : "theaters", + "tags" : [ "film", "movie", "movies", "show", "showtimes", "theater", "theaters", "watch" ] +}, { + "name" : "cloud_done", + "tags" : [ "app", "application", "approve", "backup", "check", "cloud", "complete", "connection", "done", "drive", "files", "folders", "internet", "mark", "network", "ok", "select", "sky", "storage", "tick", "upload", "validate", "verified", "yes" ] +}, { + "name" : "local_parking", + "tags" : [ "alphabet", "auto", "car", "character", "font", "garage", "letter", "local", "park", "parking", "symbol", "text", "type", "vehicle" ] +}, { + "name" : "view_agenda", + "tags" : [ "agenda", "cards", "design", "format", "grid", "layout", "stacked", "view", "website" ] +}, { + "name" : "mark_email_unread", + "tags" : [ "check", "circle", "email", "envelop", "letter", "mail", "mark", "message", "note", "notification", "send", "unread" ] +}, { + "name" : "local_florist", + "tags" : [ "florist", "flower", "local", "shop" ] +}, { + "name" : "connect_without_contact", + "tags" : [ "communicating", "connect", "contact", "distance", "people", "signal", "social", "socialize", "without" ] +}, { + "name" : "thumb_down_off_alt", + "tags" : [ "disabled", "dislike", "down", "enabled", "favorite", "filled", "fingers", "gesture", "hand", "hands", "like", "off", "offline", "on", "rank", "ranking", "rate", "rating", "slash", "thumb" ] +}, { + "name" : "sentiment_neutral", + "tags" : [ "emotionless", "emotions", "expressions", "face", "feelings", "fine", "indifference", "mood", "neutral", "okay", "person", "sentiment", "survey" ] +}, { + "name" : "call_end", + "tags" : [ "call", "cell", "contact", "device", "end", "hardware", "mobile", "phone", "telephone" ] +}, { + "name" : "subdirectory_arrow_right", + "tags" : [ "arrow", "directory", "down", "navigation", "right", "sub", "subdirectory" ] +}, { + "name" : "diamond", + "tags" : [ "diamond", "fashion", "gems", "jewelry", "logo", "retail", "valuable", "valuables" ] +}, { + "name" : "podcasts", + "tags" : [ "broadcast", "casting", "network", "podcasts", "signal", "transmitting", "wireless" ] +}, { + "name" : "monitor_heart", + "tags" : [ "baseline", "device", "ecc", "ecg", "fitness", "health", "heart", "medical", "monitor", "track" ] +}, { + "name" : "all_inclusive", + "tags" : [ "all", "endless", "forever", "inclusive", "infinity", "loop", "mobius", "neverending", "strip", "sustainability", "sustainable" ] +}, { + "name" : "wc", + "tags" : [ "bathroom", "closet", "female", "male", "man", "restroom", "room", "wash", "water", "wc", "women" ] +}, { + "name" : "grass", + "tags" : [ "backyard", "fodder", "grass", "ground", "home", "lawn", "plant", "turf", "yard" ] +}, { + "name" : "important_devices", + "tags" : [ "Android", "OS", "desktop", "devices", "hardware", "iOS", "important", "mobile", "monitor", "phone", "star", "tablet", "web" ] +}, { + "name" : "back_hand", + "tags" : [ "back", "fingers", "gesture", "hand", "raised" ] +}, { + "name" : "hiking", + "tags" : [ "backpacking", "bag", "climbing", "duffle", "hiking", "mountain", "social", "sports", "stick", "trail", "travel", "walking" ] +}, { + "name" : "masks", + "tags" : [ "air", "cover", "covid", "face", "hospital", "masks", "medical", "pollution", "protection", "respirator", "sick", "social" ] +}, { + "name" : "waving_hand", + "tags" : [ "bye", "fingers", "gesture", "goodbye", "greetings", "hand", "hello", "palm", "wave", "waving" ] +}, { + "name" : "architecture", + "tags" : [ "architecture", "art", "compass", "design", "draw", "drawing", "engineering", "geometric", "tool" ] +}, { + "name" : "local_post_office", + "tags" : [ "delivery", "email", "envelop", "letter", "local", "mail", "message", "office", "package", "parcel", "post", "postal", "send", "stamp" ] +}, { + "name" : "functions", + "tags" : [ "average", "calculate", "count", "custom", "doc", "edit", "editing", "editor", "functions", "math", "sheet", "spreadsheet", "style", "sum", "text", "type", "writing" ] +}, { + "name" : "directions", + "tags" : [ "arrow", "directions", "maps", "right", "route", "sign", "traffic" ] +}, { + "name" : "money", + "tags" : [ "100", "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "digit", "dollars", "finance", "money", "number", "online", "pay", "payment", "price", "shopping", "symbol" ] +}, { + "name" : "unpublished", + "tags" : [ "approve", "check", "circle", "complete", "disabled", "done", "enabled", "mark", "off", "ok", "on", "select", "slash", "tick", "unpublished", "validate", "verified", "yes" ] +}, { + "name" : "notifications_off", + "tags" : [ "active", "alarm", "alert", "bell", "chime", "disabled", "enabled", "notifications", "notify", "off", "offline", "on", "reminder", "ring", "slash", "sound" ] +}, { + "name" : "airport_shuttle", + "tags" : [ "airport", "automobile", "car", "cars", "commercial", "delivery", "direction", "maps", "mini", "public", "shuttle", "transport", "transportation", "travel", "truck", "van", "vehicle" ] +}, { + "name" : "insert_link", + "tags" : [ "add", "attach", "clip", "file", "insert", "link", "mail", "media" ] +}, { + "name" : "thumb_down_alt", + "tags" : [ "bad", "decline", "disapprove", "dislike", "down", "feedback", "hate", "negative", "no", "reject", "social", "thumb", "veto", "vote" ] +}, { + "name" : "two_wheeler", + "tags" : [ "automobile", "bike", "car", "cars", "direction", "maps", "motorcycle", "public", "scooter", "sport", "transportation", "travel", "two wheeler", "vehicle" ] +}, { + "name" : "nightlight", + "tags" : [ "dark", "disturb", "mode", "moon", "night", "nightlight", "sleep" ] +}, { + "name" : "mic_none", + "tags" : [ "hear", "hearing", "mic", "microphone", "noise", "none", "record", "sound", "voice" ] +}, { + "name" : "keyboard_double_arrow_down", + "tags" : [ "arrow", "arrows", "direction", "double", "down", "multiple", "navigation" ] +}, { + "name" : "invert_colors", + "tags" : [ "colors", "drop", "droplet", "edit", "editing", "hue", "invert", "inverted", "palette", "tone", "water" ] +}, { + "name" : "clear_all", + "tags" : [ "all", "clear", "doc", "document", "format", "lines", "list" ] +}, { + "name" : "mouse", + "tags" : [ "click", "computer", "cursor", "device", "hardware", "mouse", "wireless" ] +}, { + "name" : "mode_edit_outline", + "tags" : [ "compose", "create", "draft", "draw", "edit", "mode", "outline", "pen", "pencil", "write" ] +}, { + "name" : "open_in_browser", + "tags" : [ "arrow", "browser", "in", "open", "site", "up", "web", "website", "window" ] +}, { + "name" : "insert_invitation", + "tags" : [ "calendar", "date", "day", "event", "insert", "invitation", "mark", "month", "range", "remember", "reminder", "today", "week" ] +}, { + "name" : "fast_rewind", + "tags" : [ "back", "control", "fast", "media", "music", "play", "rewind", "speed", "time", "tv", "video" ] +}, { + "name" : "opacity", + "tags" : [ "color", "drop", "droplet", "hue", "invert", "inverted", "opacity", "palette", "tone", "water" ] +}, { + "name" : "video_camera_front", + "tags" : [ "account", "camera", "face", "front", "human", "image", "people", "person", "photo", "photography", "picture", "profile", "user", "video" ] +}, { + "name" : "commute", + "tags" : [ "automobile", "car", "commute", "direction", "maps", "public", "train", "transportation", "trip", "vehicle" ] +}, { + "name" : "addchart", + "tags" : [ "+", "addchart", "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "new", "plus", "statistics", "symbol", "tracking" ] +}, { + "name" : "no_accounts", + "tags" : [ "account", "accounts", "avatar", "disabled", "enabled", "face", "human", "no", "off", "offline", "on", "people", "person", "profile", "slash", "thumbnail", "unavailable", "unidentifiable", "unknown", "user" ] +}, { + "name" : "coffee", + "tags" : [ "beverage", "coffee", "cup", "drink", "mug", "plate", "set", "tea" ] +}, { + "name" : "luggage", + "tags" : [ "airport", "bag", "baggage", "carry", "flight", "hotel", "luggage", "on", "suitcase", "travel", "trip" ] +}, { + "name" : "workspaces", + "tags" : [ "circles", "collaboration", "dot", "filled", "group", "outline", "space", "team", "work", "workspaces" ] +}, { + "name" : "child_care", + "tags" : [ "babies", "baby", "care", "child", "children", "face", "infant", "kids", "newborn", "toddler", "young" ] +}, { + "name" : "sports_score", + "tags" : [ "destination", "flag", "goal", "score", "sports" ] +}, { + "name" : "library_music", + "tags" : [ "add", "album", "collection", "library", "music", "song", "sounds" ] +}, { + "name" : "history_toggle_off", + "tags" : [ "clock", "date", "history", "off", "schedule", "time", "toggle" ] +}, { + "name" : "system_update_alt", + "tags" : [ "arrow", "down", "download", "export", "system", "update" ] +}, { + "name" : "access_time", + "tags" : [ ] +}, { + "name" : "rotate_right", + "tags" : [ "around", "arrow", "direction", "inprogress", "load", "loading refresh", "renew", "right", "rotate", "turn" ] +}, { + "name" : "color_lens", + "tags" : [ "art", "color", "lens", "paint", "pallet" ] +}, { + "name" : "grid_on", + "tags" : [ "collage", "disabled", "enabled", "grid", "image", "layout", "off", "on", "slash", "view" ] +}, { + "name" : "crop_free", + "tags" : [ "adjust", "adjustments", "crop", "edit", "editing", "focus", "frame", "free", "image", "photo", "photos", "settings", "size", "zoom" ] +}, { + "name" : "cloud_queue", + "tags" : [ "cloud", "connection", "internet", "network", "queue", "sky", "upload" ] +}, { + "name" : "keyboard_voice", + "tags" : [ "keyboard", "mic", "microphone", "noise", "record", "recorder", "speaker", "voice" ] +}, { + "name" : "format_align_left", + "tags" : [ "align", "alignment", "doc", "edit", "editing", "editor", "format", "left", "sheet", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "view_week", + "tags" : [ "bars", "columns", "design", "format", "grid", "layout", "view", "website", "week" ] +}, { + "name" : "real_estate_agent", + "tags" : [ "agent", "architecture", "broker", "estate", "hand", "home", "house", "loan", "mortgage", "property", "real", "residence", "residential", "sales", "social" ] +}, { + "name" : "horizontal_rule", + "tags" : [ "gmail", "horizontal", "line", "novitas", "rule" ] +}, { + "name" : "topic", + "tags" : [ "data", "doc", "document", "drive", "file", "folder", "sheet", "slide", "storage", "topic" ] +}, { + "name" : "shower", + "tags" : [ "bath", "bathroom", "closet", "home", "house", "place", "plumbing", "room", "shower", "sprinkler", "wash", "water", "wc" ] +}, { + "name" : "format_italic", + "tags" : [ "alphabet", "character", "doc", "edit", "editing", "editor", "font", "format", "italic", "letter", "sheet", "spreadsheet", "style", "symbol", "text", "type", "writing" ] +}, { + "name" : "traffic", + "tags" : [ "direction", "light", "maps", "signal", "street", "traffic" ] +}, { + "name" : "add_business", + "tags" : [ "+", "add", "bill", "building", "business", "card", "cash", "coin", "commerce", "company", "credit", "currency", "dollars", "market", "money", "new", "online", "pay", "payment", "plus", "shop", "shopping", "store", "storefront", "symbol" ] +}, { + "name" : "electrical_services", + "tags" : [ "charge", "cord", "electric", "electrical", "plug", "power", "services", "wire" ] +}, { + "name" : "timelapse", + "tags" : [ "duration", "motion", "photo", "time", "timelapse", "timer", "video" ] +}, { + "name" : "youtube_searched_for", + "tags" : [ "arrow", "back", "backwards", "find", "glass", "history", "inprogress", "load", "loading", "look", "magnify", "magnifying", "refresh", "renew", "restore", "reverse", "rotate", "search", "see", "youtube" ] +}, { + "name" : "front_hand", + "tags" : [ "fingers", "front", "gesture", "hand", "hello", "palm", "stop" ] +}, { + "name" : "yard", + "tags" : [ "backyard", "flower", "garden", "home", "house", "nature", "pettle", "plants", "yard" ] +}, { + "name" : "tour", + "tags" : [ "destination", "flag", "places", "tour", "travel", "visit" ] +}, { + "name" : "factory", + "tags" : [ "factory", "industry", "manufacturing", "warehouse" ] +}, { + "name" : "developer_board", + "tags" : [ "board", "chip", "computer", "developer", "development", "hardware", "microchip", "processor" ] +}, { + "name" : "more", + "tags" : [ "3", "archive", "bookmark", "dots", "etc", "favorite", "indent", "label", "more", "remember", "save", "stamp", "sticker", "tab", "tag", "three" ] +}, { + "name" : "star_purple500", + "tags" : [ "500", "best", "bookmark", "favorite", "highlight", "purple", "ranking", "rate", "rating", "save", "star", "toggle" ] +}, { + "name" : "format_color_fill", + "tags" : [ "bucket", "color", "doc", "edit", "editing", "editor", "fill", "format", "paint", "sheet", "spreadsheet", "style", "text", "type", "writing" ] +}, { + "name" : "beach_access", + "tags" : [ "access", "beach", "places", "summer", "sunny", "umbrella" ] +}, { + "name" : "local_bar", + "tags" : [ "alcohol", "bar", "bottle", "club", "cocktail", "drink", "food", "liquor", "local", "wine" ] +}, { + "name" : "add_link", + "tags" : [ "add", "attach", "clip", "link", "new", "plus", "symbol" ] +}, { + "name" : "landscape", + "tags" : [ "image", "landscape", "mountain", "mountains", "nature", "photo", "photography", "picture" ] +}, { + "name" : "slideshow", + "tags" : [ "movie", "photos", "play", "slideshow", "square", "video", "view" ] +}, { + "name" : "stream", + "tags" : [ "cast", "connected", "feed", "live", "network", "signal", "stream", "wireless" ] +}, { + "name" : "videocam_off", + "tags" : [ "cam", "camera", "conference", "disabled", "enabled", "film", "filming", "hardware", "image", "motion", "off", "offline", "on", "picture", "slash", "video", "videography" ] +}, { + "name" : "directions_boat", + "tags" : [ "automobile", "boat", "car", "cars", "direction", "directions", "ferry", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "download_done", + "tags" : [ "arrow", "arrows", "check", "done", "down", "download", "downloads", "drive", "install", "installed", "ok", "tick", "upload" ] +}, { + "name" : "volume_down", + "tags" : [ "audio", "control", "down", "music", "sound", "speaker", "tv", "volume" ] +}, { + "name" : "alt_route", + "tags" : [ "alt", "alternate", "alternative", "arrows", "direction", "maps", "navigation", "options", "other", "route", "routes", "split", "symbol" ] +}, { + "name" : "mood_bad", + "tags" : [ "bad", "disappointment", "dislike", "emoji", "emotions", "expressions", "face", "feelings", "mood", "person", "rating", "social", "survey", "unhappiness", "unhappy", "unpleased", "unsmile", "unsmiling" ] +}, { + "name" : "vaccines", + "tags" : [ "aid", "covid", "doctor", "drug", "emergency", "hospital", "immunity", "injection", "medical", "medication", "medicine", "needle", "pharmacy", "sick", "syringe", "vaccination", "vaccines", "vial" ] +}, { + "name" : "dialpad", + "tags" : [ "buttons", "call", "contact", "device", "dial", "dialpad", "dots", "mobile", "numbers", "pad", "phone" ] +}, { + "name" : "route", + "tags" : [ "directions", "maps", "path", "route", "sign", "traffic" ] +}, { + "name" : "hide_source", + "tags" : [ "circle", "disabled", "enabled", "hide", "off", "offline", "on", "shape", "slash", "source" ] +}, { + "name" : "bookmark_added", + "tags" : [ "added", "approve", "bookmark", "check", "complete", "done", "favorite", "mark", "ok", "remember", "save", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "mark_as_unread", + "tags" : [ "as", "envelop", "letter", "mail", "mark", "post", "postal", "read", "receive", "send", "unread" ] +}, { + "name" : "plagiarism", + "tags" : [ "doc", "document", "find", "glass", "look", "magnifying", "page", "paper", "plagiarism", "search", "see" ] +}, { + "name" : "turned_in", + "tags" : [ "archive", "bookmark", "favorite", "in", "label", "library", "read", "reading", "remember", "ribbon", "save", "tag", "turned" ] +}, { + "name" : "settings_input_antenna", + "tags" : [ "airplay", "antenna", "arrows", "cast", "computer", "connect", "connection", "connectivity", "dots", "input", "internet", "network", "screencast", "settings", "stream", "wifi", "wireless" ] +}, { + "name" : "shop", + "tags" : [ "bag", "bill", "buy", "card", "cart", "cash", "coin", "commerce", "credit", "currency", "dollars", "google", "money", "online", "pay", "payment", "play", "shop", "shopping", "store" ] +}, { + "name" : "pool", + "tags" : [ "athlete", "athletic", "beach", "body", "entertainment", "exercise", "hobby", "human", "ocean", "people", "person", "places", "pool", "sea", "sports", "swim", "swimming", "water" ] +}, { + "name" : "search_off", + "tags" : [ "cancel", "close", "disabled", "enabled", "find", "glass", "look", "magnify", "magnifying", "off", "on", "search", "see", "slash", "stop", "x" ] +}, { + "name" : "approval", + "tags" : [ "apply", "approval", "approvals", "approve", "certificate", "certification", "disapproval", "drive", "file", "impression", "ink", "mark", "postage", "stamp" ] +}, { + "name" : "currency_rupee", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "price", "rupee", "shopping", "symbol" ] +}, { + "name" : "power", + "tags" : [ "charge", "cord", "electric", "electrical", "outlet", "plug", "power" ] +}, { + "name" : "collections_bookmark", + "tags" : [ "album", "archive", "bookmark", "collections", "favorite", "gallery", "label", "library", "read", "reading", "remember", "ribbon", "save", "stack", "tag" ] +}, { + "name" : "not_started", + "tags" : [ "circle", "media", "not", "pause", "play", "started", "video" ] +}, { + "name" : "pedal_bike", + "tags" : [ "automobile", "bicycle", "bike", "car", "cars", "direction", "human", "maps", "pedal", "public", "route", "scooter", "transportation", "vehicle", "vespa" ] +}, { + "name" : "water", + "tags" : [ "aqua", "beach", "lake", "ocean", "river", "water", "waves", "weather" ] +}, { + "name" : "router", + "tags" : [ "box", "cable", "connection", "hardware", "internet", "network", "router", "signal", "wifi" ] +}, { + "name" : "flight_land", + "tags" : [ "airport", "arrival", "arriving", "flight", "fly", "land", "landing", "plane", "transportation", "travel" ] +}, { + "name" : "shopping_cart_checkout", + "tags" : [ "arrow", "cart", "cash", "checkout", "coin", "commerce", "currency", "dollars", "money", "online", "pay", "payment", "right", "shopping" ] +}, { + "name" : "agriculture", + "tags" : [ "agriculture", "automobile", "car", "cars", "cultivation", "farm", "harvest", "maps", "tractor", "transport", "travel", "truck", "vehicle" ] +}, { + "name" : "where_to_vote", + "tags" : [ "approve", "ballot", "check", "complete", "destination", "direction", "done", "location", "maps", "mark", "ok", "pin", "place", "poll", "select", "stop", "tick", "to", "validate election", "verified", "vote", "where", "yes" ] +}, { + "name" : "beenhere", + "tags" : [ "approve", "archive", "beenhere", "bookmark", "check", "complete", "done", "favorite", "label", "library", "mark", "ok", "read", "reading", "remember", "ribbon", "save", "select", "tag", "tick", "validate", "verified", "yes" ] +}, { + "name" : "add_comment", + "tags" : [ "+", "add", "bubble", "chat", "comment", "communicate", "feedback", "message", "new", "plus", "speech", "symbol" ] +}, { + "name" : "copy_all", + "tags" : [ "all", "content", "copy", "cut", "doc", "document", "file", "multiple", "page", "paper", "past" ] +}, { + "name" : "dynamic_feed", + "tags" : [ "'mail_outline'", "'markunread'. Keep 'mail' and remove others.", "Duplicate of 'email'" ] +}, { + "name" : "videogame_asset", + "tags" : [ "asset", "console", "controller", "device", "game", "gamepad", "gaming", "playstation", "video" ] +}, { + "name" : "move_to_inbox", + "tags" : [ "archive", "arrow", "down", "email", "envelop", "inbox", "incoming", "letter", "mail", "message", "move to", "send" ] +}, { + "name" : "crop_square", + "tags" : [ "adjust", "adjustments", "app", "application", "area", "components", "crop", "design", "edit", "editing", "expand", "frame", "image", "images", "interface", "open", "photo", "photos", "rectangle", "screen", "settings", "shape", "shapes", "site", "size", "square", "ui", "ux", "web", "website", "window" ] +}, { + "name" : "recent_actors", + "tags" : [ "account", "actors", "avatar", "card", "cards", "carousel", "face", "human", "layers", "list", "people", "person", "profile", "recent", "thumbnail", "user" ] +}, { + "name" : "emoji_nature", + "tags" : [ "animal", "bee", "bug", "daisy", "emoji", "flower", "insect", "ladybug", "nature", "petals", "spring", "summer" ] +}, { + "name" : "cloud_off", + "tags" : [ "app", "application", "backup", "cloud", "connection", "disabled", "drive", "enabled", "files", "folders", "internet", "network", "off", "offline", "on", "sky", "slash", "storage", "upload" ] +}, { + "name" : "panorama_fish_eye", + "tags" : [ "angle", "circle", "eye", "fish", "image", "panorama", "photo", "photography", "picture", "wide" ] +}, { + "name" : "lens", + "tags" : [ "circle", "full", "geometry", "lens", "moon" ] +}, { + "name" : "360", + "tags" : [ "360", "arrow", "av", "camera", "direction", "rotate", "rotation", "vr" ] +}, { + "name" : "share_location", + "tags" : [ "destination", "direction", "gps", "location", "maps", "pin", "place", "share", "stop", "tracking" ] +}, { + "name" : "assignment_late", + "tags" : [ "!", "alert", "assignment", "attention", "caution", "clipboard", "danger", "doc", "document", "error", "exclamation", "important", "late", "mark", "notification", "symbol", "warning" ] +}, { + "name" : "switch_account", + "tags" : [ "account", "choices", "face", "human", "multiple", "options", "people", "person", "profile", "social", "switch", "user" ] +}, { + "name" : "looks_two", + "tags" : [ "2", "digit", "looks", "numbers", "square", "symbol" ] +}, { + "name" : "do_not_disturb", + "tags" : [ "cancel", "close", "denied", "deny", "disturb", "do", "remove", "silence", "stop" ] +}, { + "name" : "donut_small", + "tags" : [ "analytics", "chart", "data", "diagram", "donut", "graph", "infographic", "inprogress", "measure", "metrics", "pie", "small", "statistics", "tracking" ] +}, { + "name" : "saved_search", + "tags" : [ "find", "glass", "important", "look", "magnify", "magnifying", "marked", "saved", "search", "see", "star" ] +}, { + "name" : "contactless", + "tags" : [ "bluetooth", "cash", "connect", "connection", "connectivity", "contact", "contactless", "credit", "device", "finance", "pay", "payment", "signal", "transaction", "wifi", "wireless" ] +}, { + "name" : "highlight_alt", + "tags" : [ "alt", "arrow", "box", "click", "cursor", "draw", "focus", "highlight", "pointer", "select", "selection", "target" ] +}, { + "name" : "assignment_return", + "tags" : [ "arrow", "assignment", "back", "clipboard", "doc", "document", "left", "retun" ] +}, { + "name" : "kitchen", + "tags" : [ "appliance", "cold", "food", "fridge", "home", "house", "ice", "kitchen", "places", "refrigerator", "storage" ] +}, { + "name" : "warehouse", + "tags" : [ "garage", "industry", "manufacturing", "storage", "warehouse" ] +}, { + "name" : "liquor", + "tags" : [ "alcohol", "bar", "bottle", "club", "cocktail", "drink", "food", "liquor", "party", "store", "wine" ] +}, { + "name" : "gpp_maybe", + "tags" : [ "!", "alert", "attention", "caution", "certified", "danger", "error", "exclamation", "gpp", "important", "mark", "maybe", "notification", "privacy", "private", "protect", "protection", "security", "shield", "sim", "symbol", "verified", "warning" ] +}, { + "name" : "settings_input_component", + "tags" : [ "audio", "av", "cable", "cables", "component", "connect", "connection", "connectivity", "input", "internet", "plug", "points", "settings", "video", "wifi" ] +}, { + "name" : "waves", + "tags" : [ "beach", "lake", "ocean", "pool", "river", "sea", "swim", "water", "wave", "waves" ] +}, { + "name" : "hotel_class", + "tags" : [ "achievement", "bookmark", "class", "favorite", "highlight", "hotel", "important", "marked", "rank", "ranking", "rate", "rating", "reward", "save", "saved", "shape", "special", "star" ] +}, { + "name" : "web_asset", + "tags" : [ "-website", "app", "application desktop", "asset", "browser", "design", "download", "image", "interface", "internet", "layout", "screen", "site", "ui", "ux", "video", "web", "website", "window", "www" ] +}, { + "name" : "view_carousel", + "tags" : [ "cards", "carousel", "design", "format", "grid", "layout", "view", "website" ] +}, { + "name" : "anchor", + "tags" : [ "anchor", "google", "logo" ] +}, { + "name" : "filter_alt_off", + "tags" : [ "alt", "disabled", "edit", "filter", "funnel", "off", "offline", "options", "refine", "sift", "slash" ] +}, { + "name" : "balance", + "tags" : [ "balance", "equal", "equity", "impartiality", "justice", "parity", "stability. equilibrium", "steadiness", "symmetry" ] +}, { + "name" : "view_quilt", + "tags" : [ "design", "format", "grid", "layout", "quilt", "square", "squares", "stacked", "view", "website" ] +}, { + "name" : "library_add_check", + "tags" : [ "add", "approve", "check", "collection", "complete", "done", "layers", "library", "mark", "multiple", "music", "ok", "select", "stacked", "tick", "validate", "verified", "video", "yes" ] +}, { + "name" : "queue_music", + "tags" : [ "collection", "list", "music", "playlist", "queue" ] +}, { + "name" : "casino", + "tags" : [ "casino", "dice", "dots", "entertainment", "gamble", "gambling", "game", "games", "luck", "places" ] +}, { + "name" : "hearing", + "tags" : [ "accessibility", "accessible", "aid", "ear", "handicap", "hearing", "help", "impaired", "listen", "sound", "volume" ] +}, { + "name" : "phone_enabled", + "tags" : [ "call", "cell", "contact", "device", "enabled", "hardware", "mobile", "phone", "telephone" ] +}, { + "name" : "linear_scale", + "tags" : [ "app", "application", "components", "design", "interface", "layout", "linear", "measure", "menu", "scale", "screen", "site", "slider", "ui", "ux", "web", "website", "window" ] +}, { + "name" : "holiday_village", + "tags" : [ "architecture", "beach", "camping", "cottage", "estate", "holiday", "home", "house", "lake", "lodge", "maps", "place", "real", "residence", "residential", "stay", "traveling", "vacation", "village" ] +}, { + "name" : "turned_in_not", + "tags" : [ "archive", "bookmark", "favorite", "in", "label", "library", "not", "read", "reading", "remember", "ribbon", "save", "tag", "turned" ] +}, { + "name" : "sync_problem", + "tags" : [ "!", "360", "alert", "around", "arrow", "arrows", "attention", "caution", "danger", "direction", "error", "exclamation", "important", "inprogress", "load", "loading refresh", "mark", "notification", "problem", "renew", "rotate", "symbol", "sync", "turn", "warning" ] +}, { + "name" : "start", + "tags" : [ "arrow", "keyboard", "next", "right", "start" ] +}, { + "name" : "all_inbox", + "tags" : [ "Inbox", "all", "delivered", "delivery", "email", "mail", "message", "send" ] +}, { + "name" : "mediation", + "tags" : [ "arrow", "arrows", "direction", "dots", "mediation", "right" ] +}, { + "name" : "edit_off", + "tags" : [ "compose", "create", "disabled", "draft", "edit", "editing", "enabled", "input", "new", "off", "offline", "on", "pen", "pencil", "slash", "write", "writing" ] +}, { + "name" : "emergency", + "tags" : [ "asterisk", "clinic", "emergency", "health", "hospital", "maps", "medical", "symbol" ] +}, { + "name" : "settings_remote", + "tags" : [ "bluetooth", "connection", "connectivity", "device", "remote", "settings", "signal", "wifi", "wireless" ] +}, { + "name" : "drive_file_move", + "tags" : [ "arrow", "data", "doc", "document", "drive", "file", "folder", "move", "right", "sheet", "slide", "storage" ] +}, { + "name" : "fit_screen", + "tags" : [ "enlarge", "fit", "format", "layout", "reduce", "scale", "screen", "size" ] +}, { + "name" : "hourglass_full", + "tags" : [ "countdown", "full", "hourglass", "loading", "minutes", "time", "wait", "waiting" ] +}, { + "name" : "nights_stay", + "tags" : [ "climate", "cloud", "crescent", "dark", "lunar", "mode", "moon", "nights", "phases", "silence", "silent", "sky", "stay", "time", "weather" ] +}, { + "name" : "pause_circle_filled", + "tags" : [ "circle", "control", "controls", "filled", "media", "music", "pause", "video" ] +}, { + "name" : "catching_pokemon", + "tags" : [ "catching", "go", "pokemon", "pokestop", "travel" ] +}, { + "name" : "king_bed", + "tags" : [ "bed", "bedroom", "double", "furniture", "home", "hotel", "house", "king", "night", "pillows", "queen", "rest", "room", "sleep" ] +}, { + "name" : "flaky", + "tags" : [ "approve", "check", "close", "complete", "contrast", "done", "exit", "flaky", "mark", "no", "ok", "options", "select", "stop", "tick", "verified", "x", "yes" ] +}, { + "name" : "format_size", + "tags" : [ "alphabet", "character", "color", "doc", "edit", "editing", "editor", "fill", "font", "format", "letter", "paint", "sheet", "size", "spreadsheet", "style", "symbol", "text", "type", "writing" ] +}, { + "name" : "interests", + "tags" : [ "circle", "heart", "interests", "shapes", "social", "square", "triangle" ] +}, { + "name" : "stacked_line_chart", + "tags" : [ "analytics", "chart", "data", "diagram", "graph", "infographic", "line", "measure", "metrics", "stacked", "statistics", "tracking" ] +}, { + "name" : "unarchive", + "tags" : [ "archive", "arrow", "inbox", "mail", "store", "unarchive", "undo", "up" ] +}, { + "name" : "subtitles", + "tags" : [ "accessible", "caption", "cc", "character", "closed", "decoder", "language", "media", "movies", "subtitle", "subtitles", "tv" ] +}, { + "name" : "toll", + "tags" : [ "bill", "booth", "car", "card", "cash", "coin", "commerce", "credit", "currency", "dollars", "highway", "money", "online", "pay", "payment", "ticket", "toll" ] +}, { + "name" : "keyboard_double_arrow_up", + "tags" : [ "arrow", "arrows", "direction", "double", "multiple", "navigation", "up" ] +}, { + "name" : "time_to_leave", + "tags" : [ "automobile", "car", "cars", "destination", "direction", "drive", "estimate", "eta", "maps", "public", "transportation", "travel", "trip", "vehicle" ] +}, { + "name" : "location_searching", + "tags" : [ "destination", "direction", "location", "maps", "pin", "place", "pointer", "searching", "stop", "tracking" ] +}, { + "name" : "cable", + "tags" : [ "cable", "connect", "connection", "device", "electronics", "usb", "wire" ] +}, { + "name" : "moving", + "tags" : [ "arrow", "direction", "moving", "navigation", "travel", "up" ] +}, { + "name" : "remove_shopping_cart", + "tags" : [ "card", "cart", "cash", "checkout", "coin", "commerce", "credit", "currency", "disabled", "dollars", "enabled", "off", "on", "online", "pay", "payment", "remove", "shopping", "slash", "tick" ] +}, { + "name" : "cast_for_education", + "tags" : [ "Android", "OS", "airplay", "cast", "chrome", "connect", "desktop", "device", "display", "education", "for", "hardware", "iOS", "learning", "lessons teaching", "mac", "monitor", "screen", "screencast", "streaming", "television", "tv", "web", "window", "wireless" ] +}, { + "name" : "fiber_new", + "tags" : [ "alphabet", "character", "fiber", "font", "letter", "network", "new", "symbol", "text", "type" ] +}, { + "name" : "format_underlined", + "tags" : [ "alphabet", "character", "doc", "edit", "editing", "editor", "font", "format", "letter", "line", "sheet", "spreadsheet", "style", "symbol", "text", "type", "under", "underlined", "writing" ] +}, { + "name" : "pause_circle_outline", + "tags" : [ "circle", "control", "controls", "media", "music", "outline", "pause", "video" ] +}, { + "name" : "mark_chat_unread", + "tags" : [ "bubble", "chat", "circle", "comment", "communicate", "mark", "message", "notification", "speech", "unread" ] +}, { + "name" : "insert_comment", + "tags" : [ "add", "bubble", "chat", "comment", "feedback", "insert", "message" ] +}, { + "name" : "cameraswitch", + "tags" : [ "arrows", "camera", "cameraswitch", "flip", "rotate", "swap", "switch", "view" ] +}, { + "name" : "rocket", + "tags" : [ "rocket", "space", "spaceship" ] +}, { + "name" : "local_airport", + "tags" : [ "air", "airplane", "airport", "flight", "plane", "transportation", "travel", "trip" ] +}, { + "name" : "lock_clock", + "tags" : [ "clock", "date", "lock", "locked", "password", "privacy", "private", "protection", "safety", "schedule", "secure", "security", "time" ] +}, { + "name" : "device_hub", + "tags" : [ "Android", "OS", "circle", "computer", "desktop", "device", "hardware", "hub", "iOS", "laptop", "mobile", "monitor", "phone", "square", "tablet", "triangle", "watch", "wearable", "web" ] +}, { + "name" : "filter_vintage", + "tags" : [ "edit", "editing", "effect", "filter", "flower", "image", "images", "photography", "picture", "pictures", "vintage" ] +}, { + "name" : "sailing", + "tags" : [ "boat", "entertainment", "fishing", "hobby", "ocean", "sailboat", "sailing", "sea", "social sports", "travel", "water" ] +}, { + "name" : "roofing", + "tags" : [ "architecture", "building", "chimney", "construction", "estate", "home", "house", "real", "residence", "residential", "roof", "roofing", "service", "shelter" ] +}, { + "name" : "settings_voice", + "tags" : [ "mic", "microphone", "record", "recorder", "settings", "speaker", "voice" ] +}, { + "name" : "swap_horizontal_circle", + "tags" : [ "arrow", "arrows", "back", "circle", "forward", "horizontal", "swap" ] +}, { + "name" : "add_location_alt", + "tags" : [ "+", "add", "alt", "destination", "direction", "location", "maps", "new", "pin", "place", "plus", "stop", "symbol" ] +}, { + "name" : "room_service", + "tags" : [ "alert", "bell", "delivery", "hotel", "notify", "room", "service" ] +}, { + "name" : "content_paste_search", + "tags" : [ "clipboard", "content", "doc", "document", "file", "find", "paste", "search", "trace", "track" ] +}, { + "name" : "reply_all", + "tags" : [ "all", "arrow", "backward", "group", "left", "mail", "message", "multiple", "reply", "send", "share" ] +}, { + "name" : "compost", + "tags" : [ "bio", "compost", "compostable", "decomposable", "decompose", "eco", "green", "leaf", "leafs", "nature", "organic", "plant", "recycle", "sustainability", "sustainable" ] +}, { + "name" : "bubble_chart", + "tags" : [ "analytics", "bar", "bars", "bubble", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "compare", + "tags" : [ "adjust", "adjustment", "compare", "edit", "editing", "edits", "enhance", "fix", "image", "images", "photo", "photography", "photos", "scan", "settings" ] +}, { + "name" : "money_off", + "tags" : [ "bill", "card", "cart", "cash", "coin", "commerce", "credit", "currency", "disabled", "dollars", "enabled", "money", "off", "on", "online", "pay", "payment", "shopping", "slash", "symbol" ] +}, { + "name" : "file_open", + "tags" : [ "arrow", "doc", "document", "drive", "file", "left", "open", "page", "paper" ] +}, { + "name" : "filter_drama", + "tags" : [ "cloud", "drama", "edit", "editing", "effect", "filter", "image", "photo", "photography", "picture", "sky camera" ] +}, { + "name" : "shortcut", + "tags" : [ "arrow", "direction", "forward", "right", "shortcut" ] +}, { + "name" : "view_sidebar", + "tags" : [ "design", "format", "grid", "layout", "sidebar", "view", "web" ] +}, { + "name" : "looks_3", + "tags" : [ "3", "digit", "looks", "numbers", "square", "symbol" ] +}, { + "name" : "note", + "tags" : [ "bookmark", "message", "note", "paper" ] +}, { + "name" : "vertical_align_bottom", + "tags" : [ "align", "alignment", "arrow", "bottom", "doc", "down", "edit", "editing", "editor", "sheet", "spreadsheet", "text", "type", "vertical", "writing" ] +}, { + "name" : "3p", + "tags" : [ "3", "3p", "account", "avatar", "bubble", "chat", "comment", "communicate", "face", "human", "message", "party", "people", "person", "profile", "speech", "user" ] +}, { + "name" : "online_prediction", + "tags" : [ "bulb", "connection", "idea", "light", "network", "online", "prediction", "signal", "wireless" ] +}, { + "name" : "cancel_presentation", + "tags" : [ "cancel", "close", "device", "exit", "no", "present", "presentation", "quit", "remove", "screen", "slide", "stop", "website", "window", "x" ] +}, { + "name" : "select_all", + "tags" : [ "all", "select", "selection", "square", "tool" ] +}, { + "name" : "event_seat", + "tags" : [ "assign", "assigned", "chair", "event", "furniture", "reservation", "row", "seat", "section", "sit" ] +}, { + "name" : "window", + "tags" : [ "close", "glass", "grid", "home", "house", "interior", "layout", "outside", "window" ] +}, { + "name" : "av_timer", + "tags" : [ "av", "clock", "countdown", "duration", "minutes", "seconds", "time", "timer", "watch" ] +}, { + "name" : "album", + "tags" : [ "album", "artist", "audio", "bvb", "cd", "computer", "data", "disk", "file", "music", "record", "sound", "storage", "track" ] +}, { + "name" : "local_dining", + "tags" : [ "dining", "eat", "food", "fork", "knife", "local", "meal", "restaurant", "spoon" ] +}, { + "name" : "headset", + "tags" : [ "accessory", "audio", "device", "ear", "earphone", "headphones", "headset", "listen", "music", "sound" ] +}, { + "name" : "maps_ugc", + "tags" : [ "+", "add", "bubble", "comment", "communicate", "feedback", "maps", "message", "new", "plus", "speech", "symbol", "ugc" ] +}, { + "name" : "airplane_ticket", + "tags" : [ "airplane", "airport", "boarding", "flight", "fly", "maps", "pass", "ticket", "transportation", "travel" ] +}, { + "name" : "vertical_split", + "tags" : [ "design", "format", "grid", "layout", "paragraph", "split", "text", "vertical", "website", "writing" ] +}, { + "name" : "sports_basketball", + "tags" : [ "athlete", "athletic", "ball", "basketball", "entertainment", "exercise", "game", "hobby", "social", "sports" ] +}, { + "name" : "next_plan", + "tags" : [ "arrow", "circle", "next", "plan", "right" ] +}, { + "name" : "drive_folder_upload", + "tags" : [ "arrow", "data", "doc", "document", "drive", "file", "folder", "sheet", "slide", "storage", "up", "upload" ] +}, { + "name" : "pregnant_woman", + "tags" : [ "baby", "birth", "body", "female", "human", "lady", "maternity", "mom", "mother", "people", "person", "pregnant", "women" ] +}, { + "name" : "wallpaper", + "tags" : [ "background", "image", "landscape", "photo", "photography", "picture", "wallpaper" ] +}, { + "name" : "image_search", + "tags" : [ "find", "glass", "image", "landscape", "look", "magnify", "magnifying", "mountain", "mountains", "photo", "photography", "picture", "search", "see" ] +}, { + "name" : "data_exploration", + "tags" : [ "analytics", "arrow", "chart", "data", "diagram", "exploration", "graph", "infographic", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "device_thermostat", + "tags" : [ "celsius", "device", "fahrenheit", "meter", "temp", "temperature", "thermometer", "thermostat" ] +}, { + "name" : "healing", + "tags" : [ "bandage", "edit", "editing", "emergency", "fix", "healing", "hospital", "image", "medicine" ] +}, { + "name" : "laptop_mac", + "tags" : [ "Android", "OS", "chrome", "device", "display", "hardware", "iOS", "laptop", "mac", "monitor", "screen", "web", "window" ] +}, { + "name" : "height", + "tags" : [ "arrow", "color", "doc", "down", "edit", "editing", "editor", "fill", "format", "height", "paint", "sheet", "spreadsheet", "style", "text", "type", "up", "writing" ] +}, { + "name" : "restore_from_trash", + "tags" : [ "arrow", "back", "backwards", "clock", "date", "history", "refresh", "renew", "restore", "reverse", "rotate", "schedule", "time", "turn" ] +}, { + "name" : "radar", + "tags" : [ "detect", "military", "near", "network", "position", "radar", "scan" ] +}, { + "name" : "auto_awesome_motion", + "tags" : [ "adjust", "auto", "awesome", "collage", "edit", "editing", "enhance", "image", "motion", "photo", "video" ] +}, { + "name" : "file_download_done", + "tags" : [ "arrow", "arrows", "check", "done", "down", "download", "downloads", "drive", "file", "install", "installed", "tick", "upload" ] +}, { + "name" : "notification_add", + "tags" : [ "+", "active", "add", "alarm", "alert", "bell", "chime", "notification", "notifications", "notify", "plus", "reminder", "ring", "sound", "symbol" ] +}, { + "name" : "call_made", + "tags" : [ "arrow", "call", "device", "made", "mobile" ] +}, { + "name" : "camera_enhance", + "tags" : [ "ai", "artificial", "automatic", "automation", "camera", "custom", "enhance", "genai", "important", "intelligence", "lens", "magic", "photo", "photography", "picture", "quality", "smart", "spark", "sparkle", "special", "star" ] +}, { + "name" : "rotate_left", + "tags" : [ "around", "arrow", "direction", "inprogress", "left", "load", "loading refresh", "renew", "rotate", "turn" ] +}, { + "name" : "local_taxi", + "tags" : [ "automobile", "cab", "call", "car", "cars", "direction", "local", "lyft", "maps", "public", "taxi", "transportation", "uber", "vehicle", "yellow" ] +}, { + "name" : "star_border_purple500", + "tags" : [ "500", "best", "bookmark", "border", "favorite", "highlight", "outline", "purple", "ranking", "rate", "rating", "save", "star", "toggle" ] +}, { + "name" : "gpp_bad", + "tags" : [ "bad", "cancel", "certified", "close", "error", "exit", "gpp", "no", "privacy", "private", "protect", "protection", "remove", "security", "shield", "sim", "stop", "verified", "x" ] +}, { + "name" : "playlist_play", + "tags" : [ "arrow", "collection", "list", "music", "play", "playlist" ] +}, { + "name" : "cast", + "tags" : [ "Android", "OS", "airplay", "cast", "chrome", "connect", "desktop", "device", "display", "hardware", "iOS", "mac", "monitor", "screen", "screencast", "streaming", "television", "tv", "web", "window", "wireless" ] +}, { + "name" : "vertical_align_top", + "tags" : [ "align", "alignment", "arrow", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "text", "top", "type", "up", "vertical", "writing" ] +}, { + "name" : "ramen_dining", + "tags" : [ "breakfast", "dining", "dinner", "drink", "fastfood", "food", "lunch", "meal", "noodles", "ramen", "restaurant" ] +}, { + "name" : "data_usage", + "tags" : [ "analytics", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "statistics", "tracking", "usage" ] +}, { + "name" : "markunread_mailbox", + "tags" : [ "deliver", "envelop", "letter", "mail", "mailbox", "markunread", "post", "postal", "postbox", "receive", "send", "unread" ] +}, { + "name" : "terminal", + "tags" : [ "application", "code", "emulator", "program", "software", "terminal" ] +}, { + "name" : "screen_share", + "tags" : [ "Android", "OS", "arrow", "cast", "chrome", "device", "display", "hardware", "iOS", "laptop", "mac", "mirror", "monitor", "screen", "share", "steam", "streaming", "web", "window" ] +}, { + "name" : "center_focus_strong", + "tags" : [ "camera", "center", "focus", "image", "lens", "photo", "photography", "strong", "zoom" ] +}, { + "name" : "queue", + "tags" : [ "add", "collection", "layers", "list", "multiple", "music", "playlist", "queue", "stack", "stream", "video" ] +}, { + "name" : "games", + "tags" : [ "adjust", "arrow", "arrows", "control", "controller", "direction", "games", "gaming", "left", "move", "right" ] +}, { + "name" : "low_priority", + "tags" : [ "arrange", "arrow", "backward", "bottom", "list", "low", "move", "order", "priority" ] +}, { + "name" : "dynamic_form", + "tags" : [ "bolt", "code", "dynamic", "electric", "fast", "form", "lightning", "lists", "questionnaire", "thunderbolt" ] +}, { + "name" : "tab", + "tags" : [ "browser", "computer", "document", "documents", "folder", "internet", "tab", "tabs", "web", "website", "window", "windows" ] +}, { + "name" : "lock_reset", + "tags" : [ "around", "inprogress", "load", "loading refresh", "lock", "locked", "password", "privacy", "private", "protection", "renew", "rotate", "safety", "secure", "security", "turn" ] +}, { + "name" : "room_preferences", + "tags" : [ "building", "door", "doorway", "entrance", "gear", "home", "house", "interior", "office", "open", "preferences", "room", "settings" ] +}, { + "name" : "crop", + "tags" : [ "adjust", "adjustments", "area", "crop", "edit", "editing", "frame", "image", "images", "photo", "photos", "rectangle", "settings", "size", "square" ] +}, { + "name" : "monitor_weight", + "tags" : [ "body", "device", "diet", "health", "monitor", "scale", "smart", "weight" ] +}, { + "name" : "trip_origin", + "tags" : [ "circle", "departure", "origin", "trip" ] +}, { + "name" : "calendar_view_week", + "tags" : [ "calendar", "date", "day", "event", "format", "grid", "layout", "month", "schedule", "today", "view", "week" ] +}, { + "name" : "signal_wifi_4_bar", + "tags" : [ "4", "bar", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "signal", "wifi", "wireless" ] +}, { + "name" : "blur_on", + "tags" : [ "blur", "disabled", "dots", "edit", "editing", "effect", "enabled", "enhance", "filter", "off", "on", "slash" ] +}, { + "name" : "view_stream", + "tags" : [ "design", "format", "grid", "layout", "lines", "list", "stacked", "stream", "view", "website" ] +}, { + "name" : "radio", + "tags" : [ "antenna", "audio", "device", "frequency", "hardware", "listen", "media", "music", "player", "radio", "signal", "tune" ] +}, { + "name" : "hail", + "tags" : [ "body", "hail", "human", "people", "person", "pick", "public", "stop", "taxi", "transportation" ] +}, { + "name" : "do_disturb_on", + "tags" : [ "cancel", "close", "denied", "deny", "disabled", "disturb", "do", "enabled", "off", "on", "remove", "silence", "slash", "stop" ] +}, { + "name" : "sensor_door", + "tags" : [ "alarm", "security", "security system" ] +}, { + "name" : "wb_incandescent", + "tags" : [ "balance", "bright", "edit", "editing", "incandescent", "light", "lighting", "setting", "settings", "white", "wp" ] +}, { + "name" : "local_drink", + "tags" : [ "cup", "drink", "drop", "droplet", "liquid", "local", "park", "water" ] +}, { + "name" : "accessible_forward", + "tags" : [ "accessibility", "accessible", "body", "forward", "handicap", "help", "human", "people", "person", "wheelchair" ] +}, { + "name" : "replay_circle_filled", + "tags" : [ "arrow", "arrows", "circle", "control", "controls", "filled", "music", "refresh", "renew", "repeat", "replay", "video" ] +}, { + "name" : "local_printshop", + "tags" : [ "draft", "fax", "ink", "local", "machine", "office", "paper", "print", "printer", "printshop", "send" ] +}, { + "name" : "local_laundry_service", + "tags" : [ "cleaning", "clothing", "dry", "dryer", "hotel", "laundry", "local", "service", "washer" ] +}, { + "name" : "vpn_lock", + "tags" : [ "earth", "globe", "lock", "locked", "network", "password", "privacy", "private", "protection", "safety", "secure", "security", "virtual", "vpn", "world" ] +}, { + "name" : "schema", + "tags" : [ "analytics", "chart", "data", "diagram", "flow", "graph", "infographic", "measure", "metrics", "schema", "statistics", "tracking" ] +}, { + "name" : "request_page", + "tags" : [ "data", "doc", "document", "drive", "file", "folder", "folders", "page", "paper", "request", "sheet", "slide", "writing" ] +}, { + "name" : "token", + "tags" : [ "badge", "hexagon", "mark", "shield", "sign", "symbol" ] +}, { + "name" : "branding_watermark", + "tags" : [ "branding", "components", "copyright", "design", "emblem", "format", "identity", "interface", "layout", "logo", "screen", "site", "stamp", "ui", "ux", "watermark", "web", "website", "window" ] +}, { + "name" : "theater_comedy", + "tags" : [ "broadway", "comedy", "event", "movie", "musical", "places", "show", "standup", "theater", "tour", "watch" ] +}, { + "name" : "text_format", + "tags" : [ "alphabet", "character", "font", "format", "letter", "square A", "style", "symbol", "text", "type" ] +}, { + "name" : "directions_bus_filled", + "tags" : [ "automobile", "bus", "car", "cars", "direction", "directions", "filled", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "remove_done", + "tags" : [ "approve", "check", "complete", "disabled", "done", "enabled", "finished", "mark", "multiple", "off", "ok", "on", "remove", "select", "slash", "tick", "yes" ] +}, { + "name" : "sports_bar", + "tags" : [ "alcohol", "bar", "beer", "drink", "liquor", "pint", "places", "pub", "sports" ] +}, { + "name" : "watch", + "tags" : [ "Android", "OS", "ar", "clock", "gadget", "iOS", "time", "vr", "watch", "wearables", "web", "wristwatch" ] +}, { + "name" : "add_to_drive", + "tags" : [ "add", "app", "application", "backup", "cloud", "drive", "files", "folders", "gdrive", "google", "recovery", "shortcut", "storage" ] +}, { + "name" : "format_align_center", + "tags" : [ "align", "alignment", "center", "doc", "edit", "editing", "editor", "format", "sheet", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "settings_power", + "tags" : [ "info", "information", "off", "on", "power", "save", "settings", "shutdown" ] +}, { + "name" : "local_pizza", + "tags" : [ "drink", "fastfood", "food", "local", "meal", "pizza" ] +}, { + "name" : "add_alert", + "tags" : [ "+", "active", "add", "alarm", "alert", "bell", "chime", "new", "notifications", "notify", "plus", "reminder", "ring", "sound", "symbol" ] +}, { + "name" : "smart_button", + "tags" : [ "action", "ai", "artificial", "automatic", "automation", "button", "components", "composer", "custom", "function", "genai", "intelligence", "interface", "magic", "site", "smart", "spark", "sparkle", "special", "star", "stars", "ui", "ux", "web", "website" ] +}, { + "name" : "flare", + "tags" : [ "bright", "edit", "editing", "effect", "flare", "image", "images", "light", "photography", "picture", "pictures", "sun" ] +}, { + "name" : "developer_mode", + "tags" : [ "Android", "OS", "bracket", "cell", "code", "developer", "development", "device", "engineer", "hardware", "iOS", "mobile", "mode", "phone", "tablet" ] +}, { + "name" : "call_split", + "tags" : [ "arrow", "call", "device", "mobile", "split" ] +}, { + "name" : "free_breakfast", + "tags" : [ "beverage", "breakfast", "cafe", "coffee", "cup", "drink", "free", "mug", "tea" ] +}, { + "name" : "auto_delete", + "tags" : [ "auto", "bin", "can", "clock", "date", "delete", "garbage", "remove", "schedule", "time", "trash" ] +}, { + "name" : "sports_kabaddi", + "tags" : [ "athlete", "athletic", "body", "combat", "entertainment", "exercise", "fighting", "game", "hobby", "human", "kabaddi", "people", "person", "social", "sports", "wrestle", "wrestling" ] +}, { + "name" : "face_retouching_natural", + "tags" : [ "ai", "artificial", "automatic", "automation", "custom", "edit", "editing", "effect", "emoji", "emotion", "face", "faces", "genai", "image", "intelligence", "magic", "natural", "photo", "photography", "retouch", "retouching", "settings", "smart", "spark", "sparkle", "star", "tag" ] +}, { + "name" : "not_listed_location", + "tags" : [ "?", "assistance", "destination", "direction", "help", "info", "information", "listed", "location", "maps", "not", "pin", "place", "punctuation", "question mark", "stop", "support", "symbol" ] +}, { + "name" : "wb_cloudy", + "tags" : [ "balance", "cloud", "cloudy", "edit", "editing", "white", "wp" ] +}, { + "name" : "sports", + "tags" : [ "athlete", "athletic", "blowing", "coach", "entertainment", "exercise", "game", "hobby", "instrument", "referee", "social", "sound", "sports", "warning", "whistle" ] +}, { + "name" : "emoji_symbols", + "tags" : [ "ampersand", "character", "emoji", "hieroglyph", "music", "note", "percent", "sign", "symbols" ] +}, { + "name" : "bathtub", + "tags" : [ "bath", "bathing", "bathroom", "bathtub", "home", "hotel", "human", "person", "shower", "travel", "tub" ] +}, { + "name" : "forward_10", + "tags" : [ "10", "arrow", "control", "controls", "digit", "fast", "forward", "music", "number", "play", "seconds", "symbol", "video" ] +}, { + "name" : "tablet_mac", + "tags" : [ "Android", "OS", "device", "hardware", "iOS", "ipad", "mobile", "tablet mac", "web" ] +}, { + "name" : "mode_night", + "tags" : [ "dark", "disturb", "lunar", "mode", "moon", "night", "sleep" ] +}, { + "name" : "broken_image", + "tags" : [ "broken", "corrupt", "error", "image", "landscape", "mountain", "mountains", "photo", "photography", "picture", "torn" ] +}, { + "name" : "escalator_warning", + "tags" : [ "body", "child", "escalator", "human", "kid", "parent", "people", "person", "warning" ] +}, { + "name" : "assistant", + "tags" : [ "ai", "artificial", "assistant", "automatic", "automation", "bubble", "chat", "comment", "communicate", "custom", "feedback", "genai", "intelligence", "magic", "message", "recommendation", "smart", "spark", "sparkle", "speech", "star", "suggestion", "twinkle" ] +}, { + "name" : "cases", + "tags" : [ "bag", "baggage", "briefcase", "business", "case", "cases", "purse", "suitcase" ] +}, { + "name" : "wifi_tethering", + "tags" : [ "cell", "cellular", "connection", "data", "internet", "mobile", "network", "phone", "scan", "service", "signal", "speed", "tethering", "wifi", "wireless" ] +}, { + "name" : "reduce_capacity", + "tags" : [ "arrow", "body", "capacity", "covid", "decrease", "down", "human", "people", "person", "reduce", "social" ] +}, { + "name" : "colorize", + "tags" : [ "color", "colorize", "dropper", "extract", "eye", "picker", "tool" ] +}, { + "name" : "save_as", + "tags" : [ "compose", "create", "data", "disk", "document", "draft", "drive", "edit", "editing", "file", "floppy", "input", "multimedia", "pen", "pencil", "save", "storage", "write", "writing" ] +}, { + "name" : "card_travel", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "membership", "miles", "money", "online", "pay", "payment", "travel", "trip" ] +}, { + "name" : "emoji_food_beverage", + "tags" : [ "beverage", "coffee", "cup", "drink", "emoji", "mug", "plate", "set", "tea" ] +}, { + "name" : "font_download", + "tags" : [ "A", "alphabet", "character", "download", "font", "letter", "square", "symbol", "text", "type" ] +}, { + "name" : "outbox", + "tags" : [ "box", "mail", "outbox", "send", "sent" ] +}, { + "name" : "battery_std", + "tags" : [ "battery", "cell", "charge", "mobile", "plus", "power", "standard", "std" ] +}, { + "name" : "sick", + "tags" : [ "covid", "discomfort", "emotions", "expressions", "face", "feelings", "fever", "flu", "ill", "mood", "pain", "person", "sick", "survey", "upset" ] +}, { + "name" : "add_location", + "tags" : [ "+", "add", "destination", "direction", "location", "maps", "new", "pin", "place", "plus", "stop", "symbol" ] +}, { + "name" : "try", + "tags" : [ "bookmark", "bubble", "chat", "comment", "communicate", "favorite", "feedback", "highlight", "important", "marked", "message", "save", "saved", "shape", "special", "speech", "star", "try" ] +}, { + "name" : "discount", + "tags" : [ ] +}, { + "name" : "man", + "tags" : [ "boy", "gender", "male", "man", "social", "symbol" ] +}, { + "name" : "running_with_errors", + "tags" : [ "!", "alert", "attention", "caution", "danger", "duration", "error", "errors", "exclamation", "important", "mark", "notification", "process", "processing", "running", "symbol", "time", "warning", "with" ] +}, { + "name" : "diversity_3", + "tags" : [ "committee", "diverse", "diversity", "family", "friends", "group", "groups", "humans", "network", "people", "persons", "social", "team" ] +}, { + "name" : "filter_none", + "tags" : [ "filter", "multiple", "none", "square", "stack" ] +}, { + "name" : "cloud_sync", + "tags" : [ "app", "application", "around", "backup", "cloud", "connection", "drive", "files", "folders", "inprogress", "internet", "load", "loading refresh", "network", "renew", "rotate", "sky", "storage", "turn", "upload" ] +}, { + "name" : "bloodtype", + "tags" : [ "blood", "bloodtype", "donate", "droplet", "emergency", "hospital", "medicine", "negative", "positive", "type", "water" ] +}, { + "name" : "dinner_dining", + "tags" : [ "breakfast", "dining", "dinner", "food", "fork", "lunch", "meal", "restaurant", "spaghetti", "utensils" ] +}, { + "name" : "transfer_within_a_station", + "tags" : [ "a", "arrow", "arrows", "body", "direction", "human", "left", "maps", "people", "person", "public", "right", "route", "station", "stop", "transfer", "transportation", "vehicle", "walk", "within" ] +}, { + "name" : "weekend", + "tags" : [ "chair", "couch", "furniture", "home", "living", "lounge", "relax", "room", "weekend" ] +}, { + "name" : "child_friendly", + "tags" : [ "baby", "care", "carriage", "child", "children", "friendly", "infant", "kid", "newborn", "stroller", "toddler", "young" ] +}, { + "name" : "offline_pin", + "tags" : [ "approve", "check", "checkmark", "circle", "complete", "done", "mark", "offline", "ok", "pin", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "replay_10", + "tags" : [ "10", "arrow", "arrows", "control", "controls", "digit", "music", "number", "refresh", "renew", "repeat", "replay", "symbol", "ten", "video" ] +}, { + "name" : "brightness_4", + "tags" : [ "4", "brightness", "circle", "control", "crescent", "level", "moon", "screen", "sun" ] +}, { + "name" : "cruelty_free", + "tags" : [ "animal", "bunny", "cruelty", "eco", "free", "nature", "rabbit", "social", "sustainability", "sustainable", "testing" ] +}, { + "name" : "format_paint", + "tags" : [ "brush", "color", "doc", "edit", "editing", "editor", "fill", "format", "paint", "roller", "sheet", "spreadsheet", "style", "text", "type", "writing" ] +}, { + "name" : "filter_center_focus", + "tags" : [ "camera", "center", "dot", "edit", "filter", "focus", "image", "photo", "photography", "picture" ] +}, { + "name" : "area_chart", + "tags" : [ "analytics", "area", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "bakery_dining", + "tags" : [ "bakery", "bread", "breakfast", "brunch", "croissant", "dining", "food" ] +}, { + "name" : "emoji_transportation", + "tags" : [ "architecture", "automobile", "building", "car", "cars", "direction", "emoji", "estate", "maps", "place", "public", "real", "residence", "residential", "shelter", "transportation", "travel", "vehicle" ] +}, { + "name" : "folder_special", + "tags" : [ "bookmark", "data", "doc", "document", "drive", "favorite", "file", "folder", "highlight", "important", "marked", "save", "saved", "shape", "sheet", "slide", "special", "star", "storage" ] +}, { + "name" : "door_front", + "tags" : [ "closed", "door", "doorway", "entrance", "exit", "front", "home", "house", "way" ] +}, { + "name" : "calendar_view_day", + "tags" : [ "calendar", "date", "day", "event", "format", "grid", "layout", "month", "schedule", "today", "view", "week" ] +}, { + "name" : "legend_toggle", + "tags" : [ "analytics", "chart", "data", "diagram", "graph", "infographic", "legend", "measure", "metrics", "monitoring", "stackdriver", "statistics", "toggle", "tracking" ] +}, { + "name" : "light", + "tags" : [ "bulb", "ceiling", "hanging", "inside", "interior", "lamp", "light", "lighting", "pendent", "room" ] +}, { + "name" : "find_replace", + "tags" : [ "around", "arrows", "find", "glass", "inprogress", "load", "loading refresh", "look", "magnify", "magnifying", "renew", "replace", "rotate", "search", "see" ] +}, { + "name" : "crop_original", + "tags" : [ "adjust", "adjustments", "area", "crop", "edit", "editing", "frame", "image", "images", "original", "photo", "photos", "picture", "settings", "size" ] +}, { + "name" : "rowing", + "tags" : [ "activity", "boat", "body", "canoe", "human", "people", "person", "row", "rowing", "sport", "water" ] +}, { + "name" : "enhanced_encryption", + "tags" : [ "+", "add", "encryption", "enhanced", "lock", "locked", "new", "password", "plus", "privacy", "private", "protection", "safety", "secure", "security", "symbol" ] +}, { + "name" : "how_to_vote", + "tags" : [ "ballot", "election", "how", "poll", "to", "vote" ] +}, { + "name" : "chrome_reader_mode", + "tags" : [ "chrome", "mode", "read", "reader", "text" ] +}, { + "name" : "auto_fix_normal", + "tags" : [ "ai", "artificial", "auto", "automatic", "automation", "custom", "edit", "erase", "fix", "genai", "intelligence", "magic", "modify", "smart", "spark", "sparkle", "star", "wand" ] +}, { + "name" : "compress", + "tags" : [ "arrow", "arrows", "collide", "compress", "pressure", "push", "together" ] +}, { + "name" : "dehaze", + "tags" : [ "adjust", "dehaze", "edit", "editing", "enhance", "haze", "image", "lines", "photo", "photography", "remove" ] +}, { + "name" : "outlet", + "tags" : [ "connect", "connecter", "electricity", "outlet", "plug", "power" ] +}, { + "name" : "desktop_mac", + "tags" : [ "Android", "OS", "chrome", "desktop", "device", "display", "hardware", "iOS", "mac", "monitor", "screen", "web", "window" ] +}, { + "name" : "nature_people", + "tags" : [ "activity", "body", "forest", "human", "nature", "outdoor", "outside", "park", "people", "person", "tree", "wilderness" ] +}, { + "name" : "sports_tennis", + "tags" : [ "athlete", "athletic", "ball", "bat", "entertainment", "exercise", "game", "hobby", "racket", "social", "sports", "tennis" ] +}, { + "name" : "forest", + "tags" : [ "forest", "jungle", "nature", "plantation", "plants", "trees", "woodland" ] +}, { + "name" : "upcoming", + "tags" : [ "alarm", "calendar", "mail", "message", "notification", "upcoming" ] +}, { + "name" : "assignment_returned", + "tags" : [ "arrow", "assignment", "clipboard", "doc", "document", "down", "returned" ] +}, { + "name" : "cookie", + "tags" : [ "biscuit", "cookies", "data", "dessert", "wafer" ] +}, { + "name" : "fax", + "tags" : [ "fax", "machine", "office", "phone", "send" ] +}, { + "name" : "square", + "tags" : [ "draw", "four", "shape quadrangle", "sides", "square" ] +}, { + "name" : "density_medium", + "tags" : [ "density", "horizontal", "lines", "medium", "rule", "rules" ] +}, { + "name" : "terrain", + "tags" : [ "geography", "landscape", "mountain", "terrain" ] +}, { + "name" : "settings_brightness", + "tags" : [ "brightness", "dark", "filter", "light", "mode", "setting", "settings" ] +}, { + "name" : "attach_email", + "tags" : [ "attach", "attachment", "clip", "compose", "email", "envelop", "letter", "link", "mail", "message", "send" ] +}, { + "name" : "photo", + "tags" : [ "image", "mountain", "mountains", "photo", "photography", "picture" ] +}, { + "name" : "http", + "tags" : [ "alphabet", "character", "font", "http", "letter", "symbol", "text", "transfer", "type", "url", "website" ] +}, { + "name" : "garage", + "tags" : [ "automobile", "automotive", "car", "cars", "direction", "garage", "maps", "transportation", "travel", "vehicle" ] +}, { + "name" : "wine_bar", + "tags" : [ "alcohol", "bar", "cocktail", "cup", "drink", "glass", "liquor", "wine" ] +}, { + "name" : "multiple_stop", + "tags" : [ "arrows", "directions", "dots", "left", "maps", "multiple", "navigation", "right", "stop" ] +}, { + "name" : "format_color_text", + "tags" : [ "color", "doc", "edit", "editing", "editor", "fill", "format", "paint", "sheet", "spreadsheet", "style", "text", "type", "writing" ] +}, { + "name" : "gesture", + "tags" : [ "drawing", "finger", "gesture", "gestures", "hand", "motion" ] +}, { + "name" : "heart_broken", + "tags" : [ "break", "broken", "core", "crush", "health", "heart", "nucleus", "split" ] +}, { + "name" : "format_align_right", + "tags" : [ "align", "alignment", "doc", "edit", "editing", "editor", "format", "right", "sheet", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "transgender", + "tags" : [ "female", "gender", "lgbt", "male", "neutral", "social", "symbol", "transgender" ] +}, { + "name" : "alarm_add", + "tags" : [ "+", "add", "alarm", "alert", "bell", "clock", "countdown", "date", "new", "notification", "plus", "schedule", "symbol", "time" ] +}, { + "name" : "new_label", + "tags" : [ "+", "add", "archive", "bookmark", "favorite", "label", "library", "new", "plus", "read", "reading", "remember", "ribbon", "save", "symbol", "tag" ] +}, { + "name" : "south_east", + "tags" : [ "arrow", "directional", "down", "east", "maps", "navigation", "right", "south" ] +}, { + "name" : "backup_table", + "tags" : [ "backup", "drive", "files folders", "format", "layout", "stack", "storage", "table" ] +}, { + "name" : "unsubscribe", + "tags" : [ "cancel", "close", "email", "envelop", "letter", "mail", "message", "newsletter", "off", "remove", "send", "subscribe", "unsubscribe" ] +}, { + "name" : "flash_off", + "tags" : [ "bolt", "disabled", "electric", "enabled", "fast", "flash", "lightning", "off", "on", "slash", "thunderbolt" ] +}, { + "name" : "elderly", + "tags" : [ "body", "cane", "elderly", "human", "old", "people", "person", "senior" ] +}, { + "name" : "generating_tokens", + "tags" : [ "access", "ai", "api", "artificial", "automatic", "automation", "coin", "custom", "genai", "generating", "intelligence", "magic", "smart", "spark", "sparkle", "star", "tokens" ] +}, { + "name" : "spellcheck", + "tags" : [ "a", "alphabet", "approve", "character", "check", "font", "letter", "mark", "ok", "processor", "select", "spell", "spellcheck", "symbol", "text", "tick", "type", "word", "write", "yes" ] +}, { + "name" : "auto_awesome_mosaic", + "tags" : [ "adjust", "auto", "awesome", "collage", "edit", "editing", "enhance", "image", "mosaic", "photo" ] +}, { + "name" : "outdoor_grill", + "tags" : [ "barbecue", "bbq", "charcoal", "cooking", "grill", "home", "house", "outdoor", "outside" ] +}, { + "name" : "restore_page", + "tags" : [ "arrow", "data", "doc", "file", "page", "paper", "refresh", "restore", "rotate", "sheet", "storage" ] +}, { + "name" : "foundation", + "tags" : [ "architecture", "base", "basis", "building", "construction", "estate", "foundation", "home", "house", "real", "residential" ] +}, { + "name" : "credit_card_off", + "tags" : [ "card", "charge", "commerce", "cost", "credit", "disabled", "enabled", "finance", "money", "off", "online", "pay", "payment", "slash" ] +}, { + "name" : "scatter_plot", + "tags" : [ "analytics", "bar", "bars", "chart", "circles", "data", "diagram", "dot", "graph", "infographic", "measure", "metrics", "plot", "scatter", "statistics", "tracking" ] +}, { + "name" : "signal_cellular_4_bar", + "tags" : [ "4", "bar", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "signal", "speed", "wifi", "wireless" ] +}, { + "name" : "add_moderator", + "tags" : [ "+", "add", "certified", "moderator", "new", "plus", "privacy", "private", "protect", "protection", "security", "shield", "symbol", "verified" ] +}, { + "name" : "play_for_work", + "tags" : [ "arrow", "circle", "down", "google", "half", "play", "work" ] +}, { + "name" : "add_card", + "tags" : [ "+", "add", "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "new", "online", "pay", "payment", "plus", "price", "shopping", "symbol" ] +}, { + "name" : "app_settings_alt", + "tags" : [ "Android", "OS", "app", "applications", "cell", "device", "gear", "hardware", "iOS", "mobile", "phone", "setting", "settings", "tablet" ] +}, { + "name" : "keyboard_tab", + "tags" : [ "arrow", "keyboard", "left", "next", "right", "tab" ] +}, { + "name" : "wifi_protected_setup", + "tags" : [ "around", "arrow", "arrows", "protected", "rotate", "setup", "wifi" ] +}, { + "name" : "deck", + "tags" : [ "chairs", "deck", "home", "house", "outdoors", "outside", "patio", "social", "terrace", "umbrella", "yard" ] +}, { + "name" : "takeout_dining", + "tags" : [ "box", "container", "delivery", "dining", "food", "meal", "restaurant", "takeout" ] +}, { + "name" : "tag_faces", + "tags" : [ "emoji", "emotion", "faces", "happy", "satisfied", "smile", "tag" ] +}, { + "name" : "brightness_6", + "tags" : [ "6", "brightness", "circle", "control", "crescent", "level", "moon", "screen", "sun" ] +}, { + "name" : "woman", + "tags" : [ "female", "gender", "girl", "lady", "social", "symbol", "woman", "women" ] +}, { + "name" : "assistant_direction", + "tags" : [ "assistant", "destination", "direction", "location", "maps", "navigate", "navigation", "pin", "place", "right", "stop" ] +}, { + "name" : "brightness_5", + "tags" : [ "5", "brightness", "circle", "control", "crescent", "level", "moon", "screen", "sun" ] +}, { + "name" : "social_distance", + "tags" : [ "6", "apart", "body", "distance", "ft", "human", "people", "person", "social", "space" ] +}, { + "name" : "free_cancellation", + "tags" : [ "approve", "calendar", "cancel", "cancellation", "check", "complete", "date", "day", "done", "event", "exit", "free", "mark", "month", "no", "ok", "remove", "schedule", "select", "stop", "tick", "validate", "verified", "x", "yes" ] +}, { + "name" : "subdirectory_arrow_left", + "tags" : [ "arrow", "directory", "down", "left", "navigation", "sub", "subdirectory" ] +}, { + "name" : "laptop_chromebook", + "tags" : [ "Android", "OS", "chrome", "chromebook", "device", "display", "hardware", "iOS", "laptop", "mac chromebook", "monitor", "screen", "web", "window" ] +}, { + "name" : "format_list_numbered_rtl", + "tags" : [ "align", "alignment", "digit", "doc", "edit", "editing", "editor", "format", "list", "notes", "number", "numbered", "rtl", "sheet", "spreadsheet", "symbol", "text", "type", "writing" ] +}, { + "name" : "store_mall_directory", + "tags" : [ "directory", "mall", "store" ] +}, { + "name" : "settings_overscan", + "tags" : [ "arrows", "expand", "image", "photo", "picture", "scan", "settings" ] +}, { + "name" : "icecream", + "tags" : [ "cream", "dessert", "food", "ice", "icecream", "snack" ] +}, { + "name" : "details", + "tags" : [ "details", "edit", "editing", "enhance", "image", "photo", "photography", "sharpen", "triangle" ] +}, { + "name" : "add_reaction", + "tags" : [ "+", "add", "emoji", "emotions", "expressions", "face", "feelings", "glad", "happiness", "happy", "icon", "icons", "insert", "like", "mood", "new", "person", "pleased", "plus", "smile", "smiling", "social", "survey", "symbol" ] +}, { + "name" : "follow_the_signs", + "tags" : [ "arrow", "body", "directional", "follow", "human", "people", "person", "right", "signs", "social", "the" ] +}, { + "name" : "attribution", + "tags" : [ "attribute", "attribution", "body", "copyright", "copywriter", "human", "people", "person" ] +}, { + "name" : "food_bank", + "tags" : [ "architecture", "bank", "building", "charity", "eat", "estate", "food", "fork", "house", "knife", "meal", "place", "real", "residence", "residential", "shelter", "utensils" ] +}, { + "name" : "closed_caption", + "tags" : [ "accessible", "alphabet", "caption", "cc", "character", "closed", "decoder", "font", "language", "letter", "media", "movies", "subtitle", "subtitles", "symbol", "text", "tv", "type" ] +}, { + "name" : "gif", + "tags" : [ "alphabet", "animated", "animation", "bitmap", "character", "font", "format", "gif", "graphics", "interchange", "letter", "symbol", "text", "type" ] +}, { + "name" : "phonelink", + "tags" : [ "Android", "OS", "chrome", "computer", "connect", "desktop", "device", "hardware", "iOS", "link", "mac", "mobile", "phone", "phonelink", "sync", "tablet", "web", "windows" ] +}, { + "name" : "grain", + "tags" : [ "dots", "edit", "editing", "effect", "filter", "grain", "image", "images", "photography", "picture", "pictures" ] +}, { + "name" : "personal_injury", + "tags" : [ "accident", "aid", "arm", "bandage", "body", "broke", "cast", "fracture", "health", "human", "injury", "medical", "patient", "people", "person", "personal", "sling", "social" ] +}, { + "name" : "flip_camera_android", + "tags" : [ "android", "camera", "center", "edit", "editing", "flip", "image", "mobile", "orientation", "rotate", "turn" ] +}, { + "name" : "museum", + "tags" : [ "architecture", "attraction", "building", "estate", "event", "exhibition", "explore", "local", "museum", "places", "real", "see", "shop", "store", "tour" ] +}, { + "name" : "north_west", + "tags" : [ "arrow", "directional", "left", "maps", "navigation", "north", "up", "west" ] +}, { + "name" : "gite", + "tags" : [ "architecture", "estate", "gite", "home", "hostel", "house", "maps", "place", "real", "residence", "residential", "stay", "traveling" ] +}, { + "name" : "highlight", + "tags" : [ "color", "doc", "edit", "editing", "editor", "emphasize", "fill", "flash", "format", "highlight", "light", "paint", "sheet", "spreadsheet", "style", "text", "type", "writing" ] +}, { + "name" : "brightness_1", + "tags" : [ "1", "brightness", "circle", "control", "crescent", "level", "moon", "screen" ] +}, { + "name" : "plus_one", + "tags" : [ "1", "add", "digit", "increase", "number", "one", "plus", "symbol" ] +}, { + "name" : "villa", + "tags" : [ "architecture", "beach", "estate", "home", "house", "maps", "place", "real", "residence", "residential", "traveling", "vacation stay", "villa" ] +}, { + "name" : "fmd_bad", + "tags" : [ "!", "alert", "attention", "bad", "caution", "danger", "destination", "direction", "error", "exclamation", "fmd", "important", "location", "maps", "mark", "notification", "pin", "place", "symbol", "warning" ] +}, { + "name" : "flashlight_on", + "tags" : [ "disabled", "enabled", "flash", "flashlight", "light", "off", "on", "slash" ] +}, { + "name" : "flip", + "tags" : [ "edit", "editing", "flip", "image", "orientation", "scan scanning" ] +}, { + "name" : "nightlife", + "tags" : [ "alcohol", "bar", "bottle", "club", "cocktail", "dance", "drink", "food", "glass", "liquor", "music", "nightlife", "note", "wine" ] +}, { + "name" : "present_to_all", + "tags" : [ "all", "arrow", "present", "presentation", "screen", "share", "site", "slides", "to", "web", "website" ] +}, { + "name" : "do_disturb", + "tags" : [ "cancel", "close", "denied", "deny", "disturb", "do", "remove", "silence", "stop" ] +}, { + "name" : "outbound", + "tags" : [ "arrow", "circle", "directional", "outbound", "right", "up" ] +}, { + "name" : "local_pharmacy", + "tags" : [ "911", "aid", "cross", "emergency", "first", "hospital", "local", "medicine", "pharmacy", "places" ] +}, { + "name" : "splitscreen", + "tags" : [ "column", "grid", "layout", "multitasking", "row", "screen", "split", "splitscreen", "two" ] +}, { + "name" : "waterfall_chart", + "tags" : [ "analytics", "bar", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "statistics", "tracking", "waterfall" ] +}, { + "name" : "switch_left", + "tags" : [ "arrows", "directional", "left", "navigation", "switch", "toggle" ] +}, { + "name" : "domain_verification", + "tags" : [ "app", "application desktop", "approve", "check", "complete", "design", "domain", "done", "interface", "internet", "layout", "mark", "ok", "screen", "select", "site", "tick", "ui", "ux", "validate", "verification", "verified", "web", "website", "window", "www", "yes" ] +}, { + "name" : "fireplace", + "tags" : [ "chimney", "fire", "fireplace", "flame", "home", "house", "living", "pit", "place", "room", "warm", "winter" ] +}, { + "name" : "video_settings", + "tags" : [ "change", "details", "gear", "info", "information", "options", "play", "screen", "service", "setting", "settings", "video", "window" ] +}, { + "name" : "disabled_visible", + "tags" : [ "cancel", "close", "disabled", "exit", "eye", "no", "on", "quit", "remove", "reveal", "see", "show", "stop", "view", "visibility", "visible" ] +}, { + "name" : "network_wifi", + "tags" : [ "cell", "cellular", "data", "internet", "mobile", "network", "phone", "speed", "wifi", "wireless" ] +}, { + "name" : "quickreply", + "tags" : [ "bolt", "bubble", "chat", "comment", "communicate", "fast", "lightning", "message", "quick", "quickreply", "reply", "speech", "thunderbolt" ] +}, { + "name" : "swap_vertical_circle", + "tags" : [ "arrow", "arrows", "circle", "down", "swap", "up", "vertical" ] +}, { + "name" : "format_align_justify", + "tags" : [ "align", "alignment", "density", "doc", "edit", "editing", "editor", "extra", "format", "justify", "sheet", "small", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "settings_input_composite", + "tags" : [ "component", "composite", "connection", "connectivity", "input", "plug", "points", "settings" ] +}, { + "name" : "loupe", + "tags" : [ "+", "add", "details", "focus", "glass", "loupe", "magnifying", "new", "plus", "symbol" ] +}, { + "name" : "123", + "tags" : [ "1", "2", "3", "digit", "number", "symbol" ] +}, { + "name" : "network_check", + "tags" : [ "check", "connect", "connection", "internet", "meter", "network", "signal", "speed", "tick", "wifi", "wireless" ] +}, { + "name" : "sms_failed", + "tags" : [ "!", "alert", "attention", "bubbles", "caution", "chat", "communication", "conversation", "danger", "error", "exclamation", "failed", "feedback", "important", "mark", "message", "notification", "service", "sms", "speech", "symbol", "warning" ] +}, { + "name" : "cancel_schedule_send", + "tags" : [ "cancel", "email", "mail", "no", "quit", "remove", "schedule", "send", "share", "stop", "x" ] +}, { + "name" : "work_history", + "tags" : [ "back", "backwards", "bag", "baggage", "briefcase", "business", "case", "clock", "date", "history", "job", "pending", "recent", "schedule", "suitcase", "time", "updates", "work" ] +}, { + "name" : "electric_bolt", + "tags" : [ "bolt", "electric", "energy", "fast", "lightning", "nest", "thunderbolt" ] +}, { + "name" : "view_day", + "tags" : [ "cards", "carousel", "day", "design", "format", "grid", "layout", "view", "website" ] +}, { + "name" : "night_shelter", + "tags" : [ "architecture", "bed", "building", "estate", "homeless", "house", "night", "place", "real", "shelter", "sleep" ] +}, { + "name" : "monitor", + "tags" : [ "Android", "OS", "chrome", "device", "display", "hardware", "iOS", "mac", "monitor", "screen", "web", "window" ] +}, { + "name" : "clean_hands", + "tags" : [ "bacteria", "clean", "disinfect", "germs", "gesture", "hand", "hands", "sanitize", "sanitizer" ] +}, { + "name" : "mark_chat_read", + "tags" : [ "approve", "bubble", "chat", "check", "comment", "communicate", "complete", "done", "mark", "message", "ok", "read", "select", "sent", "speech", "tick", "verified", "yes" ] +}, { + "name" : "comment_bank", + "tags" : [ "archive", "bank", "bookmark", "bubble", "cchat", "comment", "communicate", "favorite", "label", "library", "message", "remember", "ribbon", "save", "speech", "tag" ] +}, { + "name" : "sim_card_download", + "tags" : [ "arrow", "camera", "card", "chip", "device", "down", "download", "memory", "phone", "sim", "storage" ] +}, { + "name" : "lan", + "tags" : [ "computer", "connection", "data", "internet", "lan", "network", "service" ] +}, { + "name" : "piano", + "tags" : [ "instrument", "keyboard", "keys", "music", "musical", "piano", "social" ] +}, { + "name" : "add_road", + "tags" : [ "+", "add", "destination", "direction", "highway", "maps", "new", "plus", "road", "stop", "street", "symbol", "traffic" ] +}, { + "name" : "add_ic_call", + "tags" : [ "+", "add", "call", "cell", "contact", "device", "hardware", "mobile", "new", "phone", "plus", "symbol", "telephone" ] +}, { + "name" : "rule_folder", + "tags" : [ "approve", "cancel", "check", "close", "complete", "data", "doc", "document", "done", "drive", "exit", "file", "folder", "mark", "no", "ok", "remove", "rule", "select", "sheet", "slide", "storage", "tick", "validate", "verified", "x", "yes" ] +}, { + "name" : "switch_access_shortcut", + "tags" : [ "access", "arrow", "arrows", "direction", "navigation", "new", "north", "shortcut", "switch", "symbol", "up" ] +}, { + "name" : "hardware", + "tags" : [ "break", "construction", "hammer", "hardware", "nail", "repair", "tool" ] +}, { + "name" : "line_weight", + "tags" : [ "height", "line", "size", "spacing", "style", "thickness", "weight" ] +}, { + "name" : "image_not_supported", + "tags" : [ "disabled", "enabled", "image", "landscape", "mountain", "mountains", "not", "off", "on", "photo", "photography", "picture", "slash", "supported" ] +}, { + "name" : "flip_camera_ios", + "tags" : [ "DISABLE_IOS", "android", "camera", "disable_ios", "edit", "editing", "flip", "image", "ios", "mobile", "orientation", "rotate", "turn" ] +}, { + "name" : "phone_callback", + "tags" : [ "arrow", "call", "callback", "cell", "contact", "device", "down", "hardware", "mobile", "phone", "telephone" ] +}, { + "name" : "access_time_filled", + "tags" : [ ] +}, { + "name" : "dining", + "tags" : [ "cafe", "cafeteria", "cutlery", "diner", "dining", "eat", "eating", "fork", "room", "spoon" ] +}, { + "name" : "scale", + "tags" : [ "measure", "monitor", "scale", "weight" ] +}, { + "name" : "airplanemode_active", + "tags" : [ "active", "airplane", "airplanemode", "flight", "mode", "on", "signal" ] +}, { + "name" : "set_meal", + "tags" : [ "chopsticks", "dinner", "fish", "food", "lunch", "meal", "restaurant", "set", "teishoku" ] +}, { + "name" : "mobile_friendly", + "tags" : [ "Android", "OS", "approve", "cell", "check", "complete", "device", "done", "friendly", "hardware", "iOS", "mark", "mobile", "ok", "phone", "select", "tablet", "tick", "validate", "verified", "yes" ] +}, { + "name" : "assured_workload", + "tags" : [ "assured", "compliance", "confidential", "federal", "government", "secure", "sensitive regulatory", "workload" ] +}, { + "name" : "wallet", + "tags" : [ ] +}, { + "name" : "merge_type", + "tags" : [ "arrow", "combine", "direction", "format", "merge", "text", "type" ] +}, { + "name" : "view_timeline", + "tags" : [ "grid", "layout", "pattern", "squares", "timeline", "view" ] +}, { + "name" : "departure_board", + "tags" : [ "automobile", "board", "bus", "car", "cars", "clock", "departure", "maps", "public", "schedule", "time", "transportation", "travel", "vehicle" ] +}, { + "name" : "event_repeat", + "tags" : [ "around", "calendar", "date", "day", "event", "inprogress", "load", "loading refresh", "month", "renew", "rotate", "schedule", "turn" ] +}, { + "name" : "sanitizer", + "tags" : [ "bacteria", "bottle", "clean", "covid", "disinfect", "germs", "pump", "sanitizer" ] +}, { + "name" : "surfing", + "tags" : [ "athlete", "athletic", "beach", "body", "entertainment", "exercise", "hobby", "human", "people", "person", "sea", "social sports", "sports", "summer", "surfing", "water" ] +}, { + "name" : "pix", + "tags" : [ "bill", "brazil", "card", "cash", "commerce", "credit", "currency", "finance", "money", "payment" ] +}, { + "name" : "phonelink_ring", + "tags" : [ "Android", "OS", "cell", "connection", "data", "device", "hardware", "iOS", "mobile", "network", "phone", "phonelink", "ring", "service", "signal", "tablet", "wireless" ] +}, { + "name" : "display_settings", + "tags" : [ "Android", "OS", "application", "change", "chrome", "desktop", "details", "device", "display", "gear", "hardware", "iOS", "info", "information", "mac", "monitor", "options", "personal", "screen", "service", "settings", "web", "window" ] +}, { + "name" : "sports_motorsports", + "tags" : [ "athlete", "athletic", "automobile", "bike", "drive", "driving", "entertainment", "helmet", "hobby", "motorcycle", "motorsports", "protect", "social", "sports", "vehicle" ] +}, { + "name" : "horizontal_split", + "tags" : [ "bars", "format", "horizontal", "layout", "lines", "split", "stacked" ] +}, { + "name" : "view_comfy", + "tags" : [ "comfy", "grid", "layout", "pattern", "squares", "view" ] +}, { + "name" : "polymer", + "tags" : [ "emblem", "logo", "mark", "polymer" ] +}, { + "name" : "golf_course", + "tags" : [ "athlete", "athletic", "ball", "club", "course", "entertainment", "flag", "golf", "golfer", "golfing", "hobby", "hole", "places", "putt", "sports" ] +}, { + "name" : "batch_prediction", + "tags" : [ "batch", "bulb", "idea", "light", "prediction" ] +}, { + "name" : "filter_1", + "tags" : [ "1", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "stay_current_portrait", + "tags" : [ "Android", "OS", "current", "device", "hardware", "iOS", "mobile", "phone", "portrait", "stay", "tablet" ] +}, { + "name" : "usb", + "tags" : [ "cable", "connection", "device", "usb", "wire" ] +}, { + "name" : "featured_play_list", + "tags" : [ "collection", "featured", "highlighted", "list", "music", "play", "playlist", "recommended" ] +}, { + "name" : "data_object", + "tags" : [ "brackets", "code", "coder", "data", "object", "parentheses" ] +}, { + "name" : "co_present", + "tags" : [ "arrow", "co-present", "presentation", "screen", "share", "site", "slides", "togather", "web", "website" ] +}, { + "name" : "ev_station", + "tags" : [ "automobile", "car", "cars", "charging", "electric", "electricity", "ev", "maps", "places", "station", "transportation", "vehicle" ] +}, { + "name" : "send_and_archive", + "tags" : [ "archive", "arrow", "down", "download", "email", "letter", "mail", "save", "send", "share" ] +}, { + "name" : "send_to_mobile", + "tags" : [ "Android", "OS", "arrow", "device", "export", "forward", "hardware", "iOS", "mobile", "phone", "right", "send", "share", "tablet", "to" ] +}, { + "name" : "local_see", + "tags" : [ "camera", "lens", "local", "photo", "photography", "picture", "see" ] +}, { + "name" : "satellite_alt", + "tags" : [ "alternative", "artificial", "communication", "satellite", "space", "space station", "television" ] +}, { + "name" : "flatware", + "tags" : [ "cafe", "cafeteria", "cutlery", "diner", "dining", "eat", "eating", "fork", "room", "spoon" ] +}, { + "name" : "speaker", + "tags" : [ "box", "electronic", "loud", "music", "sound", "speaker", "stereo", "system", "video" ] +}, { + "name" : "adb", + "tags" : [ "adb", "android", "bridge", "debug" ] +}, { + "name" : "movie_creation", + "tags" : [ "cinema", "clapperboard", "creation", "film", "movie", "movies", "slate", "video" ] +}, { + "name" : "picture_in_picture", + "tags" : [ "crop", "cropped", "overlap", "photo", "picture", "position", "shape" ] +}, { + "name" : "call_received", + "tags" : [ "arrow", "call", "device", "mobile", "received" ] +}, { + "name" : "battery_alert", + "tags" : [ "!", "alert", "attention", "battery", "caution", "cell", "charge", "danger", "error", "exclamation", "important", "mark", "mobile", "notification", "power", "symbol", "warning" ] +}, { + "name" : "system_update", + "tags" : [ "Android", "OS", "arrow", "arrows", "cell", "device", "direction", "down", "download", "hardware", "iOS", "install", "mobile", "phone", "system", "tablet", "update" ] +}, { + "name" : "webhook", + "tags" : [ "api", "developer", "development", "enterprise", "software", "webhook" ] +}, { + "name" : "add_chart", + "tags" : [ "+", "add", "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "new", "plus", "statistics", "symbol", "tracking" ] +}, { + "name" : "pan_tool_alt", + "tags" : [ "fingers", "gesture", "hand", "hands", "human", "move", "pan", "scan", "stop", "tool" ] +}, { + "name" : "sports_handball", + "tags" : [ "athlete", "athletic", "ball", "body", "entertainment", "exercise", "game", "handball", "hobby", "human", "people", "person", "social", "sports" ] +}, { + "name" : "electric_car", + "tags" : [ "automobile", "car", "cars", "electric", "electricity", "maps", "transportation", "travel", "vehicle" ] +}, { + "name" : "phone_forwarded", + "tags" : [ "arrow", "call", "cell", "contact", "device", "direction", "forwarded", "hardware", "mobile", "phone", "right", "telephone" ] +}, { + "name" : "add_to_photos", + "tags" : [ "add", "collection", "image", "landscape", "mountain", "mountains", "photo", "photography", "photos", "picture", "plus", "to" ] +}, { + "name" : "power_off", + "tags" : [ "charge", "cord", "disabled", "electric", "electrical", "enabled", "off", "on", "outlet", "plug", "power", "slash" ] +}, { + "name" : "noise_control_off", + "tags" : [ "audio", "aware", "cancel", "cancellation", "control", "disabled", "enabled", "music", "noise", "note", "off", "offline", "on", "slash", "sound" ] +}, { + "name" : "code_off", + "tags" : [ "brackets", "code", "css", "develop", "developer", "disabled", "enabled", "engineer", "engineering", "html", "off", "on", "platform", "slash" ] +}, { + "name" : "bookmark_remove", + "tags" : [ "bookmark", "delete", "favorite", "minus", "remember", "remove", "ribbon", "save", "subtract" ] +}, { + "name" : "screen_search_desktop", + "tags" : [ "Android", "OS", "arrow", "desktop", "device", "hardware", "iOS", "lock", "monitor", "rotate", "screen", "web" ] +}, { + "name" : "panorama", + "tags" : [ "angle", "image", "mountain", "mountains", "panorama", "photo", "photography", "picture", "view", "wide" ] +}, { + "name" : "settings_bluetooth", + "tags" : [ "bluetooth", "connect", "connection", "connectivity", "device", "settings", "signal", "symbol" ] +}, { + "name" : "sports_baseball", + "tags" : [ "athlete", "athletic", "ball", "baseball", "entertainment", "exercise", "game", "hobby", "social", "sports" ] +}, { + "name" : "festival", + "tags" : [ "circus", "event", "festival", "local", "maps", "places", "tent", "tour", "travel" ] +}, { + "name" : "lens_blur", + "tags" : [ "blur", "camera", "dim", "dot", "effect", "foggy", "fuzzy", "image", "lens", "photo", "soften" ] +}, { + "name" : "plumbing", + "tags" : [ "build", "construction", "fix", "handyman", "plumbing", "repair", "tools", "wrench" ] +}, { + "name" : "toys", + "tags" : [ "car", "games", "kids", "toy", "toys", "windmill" ] +}, { + "name" : "coffee_maker", + "tags" : [ "appliances", "beverage", "coffee", "cup", "drink", "machine", "maker", "mug" ] +}, { + "name" : "edit_notifications", + "tags" : [ "active", "alarm", "alert", "bell", "chime", "compose", "create", "draft", "edit", "editing", "input", "new", "notifications", "notify", "pen", "pencil", "reminder", "ring", "sound", "write", "writing" ] +}, { + "name" : "personal_video", + "tags" : [ "Android", "OS", "cam", "chrome", "desktop", "device", "hardware", "iOS", "mac", "monitor", "personal", "television", "tv", "video", "web", "window" ] +}, { + "name" : "animation", + "tags" : [ "animation", "circles", "film", "motion", "movement", "sequence", "video" ] +}, { + "name" : "bedtime", + "tags" : [ "bedtime", "nightime", "sleep" ] +}, { + "name" : "gamepad", + "tags" : [ "buttons", "console", "controller", "device", "game", "gamepad", "gaming", "playstation", "video" ] +}, { + "name" : "diversity_1", + "tags" : [ "committee", "diverse", "diversity", "family", "friends", "group", "groups", "heart", "humans", "network", "people", "persons", "social", "team" ] +}, { + "name" : "center_focus_weak", + "tags" : [ "camera", "center", "focus", "image", "lens", "photo", "photography", "weak", "zoom" ] +}, { + "name" : "signal_wifi_statusbar_4_bar", + "tags" : [ "4", "bar", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "signal", "speed", "statusbar", "wifi", "wireless" ] +}, { + "name" : "manage_history", + "tags" : [ "application", "arrow", "back", "backwards", "change", "clock", "date", "details", "gear", "history", "options", "refresh", "renew", "reverse", "rotate", "schedule", "settings", "time", "turn" ] +}, { + "name" : "folder_zip", + "tags" : [ "compress", "data", "doc", "document", "drive", "file", "folder", "folders", "open", "sheet", "slide", "storage", "zip" ] +}, { + "name" : "flag_circle", + "tags" : [ "circle", "country", "flag", "goal", "mark", "nation", "report", "round", "start" ] +}, { + "name" : "south_west", + "tags" : [ "arrow", "directional", "down", "left", "maps", "navigation", "south", "west" ] +}, { + "name" : "looks_4", + "tags" : [ "4", "digit", "looks", "numbers", "square", "symbol" ] +}, { + "name" : "cloud_circle", + "tags" : [ "app", "application", "backup", "circle", "cloud", "connection", "drive", "files", "folders", "internet", "network", "sky", "storage", "upload" ] +}, { + "name" : "format_shapes", + "tags" : [ "alphabet", "character", "color", "doc", "edit", "editing", "editor", "fill", "font", "format", "letter", "paint", "shapes", "sheet", "spreadsheet", "style", "symbol", "text", "type", "writing" ] +}, { + "name" : "car_rental", + "tags" : [ "automobile", "car", "cars", "key", "maps", "rental", "transportation", "vehicle" ] +}, { + "name" : "movie_filter", + "tags" : [ "ai", "artificial", "automatic", "automation", "clapperboard", "creation", "custom", "film", "filter", "genai", "intelligence", "magic", "movie", "movies", "slate", "smart", "spark", "sparkle", "star", "stars", "video" ] +}, { + "name" : "layers_clear", + "tags" : [ "arrange", "clear", "delete", "disabled", "enabled", "interaction", "layers", "maps", "off", "on", "overlay", "pages", "slash" ] +}, { + "name" : "phonelink_lock", + "tags" : [ "Android", "OS", "cell", "connection", "device", "erase", "hardware", "iOS", "lock", "locked", "mobile", "password", "phone", "phonelink", "privacy", "private", "protection", "safety", "secure", "security", "tablet" ] +}, { + "name" : "attractions", + "tags" : [ "amusement", "attractions", "entertainment", "ferris", "fun", "maps", "park", "places", "wheel" ] +}, { + "name" : "playlist_add_check_circle", + "tags" : [ "add", "album", "artist", "audio", "cd", "check", "circle", "collection", "list", "mark", "music", "playlist", "record", "sound", "track" ] +}, { + "name" : "hive", + "tags" : [ "bee", "honey", "honeycomb" ] +}, { + "name" : "no_photography", + "tags" : [ "camera", "disabled", "enabled", "image", "no", "off", "on", "photo", "photography", "picture", "slash" ] +}, { + "name" : "content_paste_go", + "tags" : [ "clipboard", "content", "disabled", "doc", "document", "enabled", "file", "go", "on", "paste", "slash" ] +}, { + "name" : "shop_two", + "tags" : [ "add", "arrow", "buy", "cart", "google", "play", "purchase", "shop", "shopping", "two" ] +}, { + "name" : "edit_location", + "tags" : [ "destination", "direction", "edit", "location", "maps", "pen", "pencil", "pin", "place", "stop" ] +}, { + "name" : "screen_rotation", + "tags" : [ "Android", "OS", "arrow", "device", "hardware", "iOS", "mobile", "phone", "rotate", "rotation", "screen", "tablet", "turn" ] +}, { + "name" : "numbers", + "tags" : [ "digit", "number", "numbers", "symbol" ] +}, { + "name" : "sim_card", + "tags" : [ "camera", "card", "chip", "device", "memory", "phone", "sim", "storage" ] +}, { + "name" : "control_camera", + "tags" : [ "adjust", "arrow", "arrows", "camera", "center", "control", "direction", "left", "move", "right" ] +}, { + "name" : "blender", + "tags" : [ "appliance", "blender", "cooking", "electric", "juicer", "kitchen", "machine", "vitamix" ] +}, { + "name" : "flip_to_front", + "tags" : [ "arrange", "arrangement", "back", "flip", "format", "front", "layout", "move", "order", "sort", "to" ] +}, { + "name" : "sports_volleyball", + "tags" : [ "athlete", "athletic", "ball", "entertainment", "exercise", "game", "hobby", "social", "sports", "volleyball" ] +}, { + "name" : "stairs", + "tags" : [ "down", "staircase", "stairs", "up" ] +}, { + "name" : "keyboard_alt", + "tags" : [ "alt", "computer", "device", "hardware", "input", "keyboard", "keypad", "letter", "office", "text", "type" ] +}, { + "name" : "crop_din", + "tags" : [ "adjust", "adjustments", "area", "crop", "din", "edit", "editing", "frame", "image", "images", "photo", "photos", "rectangle", "settings", "size", "square" ] +}, { + "name" : "html", + "tags" : [ "alphabet", "brackets", "character", "code", "css", "develop", "developer", "engineer", "engineering", "font", "html", "letter", "platform", "symbol", "text", "type" ] +}, { + "name" : "signal_wifi_statusbar_connected_no_internet_4", + "tags" : [ "!", "4", "alert", "attention", "caution", "cell", "cellular", "connected", "danger", "data", "error", "exclamation", "important", "internet", "mark", "mobile", "network", "no", "notification", "phone", "signal", "speed", "statusbar", "symbol", "warning", "wifi", "wireless" ] +}, { + "name" : "pivot_table_chart", + "tags" : [ "analytics", "arrow", "arrows", "bar", "bars", "chart", "data", "diagram", "direction", "drive", "edit", "editing", "graph", "grid", "infographic", "measure", "metrics", "pivot", "rotate", "sheet", "statistics", "table", "tracking" ] +}, { + "name" : "microwave", + "tags" : [ "appliance", "cooking", "electric", "heat", "home", "house", "kitchen", "machine", "microwave" ] +}, { + "name" : "folder_copy", + "tags" : [ "content", "copy", "cut", "data", "doc", "document", "drive", "duplicate", "file", "folder", "folders", "multiple", "paste", "sheet", "slide", "storage" ] +}, { + "name" : "output", + "tags" : [ ] +}, { + "name" : "gif_box", + "tags" : [ "alphabet", "animated", "animation", "bitmap", "character", "font", "format", "gif", "graphics", "interchange", "letter", "symbol", "text", "type" ] +}, { + "name" : "voice_chat", + "tags" : [ "bubble", "cam", "camera", "chat", "comment", "communicate", "facetime", "feedback", "message", "speech", "video", "voice" ] +}, { + "name" : "local_convenience_store", + "tags" : [ "--", "24", "bill", "building", "business", "card", "cash", "coin", "commerce", "company", "convenience", "credit", "currency", "dollars", "local", "maps", "market", "money", "new", "online", "pay", "payment", "plus", "shop", "shopping", "store", "storefront", "symbol" ] +}, { + "name" : "gps_not_fixed", + "tags" : [ "destination", "direction", "disabled", "enabled", "gps", "location", "maps", "not fixed", "off", "on", "online", "place", "pointer", "slash", "tracking" ] +}, { + "name" : "high_quality", + "tags" : [ "alphabet", "character", "definition", "display", "font", "high", "hq", "letter", "movie", "movies", "quality", "resolution", "screen", "symbol", "text", "tv", "type" ] +}, { + "name" : "switch_right", + "tags" : [ "arrows", "directional", "navigation", "right", "switch", "toggle" ] +}, { + "name" : "pages", + "tags" : [ "article", "gplus", "pages", "paper", "post", "star" ] +}, { + "name" : "table_restaurant", + "tags" : [ "bar", "dining", "table" ] +}, { + "name" : "speaker_notes_off", + "tags" : [ "bubble", "chat", "comment", "communicate", "disabled", "enabled", "format", "list", "message", "notes", "off", "on", "slash", "speaker", "speech", "text" ] +}, { + "name" : "phone_disabled", + "tags" : [ "call", "cell", "contact", "device", "disabled", "enabled", "hardware", "mobile", "off", "offline", "on", "phone", "slash", "telephone" ] +}, { + "name" : "eject", + "tags" : [ "disc", "drive", "dvd", "eject", "remove", "triangle", "usb" ] +}, { + "name" : "control_point_duplicate", + "tags" : [ "+", "add", "circle", "control", "duplicate", "multiple", "new", "plus", "point", "symbol" ] +}, { + "name" : "filter", + "tags" : [ "edit", "editing", "effect", "filter", "image", "landscape", "mountain", "mountains", "photo", "photography", "picture", "settings" ] +}, { + "name" : "pest_control", + "tags" : [ "bug", "control", "exterminator", "insects", "pest" ] +}, { + "name" : "backpack", + "tags" : [ "back", "backpack", "bag", "book", "bookbag", "knapsack", "pack", "storage", "travel" ] +}, { + "name" : "leak_add", + "tags" : [ "add", "connection", "data", "leak", "link", "network", "service", "signals", "synce", "wireless" ] +}, { + "name" : "zoom_in_map", + "tags" : [ "arrow", "arrows", "destination", "in", "location", "maps", "move", "place", "stop", "zoom" ] +}, { + "name" : "brightness_7", + "tags" : [ "7", "brightness", "circle", "control", "crescent", "level", "moon", "screen", "sun" ] +}, { + "name" : "system_security_update_good", + "tags" : [ "Android", "OS", "approve", "cell", "check", "complete", "device", "done", "good", "hardware", "iOS", "mark", "mobile", "ok", "phone", "security", "select", "system", "tablet", "tick", "update", "validate", "verified", "yes" ] +}, { + "name" : "ring_volume", + "tags" : [ "call", "calling", "cell", "contact", "device", "hardware", "incoming", "mobile", "phone", "ring", "ringer", "sound", "telephone", "volume" ] +}, { + "name" : "money_off_csred", + "tags" : [ "bill", "card", "cart", "cash", "coin", "commerce", "credit", "csred", "currency", "disabled", "dollars", "enabled", "money", "off", "on", "online", "pay", "payment", "shopping", "slash", "symbol" ] +}, { + "name" : "sports_football", + "tags" : [ "athlete", "athletic", "ball", "entertainment", "exercise", "football", "game", "hobby", "social", "sports" ] +}, { + "name" : "nature", + "tags" : [ "forest", "nature", "outdoor", "outside", "park", "tree", "wilderness" ] +}, { + "name" : "vibration", + "tags" : [ "Android", "OS", "alert", "cell", "device", "hardware", "iOS", "mobile", "mode", "motion", "notification", "phone", "silence", "silent", "tablet", "vibrate", "vibration" ] +}, { + "name" : "snippet_folder", + "tags" : [ "data", "doc", "document", "drive", "file", "folder", "sheet", "slide", "snippet", "storage" ] +}, { + "name" : "edit_road", + "tags" : [ "destination", "direction", "edit", "highway", "maps", "pen", "pencil", "road", "street", "traffic" ] +}, { + "name" : "run_circle", + "tags" : [ "body", "circle", "exercise", "human", "people", "person", "run", "running" ] +}, { + "name" : "dry_cleaning", + "tags" : [ "cleaning", "dry", "hanger", "hotel", "laundry", "places", "service", "towel" ] +}, { + "name" : "alarm_off", + "tags" : [ "alarm", "alert", "bell", "clock", "disabled", "duration", "enabled", "notification", "off", "on", "slash", "time", "timer", "watch" ] +}, { + "name" : "perm_data_setting", + "tags" : [ "data", "gear", "info", "information", "perm", "settings" ] +}, { + "name" : "bedroom_parent", + "tags" : [ "bed", "bedroom", "double", "full", "furniture", "home", "hotel", "house", "king", "night", "parent", "pillows", "queen", "rest", "room", "sizem master", "sleep" ] +}, { + "name" : "airline_seat_recline_normal", + "tags" : [ "airline", "body", "extra", "feet", "human", "leg", "legroom", "normal", "people", "person", "recline", "seat", "sitting", "space", "travel" ] +}, { + "name" : "currency_bitcoin", + "tags" : [ "bill", "blockchain", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "digital", "dollars", "finance", "franc", "money", "online", "pay", "payment", "price", "shopping", "symbol" ] +}, { + "name" : "do_disturb_alt", + "tags" : [ "cancel", "close", "denied", "deny", "disturb", "do", "remove", "silence", "stop" ] +}, { + "name" : "sensor_window", + "tags" : [ "alarm", "security", "security system" ] +}, { + "name" : "incomplete_circle", + "tags" : [ "chart", "circle", "incomplete" ] +}, { + "name" : "settings_input_hdmi", + "tags" : [ "cable", "connection", "connectivity", "definition", "hdmi", "high", "input", "plug", "plugin", "points", "settings", "video", "wire" ] +}, { + "name" : "camera_indoor", + "tags" : [ "architecture", "building", "camera", "estate", "film", "filming", "home", "house", "image", "indoor", "inside", "motion", "nest", "picture", "place", "real", "residence", "residential", "shelter", "video", "videography" ] +}, { + "name" : "edit_location_alt", + "tags" : [ "alt", "edit", "location", "pen", "pencil", "pin" ] +}, { + "name" : "texture", + "tags" : [ "diagonal", "lines", "pattern", "stripes", "texture" ] +}, { + "name" : "location_off", + "tags" : [ "destination", "direction", "location", "maps", "off", "pin", "place", "room", "stop" ] +}, { + "name" : "edit_attributes", + "tags" : [ "approve", "attribution", "check", "complete", "done", "edit", "mark", "ok", "select", "tick", "validate", "verified", "yes" ] +}, { + "name" : "duo", + "tags" : [ "call", "chat", "conference", "device", "duo", "video" ] +}, { + "name" : "slow_motion_video", + "tags" : [ "arrow", "control", "controls", "motion", "music", "play", "slow", "speed", "video" ] +}, { + "name" : "perm_scan_wifi", + "tags" : [ "alert", "announcement", "connection", "info", "information", "internet", "network", "perm", "scan", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "phonelink_setup", + "tags" : [ "Android", "OS", "call", "chat", "device", "hardware", "iOS", "info", "mobile", "phone", "phonelink", "settings", "setup", "tablet", "text" ] +}, { + "name" : "hourglass_disabled", + "tags" : [ "clock", "countdown", "disabled", "empty", "enabled", "hourglass", "loading", "minute", "minutes", "off", "on", "slash", "time", "wait", "waiting" ] +}, { + "name" : "add_to_queue", + "tags" : [ "+", "Android", "OS", "add", "chrome", "desktop", "device", "display", "hardware", "iOS", "mac", "monitor", "new", "plus", "queue", "screen", "symbol", "to", "web", "window" ] +}, { + "name" : "pie_chart_outline", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "outline", "pie", "statistics", "tracking" ] +}, { + "name" : "playlist_remove", + "tags" : [ "-", "collection", "list", "minus", "music", "playlist", "remove" ] +}, { + "name" : "next_week", + "tags" : [ "arrow", "bag", "baggage", "briefcase", "business", "case", "next", "suitcase", "week" ] +}, { + "name" : "church", + "tags" : [ "christian", "christianity", "religion", "spiritual", "worship" ] +}, { + "name" : "medical_information", + "tags" : [ "badge", "card", "health", "id", "information", "medical", "services" ] +}, { + "name" : "view_compact", + "tags" : [ "compact", "grid", "layout", "pattern", "squares", "view" ] +}, { + "name" : "timer_off", + "tags" : [ "alarm", "alert", "bell", "clock", "disabled", "duration", "enabled", "notification", "off", "on", "slash", "stop", "time", "timer", "watch" ] +}, { + "name" : "bluetooth_connected", + "tags" : [ "bluetooth", "cast", "connect", "connection", "device", "paring", "streaming", "symbol", "wireless" ] +}, { + "name" : "photo_size_select_actual", + "tags" : [ "actual", "image", "mountain", "mountains", "photo", "photography", "picture", "select", "size" ] +}, { + "name" : "short_text", + "tags" : [ "brief", "comment", "doc", "document", "note", "short", "text", "write", "writing" ] +}, { + "name" : "bedroom_baby", + "tags" : [ "babies", "baby", "bedroom", "child", "children", "home", "horse", "house", "infant", "kid", "newborn", "rocking", "room", "toddler", "young" ] +}, { + "name" : "video_camera_back", + "tags" : [ "back", "camera", "image", "landscape", "mountain", "mountains", "photo", "photography", "picture", "rear", "video" ] +}, { + "name" : "bathroom", + "tags" : [ "bath", "bathroom", "closet", "home", "house", "place", "plumbing", "room", "shower", "sprinkler", "wash", "water", "wc" ] +}, { + "name" : "downhill_skiing", + "tags" : [ "athlete", "athletic", "body", "downhill", "entertainment", "exercise", "hobby", "human", "people", "person", "ski social", "skiing", "snow", "sports", "travel", "winter" ] +}, { + "name" : "filter_list_off", + "tags" : [ "alt", "disabled", "edit", "filter", "list", "off", "offline", "options", "refine", "sift", "slash" ] +}, { + "name" : "connected_tv", + "tags" : [ "Android", "OS", "airplay", "chrome", "connect", "connected", "desktop", "device", "display", "hardware", "iOS", "mac", "monitor", "screen", "screencast", "streaming", "television", "tv", "web", "window", "wireless" ] +}, { + "name" : "format_indent_increase", + "tags" : [ "align", "alignment", "doc", "edit", "editing", "editor", "format", "increase", "indent", "indentation", "paragraph", "sheet", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "settings_cell", + "tags" : [ "Android", "OS", "cell", "device", "hardware", "iOS", "mobile", "phone", "settings", "tablet" ] +}, { + "name" : "remember_me", + "tags" : [ "Android", "OS", "avatar", "device", "hardware", "human", "iOS", "identity", "me", "mobile", "people", "person", "phone", "profile", "remember", "tablet", "user" ] +}, { + "name" : "kayaking", + "tags" : [ "athlete", "athletic", "body", "canoe", "entertainment", "exercise", "hobby", "human", "kayak", "kayaking", "lake", "paddle", "paddling", "people", "person", "rafting", "river", "row", "social", "sports", "summer", "travel", "water" ] +}, { + "name" : "switch_access_shortcut_add", + "tags" : [ "+", "access", "add", "arrow", "arrows", "direction", "navigation", "new", "north", "plus", "shortcut", "switch", "symbol", "up" ] +}, { + "name" : "app_blocking", + "tags" : [ "Android", "OS", "app", "application", "block", "blocking", "cancel", "cell", "device", "hardware", "iOS", "mobile", "phone", "stop", "stopped", "tablet" ] +}, { + "name" : "elevator", + "tags" : [ "body", "down", "elevator", "human", "people", "person", "up" ] +}, { + "name" : "work_off", + "tags" : [ "bag", "baggage", "briefcase", "business", "case", "disabled", "enabled", "job", "off", "on", "slash", "suitcase", "work" ] +}, { + "name" : "sensors_off", + "tags" : [ "connection", "disabled", "enabled", "network", "off", "on", "scan", "sensors", "signal", "slash", "wireless" ] +}, { + "name" : "stay_primary_portrait", + "tags" : [ "Android", "OS", "current", "device", "hardware", "iOS", "mobile", "phone", "portrait", "primary", "stay", "tablet" ] +}, { + "name" : "cell_tower", + "tags" : [ "broadcast", "casting", "cell", "network", "signal", "tower", "transmitting", "wireless" ] +}, { + "name" : "moped", + "tags" : [ "automobile", "bike", "car", "cars", "maps", "scooter", "transportation", "vehicle", "vespa" ] +}, { + "name" : "wrong_location", + "tags" : [ "cancel", "close", "destination", "direction", "exit", "location", "maps", "no", "pin", "place", "quit", "remove", "stop", "wrong", "x" ] +}, { + "name" : "groups_2", + "tags" : [ "body", "club", "collaboration", "crowd", "gathering", "groups", "hair", "human", "meeting", "people", "person", "social", "teams" ] +}, { + "name" : "public_off", + "tags" : [ "disabled", "earth", "enabled", "global", "globe", "map", "network", "off", "on", "planet", "public", "slash", "social", "space", "web", "world" ] +}, { + "name" : "picture_in_picture_alt", + "tags" : [ "crop", "cropped", "overlap", "photo", "picture", "position", "shape" ] +}, { + "name" : "chair_alt", + "tags" : [ "cahir", "furniture", "home", "house", "kitchen", "lounging", "seating", "table" ] +}, { + "name" : "car_repair", + "tags" : [ "automobile", "car", "cars", "maps", "repair", "transportation", "vehicle" ] +}, { + "name" : "airplay", + "tags" : [ "airplay", "arrow", "connect", "control", "desktop", "device", "display", "monitor", "screen", "signal" ] +}, { + "name" : "nfc", + "tags" : [ "communication", "data", "field", "mobile", "near", "nfc", "wireless" ] +}, { + "name" : "line_style", + "tags" : [ "dash", "dotted", "line", "rule", "spacing", "style" ] +}, { + "name" : "transform", + "tags" : [ "adjust", "crop", "edit", "editing", "image", "photo", "picture", "transform" ] +}, { + "name" : "single_bed", + "tags" : [ "bed", "bedroom", "double", "furniture", "home", "hotel", "house", "king", "night", "pillows", "queen", "rest", "room", "single", "sleep", "twin" ] +}, { + "name" : "pattern", + "tags" : [ "key", "login", "password", "pattern", "pin", "security", "star", "unlock" ] +}, { + "name" : "local_movies", + "tags" : [ ] +}, { + "name" : "repeat_one", + "tags" : [ "1", "arrow", "arrows", "control", "controls", "digit", "media", "music", "number", "one", "repeat", "symbol", "video" ] +}, { + "name" : "swap_calls", + "tags" : [ "arrow", "arrows", "calls", "device", "direction", "mobile", "share", "swap" ] +}, { + "name" : "do_not_disturb_alt", + "tags" : [ "cancel", "close", "denied", "deny", "disturb", "do", "remove", "silence", "stop" ] +}, { + "name" : "smoking_rooms", + "tags" : [ "allowed", "cigarette", "places", "rooms", "smoke", "smoking", "tobacco", "zone" ] +}, { + "name" : "remove_moderator", + "tags" : [ "certified", "disabled", "enabled", "moderator", "off", "on", "privacy", "private", "protect", "protection", "remove", "security", "shield", "slash", "verified" ] +}, { + "name" : "perm_device_information", + "tags" : [ "Android", "OS", "alert", "announcement", "device", "hardware", "i", "iOS", "info", "information", "mobile", "perm", "phone", "tablet" ] +}, { + "name" : "wash", + "tags" : [ "bathroom", "clean", "fingers", "gesture", "hand", "wash", "wc" ] +}, { + "name" : "mode_standby", + "tags" : [ "disturb", "mode", "power", "sleep", "standby", "target" ] +}, { + "name" : "door_sliding", + "tags" : [ "auto", "automatic", "door", "doorway", "double", "entrance", "exit", "glass", "home", "house", "sliding", "two" ] +}, { + "name" : "skateboarding", + "tags" : [ "athlete", "athletic", "body", "entertainment", "exercise", "hobby", "human", "people", "person", "skate", "skateboarder", "skateboarding", "social", "sports" ] +}, { + "name" : "difference", + "tags" : [ "compare", "content", "copy", "cut", "diff", "difference", "doc", "document", "duplicate", "file", "multiple", "past" ] +}, { + "name" : "group_remove", + "tags" : [ "accounts", "committee", "face", "family", "friends", "group", "humans", "network", "people", "persons", "profiles", "remove", "social", "team", "users" ] +}, { + "name" : "brightness_high", + "tags" : [ "auto", "brightness", "control", "high", "mobile", "monitor", "phone", "sun" ] +}, { + "name" : "cabin", + "tags" : [ "architecture", "cabin", "camping", "cottage", "estate", "home", "house", "log", "maps", "place", "real", "residence", "residential", "stay", "traveling", "wood" ] +}, { + "name" : "camera_outdoor", + "tags" : [ "architecture", "building", "camera", "estate", "film", "filming", "home", "house", "image", "motion", "nest", "outdoor", "outside", "picture", "place", "real", "residence", "residential", "shelter", "video", "videography" ] +}, { + "name" : "troubleshoot", + "tags" : [ "analytics", "chart", "data", "diagram", "find", "glass", "graph", "infographic", "line", "look", "magnify", "magnifying", "measure", "metrics", "search", "see", "statistics", "tracking", "troubleshoot" ] +}, { + "name" : "tablet_android", + "tags" : [ "OS", "android", "device", "hardware", "iOS", "ipad", "mobile", "tablet", "web" ] +}, { + "name" : "house_siding", + "tags" : [ "architecture", "building", "construction", "estate", "exterior", "facade", "home", "house", "real", "residential", "siding" ] +}, { + "name" : "satellite", + "tags" : [ "bluetooth", "connect", "connection", "connectivity", "data", "device", "image", "internet", "landscape", "location", "maps", "mountain", "mountains", "network", "photo", "photography", "picture", "satellite", "scan", "service", "signal", "symbol", "wireless-- wifi" ] +}, { + "name" : "motion_photos_on", + "tags" : [ "animation", "circle", "disabled", "enabled", "motion", "off", "on", "photos", "play", "slash", "video" ] +}, { + "name" : "door_back", + "tags" : [ "back", "closed", "door", "doorway", "entrance", "exit", "home", "house", "way" ] +}, { + "name" : "strikethrough_s", + "tags" : [ "alphabet", "character", "cross", "doc", "edit", "editing", "editor", "font", "letter", "out", "s", "sheet", "spreadsheet", "strikethrough", "styles", "symbol", "text", "type", "writing" ] +}, { + "name" : "co2", + "tags" : [ "carbon", "chemical", "co2", "dioxide", "gas" ] +}, { + "name" : "notifications_paused", + "tags" : [ "active", "alarm", "alert", "bell", "chime", "ignore", "notifications", "notify", "paused", "quiet", "reminder", "ring --- pause", "sleep", "snooze", "sound", "z", "zzz" ] +}, { + "name" : "currency_yen", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "price", "shopping", "symbol", "yen" ] +}, { + "name" : "call_to_action", + "tags" : [ "action", "alert", "bar", "call", "components", "cta", "design", "info", "information", "interface", "layout", "message", "notification", "screen", "site", "to", "ui", "ux", "web", "website", "window" ] +}, { + "name" : "photo_camera_front", + "tags" : [ "account", "camera", "face", "front", "human", "image", "people", "person", "photo", "photography", "picture", "portrait", "profile", "user" ] +}, { + "name" : "directions_boat_filled", + "tags" : [ "automobile", "boat", "car", "cars", "direction", "directions", "ferry", "filled", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "subtitles_off", + "tags" : [ "accessibility", "accessible", "caption", "cc", "closed", "disabled", "enabled", "language", "off", "on", "slash", "subtitle", "subtitles", "translate", "video" ] +}, { + "name" : "rotate_90_degrees_ccw", + "tags" : [ "90", "arrow", "arrows", "ccw", "degrees", "direction", "edit", "editing", "image", "photo", "rotate", "turn" ] +}, { + "name" : "vertical_align_center", + "tags" : [ "align", "alignment", "arrow", "center", "doc", "down", "edit", "editing", "editor", "sheet", "spreadsheet", "text", "type", "up", "vertical", "writing" ] +}, { + "name" : "living", + "tags" : [ "chair", "comfort", "couch", "decoration", "furniture", "home", "house", "living", "lounging", "loveseat", "room", "seat", "seating", "sofa" ] +}, { + "name" : "battery_saver", + "tags" : [ "+", "add", "battery", "charge", "charging", "new", "plus", "power", "saver", "symbol" ] +}, { + "name" : "hot_tub", + "tags" : [ "bath", "bathing", "bathroom", "bathtub", "hot", "hotel", "human", "jacuzzi", "person", "shower", "spa", "steam", "travel", "tub", "water" ] +}, { + "name" : "play_lesson", + "tags" : [ "audio", "book", "bookmark", "digital", "ebook", "lesson", "multimedia", "play", "play lesson", "read", "reading", "ribbon" ] +}, { + "name" : "update_disabled", + "tags" : [ "arrow", "back", "backwards", "clock", "date", "disabled", "enabled", "forward", "history", "load", "off", "on", "refresh", "reverse", "rotate", "schedule", "slash", "time", "update" ] +}, { + "name" : "psychology_alt", + "tags" : [ "?", "assistance", "behavior", "body", "brain", "cognitive", "function", "gear", "head", "help", "human", "info", "information", "intellectual", "mental", "mind", "people", "person", "preferences", "psychiatric", "psychology", "punctuation", "question mark", "science", "settings", "social", "support", "symbol", "therapy", "thinking", "thoughts" ] +}, { + "name" : "cast_connected", + "tags" : [ "Android", "OS", "airplay", "cast", "chrome", "connect", "connected", "desktop", "device", "display", "hardware", "iOS", "mac", "monitor", "screen", "screencast", "streaming", "television", "tv", "web", "window", "wireless" ] +}, { + "name" : "format_color_reset", + "tags" : [ "clear", "color", "disabled", "doc", "droplet", "edit", "editing", "editor", "enabled", "fill", "format", "off", "on", "paint", "reset", "sheet", "slash", "spreadsheet", "style", "text", "type", "water", "writing" ] +}, { + "name" : "snooze", + "tags" : [ "alarm", "bell", "clock", "duration", "notification", "snooze", "time", "timer", "watch", "z" ] +}, { + "name" : "person_remove_alt_1", + "tags" : [ ] +}, { + "name" : "align_horizontal_left", + "tags" : [ "align", "alignment", "format", "horizontal", "layout", "left", "lines", "paragraph", "rule", "rules", "style", "text" ] +}, { + "name" : "boy", + "tags" : [ "body", "boy", "gender", "human", "male", "man", "people", "person", "social", "symbol" ] +}, { + "name" : "battery_5_bar", + "tags" : [ "5", "bar", "battery", "cell", "charge", "mobile", "power" ] +}, { + "name" : "mic_external_on", + "tags" : [ "audio", "disabled", "enabled", "external", "mic", "microphone", "off", "on", "slash", "sound", "voice" ] +}, { + "name" : "voicemail", + "tags" : [ "call", "device", "message", "missed", "mobile", "phone", "recording", "voice", "voicemail" ] +}, { + "name" : "join_full", + "tags" : [ "circle", "combine", "command", "full", "join", "left", "outer", "overlap", "right", "sql" ] +}, { + "name" : "looks_5", + "tags" : [ "5", "digit", "looks", "numbers", "square", "symbol" ] +}, { + "name" : "countertops", + "tags" : [ "counter", "countertops", "home", "house", "kitchen", "sink", "table", "tops" ] +}, { + "name" : "energy_savings_leaf", + "tags" : [ "eco", "energy", "leaf", "leaves", "nest", "savings", "usage" ] +}, { + "name" : "safety_divider", + "tags" : [ "apart", "distance", "divider", "safety", "separate", "social", "space" ] +}, { + "name" : "move_up", + "tags" : [ "arrow", "direction", "jump", "move", "navigation", "transfer", "up" ] +}, { + "name" : "storm", + "tags" : [ "forecast", "hurricane", "storm", "temperature", "twister", "weather", "wind" ] +}, { + "name" : "sync_disabled", + "tags" : [ "360", "around", "arrow", "arrows", "direction", "disabled", "enabled", "inprogress", "load", "loading refresh", "off", "on", "renew", "rotate", "slash", "sync", "turn" ] +}, { + "name" : "javascript", + "tags" : [ "alphabet", "brackets", "character", "code", "css", "develop", "developer", "engineer", "engineering", "font", "html", "javascript", "letter", "platform", "symbol", "text", "type" ] +}, { + "name" : "tram", + "tags" : [ "automobile", "car", "cars", "direction", "maps", "public", "rail", "subway", "train", "tram", "transportation", "vehicle" ] +}, { + "name" : "app_shortcut", + "tags" : [ "app", "bookmarked", "favorite", "highlight", "important", "marked", "mobile", "save", "saved", "shortcut", "software", "special", "star" ] +}, { + "name" : "data_saver_off", + "tags" : [ "analytics", "bar", "bars", "chart", "data", "diagram", "donut", "graph", "infographic", "measure", "metrics", "off", "on", "ring", "saver", "statistics", "tracking" ] +}, { + "name" : "laptop_windows", + "tags" : [ "Android", "OS", "chrome", "device", "display", "hardware", "iOS", "laptop", "mac", "monitor", "screen", "web", "window", "windows" ] +}, { + "name" : "doorbell", + "tags" : [ "alarm", "bell", "door", "doorbell", "home", "house", "ringing" ] +}, { + "name" : "hd", + "tags" : [ "alphabet", "character", "definition", "display", "font", "hd", "high", "letter", "movie", "movies", "resolution", "screen", "symbol", "text", "tv", "type" ] +}, { + "name" : "file_download_off", + "tags" : [ "arrow", "disabled", "down", "download", "drive", "enabled", "export", "file", "install", "off", "on", "save", "slash", "upload" ] +}, { + "name" : "apps_outage", + "tags" : [ "all", "applications", "apps", "circles", "collection", "components", "dots", "grid", "interface", "outage", "squares", "ui", "ux" ] +}, { + "name" : "taxi_alert", + "tags" : [ "!", "alert", "attention", "automobile", "cab", "car", "cars", "caution", "danger", "direction", "error", "exclamation", "important", "lyft", "maps", "mark", "notification", "public", "symbol", "taxi", "transportation", "uber", "vehicle", "warning", "yellow" ] +}, { + "name" : "breakfast_dining", + "tags" : [ "bakery", "bread", "breakfast", "butter", "dining", "food", "toast" ] +}, { + "name" : "brightness_medium", + "tags" : [ "auto", "brightness", "control", "medium", "mobile", "monitor", "phone", "sun" ] +}, { + "name" : "gradient", + "tags" : [ "color", "edit", "editing", "effect", "filter", "gradient", "image", "images", "photography", "picture", "pictures" ] +}, { + "name" : "swipe_left", + "tags" : [ "arrow", "arrows", "finger", "hand", "hit", "left", "navigation", "reject", "strike", "swing", "swipe", "take" ] +}, { + "name" : "soup_kitchen", + "tags" : [ "breakfast", "brunch", "dining", "food", "kitchen", "lunch", "meal", "soup" ] +}, { + "name" : "voice_over_off", + "tags" : [ "account", "disabled", "enabled", "face", "human", "off", "on", "over", "people", "person", "profile", "recording", "slash", "speak", "speaking", "speech", "transcript", "user", "voice" ] +}, { + "name" : "water_damage", + "tags" : [ "architecture", "building", "damage", "drop", "droplet", "estate", "house", "leak", "plumbing", "real", "residence", "residential", "shelter", "water" ] +}, { + "name" : "abc", + "tags" : [ "alphabet", "character", "font", "letter", "symbol", "text", "type" ] +}, { + "name" : "data_saver_on", + "tags" : [ "+", "add", "analytics", "chart", "data", "diagram", "graph", "infographic", "measure", "metrics", "new", "on", "plus", "ring", "saver", "statistics", "symbol", "tracking" ] +}, { + "name" : "signal_wifi_0_bar", + "tags" : [ "0", "bar", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "signal", "wifi", "wireless" ] +}, { + "name" : "brightness_low", + "tags" : [ "auto", "brightness", "control", "low", "mobile", "monitor", "phone", "sun" ] +}, { + "name" : "device_unknown", + "tags" : [ "?", "Android", "OS", "assistance", "cell", "device", "hardware", "help", "iOS", "info", "information", "mobile", "phone", "punctuation", "question mark", "support", "symbol", "tablet", "unknown" ] +}, { + "name" : "fire_extinguisher", + "tags" : [ "emergency", "extinguisher", "fire", "water" ] +}, { + "name" : "fitbit", + "tags" : [ "athlete", "athletic", "exercise", "fitbit", "fitness", "hobby", "logo" ] +}, { + "name" : "bedroom_child", + "tags" : [ "bed", "bedroom", "child", "children", "furniture", "home", "hotel", "house", "kid", "night", "pillows", "rest", "room", "size", "sleep", "twin", "young" ] +}, { + "name" : "closed_caption_off", + "tags" : [ "accessible", "alphabet", "caption", "cc", "character", "closed", "decoder", "font", "language", "letter", "media", "movies", "off", "outline", "subtitle", "subtitles", "symbol", "text", "tv", "type" ] +}, { + "name" : "bluetooth_searching", + "tags" : [ "bluetooth", "connection", "device", "paring", "search", "searching", "symbol" ] +}, { + "name" : "content_paste_off", + "tags" : [ "clipboard", "content", "disabled", "doc", "document", "enabled", "file", "off", "on", "paste", "slash" ] +}, { + "name" : "hexagon", + "tags" : [ "hexagon", "shape", "six sides" ] +}, { + "name" : "tap_and_play", + "tags" : [ "Android", "OS wifi", "cell", "connection", "device", "hardware", "iOS", "internet", "mobile", "network", "phone", "play", "signal", "tablet", "tap", "to", "wireless" ] +}, { + "name" : "domain_add", + "tags" : [ "+", "add", "apartment", "architecture", "building", "business", "domain", "estate", "home", "new", "place", "plus", "real", "residence", "residential", "shelter", "symbol", "web", "www" ] +}, { + "name" : "signpost", + "tags" : [ "arrow", "direction", "left", "maps", "right", "signal", "signs", "street", "traffic" ] +}, { + "name" : "screenshot", + "tags" : [ "Android", "OS", "cell", "crop", "device", "hardware", "iOS", "mobile", "phone", "screen", "screenshot", "tablet" ] +}, { + "name" : "network_cell", + "tags" : [ "cell", "cellular", "data", "internet", "mobile", "network", "phone", "speed", "wifi", "wireless" ] +}, { + "name" : "repeat_on", + "tags" : [ "arrow", "arrows", "control", "controls", "media", "music", "on", "repeat", "video" ] +}, { + "name" : "charging_station", + "tags" : [ "Android", "OS", "battery", "bolt", "cell", "charging", "device", "electric", "hardware", "iOS", "lightning", "mobile", "phone", "station", "tablet", "thunderbolt" ] +}, { + "name" : "grid_4x4", + "tags" : [ "4", "by", "grid", "layout", "lines", "space" ] +}, { + "name" : "assistant_photo", + "tags" : [ "assistant", "flag", "photo", "recommendation", "smart", "star", "suggestion" ] +}, { + "name" : "carpenter", + "tags" : [ "building", "carpenter", "construction", "cutting", "handyman", "repair", "saw", "tool" ] +}, { + "name" : "private_connectivity", + "tags" : [ "connectivity", "lock", "locked", "password", "privacy", "private", "protection", "safety", "secure", "security" ] +}, { + "name" : "mobiledata_off", + "tags" : [ "arrow", "data", "disabled", "down", "enabled", "internet", "mobile", "network", "off", "on", "slash", "speed", "up", "wifi", "wireless" ] +}, { + "name" : "atm", + "tags" : [ "alphabet", "atm", "automated", "bill", "card", "cart", "cash", "character", "coin", "commerce", "credit", "currency", "dollars", "font", "letter", "machine", "money", "online", "pay", "payment", "shopping", "symbol", "teller", "text", "type" ] +}, { + "name" : "rv_hookup", + "tags" : [ "arrow", "attach", "automobile", "automotive", "back", "car", "cars", "connect", "direction", "hookup", "left", "maps", "public", "right", "rv", "trailer", "transportation", "travel", "truck", "van", "vehicle" ] +}, { + "name" : "replay_30", + "tags" : [ "30", "arrow", "arrows", "control", "controls", "digit", "music", "number", "refresh", "renew", "repeat", "replay", "symbol", "thirty", "video" ] +}, { + "name" : "offline_share", + "tags" : [ "Android", "OS", "arrow", "cell", "connect", "device", "direction", "hardware", "iOS", "link", "mobile", "multiple", "offline", "phone", "right", "share", "tablet" ] +}, { + "name" : "settings_input_svideo", + "tags" : [ "cable", "connection", "connectivity", "definition", "input", "plug", "plugin", "points", "settings", "standard", "svideo", "video" ] +}, { + "name" : "soap", + "tags" : [ "bathroom", "clean", "fingers", "gesture", "hand", "soap", "wash", "wc" ] +}, { + "name" : "baby_changing_station", + "tags" : [ "babies", "baby", "bathroom", "body", "changing", "child", "children", "father", "human", "infant", "kids", "mother", "newborn", "people", "person", "station", "toddler", "wc", "young" ] +}, { + "name" : "sports_cricket", + "tags" : [ "athlete", "athletic", "ball", "bat", "cricket", "entertainment", "exercise", "game", "hobby", "social", "sports" ] +}, { + "name" : "ad_units", + "tags" : [ "Android", "OS", "ad", "banner", "cell", "device", "hardware", "iOS", "mobile", "notification", "notifications", "phone", "tablet", "top", "units" ] +}, { + "name" : "wb_twilight", + "tags" : [ "balance", "light", "lighting", "noon", "sun", "sunset", "twilight", "wb", "white" ] +}, { + "name" : "no_encryption", + "tags" : [ "disabled", "enabled", "encryption", "lock", "no", "off", "on", "password", "safety", "security", "slash" ] +}, { + "name" : "table_bar", + "tags" : [ "bar", "cafe", "round", "table" ] +}, { + "name" : "diversity_2", + "tags" : [ "committee", "diverse", "diversity", "family", "friends", "group", "groups", "heart", "humans", "network", "people", "persons", "social", "team" ] +}, { + "name" : "subway", + "tags" : [ "automobile", "bike", "car", "cars", "maps", "rail", "scooter", "subway", "train", "transportation", "travel", "tunnel", "underground", "vehicle", "vespa" ] +}, { + "name" : "browser_updated", + "tags" : [ "Android", "OS", "arrow", "browser", "chrome", "desktop", "device", "display", "download", "hardware", "iOS", "mac", "monitor", "screen", "updated", "web", "window" ] +}, { + "name" : "currency_pound", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "pound", "price", "shopping", "symbol" ] +}, { + "name" : "transit_enterexit", + "tags" : [ "arrow", "direction", "enterexit", "maps", "navigation", "route", "transit", "transportation" ] +}, { + "name" : "contrast", + "tags" : [ "black", "contrast", "edit", "editing", "effect", "filter", "grayscale", "image", "images", "photography", "picture", "pictures", "settings", "white" ] +}, { + "name" : "lightbulb_circle", + "tags" : [ "alert", "announcement", "idea", "info", "information", "light", "lightbulb" ] +}, { + "name" : "rectangle", + "tags" : [ "four sides", "parallelograms", "polygons", "quadrilaterals", "recangle", "shape" ] +}, { + "name" : "call_merge", + "tags" : [ "arrow", "call", "device", "merge", "mobile" ] +}, { + "name" : "hide_image", + "tags" : [ "disabled", "enabled", "hide", "image", "landscape", "mountain", "mountains", "off", "on", "photo", "photography", "picture", "slash" ] +}, { + "name" : "shield_moon", + "tags" : [ "certified", "do not disturb", "moon", "night", "privacy", "private", "protect", "protection", "security", "shield", "verified" ] +}, { + "name" : "group_off", + "tags" : [ "body", "club", "collaboration", "crowd", "gathering", "group", "human", "meeting", "off", "people", "person", "social", "teams" ] +}, { + "name" : "music_off", + "tags" : [ "audio", "audiotrack", "disabled", "enabled", "key", "music", "note", "off", "on", "slash", "sound", "track" ] +}, { + "name" : "bluetooth_disabled", + "tags" : [ "bluetooth", "cast", "connect", "connection", "device", "disabled", "enabled", "off", "offline", "on", "paring", "slash", "streaming", "symbol", "wireless" ] +}, { + "name" : "flip_to_back", + "tags" : [ "arrange", "arrangement", "back", "flip", "format", "front", "layout", "move", "order", "sort", "to" ] +}, { + "name" : "sd_card", + "tags" : [ "camera", "card", "digital", "memory", "photos", "sd", "secure", "storage" ] +}, { + "name" : "exposure_plus_1", + "tags" : [ "1", "add", "brightness", "contrast", "digit", "edit", "editing", "effect", "exposure", "image", "number", "photo", "photography", "plus", "settings", "symbol" ] +}, { + "name" : "view_array", + "tags" : [ "array", "design", "format", "grid", "layout", "view", "website" ] +}, { + "name" : "sports_mma", + "tags" : [ "arts", "athlete", "athletic", "boxing", "combat", "entertainment", "exercise", "fighting", "game", "glove", "hobby", "martial", "mixed", "mma", "social", "sports" ] +}, { + "name" : "straight", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "route", "sign", "straight", "traffic", "up" ] +}, { + "name" : "thermostat_auto", + "tags" : [ "A", "auto", "celsius", "fahrenheit", "meter", "temp", "temperature", "thermometer", "thermostat" ] +}, { + "name" : "mobile_screen_share", + "tags" : [ "Android", "OS", "cast", "cell", "device", "hardware", "iOS", "mirror", "mobile", "monitor", "phone", "screen", "screencast", "share", "stream", "streaming", "tablet", "tv", "wireless" ] +}, { + "name" : "phone_missed", + "tags" : [ "arrow", "call", "cell", "contact", "device", "hardware", "missed", "mobile", "phone", "telephone" ] +}, { + "name" : "brunch_dining", + "tags" : [ "breakfast", "brunch", "champagne", "dining", "drink", "food", "lunch", "meal" ] +}, { + "name" : "featured_video", + "tags" : [ "advertised", "advertisement", "featured", "highlighted", "recommended", "video", "watch" ] +}, { + "name" : "merge", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "merge", "navigation", "path", "route", "sign", "traffic" ] +}, { + "name" : "open_in_new_off", + "tags" : [ "arrow", "box", "disabled", "enabled", "export", "in", "new", "off", "on", "open", "slash", "window" ] +}, { + "name" : "hdr_auto", + "tags" : [ "A", "alphabet", "auto", "camera", "character", "circle", "dynamic", "font", "hdr", "high", "letter", "photo", "range", "symbol", "text", "type" ] +}, { + "name" : "join_inner", + "tags" : [ "circle", "command", "inner", "join", "matching", "overlap", "sql", "values" ] +}, { + "name" : "solar_power", + "tags" : [ "eco", "energy", "heat", "nest", "power", "solar", "sun", "sunny" ] +}, { + "name" : "crop_16_9", + "tags" : [ "16", "9", "adjust", "adjustments", "area", "by", "crop", "edit", "editing", "frame", "image", "images", "photo", "photos", "rectangle", "settings", "size", "square" ] +}, { + "name" : "swipe_right", + "tags" : [ "accept", "arrows", "direction", "finger", "hands", "hit", "navigation", "right", "strike", "swing", "swpie", "take" ] +}, { + "name" : "phonelink_erase", + "tags" : [ "Android", "OS", "cancel", "cell", "close", "connection", "device", "erase", "exit", "hardware", "iOS", "mobile", "no", "phone", "phonelink", "remove", "stop", "tablet", "x" ] +}, { + "name" : "smoke_free", + "tags" : [ "cigarette", "disabled", "enabled", "free", "never", "no", "off", "on", "places", "prohibited", "slash", "smoke", "smoking", "tobacco", "warning", "zone" ] +}, { + "name" : "install_desktop", + "tags" : [ "Android", "OS", "chrome", "desktop", "device", "display", "fix", "hardware", "iOS", "install", "mac", "monitor", "place", "pwa", "screen", "web", "window" ] +}, { + "name" : "shutter_speed", + "tags" : [ "aperture", "camera", "duration", "image", "lens", "photo", "photography", "photos", "picture", "setting", "shutter", "speed", "stop", "time", "timer", "watch" ] +}, { + "name" : "keyboard_hide", + "tags" : [ "arrow", "computer", "device", "down", "hardware", "hide", "input", "keyboard", "keypad", "text" ] +}, { + "name" : "exposure", + "tags" : [ "add", "brightness", "contrast", "edit", "editing", "effect", "exposure", "image", "minus", "photo", "photography", "picture", "plus", "settings", "subtract" ] +}, { + "name" : "nordic_walking", + "tags" : [ "athlete", "athletic", "body", "entertainment", "exercise", "hiking", "hobby", "human", "nordic", "people", "person", "social", "sports", "travel", "walker", "walking" ] +}, { + "name" : "umbrella", + "tags" : [ "beach", "protection", "rain", "sun", "sunny", "umbrella" ] +}, { + "name" : "move_down", + "tags" : [ "arrow", "direction", "down", "jump", "move", "navigation", "transfer" ] +}, { + "name" : "filter_2", + "tags" : [ "2", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "photo_album", + "tags" : [ "album", "archive", "bookmark", "image", "label", "library", "mountain", "mountains", "photo", "photography", "picture", "ribbon", "save", "tag" ] +}, { + "name" : "security_update_good", + "tags" : [ "Android", "OS", "checkmark", "device", "good", "hardware", "iOS", "mobile", "ok", "phone", "security", "tablet", "tick", "update" ] +}, { + "name" : "ssid_chart", + "tags" : [ "chart", "graph", "lines", "network", "ssid", "wifi" ] +}, { + "name" : "score", + "tags" : [ "2k", "alphabet", "analytics", "bar", "bars", "character", "chart", "data", "diagram", "digit", "font", "graph", "infographic", "letter", "measure", "metrics", "number", "score", "statistics", "symbol", "text", "tracking", "type" ] +}, { + "name" : "swipe_up", + "tags" : [ "arrows", "direction", "disable", "enable", "finger", "hands", "hit", "navigation", "strike", "swing", "swpie", "take", "up" ] +}, { + "name" : "battery_4_bar", + "tags" : [ "4", "bar", "battery", "cell", "charge", "mobile", "power" ] +}, { + "name" : "all_out", + "tags" : [ "all", "circle", "out", "shape" ] +}, { + "name" : "battery_unknown", + "tags" : [ "?", "assistance", "battery", "cell", "charge", "help", "info", "information", "mobile", "power", "punctuation", "question mark", "support", "symbol", "unknown" ] +}, { + "name" : "sports_golf", + "tags" : [ "athlete", "athletic", "ball", "club", "entertainment", "exercise", "game", "golf", "golfer", "golfing", "hobby", "social", "sports" ] +}, { + "name" : "sports_martial_arts", + "tags" : [ "arts", "athlete", "athletic", "entertainment", "exercise", "hobby", "human", "karate", "martial", "people", "person", "social", "sports" ] +}, { + "name" : "filter_tilt_shift", + "tags" : [ "blur", "center", "edit", "editing", "effect", "filter", "focus", "image", "images", "photography", "picture", "pictures", "shift", "tilt" ] +}, { + "name" : "electric_bike", + "tags" : [ "bike", "electric", "electricity", "maps", "scooter", "transportation", "travel", "vespa" ] +}, { + "name" : "border_all", + "tags" : [ "all", "border", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "auto_mode", + "tags" : [ "ai", "around", "arrow", "arrows", "artificial", "auto", "automatic", "automation", "custom", "direction", "genai", "inprogress", "intelligence", "load", "loading refresh", "magic", "mode", "navigation", "nest", "renew", "rotate", "smart", "spark", "sparkle", "star", "turn" ] +}, { + "name" : "hvac", + "tags" : [ "air", "conditioning", "heating", "hvac", "ventilation" ] +}, { + "name" : "scanner", + "tags" : [ "copy", "device", "hardware", "machine", "scan", "scanner" ] +}, { + "name" : "shuffle_on", + "tags" : [ "arrow", "arrows", "control", "controls", "music", "on", "random", "shuffle", "video" ] +}, { + "name" : "wifi_calling_3", + "tags" : [ "3", "calling", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "speed", "wifi", "wireless" ] +}, { + "name" : "signal_wifi_off", + "tags" : [ "cell", "cellular", "data", "disabled", "enabled", "internet", "mobile", "network", "off", "on", "phone", "signal", "slash", "speed", "wifi", "wireless" ] +}, { + "name" : "girl", + "tags" : [ "body", "female", "gender", "girl", "human", "lady", "people", "person", "social", "symbol", "woman", "women" ] +}, { + "name" : "shop_2", + "tags" : [ "2", "add", "arrow", "buy", "cart", "google", "play", "purchase", "shop", "shopping" ] +}, { + "name" : "hdr_strong", + "tags" : [ "circles", "dots", "dynamic", "enhance", "hdr", "high", "range", "strong" ] +}, { + "name" : "directions_transit", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "maps", "public", "rail", "subway", "train", "transit", "transportation", "vehicle" ] +}, { + "name" : "label_off", + "tags" : [ "disabled", "enabled", "favorite", "indent", "label", "library", "mail", "off", "on", "remember", "save", "slash", "stamp", "sticker", "tag", "wing" ] +}, { + "name" : "tablet", + "tags" : [ "Android", "OS", "device", "hardware", "iOS", "ipad", "mobile", "tablet", "web" ] +}, { + "name" : "5g", + "tags" : [ "5g", "alphabet", "cellular", "character", "data", "digit", "font", "letter", "mobile", "network", "number", "phone", "signal", "speed", "symbol", "text", "type", "wifi" ] +}, { + "name" : "vrpano", + "tags" : [ "angle", "image", "landscape", "mountain", "mountains", "panorama", "photo", "photography", "picture", "view", "vrpano", "wide" ] +}, { + "name" : "forward_30", + "tags" : [ "30", "arrow", "control", "controls", "digit", "fast", "forward", "music", "number", "seconds", "symbol", "video" ] +}, { + "name" : "battery_0_bar", + "tags" : [ "0", "bar", "battery", "cell", "charge", "mobile", "power" ] +}, { + "name" : "airline_seat_recline_extra", + "tags" : [ "airline", "body", "extra", "feet", "human", "leg", "legroom", "people", "person", "seat", "sitting", "space", "travel" ] +}, { + "name" : "looks", + "tags" : [ "circle", "half", "looks", "rainbow" ] +}, { + "name" : "linked_camera", + "tags" : [ "camera", "connect", "connection", "lens", "linked", "network", "photo", "photography", "picture", "signal", "signals", "sync", "wireless" ] +}, { + "name" : "paragliding", + "tags" : [ "athlete", "athletic", "body", "entertainment", "exercise", "fly", "gliding", "hobby", "human", "parachute", "paragliding", "people", "person", "sky", "skydiving", "social", "sports", "travel" ] +}, { + "name" : "electric_scooter", + "tags" : [ "bike", "electric", "maps", "scooter", "transportation", "vehicle", "vespa" ] +}, { + "name" : "settings_system_daydream", + "tags" : [ "backup", "cloud", "daydream", "drive", "settings", "storage", "system" ] +}, { + "name" : "format_indent_decrease", + "tags" : [ "align", "alignment", "decrease", "doc", "edit", "editing", "editor", "format", "indent", "indentation", "paragraph", "sheet", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "tapas", + "tags" : [ "appetizer", "brunch", "dinner", "food", "lunch", "restaurant", "snack", "tapas" ] +}, { + "name" : "brightness_3", + "tags" : [ "3", "brightness", "circle", "control", "crescent", "level", "moon", "screen" ] +}, { + "name" : "tab_unselected", + "tags" : [ "browser", "computer", "document", "documents", "folder", "internet", "tab", "tabs", "unselected", "web", "website", "window", "windows" ] +}, { + "name" : "density_small", + "tags" : [ "density", "horizontal", "lines", "rule", "rules", "small" ] +}, { + "name" : "blur_circular", + "tags" : [ "blur", "circle", "circular", "dots", "edit", "editing", "effect", "enhance", "filter" ] +}, { + "name" : "rice_bowl", + "tags" : [ "bowl", "dinner", "food", "lunch", "meal", "restaurant", "rice" ] +}, { + "name" : "rounded_corner", + "tags" : [ "adjust", "corner", "edit", "rounded", "shape", "square", "transform" ] +}, { + "name" : "person_add_disabled", + "tags" : [ "+", "account", "add", "disabled", "enabled", "face", "human", "new", "off", "offline", "on", "people", "person", "plus", "profile", "slash", "symbol", "user" ] +}, { + "name" : "music_video", + "tags" : [ "band", "music", "recording", "screen", "tv", "video", "watch" ] +}, { + "name" : "looks_6", + "tags" : [ "6", "digit", "looks", "numbers", "square", "symbol" ] +}, { + "name" : "do_not_touch", + "tags" : [ "disabled", "do", "enabled", "fingers", "gesture", "hand", "not", "off", "on", "slash", "touch" ] +}, { + "name" : "playlist_add_circle", + "tags" : [ "add", "album", "artist", "audio", "cd", "check", "circle", "collection", "list", "mark", "music", "playlist", "record", "sound", "track" ] +}, { + "name" : "domain_disabled", + "tags" : [ "apartment", "architecture", "building", "business", "company", "disabled", "domain", "enabled", "estate", "home", "internet", "maps", "off", "office", "offline", "on", "place", "real", "residence", "residential", "slash", "web", "website" ] +}, { + "name" : "flash_auto", + "tags" : [ "a", "auto", "bolt", "electric", "fast", "flash", "lightning", "thunderbolt" ] +}, { + "name" : "6_ft_apart", + "tags" : [ "6", "apart", "body", "covid", "distance", "feet", "ft", "human", "people", "person", "social" ] +}, { + "name" : "signal_wifi_bad", + "tags" : [ "bad", "bar", "cancel", "cell", "cellular", "close", "data", "exit", "internet", "mobile", "network", "no", "phone", "quit", "remove", "signal", "stop", "wifi", "wireless", "x" ] +}, { + "name" : "crisis_alert", + "tags" : [ "!", "alert", "attention", "bullseye", "caution", "crisis", "danger", "error", "exclamation", "important", "mark", "notification", "symbol", "target", "warning" ] +}, { + "name" : "queue_play_next", + "tags" : [ "+", "add", "arrow", "desktop", "device", "display", "hardware", "monitor", "new", "next", "play", "plus", "queue", "screen", "steam", "symbol", "tv" ] +}, { + "name" : "format_clear", + "tags" : [ "T", "alphabet", "character", "clear", "disabled", "doc", "edit", "editing", "editor", "enabled", "font", "format", "letter", "off", "on", "sheet", "slash", "spreadsheet", "style", "symbol", "text", "type", "writing" ] +}, { + "name" : "bus_alert", + "tags" : [ "!", "alert", "attention", "automobile", "bus", "car", "cars", "caution", "danger", "error", "exclamation", "important", "maps", "mark", "notification", "symbol", "transportation", "vehicle", "warning" ] +}, { + "name" : "party_mode", + "tags" : [ "camera", "lens", "mode", "party", "photo", "photography", "picture" ] +}, { + "name" : "snowboarding", + "tags" : [ "athlete", "athletic", "body", "entertainment", "exercise", "hobby", "human", "people", "person", "snow", "snowboarding", "social", "sports", "travel", "winter" ] +}, { + "name" : "text_rotate_vertical", + "tags" : [ "A", "alphabet", "arrow", "character", "down", "field", "font", "letter", "move", "rotate", "symbol", "text", "type", "vertical" ] +}, { + "name" : "motion_photos_auto", + "tags" : [ "A", "alphabet", "animation", "auto", "automatic", "character", "circle", "font", "gif", "letter", "live", "motion", "photos", "symbol", "text", "type", "video" ] +}, { + "name" : "crop_portrait", + "tags" : [ "adjust", "adjustments", "area", "crop", "edit", "editing", "frame", "image", "images", "photo", "photos", "portrait", "rectangle", "settings", "size", "square" ] +}, { + "name" : "thunderstorm", + "tags" : [ "bolt", "climate", "cloud", "cloudy", "lightning", "rain", "rainfall", "rainstorm", "storm", "thunder", "thunderstorm", "weather" ] +}, { + "name" : "battery_6_bar", + "tags" : [ "6", "bar", "battery", "cell", "charge", "mobile", "power" ] +}, { + "name" : "space_bar", + "tags" : [ "bar", "keyboard", "line", "space" ] +}, { + "name" : "replay_5", + "tags" : [ "5", "arrow", "arrows", "control", "controls", "digit", "five", "music", "number", "refresh", "renew", "repeat", "replay", "symbol", "video" ] +}, { + "name" : "local_car_wash", + "tags" : [ "automobile", "car", "cars", "local", "maps", "transportation", "travel", "vehicle", "wash" ] +}, { + "name" : "folder_delete", + "tags" : [ "bin", "can", "data", "delete", "doc", "document", "drive", "file", "folder", "folders", "garbage", "remove", "sheet", "slide", "storage", "trash" ] +}, { + "name" : "data_thresholding", + "tags" : [ "data", "hidden", "privacy", "thresholding", "thresold" ] +}, { + "name" : "connecting_airports", + "tags" : [ "airplane", "airplanes", "airport", "airports", "connecting", "flight", "plane", "transportation", "travel", "trip" ] +}, { + "name" : "access_alarms", + "tags" : [ ] +}, { + "name" : "tty", + "tags" : [ "call", "cell", "contact", "deaf", "device", "hardware", "impaired", "mobile", "phone", "speech", "talk", "telephone", "text", "tty" ] +}, { + "name" : "audio_file", + "tags" : [ "audio", "doc", "document", "key", "music", "note", "sound", "track" ] +}, { + "name" : "egg", + "tags" : [ "breakfast", "brunch", "egg", "food" ] +}, { + "name" : "balcony", + "tags" : [ "architecture", "balcony", "doors", "estate", "home", "house", "maps", "out", "outside", "place", "real", "residence", "residential", "stay", "terrace", "window" ] +}, { + "name" : "kitesurfing", + "tags" : [ "athlete", "athletic", "beach", "body", "entertainment", "exercise", "hobby", "human", "kitesurfing", "people", "person", "social", "sports", "surf", "travel", "water" ] +}, { + "name" : "call_missed_outgoing", + "tags" : [ "arrow", "call", "device", "missed", "mobile", "outgoing" ] +}, { + "name" : "local_hotel", + "tags" : [ "body", "hotel", "human", "local", "people", "person", "sleep", "stay", "travel", "trip" ] +}, { + "name" : "text_increase", + "tags" : [ "+", "add", "alphabet", "character", "font", "increase", "letter", "new", "plus", "resize", "symbol", "text", "type" ] +}, { + "name" : "speaker_phone", + "tags" : [ "Android", "OS", "cell", "device", "hardware", "iOS", "mobile", "phone", "sound", "speaker", "tablet", "volume" ] +}, { + "name" : "no_food", + "tags" : [ "disabled", "drink", "enabled", "fastfood", "food", "hamburger", "meal", "no", "off", "on", "slash" ] +}, { + "name" : "brightness_2", + "tags" : [ "2", "brightness", "circle", "control", "crescent", "level", "moon", "screen" ] +}, { + "name" : "mode_of_travel", + "tags" : [ "arrow", "destination", "direction", "location", "maps", "mode", "of", "pin", "place", "stop", "transportation", "travel", "trip" ] +}, { + "name" : "format_line_spacing", + "tags" : [ "align", "alignment", "doc", "edit", "editing", "editor", "format", "line", "sheet", "spacing", "spreadsheet", "text", "type", "writing" ] +}, { + "name" : "iso", + "tags" : [ "add", "edit", "editing", "effect", "image", "iso", "minus", "photography", "picture", "plus", "sensor", "shutter", "speed", "subtract" ] +}, { + "name" : "explore_off", + "tags" : [ "compass", "destination", "direction", "disabled", "east", "enabled", "explore", "location", "maps", "needle", "north", "off", "on", "slash", "south", "travel", "west" ] +}, { + "name" : "drive_file_move_rtl", + "tags" : [ "arrow", "arrows", "data", "direction", "doc", "document", "drive", "file", "folder", "folders", "left", "move", "rtl", "sheet", "side", "slide", "storage" ] +}, { + "name" : "cell_wifi", + "tags" : [ "cell", "connection", "data", "internet", "mobile", "network", "phone", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "tonality", + "tags" : [ "circle", "edit", "editing", "filter", "image", "photography", "picture", "tonality" ] +}, { + "name" : "spoke", + "tags" : [ "connection", "network", "radius", "spoke" ] +}, { + "name" : "photo_filter", + "tags" : [ "ai", "artificial", "automatic", "automation", "custom", "filter", "filters", "genai", "image", "intelligence", "magic", "photo", "photography", "picture", "smart", "spark", "sparkle", "star" ] +}, { + "name" : "desktop_access_disabled", + "tags" : [ "Android", "OS", "access", "chrome", "desktop", "device", "disabled", "display", "enabled", "hardware", "iOS", "mac", "monitor", "off", "offline", "on", "screen", "slash", "web", "window" ] +}, { + "name" : "sports_gymnastics", + "tags" : [ "athlete", "athletic", "entertainment", "exercise", "gymnastics", "hobby", "social", "sports" ] +}, { + "name" : "houseboat", + "tags" : [ "architecture", "beach", "boat", "estate", "floating", "home", "house", "houseboat", "maps", "place", "real", "residence", "residential", "sea", "stay", "traveling", "vacation" ] +}, { + "name" : "fence", + "tags" : [ "backyard", "barrier", "boundaries", "boundary", "fence", "home", "house", "protection", "yard" ] +}, { + "name" : "commit", + "tags" : [ "accomplish", "bind", "circle", "commit", "dedicate", "execute", "line", "perform", "pledge" ] +}, { + "name" : "photo_size_select_small", + "tags" : [ "adjust", "album", "edit", "editing", "image", "large", "library", "mountain", "mountains", "photo", "photography", "picture", "select", "size", "small" ] +}, { + "name" : "signal_wifi_connected_no_internet_4", + "tags" : [ "4", "cell", "cellular", "connected", "data", "internet", "mobile", "network", "no", "offline", "phone", "signal", "wifi", "wireless", "x" ] +}, { + "name" : "horizontal_distribute", + "tags" : [ "alignment", "distribute", "format", "horizontal", "layout", "lines", "paragraph", "rule", "rules", "style", "text" ] +}, { + "name" : "report_off", + "tags" : [ "!", "alert", "attention", "caution", "danger", "disabled", "enabled", "error", "exclamation", "important", "mark", "notification", "octagon", "off", "offline", "on", "report", "slash", "symbol", "warning" ] +}, { + "name" : "polyline", + "tags" : [ "compose", "create", "design", "draw", "line", "polyline", "vector" ] +}, { + "name" : "art_track", + "tags" : [ "album", "art", "artist", "audio", "image", "music", "photo", "photography", "picture", "sound", "track", "tracks" ] +}, { + "name" : "crop_7_5", + "tags" : [ "5", "7", "adjust", "adjustments", "area", "by", "crop", "editing", "frame", "image", "images", "photo", "photos", "rectangle", "settings", "size", "square" ] +}, { + "name" : "filter_hdr", + "tags" : [ "camera", "edit", "editing", "effect", "filter", "hdr", "image", "mountain", "mountains", "photo", "photography", "picture" ] +}, { + "name" : "text_rotation_none", + "tags" : [ "A", "alphabet", "arrow", "character", "field", "font", "letter", "move", "none", "rotate", "symbol", "text", "type" ] +}, { + "name" : "battery_3_bar", + "tags" : [ "3", "bar", "battery", "cell", "charge", "mobile", "power" ] +}, { + "name" : "align_vertical_bottom", + "tags" : [ "align", "alignment", "bottom", "format", "layout", "lines", "paragraph", "rule", "rules", "style", "text", "vertical" ] +}, { + "name" : "stop_screen_share", + "tags" : [ "Android", "OS", "arrow", "cast", "chrome", "device", "disabled", "display", "enabled", "hardware", "iOS", "laptop", "mac", "mirror", "monitor", "off", "offline", "on", "screen", "share", "slash", "steam", "stop", "streaming", "web", "window" ] +}, { + "name" : "imagesearch_roller", + "tags" : [ "art", "image", "imagesearch", "paint", "roller", "search" ] +}, { + "name" : "bento", + "tags" : [ "bento", "box", "dinner", "food", "lunch", "meal", "restaurant", "takeout" ] +}, { + "name" : "rotate_90_degrees_cw", + "tags" : [ "90", "arrow", "arrows", "ccw", "degrees", "direction", "edit", "editing", "image", "photo", "rotate", "turn" ] +}, { + "name" : "install_mobile", + "tags" : [ "Android", "OS", "cell", "device", "hardware", "iOS", "install", "mobile", "phone", "pwa", "tablet" ] +}, { + "name" : "hearing_disabled", + "tags" : [ "accessibility", "accessible", "aid", "disabled", "ear", "enabled", "handicap", "hearing", "help", "impaired", "listen", "off", "on", "slash", "sound", "volume" ] +}, { + "name" : "video_file", + "tags" : [ "camera", "doc", "document", "film", "filming", "hardware", "image", "motion", "picture", "video", "videography" ] +}, { + "name" : "mms", + "tags" : [ "bubble", "chat", "comment", "communicate", "feedback", "image", "landscape", "message", "mms", "mountain", "mountains", "multimedia", "photo", "photography", "picture", "speech" ] +}, { + "name" : "crop_rotate", + "tags" : [ "adjust", "adjustments", "area", "arrow", "arrows", "crop", "edit", "editing", "frame", "image", "images", "photo", "photos", "rotate", "settings", "size", "turn" ] +}, { + "name" : "wheelchair_pickup", + "tags" : [ "accessibility", "accessible", "body", "handicap", "help", "human", "person", "pickup", "wheelchair" ] +}, { + "name" : "aod", + "tags" : [ "Android", "OS", "always", "aod", "device", "display", "hardware", "homescreen", "iOS", "mobile", "on", "phone", "tablet" ] +}, { + "name" : "castle", + "tags" : [ "castle", "fort", "fortress", "mansion", "palace" ] +}, { + "name" : "interpreter_mode", + "tags" : [ "interpreter", "language", "microphone", "mode", "person", "speaking", "symbol" ] +}, { + "name" : "access_alarm", + "tags" : [ ] +}, { + "name" : "forward_5", + "tags" : [ "10", "5", "arrow", "control", "controls", "digit", "fast", "forward", "music", "number", "seconds", "symbol", "video" ] +}, { + "name" : "add_to_home_screen", + "tags" : [ "Android", "OS", "add to", "arrow", "cell", "device", "hardware", "home", "iOS", "mobile", "phone", "screen", "tablet", "up" ] +}, { + "name" : "not_accessible", + "tags" : [ "accessibility", "accessible", "body", "handicap", "help", "human", "not", "person", "wheelchair" ] +}, { + "name" : "signal_cellular_0_bar", + "tags" : [ "0", "bar", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "signal", "speed", "wifi", "wireless" ] +}, { + "name" : "stadium", + "tags" : [ "activity", "amphitheater", "arena", "coliseum", "event", "local", "stadium", "star", "things", "ticket" ] +}, { + "name" : "photo_size_select_large", + "tags" : [ "adjust", "album", "edit", "editing", "image", "large", "library", "mountain", "mountains", "photo", "photography", "picture", "select", "size" ] +}, { + "name" : "groups_3", + "tags" : [ "abstract", "body", "club", "collaboration", "crowd", "gathering", "groups", "human", "meeting", "people", "person", "social", "teams" ] +}, { + "name" : "snowshoeing", + "tags" : [ "body", "human", "people", "person", "snow", "snowshoe", "snowshoeing", "sports", "travel", "walking", "winter" ] +}, { + "name" : "view_kanban", + "tags" : [ "grid", "kanban", "layout", "pattern", "squares", "view" ] +}, { + "name" : "candlestick_chart", + "tags" : [ "analytics", "candlestick", "chart", "data", "diagram", "finance", "graph", "infographic", "measure", "metrics", "statistics", "tracking" ] +}, { + "name" : "filter_3", + "tags" : [ "3", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "arrow_outward", + "tags" : [ "app", "application", "arrow", "arrows", "components", "direction", "forward", "interface", "navigation", "right", "screen", "site", "ui", "ux", "web", "website" ] +}, { + "name" : "align_horizontal_center", + "tags" : [ "align", "alignment", "center", "format", "horizontal", "layout", "lines", "paragraph", "rule", "rules", "style", "text" ] +}, { + "name" : "flashlight_off", + "tags" : [ "disabled", "enabled", "flash", "flashlight", "light", "off", "on", "slash" ] +}, { + "name" : "security_update", + "tags" : [ "Android", "OS", "arrow", "device", "down", "download", "hardware", "iOS", "mobile", "phone", "security", "tablet", "update" ] +}, { + "name" : "iron", + "tags" : [ "appliance", "clothes", "electric", "iron", "ironing", "machine", "object" ] +}, { + "name" : "print_disabled", + "tags" : [ "disabled", "enabled", "off", "on", "paper", "print", "printer", "slash" ] +}, { + "name" : "pin_invoke", + "tags" : [ "action", "arrow", "dot", "invoke", "pin" ] +}, { + "name" : "speaker_group", + "tags" : [ "box", "electronic", "group", "loud", "multiple", "music", "sound", "speaker", "stereo", "system", "video" ] +}, { + "name" : "exposure_zero", + "tags" : [ "0", "brightness", "contrast", "digit", "edit", "editing", "effect", "exposure", "image", "number", "photo", "photography", "settings", "symbol", "zero" ] +}, { + "name" : "bungalow", + "tags" : [ "architecture", "bungalow", "cottage", "estate", "home", "house", "maps", "place", "real", "residence", "residential", "stay", "traveling" ] +}, { + "name" : "streetview", + "tags" : [ "maps", "street", "streetview", "view" ] +}, { + "name" : "swipe_down", + "tags" : [ "arrows", "direction", "disable", "down", "enable", "finger", "hands", "hit", "navigation", "strike", "swing", "swpie", "take" ] +}, { + "name" : "hdr_weak", + "tags" : [ "circles", "dots", "dynamic", "enhance", "hdr", "high", "range", "weak" ] +}, { + "name" : "css", + "tags" : [ "alphabet", "brackets", "character", "code", "css", "develop", "developer", "engineer", "engineering", "font", "html", "letter", "platform", "symbol", "text", "type" ] +}, { + "name" : "call_missed", + "tags" : [ "arrow", "call", "device", "missed", "mobile" ] +}, { + "name" : "gps_off", + "tags" : [ "destination", "direction", "disabled", "enabled", "gps", "location", "maps", "not fixed", "off", "offline", "on", "place", "pointer", "slash", "tracking" ] +}, { + "name" : "sports_hockey", + "tags" : [ "athlete", "athletic", "entertainment", "exercise", "game", "hobby", "hockey", "social", "sports", "sticks" ] +}, { + "name" : "ice_skating", + "tags" : [ "athlete", "athletic", "entertainment", "exercise", "hobby", "ice", "shoe", "skates", "skating", "social", "sports", "travel" ] +}, { + "name" : "keyboard_capslock", + "tags" : [ "arrow", "capslock", "keyboard", "up" ] +}, { + "name" : "earbuds", + "tags" : [ "accessory", "audio", "earbuds", "earphone", "headphone", "listen", "music", "sound" ] +}, { + "name" : "camera_front", + "tags" : [ "body", "camera", "front", "human", "lens", "mobile", "person", "phone", "photography", "portrait", "selfie" ] +}, { + "name" : "vertical_distribute", + "tags" : [ "alignment", "distribute", "format", "layout", "lines", "paragraph", "rule", "rules", "style", "text", "vertical" ] +}, { + "name" : "currency_ruble", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "price", "ruble", "shopping", "symbol" ] +}, { + "name" : "signal_wifi_statusbar_null", + "tags" : [ "cell", "cellular", "data", "internet", "mobile", "network", "null", "phone", "signal", "speed", "statusbar", "wifi", "wireless" ] +}, { + "name" : "align_horizontal_right", + "tags" : [ "align", "alignment", "format", "horizontal", "layout", "lines", "paragraph", "right", "rule", "rules", "style", "text" ] +}, { + "name" : "crop_5_4", + "tags" : [ "4", "5", "adjust", "adjustments", "area", "by", "crop", "edit", "editing settings", "frame", "image", "images", "photo", "photos", "rectangle", "size", "square" ] +}, { + "name" : "format_strikethrough", + "tags" : [ "alphabet", "character", "doc", "edit", "editing", "editor", "font", "format", "letter", "sheet", "spreadsheet", "strikethrough", "style", "symbol", "text", "type", "writing" ] +}, { + "name" : "face_6", + "tags" : [ "account", "emoji", "eyes", "face", "human", "lock", "log", "login", "logout", "people", "person", "profile", "recognition", "security", "social", "thumbnail", "unlock", "user" ] +}, { + "name" : "join_left", + "tags" : [ "circle", "command", "join", "left", "matching", "overlap", "sql", "values" ] +}, { + "name" : "explicit", + "tags" : [ "adult", "alphabet", "character", "content", "e", "explicit", "font", "language", "letter", "media", "movies", "music", "symbol", "text", "type" ] +}, { + "name" : "extension_off", + "tags" : [ "disabled", "enabled", "extended", "extension", "jigsaw", "off", "on", "piece", "puzzle", "shape", "slash" ] +}, { + "name" : "perm_camera_mic", + "tags" : [ "camera", "image", "microphone", "min", "perm", "photo", "photography", "picture", "speaker" ] +}, { + "name" : "sports_rugby", + "tags" : [ "athlete", "athletic", "ball", "entertainment", "exercise", "game", "hobby", "rugby", "social", "sports" ] +}, { + "name" : "pause_presentation", + "tags" : [ "app", "application desktop", "device", "pause", "present", "presentation", "screen", "share", "site", "slides", "web", "website", "window", "www" ] +}, { + "name" : "south_america", + "tags" : [ "continent", "landscape", "place", "region", "south america" ] +}, { + "name" : "sd_storage", + "tags" : [ "camera", "card", "data", "digital", "memory", "sd", "secure", "storage" ] +}, { + "name" : "superscript", + "tags" : [ "2", "doc", "edit", "editing", "editor", "gmail", "novitas", "sheet", "spreadsheet", "style", "superscript", "symbol", "text", "writing", "x" ] +}, { + "name" : "4g_mobiledata", + "tags" : [ "4g", "alphabet", "cellular", "character", "digit", "font", "letter", "mobile", "mobiledata", "network", "number", "phone", "signal", "speed", "symbol", "text", "type", "wifi" ] +}, { + "name" : "pinch", + "tags" : [ "arrow", "arrows", "compress", "direction", "finger", "grasp", "hand", "navigation", "nip", "pinch", "squeeze", "tweak" ] +}, { + "name" : "lock_person", + "tags" : [ ] +}, { + "name" : "grid_3x3", + "tags" : [ "3", "grid", "layout", "line", "space" ] +}, { + "name" : "mark_unread_chat_alt", + "tags" : [ "bubble", "chat", "circle", "comment", "communicate", "mark", "message", "notification", "speech", "unread" ] +}, { + "name" : "web_stories", + "tags" : [ "google", "images", "logo", "stories", "web" ] +}, { + "name" : "safety_check", + "tags" : [ "certified", "check", "clock", "privacy", "private", "protect", "protection", "safety", "schedule", "security", "shield", "time", "verified" ] +}, { + "name" : "filter_frames", + "tags" : [ "boarders", "border", "camera", "center", "edit", "editing", "effect", "filter", "filters", "focus", "frame", "frames", "image", "options", "photo", "photography", "picture" ] +}, { + "name" : "spatial_audio_off", + "tags" : [ "audio", "disabled", "enabled", "music", "note", "off", "offline", "on", "slash", "sound", "spatial" ] +}, { + "name" : "directions_subway", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "maps", "public", "rail", "subway", "train", "transportation", "vehicle" ] +}, { + "name" : "reset_tv", + "tags" : [ "arrow", "device", "hardware", "monitor", "reset", "television", "tv" ] +}, { + "name" : "4k", + "tags" : [ "4000", "4K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "burst_mode", + "tags" : [ "burst", "image", "landscape", "mode", "mountain", "mountains", "multiple", "photo", "photography", "picture" ] +}, { + "name" : "chalet", + "tags" : [ "architecture", "chalet", "cottage", "estate", "home", "house", "maps", "place", "real", "residence", "residential", "stay", "traveling" ] +}, { + "name" : "battery_1_bar", + "tags" : [ "1", "bar", "battery", "cell", "charge", "mobile", "power" ] +}, { + "name" : "elderly_woman", + "tags" : [ "body", "cane", "elderly", "female", "gender", "girl", "human", "lady", "old", "people", "person", "senior", "social", "symbol", "woman", "women" ] +}, { + "name" : "headset_off", + "tags" : [ "accessory", "audio", "chat", "device", "disabled", "ear", "earphone", "enabled", "headphones", "headset", "listen", "mic", "music", "off", "on", "slash", "sound", "talk" ] +}, { + "name" : "swipe_vertical", + "tags" : [ "arrows", "direction", "finger", "hands", "hit", "navigation", "strike", "swing", "swpie", "take", "verticle" ] +}, { + "name" : "crib", + "tags" : [ "babies", "baby", "bassinet", "bed", "child", "children", "cradle", "crib", "infant", "kid", "newborn", "sleeping", "toddler" ] +}, { + "name" : "video_label", + "tags" : [ "label", "screen", "video", "window" ] +}, { + "name" : "fiber_smart_record", + "tags" : [ "circle", "dot", "fiber", "play", "record", "smart", "watch" ] +}, { + "name" : "brightness_auto", + "tags" : [ "A", "auto", "brightness", "control", "display", "level", "mobile", "monitor", "phone", "screen", "sun" ] +}, { + "name" : "margin", + "tags" : [ "design", "layout", "margin", "padding", "size", "square" ] +}, { + "name" : "punch_clock", + "tags" : [ "clock", "date", "punch", "schedule", "time", "timer", "timesheet" ] +}, { + "name" : "compass_calibration", + "tags" : [ "calibration", "compass", "connection", "internet", "location", "maps", "network", "refresh", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "mosque", + "tags" : [ "islam", "islamic", "masjid", "muslim", "religion", "spiritual", "worship" ] +}, { + "name" : "medication_liquid", + "tags" : [ "+", "bottle", "doctor", "drug", "health", "hospital", "liquid", "medications", "medicine", "pharmacy", "spoon", "vessel" ] +}, { + "name" : "camera_roll", + "tags" : [ "camera", "film", "image", "library", "photo", "photography", "roll" ] +}, { + "name" : "pin_end", + "tags" : [ "action", "arrow", "dot", "end", "pin" ] +}, { + "name" : "dialer_sip", + "tags" : [ "alphabet", "call", "cell", "character", "contact", "device", "dialer", "font", "hardware", "initiation", "internet", "letter", "mobile", "over", "phone", "protocol", "routing", "session", "sip", "symbol", "telephone", "text", "type", "voice" ] +}, { + "name" : "oil_barrel", + "tags" : [ "barrel", "droplet", "gas", "gasoline", "nest", "oil", "water" ] +}, { + "name" : "disc_full", + "tags" : [ "!", "alert", "attention", "caution", "cd", "danger", "disc", "error", "exclamation", "full", "important", "mark", "music", "notification", "storage", "symbol", "warning" ] +}, { + "name" : "signal_cellular_connected_no_internet_4_bar", + "tags" : [ "!", "4", "alert", "attention", "bar", "caution", "cell", "cellular", "connected", "danger", "data", "error", "exclamation", "important", "internet", "mark", "mobile", "network", "no", "notification", "phone", "signal", "symbol", "warning", "wifi", "wireless" ] +}, { + "name" : "wind_power", + "tags" : [ "eco", "energy", "nest", "power", "wind", "windy" ] +}, { + "name" : "logo_dev", + "tags" : [ "dev", "dev.to", "logo" ] +}, { + "name" : "sledding", + "tags" : [ "athlete", "athletic", "body", "entertainment", "exercise", "hobby", "human", "people", "person", "sled", "sledding", "sledge", "snow", "social", "sports", "travel", "winter" ] +}, { + "name" : "invert_colors_off", + "tags" : [ "colors", "disabled", "drop", "droplet", "enabled", "hue", "invert", "inverted", "off", "offline", "on", "opacity", "palette", "slash", "tone", "water" ] +}, { + "name" : "wifi_lock", + "tags" : [ "cellular", "connection", "data", "internet", "lock", "locked", "mobile", "network", "password", "privacy", "private", "protection", "safety", "secure", "security", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "noise_aware", + "tags" : [ "audio", "aware", "cancellation", "music", "noise", "note", "sound" ] +}, { + "name" : "face_3", + "tags" : [ "account", "emoji", "eyes", "face", "human", "lock", "log", "login", "logout", "people", "person", "profile", "recognition", "security", "social", "thumbnail", "unlock", "user" ] +}, { + "name" : "car_crash", + "tags" : [ "accident", "automobile", "car", "cars", "collision", "crash", "direction", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "comments_disabled", + "tags" : [ "bubble", "chat", "comment", "comments", "communicate", "disabled", "enabled", "feedback", "message", "off", "offline", "on", "slash", "speech" ] +}, { + "name" : "data_array", + "tags" : [ "array", "brackets", "code", "coder", "data", "parentheses" ] +}, { + "name" : "do_not_disturb_on_total_silence", + "tags" : [ "busy", "disturb", "do", "mute", "no", "not", "on total", "quiet", "silence" ] +}, { + "name" : "filter_b_and_w", + "tags" : [ "and", "b", "black", "contrast", "edit", "editing", "effect", "filter", "grayscale", "image", "images", "photography", "picture", "pictures", "settings", "w", "white" ] +}, { + "name" : "no_encryption_gmailerrorred", + "tags" : [ "disabled", "enabled", "encryption", "error", "gmail", "lock", "locked", "no", "off", "on", "slash" ] +}, { + "name" : "blur_linear", + "tags" : [ "blur", "dots", "edit", "editing", "effect", "enhance", "filter", "linear" ] +}, { + "name" : "view_cozy", + "tags" : [ "comfy", "cozy", "design", "format", "layout", "view", "web" ] +}, { + "name" : "wifi_calling", + "tags" : [ "call", "calling", "cell", "connect", "connection", "connectivity", "contact", "device", "hardware", "mobile", "phone", "signal", "telephone", "wifi", "wireless" ] +}, { + "name" : "electric_rickshaw", + "tags" : [ "automobile", "car", "cars", "electric", "india", "maps", "rickshaw", "transportation", "truck", "vehicle" ] +}, { + "name" : "rtt", + "tags" : [ "call", "real", "rrt", "text", "time" ] +}, { + "name" : "join_right", + "tags" : [ "circle", "command", "join", "matching", "overlap", "right", "sql", "values" ] +}, { + "name" : "crop_3_2", + "tags" : [ "2", "3", "adjust", "adjustments", "area", "by", "crop", "edit", "editing", "frame", "image", "images", "photo", "photos", "rectangle", "settings", "size", "square" ] +}, { + "name" : "crop_landscape", + "tags" : [ "adjust", "adjustments", "area", "crop", "edit", "editing", "frame", "image", "images", "landscape", "photo", "photos", "settings", "size" ] +}, { + "name" : "nearby_error", + "tags" : [ "!", "alert", "attention", "caution", "danger", "error", "exclamation", "important", "mark", "nearby", "notification", "symbol", "warning" ] +}, { + "name" : "airplanemode_inactive", + "tags" : [ "airplane", "airplanemode", "airport", "disabled", "enabled", "flight", "fly", "inactive", "maps", "mode", "off", "offline", "on", "slash", "transportation", "travel" ] +}, { + "name" : "airline_stops", + "tags" : [ "airline", "arrow", "destination", "direction", "layover", "location", "maps", "place", "stops", "transportation", "travel", "trip" ] +}, { + "name" : "bluetooth_audio", + "tags" : [ "audio", "bluetooth", "connect", "connection", "device", "music", "signal", "sound", "symbol" ] +}, { + "name" : "portable_wifi_off", + "tags" : [ "connection", "data", "disabled", "enabled", "internet", "network", "off", "offline", "on", "portable", "service", "signal", "slash", "wifi", "wireless" ] +}, { + "name" : "turn_right", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "right", "route", "sign", "traffic", "turn" ] +}, { + "name" : "1x_mobiledata", + "tags" : [ "1x", "alphabet", "cellular", "character", "digit", "font", "letter", "mobile", "mobiledata", "network", "number", "phone", "signal", "speed", "symbol", "text", "type", "wifi" ] +}, { + "name" : "do_not_step", + "tags" : [ "boot", "disabled", "do", "enabled", "feet", "foot", "not", "off", "on", "shoe", "slash", "sneaker", "step", "steps" ] +}, { + "name" : "sensor_occupied", + "tags" : [ "body", "body response", "connection", "fitbit", "human", "network", "people", "person", "scan", "sensors", "signal", "smart body scan sensor", "wireless" ] +}, { + "name" : "directions_railway", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "maps", "public", "railway", "train", "transportation", "vehicle" ] +}, { + "name" : "security_update_warning", + "tags" : [ "!", "Android", "OS", "alert", "attention", "caution", "danger", "device", "download", "error", "exclamation", "hardware", "iOS", "important", "mark", "mobile", "notification", "phone", "security", "symbol", "tablet", "update", "warning" ] +}, { + "name" : "pentagon", + "tags" : [ "five sides", "pentagon", "shape" ] +}, { + "name" : "wrap_text", + "tags" : [ "arrow writing", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "text", "type", "wrap", "write", "writing" ] +}, { + "name" : "no_meeting_room", + "tags" : [ "building", "disabled", "door", "doorway", "enabled", "entrance", "home", "house", "interior", "meeting", "no", "off", "office", "on", "open", "places", "room", "slash" ] +}, { + "name" : "sd_card_alert", + "tags" : [ "!", "alert", "attention", "camera", "card", "caution", "danger", "digital", "error", "exclamation", "important", "mark", "memory", "notification", "photos", "sd", "secure", "storage", "symbol", "warning" ] +}, { + "name" : "deselect", + "tags" : [ "all", "disabled", "enabled", "off", "on", "selection", "slash", "square", "tool" ] +}, { + "name" : "switch_camera", + "tags" : [ "arrow", "arrows", "camera", "photo", "photography", "picture", "switch" ] +}, { + "name" : "text_rotate_up", + "tags" : [ "A", "alphabet", "arrow", "character", "field", "font", "letter", "move", "rotate", "symbol", "text", "type", "up" ] +}, { + "name" : "sync_lock", + "tags" : [ "around", "arrow", "arrows", "lock", "locked", "password", "privacy", "private", "protection", "renew", "rotate", "safety", "secure", "security", "sync", "turn" ] +}, { + "name" : "switch_video", + "tags" : [ "arrow", "arrows", "camera", "photography", "switch", "video", "videos" ] +}, { + "name" : "border_clear", + "tags" : [ "border", "clear", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "repeat_one_on", + "tags" : [ "arrow", "arrows", "control", "controls", "digit", "media", "music", "number", "on", "one", "repeat", "symbol", "video" ] +}, { + "name" : "no_meals", + "tags" : [ "dining", "disabled", "eat", "enabled", "food", "fork", "knife", "meal", "meals", "no", "off", "on", "restaurant", "slash", "spoon", "utensils" ] +}, { + "name" : "align_vertical_top", + "tags" : [ "align", "alignment", "format", "layout", "lines", "paragraph", "rule", "rules", "style", "text", "top", "vertical" ] +}, { + "name" : "subscript", + "tags" : [ "2", "doc", "edit", "editing", "editor", "gmail", "novitas", "sheet", "spreadsheet", "style", "subscript", "symbol", "text", "writing", "x" ] +}, { + "name" : "font_download_off", + "tags" : [ "alphabet", "character", "disabled", "download", "enabled", "font", "letter", "off", "on", "slash", "square", "symbol", "text", "type" ] +}, { + "name" : "scoreboard", + "tags" : [ "board", "points", "score", "scoreboard", "sports" ] +}, { + "name" : "swipe_right_alt", + "tags" : [ "accept", "alt", "arrows", "direction", "finger", "hands", "hit", "navigation", "right", "strike", "swing", "swpie", "take" ] +}, { + "name" : "align_vertical_center", + "tags" : [ "align", "alignment", "center", "format", "layout", "lines", "paragraph", "rule", "rules", "style", "text", "vertical" ] +}, { + "name" : "electric_meter", + "tags" : [ "bolt", "electric", "energy", "fast", "lightning", "measure", "meter", "nest", "thunderbolt", "usage", "voltage", "volts" ] +}, { + "name" : "contact_emergency", + "tags" : [ "account", "avatar", "call", "cell", "contacts", "face", "human", "info", "information", "mobile", "people", "person", "phone", "profile", "user" ] +}, { + "name" : "signal_cellular_connected_no_internet_0_bar", + "tags" : [ "!", "0", "alert", "attention", "bar", "caution", "cell", "cellular", "connected", "danger", "data", "error", "exclamation", "important", "internet", "mark", "mobile", "network", "no", "notification", "phone", "signal", "symbol", "warning", "wifi", "wireless" ] +}, { + "name" : "sim_card_alert", + "tags" : [ "!", "alert", "attention", "camera", "card", "caution", "danger", "digital", "error", "exclamation", "important", "mark", "memory", "notification", "photos", "sd", "secure", "storage", "symbol", "warning" ] +}, { + "name" : "battery_2_bar", + "tags" : [ "2", "bar", "battery", "cell", "charge", "mobile", "power" ] +}, { + "name" : "text_rotation_angleup", + "tags" : [ "A", "alphabet", "angleup", "arrow", "character", "field", "font", "letter", "move", "rotate", "symbol", "text", "type" ] +}, { + "name" : "text_rotation_down", + "tags" : [ "A", "alphabet", "arrow", "character", "dow", "field", "font", "letter", "move", "rotate", "symbol", "text", "type" ] +}, { + "name" : "railway_alert", + "tags" : [ "!", "alert", "attention", "automobile", "bike", "car", "cars", "caution", "danger", "direction", "error", "exclamation", "important", "maps", "mark", "notification", "public", "railway", "scooter", "subway", "symbol", "train", "transportation", "vehicle", "vespa", "warning" ] +}, { + "name" : "escalator", + "tags" : [ "down", "escalator", "staircase", "up" ] +}, { + "name" : "electric_moped", + "tags" : [ "automobile", "bike", "car", "cars", "electric", "maps", "moped", "scooter", "transportation", "travel", "vehicle", "vespa" ] +}, { + "name" : "closed_caption_disabled", + "tags" : [ "accessible", "alphabet", "caption", "cc", "character", "closed", "decoder", "disabled", "enabled", "font", "language", "letter", "media", "movies", "off", "on", "slash", "subtitle", "subtitles", "symbol", "text", "tv", "type" ] +}, { + "name" : "filter_7", + "tags" : [ "7", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "heat_pump", + "tags" : [ "air conditioner", "cool", "energy", "furnance", "heat", "nest", "pump", "usage" ] +}, { + "name" : "dry", + "tags" : [ "air", "bathroom", "dry", "dryer", "fingers", "gesture", "hand", "wc" ] +}, { + "name" : "fork_right", + "tags" : [ "arrow", "arrows", "direction", "directions", "fork", "maps", "navigation", "path", "right", "route", "sign", "traffic" ] +}, { + "name" : "text_rotation_angledown", + "tags" : [ "A", "alphabet", "angledown", "arrow", "character", "field", "font", "letter", "move", "rotate", "symbol", "text", "type" ] +}, { + "name" : "do_not_disturb_off", + "tags" : [ "cancel", "close", "denied", "deny", "disabled", "disturb", "do", "enabled", "off", "on", "remove", "silence", "slash", "stop" ] +}, { + "name" : "screen_lock_portrait", + "tags" : [ "Android", "OS", "device", "hardware", "iOS", "lock", "mobile", "phone", "portrait", "rotate", "screen", "tablet" ] +}, { + "name" : "send_time_extension", + "tags" : [ "deliver", "dispatch", "envelop", "extension", "mail", "message", "schedule", "send", "time" ] +}, { + "name" : "keyboard_command_key", + "tags" : [ "button", "command key", "control", "keyboard" ] +}, { + "name" : "remove_from_queue", + "tags" : [ "desktop", "device", "display", "from", "hardware", "monitor", "queue", "remove", "screen", "steam" ] +}, { + "name" : "filter_4", + "tags" : [ "4", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "filter_9_plus", + "tags" : [ "+", "9", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "plus", "settings", "stack", "symbol" ] +}, { + "name" : "exposure_plus_2", + "tags" : [ "2", "add", "brightness", "contrast", "digit", "edit", "editing", "effect", "exposure", "image", "number", "photo", "photography", "plus", "settings", "symbol" ] +}, { + "name" : "surround_sound", + "tags" : [ "circle", "signal", "sound", "speaker", "surround", "system", "volumn", "wireless" ] +}, { + "name" : "airline_seat_individual_suite", + "tags" : [ "airline", "body", "business", "class", "first", "human", "individual", "people", "person", "rest", "seat", "sleep", "suite", "travel" ] +}, { + "name" : "home_max", + "tags" : [ "device", "gadget", "hardware", "home", "internet", "iot", "max", "nest", "smart", "things" ] +}, { + "name" : "phone_paused", + "tags" : [ "call", "cell", "contact", "device", "hardware", "mobile", "pause", "paused", "phone", "telephone" ] +}, { + "name" : "local_play", + "tags" : [ ] +}, { + "name" : "stroller", + "tags" : [ "baby", "care", "carriage", "child", "children", "infant", "kid", "newborn", "stroller", "toddler", "young" ] +}, { + "name" : "wifi_password", + "tags" : [ "(scan)", "[cellular", "connection", "data", "internet", "lock", "mobile]", "network", "password", "secure", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "browse_gallery", + "tags" : [ "clock", "collection", "gallery", "library", "stack", "watch" ] +}, { + "name" : "system_security_update", + "tags" : [ "Android", "OS", "arrow", "cell", "device", "down", "hardware", "iOS", "mobile", "phone", "security", "system", "tablet", "update" ] +}, { + "name" : "person_2", + "tags" : [ "account", "face", "human", "people", "person", "profile", "user" ] +}, { + "name" : "screenshot_monitor", + "tags" : [ "Android", "OS", "chrome", "desktop", "device", "display", "hardware", "iOS", "mac", "monitor", "screen", "screengrab", "screenshot", "web", "window" ] +}, { + "name" : "wb_iridescent", + "tags" : [ "balance", "bright", "edit", "editing", "iridescent", "light", "lighting", "setting", "settings", "white", "wp" ] +}, { + "name" : "grid_off", + "tags" : [ "collage", "disabled", "enabled", "grid", "image", "layout", "off", "on", "slash", "view" ] +}, { + "name" : "system_security_update_warning", + "tags" : [ "!", "Android", "OS", "alert", "attention", "caution", "cell", "danger", "device", "error", "exclamation", "hardware", "iOS", "important", "mark", "mobile", "notification", "phone", "security", "symbol", "system", "tablet", "update", "warning" ] +}, { + "name" : "play_disabled", + "tags" : [ "control", "controls", "disabled", "enabled", "media", "music", "off", "on", "play", "slash", "video" ] +}, { + "name" : "php", + "tags" : [ "alphabet", "brackets", "character", "code", "css", "develop", "developer", "engineer", "engineering", "font", "html", "letter", "php", "platform", "symbol", "text", "type" ] +}, { + "name" : "phishing", + "tags" : [ "fish", "fishing", "fraud", "hook", "phishing", "scam" ] +}, { + "name" : "border_style", + "tags" : [ "border", "color", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "stroke", "style", "text", "type", "writing" ] +}, { + "name" : "motion_photos_paused", + "tags" : [ "animation", "circle", "motion", "pause", "paused", "photos", "video" ] +}, { + "name" : "headphones_battery", + "tags" : [ "accessory", "audio", "battery", "charging", "device", "ear", "earphone", "headphones", "headset", "listen", "music", "sound" ] +}, { + "name" : "monochrome_photos", + "tags" : [ "black", "camera", "image", "monochrome", "photo", "photography", "photos", "picture", "white" ] +}, { + "name" : "web_asset_off", + "tags" : [ "asset", "browser", "disabled", "enabled", "internet", "off", "on", "page", "screen", "slash", "web", "webpage", "website", "windows", "www" ] +}, { + "name" : "wifi_tethering_off", + "tags" : [ "cell", "cellular", "connection", "data", "disabled", "enabled", "internet", "mobile", "network", "off", "offline", "on", "phone", "scan", "service", "signal", "slash", "speed", "tethering", "wifi", "wireless" ] +}, { + "name" : "text_decrease", + "tags" : [ "-", "alphabet", "character", "decrease", "font", "letter", "minus", "remove", "resize", "subtract", "symbol", "text", "type" ] +}, { + "name" : "view_comfy_alt", + "tags" : [ "alt", "comfy", "cozy", "design", "format", "layout", "view", "web" ] +}, { + "name" : "photo_camera_back", + "tags" : [ "back", "camera", "image", "landscape", "mountain", "mountains", "photo", "photography", "picture", "rear" ] +}, { + "name" : "folder_off", + "tags" : [ "data", "disabled", "doc", "document", "drive", "enabled", "file", "folder", "folders", "off", "on", "online", "sheet", "slash", "slide", "storage" ] +}, { + "name" : "gas_meter", + "tags" : [ "droplet", "energy", "gas", "measure", "meter", "nest", "usage", "water" ] +}, { + "name" : "edgesensor_high", + "tags" : [ "Android", "OS", "cell", "device", "edge", "hardware", "high", "iOS", "mobile", "move", "phone", "sensitivity", "sensor", "tablet", "vibrate" ] +}, { + "name" : "filter_5", + "tags" : [ "5", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "stay_current_landscape", + "tags" : [ "Android", "OS", "current", "device", "hardware", "iOS", "landscape", "mobile", "phone", "stay", "tablet" ] +}, { + "name" : "sip", + "tags" : [ "alphabet", "call", "character", "dialer", "font", "initiation", "internet", "letter", "over", "phone", "protocol", "routing", "session", "sip", "symbol", "text", "type", "voice" ] +}, { + "name" : "power_input", + "tags" : [ "input", "lines", "power", "supply" ] +}, { + "name" : "smart_screen", + "tags" : [ "Android", "OS", "airplay", "cast", "cell", "connect", "device", "hardware", "iOS", "mobile", "phone", "screen", "screencast", "smart", "stream", "tablet", "video" ] +}, { + "name" : "mail_lock", + "tags" : [ "email", "envelop", "letter", "lock", "locked", "mail", "message", "password", "privacy", "private", "protection", "safety", "secure", "security", "send" ] +}, { + "name" : "dataset", + "tags" : [ ] +}, { + "name" : "nat", + "tags" : [ "communication", "nat" ] +}, { + "name" : "do_disturb_off", + "tags" : [ "cancel", "close", "denied", "deny", "disabled", "disturb", "do", "enabled", "off", "on", "remove", "silence", "slash", "stop" ] +}, { + "name" : "no_drinks", + "tags" : [ "alcohol", "beverage", "bottle", "cocktail", "drink", "drinks", "food", "liquor", "no", "wine" ] +}, { + "name" : "bike_scooter", + "tags" : [ "automobile", "bike", "car", "cars", "maps", "scooter", "transportation", "vehicle", "vespa" ] +}, { + "name" : "dock", + "tags" : [ "Android", "OS", "cell", "charging", "connector", "device", "dock", "hardware", "iOS", "mobile", "phone", "power", "station", "tablet" ] +}, { + "name" : "face_2", + "tags" : [ "account", "emoji", "eyes", "face", "human", "lock", "log", "login", "logout", "people", "person", "profile", "recognition", "security", "social", "thumbnail", "unlock", "user" ] +}, { + "name" : "face_retouching_off", + "tags" : [ "disabled", "edit", "editing", "effect", "emoji", "emotion", "enabled", "face", "faces", "image", "natural", "off", "on", "photo", "photography", "retouch", "retouching", "settings", "slash", "tag" ] +}, { + "name" : "auto_fix_off", + "tags" : [ "ai", "artificial", "auto", "automatic", "automation", "custom", "disabled", "edit", "enabled", "erase", "fix", "genai", "intelligence", "magic", "modify", "off", "on", "slash", "smart", "spark", "sparkle", "star", "wand" ] +}, { + "name" : "airline_seat_flat", + "tags" : [ "airline", "body", "business", "class", "first", "flat", "human", "people", "person", "rest", "seat", "sleep", "travel" ] +}, { + "name" : "phone_locked", + "tags" : [ "call", "cell", "contact", "device", "hardware", "lock", "locked", "mobile", "password", "phone", "privacy", "private", "protection", "safety", "secure", "security", "telephone" ] +}, { + "name" : "network_locked", + "tags" : [ "alert", "available", "cellular", "connection", "data", "error", "internet", "lock", "locked", "mobile", "network", "not", "privacy", "private", "protection", "restricted", "safety", "secure", "security", "service", "signal", "warning", "wifi", "wireless" ] +}, { + "name" : "padding", + "tags" : [ "design", "layout", "margin", "padding", "size", "square" ] +}, { + "name" : "browser_not_supported", + "tags" : [ "browser", "disabled", "enabled", "internet", "not", "off", "on", "page", "screen", "site", "slash", "supported", "web", "website", "www" ] +}, { + "name" : "border_outer", + "tags" : [ "border", "doc", "edit", "editing", "editor", "outer", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "exposure_neg_1", + "tags" : [ "1", "brightness", "contrast", "digit", "edit", "editing", "effect", "exposure", "image", "neg", "negative", "number", "photo", "photography", "settings", "symbol" ] +}, { + "name" : "view_compact_alt", + "tags" : [ "alt", "compact", "design", "format", "layout dense", "view", "web" ] +}, { + "name" : "pest_control_rodent", + "tags" : [ "control", "exterminator", "mice", "pest", "rodent" ] +}, { + "name" : "swipe_down_alt", + "tags" : [ "alt", "arrows", "direction", "disable", "down", "enable", "finger", "hands", "hit", "navigation", "strike", "swing", "swpie", "take" ] +}, { + "name" : "airlines", + "tags" : [ "airlines", "airplane", "airport", "flight", "plane", "transportation", "travel", "trip" ] +}, { + "name" : "turn_left", + "tags" : [ "arrow", "arrows", "direction", "directions", "left", "maps", "navigation", "path", "route", "sign", "traffic", "turn" ] +}, { + "name" : "sd", + "tags" : [ "alphabet", "camera", "card", "character", "data", "device", "digital", "drive", "flash", "font", "image", "letter", "memory", "photo", "sd", "secure", "symbol", "text", "type" ] +}, { + "name" : "near_me_disabled", + "tags" : [ "destination", "direction", "disabled", "enabled", "location", "maps", "me", "navigation", "near", "off", "on", "pin", "place", "point", "slash" ] +}, { + "name" : "face_4", + "tags" : [ "account", "emoji", "eyes", "face", "human", "lock", "log", "login", "logout", "people", "person", "profile", "recognition", "security", "social", "thumbnail", "unlock", "user" ] +}, { + "name" : "stay_primary_landscape", + "tags" : [ "Android", "OS", "current", "device", "hardware", "iOS", "landscape", "mobile", "phone", "primary", "stay", "tablet" ] +}, { + "name" : "4g_plus_mobiledata", + "tags" : [ "4g", "alphabet", "cellular", "character", "digit", "font", "letter", "mobile", "mobiledata", "network", "number", "phone", "plus", "signal", "speed", "symbol", "text", "type", "wifi" ] +}, { + "name" : "snowmobile", + "tags" : [ "automobile", "car", "direction", "skimobile", "snow", "snowmobile", "social", "sports", "transportation", "travel", "vehicle", "winter" ] +}, { + "name" : "sign_language", + "tags" : [ "communication", "deaf", "fingers", "gesture", "hand", "language", "sign" ] +}, { + "name" : "network_ping", + "tags" : [ "alert", "available", "cellular", "connection", "data", "internet", "ip", "mobile", "network", "ping", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "signal_cellular_off", + "tags" : [ "cell", "cellular", "data", "disabled", "enabled", "internet", "mobile", "network", "off", "offline", "on", "phone", "signal", "slash", "wifi", "wireless" ] +}, { + "name" : "signal_cellular_nodata", + "tags" : [ "cell", "cellular", "data", "internet", "mobile", "network", "no", "nodata", "offline", "phone", "quit", "signal", "wifi", "wireless", "x" ] +}, { + "name" : "no_sim", + "tags" : [ "camera", "card", "device", "eject", "insert", "memory", "no", "phone", "sim", "storage" ] +}, { + "name" : "signal_wifi_4_bar_lock", + "tags" : [ "4", "bar", "cell", "cellular", "data", "internet", "lock", "locked", "mobile", "network", "password", "phone", "privacy", "private", "protection", "safety", "secure", "security", "signal", "wifi", "wireless" ] +}, { + "name" : "missed_video_call", + "tags" : [ "arrow", "call", "camera", "film", "filming", "hardware", "image", "missed", "motion", "picture", "record", "video", "videography" ] +}, { + "name" : "lte_mobiledata", + "tags" : [ "alphabet", "character", "data", "font", "internet", "letter", "lte", "mobile", "network", "speed", "symbol", "text", "type", "wifi", "wireless" ] +}, { + "name" : "earbuds_battery", + "tags" : [ "accessory", "audio", "battery", "charging", "earbuds", "earphone", "headphone", "listen", "music", "sound" ] +}, { + "name" : "panorama_photosphere", + "tags" : [ "angle", "horizontal", "image", "panorama", "photo", "photography", "photosphere", "picture", "wide" ] +}, { + "name" : "no_crash", + "tags" : [ "accident", "auto", "automobile", "car", "cars", "check", "collision", "confirm", "correct", "crash", "direction", "done", "enter", "maps", "mark", "no", "ok", "okay", "select", "tick", "transportation", "vehicle", "yes" ] +}, { + "name" : "add_alarm", + "tags" : [ ] +}, { + "name" : "directions_transit_filled", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "filled", "maps", "public", "rail", "subway", "train", "transit", "transportation", "vehicle" ] +}, { + "name" : "u_turn_left", + "tags" : [ "arrow", "arrows", "direction", "directions", "left", "maps", "navigation", "path", "route", "sign", "traffic", "u-turn" ] +}, { + "name" : "line_axis", + "tags" : [ "axis", "dash", "horizontal", "line", "stroke", "vertical" ] +}, { + "name" : "density_large", + "tags" : [ "density", "horizontal", "large", "lines", "rule", "rules" ] +}, { + "name" : "location_disabled", + "tags" : [ "destination", "direction", "disabled", "enabled", "location", "maps", "off", "on", "pin", "place", "pointer", "slash", "stop", "tracking" ] +}, { + "name" : "bluetooth_drive", + "tags" : [ "automobile", "bluetooth", "car", "cars", "cast", "connect", "connection", "device", "drive", "maps", "paring", "streaming", "symbol", "transportation", "travel", "vehicle", "wireless" ] +}, { + "name" : "30fps", + "tags" : [ "30fps", "alphabet", "camera", "character", "digit", "font", "fps", "frames", "letter", "number", "symbol", "text", "type", "video" ] +}, { + "name" : "no_luggage", + "tags" : [ "bag", "baggage", "carry", "disabled", "enabled", "luggage", "no", "off", "on", "slash", "suitcase", "travel" ] +}, { + "name" : "leak_remove", + "tags" : [ "connection", "data", "disabled", "enabled", "leak", "link", "network", "off", "offline", "on", "remove", "service", "signals", "slash", "synce", "wireless" ] +}, { + "name" : "filter_8", + "tags" : [ "8", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "mobile_off", + "tags" : [ "Android", "OS", "cell", "device", "disabled", "enabled", "hardware", "iOS", "mobile", "off", "on", "phone", "silence", "slash", "tablet" ] +}, { + "name" : "key_off", + "tags" : [ "disabled", "enabled", "key", "lock", "off", "offline", "on", "password", "slash", "unlock" ] +}, { + "name" : "signal_cellular_null", + "tags" : [ "cell", "cellular", "data", "internet", "mobile", "network", "null", "phone", "signal", "wifi", "wireless" ] +}, { + "name" : "phonelink_off", + "tags" : [ "Android", "OS", "chrome", "computer", "connect", "desktop", "device", "disabled", "enabled", "hardware", "iOS", "link", "mac", "mobile", "off", "on", "phone", "phonelink", "slash", "sync", "tablet", "web", "windows" ] +}, { + "name" : "filter_9", + "tags" : [ "9", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "home_mini", + "tags" : [ "Internet", "device", "gadget", "hardware", "home", "iot", "mini", "nest", "smart", "things" ] +}, { + "name" : "on_device_training", + "tags" : [ "arrow", "bulb", "call", "cell", "contact", "device", "hardware", "idea", "inprogress", "light", "load", "loading", "mobile", "model", "phone", "refresh", "renew", "restore", "reverse", "rotate", "telephone", "training" ] +}, { + "name" : "egg_alt", + "tags" : [ "breakfast", "brunch", "egg", "food" ] +}, { + "name" : "media_bluetooth_on", + "tags" : [ "bluetooth", "connect", "connection", "connectivity", "device", "disabled", "enabled", "media", "music", "note", "off", "on", "online", "paring", "signal", "slash", "symbol", "wireless" ] +}, { + "name" : "10k", + "tags" : [ "10000", "10K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "video_stable", + "tags" : [ "film", "filming", "recording", "setting", "stability", "stable", "taping", "video" ] +}, { + "name" : "add_home", + "tags" : [ ] +}, { + "name" : "no_transfer", + "tags" : [ "automobile", "bus", "car", "cars", "direction", "disabled", "enabled", "maps", "no", "off", "on", "public", "slash", "transfer", "transportation", "vehicle" ] +}, { + "name" : "timer_10", + "tags" : [ "10", "digits", "duration", "number", "numbers", "seconds", "time", "timer" ] +}, { + "name" : "directions_subway_filled", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "filled", "maps", "public", "rail", "subway", "train", "transportation", "vehicle" ] +}, { + "name" : "wb_shade", + "tags" : [ "balance", "house", "light", "lighting", "shade", "wb", "white" ] +}, { + "name" : "swipe_left_alt", + "tags" : [ "alt", "arrow", "arrows", "finger", "hand", "hit", "left", "navigation", "reject", "strike", "swing", "swipe", "take" ] +}, { + "name" : "filter_6", + "tags" : [ "6", "digit", "edit", "editing", "effect", "filter", "image", "images", "multiple", "number", "photography", "picture", "pictures", "settings", "stack", "symbol" ] +}, { + "name" : "cyclone", + "tags" : [ "crisis", "disaster", "natural", "rain", "storm", "weather", "wind", "winds" ] +}, { + "name" : "network_wifi_1_bar", + "tags" : [ ] +}, { + "name" : "directions_railway_filled", + "tags" : [ "automobile", "car", "cars", "direction", "directions", "filled", "maps", "public", "railway", "train", "transportation", "vehicle" ] +}, { + "name" : "wifi_find", + "tags" : [ "(scan)", "[cellular", "connection", "data", "detect", "discover", "find", "internet", "look", "magnifying glass", "mobile]", "network", "notice", "search", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "blur_off", + "tags" : [ "blur", "disabled", "dots", "edit", "editing", "effect", "enabled", "enhance", "off", "on", "slash" ] +}, { + "name" : "motion_photos_off", + "tags" : [ "animation", "circle", "disabled", "enabled", "motion", "off", "on", "photos", "slash", "video" ] +}, { + "name" : "lyrics", + "tags" : [ "audio", "bubble", "chat", "comment", "communicate", "feedback", "key", "lyrics", "message", "music", "note", "song", "sound", "speech", "track" ] +}, { + "name" : "raw_on", + "tags" : [ "alphabet", "character", "disabled", "enabled", "font", "image", "letter", "off", "on", "original", "photo", "photography", "raw", "slash", "symbol", "text", "type" ] +}, { + "name" : "flight_class", + "tags" : [ "airplane", "business", "class", "first", "flight", "plane", "seat", "transportation", "travel", "trip", "window" ] +}, { + "name" : "insert_page_break", + "tags" : [ "break", "doc", "document", "file", "page", "paper" ] +}, { + "name" : "rsvp", + "tags" : [ "alphabet", "character", "font", "invitation", "invite", "letter", "plaît", "respond", "rsvp", "répondez", "sil", "symbol", "text", "type", "vous" ] +}, { + "name" : "tire_repair", + "tags" : [ "auto", "automobile", "car", "cars", "gauge", "mechanic", "pressure", "repair", "tire", "vehicle" ] +}, { + "name" : "swipe_up_alt", + "tags" : [ "alt", "arrows", "direction", "disable", "enable", "finger", "hands", "hit", "navigation", "strike", "swing", "swpie", "take", "up" ] +}, { + "name" : "3g_mobiledata", + "tags" : [ "3g", "alphabet", "cellular", "character", "digit", "font", "letter", "mobile", "mobiledata", "network", "number", "phone", "signal", "speed", "symbol", "text", "type", "wifi" ] +}, { + "name" : "tv_off", + "tags" : [ "Android", "OS", "chrome", "desktop", "device", "disabled", "enabled", "hardware", "iOS", "mac", "monitor", "off", "on", "slash", "television", "tv", "web", "window" ] +}, { + "name" : "hdr_on", + "tags" : [ "add", "alphabet", "character", "dynamic", "enhance", "font", "hdr", "high", "letter", "on", "plus", "range", "select", "symbol", "text", "type" ] +}, { + "name" : "add_home_work", + "tags" : [ ] +}, { + "name" : "motion_photos_pause", + "tags" : [ "animation", "circle", "motion", "pause", "paused", "photos", "video" ] +}, { + "name" : "edgesensor_low", + "tags" : [ "Android", "cell", "device", "edge", "hardware", "iOS", "low", "mobile", "move", "phone", "sensitivity", "sensor", "tablet", "vibrate" ] +}, { + "name" : "grid_goldenratio", + "tags" : [ "golden", "goldenratio", "grid", "layout", "lines", "ratio", "space" ] +}, { + "name" : "network_wifi_3_bar", + "tags" : [ ] +}, { + "name" : "temple_buddhist", + "tags" : [ "buddha", "buddhism", "buddhist", "monastery", "religion", "spiritual", "temple", "worship" ] +}, { + "name" : "airline_seat_flat_angled", + "tags" : [ "airline", "angled", "body", "business", "class", "first", "flat", "human", "people", "person", "rest", "seat", "sleep", "travel" ] +}, { + "name" : "fort", + "tags" : [ "castle", "fort", "fortress", "mansion", "palace" ] +}, { + "name" : "spatial_tracking", + "tags" : [ "audio", "disabled", "enabled", "music", "note", "off", "offline", "on", "slash", "sound", "spatial", "tracking" ] +}, { + "name" : "screen_lock_rotation", + "tags" : [ "Android", "OS", "arrow", "device", "hardware", "iOS", "lock", "mobile", "phone", "rotate", "rotation", "screen", "tablet", "turn" ] +}, { + "name" : "fiber_pin", + "tags" : [ "alphabet", "character", "fiber", "font", "letter", "network", "pin", "symbol", "text", "type" ] +}, { + "name" : "phone_bluetooth_speaker", + "tags" : [ "bluetooth", "call", "cell", "connect", "connection", "connectivity", "contact", "device", "hardware", "mobile", "phone", "signal", "speaker", "symbol", "telephone", "wireless" ] +}, { + "name" : "vignette", + "tags" : [ "border", "edit", "editing", "filter", "gradient", "image", "photo", "photography", "setting", "vignette" ] +}, { + "name" : "panorama_horizontal", + "tags" : [ "angle", "horizontal", "image", "panorama", "photo", "photography", "picture", "wide" ] +}, { + "name" : "propane_tank", + "tags" : [ "bbq", "gas", "grill", "nest", "propane", "tank" ] +}, { + "name" : "kebab_dining", + "tags" : [ "dining", "dinner", "food", "kebab", "meal", "meat", "skewer" ] +}, { + "name" : "developer_board_off", + "tags" : [ "board", "chip", "computer", "developer", "development", "disabled", "enabled", "hardware", "microchip", "off", "on", "processor", "slash" ] +}, { + "name" : "adf_scanner", + "tags" : [ "adf", "document", "feeder", "machine", "office", "scan", "scanner" ] +}, { + "name" : "no_cell", + "tags" : [ "Android", "OS", "cell", "device", "disabled", "enabled", "hardware", "iOS", "mobile", "no", "off", "on", "phone", "slash", "tablet" ] +}, { + "name" : "dirty_lens", + "tags" : [ "camera", "dirty", "lens", "photo", "photography", "picture", "splat" ] +}, { + "name" : "usb_off", + "tags" : [ "cable", "connection", "device", "off", "usb", "wire" ] +}, { + "name" : "image_aspect_ratio", + "tags" : [ "aspect", "image", "photo", "photography", "picture", "ratio", "rectangle", "square" ] +}, { + "name" : "30fps_select", + "tags" : [ "30", "camera", "digits", "fps", "frame", "frequency", "image", "numbers", "per", "rate", "second", "seconds", "select", "video" ] +}, { + "name" : "60fps", + "tags" : [ "60fps", "camera", "digit", "fps", "frames", "number", "symbol", "video" ] +}, { + "name" : "screen_lock_landscape", + "tags" : [ "Android", "OS", "device", "hardware", "iOS", "landscape", "lock", "mobile", "phone", "rotate", "screen", "tablet" ] +}, { + "name" : "lte_plus_mobiledata", + "tags" : [ "+", "alphabet", "character", "data", "font", "internet", "letter", "lte", "mobile", "network", "plus", "speed", "symbol", "text", "type", "wifi", "wireless" ] +}, { + "name" : "piano_off", + "tags" : [ "disabled", "enabled", "instrument", "keyboard", "keys", "music", "musical", "off", "on", "piano", "slash", "social" ] +}, { + "name" : "unfold_more_double", + "tags" : [ "arrow", "arrows", "chevron", "collapse", "direction", "double", "down", "expand", "expandable", "list", "more", "navigation", "unfold" ] +}, { + "name" : "deblur", + "tags" : [ "adjust", "deblur", "edit", "editing", "enhance", "face", "image", "lines", "photo", "photography", "sharpen" ] +}, { + "name" : "person_4", + "tags" : [ "account", "face", "human", "people", "person", "profile", "user" ] +}, { + "name" : "spatial_audio", + "tags" : [ "audio", "music", "note", "sound", "spatial" ] +}, { + "name" : "camera_rear", + "tags" : [ "camera", "front", "lens", "mobile", "phone", "photo", "photography", "picture", "portrait", "rear", "selfie" ] +}, { + "name" : "timer_10_select", + "tags" : [ "10", "alphabet", "camera", "character", "digit", "font", "letter", "number", "seconds", "select", "symbol", "text", "timer", "type" ] +}, { + "name" : "face_5", + "tags" : [ "account", "emoji", "eyes", "face", "human", "lock", "log", "login", "logout", "people", "person", "profile", "recognition", "security", "social", "thumbnail", "unlock", "user" ] +}, { + "name" : "minor_crash", + "tags" : [ "accident", "auto", "automobile", "car", "cars", "collision", "directions", "maps", "public", "transportation", "vehicle" ] +}, { + "name" : "sos", + "tags" : [ "font", "help", "letters", "save", "sos", "text", "type" ] +}, { + "name" : "videogame_asset_off", + "tags" : [ "asset", "console", "controller", "device", "disabled", "enabled", "game", "gamepad", "gaming", "off", "on", "playstation", "slash", "video", "videogame" ] +}, { + "name" : "flood", + "tags" : [ "crisis", "disaster", "natural", "rain", "storm", "weather" ] +}, { + "name" : "60fps_select", + "tags" : [ "60", "camera", "digits", "fps", "frame", "frequency", "numbers", "per", "rate", "second", "seconds", "select", "video" ] +}, { + "name" : "timer_3", + "tags" : [ "3", "digits", "duration", "number", "numbers", "seconds", "time", "timer" ] +}, { + "name" : "vpn_key_off", + "tags" : [ "code", "disabled", "enabled", "key", "lock", "network", "off", "offline", "on", "passcode", "password", "slash", "unlock", "vpn" ] +}, { + "name" : "directions_off", + "tags" : [ "arrow", "directions", "disabled", "enabled", "maps", "off", "on", "right", "route", "sign", "slash", "traffic" ] +}, { + "name" : "emergency_share", + "tags" : [ "alert", "attention", "caution", "danger", "emergency", "important", "notification", "share", "warning" ] +}, { + "name" : "panorama_wide_angle_select", + "tags" : [ "angle", "image", "panorama", "photo", "photography", "picture", "select", "wide" ] +}, { + "name" : "airline_seat_legroom_normal", + "tags" : [ "airline", "body", "feet", "human", "leg", "legroom", "normal", "people", "person", "seat", "sitting", "space", "travel" ] +}, { + "name" : "fiber_dvr", + "tags" : [ "alphabet", "character", "digital", "dvr", "electronics", "fiber", "font", "letter", "network", "record", "recorder", "symbol", "text", "tv", "type", "video" ] +}, { + "name" : "person_3", + "tags" : [ "account", "face", "human", "people", "person", "profile", "user" ] +}, { + "name" : "scuba_diving", + "tags" : [ "diving", "entertainment", "exercise", "hobby", "scuba", "social", "swim", "swimming" ] +}, { + "name" : "signal_cellular_no_sim", + "tags" : [ "camera", "card", "cellular", "chip", "device", "disabled", "enabled", "memory", "no", "off", "offline", "on", "phone", "signal", "sim", "slash", "storage" ] +}, { + "name" : "24mp", + "tags" : [ "24", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "exposure_neg_2", + "tags" : [ "2", "brightness", "contrast", "digit", "edit", "editing", "effect", "exposure", "image", "neg", "negative", "number", "photo", "photography", "settings", "symbol" ] +}, { + "name" : "network_wifi_2_bar", + "tags" : [ ] +}, { + "name" : "wifi_2_bar", + "tags" : [ "2", "bar", "cell", "cellular", "connection", "data", "internet", "mobile", "network", "phone", "scan", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "u_turn_right", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "right", "route", "sign", "traffic", "u-turn" ] +}, { + "name" : "currency_yuan", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "money", "online", "pay", "payment", "price", "shopping", "symbol", "yuan" ] +}, { + "name" : "currency_lira", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "lira", "money", "online", "pay", "payment", "price", "shopping", "symbol" ] +}, { + "name" : "no_flash", + "tags" : [ "bolt", "camera", "disabled", "enabled", "flash", "image", "lightning", "no", "off", "on", "photo", "photography", "picture", "slash", "thunderbolt" ] +}, { + "name" : "temple_hindu", + "tags" : [ "hindu", "hinduism", "hindus", "mandir", "religion", "spiritual", "temple", "worship" ] +}, { + "name" : "mode_fan_off", + "tags" : [ "air conditioner", "cool", "disabled", "enabled", "fan", "nest", "off", "on", "slash" ] +}, { + "name" : "airline_seat_legroom_extra", + "tags" : [ "airline", "body", "extra", "feet", "human", "leg", "legroom", "people", "person", "seat", "sitting", "space", "travel" ] +}, { + "name" : "4k_plus", + "tags" : [ "+", "4000", "4K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "border_inner", + "tags" : [ "border", "doc", "edit", "editing", "editor", "inner", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "wifi_tethering_error", + "tags" : [ "!", "alert", "attention", "caution", "cell", "cellular", "connection", "danger", "data", "error", "exclamation", "important", "internet", "mark", "mobile", "network", "notification", "phone", "rounded", "scan", "service", "signal", "speed", "symbol", "tethering", "warning", "wifi", "wireless" ] +}, { + "name" : "airline_seat_legroom_reduced", + "tags" : [ "airline", "body", "feet", "human", "leg", "legroom", "people", "person", "reduced", "seat", "sitting", "space", "travel" ] +}, { + "name" : "synagogue", + "tags" : [ "jew", "jewish", "religion", "shul", "spiritual", "temple", "worship" ] +}, { + "name" : "border_left", + "tags" : [ "border", "doc", "edit", "editing", "editor", "left", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "autofps_select", + "tags" : [ "A", "alphabet", "auto", "character", "font", "fps", "frame", "frequency", "letter", "per", "rate", "second", "seconds", "select", "symbol", "text", "type" ] +}, { + "name" : "signal_cellular_alt_2_bar", + "tags" : [ "2", "bar", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "signal", "speed", "wifi", "wireless" ] +}, { + "name" : "g_mobiledata", + "tags" : [ "alphabet", "character", "data", "font", "g", "letter", "mobile", "network", "service", "symbol", "text", "type" ] +}, { + "name" : "1k", + "tags" : [ "1000", "1K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "format_textdirection_l_to_r", + "tags" : [ "align", "alignment", "doc", "edit", "editing", "editor", "format", "ltr", "sheet", "spreadsheet", "text", "textdirection", "type", "writing" ] +}, { + "name" : "border_bottom", + "tags" : [ "border", "bottom", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "fork_left", + "tags" : [ "arrow", "arrows", "direction", "directions", "fork", "left", "maps", "navigation", "path", "route", "sign", "traffic" ] +}, { + "name" : "severe_cold", + "tags" : [ "!", "alert", "attention", "caution", "climate", "cold", "crisis", "danger", "disaster", "error", "exclamation", "important", "notification", "severe", "snow", "snowflake", "warning", "weather", "winter" ] +}, { + "name" : "tsunami", + "tags" : [ "crisis", "disaster", "flood", "rain", "storm", "tsunami", "weather" ] +}, { + "name" : "signal_cellular_alt_1_bar", + "tags" : [ "1", "bar", "cell", "cellular", "data", "internet", "mobile", "network", "phone", "signal", "speed", "wifi", "wireless" ] +}, { + "name" : "border_vertical", + "tags" : [ "border", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "stroke", "text", "type", "vertical", "writing" ] +}, { + "name" : "turn_sharp_right", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "right", "route", "sharp", "sign", "traffic", "turn" ] +}, { + "name" : "no_backpack", + "tags" : [ "accessory", "backpack", "bag", "bookbag", "knapsack", "no", "pack", "travel" ] +}, { + "name" : "remove_road", + "tags" : [ "-", "cancel", "close", "destination", "direction", "exit", "highway", "maps", "minus", "new", "no", "remove", "road", "stop", "street", "symbol", "traffic", "x" ] +}, { + "name" : "timer_3_select", + "tags" : [ "3", "alphabet", "camera", "character", "digit", "font", "letter", "number", "seconds", "select", "symbol", "text", "timer", "type" ] +}, { + "name" : "roller_skating", + "tags" : [ "athlete", "athletic", "entertainment", "exercise", "hobby", "roller", "shoe", "skate", "skates", "skating", "social", "sports", "travel" ] +}, { + "name" : "panorama_horizontal_select", + "tags" : [ "angle", "horizontal", "image", "panorama", "photo", "photography", "picture", "select", "wide" ] +}, { + "name" : "border_horizontal", + "tags" : [ "border", "doc", "edit", "editing", "editor", "horizontal", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "2k", + "tags" : [ "2000", "2K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "wifi_1_bar", + "tags" : [ "1", "bar", "cell", "cellular", "connection", "data", "internet", "mobile", "network", "phone", "scan", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "format_textdirection_r_to_l", + "tags" : [ "align", "alignment", "doc", "edit", "editing", "editor", "format", "rtl", "sheet", "spreadsheet", "text", "textdirection", "type", "writing" ] +}, { + "name" : "wifi_channel", + "tags" : [ "(scan)", "[cellular", "channel", "connection", "data", "internet", "mobile]", "network", "service", "signal", "wifi", "wireless" ] +}, { + "name" : "roundabout_right", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "right", "roundabout", "route", "sign", "traffic" ] +}, { + "name" : "wb_auto", + "tags" : [ "A", "W", "alphabet", "auto", "automatic", "balance", "character", "edit", "editing", "font", "image", "letter", "photo", "photography", "symbol", "text", "type", "white", "wp" ] +}, { + "name" : "panorama_photosphere_select", + "tags" : [ "angle", "horizontal", "image", "panorama", "photo", "photography", "photosphere", "picture", "select", "wide" ] +}, { + "name" : "panorama_wide_angle", + "tags" : [ "angle", "image", "panorama", "photo", "photography", "picture", "wide" ] +}, { + "name" : "hdr_plus", + "tags" : [ "+", "add", "alphabet", "character", "circle", "dynamic", "enhance", "font", "hdr", "high", "letter", "plus", "range", "select", "symbol", "text", "type" ] +}, { + "name" : "panorama_vertical_select", + "tags" : [ "angle", "image", "panorama", "photo", "photography", "picture", "select", "vertical", "wide" ] +}, { + "name" : "border_top", + "tags" : [ "border", "doc", "edit", "editing", "editor", "sheet", "spreadsheet", "stroke", "text", "top", "type", "writing" ] +}, { + "name" : "mic_external_off", + "tags" : [ "audio", "disabled", "enabled", "external", "mic", "microphone", "off", "on", "slash", "sound", "voice" ] +}, { + "name" : "width_full", + "tags" : [ ] +}, { + "name" : "h_mobiledata", + "tags" : [ "alphabet", "character", "data", "font", "h", "letter", "mobile", "network", "service", "symbol", "text", "type" ] +}, { + "name" : "roller_shades", + "tags" : [ "blinds", "cover", "curtains", "nest", "open", "roller", "shade", "shutter", "sunshade" ] +}, { + "name" : "no_stroller", + "tags" : [ "baby", "care", "carriage", "child", "children", "disabled", "enabled", "infant", "kid", "newborn", "no", "off", "on", "parents", "slash", "stroller", "toddler", "young" ] +}, { + "name" : "tornado", + "tags" : [ "crisis", "disaster", "natural", "rain", "storm", "tornado", "weather", "wind" ] +}, { + "name" : "keyboard_control_key", + "tags" : [ "control key", "keyboard" ] +}, { + "name" : "turn_slight_right", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "right", "route", "sharp", "sign", "slight", "traffic", "turn" ] +}, { + "name" : "border_right", + "tags" : [ "border", "doc", "edit", "editing", "editor", "right", "sheet", "spreadsheet", "stroke", "text", "type", "writing" ] +}, { + "name" : "1k_plus", + "tags" : [ "+", "1000", "1K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "turn_slight_left", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "right", "route", "sign", "slight", "traffic", "turn" ] +}, { + "name" : "screen_rotation_alt", + "tags" : [ "Android", "OS", "arrow", "device", "hardware", "iOS", "mobile", "phone", "rotate", "rotation", "screen", "tablet", "turn" ] +}, { + "name" : "dataset_linked", + "tags" : [ ] +}, { + "name" : "unfold_less_double", + "tags" : [ "arrow", "arrows", "chevron", "collapse", "direction", "double", "expand", "expandable", "inward", "less", "list", "navigation", "unfold", "up" ] +}, { + "name" : "8k", + "tags" : [ "8000", "8K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "landslide", + "tags" : [ "crisis", "disaster", "natural", "rain", "storm", "weather" ] +}, { + "name" : "media_bluetooth_off", + "tags" : [ "bluetooth", "connect", "connection", "connectivity", "device", "disabled", "enabled", "media", "music", "note", "off", "offline", "on", "paring", "signal", "slash", "symbol", "wireless" ] +}, { + "name" : "fire_truck", + "tags" : [ ] +}, { + "name" : "e_mobiledata", + "tags" : [ "alphabet", "data", "e", "font", "letter", "mobile", "mobiledata", "text", "type" ] +}, { + "name" : "panorama_vertical", + "tags" : [ "angle", "image", "panorama", "photo", "photography", "picture", "vertical", "wide" ] +}, { + "name" : "r_mobiledata", + "tags" : [ "alphabet", "character", "data", "font", "letter", "mobile", "r", "symbol", "text", "type" ] +}, { + "name" : "12mp", + "tags" : [ "12", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "repartition", + "tags" : [ "arrow", "arrows", "data", "partition", "refresh", "renew", "repartition", "restore", "table" ] +}, { + "name" : "width_normal", + "tags" : [ ] +}, { + "name" : "h_plus_mobiledata", + "tags" : [ "+", "alphabet", "character", "data", "font", "h", "letter", "mobile", "network", "plus", "service", "symbol", "text", "type" ] +}, { + "name" : "hdr_enhanced_select", + "tags" : [ "add", "alphabet", "character", "dynamic", "enhance", "font", "hdr", "high", "letter", "plus", "range", "select", "symbol", "text", "type" ] +}, { + "name" : "mp", + "tags" : [ "alphabet", "character", "font", "image", "letter", "megapixel", "mp", "photo", "photography", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "shape_line", + "tags" : [ "circle", "draw", "edit", "editing", "line", "shape", "square" ] +}, { + "name" : "9k_plus", + "tags" : [ "+", "9000", "9K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "5k", + "tags" : [ "5000", "5K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "hevc", + "tags" : [ "alphabet", "character", "coding", "efficiency", "font", "hevc", "high", "letter", "symbol", "text", "type", "video" ] +}, { + "name" : "currency_franc", + "tags" : [ "bill", "card", "cash", "coin", "commerce", "cost", "credit", "currency", "dollars", "finance", "franc", "money", "online", "pay", "payment", "price", "shopping", "symbol" ] +}, { + "name" : "8k_plus", + "tags" : [ "+", "7000", "8K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "hdr_on_select", + "tags" : [ "+", "alphabet", "camera", "character", "circle", "dynamic", "font", "hdr", "high", "letter", "on", "photo", "range", "select", "symbol", "text", "type" ] +}, { + "name" : "3k", + "tags" : [ "3000", "3K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "transcribe", + "tags" : [ ] +}, { + "name" : "width_wide", + "tags" : [ ] +}, { + "name" : "hdr_auto_select", + "tags" : [ "+", "A", "alphabet", "auto", "camera", "character", "circle", "dynamic", "font", "hdr", "high", "letter", "photo", "range", "select", "symbol", "text", "type" ] +}, { + "name" : "hls", + "tags" : [ "alphabet", "character", "develop", "developer", "engineer", "engineering", "font", "hls", "letter", "platform", "symbol", "text", "type" ] +}, { + "name" : "5k_plus", + "tags" : [ "+", "5000", "5K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "assist_walker", + "tags" : [ "accessibility", "accessible", "assist", "body", "disability", "handicap", "help", "human", "injured", "injury", "mobility", "person", "walk", "walker" ] +}, { + "name" : "hls_off", + "tags" : [ "alphabet", "character", "develop", "developer", "disabled", "enabled", "engineer", "engineering", "font", "hls", "letter", "off", "offline", "on", "platform", "slash", "symbol", "text", "type" ] +}, { + "name" : "18mp", + "tags" : [ "18", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "format_overline", + "tags" : [ "alphabet", "character", "doc", "edit", "editing", "editor", "font", "format", "letter", "line", "overline", "sheet", "spreadsheet", "style", "symbol", "text", "type", "under", "writing" ] +}, { + "name" : "volcano", + "tags" : [ "crisis", "disaster", "eruption", "lava", "magma", "natural", "volcano" ] +}, { + "name" : "vaping_rooms", + "tags" : [ "allowed", "e-cigarette", "never", "no", "places", "prohibited", "smoke", "smoking", "tobacco", "vape", "vaping", "vapor", "warning", "zone" ] +}, { + "name" : "watch_off", + "tags" : [ "Android", "OS", "ar", "clock", "close", "gadget", "iOS", "off", "shut", "time", "vr", "watch", "wearables", "web", "wristwatch" ] +}, { + "name" : "9k", + "tags" : [ "9000", "9K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "23mp", + "tags" : [ "23", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "propane", + "tags" : [ "gas", "nest", "propane" ] +}, { + "name" : "raw_off", + "tags" : [ "alphabet", "character", "disabled", "enabled", "font", "image", "letter", "off", "on", "original", "photo", "photography", "raw", "slash", "symbol", "text", "type" ] +}, { + "name" : "keyboard_option_key", + "tags" : [ "alt key", "key", "keyboard", "modifier key", "option" ] +}, { + "name" : "woman_2", + "tags" : [ "female", "gender", "girl", "lady", "social", "symbol", "woman", "women" ] +}, { + "name" : "2k_plus", + "tags" : [ "+", "2k", "alphabet", "character", "digit", "font", "letter", "number", "plus", "symbol", "text", "type" ] +}, { + "name" : "6k_plus", + "tags" : [ "+", "6000", "6K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "broadcast_on_personal", + "tags" : [ ] +}, { + "name" : "10mp", + "tags" : [ "10", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "man_2", + "tags" : [ "boy", "gender", "male", "man", "social", "symbol" ] +}, { + "name" : "7k", + "tags" : [ "7000", "7K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "7k_plus", + "tags" : [ "+", "7000", "7K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "nearby_off", + "tags" : [ "disabled", "enabled", "nearby", "off", "on", "slash" ] +}, { + "name" : "3k_plus", + "tags" : [ "+", "3000", "3K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "plus", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "6k", + "tags" : [ "6000", "6K", "alphabet", "character", "digit", "display", "font", "letter", "number", "pixel", "pixels", "resolution", "symbol", "text", "type", "video" ] +}, { + "name" : "hdr_off", + "tags" : [ "alphabet", "character", "disabled", "dynamic", "enabled", "enhance", "font", "hdr", "high", "letter", "off", "on", "range", "select", "slash", "symbol", "text", "type" ] +}, { + "name" : "roundabout_left", + "tags" : [ "arrow", "arrows", "direction", "directions", "left", "maps", "navigation", "path", "roundabout", "route", "sign", "traffic" ] +}, { + "name" : "hdr_off_select", + "tags" : [ "alphabet", "camera", "character", "circle", "disabled", "dynamic", "enabled", "font", "hdr", "high", "letter", "off", "on", "photo", "range", "select", "slash", "symbol", "text", "type" ] +}, { + "name" : "bedtime_off", + "tags" : [ "bedtime", "disabled", "lunar", "moon", "night", "nightime", "off", "offline", "slash", "sleep" ] +}, { + "name" : "18_up_rating", + "tags" : [ ] +}, { + "name" : "turn_sharp_left", + "tags" : [ "arrow", "arrows", "direction", "directions", "left", "maps", "navigation", "path", "route", "sharp", "sign", "traffic", "turn" ] +}, { + "name" : "11mp", + "tags" : [ "11", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "roller_shades_closed", + "tags" : [ "blinds", "closed", "cover", "curtains", "nest", "roller", "shade", "shutter", "sunshade" ] +}, { + "name" : "20mp", + "tags" : [ "20", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "blinds", + "tags" : [ "blinds", "cover", "curtains", "nest", "open", "shade", "shutter", "sunshade" ] +}, { + "name" : "3mp", + "tags" : [ "3", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "blind", + "tags" : [ "accessibility", "accessible", "assist", "blind", "body", "cane", "disability", "handicap", "help", "human", "mobility", "person", "walk", "walker" ] +}, { + "name" : "emergency_recording", + "tags" : [ "alert", "attention", "camera", "caution", "danger", "emergency", "film", "filming", "hardware", "image", "important", "motion", "notification", "picture", "record", "video", "videography", "warning" ] +}, { + "name" : "curtains", + "tags" : [ "blinds", "cover", "curtains", "nest", "open", "shade", "shutter", "sunshade" ] +}, { + "name" : "13mp", + "tags" : [ "13", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "5mp", + "tags" : [ "5", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "21mp", + "tags" : [ "21", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "blinds_closed", + "tags" : [ "blinds", "closed", "cover", "curtains", "nest", "shade", "shutter", "sunshade" ] +}, { + "name" : "16mp", + "tags" : [ "16", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "17mp", + "tags" : [ "17", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "2mp", + "tags" : [ "2", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "15mp", + "tags" : [ "15", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "desk", + "tags" : [ ] +}, { + "name" : "no_adult_content", + "tags" : [ ] +}, { + "name" : "14mp", + "tags" : [ "14", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "22mp", + "tags" : [ "22", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "vertical_shades", + "tags" : [ "blinds", "cover", "curtains", "nest", "open", "shade", "shutter", "sunshade", "vertical" ] +}, { + "name" : "vertical_shades_closed", + "tags" : [ "blinds", "closed", "cover", "curtains", "nest", "roller", "shade", "shutter", "sunshade" ] +}, { + "name" : "curtains_closed", + "tags" : [ "blinds", "closed", "cover", "curtains", "nest", "shade", "shutter", "sunshade" ] +}, { + "name" : "broadcast_on_home", + "tags" : [ ] +}, { + "name" : "4mp", + "tags" : [ "4", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "19mp", + "tags" : [ "19", "camera", "digits", "font", "image", "letters", "megapixel", "megapixels", "mp", "numbers", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "nest_cam_wired_stand", + "tags" : [ "camera", "film", "filming", "hardware", "image", "motion", "nest", "picture", "stand", "video", "videography", "wired" ] +}, { + "name" : "9mp", + "tags" : [ "9", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "7mp", + "tags" : [ "7", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "8mp", + "tags" : [ "8", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "6mp", + "tags" : [ "6", "camera", "digit", "font", "image", "letters", "megapixel", "megapixels", "mp", "number", "pixel", "pixels", "quality", "resolution", "symbol", "text", "type" ] +}, { + "name" : "devices_fold", + "tags" : [ "Android", "OS", "cell", "device", "fold", "foldable", "hardware", "iOS", "mobile", "phone", "tablet" ] +}, { + "name" : "vape_free", + "tags" : [ "disabled", "e-cigarette", "enabled", "free", "never", "no", "off", "on", "places", "prohibited", "slash", "smoke", "smoking", "tobacco", "vape", "vaping", "vapor", "warning", "zone" ] +}, { + "name" : "ramp_left", + "tags" : [ "arrow", "arrows", "direction", "directions", "left", "maps", "navigation", "path", "ramp", "route", "sign", "traffic" ] +}, { + "name" : "ramp_right", + "tags" : [ "arrow", "arrows", "direction", "directions", "maps", "navigation", "path", "ramp", "right", "route", "sign", "traffic" ] +}, { + "name" : "video_chat", + "tags" : [ "bubble", "cam", "camera", "chat", "comment", "communicate", "facetime", "feedback", "message", "speech", "video", "voice" ] +}, { + "name" : "type_specimen", + "tags" : [ ] +}, { + "name" : "man_4", + "tags" : [ "abstract", "boy", "gender", "male", "man", "social", "symbol" ] +}, { + "name" : "fluorescent", + "tags" : [ "bright", "fluorescent", "lamp", "light", "lightbulb" ] +}, { + "name" : "man_3", + "tags" : [ "abstract", "boy", "gender", "male", "man", "social", "symbol" ] +}, { + "name" : "fire_hydrant_alt", + "tags" : [ ] +}, { + "name" : "macro_off", + "tags" : [ "camera", "disabled", "enabled", "flower", "garden", "image", "macro", "off", "offline", "on", "slash" ] +} ] \ No newline at end of file