fontawesome-iconpicker.js 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912
  1. /*!
  2. * Font Awesome Icon Picker
  3. * https://farbelous.github.io/fontawesome-iconpicker/
  4. *
  5. * Originally written by (c) 2016 Javi Aguilar
  6. * Licensed under the MIT License
  7. * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE
  8. *
  9. */
  10. (function(a) {
  11. if (typeof define === "function" && define.amd) {
  12. define([ "jquery" ], a);
  13. } else {
  14. a(jQuery);
  15. }
  16. })(function(a) {
  17. a.ui = a.ui || {};
  18. var b = a.ui.version = "1.12.1";
  19. /*!
  20. * jQuery UI Position 1.12.1
  21. * http://jqueryui.com
  22. *
  23. * Copyright jQuery Foundation and other contributors
  24. * Released under the MIT license.
  25. * http://jquery.org/license
  26. *
  27. * http://api.jqueryui.com/position/
  28. */
  29. (function() {
  30. var b, c = Math.max, d = Math.abs, e = /left|center|right/, f = /top|center|bottom/, g = /[\+\-]\d+(\.[\d]+)?%?/, h = /^\w+/, i = /%$/, j = a.fn.pos;
  31. function k(a, b, c) {
  32. return [ parseFloat(a[0]) * (i.test(a[0]) ? b / 100 : 1), parseFloat(a[1]) * (i.test(a[1]) ? c / 100 : 1) ];
  33. }
  34. function l(b, c) {
  35. return parseInt(a.css(b, c), 10) || 0;
  36. }
  37. function m(b) {
  38. var c = b[0];
  39. if (c.nodeType === 9) {
  40. return {
  41. width: b.width(),
  42. height: b.height(),
  43. offset: {
  44. top: 0,
  45. left: 0
  46. }
  47. };
  48. }
  49. if (a.isWindow(c)) {
  50. return {
  51. width: b.width(),
  52. height: b.height(),
  53. offset: {
  54. top: b.scrollTop(),
  55. left: b.scrollLeft()
  56. }
  57. };
  58. }
  59. if (c.preventDefault) {
  60. return {
  61. width: 0,
  62. height: 0,
  63. offset: {
  64. top: c.pageY,
  65. left: c.pageX
  66. }
  67. };
  68. }
  69. return {
  70. width: b.outerWidth(),
  71. height: b.outerHeight(),
  72. offset: b.offset()
  73. };
  74. }
  75. a.pos = {
  76. scrollbarWidth: function() {
  77. if (b !== undefined) {
  78. return b;
  79. }
  80. var c, d, e = a("<div " + "style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'>" + "<div style='height:100px;width:auto;'></div></div>"), f = e.children()[0];
  81. a("body").append(e);
  82. c = f.offsetWidth;
  83. e.css("overflow", "scroll");
  84. d = f.offsetWidth;
  85. if (c === d) {
  86. d = e[0].clientWidth;
  87. }
  88. e.remove();
  89. return b = c - d;
  90. },
  91. getScrollInfo: function(b) {
  92. var c = b.isWindow || b.isDocument ? "" : b.element.css("overflow-x"), d = b.isWindow || b.isDocument ? "" : b.element.css("overflow-y"), e = c === "scroll" || c === "auto" && b.width < b.element[0].scrollWidth, f = d === "scroll" || d === "auto" && b.height < b.element[0].scrollHeight;
  93. return {
  94. width: f ? a.pos.scrollbarWidth() : 0,
  95. height: e ? a.pos.scrollbarWidth() : 0
  96. };
  97. },
  98. getWithinInfo: function(b) {
  99. var c = a(b || window), d = a.isWindow(c[0]), e = !!c[0] && c[0].nodeType === 9, f = !d && !e;
  100. return {
  101. element: c,
  102. isWindow: d,
  103. isDocument: e,
  104. offset: f ? a(b).offset() : {
  105. left: 0,
  106. top: 0
  107. },
  108. scrollLeft: c.scrollLeft(),
  109. scrollTop: c.scrollTop(),
  110. width: c.outerWidth(),
  111. height: c.outerHeight()
  112. };
  113. }
  114. };
  115. a.fn.pos = function(b) {
  116. if (!b || !b.of) {
  117. return j.apply(this, arguments);
  118. }
  119. b = a.extend({}, b);
  120. var i, n, o, p, q, r, s = a(b.of), t = a.pos.getWithinInfo(b.within), u = a.pos.getScrollInfo(t), v = (b.collision || "flip").split(" "), w = {};
  121. r = m(s);
  122. if (s[0].preventDefault) {
  123. b.at = "left top";
  124. }
  125. n = r.width;
  126. o = r.height;
  127. p = r.offset;
  128. q = a.extend({}, p);
  129. a.each([ "my", "at" ], function() {
  130. var a = (b[this] || "").split(" "), c, d;
  131. if (a.length === 1) {
  132. a = e.test(a[0]) ? a.concat([ "center" ]) : f.test(a[0]) ? [ "center" ].concat(a) : [ "center", "center" ];
  133. }
  134. a[0] = e.test(a[0]) ? a[0] : "center";
  135. a[1] = f.test(a[1]) ? a[1] : "center";
  136. c = g.exec(a[0]);
  137. d = g.exec(a[1]);
  138. w[this] = [ c ? c[0] : 0, d ? d[0] : 0 ];
  139. b[this] = [ h.exec(a[0])[0], h.exec(a[1])[0] ];
  140. });
  141. if (v.length === 1) {
  142. v[1] = v[0];
  143. }
  144. if (b.at[0] === "right") {
  145. q.left += n;
  146. } else if (b.at[0] === "center") {
  147. q.left += n / 2;
  148. }
  149. if (b.at[1] === "bottom") {
  150. q.top += o;
  151. } else if (b.at[1] === "center") {
  152. q.top += o / 2;
  153. }
  154. i = k(w.at, n, o);
  155. q.left += i[0];
  156. q.top += i[1];
  157. return this.each(function() {
  158. var e, f, g = a(this), h = g.outerWidth(), j = g.outerHeight(), m = l(this, "marginLeft"), r = l(this, "marginTop"), x = h + m + l(this, "marginRight") + u.width, y = j + r + l(this, "marginBottom") + u.height, z = a.extend({}, q), A = k(w.my, g.outerWidth(), g.outerHeight());
  159. if (b.my[0] === "right") {
  160. z.left -= h;
  161. } else if (b.my[0] === "center") {
  162. z.left -= h / 2;
  163. }
  164. if (b.my[1] === "bottom") {
  165. z.top -= j;
  166. } else if (b.my[1] === "center") {
  167. z.top -= j / 2;
  168. }
  169. z.left += A[0];
  170. z.top += A[1];
  171. e = {
  172. marginLeft: m,
  173. marginTop: r
  174. };
  175. a.each([ "left", "top" ], function(c, d) {
  176. if (a.ui.pos[v[c]]) {
  177. a.ui.pos[v[c]][d](z, {
  178. targetWidth: n,
  179. targetHeight: o,
  180. elemWidth: h,
  181. elemHeight: j,
  182. collisionPosition: e,
  183. collisionWidth: x,
  184. collisionHeight: y,
  185. offset: [ i[0] + A[0], i[1] + A[1] ],
  186. my: b.my,
  187. at: b.at,
  188. within: t,
  189. elem: g
  190. });
  191. }
  192. });
  193. if (b.using) {
  194. f = function(a) {
  195. var e = p.left - z.left, f = e + n - h, i = p.top - z.top, k = i + o - j, l = {
  196. target: {
  197. element: s,
  198. left: p.left,
  199. top: p.top,
  200. width: n,
  201. height: o
  202. },
  203. element: {
  204. element: g,
  205. left: z.left,
  206. top: z.top,
  207. width: h,
  208. height: j
  209. },
  210. horizontal: f < 0 ? "left" : e > 0 ? "right" : "center",
  211. vertical: k < 0 ? "top" : i > 0 ? "bottom" : "middle"
  212. };
  213. if (n < h && d(e + f) < n) {
  214. l.horizontal = "center";
  215. }
  216. if (o < j && d(i + k) < o) {
  217. l.vertical = "middle";
  218. }
  219. if (c(d(e), d(f)) > c(d(i), d(k))) {
  220. l.important = "horizontal";
  221. } else {
  222. l.important = "vertical";
  223. }
  224. b.using.call(this, a, l);
  225. };
  226. }
  227. g.offset(a.extend(z, {
  228. using: f
  229. }));
  230. });
  231. };
  232. a.ui.pos = {
  233. _trigger: function(a, b, c, d) {
  234. if (b.elem) {
  235. b.elem.trigger({
  236. type: c,
  237. position: a,
  238. positionData: b,
  239. triggered: d
  240. });
  241. }
  242. },
  243. fit: {
  244. left: function(b, d) {
  245. a.ui.pos._trigger(b, d, "posCollide", "fitLeft");
  246. var e = d.within, f = e.isWindow ? e.scrollLeft : e.offset.left, g = e.width, h = b.left - d.collisionPosition.marginLeft, i = f - h, j = h + d.collisionWidth - g - f, k;
  247. if (d.collisionWidth > g) {
  248. if (i > 0 && j <= 0) {
  249. k = b.left + i + d.collisionWidth - g - f;
  250. b.left += i - k;
  251. } else if (j > 0 && i <= 0) {
  252. b.left = f;
  253. } else {
  254. if (i > j) {
  255. b.left = f + g - d.collisionWidth;
  256. } else {
  257. b.left = f;
  258. }
  259. }
  260. } else if (i > 0) {
  261. b.left += i;
  262. } else if (j > 0) {
  263. b.left -= j;
  264. } else {
  265. b.left = c(b.left - h, b.left);
  266. }
  267. a.ui.pos._trigger(b, d, "posCollided", "fitLeft");
  268. },
  269. top: function(b, d) {
  270. a.ui.pos._trigger(b, d, "posCollide", "fitTop");
  271. var e = d.within, f = e.isWindow ? e.scrollTop : e.offset.top, g = d.within.height, h = b.top - d.collisionPosition.marginTop, i = f - h, j = h + d.collisionHeight - g - f, k;
  272. if (d.collisionHeight > g) {
  273. if (i > 0 && j <= 0) {
  274. k = b.top + i + d.collisionHeight - g - f;
  275. b.top += i - k;
  276. } else if (j > 0 && i <= 0) {
  277. b.top = f;
  278. } else {
  279. if (i > j) {
  280. b.top = f + g - d.collisionHeight;
  281. } else {
  282. b.top = f;
  283. }
  284. }
  285. } else if (i > 0) {
  286. b.top += i;
  287. } else if (j > 0) {
  288. b.top -= j;
  289. } else {
  290. b.top = c(b.top - h, b.top);
  291. }
  292. a.ui.pos._trigger(b, d, "posCollided", "fitTop");
  293. }
  294. },
  295. flip: {
  296. left: function(b, c) {
  297. a.ui.pos._trigger(b, c, "posCollide", "flipLeft");
  298. var e = c.within, f = e.offset.left + e.scrollLeft, g = e.width, h = e.isWindow ? e.scrollLeft : e.offset.left, i = b.left - c.collisionPosition.marginLeft, j = i - h, k = i + c.collisionWidth - g - h, l = c.my[0] === "left" ? -c.elemWidth : c.my[0] === "right" ? c.elemWidth : 0, m = c.at[0] === "left" ? c.targetWidth : c.at[0] === "right" ? -c.targetWidth : 0, n = -2 * c.offset[0], o, p;
  299. if (j < 0) {
  300. o = b.left + l + m + n + c.collisionWidth - g - f;
  301. if (o < 0 || o < d(j)) {
  302. b.left += l + m + n;
  303. }
  304. } else if (k > 0) {
  305. p = b.left - c.collisionPosition.marginLeft + l + m + n - h;
  306. if (p > 0 || d(p) < k) {
  307. b.left += l + m + n;
  308. }
  309. }
  310. a.ui.pos._trigger(b, c, "posCollided", "flipLeft");
  311. },
  312. top: function(b, c) {
  313. a.ui.pos._trigger(b, c, "posCollide", "flipTop");
  314. var e = c.within, f = e.offset.top + e.scrollTop, g = e.height, h = e.isWindow ? e.scrollTop : e.offset.top, i = b.top - c.collisionPosition.marginTop, j = i - h, k = i + c.collisionHeight - g - h, l = c.my[1] === "top", m = l ? -c.elemHeight : c.my[1] === "bottom" ? c.elemHeight : 0, n = c.at[1] === "top" ? c.targetHeight : c.at[1] === "bottom" ? -c.targetHeight : 0, o = -2 * c.offset[1], p, q;
  315. if (j < 0) {
  316. q = b.top + m + n + o + c.collisionHeight - g - f;
  317. if (q < 0 || q < d(j)) {
  318. b.top += m + n + o;
  319. }
  320. } else if (k > 0) {
  321. p = b.top - c.collisionPosition.marginTop + m + n + o - h;
  322. if (p > 0 || d(p) < k) {
  323. b.top += m + n + o;
  324. }
  325. }
  326. a.ui.pos._trigger(b, c, "posCollided", "flipTop");
  327. }
  328. },
  329. flipfit: {
  330. left: function() {
  331. a.ui.pos.flip.left.apply(this, arguments);
  332. a.ui.pos.fit.left.apply(this, arguments);
  333. },
  334. top: function() {
  335. a.ui.pos.flip.top.apply(this, arguments);
  336. a.ui.pos.fit.top.apply(this, arguments);
  337. }
  338. }
  339. };
  340. (function() {
  341. var b, c, d, e, f, g = document.getElementsByTagName("body")[0], h = document.createElement("div");
  342. b = document.createElement(g ? "div" : "body");
  343. d = {
  344. visibility: "hidden",
  345. width: 0,
  346. height: 0,
  347. border: 0,
  348. margin: 0,
  349. background: "none"
  350. };
  351. if (g) {
  352. a.extend(d, {
  353. position: "absolute",
  354. left: "-1000px",
  355. top: "-1000px"
  356. });
  357. }
  358. for (f in d) {
  359. b.style[f] = d[f];
  360. }
  361. b.appendChild(h);
  362. c = g || document.documentElement;
  363. c.insertBefore(b, c.firstChild);
  364. h.style.cssText = "position: absolute; left: 10.7432222px;";
  365. e = a(h).offset().left;
  366. a.support.offsetFractions = e > 10 && e < 11;
  367. b.innerHTML = "";
  368. c.removeChild(b);
  369. })();
  370. })();
  371. var c = a.ui.position;
  372. });
  373. (function(a) {
  374. "use strict";
  375. if (typeof define === "function" && define.amd) {
  376. define([ "jquery" ], a);
  377. } else if (window.jQuery && !window.jQuery.fn.iconpicker) {
  378. a(window.jQuery);
  379. }
  380. })(function(a) {
  381. "use strict";
  382. var b = {
  383. isEmpty: function(a) {
  384. return a === false || a === "" || a === null || a === undefined;
  385. },
  386. isEmptyObject: function(a) {
  387. return this.isEmpty(a) === true || a.length === 0;
  388. },
  389. isElement: function(b) {
  390. return a(b).length > 0;
  391. },
  392. isString: function(a) {
  393. return typeof a === "string" || a instanceof String;
  394. },
  395. isArray: function(b) {
  396. return a.isArray(b);
  397. },
  398. inArray: function(b, c) {
  399. return a.inArray(b, c) !== -1;
  400. },
  401. throwError: function(a) {
  402. throw "Font Awesome Icon Picker Exception: " + a;
  403. }
  404. };
  405. var c = function(d, e) {
  406. this._id = c._idCounter++;
  407. this.element = a(d).addClass("iconpicker-element");
  408. this._trigger("iconpickerCreate", {
  409. iconpickerValue: this.iconpickerValue
  410. });
  411. this.options = a.extend({}, c.defaultOptions, this.element.data(), e);
  412. this.options.templates = a.extend({}, c.defaultOptions.templates, this.options.templates);
  413. this.options.originalPlacement = this.options.placement;
  414. this.container = b.isElement(this.options.container) ? a(this.options.container) : false;
  415. if (this.container === false) {
  416. if (this.element.is(".dropdown-toggle")) {
  417. this.container = a("~ .dropdown-menu:first", this.element);
  418. } else {
  419. this.container = this.element.is("input,textarea,button,.btn") ? this.element.parent() : this.element;
  420. }
  421. }
  422. this.container.addClass("iconpicker-container");
  423. if (this.isDropdownMenu()) {
  424. this.options.placement = "inline";
  425. }
  426. this.input = this.element.is("input,textarea") ? this.element.addClass("iconpicker-input") : false;
  427. if (this.input === false) {
  428. this.input = this.container.find(this.options.input);
  429. if (!this.input.is("input,textarea")) {
  430. this.input = false;
  431. }
  432. }
  433. this.component = this.isDropdownMenu() ? this.container.parent().find(this.options.component) : this.container.find(this.options.component);
  434. if (this.component.length === 0) {
  435. this.component = false;
  436. } else {
  437. this.component.find("i").addClass("iconpicker-component");
  438. }
  439. this._createPopover();
  440. this._createIconpicker();
  441. if (this.getAcceptButton().length === 0) {
  442. this.options.mustAccept = false;
  443. }
  444. if (this.isInputGroup()) {
  445. this.container.parent().append(this.popover);
  446. } else {
  447. this.container.append(this.popover);
  448. }
  449. this._bindElementEvents();
  450. this._bindWindowEvents();
  451. this.update(this.options.selected);
  452. if (this.isInline()) {
  453. this.show();
  454. }
  455. this._trigger("iconpickerCreated", {
  456. iconpickerValue: this.iconpickerValue
  457. });
  458. };
  459. c._idCounter = 0;
  460. c.defaultOptions = {
  461. title: false,
  462. selected: false,
  463. defaultValue: false,
  464. placement: "bottom",
  465. collision: "none",
  466. animation: true,
  467. hideOnSelect: false,
  468. showFooter: false,
  469. searchInFooter: false,
  470. mustAccept: false,
  471. selectedCustomClass: "bg-primary",
  472. icons: [],
  473. fullClassFormatter: function(a) {
  474. return a;
  475. },
  476. input: "input,.iconpicker-input",
  477. inputSearch: false,
  478. container: false,
  479. component: ".input-group-addon,.iconpicker-component",
  480. templates: {
  481. popover: '<div class="iconpicker-popover popover"><div class="arrow"></div>' + '<div class="popover-title"></div><div class="popover-content"></div></div>',
  482. footer: '<div class="popover-footer"></div>',
  483. buttons: '<button class="iconpicker-btn iconpicker-btn-cancel btn btn-default btn-sm">Cancel</button>' + ' <button class="iconpicker-btn iconpicker-btn-accept btn btn-primary btn-sm">Accept</button>',
  484. search: '<input type="search" class="form-control iconpicker-search" placeholder="Type to filter" />',
  485. iconpicker: '<div class="iconpicker"><div class="iconpicker-items"></div></div>',
  486. iconpickerItem: '<a role="button" href="#" class="iconpicker-item"><i></i></a>'
  487. }
  488. };
  489. c.batch = function(b, c) {
  490. var d = Array.prototype.slice.call(arguments, 2);
  491. return a(b).each(function() {
  492. var b = a(this).data("iconpicker");
  493. if (!!b) {
  494. b[c].apply(b, d);
  495. }
  496. });
  497. };
  498. c.prototype = {
  499. constructor: c,
  500. options: {},
  501. _id: 0,
  502. _trigger: function(b, c) {
  503. c = c || {};
  504. this.element.trigger(a.extend({
  505. type: b,
  506. iconpickerInstance: this
  507. }, c));
  508. },
  509. _createPopover: function() {
  510. this.popover = a(this.options.templates.popover);
  511. var c = this.popover.find(".popover-title");
  512. if (!!this.options.title) {
  513. c.append(a('<div class="popover-title-text">' + this.options.title + "</div>"));
  514. }
  515. if (this.hasSeparatedSearchInput() && !this.options.searchInFooter) {
  516. c.append(this.options.templates.search);
  517. } else if (!this.options.title) {
  518. c.remove();
  519. }
  520. if (this.options.showFooter && !b.isEmpty(this.options.templates.footer)) {
  521. var d = a(this.options.templates.footer);
  522. if (this.hasSeparatedSearchInput() && this.options.searchInFooter) {
  523. d.append(a(this.options.templates.search));
  524. }
  525. if (!b.isEmpty(this.options.templates.buttons)) {
  526. d.append(a(this.options.templates.buttons));
  527. }
  528. this.popover.append(d);
  529. }
  530. if (this.options.animation === true) {
  531. this.popover.addClass("fade");
  532. }
  533. return this.popover;
  534. },
  535. _createIconpicker: function() {
  536. var b = this;
  537. this.iconpicker = a(this.options.templates.iconpicker);
  538. var c = function(c) {
  539. var d = a(this);
  540. if (d.is("i")) {
  541. d = d.parent();
  542. }
  543. b._trigger("iconpickerSelect", {
  544. iconpickerItem: d,
  545. iconpickerValue: b.iconpickerValue
  546. });
  547. if (b.options.mustAccept === false) {
  548. b.update(d.data("iconpickerValue"));
  549. b._trigger("iconpickerSelected", {
  550. iconpickerItem: this,
  551. iconpickerValue: b.iconpickerValue
  552. });
  553. } else {
  554. b.update(d.data("iconpickerValue"), true);
  555. }
  556. if (b.options.hideOnSelect && b.options.mustAccept === false) {
  557. b.hide();
  558. }
  559. };
  560. for (var d in this.options.icons) {
  561. if (typeof this.options.icons[d].title === "string") {
  562. var e = a(this.options.templates.iconpickerItem);
  563. e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title));
  564. e.data("iconpickerValue", this.options.icons[d].title).on("click.iconpicker", c);
  565. this.iconpicker.find(".iconpicker-items").append(e.attr("title", "." + this.options.icons[d].title));
  566. if (this.options.icons[d].searchTerms.length > 0) {
  567. var f = "";
  568. for (var g = 0; g < this.options.icons[d].searchTerms.length; g++) {
  569. f = f + this.options.icons[d].searchTerms[g] + " ";
  570. }
  571. this.iconpicker.find(".iconpicker-items").append(e.attr("data-search-terms", f));
  572. }
  573. }
  574. }
  575. this.popover.find(".popover-content").append(this.iconpicker);
  576. return this.iconpicker;
  577. },
  578. _isEventInsideIconpicker: function(b) {
  579. var c = a(b.target);
  580. if ((!c.hasClass("iconpicker-element") || c.hasClass("iconpicker-element") && !c.is(this.element)) && c.parents(".iconpicker-popover").length === 0) {
  581. return false;
  582. }
  583. return true;
  584. },
  585. _bindElementEvents: function() {
  586. var c = this;
  587. this.getSearchInput().on("keyup.iconpicker", function() {
  588. c.filter(a(this).val().toLowerCase());
  589. });
  590. this.getAcceptButton().on("click.iconpicker", function() {
  591. var a = c.iconpicker.find(".iconpicker-selected").get(0);
  592. c.update(c.iconpickerValue);
  593. c._trigger("iconpickerSelected", {
  594. iconpickerItem: a,
  595. iconpickerValue: c.iconpickerValue
  596. });
  597. if (!c.isInline()) {
  598. c.hide();
  599. }
  600. });
  601. this.getCancelButton().on("click.iconpicker", function() {
  602. if (!c.isInline()) {
  603. c.hide();
  604. }
  605. });
  606. this.element.on("focus.iconpicker", function(a) {
  607. c.show();
  608. a.stopPropagation();
  609. });
  610. if (this.hasComponent()) {
  611. this.component.on("click.iconpicker", function() {
  612. c.toggle();
  613. });
  614. }
  615. if (this.hasInput()) {
  616. this.input.on("keyup.iconpicker", function(d) {
  617. if (!b.inArray(d.keyCode, [ 38, 40, 37, 39, 16, 17, 18, 9, 8, 91, 93, 20, 46, 186, 190, 46, 78, 188, 44, 86 ])) {
  618. c.update();
  619. } else {
  620. c._updateFormGroupStatus(c.getValid(this.value) !== false);
  621. }
  622. if (c.options.inputSearch === true) {
  623. c.filter(a(this).val().toLowerCase());
  624. }
  625. });
  626. }
  627. },
  628. _bindWindowEvents: function() {
  629. var b = a(window.document);
  630. var c = this;
  631. var d = ".iconpicker.inst" + this._id;
  632. a(window).on("resize.iconpicker" + d + " orientationchange.iconpicker" + d, function(a) {
  633. if (c.popover.hasClass("in")) {
  634. c.updatePlacement();
  635. }
  636. });
  637. if (!c.isInline()) {
  638. b.on("mouseup" + d, function(a) {
  639. if (!c._isEventInsideIconpicker(a) && !c.isInline()) {
  640. c.hide();
  641. }
  642. });
  643. }
  644. },
  645. _unbindElementEvents: function() {
  646. this.popover.off(".iconpicker");
  647. this.element.off(".iconpicker");
  648. if (this.hasInput()) {
  649. this.input.off(".iconpicker");
  650. }
  651. if (this.hasComponent()) {
  652. this.component.off(".iconpicker");
  653. }
  654. if (this.hasContainer()) {
  655. this.container.off(".iconpicker");
  656. }
  657. },
  658. _unbindWindowEvents: function() {
  659. a(window).off(".iconpicker.inst" + this._id);
  660. a(window.document).off(".iconpicker.inst" + this._id);
  661. },
  662. updatePlacement: function(b, c) {
  663. b = b || this.options.placement;
  664. this.options.placement = b;
  665. c = c || this.options.collision;
  666. c = c === true ? "flip" : c;
  667. var d = {
  668. at: "right bottom",
  669. my: "right top",
  670. of: this.hasInput() && !this.isInputGroup() ? this.input : this.container,
  671. collision: c === true ? "flip" : c,
  672. within: window
  673. };
  674. this.popover.removeClass("inline topLeftCorner topLeft top topRight topRightCorner " + "rightTop right rightBottom bottomRight bottomRightCorner " + "bottom bottomLeft bottomLeftCorner leftBottom left leftTop");
  675. if (typeof b === "object") {
  676. return this.popover.pos(a.extend({}, d, b));
  677. }
  678. switch (b) {
  679. case "inline":
  680. {
  681. d = false;
  682. }
  683. break;
  684. case "topLeftCorner":
  685. {
  686. d.my = "right bottom";
  687. d.at = "left top";
  688. }
  689. break;
  690. case "topLeft":
  691. {
  692. d.my = "left bottom";
  693. d.at = "left top";
  694. }
  695. break;
  696. case "top":
  697. {
  698. d.my = "center bottom";
  699. d.at = "center top";
  700. }
  701. break;
  702. case "topRight":
  703. {
  704. d.my = "right bottom";
  705. d.at = "right top";
  706. }
  707. break;
  708. case "topRightCorner":
  709. {
  710. d.my = "left bottom";
  711. d.at = "right top";
  712. }
  713. break;
  714. case "rightTop":
  715. {
  716. d.my = "left bottom";
  717. d.at = "right center";
  718. }
  719. break;
  720. case "right":
  721. {
  722. d.my = "left center";
  723. d.at = "right center";
  724. }
  725. break;
  726. case "rightBottom":
  727. {
  728. d.my = "left top";
  729. d.at = "right center";
  730. }
  731. break;
  732. case "bottomRightCorner":
  733. {
  734. d.my = "left top";
  735. d.at = "right bottom";
  736. }
  737. break;
  738. case "bottomRight":
  739. {
  740. d.my = "right top";
  741. d.at = "right bottom";
  742. }
  743. break;
  744. case "bottom":
  745. {
  746. d.my = "center top";
  747. d.at = "center bottom";
  748. }
  749. break;
  750. case "bottomLeft":
  751. {
  752. d.my = "left top";
  753. d.at = "left bottom";
  754. }
  755. break;
  756. case "bottomLeftCorner":
  757. {
  758. d.my = "right top";
  759. d.at = "left bottom";
  760. }
  761. break;
  762. case "leftBottom":
  763. {
  764. d.my = "right top";
  765. d.at = "left center";
  766. }
  767. break;
  768. case "left":
  769. {
  770. d.my = "right center";
  771. d.at = "left center";
  772. }
  773. break;
  774. case "leftTop":
  775. {
  776. d.my = "right bottom";
  777. d.at = "left center";
  778. }
  779. break;
  780. default:
  781. {
  782. return false;
  783. }
  784. break;
  785. }
  786. this.popover.css({
  787. display: this.options.placement === "inline" ? "" : "block"
  788. });
  789. if (d !== false) {
  790. this.popover.pos(d).css("maxWidth", a(window).width() - this.container.offset().left - 5);
  791. } else {
  792. this.popover.css({
  793. top: "auto",
  794. right: "auto",
  795. bottom: "auto",
  796. left: "auto",
  797. maxWidth: "none"
  798. });
  799. }
  800. this.popover.addClass(this.options.placement);
  801. return true;
  802. },
  803. _updateComponents: function() {
  804. this.iconpicker.find(".iconpicker-item.iconpicker-selected").removeClass("iconpicker-selected " + this.options.selectedCustomClass);
  805. if (this.iconpickerValue) {
  806. this.iconpicker.find("." + this.options.fullClassFormatter(this.iconpickerValue).replace(/ /g, ".")).parent().addClass("iconpicker-selected " + this.options.selectedCustomClass);
  807. }
  808. if (this.hasComponent()) {
  809. var a = this.component.find("i");
  810. if (a.length > 0) {
  811. a.attr("class", this.options.fullClassFormatter(this.iconpickerValue));
  812. } else {
  813. this.component.html(this.getHtml());
  814. }
  815. }
  816. },
  817. _updateFormGroupStatus: function(a) {
  818. if (this.hasInput()) {
  819. if (a !== false) {
  820. this.input.parents(".form-group:first").removeClass("has-error");
  821. } else {
  822. this.input.parents(".form-group:first").addClass("has-error");
  823. }
  824. return true;
  825. }
  826. return false;
  827. },
  828. getValid: function(c) {
  829. if (!b.isString(c)) {
  830. c = "";
  831. }
  832. var d = c === "";
  833. c = a.trim(c);
  834. var e = false;
  835. for (var f = 0; f < this.options.icons.length; f++) {
  836. if (this.options.icons[f].title === c) {
  837. e = true;
  838. break;
  839. }
  840. }
  841. if (e || d) {
  842. return c;
  843. }
  844. return false;
  845. },
  846. setValue: function(a) {
  847. var b = this.getValid(a);
  848. if (b !== false) {
  849. this.iconpickerValue = b;
  850. this._trigger("iconpickerSetValue", {
  851. iconpickerValue: b
  852. });
  853. return this.iconpickerValue;
  854. } else {
  855. this._trigger("iconpickerInvalid", {
  856. iconpickerValue: a
  857. });
  858. return false;
  859. }
  860. },
  861. getHtml: function() {
  862. return '<i class="' + this.options.fullClassFormatter(this.iconpickerValue) + '"></i>';
  863. },
  864. setSourceValue: function(a) {
  865. a = this.setValue(a);
  866. if (a !== false && a !== "") {
  867. if (this.hasInput()) {
  868. this.input.val(this.iconpickerValue);
  869. } else {
  870. this.element.data("iconpickerValue", this.iconpickerValue);
  871. }
  872. this._trigger("iconpickerSetSourceValue", {
  873. iconpickerValue: a
  874. });
  875. }
  876. return a;
  877. },
  878. getSourceValue: function(a) {
  879. a = a || this.options.defaultValue;
  880. var b = a;
  881. if (this.hasInput()) {
  882. b = this.input.val();
  883. } else {
  884. b = this.element.data("iconpickerValue");
  885. }
  886. if (b === undefined || b === "" || b === null || b === false) {
  887. b = a;
  888. }
  889. return b;
  890. },
  891. hasInput: function() {
  892. return this.input !== false;
  893. },
  894. isInputSearch: function() {
  895. return this.hasInput() && this.options.inputSearch === true;
  896. },
  897. isInputGroup: function() {
  898. return this.container.is(".input-group");
  899. },
  900. isDropdownMenu: function() {
  901. return this.container.is(".dropdown-menu");
  902. },
  903. hasSeparatedSearchInput: function() {
  904. return this.options.templates.search !== false && !this.isInputSearch();
  905. },
  906. hasComponent: function() {
  907. return this.component !== false;
  908. },
  909. hasContainer: function() {
  910. return this.container !== false;
  911. },
  912. getAcceptButton: function() {
  913. return this.popover.find(".iconpicker-btn-accept");
  914. },
  915. getCancelButton: function() {
  916. return this.popover.find(".iconpicker-btn-cancel");
  917. },
  918. getSearchInput: function() {
  919. return this.popover.find(".iconpicker-search");
  920. },
  921. filter: function(c) {
  922. if (b.isEmpty(c)) {
  923. this.iconpicker.find(".iconpicker-item").show();
  924. return a(false);
  925. } else {
  926. var d = [];
  927. this.iconpicker.find(".iconpicker-item").each(function() {
  928. var b = a(this);
  929. var e = b.attr("title").toLowerCase();
  930. var f = b.attr("data-search-terms") ? b.attr("data-search-terms").toLowerCase() : "";
  931. e = e + " " + f;
  932. var g = false;
  933. try {
  934. g = new RegExp("(^|\\W)" + c, "g");
  935. } catch (a) {
  936. g = false;
  937. }
  938. if (g !== false && e.match(g)) {
  939. d.push(b);
  940. b.show();
  941. } else {
  942. b.hide();
  943. }
  944. });
  945. return d;
  946. }
  947. },
  948. show: function() {
  949. if (this.popover.hasClass("in")) {
  950. return false;
  951. }
  952. a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover), "hide");
  953. this._trigger("iconpickerShow", {
  954. iconpickerValue: this.iconpickerValue
  955. });
  956. this.updatePlacement();
  957. this.popover.addClass("in");
  958. setTimeout(a.proxy(function() {
  959. this.popover.css("display", this.isInline() ? "" : "block");
  960. this._trigger("iconpickerShown", {
  961. iconpickerValue: this.iconpickerValue
  962. });
  963. }, this), this.options.animation ? 300 : 1);
  964. },
  965. hide: function() {
  966. if (!this.popover.hasClass("in")) {
  967. return false;
  968. }
  969. this._trigger("iconpickerHide", {
  970. iconpickerValue: this.iconpickerValue
  971. });
  972. this.popover.removeClass("in");
  973. setTimeout(a.proxy(function() {
  974. this.popover.css("display", "none");
  975. this.getSearchInput().val("");
  976. this.filter("");
  977. this._trigger("iconpickerHidden", {
  978. iconpickerValue: this.iconpickerValue
  979. });
  980. }, this), this.options.animation ? 300 : 1);
  981. },
  982. toggle: function() {
  983. if (this.popover.is(":visible")) {
  984. this.hide();
  985. } else {
  986. this.show(true);
  987. }
  988. },
  989. update: function(a, b) {
  990. a = a ? a : this.getSourceValue(this.iconpickerValue);
  991. this._trigger("iconpickerUpdate", {
  992. iconpickerValue: this.iconpickerValue
  993. });
  994. if (b === true) {
  995. a = this.setValue(a);
  996. } else {
  997. a = this.setSourceValue(a);
  998. this._updateFormGroupStatus(a !== false);
  999. }
  1000. if (a !== false) {
  1001. this._updateComponents();
  1002. }
  1003. this._trigger("iconpickerUpdated", {
  1004. iconpickerValue: this.iconpickerValue
  1005. });
  1006. return a;
  1007. },
  1008. destroy: function() {
  1009. this._trigger("iconpickerDestroy", {
  1010. iconpickerValue: this.iconpickerValue
  1011. });
  1012. this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element");
  1013. this._unbindElementEvents();
  1014. this._unbindWindowEvents();
  1015. a(this.popover).remove();
  1016. this._trigger("iconpickerDestroyed", {
  1017. iconpickerValue: this.iconpickerValue
  1018. });
  1019. },
  1020. disable: function() {
  1021. if (this.hasInput()) {
  1022. this.input.prop("disabled", true);
  1023. return true;
  1024. }
  1025. return false;
  1026. },
  1027. enable: function() {
  1028. if (this.hasInput()) {
  1029. this.input.prop("disabled", false);
  1030. return true;
  1031. }
  1032. return false;
  1033. },
  1034. isDisabled: function() {
  1035. if (this.hasInput()) {
  1036. return this.input.prop("disabled") === true;
  1037. }
  1038. return false;
  1039. },
  1040. isInline: function() {
  1041. return this.options.placement === "inline" || this.popover.hasClass("inline");
  1042. }
  1043. };
  1044. a.iconpicker = c;
  1045. a.fn.iconpicker = function(b) {
  1046. return this.each(function() {
  1047. var d = a(this);
  1048. if (!d.data("iconpicker")) {
  1049. d.data("iconpicker", new c(this, typeof b === "object" ? b : {}));
  1050. }
  1051. });
  1052. };
  1053. c.defaultOptions = a.extend(c.defaultOptions, {
  1054. icons: [ {
  1055. title: "fab fa-500px",
  1056. searchTerms: []
  1057. }, {
  1058. title: "fab fa-accessible-icon",
  1059. searchTerms: [ "accessibility", "wheelchair", "handicap", "person", "wheelchair-alt" ]
  1060. }, {
  1061. title: "fab fa-accusoft",
  1062. searchTerms: []
  1063. }, {
  1064. title: "fas fa-address-book",
  1065. searchTerms: []
  1066. }, {
  1067. title: "far fa-address-book",
  1068. searchTerms: []
  1069. }, {
  1070. title: "fas fa-address-card",
  1071. searchTerms: []
  1072. }, {
  1073. title: "far fa-address-card",
  1074. searchTerms: []
  1075. }, {
  1076. title: "fas fa-adjust",
  1077. searchTerms: [ "contrast" ]
  1078. }, {
  1079. title: "fab fa-adn",
  1080. searchTerms: []
  1081. }, {
  1082. title: "fab fa-adversal",
  1083. searchTerms: []
  1084. }, {
  1085. title: "fab fa-affiliatetheme",
  1086. searchTerms: []
  1087. }, {
  1088. title: "fab fa-algolia",
  1089. searchTerms: []
  1090. }, {
  1091. title: "fas fa-align-center",
  1092. searchTerms: [ "middle", "text" ]
  1093. }, {
  1094. title: "fas fa-align-justify",
  1095. searchTerms: [ "text" ]
  1096. }, {
  1097. title: "fas fa-align-left",
  1098. searchTerms: [ "text" ]
  1099. }, {
  1100. title: "fas fa-align-right",
  1101. searchTerms: [ "text" ]
  1102. }, {
  1103. title: "fab fa-amazon",
  1104. searchTerms: []
  1105. }, {
  1106. title: "fab fa-amazon-pay",
  1107. searchTerms: []
  1108. }, {
  1109. title: "fas fa-ambulance",
  1110. searchTerms: [ "vehicle", "support", "help" ]
  1111. }, {
  1112. title: "fas fa-american-sign-language-interpreting",
  1113. searchTerms: []
  1114. }, {
  1115. title: "fab fa-amilia",
  1116. searchTerms: []
  1117. }, {
  1118. title: "fas fa-anchor",
  1119. searchTerms: [ "link" ]
  1120. }, {
  1121. title: "fab fa-android",
  1122. searchTerms: [ "robot" ]
  1123. }, {
  1124. title: "fab fa-angellist",
  1125. searchTerms: []
  1126. }, {
  1127. title: "fas fa-angle-double-down",
  1128. searchTerms: [ "arrows" ]
  1129. }, {
  1130. title: "fas fa-angle-double-left",
  1131. searchTerms: [ "laquo", "quote", "previous", "back", "arrows" ]
  1132. }, {
  1133. title: "fas fa-angle-double-right",
  1134. searchTerms: [ "raquo", "quote", "next", "forward", "arrows" ]
  1135. }, {
  1136. title: "fas fa-angle-double-up",
  1137. searchTerms: [ "arrows" ]
  1138. }, {
  1139. title: "fas fa-angle-down",
  1140. searchTerms: [ "arrow" ]
  1141. }, {
  1142. title: "fas fa-angle-left",
  1143. searchTerms: [ "previous", "back", "arrow" ]
  1144. }, {
  1145. title: "fas fa-angle-right",
  1146. searchTerms: [ "next", "forward", "arrow" ]
  1147. }, {
  1148. title: "fas fa-angle-up",
  1149. searchTerms: [ "arrow" ]
  1150. }, {
  1151. title: "fab fa-angrycreative",
  1152. searchTerms: []
  1153. }, {
  1154. title: "fab fa-angular",
  1155. searchTerms: []
  1156. }, {
  1157. title: "fab fa-app-store",
  1158. searchTerms: []
  1159. }, {
  1160. title: "fab fa-app-store-ios",
  1161. searchTerms: []
  1162. }, {
  1163. title: "fab fa-apper",
  1164. searchTerms: []
  1165. }, {
  1166. title: "fab fa-apple",
  1167. searchTerms: [ "osx", "food" ]
  1168. }, {
  1169. title: "fab fa-apple-pay",
  1170. searchTerms: []
  1171. }, {
  1172. title: "fas fa-archive",
  1173. searchTerms: [ "box", "storage", "package" ]
  1174. }, {
  1175. title: "fas fa-arrow-alt-circle-down",
  1176. searchTerms: [ "download", "arrow-circle-o-down" ]
  1177. }, {
  1178. title: "far fa-arrow-alt-circle-down",
  1179. searchTerms: [ "download", "arrow-circle-o-down" ]
  1180. }, {
  1181. title: "fas fa-arrow-alt-circle-left",
  1182. searchTerms: [ "previous", "back", "arrow-circle-o-left" ]
  1183. }, {
  1184. title: "far fa-arrow-alt-circle-left",
  1185. searchTerms: [ "previous", "back", "arrow-circle-o-left" ]
  1186. }, {
  1187. title: "fas fa-arrow-alt-circle-right",
  1188. searchTerms: [ "next", "forward", "arrow-circle-o-right" ]
  1189. }, {
  1190. title: "far fa-arrow-alt-circle-right",
  1191. searchTerms: [ "next", "forward", "arrow-circle-o-right" ]
  1192. }, {
  1193. title: "fas fa-arrow-alt-circle-up",
  1194. searchTerms: [ "arrow-circle-o-up" ]
  1195. }, {
  1196. title: "far fa-arrow-alt-circle-up",
  1197. searchTerms: [ "arrow-circle-o-up" ]
  1198. }, {
  1199. title: "fas fa-arrow-circle-down",
  1200. searchTerms: [ "download" ]
  1201. }, {
  1202. title: "fas fa-arrow-circle-left",
  1203. searchTerms: [ "previous", "back" ]
  1204. }, {
  1205. title: "fas fa-arrow-circle-right",
  1206. searchTerms: [ "next", "forward" ]
  1207. }, {
  1208. title: "fas fa-arrow-circle-up",
  1209. searchTerms: []
  1210. }, {
  1211. title: "fas fa-arrow-down",
  1212. searchTerms: [ "download" ]
  1213. }, {
  1214. title: "fas fa-arrow-left",
  1215. searchTerms: [ "previous", "back" ]
  1216. }, {
  1217. title: "fas fa-arrow-right",
  1218. searchTerms: [ "next", "forward" ]
  1219. }, {
  1220. title: "fas fa-arrow-up",
  1221. searchTerms: []
  1222. }, {
  1223. title: "fas fa-arrows-alt",
  1224. searchTerms: [ "expand", "enlarge", "fullscreen", "bigger", "move", "reorder", "resize", "arrow", "arrows" ]
  1225. }, {
  1226. title: "fas fa-arrows-alt-h",
  1227. searchTerms: [ "resize", "arrows-h" ]
  1228. }, {
  1229. title: "fas fa-arrows-alt-v",
  1230. searchTerms: [ "resize", "arrows-v" ]
  1231. }, {
  1232. title: "fas fa-assistive-listening-systems",
  1233. searchTerms: []
  1234. }, {
  1235. title: "fas fa-asterisk",
  1236. searchTerms: [ "details" ]
  1237. }, {
  1238. title: "fab fa-asymmetrik",
  1239. searchTerms: []
  1240. }, {
  1241. title: "fas fa-at",
  1242. searchTerms: [ "email", "e-mail" ]
  1243. }, {
  1244. title: "fab fa-audible",
  1245. searchTerms: []
  1246. }, {
  1247. title: "fas fa-audio-description",
  1248. searchTerms: []
  1249. }, {
  1250. title: "fab fa-autoprefixer",
  1251. searchTerms: []
  1252. }, {
  1253. title: "fab fa-avianex",
  1254. searchTerms: []
  1255. }, {
  1256. title: "fab fa-aviato",
  1257. searchTerms: []
  1258. }, {
  1259. title: "fab fa-aws",
  1260. searchTerms: []
  1261. }, {
  1262. title: "fas fa-backward",
  1263. searchTerms: [ "rewind", "previous" ]
  1264. }, {
  1265. title: "fas fa-balance-scale",
  1266. searchTerms: []
  1267. }, {
  1268. title: "fas fa-ban",
  1269. searchTerms: [ "delete", "remove", "trash", "hide", "block", "stop", "abort", "cancel", "ban", "prohibit" ]
  1270. }, {
  1271. title: "fas fa-band-aid",
  1272. searchTerms: [ "bandage", "ouch", "boo boo" ]
  1273. }, {
  1274. title: "fab fa-bandcamp",
  1275. searchTerms: []
  1276. }, {
  1277. title: "fas fa-barcode",
  1278. searchTerms: [ "scan" ]
  1279. }, {
  1280. title: "fas fa-bars",
  1281. searchTerms: [ "menu", "drag", "reorder", "settings", "list", "ul", "ol", "checklist", "todo", "list", "hamburger" ]
  1282. }, {
  1283. title: "fas fa-baseball-ball",
  1284. searchTerms: []
  1285. }, {
  1286. title: "fas fa-basketball-ball",
  1287. searchTerms: []
  1288. }, {
  1289. title: "fas fa-bath",
  1290. searchTerms: []
  1291. }, {
  1292. title: "fas fa-battery-empty",
  1293. searchTerms: [ "power", "status" ]
  1294. }, {
  1295. title: "fas fa-battery-full",
  1296. searchTerms: [ "power", "status" ]
  1297. }, {
  1298. title: "fas fa-battery-half",
  1299. searchTerms: [ "power", "status" ]
  1300. }, {
  1301. title: "fas fa-battery-quarter",
  1302. searchTerms: [ "power", "status" ]
  1303. }, {
  1304. title: "fas fa-battery-three-quarters",
  1305. searchTerms: [ "power", "status" ]
  1306. }, {
  1307. title: "fas fa-bed",
  1308. searchTerms: [ "travel" ]
  1309. }, {
  1310. title: "fas fa-beer",
  1311. searchTerms: [ "alcohol", "stein", "drink", "mug", "bar", "liquor" ]
  1312. }, {
  1313. title: "fab fa-behance",
  1314. searchTerms: []
  1315. }, {
  1316. title: "fab fa-behance-square",
  1317. searchTerms: []
  1318. }, {
  1319. title: "fas fa-bell",
  1320. searchTerms: [ "alert", "reminder", "notification" ]
  1321. }, {
  1322. title: "far fa-bell",
  1323. searchTerms: [ "alert", "reminder", "notification" ]
  1324. }, {
  1325. title: "fas fa-bell-slash",
  1326. searchTerms: []
  1327. }, {
  1328. title: "far fa-bell-slash",
  1329. searchTerms: []
  1330. }, {
  1331. title: "fas fa-bicycle",
  1332. searchTerms: [ "vehicle", "bike", "gears" ]
  1333. }, {
  1334. title: "fab fa-bimobject",
  1335. searchTerms: []
  1336. }, {
  1337. title: "fas fa-binoculars",
  1338. searchTerms: []
  1339. }, {
  1340. title: "fas fa-birthday-cake",
  1341. searchTerms: []
  1342. }, {
  1343. title: "fab fa-bitbucket",
  1344. searchTerms: [ "git", "bitbucket-square" ]
  1345. }, {
  1346. title: "fab fa-bitcoin",
  1347. searchTerms: []
  1348. }, {
  1349. title: "fab fa-bity",
  1350. searchTerms: []
  1351. }, {
  1352. title: "fab fa-black-tie",
  1353. searchTerms: []
  1354. }, {
  1355. title: "fab fa-blackberry",
  1356. searchTerms: []
  1357. }, {
  1358. title: "fas fa-blind",
  1359. searchTerms: []
  1360. }, {
  1361. title: "fab fa-blogger",
  1362. searchTerms: []
  1363. }, {
  1364. title: "fab fa-blogger-b",
  1365. searchTerms: []
  1366. }, {
  1367. title: "fab fa-bluetooth",
  1368. searchTerms: []
  1369. }, {
  1370. title: "fab fa-bluetooth-b",
  1371. searchTerms: []
  1372. }, {
  1373. title: "fas fa-bold",
  1374. searchTerms: []
  1375. }, {
  1376. title: "fas fa-bolt",
  1377. searchTerms: [ "lightning", "weather" ]
  1378. }, {
  1379. title: "fas fa-bomb",
  1380. searchTerms: []
  1381. }, {
  1382. title: "fas fa-book",
  1383. searchTerms: [ "read", "documentation" ]
  1384. }, {
  1385. title: "fas fa-bookmark",
  1386. searchTerms: [ "save" ]
  1387. }, {
  1388. title: "far fa-bookmark",
  1389. searchTerms: [ "save" ]
  1390. }, {
  1391. title: "fas fa-bowling-ball",
  1392. searchTerms: []
  1393. }, {
  1394. title: "fas fa-box",
  1395. searchTerms: []
  1396. }, {
  1397. title: "fas fa-boxes",
  1398. searchTerms: []
  1399. }, {
  1400. title: "fas fa-braille",
  1401. searchTerms: []
  1402. }, {
  1403. title: "fas fa-briefcase",
  1404. searchTerms: [ "work", "business", "office", "luggage", "bag" ]
  1405. }, {
  1406. title: "fab fa-btc",
  1407. searchTerms: []
  1408. }, {
  1409. title: "fas fa-bug",
  1410. searchTerms: [ "report", "insect" ]
  1411. }, {
  1412. title: "fas fa-building",
  1413. searchTerms: [ "work", "business", "apartment", "office", "company" ]
  1414. }, {
  1415. title: "far fa-building",
  1416. searchTerms: [ "work", "business", "apartment", "office", "company" ]
  1417. }, {
  1418. title: "fas fa-bullhorn",
  1419. searchTerms: [ "announcement", "share", "broadcast", "louder", "megaphone" ]
  1420. }, {
  1421. title: "fas fa-bullseye",
  1422. searchTerms: [ "target" ]
  1423. }, {
  1424. title: "fab fa-buromobelexperte",
  1425. searchTerms: []
  1426. }, {
  1427. title: "fas fa-bus",
  1428. searchTerms: [ "vehicle" ]
  1429. }, {
  1430. title: "fab fa-buysellads",
  1431. searchTerms: []
  1432. }, {
  1433. title: "fas fa-calculator",
  1434. searchTerms: []
  1435. }, {
  1436. title: "fas fa-calendar",
  1437. searchTerms: [ "date", "time", "when", "event", "calendar-o" ]
  1438. }, {
  1439. title: "far fa-calendar",
  1440. searchTerms: [ "date", "time", "when", "event", "calendar-o" ]
  1441. }, {
  1442. title: "fas fa-calendar-alt",
  1443. searchTerms: [ "date", "time", "when", "event", "calendar" ]
  1444. }, {
  1445. title: "far fa-calendar-alt",
  1446. searchTerms: [ "date", "time", "when", "event", "calendar" ]
  1447. }, {
  1448. title: "fas fa-calendar-check",
  1449. searchTerms: [ "ok" ]
  1450. }, {
  1451. title: "far fa-calendar-check",
  1452. searchTerms: [ "ok" ]
  1453. }, {
  1454. title: "fas fa-calendar-minus",
  1455. searchTerms: []
  1456. }, {
  1457. title: "far fa-calendar-minus",
  1458. searchTerms: []
  1459. }, {
  1460. title: "fas fa-calendar-plus",
  1461. searchTerms: []
  1462. }, {
  1463. title: "far fa-calendar-plus",
  1464. searchTerms: []
  1465. }, {
  1466. title: "fas fa-calendar-times",
  1467. searchTerms: []
  1468. }, {
  1469. title: "far fa-calendar-times",
  1470. searchTerms: []
  1471. }, {
  1472. title: "fas fa-camera",
  1473. searchTerms: [ "photo", "picture", "record" ]
  1474. }, {
  1475. title: "fas fa-camera-retro",
  1476. searchTerms: [ "photo", "picture", "record" ]
  1477. }, {
  1478. title: "fas fa-car",
  1479. searchTerms: [ "vehicle" ]
  1480. }, {
  1481. title: "fas fa-caret-down",
  1482. searchTerms: [ "more", "dropdown", "menu", "triangle down", "arrow" ]
  1483. }, {
  1484. title: "fas fa-caret-left",
  1485. searchTerms: [ "previous", "back", "triangle left", "arrow" ]
  1486. }, {
  1487. title: "fas fa-caret-right",
  1488. searchTerms: [ "next", "forward", "triangle right", "arrow" ]
  1489. }, {
  1490. title: "fas fa-caret-square-down",
  1491. searchTerms: [ "more", "dropdown", "menu", "caret-square-o-down" ]
  1492. }, {
  1493. title: "far fa-caret-square-down",
  1494. searchTerms: [ "more", "dropdown", "menu", "caret-square-o-down" ]
  1495. }, {
  1496. title: "fas fa-caret-square-left",
  1497. searchTerms: [ "previous", "back", "caret-square-o-left" ]
  1498. }, {
  1499. title: "far fa-caret-square-left",
  1500. searchTerms: [ "previous", "back", "caret-square-o-left" ]
  1501. }, {
  1502. title: "fas fa-caret-square-right",
  1503. searchTerms: [ "next", "forward", "caret-square-o-right" ]
  1504. }, {
  1505. title: "far fa-caret-square-right",
  1506. searchTerms: [ "next", "forward", "caret-square-o-right" ]
  1507. }, {
  1508. title: "fas fa-caret-square-up",
  1509. searchTerms: [ "caret-square-o-up" ]
  1510. }, {
  1511. title: "far fa-caret-square-up",
  1512. searchTerms: [ "caret-square-o-up" ]
  1513. }, {
  1514. title: "fas fa-caret-up",
  1515. searchTerms: [ "triangle up", "arrow" ]
  1516. }, {
  1517. title: "fas fa-cart-arrow-down",
  1518. searchTerms: [ "shopping" ]
  1519. }, {
  1520. title: "fas fa-cart-plus",
  1521. searchTerms: [ "add", "shopping" ]
  1522. }, {
  1523. title: "fab fa-cc-amazon-pay",
  1524. searchTerms: []
  1525. }, {
  1526. title: "fab fa-cc-amex",
  1527. searchTerms: [ "amex" ]
  1528. }, {
  1529. title: "fab fa-cc-apple-pay",
  1530. searchTerms: []
  1531. }, {
  1532. title: "fab fa-cc-diners-club",
  1533. searchTerms: []
  1534. }, {
  1535. title: "fab fa-cc-discover",
  1536. searchTerms: []
  1537. }, {
  1538. title: "fab fa-cc-jcb",
  1539. searchTerms: []
  1540. }, {
  1541. title: "fab fa-cc-mastercard",
  1542. searchTerms: []
  1543. }, {
  1544. title: "fab fa-cc-paypal",
  1545. searchTerms: []
  1546. }, {
  1547. title: "fab fa-cc-stripe",
  1548. searchTerms: []
  1549. }, {
  1550. title: "fab fa-cc-visa",
  1551. searchTerms: []
  1552. }, {
  1553. title: "fab fa-centercode",
  1554. searchTerms: []
  1555. }, {
  1556. title: "fas fa-certificate",
  1557. searchTerms: [ "badge", "star" ]
  1558. }, {
  1559. title: "fas fa-chart-area",
  1560. searchTerms: [ "graph", "analytics", "area-chart" ]
  1561. }, {
  1562. title: "fas fa-chart-bar",
  1563. searchTerms: [ "graph", "analytics", "bar-chart" ]
  1564. }, {
  1565. title: "far fa-chart-bar",
  1566. searchTerms: [ "graph", "analytics", "bar-chart" ]
  1567. }, {
  1568. title: "fas fa-chart-line",
  1569. searchTerms: [ "graph", "analytics", "line-chart", "dashboard" ]
  1570. }, {
  1571. title: "fas fa-chart-pie",
  1572. searchTerms: [ "graph", "analytics", "pie-chart" ]
  1573. }, {
  1574. title: "fas fa-check",
  1575. searchTerms: [ "checkmark", "done", "todo", "agree", "accept", "confirm", "tick", "ok", "select" ]
  1576. }, {
  1577. title: "fas fa-check-circle",
  1578. searchTerms: [ "todo", "done", "agree", "accept", "confirm", "ok", "select" ]
  1579. }, {
  1580. title: "far fa-check-circle",
  1581. searchTerms: [ "todo", "done", "agree", "accept", "confirm", "ok", "select" ]
  1582. }, {
  1583. title: "fas fa-check-square",
  1584. searchTerms: [ "checkmark", "done", "todo", "agree", "accept", "confirm", "ok", "select" ]
  1585. }, {
  1586. title: "far fa-check-square",
  1587. searchTerms: [ "checkmark", "done", "todo", "agree", "accept", "confirm", "ok", "select" ]
  1588. }, {
  1589. title: "fas fa-chess",
  1590. searchTerms: []
  1591. }, {
  1592. title: "fas fa-chess-bishop",
  1593. searchTerms: []
  1594. }, {
  1595. title: "fas fa-chess-board",
  1596. searchTerms: []
  1597. }, {
  1598. title: "fas fa-chess-king",
  1599. searchTerms: []
  1600. }, {
  1601. title: "fas fa-chess-knight",
  1602. searchTerms: []
  1603. }, {
  1604. title: "fas fa-chess-pawn",
  1605. searchTerms: []
  1606. }, {
  1607. title: "fas fa-chess-queen",
  1608. searchTerms: []
  1609. }, {
  1610. title: "fas fa-chess-rook",
  1611. searchTerms: []
  1612. }, {
  1613. title: "fas fa-chevron-circle-down",
  1614. searchTerms: [ "more", "dropdown", "menu", "arrow" ]
  1615. }, {
  1616. title: "fas fa-chevron-circle-left",
  1617. searchTerms: [ "previous", "back", "arrow" ]
  1618. }, {
  1619. title: "fas fa-chevron-circle-right",
  1620. searchTerms: [ "next", "forward", "arrow" ]
  1621. }, {
  1622. title: "fas fa-chevron-circle-up",
  1623. searchTerms: [ "arrow" ]
  1624. }, {
  1625. title: "fas fa-chevron-down",
  1626. searchTerms: []
  1627. }, {
  1628. title: "fas fa-chevron-left",
  1629. searchTerms: [ "bracket", "previous", "back" ]
  1630. }, {
  1631. title: "fas fa-chevron-right",
  1632. searchTerms: [ "bracket", "next", "forward" ]
  1633. }, {
  1634. title: "fas fa-chevron-up",
  1635. searchTerms: []
  1636. }, {
  1637. title: "fas fa-child",
  1638. searchTerms: []
  1639. }, {
  1640. title: "fab fa-chrome",
  1641. searchTerms: [ "browser" ]
  1642. }, {
  1643. title: "fas fa-circle",
  1644. searchTerms: [ "dot", "notification", "circle-thin" ]
  1645. }, {
  1646. title: "far fa-circle",
  1647. searchTerms: [ "dot", "notification", "circle-thin" ]
  1648. }, {
  1649. title: "fas fa-circle-notch",
  1650. searchTerms: [ "circle-o-notch" ]
  1651. }, {
  1652. title: "fas fa-clipboard",
  1653. searchTerms: [ "paste" ]
  1654. }, {
  1655. title: "far fa-clipboard",
  1656. searchTerms: [ "paste" ]
  1657. }, {
  1658. title: "fas fa-clipboard-check",
  1659. searchTerms: []
  1660. }, {
  1661. title: "fas fa-clipboard-list",
  1662. searchTerms: []
  1663. }, {
  1664. title: "fas fa-clock",
  1665. searchTerms: [ "watch", "timer", "late", "timestamp", "date" ]
  1666. }, {
  1667. title: "far fa-clock",
  1668. searchTerms: [ "watch", "timer", "late", "timestamp", "date" ]
  1669. }, {
  1670. title: "fas fa-clone",
  1671. searchTerms: [ "copy" ]
  1672. }, {
  1673. title: "far fa-clone",
  1674. searchTerms: [ "copy" ]
  1675. }, {
  1676. title: "fas fa-closed-captioning",
  1677. searchTerms: [ "cc" ]
  1678. }, {
  1679. title: "far fa-closed-captioning",
  1680. searchTerms: [ "cc" ]
  1681. }, {
  1682. title: "fas fa-cloud",
  1683. searchTerms: [ "save" ]
  1684. }, {
  1685. title: "fas fa-cloud-download-alt",
  1686. searchTerms: [ "cloud-download" ]
  1687. }, {
  1688. title: "fas fa-cloud-upload-alt",
  1689. searchTerms: [ "cloud-upload" ]
  1690. }, {
  1691. title: "fab fa-cloudscale",
  1692. searchTerms: []
  1693. }, {
  1694. title: "fab fa-cloudsmith",
  1695. searchTerms: []
  1696. }, {
  1697. title: "fab fa-cloudversify",
  1698. searchTerms: []
  1699. }, {
  1700. title: "fas fa-code",
  1701. searchTerms: [ "html", "brackets" ]
  1702. }, {
  1703. title: "fas fa-code-branch",
  1704. searchTerms: [ "git", "fork", "vcs", "svn", "github", "rebase", "version", "branch", "code-fork" ]
  1705. }, {
  1706. title: "fab fa-codepen",
  1707. searchTerms: []
  1708. }, {
  1709. title: "fab fa-codiepie",
  1710. searchTerms: []
  1711. }, {
  1712. title: "fas fa-coffee",
  1713. searchTerms: [ "morning", "mug", "breakfast", "tea", "drink", "cafe" ]
  1714. }, {
  1715. title: "fas fa-cog",
  1716. searchTerms: [ "settings" ]
  1717. }, {
  1718. title: "fas fa-cogs",
  1719. searchTerms: [ "settings", "gears" ]
  1720. }, {
  1721. title: "fas fa-columns",
  1722. searchTerms: [ "split", "panes", "dashboard" ]
  1723. }, {
  1724. title: "fas fa-comment",
  1725. searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ]
  1726. }, {
  1727. title: "far fa-comment",
  1728. searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ]
  1729. }, {
  1730. title: "fas fa-comment-alt",
  1731. searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation", "commenting", "commenting" ]
  1732. }, {
  1733. title: "far fa-comment-alt",
  1734. searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation", "commenting", "commenting" ]
  1735. }, {
  1736. title: "fas fa-comments",
  1737. searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ]
  1738. }, {
  1739. title: "far fa-comments",
  1740. searchTerms: [ "speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation" ]
  1741. }, {
  1742. title: "fas fa-compass",
  1743. searchTerms: [ "safari", "directory", "menu", "location" ]
  1744. }, {
  1745. title: "far fa-compass",
  1746. searchTerms: [ "safari", "directory", "menu", "location" ]
  1747. }, {
  1748. title: "fas fa-compress",
  1749. searchTerms: [ "collapse", "combine", "contract", "merge", "smaller" ]
  1750. }, {
  1751. title: "fab fa-connectdevelop",
  1752. searchTerms: []
  1753. }, {
  1754. title: "fab fa-contao",
  1755. searchTerms: []
  1756. }, {
  1757. title: "fas fa-copy",
  1758. searchTerms: [ "duplicate", "clone", "file", "files-o" ]
  1759. }, {
  1760. title: "far fa-copy",
  1761. searchTerms: [ "duplicate", "clone", "file", "files-o" ]
  1762. }, {
  1763. title: "fas fa-copyright",
  1764. searchTerms: []
  1765. }, {
  1766. title: "far fa-copyright",
  1767. searchTerms: []
  1768. }, {
  1769. title: "fab fa-cpanel",
  1770. searchTerms: []
  1771. }, {
  1772. title: "fab fa-creative-commons",
  1773. searchTerms: []
  1774. }, {
  1775. title: "fas fa-credit-card",
  1776. searchTerms: [ "money", "buy", "debit", "checkout", "purchase", "payment", "credit-card-alt" ]
  1777. }, {
  1778. title: "far fa-credit-card",
  1779. searchTerms: [ "money", "buy", "debit", "checkout", "purchase", "payment", "credit-card-alt" ]
  1780. }, {
  1781. title: "fas fa-crop",
  1782. searchTerms: [ "design" ]
  1783. }, {
  1784. title: "fas fa-crosshairs",
  1785. searchTerms: [ "picker", "gpd" ]
  1786. }, {
  1787. title: "fab fa-css3",
  1788. searchTerms: [ "code" ]
  1789. }, {
  1790. title: "fab fa-css3-alt",
  1791. searchTerms: []
  1792. }, {
  1793. title: "fas fa-cube",
  1794. searchTerms: [ "package" ]
  1795. }, {
  1796. title: "fas fa-cubes",
  1797. searchTerms: [ "packages" ]
  1798. }, {
  1799. title: "fas fa-cut",
  1800. searchTerms: [ "scissors", "scissors" ]
  1801. }, {
  1802. title: "fab fa-cuttlefish",
  1803. searchTerms: []
  1804. }, {
  1805. title: "fab fa-d-and-d",
  1806. searchTerms: []
  1807. }, {
  1808. title: "fab fa-dashcube",
  1809. searchTerms: []
  1810. }, {
  1811. title: "fas fa-database",
  1812. searchTerms: []
  1813. }, {
  1814. title: "fas fa-deaf",
  1815. searchTerms: []
  1816. }, {
  1817. title: "fab fa-delicious",
  1818. searchTerms: []
  1819. }, {
  1820. title: "fab fa-deploydog",
  1821. searchTerms: []
  1822. }, {
  1823. title: "fab fa-deskpro",
  1824. searchTerms: []
  1825. }, {
  1826. title: "fas fa-desktop",
  1827. searchTerms: [ "monitor", "screen", "desktop", "computer", "demo", "device", "pc" ]
  1828. }, {
  1829. title: "fab fa-deviantart",
  1830. searchTerms: []
  1831. }, {
  1832. title: "fab fa-digg",
  1833. searchTerms: []
  1834. }, {
  1835. title: "fab fa-digital-ocean",
  1836. searchTerms: []
  1837. }, {
  1838. title: "fab fa-discord",
  1839. searchTerms: []
  1840. }, {
  1841. title: "fab fa-discourse",
  1842. searchTerms: []
  1843. }, {
  1844. title: "fas fa-dna",
  1845. searchTerms: [ "double helix", "helix" ]
  1846. }, {
  1847. title: "fab fa-dochub",
  1848. searchTerms: []
  1849. }, {
  1850. title: "fab fa-docker",
  1851. searchTerms: []
  1852. }, {
  1853. title: "fas fa-dollar-sign",
  1854. searchTerms: [ "usd", "price" ]
  1855. }, {
  1856. title: "fas fa-dolly",
  1857. searchTerms: []
  1858. }, {
  1859. title: "fas fa-dolly-flatbed",
  1860. searchTerms: []
  1861. }, {
  1862. title: "fas fa-dot-circle",
  1863. searchTerms: [ "target", "bullseye", "notification" ]
  1864. }, {
  1865. title: "far fa-dot-circle",
  1866. searchTerms: [ "target", "bullseye", "notification" ]
  1867. }, {
  1868. title: "fas fa-download",
  1869. searchTerms: [ "import" ]
  1870. }, {
  1871. title: "fab fa-draft2digital",
  1872. searchTerms: []
  1873. }, {
  1874. title: "fab fa-dribbble",
  1875. searchTerms: []
  1876. }, {
  1877. title: "fab fa-dribbble-square",
  1878. searchTerms: []
  1879. }, {
  1880. title: "fab fa-dropbox",
  1881. searchTerms: []
  1882. }, {
  1883. title: "fab fa-drupal",
  1884. searchTerms: []
  1885. }, {
  1886. title: "fab fa-dyalog",
  1887. searchTerms: []
  1888. }, {
  1889. title: "fab fa-earlybirds",
  1890. searchTerms: []
  1891. }, {
  1892. title: "fab fa-edge",
  1893. searchTerms: [ "browser", "ie" ]
  1894. }, {
  1895. title: "fas fa-edit",
  1896. searchTerms: [ "write", "edit", "update", "pencil", "pen" ]
  1897. }, {
  1898. title: "far fa-edit",
  1899. searchTerms: [ "write", "edit", "update", "pencil", "pen" ]
  1900. }, {
  1901. title: "fas fa-eject",
  1902. searchTerms: []
  1903. }, {
  1904. title: "fab fa-elementor",
  1905. searchTerms: []
  1906. }, {
  1907. title: "fas fa-ellipsis-h",
  1908. searchTerms: [ "dots" ]
  1909. }, {
  1910. title: "fas fa-ellipsis-v",
  1911. searchTerms: [ "dots" ]
  1912. }, {
  1913. title: "fab fa-ember",
  1914. searchTerms: []
  1915. }, {
  1916. title: "fab fa-empire",
  1917. searchTerms: []
  1918. }, {
  1919. title: "fas fa-envelope",
  1920. searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ]
  1921. }, {
  1922. title: "far fa-envelope",
  1923. searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ]
  1924. }, {
  1925. title: "fas fa-envelope-open",
  1926. searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ]
  1927. }, {
  1928. title: "far fa-envelope-open",
  1929. searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ]
  1930. }, {
  1931. title: "fas fa-envelope-square",
  1932. searchTerms: [ "email", "e-mail", "letter", "support", "mail", "message", "notification" ]
  1933. }, {
  1934. title: "fab fa-envira",
  1935. searchTerms: [ "leaf" ]
  1936. }, {
  1937. title: "fas fa-eraser",
  1938. searchTerms: [ "remove", "delete" ]
  1939. }, {
  1940. title: "fab fa-erlang",
  1941. searchTerms: []
  1942. }, {
  1943. title: "fab fa-ethereum",
  1944. searchTerms: []
  1945. }, {
  1946. title: "fab fa-etsy",
  1947. searchTerms: []
  1948. }, {
  1949. title: "fas fa-euro-sign",
  1950. searchTerms: [ "eur", "eur" ]
  1951. }, {
  1952. title: "fas fa-exchange-alt",
  1953. searchTerms: [ "transfer", "arrows", "arrow", "exchange", "swap" ]
  1954. }, {
  1955. title: "fas fa-exclamation",
  1956. searchTerms: [ "warning", "error", "problem", "notification", "notify", "alert", "danger" ]
  1957. }, {
  1958. title: "fas fa-exclamation-circle",
  1959. searchTerms: [ "warning", "error", "problem", "notification", "notify", "alert", "danger" ]
  1960. }, {
  1961. title: "fas fa-exclamation-triangle",
  1962. searchTerms: [ "warning", "error", "problem", "notification", "notify", "alert", "danger" ]
  1963. }, {
  1964. title: "fas fa-expand",
  1965. searchTerms: [ "enlarge", "bigger", "resize" ]
  1966. }, {
  1967. title: "fas fa-expand-arrows-alt",
  1968. searchTerms: [ "enlarge", "bigger", "resize", "move", "arrows-alt" ]
  1969. }, {
  1970. title: "fab fa-expeditedssl",
  1971. searchTerms: []
  1972. }, {
  1973. title: "fas fa-external-link-alt",
  1974. searchTerms: [ "open", "new", "external-link" ]
  1975. }, {
  1976. title: "fas fa-external-link-square-alt",
  1977. searchTerms: [ "open", "new", "external-link-square" ]
  1978. }, {
  1979. title: "fas fa-eye",
  1980. searchTerms: [ "show", "visible", "views" ]
  1981. }, {
  1982. title: "fas fa-eye-dropper",
  1983. searchTerms: [ "eyedropper" ]
  1984. }, {
  1985. title: "fas fa-eye-slash",
  1986. searchTerms: [ "toggle", "show", "hide", "visible", "visiblity", "views" ]
  1987. }, {
  1988. title: "far fa-eye-slash",
  1989. searchTerms: [ "toggle", "show", "hide", "visible", "visiblity", "views" ]
  1990. }, {
  1991. title: "fab fa-facebook",
  1992. searchTerms: [ "social network", "facebook-official" ]
  1993. }, {
  1994. title: "fab fa-facebook-f",
  1995. searchTerms: [ "facebook" ]
  1996. }, {
  1997. title: "fab fa-facebook-messenger",
  1998. searchTerms: []
  1999. }, {
  2000. title: "fab fa-facebook-square",
  2001. searchTerms: [ "social network" ]
  2002. }, {
  2003. title: "fas fa-fast-backward",
  2004. searchTerms: [ "rewind", "previous", "beginning", "start", "first" ]
  2005. }, {
  2006. title: "fas fa-fast-forward",
  2007. searchTerms: [ "next", "end", "last" ]
  2008. }, {
  2009. title: "fas fa-fax",
  2010. searchTerms: []
  2011. }, {
  2012. title: "fas fa-female",
  2013. searchTerms: [ "woman", "human", "user", "person", "profile" ]
  2014. }, {
  2015. title: "fas fa-fighter-jet",
  2016. searchTerms: [ "fly", "plane", "airplane", "quick", "fast", "travel" ]
  2017. }, {
  2018. title: "fas fa-file",
  2019. searchTerms: [ "new", "page", "pdf", "document" ]
  2020. }, {
  2021. title: "far fa-file",
  2022. searchTerms: [ "new", "page", "pdf", "document" ]
  2023. }, {
  2024. title: "fas fa-file-alt",
  2025. searchTerms: [ "new", "page", "pdf", "document", "file-text" ]
  2026. }, {
  2027. title: "far fa-file-alt",
  2028. searchTerms: [ "new", "page", "pdf", "document", "file-text" ]
  2029. }, {
  2030. title: "fas fa-file-archive",
  2031. searchTerms: []
  2032. }, {
  2033. title: "far fa-file-archive",
  2034. searchTerms: []
  2035. }, {
  2036. title: "fas fa-file-audio",
  2037. searchTerms: []
  2038. }, {
  2039. title: "far fa-file-audio",
  2040. searchTerms: []
  2041. }, {
  2042. title: "fas fa-file-code",
  2043. searchTerms: []
  2044. }, {
  2045. title: "far fa-file-code",
  2046. searchTerms: []
  2047. }, {
  2048. title: "fas fa-file-excel",
  2049. searchTerms: []
  2050. }, {
  2051. title: "far fa-file-excel",
  2052. searchTerms: []
  2053. }, {
  2054. title: "fas fa-file-image",
  2055. searchTerms: []
  2056. }, {
  2057. title: "far fa-file-image",
  2058. searchTerms: []
  2059. }, {
  2060. title: "fas fa-file-pdf",
  2061. searchTerms: []
  2062. }, {
  2063. title: "far fa-file-pdf",
  2064. searchTerms: []
  2065. }, {
  2066. title: "fas fa-file-powerpoint",
  2067. searchTerms: []
  2068. }, {
  2069. title: "far fa-file-powerpoint",
  2070. searchTerms: []
  2071. }, {
  2072. title: "fas fa-file-video",
  2073. searchTerms: []
  2074. }, {
  2075. title: "far fa-file-video",
  2076. searchTerms: []
  2077. }, {
  2078. title: "fas fa-file-word",
  2079. searchTerms: []
  2080. }, {
  2081. title: "far fa-file-word",
  2082. searchTerms: []
  2083. }, {
  2084. title: "fas fa-film",
  2085. searchTerms: [ "movie" ]
  2086. }, {
  2087. title: "fas fa-filter",
  2088. searchTerms: [ "funnel", "options" ]
  2089. }, {
  2090. title: "fas fa-fire",
  2091. searchTerms: [ "flame", "hot", "popular" ]
  2092. }, {
  2093. title: "fas fa-fire-extinguisher",
  2094. searchTerms: []
  2095. }, {
  2096. title: "fab fa-firefox",
  2097. searchTerms: [ "browser" ]
  2098. }, {
  2099. title: "fas fa-first-aid",
  2100. searchTerms: []
  2101. }, {
  2102. title: "fab fa-first-order",
  2103. searchTerms: []
  2104. }, {
  2105. title: "fab fa-firstdraft",
  2106. searchTerms: []
  2107. }, {
  2108. title: "fas fa-flag",
  2109. searchTerms: [ "report", "notification", "notify" ]
  2110. }, {
  2111. title: "far fa-flag",
  2112. searchTerms: [ "report", "notification", "notify" ]
  2113. }, {
  2114. title: "fas fa-flag-checkered",
  2115. searchTerms: [ "report", "notification", "notify" ]
  2116. }, {
  2117. title: "fas fa-flask",
  2118. searchTerms: [ "science", "beaker", "experimental", "labs" ]
  2119. }, {
  2120. title: "fab fa-flickr",
  2121. searchTerms: []
  2122. }, {
  2123. title: "fab fa-flipboard",
  2124. searchTerms: []
  2125. }, {
  2126. title: "fab fa-fly",
  2127. searchTerms: []
  2128. }, {
  2129. title: "fas fa-folder",
  2130. searchTerms: []
  2131. }, {
  2132. title: "far fa-folder",
  2133. searchTerms: []
  2134. }, {
  2135. title: "fas fa-folder-open",
  2136. searchTerms: []
  2137. }, {
  2138. title: "far fa-folder-open",
  2139. searchTerms: []
  2140. }, {
  2141. title: "fas fa-font",
  2142. searchTerms: [ "text" ]
  2143. }, {
  2144. title: "fab fa-font-awesome",
  2145. searchTerms: [ "meanpath" ]
  2146. }, {
  2147. title: "fab fa-font-awesome-alt",
  2148. searchTerms: []
  2149. }, {
  2150. title: "fab fa-font-awesome-flag",
  2151. searchTerms: []
  2152. }, {
  2153. title: "fab fa-fonticons",
  2154. searchTerms: []
  2155. }, {
  2156. title: "fab fa-fonticons-fi",
  2157. searchTerms: []
  2158. }, {
  2159. title: "fas fa-football-ball",
  2160. searchTerms: []
  2161. }, {
  2162. title: "fab fa-fort-awesome",
  2163. searchTerms: [ "castle" ]
  2164. }, {
  2165. title: "fab fa-fort-awesome-alt",
  2166. searchTerms: [ "castle" ]
  2167. }, {
  2168. title: "fab fa-forumbee",
  2169. searchTerms: []
  2170. }, {
  2171. title: "fas fa-forward",
  2172. searchTerms: [ "forward", "next" ]
  2173. }, {
  2174. title: "fab fa-foursquare",
  2175. searchTerms: []
  2176. }, {
  2177. title: "fab fa-free-code-camp",
  2178. searchTerms: []
  2179. }, {
  2180. title: "fab fa-freebsd",
  2181. searchTerms: []
  2182. }, {
  2183. title: "fas fa-frown",
  2184. searchTerms: [ "face", "emoticon", "sad", "disapprove", "rating" ]
  2185. }, {
  2186. title: "far fa-frown",
  2187. searchTerms: [ "face", "emoticon", "sad", "disapprove", "rating" ]
  2188. }, {
  2189. title: "fas fa-futbol",
  2190. searchTerms: []
  2191. }, {
  2192. title: "far fa-futbol",
  2193. searchTerms: []
  2194. }, {
  2195. title: "fas fa-gamepad",
  2196. searchTerms: [ "controller" ]
  2197. }, {
  2198. title: "fas fa-gavel",
  2199. searchTerms: [ "judge", "lawyer", "opinion", "hammer" ]
  2200. }, {
  2201. title: "fas fa-gem",
  2202. searchTerms: [ "diamond" ]
  2203. }, {
  2204. title: "far fa-gem",
  2205. searchTerms: [ "diamond" ]
  2206. }, {
  2207. title: "fas fa-genderless",
  2208. searchTerms: []
  2209. }, {
  2210. title: "fab fa-get-pocket",
  2211. searchTerms: []
  2212. }, {
  2213. title: "fab fa-gg",
  2214. searchTerms: []
  2215. }, {
  2216. title: "fab fa-gg-circle",
  2217. searchTerms: []
  2218. }, {
  2219. title: "fas fa-gift",
  2220. searchTerms: [ "present" ]
  2221. }, {
  2222. title: "fab fa-git",
  2223. searchTerms: []
  2224. }, {
  2225. title: "fab fa-git-square",
  2226. searchTerms: []
  2227. }, {
  2228. title: "fab fa-github",
  2229. searchTerms: [ "octocat" ]
  2230. }, {
  2231. title: "fab fa-github-alt",
  2232. searchTerms: [ "octocat" ]
  2233. }, {
  2234. title: "fab fa-github-square",
  2235. searchTerms: [ "octocat" ]
  2236. }, {
  2237. title: "fab fa-gitkraken",
  2238. searchTerms: []
  2239. }, {
  2240. title: "fab fa-gitlab",
  2241. searchTerms: [ "Axosoft" ]
  2242. }, {
  2243. title: "fab fa-gitter",
  2244. searchTerms: []
  2245. }, {
  2246. title: "fas fa-glass-martini",
  2247. searchTerms: [ "martini", "drink", "bar", "alcohol", "liquor", "glass" ]
  2248. }, {
  2249. title: "fab fa-glide",
  2250. searchTerms: []
  2251. }, {
  2252. title: "fab fa-glide-g",
  2253. searchTerms: []
  2254. }, {
  2255. title: "fas fa-globe",
  2256. searchTerms: [ "world", "planet", "map", "place", "travel", "earth", "global", "translate", "all", "language", "localize", "location", "coordinates", "country", "gps" ]
  2257. }, {
  2258. title: "fab fa-gofore",
  2259. searchTerms: []
  2260. }, {
  2261. title: "fas fa-golf-ball",
  2262. searchTerms: []
  2263. }, {
  2264. title: "fab fa-goodreads",
  2265. searchTerms: []
  2266. }, {
  2267. title: "fab fa-goodreads-g",
  2268. searchTerms: []
  2269. }, {
  2270. title: "fab fa-google",
  2271. searchTerms: []
  2272. }, {
  2273. title: "fab fa-google-drive",
  2274. searchTerms: []
  2275. }, {
  2276. title: "fab fa-google-play",
  2277. searchTerms: []
  2278. }, {
  2279. title: "fab fa-google-plus",
  2280. searchTerms: [ "google-plus-circle", "google-plus-official" ]
  2281. }, {
  2282. title: "fab fa-google-plus-g",
  2283. searchTerms: [ "social network", "google-plus" ]
  2284. }, {
  2285. title: "fab fa-google-plus-square",
  2286. searchTerms: [ "social network" ]
  2287. }, {
  2288. title: "fab fa-google-wallet",
  2289. searchTerms: []
  2290. }, {
  2291. title: "fas fa-graduation-cap",
  2292. searchTerms: [ "learning", "school", "student" ]
  2293. }, {
  2294. title: "fab fa-gratipay",
  2295. searchTerms: [ "heart", "like", "favorite", "love" ]
  2296. }, {
  2297. title: "fab fa-grav",
  2298. searchTerms: []
  2299. }, {
  2300. title: "fab fa-gripfire",
  2301. searchTerms: []
  2302. }, {
  2303. title: "fab fa-grunt",
  2304. searchTerms: []
  2305. }, {
  2306. title: "fab fa-gulp",
  2307. searchTerms: []
  2308. }, {
  2309. title: "fas fa-h-square",
  2310. searchTerms: [ "hospital", "hotel" ]
  2311. }, {
  2312. title: "fab fa-hacker-news",
  2313. searchTerms: []
  2314. }, {
  2315. title: "fab fa-hacker-news-square",
  2316. searchTerms: []
  2317. }, {
  2318. title: "fas fa-hand-lizard",
  2319. searchTerms: []
  2320. }, {
  2321. title: "far fa-hand-lizard",
  2322. searchTerms: []
  2323. }, {
  2324. title: "fas fa-hand-paper",
  2325. searchTerms: [ "stop" ]
  2326. }, {
  2327. title: "far fa-hand-paper",
  2328. searchTerms: [ "stop" ]
  2329. }, {
  2330. title: "fas fa-hand-peace",
  2331. searchTerms: []
  2332. }, {
  2333. title: "far fa-hand-peace",
  2334. searchTerms: []
  2335. }, {
  2336. title: "fas fa-hand-point-down",
  2337. searchTerms: [ "point", "finger", "hand-o-down" ]
  2338. }, {
  2339. title: "far fa-hand-point-down",
  2340. searchTerms: [ "point", "finger", "hand-o-down" ]
  2341. }, {
  2342. title: "fas fa-hand-point-left",
  2343. searchTerms: [ "point", "left", "previous", "back", "finger", "hand-o-left" ]
  2344. }, {
  2345. title: "far fa-hand-point-left",
  2346. searchTerms: [ "point", "left", "previous", "back", "finger", "hand-o-left" ]
  2347. }, {
  2348. title: "fas fa-hand-point-right",
  2349. searchTerms: [ "point", "right", "next", "forward", "finger", "hand-o-right" ]
  2350. }, {
  2351. title: "far fa-hand-point-right",
  2352. searchTerms: [ "point", "right", "next", "forward", "finger", "hand-o-right" ]
  2353. }, {
  2354. title: "fas fa-hand-point-up",
  2355. searchTerms: [ "point", "finger", "hand-o-up" ]
  2356. }, {
  2357. title: "far fa-hand-point-up",
  2358. searchTerms: [ "point", "finger", "hand-o-up" ]
  2359. }, {
  2360. title: "fas fa-hand-pointer",
  2361. searchTerms: [ "select" ]
  2362. }, {
  2363. title: "far fa-hand-pointer",
  2364. searchTerms: [ "select" ]
  2365. }, {
  2366. title: "fas fa-hand-rock",
  2367. searchTerms: []
  2368. }, {
  2369. title: "far fa-hand-rock",
  2370. searchTerms: []
  2371. }, {
  2372. title: "fas fa-hand-scissors",
  2373. searchTerms: []
  2374. }, {
  2375. title: "far fa-hand-scissors",
  2376. searchTerms: []
  2377. }, {
  2378. title: "fas fa-hand-spock",
  2379. searchTerms: []
  2380. }, {
  2381. title: "far fa-hand-spock",
  2382. searchTerms: []
  2383. }, {
  2384. title: "fas fa-handshake",
  2385. searchTerms: []
  2386. }, {
  2387. title: "far fa-handshake",
  2388. searchTerms: []
  2389. }, {
  2390. title: "fas fa-hashtag",
  2391. searchTerms: []
  2392. }, {
  2393. title: "fas fa-hdd",
  2394. searchTerms: [ "harddrive", "hard drive", "storage", "save" ]
  2395. }, {
  2396. title: "far fa-hdd",
  2397. searchTerms: [ "harddrive", "hard drive", "storage", "save" ]
  2398. }, {
  2399. title: "fas fa-heading",
  2400. searchTerms: [ "header", "header" ]
  2401. }, {
  2402. title: "fas fa-headphones",
  2403. searchTerms: [ "sound", "listen", "music", "audio" ]
  2404. }, {
  2405. title: "fas fa-heart",
  2406. searchTerms: [ "love", "like", "favorite" ]
  2407. }, {
  2408. title: "far fa-heart",
  2409. searchTerms: [ "love", "like", "favorite" ]
  2410. }, {
  2411. title: "fas fa-heartbeat",
  2412. searchTerms: [ "ekg", "vital signs" ]
  2413. }, {
  2414. title: "fab fa-hips",
  2415. searchTerms: []
  2416. }, {
  2417. title: "fab fa-hire-a-helper",
  2418. searchTerms: []
  2419. }, {
  2420. title: "fas fa-history",
  2421. searchTerms: []
  2422. }, {
  2423. title: "fas fa-hockey-puck",
  2424. searchTerms: []
  2425. }, {
  2426. title: "fas fa-home",
  2427. searchTerms: [ "main", "house" ]
  2428. }, {
  2429. title: "fab fa-hooli",
  2430. searchTerms: []
  2431. }, {
  2432. title: "fas fa-hospital",
  2433. searchTerms: [ "building", "medical center", "emergency room" ]
  2434. }, {
  2435. title: "far fa-hospital",
  2436. searchTerms: [ "building", "medical center", "emergency room" ]
  2437. }, {
  2438. title: "fas fa-hospital-symbol",
  2439. searchTerms: []
  2440. }, {
  2441. title: "fab fa-hotjar",
  2442. searchTerms: []
  2443. }, {
  2444. title: "fas fa-hourglass",
  2445. searchTerms: []
  2446. }, {
  2447. title: "far fa-hourglass",
  2448. searchTerms: []
  2449. }, {
  2450. title: "fas fa-hourglass-end",
  2451. searchTerms: []
  2452. }, {
  2453. title: "fas fa-hourglass-half",
  2454. searchTerms: []
  2455. }, {
  2456. title: "fas fa-hourglass-start",
  2457. searchTerms: []
  2458. }, {
  2459. title: "fab fa-houzz",
  2460. searchTerms: []
  2461. }, {
  2462. title: "fab fa-html5",
  2463. searchTerms: []
  2464. }, {
  2465. title: "fab fa-hubspot",
  2466. searchTerms: []
  2467. }, {
  2468. title: "fas fa-i-cursor",
  2469. searchTerms: []
  2470. }, {
  2471. title: "fas fa-id-badge",
  2472. searchTerms: []
  2473. }, {
  2474. title: "far fa-id-badge",
  2475. searchTerms: []
  2476. }, {
  2477. title: "fas fa-id-card",
  2478. searchTerms: []
  2479. }, {
  2480. title: "far fa-id-card",
  2481. searchTerms: []
  2482. }, {
  2483. title: "fas fa-image",
  2484. searchTerms: [ "photo", "album", "picture", "picture" ]
  2485. }, {
  2486. title: "far fa-image",
  2487. searchTerms: [ "photo", "album", "picture", "picture" ]
  2488. }, {
  2489. title: "fas fa-images",
  2490. searchTerms: [ "photo", "album", "picture" ]
  2491. }, {
  2492. title: "far fa-images",
  2493. searchTerms: [ "photo", "album", "picture" ]
  2494. }, {
  2495. title: "fab fa-imdb",
  2496. searchTerms: []
  2497. }, {
  2498. title: "fas fa-inbox",
  2499. searchTerms: []
  2500. }, {
  2501. title: "fas fa-indent",
  2502. searchTerms: []
  2503. }, {
  2504. title: "fas fa-industry",
  2505. searchTerms: [ "factory" ]
  2506. }, {
  2507. title: "fas fa-info",
  2508. searchTerms: [ "help", "information", "more", "details" ]
  2509. }, {
  2510. title: "fas fa-info-circle",
  2511. searchTerms: [ "help", "information", "more", "details" ]
  2512. }, {
  2513. title: "fab fa-instagram",
  2514. searchTerms: []
  2515. }, {
  2516. title: "fab fa-internet-explorer",
  2517. searchTerms: [ "browser", "ie" ]
  2518. }, {
  2519. title: "fab fa-ioxhost",
  2520. searchTerms: []
  2521. }, {
  2522. title: "fas fa-italic",
  2523. searchTerms: [ "italics" ]
  2524. }, {
  2525. title: "fab fa-itunes",
  2526. searchTerms: []
  2527. }, {
  2528. title: "fab fa-itunes-note",
  2529. searchTerms: []
  2530. }, {
  2531. title: "fab fa-jenkins",
  2532. searchTerms: []
  2533. }, {
  2534. title: "fab fa-joget",
  2535. searchTerms: []
  2536. }, {
  2537. title: "fab fa-joomla",
  2538. searchTerms: []
  2539. }, {
  2540. title: "fab fa-js",
  2541. searchTerms: []
  2542. }, {
  2543. title: "fab fa-js-square",
  2544. searchTerms: []
  2545. }, {
  2546. title: "fab fa-jsfiddle",
  2547. searchTerms: []
  2548. }, {
  2549. title: "fas fa-key",
  2550. searchTerms: [ "unlock", "password" ]
  2551. }, {
  2552. title: "fas fa-keyboard",
  2553. searchTerms: [ "type", "input" ]
  2554. }, {
  2555. title: "far fa-keyboard",
  2556. searchTerms: [ "type", "input" ]
  2557. }, {
  2558. title: "fab fa-keycdn",
  2559. searchTerms: []
  2560. }, {
  2561. title: "fab fa-kickstarter",
  2562. searchTerms: []
  2563. }, {
  2564. title: "fab fa-kickstarter-k",
  2565. searchTerms: []
  2566. }, {
  2567. title: "fab fa-korvue",
  2568. searchTerms: []
  2569. }, {
  2570. title: "fas fa-language",
  2571. searchTerms: []
  2572. }, {
  2573. title: "fas fa-laptop",
  2574. searchTerms: [ "demo", "computer", "device", "pc" ]
  2575. }, {
  2576. title: "fab fa-laravel",
  2577. searchTerms: []
  2578. }, {
  2579. title: "fab fa-lastfm",
  2580. searchTerms: []
  2581. }, {
  2582. title: "fab fa-lastfm-square",
  2583. searchTerms: []
  2584. }, {
  2585. title: "fas fa-leaf",
  2586. searchTerms: [ "eco", "nature", "plant" ]
  2587. }, {
  2588. title: "fab fa-leanpub",
  2589. searchTerms: []
  2590. }, {
  2591. title: "fas fa-lemon",
  2592. searchTerms: [ "food" ]
  2593. }, {
  2594. title: "far fa-lemon",
  2595. searchTerms: [ "food" ]
  2596. }, {
  2597. title: "fab fa-less",
  2598. searchTerms: []
  2599. }, {
  2600. title: "fas fa-level-down-alt",
  2601. searchTerms: [ "level-down" ]
  2602. }, {
  2603. title: "fas fa-level-up-alt",
  2604. searchTerms: [ "level-up" ]
  2605. }, {
  2606. title: "fas fa-life-ring",
  2607. searchTerms: [ "support" ]
  2608. }, {
  2609. title: "far fa-life-ring",
  2610. searchTerms: [ "support" ]
  2611. }, {
  2612. title: "fas fa-lightbulb",
  2613. searchTerms: [ "idea", "inspiration" ]
  2614. }, {
  2615. title: "far fa-lightbulb",
  2616. searchTerms: [ "idea", "inspiration" ]
  2617. }, {
  2618. title: "fab fa-line",
  2619. searchTerms: []
  2620. }, {
  2621. title: "fas fa-link",
  2622. searchTerms: [ "chain" ]
  2623. }, {
  2624. title: "fab fa-linkedin",
  2625. searchTerms: [ "linkedin-square" ]
  2626. }, {
  2627. title: "fab fa-linkedin-in",
  2628. searchTerms: [ "linkedin" ]
  2629. }, {
  2630. title: "fab fa-linode",
  2631. searchTerms: []
  2632. }, {
  2633. title: "fab fa-linux",
  2634. searchTerms: [ "tux" ]
  2635. }, {
  2636. title: "fas fa-lira-sign",
  2637. searchTerms: [ "try", "turkish", "try" ]
  2638. }, {
  2639. title: "fas fa-list",
  2640. searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ]
  2641. }, {
  2642. title: "fas fa-list-alt",
  2643. searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ]
  2644. }, {
  2645. title: "far fa-list-alt",
  2646. searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ]
  2647. }, {
  2648. title: "fas fa-list-ol",
  2649. searchTerms: [ "ul", "ol", "checklist", "list", "todo", "list", "numbers" ]
  2650. }, {
  2651. title: "fas fa-list-ul",
  2652. searchTerms: [ "ul", "ol", "checklist", "todo", "list" ]
  2653. }, {
  2654. title: "fas fa-location-arrow",
  2655. searchTerms: [ "map", "coordinates", "location", "address", "place", "where", "gps" ]
  2656. }, {
  2657. title: "fas fa-lock",
  2658. searchTerms: [ "protect", "admin", "security" ]
  2659. }, {
  2660. title: "fas fa-lock-open",
  2661. searchTerms: [ "protect", "admin", "password", "lock", "open" ]
  2662. }, {
  2663. title: "fas fa-long-arrow-alt-down",
  2664. searchTerms: [ "long-arrow-down" ]
  2665. }, {
  2666. title: "fas fa-long-arrow-alt-left",
  2667. searchTerms: [ "previous", "back", "long-arrow-left" ]
  2668. }, {
  2669. title: "fas fa-long-arrow-alt-right",
  2670. searchTerms: [ "long-arrow-right" ]
  2671. }, {
  2672. title: "fas fa-long-arrow-alt-up",
  2673. searchTerms: [ "long-arrow-up" ]
  2674. }, {
  2675. title: "fas fa-low-vision",
  2676. searchTerms: []
  2677. }, {
  2678. title: "fab fa-lyft",
  2679. searchTerms: []
  2680. }, {
  2681. title: "fab fa-magento",
  2682. searchTerms: []
  2683. }, {
  2684. title: "fas fa-magic",
  2685. searchTerms: [ "wizard", "automatic", "autocomplete" ]
  2686. }, {
  2687. title: "fas fa-magnet",
  2688. searchTerms: []
  2689. }, {
  2690. title: "fas fa-male",
  2691. searchTerms: [ "man", "human", "user", "person", "profile" ]
  2692. }, {
  2693. title: "fas fa-map",
  2694. searchTerms: []
  2695. }, {
  2696. title: "far fa-map",
  2697. searchTerms: []
  2698. }, {
  2699. title: "fas fa-map-marker",
  2700. searchTerms: [ "map", "pin", "location", "coordinates", "localize", "address", "travel", "where", "place", "gps" ]
  2701. }, {
  2702. title: "fas fa-map-marker-alt",
  2703. searchTerms: [ "map-marker", "gps" ]
  2704. }, {
  2705. title: "fas fa-map-pin",
  2706. searchTerms: []
  2707. }, {
  2708. title: "fas fa-map-signs",
  2709. searchTerms: []
  2710. }, {
  2711. title: "fas fa-mars",
  2712. searchTerms: [ "male" ]
  2713. }, {
  2714. title: "fas fa-mars-double",
  2715. searchTerms: []
  2716. }, {
  2717. title: "fas fa-mars-stroke",
  2718. searchTerms: []
  2719. }, {
  2720. title: "fas fa-mars-stroke-h",
  2721. searchTerms: []
  2722. }, {
  2723. title: "fas fa-mars-stroke-v",
  2724. searchTerms: []
  2725. }, {
  2726. title: "fab fa-maxcdn",
  2727. searchTerms: []
  2728. }, {
  2729. title: "fab fa-medapps",
  2730. searchTerms: []
  2731. }, {
  2732. title: "fab fa-medium",
  2733. searchTerms: []
  2734. }, {
  2735. title: "fab fa-medium-m",
  2736. searchTerms: []
  2737. }, {
  2738. title: "fas fa-medkit",
  2739. searchTerms: [ "first aid", "firstaid", "help", "support", "health" ]
  2740. }, {
  2741. title: "fab fa-medrt",
  2742. searchTerms: []
  2743. }, {
  2744. title: "fab fa-meetup",
  2745. searchTerms: []
  2746. }, {
  2747. title: "fas fa-meh",
  2748. searchTerms: [ "face", "emoticon", "rating", "neutral" ]
  2749. }, {
  2750. title: "far fa-meh",
  2751. searchTerms: [ "face", "emoticon", "rating", "neutral" ]
  2752. }, {
  2753. title: "fas fa-mercury",
  2754. searchTerms: [ "transgender" ]
  2755. }, {
  2756. title: "fas fa-microchip",
  2757. searchTerms: []
  2758. }, {
  2759. title: "fas fa-microphone",
  2760. searchTerms: [ "record", "voice", "sound" ]
  2761. }, {
  2762. title: "fas fa-microphone-slash",
  2763. searchTerms: [ "record", "voice", "sound", "mute" ]
  2764. }, {
  2765. title: "fab fa-microsoft",
  2766. searchTerms: []
  2767. }, {
  2768. title: "fas fa-minus",
  2769. searchTerms: [ "hide", "minify", "delete", "remove", "trash", "hide", "collapse" ]
  2770. }, {
  2771. title: "fas fa-minus-circle",
  2772. searchTerms: [ "delete", "remove", "trash", "hide" ]
  2773. }, {
  2774. title: "fas fa-minus-square",
  2775. searchTerms: [ "hide", "minify", "delete", "remove", "trash", "hide", "collapse" ]
  2776. }, {
  2777. title: "far fa-minus-square",
  2778. searchTerms: [ "hide", "minify", "delete", "remove", "trash", "hide", "collapse" ]
  2779. }, {
  2780. title: "fab fa-mix",
  2781. searchTerms: []
  2782. }, {
  2783. title: "fab fa-mixcloud",
  2784. searchTerms: []
  2785. }, {
  2786. title: "fab fa-mizuni",
  2787. searchTerms: []
  2788. }, {
  2789. title: "fas fa-mobile",
  2790. searchTerms: [ "cell phone", "cellphone", "text", "call", "iphone", "number", "telephone" ]
  2791. }, {
  2792. title: "fas fa-mobile-alt",
  2793. searchTerms: [ "mobile" ]
  2794. }, {
  2795. title: "fab fa-modx",
  2796. searchTerms: []
  2797. }, {
  2798. title: "fab fa-monero",
  2799. searchTerms: []
  2800. }, {
  2801. title: "fas fa-money-bill-alt",
  2802. searchTerms: [ "cash", "money", "buy", "checkout", "purchase", "payment", "price" ]
  2803. }, {
  2804. title: "far fa-money-bill-alt",
  2805. searchTerms: [ "cash", "money", "buy", "checkout", "purchase", "payment", "price" ]
  2806. }, {
  2807. title: "fas fa-moon",
  2808. searchTerms: [ "night", "darker", "contrast" ]
  2809. }, {
  2810. title: "far fa-moon",
  2811. searchTerms: [ "night", "darker", "contrast" ]
  2812. }, {
  2813. title: "fas fa-motorcycle",
  2814. searchTerms: [ "vehicle", "bike" ]
  2815. }, {
  2816. title: "fas fa-mouse-pointer",
  2817. searchTerms: [ "select" ]
  2818. }, {
  2819. title: "fas fa-music",
  2820. searchTerms: [ "note", "sound" ]
  2821. }, {
  2822. title: "fab fa-napster",
  2823. searchTerms: []
  2824. }, {
  2825. title: "fas fa-neuter",
  2826. searchTerms: []
  2827. }, {
  2828. title: "fas fa-newspaper",
  2829. searchTerms: [ "press", "article" ]
  2830. }, {
  2831. title: "far fa-newspaper",
  2832. searchTerms: [ "press", "article" ]
  2833. }, {
  2834. title: "fab fa-nintendo-switch",
  2835. searchTerms: []
  2836. }, {
  2837. title: "fab fa-node",
  2838. searchTerms: []
  2839. }, {
  2840. title: "fab fa-node-js",
  2841. searchTerms: []
  2842. }, {
  2843. title: "fab fa-npm",
  2844. searchTerms: []
  2845. }, {
  2846. title: "fab fa-ns8",
  2847. searchTerms: []
  2848. }, {
  2849. title: "fab fa-nutritionix",
  2850. searchTerms: []
  2851. }, {
  2852. title: "fas fa-object-group",
  2853. searchTerms: [ "design" ]
  2854. }, {
  2855. title: "far fa-object-group",
  2856. searchTerms: [ "design" ]
  2857. }, {
  2858. title: "fas fa-object-ungroup",
  2859. searchTerms: [ "design" ]
  2860. }, {
  2861. title: "far fa-object-ungroup",
  2862. searchTerms: [ "design" ]
  2863. }, {
  2864. title: "fab fa-odnoklassniki",
  2865. searchTerms: []
  2866. }, {
  2867. title: "fab fa-odnoklassniki-square",
  2868. searchTerms: []
  2869. }, {
  2870. title: "fab fa-opencart",
  2871. searchTerms: []
  2872. }, {
  2873. title: "fab fa-openid",
  2874. searchTerms: []
  2875. }, {
  2876. title: "fab fa-opera",
  2877. searchTerms: []
  2878. }, {
  2879. title: "fab fa-optin-monster",
  2880. searchTerms: []
  2881. }, {
  2882. title: "fab fa-osi",
  2883. searchTerms: []
  2884. }, {
  2885. title: "fas fa-outdent",
  2886. searchTerms: []
  2887. }, {
  2888. title: "fab fa-page4",
  2889. searchTerms: []
  2890. }, {
  2891. title: "fab fa-pagelines",
  2892. searchTerms: [ "leaf", "leaves", "tree", "plant", "eco", "nature" ]
  2893. }, {
  2894. title: "fas fa-paint-brush",
  2895. searchTerms: []
  2896. }, {
  2897. title: "fab fa-palfed",
  2898. searchTerms: []
  2899. }, {
  2900. title: "fas fa-pallet",
  2901. searchTerms: []
  2902. }, {
  2903. title: "fas fa-paper-plane",
  2904. searchTerms: []
  2905. }, {
  2906. title: "far fa-paper-plane",
  2907. searchTerms: []
  2908. }, {
  2909. title: "fas fa-paperclip",
  2910. searchTerms: [ "attachment" ]
  2911. }, {
  2912. title: "fas fa-paragraph",
  2913. searchTerms: []
  2914. }, {
  2915. title: "fas fa-paste",
  2916. searchTerms: [ "copy", "clipboard" ]
  2917. }, {
  2918. title: "fab fa-patreon",
  2919. searchTerms: []
  2920. }, {
  2921. title: "fas fa-pause",
  2922. searchTerms: [ "wait" ]
  2923. }, {
  2924. title: "fas fa-pause-circle",
  2925. searchTerms: []
  2926. }, {
  2927. title: "far fa-pause-circle",
  2928. searchTerms: []
  2929. }, {
  2930. title: "fas fa-paw",
  2931. searchTerms: [ "pet" ]
  2932. }, {
  2933. title: "fab fa-paypal",
  2934. searchTerms: []
  2935. }, {
  2936. title: "fas fa-pen-square",
  2937. searchTerms: [ "write", "edit", "update", "pencil-square" ]
  2938. }, {
  2939. title: "fas fa-pencil-alt",
  2940. searchTerms: [ "write", "edit", "update", "pencil", "design" ]
  2941. }, {
  2942. title: "fas fa-percent",
  2943. searchTerms: []
  2944. }, {
  2945. title: "fab fa-periscope",
  2946. searchTerms: []
  2947. }, {
  2948. title: "fab fa-phabricator",
  2949. searchTerms: []
  2950. }, {
  2951. title: "fab fa-phoenix-framework",
  2952. searchTerms: []
  2953. }, {
  2954. title: "fas fa-phone",
  2955. searchTerms: [ "call", "voice", "number", "support", "earphone", "telephone" ]
  2956. }, {
  2957. title: "fas fa-phone-square",
  2958. searchTerms: [ "call", "voice", "number", "support", "telephone" ]
  2959. }, {
  2960. title: "fas fa-phone-volume",
  2961. searchTerms: [ "telephone", "volume-control-phone" ]
  2962. }, {
  2963. title: "fab fa-php",
  2964. searchTerms: []
  2965. }, {
  2966. title: "fab fa-pied-piper",
  2967. searchTerms: []
  2968. }, {
  2969. title: "fab fa-pied-piper-alt",
  2970. searchTerms: []
  2971. }, {
  2972. title: "fab fa-pied-piper-pp",
  2973. searchTerms: []
  2974. }, {
  2975. title: "fas fa-pills",
  2976. searchTerms: [ "medicine", "drugs" ]
  2977. }, {
  2978. title: "fab fa-pinterest",
  2979. searchTerms: []
  2980. }, {
  2981. title: "fab fa-pinterest-p",
  2982. searchTerms: []
  2983. }, {
  2984. title: "fab fa-pinterest-square",
  2985. searchTerms: []
  2986. }, {
  2987. title: "fas fa-plane",
  2988. searchTerms: [ "travel", "trip", "location", "destination", "airplane", "fly", "mode" ]
  2989. }, {
  2990. title: "fas fa-play",
  2991. searchTerms: [ "start", "playing", "music", "sound" ]
  2992. }, {
  2993. title: "fas fa-play-circle",
  2994. searchTerms: [ "start", "playing" ]
  2995. }, {
  2996. title: "far fa-play-circle",
  2997. searchTerms: [ "start", "playing" ]
  2998. }, {
  2999. title: "fab fa-playstation",
  3000. searchTerms: []
  3001. }, {
  3002. title: "fas fa-plug",
  3003. searchTerms: [ "power", "connect" ]
  3004. }, {
  3005. title: "fas fa-plus",
  3006. searchTerms: [ "add", "new", "create", "expand" ]
  3007. }, {
  3008. title: "fas fa-plus-circle",
  3009. searchTerms: [ "add", "new", "create", "expand" ]
  3010. }, {
  3011. title: "fas fa-plus-square",
  3012. searchTerms: [ "add", "new", "create", "expand" ]
  3013. }, {
  3014. title: "far fa-plus-square",
  3015. searchTerms: [ "add", "new", "create", "expand" ]
  3016. }, {
  3017. title: "fas fa-podcast",
  3018. searchTerms: []
  3019. }, {
  3020. title: "fas fa-pound-sign",
  3021. searchTerms: [ "gbp", "gbp" ]
  3022. }, {
  3023. title: "fas fa-power-off",
  3024. searchTerms: [ "on" ]
  3025. }, {
  3026. title: "fas fa-print",
  3027. searchTerms: []
  3028. }, {
  3029. title: "fab fa-product-hunt",
  3030. searchTerms: []
  3031. }, {
  3032. title: "fab fa-pushed",
  3033. searchTerms: []
  3034. }, {
  3035. title: "fas fa-puzzle-piece",
  3036. searchTerms: [ "addon", "add-on", "section" ]
  3037. }, {
  3038. title: "fab fa-python",
  3039. searchTerms: []
  3040. }, {
  3041. title: "fab fa-qq",
  3042. searchTerms: []
  3043. }, {
  3044. title: "fas fa-qrcode",
  3045. searchTerms: [ "scan" ]
  3046. }, {
  3047. title: "fas fa-question",
  3048. searchTerms: [ "help", "information", "unknown", "support" ]
  3049. }, {
  3050. title: "fas fa-question-circle",
  3051. searchTerms: [ "help", "information", "unknown", "support" ]
  3052. }, {
  3053. title: "far fa-question-circle",
  3054. searchTerms: [ "help", "information", "unknown", "support" ]
  3055. }, {
  3056. title: "fas fa-quidditch",
  3057. searchTerms: []
  3058. }, {
  3059. title: "fab fa-quinscape",
  3060. searchTerms: []
  3061. }, {
  3062. title: "fab fa-quora",
  3063. searchTerms: []
  3064. }, {
  3065. title: "fas fa-quote-left",
  3066. searchTerms: []
  3067. }, {
  3068. title: "fas fa-quote-right",
  3069. searchTerms: []
  3070. }, {
  3071. title: "fas fa-random",
  3072. searchTerms: [ "sort", "shuffle" ]
  3073. }, {
  3074. title: "fab fa-ravelry",
  3075. searchTerms: []
  3076. }, {
  3077. title: "fab fa-react",
  3078. searchTerms: []
  3079. }, {
  3080. title: "fab fa-rebel",
  3081. searchTerms: []
  3082. }, {
  3083. title: "fas fa-recycle",
  3084. searchTerms: []
  3085. }, {
  3086. title: "fab fa-red-river",
  3087. searchTerms: []
  3088. }, {
  3089. title: "fab fa-reddit",
  3090. searchTerms: []
  3091. }, {
  3092. title: "fab fa-reddit-alien",
  3093. searchTerms: []
  3094. }, {
  3095. title: "fab fa-reddit-square",
  3096. searchTerms: []
  3097. }, {
  3098. title: "fas fa-redo",
  3099. searchTerms: [ "forward", "repeat", "repeat" ]
  3100. }, {
  3101. title: "fas fa-redo-alt",
  3102. searchTerms: [ "forward", "repeat" ]
  3103. }, {
  3104. title: "fas fa-registered",
  3105. searchTerms: []
  3106. }, {
  3107. title: "far fa-registered",
  3108. searchTerms: []
  3109. }, {
  3110. title: "fab fa-rendact",
  3111. searchTerms: []
  3112. }, {
  3113. title: "fab fa-renren",
  3114. searchTerms: []
  3115. }, {
  3116. title: "fas fa-reply",
  3117. searchTerms: []
  3118. }, {
  3119. title: "fas fa-reply-all",
  3120. searchTerms: []
  3121. }, {
  3122. title: "fab fa-replyd",
  3123. searchTerms: []
  3124. }, {
  3125. title: "fab fa-resolving",
  3126. searchTerms: []
  3127. }, {
  3128. title: "fas fa-retweet",
  3129. searchTerms: [ "refresh", "reload", "share", "swap" ]
  3130. }, {
  3131. title: "fas fa-road",
  3132. searchTerms: [ "street" ]
  3133. }, {
  3134. title: "fas fa-rocket",
  3135. searchTerms: [ "app" ]
  3136. }, {
  3137. title: "fab fa-rocketchat",
  3138. searchTerms: []
  3139. }, {
  3140. title: "fab fa-rockrms",
  3141. searchTerms: []
  3142. }, {
  3143. title: "fas fa-rss",
  3144. searchTerms: [ "blog" ]
  3145. }, {
  3146. title: "fas fa-rss-square",
  3147. searchTerms: [ "feed", "blog" ]
  3148. }, {
  3149. title: "fas fa-ruble-sign",
  3150. searchTerms: [ "rub", "rub" ]
  3151. }, {
  3152. title: "fas fa-rupee-sign",
  3153. searchTerms: [ "indian", "inr" ]
  3154. }, {
  3155. title: "fab fa-safari",
  3156. searchTerms: [ "browser" ]
  3157. }, {
  3158. title: "fab fa-sass",
  3159. searchTerms: []
  3160. }, {
  3161. title: "fas fa-save",
  3162. searchTerms: [ "floppy", "floppy-o" ]
  3163. }, {
  3164. title: "far fa-save",
  3165. searchTerms: [ "floppy", "floppy-o" ]
  3166. }, {
  3167. title: "fab fa-schlix",
  3168. searchTerms: []
  3169. }, {
  3170. title: "fab fa-scribd",
  3171. searchTerms: []
  3172. }, {
  3173. title: "fas fa-search",
  3174. searchTerms: [ "magnify", "zoom", "enlarge", "bigger" ]
  3175. }, {
  3176. title: "fas fa-search-minus",
  3177. searchTerms: [ "magnify", "minify", "zoom", "smaller" ]
  3178. }, {
  3179. title: "fas fa-search-plus",
  3180. searchTerms: [ "magnify", "zoom", "enlarge", "bigger" ]
  3181. }, {
  3182. title: "fab fa-searchengin",
  3183. searchTerms: []
  3184. }, {
  3185. title: "fab fa-sellcast",
  3186. searchTerms: [ "eercast" ]
  3187. }, {
  3188. title: "fab fa-sellsy",
  3189. searchTerms: []
  3190. }, {
  3191. title: "fas fa-server",
  3192. searchTerms: []
  3193. }, {
  3194. title: "fab fa-servicestack",
  3195. searchTerms: []
  3196. }, {
  3197. title: "fas fa-share",
  3198. searchTerms: []
  3199. }, {
  3200. title: "fas fa-share-alt",
  3201. searchTerms: []
  3202. }, {
  3203. title: "fas fa-share-alt-square",
  3204. searchTerms: []
  3205. }, {
  3206. title: "fas fa-share-square",
  3207. searchTerms: [ "social", "send" ]
  3208. }, {
  3209. title: "far fa-share-square",
  3210. searchTerms: [ "social", "send" ]
  3211. }, {
  3212. title: "fas fa-shekel-sign",
  3213. searchTerms: [ "ils", "ils" ]
  3214. }, {
  3215. title: "fas fa-shield-alt",
  3216. searchTerms: [ "shield" ]
  3217. }, {
  3218. title: "fas fa-ship",
  3219. searchTerms: [ "boat", "sea" ]
  3220. }, {
  3221. title: "fas fa-shipping-fast",
  3222. searchTerms: []
  3223. }, {
  3224. title: "fab fa-shirtsinbulk",
  3225. searchTerms: []
  3226. }, {
  3227. title: "fas fa-shopping-bag",
  3228. searchTerms: []
  3229. }, {
  3230. title: "fas fa-shopping-basket",
  3231. searchTerms: []
  3232. }, {
  3233. title: "fas fa-shopping-cart",
  3234. searchTerms: [ "checkout", "buy", "purchase", "payment" ]
  3235. }, {
  3236. title: "fas fa-shower",
  3237. searchTerms: []
  3238. }, {
  3239. title: "fas fa-sign-in-alt",
  3240. searchTerms: [ "enter", "join", "log in", "login", "sign up", "sign in", "signin", "signup", "arrow", "sign-in" ]
  3241. }, {
  3242. title: "fas fa-sign-language",
  3243. searchTerms: []
  3244. }, {
  3245. title: "fas fa-sign-out-alt",
  3246. searchTerms: [ "log out", "logout", "leave", "exit", "arrow", "sign-out" ]
  3247. }, {
  3248. title: "fas fa-signal",
  3249. searchTerms: [ "graph", "bars", "status" ]
  3250. }, {
  3251. title: "fab fa-simplybuilt",
  3252. searchTerms: []
  3253. }, {
  3254. title: "fab fa-sistrix",
  3255. searchTerms: []
  3256. }, {
  3257. title: "fas fa-sitemap",
  3258. searchTerms: [ "directory", "hierarchy", "organization" ]
  3259. }, {
  3260. title: "fab fa-skyatlas",
  3261. searchTerms: []
  3262. }, {
  3263. title: "fab fa-skype",
  3264. searchTerms: []
  3265. }, {
  3266. title: "fab fa-slack",
  3267. searchTerms: [ "hashtag", "anchor", "hash" ]
  3268. }, {
  3269. title: "fab fa-slack-hash",
  3270. searchTerms: [ "hashtag", "anchor", "hash" ]
  3271. }, {
  3272. title: "fas fa-sliders-h",
  3273. searchTerms: [ "settings", "sliders" ]
  3274. }, {
  3275. title: "fab fa-slideshare",
  3276. searchTerms: []
  3277. }, {
  3278. title: "fas fa-smile",
  3279. searchTerms: [ "face", "emoticon", "happy", "approve", "satisfied", "rating" ]
  3280. }, {
  3281. title: "far fa-smile",
  3282. searchTerms: [ "face", "emoticon", "happy", "approve", "satisfied", "rating" ]
  3283. }, {
  3284. title: "fab fa-snapchat",
  3285. searchTerms: []
  3286. }, {
  3287. title: "fab fa-snapchat-ghost",
  3288. searchTerms: []
  3289. }, {
  3290. title: "fab fa-snapchat-square",
  3291. searchTerms: []
  3292. }, {
  3293. title: "fas fa-snowflake",
  3294. searchTerms: []
  3295. }, {
  3296. title: "far fa-snowflake",
  3297. searchTerms: []
  3298. }, {
  3299. title: "fas fa-sort",
  3300. searchTerms: [ "order" ]
  3301. }, {
  3302. title: "fas fa-sort-alpha-down",
  3303. searchTerms: [ "sort-alpha-asc" ]
  3304. }, {
  3305. title: "fas fa-sort-alpha-up",
  3306. searchTerms: [ "sort-alpha-desc" ]
  3307. }, {
  3308. title: "fas fa-sort-amount-down",
  3309. searchTerms: [ "sort-amount-asc" ]
  3310. }, {
  3311. title: "fas fa-sort-amount-up",
  3312. searchTerms: [ "sort-amount-desc" ]
  3313. }, {
  3314. title: "fas fa-sort-down",
  3315. searchTerms: [ "arrow", "descending", "sort-desc" ]
  3316. }, {
  3317. title: "fas fa-sort-numeric-down",
  3318. searchTerms: [ "numbers", "sort-numeric-asc" ]
  3319. }, {
  3320. title: "fas fa-sort-numeric-up",
  3321. searchTerms: [ "numbers", "sort-numeric-desc" ]
  3322. }, {
  3323. title: "fas fa-sort-up",
  3324. searchTerms: [ "arrow", "ascending", "sort-asc" ]
  3325. }, {
  3326. title: "fab fa-soundcloud",
  3327. searchTerms: []
  3328. }, {
  3329. title: "fas fa-space-shuttle",
  3330. searchTerms: []
  3331. }, {
  3332. title: "fab fa-speakap",
  3333. searchTerms: []
  3334. }, {
  3335. title: "fas fa-spinner",
  3336. searchTerms: [ "loading", "progress" ]
  3337. }, {
  3338. title: "fab fa-spotify",
  3339. searchTerms: []
  3340. }, {
  3341. title: "fas fa-square",
  3342. searchTerms: [ "block", "box" ]
  3343. }, {
  3344. title: "far fa-square",
  3345. searchTerms: [ "block", "box" ]
  3346. }, {
  3347. title: "fas fa-square-full",
  3348. searchTerms: []
  3349. }, {
  3350. title: "fab fa-stack-exchange",
  3351. searchTerms: []
  3352. }, {
  3353. title: "fab fa-stack-overflow",
  3354. searchTerms: []
  3355. }, {
  3356. title: "fas fa-star",
  3357. searchTerms: [ "award", "achievement", "night", "rating", "score", "favorite" ]
  3358. }, {
  3359. title: "far fa-star",
  3360. searchTerms: [ "award", "achievement", "night", "rating", "score", "favorite" ]
  3361. }, {
  3362. title: "fas fa-star-half",
  3363. searchTerms: [ "award", "achievement", "rating", "score", "star-half-empty", "star-half-full" ]
  3364. }, {
  3365. title: "far fa-star-half",
  3366. searchTerms: [ "award", "achievement", "rating", "score", "star-half-empty", "star-half-full" ]
  3367. }, {
  3368. title: "fab fa-staylinked",
  3369. searchTerms: []
  3370. }, {
  3371. title: "fab fa-steam",
  3372. searchTerms: []
  3373. }, {
  3374. title: "fab fa-steam-square",
  3375. searchTerms: []
  3376. }, {
  3377. title: "fab fa-steam-symbol",
  3378. searchTerms: []
  3379. }, {
  3380. title: "fas fa-step-backward",
  3381. searchTerms: [ "rewind", "previous", "beginning", "start", "first" ]
  3382. }, {
  3383. title: "fas fa-step-forward",
  3384. searchTerms: [ "next", "end", "last" ]
  3385. }, {
  3386. title: "fas fa-stethoscope",
  3387. searchTerms: []
  3388. }, {
  3389. title: "fab fa-sticker-mule",
  3390. searchTerms: []
  3391. }, {
  3392. title: "fas fa-sticky-note",
  3393. searchTerms: []
  3394. }, {
  3395. title: "far fa-sticky-note",
  3396. searchTerms: []
  3397. }, {
  3398. title: "fas fa-stop",
  3399. searchTerms: [ "block", "box", "square" ]
  3400. }, {
  3401. title: "fas fa-stop-circle",
  3402. searchTerms: []
  3403. }, {
  3404. title: "far fa-stop-circle",
  3405. searchTerms: []
  3406. }, {
  3407. title: "fas fa-stopwatch",
  3408. searchTerms: [ "time" ]
  3409. }, {
  3410. title: "fab fa-strava",
  3411. searchTerms: []
  3412. }, {
  3413. title: "fas fa-street-view",
  3414. searchTerms: [ "map" ]
  3415. }, {
  3416. title: "fas fa-strikethrough",
  3417. searchTerms: []
  3418. }, {
  3419. title: "fab fa-stripe",
  3420. searchTerms: []
  3421. }, {
  3422. title: "fab fa-stripe-s",
  3423. searchTerms: []
  3424. }, {
  3425. title: "fab fa-studiovinari",
  3426. searchTerms: []
  3427. }, {
  3428. title: "fab fa-stumbleupon",
  3429. searchTerms: []
  3430. }, {
  3431. title: "fab fa-stumbleupon-circle",
  3432. searchTerms: []
  3433. }, {
  3434. title: "fas fa-subscript",
  3435. searchTerms: []
  3436. }, {
  3437. title: "fas fa-subway",
  3438. searchTerms: []
  3439. }, {
  3440. title: "fas fa-suitcase",
  3441. searchTerms: [ "trip", "luggage", "travel", "move", "baggage" ]
  3442. }, {
  3443. title: "fas fa-sun",
  3444. searchTerms: [ "weather", "contrast", "lighter", "brighten", "day" ]
  3445. }, {
  3446. title: "far fa-sun",
  3447. searchTerms: [ "weather", "contrast", "lighter", "brighten", "day" ]
  3448. }, {
  3449. title: "fab fa-superpowers",
  3450. searchTerms: []
  3451. }, {
  3452. title: "fas fa-superscript",
  3453. searchTerms: [ "exponential" ]
  3454. }, {
  3455. title: "fab fa-supple",
  3456. searchTerms: []
  3457. }, {
  3458. title: "fas fa-sync",
  3459. searchTerms: [ "reload", "refresh", "refresh" ]
  3460. }, {
  3461. title: "fas fa-sync-alt",
  3462. searchTerms: [ "reload", "refresh" ]
  3463. }, {
  3464. title: "fas fa-syringe",
  3465. searchTerms: [ "immunizations", "needle" ]
  3466. }, {
  3467. title: "fas fa-table",
  3468. searchTerms: [ "data", "excel", "spreadsheet" ]
  3469. }, {
  3470. title: "fas fa-table-tennis",
  3471. searchTerms: []
  3472. }, {
  3473. title: "fas fa-tablet",
  3474. searchTerms: [ "ipad", "device" ]
  3475. }, {
  3476. title: "fas fa-tablet-alt",
  3477. searchTerms: [ "tablet" ]
  3478. }, {
  3479. title: "fas fa-tachometer-alt",
  3480. searchTerms: [ "tachometer", "dashboard" ]
  3481. }, {
  3482. title: "fas fa-tag",
  3483. searchTerms: [ "label" ]
  3484. }, {
  3485. title: "fas fa-tags",
  3486. searchTerms: [ "labels" ]
  3487. }, {
  3488. title: "fas fa-tasks",
  3489. searchTerms: [ "progress", "loading", "downloading", "downloads", "settings" ]
  3490. }, {
  3491. title: "fas fa-taxi",
  3492. searchTerms: [ "vehicle" ]
  3493. }, {
  3494. title: "fab fa-telegram",
  3495. searchTerms: []
  3496. }, {
  3497. title: "fab fa-telegram-plane",
  3498. searchTerms: []
  3499. }, {
  3500. title: "fab fa-tencent-weibo",
  3501. searchTerms: []
  3502. }, {
  3503. title: "fas fa-terminal",
  3504. searchTerms: [ "command", "prompt", "code" ]
  3505. }, {
  3506. title: "fas fa-text-height",
  3507. searchTerms: []
  3508. }, {
  3509. title: "fas fa-text-width",
  3510. searchTerms: []
  3511. }, {
  3512. title: "fas fa-th",
  3513. searchTerms: [ "blocks", "squares", "boxes", "grid" ]
  3514. }, {
  3515. title: "fas fa-th-large",
  3516. searchTerms: [ "blocks", "squares", "boxes", "grid" ]
  3517. }, {
  3518. title: "fas fa-th-list",
  3519. searchTerms: [ "ul", "ol", "checklist", "finished", "completed", "done", "todo" ]
  3520. }, {
  3521. title: "fab fa-themeisle",
  3522. searchTerms: []
  3523. }, {
  3524. title: "fas fa-thermometer",
  3525. searchTerms: [ "temperature", "fever" ]
  3526. }, {
  3527. title: "fas fa-thermometer-empty",
  3528. searchTerms: [ "status" ]
  3529. }, {
  3530. title: "fas fa-thermometer-full",
  3531. searchTerms: [ "status" ]
  3532. }, {
  3533. title: "fas fa-thermometer-half",
  3534. searchTerms: [ "status" ]
  3535. }, {
  3536. title: "fas fa-thermometer-quarter",
  3537. searchTerms: [ "status" ]
  3538. }, {
  3539. title: "fas fa-thermometer-three-quarters",
  3540. searchTerms: [ "status" ]
  3541. }, {
  3542. title: "fas fa-thumbs-down",
  3543. searchTerms: [ "dislike", "disapprove", "disagree", "hand", "thumbs-o-down" ]
  3544. }, {
  3545. title: "far fa-thumbs-down",
  3546. searchTerms: [ "dislike", "disapprove", "disagree", "hand", "thumbs-o-down" ]
  3547. }, {
  3548. title: "fas fa-thumbs-up",
  3549. searchTerms: [ "like", "favorite", "approve", "agree", "hand", "thumbs-o-up" ]
  3550. }, {
  3551. title: "far fa-thumbs-up",
  3552. searchTerms: [ "like", "favorite", "approve", "agree", "hand", "thumbs-o-up" ]
  3553. }, {
  3554. title: "fas fa-thumbtack",
  3555. searchTerms: [ "marker", "pin", "location", "coordinates", "thumb-tack" ]
  3556. }, {
  3557. title: "fas fa-ticket-alt",
  3558. searchTerms: [ "ticket" ]
  3559. }, {
  3560. title: "fas fa-times",
  3561. searchTerms: [ "close", "exit", "x", "cross" ]
  3562. }, {
  3563. title: "fas fa-times-circle",
  3564. searchTerms: [ "close", "exit", "x" ]
  3565. }, {
  3566. title: "far fa-times-circle",
  3567. searchTerms: [ "close", "exit", "x" ]
  3568. }, {
  3569. title: "fas fa-tint",
  3570. searchTerms: [ "raindrop", "waterdrop", "drop", "droplet" ]
  3571. }, {
  3572. title: "fas fa-toggle-off",
  3573. searchTerms: [ "switch" ]
  3574. }, {
  3575. title: "fas fa-toggle-on",
  3576. searchTerms: [ "switch" ]
  3577. }, {
  3578. title: "fas fa-trademark",
  3579. searchTerms: []
  3580. }, {
  3581. title: "fas fa-train",
  3582. searchTerms: []
  3583. }, {
  3584. title: "fas fa-transgender",
  3585. searchTerms: [ "intersex" ]
  3586. }, {
  3587. title: "fas fa-transgender-alt",
  3588. searchTerms: []
  3589. }, {
  3590. title: "fas fa-trash",
  3591. searchTerms: [ "garbage", "delete", "remove", "hide" ]
  3592. }, {
  3593. title: "fas fa-trash-alt",
  3594. searchTerms: [ "garbage", "delete", "remove", "hide", "trash", "trash-o" ]
  3595. }, {
  3596. title: "far fa-trash-alt",
  3597. searchTerms: [ "garbage", "delete", "remove", "hide", "trash", "trash-o" ]
  3598. }, {
  3599. title: "fas fa-tree",
  3600. searchTerms: []
  3601. }, {
  3602. title: "fab fa-trello",
  3603. searchTerms: []
  3604. }, {
  3605. title: "fab fa-tripadvisor",
  3606. searchTerms: []
  3607. }, {
  3608. title: "fas fa-trophy",
  3609. searchTerms: [ "award", "achievement", "cup", "winner", "game" ]
  3610. }, {
  3611. title: "fas fa-truck",
  3612. searchTerms: [ "shipping" ]
  3613. }, {
  3614. title: "fas fa-tty",
  3615. searchTerms: []
  3616. }, {
  3617. title: "fab fa-tumblr",
  3618. searchTerms: []
  3619. }, {
  3620. title: "fab fa-tumblr-square",
  3621. searchTerms: []
  3622. }, {
  3623. title: "fas fa-tv",
  3624. searchTerms: [ "display", "computer", "monitor", "television" ]
  3625. }, {
  3626. title: "fab fa-twitch",
  3627. searchTerms: []
  3628. }, {
  3629. title: "fab fa-twitter",
  3630. searchTerms: [ "tweet", "social network" ]
  3631. }, {
  3632. title: "fab fa-twitter-square",
  3633. searchTerms: [ "tweet", "social network" ]
  3634. }, {
  3635. title: "fab fa-typo3",
  3636. searchTerms: []
  3637. }, {
  3638. title: "fab fa-uber",
  3639. searchTerms: []
  3640. }, {
  3641. title: "fab fa-uikit",
  3642. searchTerms: []
  3643. }, {
  3644. title: "fas fa-umbrella",
  3645. searchTerms: []
  3646. }, {
  3647. title: "fas fa-underline",
  3648. searchTerms: []
  3649. }, {
  3650. title: "fas fa-undo",
  3651. searchTerms: [ "back" ]
  3652. }, {
  3653. title: "fas fa-undo-alt",
  3654. searchTerms: [ "back" ]
  3655. }, {
  3656. title: "fab fa-uniregistry",
  3657. searchTerms: []
  3658. }, {
  3659. title: "fas fa-universal-access",
  3660. searchTerms: []
  3661. }, {
  3662. title: "fas fa-university",
  3663. searchTerms: [ "bank", "institution" ]
  3664. }, {
  3665. title: "fas fa-unlink",
  3666. searchTerms: [ "remove", "chain", "chain-broken" ]
  3667. }, {
  3668. title: "fas fa-unlock",
  3669. searchTerms: [ "protect", "admin", "password", "lock" ]
  3670. }, {
  3671. title: "fas fa-unlock-alt",
  3672. searchTerms: [ "protect", "admin", "password", "lock" ]
  3673. }, {
  3674. title: "fab fa-untappd",
  3675. searchTerms: []
  3676. }, {
  3677. title: "fas fa-upload",
  3678. searchTerms: [ "import" ]
  3679. }, {
  3680. title: "fab fa-usb",
  3681. searchTerms: []
  3682. }, {
  3683. title: "fas fa-user",
  3684. searchTerms: [ "person", "man", "head", "profile", "account" ]
  3685. }, {
  3686. title: "far fa-user",
  3687. searchTerms: [ "person", "man", "head", "profile", "account" ]
  3688. }, {
  3689. title: "fas fa-user-circle",
  3690. searchTerms: [ "person", "man", "head", "profile", "account" ]
  3691. }, {
  3692. title: "far fa-user-circle",
  3693. searchTerms: [ "person", "man", "head", "profile", "account" ]
  3694. }, {
  3695. title: "fas fa-user-md",
  3696. searchTerms: [ "doctor", "profile", "medical", "nurse", "job", "occupation" ]
  3697. }, {
  3698. title: "fas fa-user-plus",
  3699. searchTerms: [ "sign up", "signup" ]
  3700. }, {
  3701. title: "fas fa-user-secret",
  3702. searchTerms: [ "whisper", "spy", "incognito", "privacy" ]
  3703. }, {
  3704. title: "fas fa-user-times",
  3705. searchTerms: []
  3706. }, {
  3707. title: "fas fa-users",
  3708. searchTerms: [ "people", "profiles", "persons" ]
  3709. }, {
  3710. title: "fab fa-ussunnah",
  3711. searchTerms: []
  3712. }, {
  3713. title: "fas fa-utensil-spoon",
  3714. searchTerms: [ "spoon" ]
  3715. }, {
  3716. title: "fas fa-utensils",
  3717. searchTerms: [ "food", "restaurant", "spoon", "knife", "dinner", "eat", "cutlery" ]
  3718. }, {
  3719. title: "fab fa-vaadin",
  3720. searchTerms: []
  3721. }, {
  3722. title: "fas fa-venus",
  3723. searchTerms: [ "female" ]
  3724. }, {
  3725. title: "fas fa-venus-double",
  3726. searchTerms: []
  3727. }, {
  3728. title: "fas fa-venus-mars",
  3729. searchTerms: []
  3730. }, {
  3731. title: "fab fa-viacoin",
  3732. searchTerms: []
  3733. }, {
  3734. title: "fab fa-viadeo",
  3735. searchTerms: []
  3736. }, {
  3737. title: "fab fa-viadeo-square",
  3738. searchTerms: []
  3739. }, {
  3740. title: "fab fa-viber",
  3741. searchTerms: []
  3742. }, {
  3743. title: "fas fa-video",
  3744. searchTerms: [ "film", "movie", "record", "camera", "video-camera" ]
  3745. }, {
  3746. title: "fab fa-vimeo",
  3747. searchTerms: []
  3748. }, {
  3749. title: "fab fa-vimeo-square",
  3750. searchTerms: []
  3751. }, {
  3752. title: "fab fa-vimeo-v",
  3753. searchTerms: [ "vimeo" ]
  3754. }, {
  3755. title: "fab fa-vine",
  3756. searchTerms: []
  3757. }, {
  3758. title: "fab fa-vk",
  3759. searchTerms: []
  3760. }, {
  3761. title: "fab fa-vnv",
  3762. searchTerms: []
  3763. }, {
  3764. title: "fas fa-volleyball-ball",
  3765. searchTerms: []
  3766. }, {
  3767. title: "fas fa-volume-down",
  3768. searchTerms: [ "audio", "lower", "quieter", "sound", "music" ]
  3769. }, {
  3770. title: "fas fa-volume-off",
  3771. searchTerms: [ "audio", "mute", "sound", "music" ]
  3772. }, {
  3773. title: "fas fa-volume-up",
  3774. searchTerms: [ "audio", "higher", "louder", "sound", "music" ]
  3775. }, {
  3776. title: "fab fa-vuejs",
  3777. searchTerms: []
  3778. }, {
  3779. title: "fas fa-warehouse",
  3780. searchTerms: []
  3781. }, {
  3782. title: "fab fa-weibo",
  3783. searchTerms: []
  3784. }, {
  3785. title: "fas fa-weight",
  3786. searchTerms: [ "scale" ]
  3787. }, {
  3788. title: "fab fa-weixin",
  3789. searchTerms: []
  3790. }, {
  3791. title: "fab fa-whatsapp",
  3792. searchTerms: []
  3793. }, {
  3794. title: "fab fa-whatsapp-square",
  3795. searchTerms: []
  3796. }, {
  3797. title: "fas fa-wheelchair",
  3798. searchTerms: [ "handicap", "person" ]
  3799. }, {
  3800. title: "fab fa-whmcs",
  3801. searchTerms: []
  3802. }, {
  3803. title: "fas fa-wifi",
  3804. searchTerms: []
  3805. }, {
  3806. title: "fab fa-wikipedia-w",
  3807. searchTerms: []
  3808. }, {
  3809. title: "fas fa-window-close",
  3810. searchTerms: []
  3811. }, {
  3812. title: "far fa-window-close",
  3813. searchTerms: []
  3814. }, {
  3815. title: "fas fa-window-maximize",
  3816. searchTerms: []
  3817. }, {
  3818. title: "far fa-window-maximize",
  3819. searchTerms: []
  3820. }, {
  3821. title: "fas fa-window-minimize",
  3822. searchTerms: []
  3823. }, {
  3824. title: "far fa-window-minimize",
  3825. searchTerms: []
  3826. }, {
  3827. title: "fas fa-window-restore",
  3828. searchTerms: []
  3829. }, {
  3830. title: "far fa-window-restore",
  3831. searchTerms: []
  3832. }, {
  3833. title: "fab fa-windows",
  3834. searchTerms: [ "microsoft" ]
  3835. }, {
  3836. title: "fas fa-won-sign",
  3837. searchTerms: [ "krw", "krw" ]
  3838. }, {
  3839. title: "fab fa-wordpress",
  3840. searchTerms: []
  3841. }, {
  3842. title: "fab fa-wordpress-simple",
  3843. searchTerms: []
  3844. }, {
  3845. title: "fab fa-wpbeginner",
  3846. searchTerms: []
  3847. }, {
  3848. title: "fab fa-wpexplorer",
  3849. searchTerms: []
  3850. }, {
  3851. title: "fab fa-wpforms",
  3852. searchTerms: []
  3853. }, {
  3854. title: "fas fa-wrench",
  3855. searchTerms: [ "settings", "fix", "update", "spanner", "tool" ]
  3856. }, {
  3857. title: "fab fa-xbox",
  3858. searchTerms: []
  3859. }, {
  3860. title: "fab fa-xing",
  3861. searchTerms: []
  3862. }, {
  3863. title: "fab fa-xing-square",
  3864. searchTerms: []
  3865. }, {
  3866. title: "fab fa-y-combinator",
  3867. searchTerms: []
  3868. }, {
  3869. title: "fab fa-yahoo",
  3870. searchTerms: []
  3871. }, {
  3872. title: "fab fa-yandex",
  3873. searchTerms: []
  3874. }, {
  3875. title: "fab fa-yandex-international",
  3876. searchTerms: []
  3877. }, {
  3878. title: "fab fa-yelp",
  3879. searchTerms: []
  3880. }, {
  3881. title: "fas fa-yen-sign",
  3882. searchTerms: [ "jpy", "jpy" ]
  3883. }, {
  3884. title: "fab fa-yoast",
  3885. searchTerms: []
  3886. }, {
  3887. title: "fab fa-youtube",
  3888. searchTerms: [ "video", "film", "youtube-play", "youtube-square" ]
  3889. }, {
  3890. title: "fab fa-youtube-square",
  3891. searchTerms: []
  3892. } ]
  3893. });
  3894. });