sajjad 3 years ago
parent 86bdc9119c
commit 4e694c8fbd

707
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -29,7 +29,6 @@
}, },
"devDependencies": { "devDependencies": {
"@vue/cli-plugin-babel": "^4.5.15", "@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-service": "^4.5.15", "@vue/cli-service": "^4.5.15",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
"eslint": "^6.7.2", "eslint": "^6.7.2",

@ -23,8 +23,8 @@ export default class ProductRepository {
} }
} }
async update(productId, data) { async update(productId, data) {
let json = setData(data, true); let json = setData(data);
let response = await axios.post( let response = await axios.put(
url("updateProduct", { product: productId }), url("updateProduct", { product: productId }),
json json
); );

@ -1,4 +1,4 @@
import { objectToFormData } from "@/utils/objectToFormData"; // import { objectToFormData } from "@/utils/objectToFormData";
import { SetPagination, SetQueriesObject } from "@/utils/setQueriesObject"; import { SetPagination, SetQueriesObject } from "@/utils/setQueriesObject";
export const getJson = (data) => ({ export const getJson = (data) => ({
@ -21,7 +21,9 @@ export const getJson = (data) => ({
product_categories_id: data.product_category?.parent?.id, product_categories_id: data.product_category?.parent?.id,
product_category_id: data.product_category?.id product_category_id: data.product_category?.id
}); });
export const setData = (data, isUpdate = false) => {
export const setData = (data) => {
console.log(data);
let formData = { let formData = {
product_category_id: data.product_category_id, product_category_id: data.product_category_id,
title: data.title, title: data.title,
@ -35,10 +37,7 @@ export const setData = (data, isUpdate = false) => {
tags: data.tags, tags: data.tags,
batch_id: data.batch_id batch_id: data.batch_id
}; };
if (isUpdate) { return formData;
formData["_method"] = "put";
}
return objectToFormData(formData);
}; };
export const getArray = ({ data, meta }) => { export const getArray = ({ data, meta }) => {
const pagination = SetPagination(meta); const pagination = SetPagination(meta);

@ -299,6 +299,7 @@ export default {
async load() { async load() {
await this.loadProduct(this.productId); await this.loadProduct(this.productId);
this.form = this.getProduct; this.form = this.getProduct;
console.log(this.form.tags);
this.form["batch_id"] = RANDOM_TOKEN; this.form["batch_id"] = RANDOM_TOKEN;
// this.changeProductCategories(); // this.changeProductCategories();
}, },

@ -62,6 +62,10 @@ export default {
font-family: "montserrat-medium"; font-family: "montserrat-medium";
color: var(--color-white); color: var(--color-white);
font-size: 19px; font-size: 19px;
white-space: nowrap;
text-overflow: ellipsis;
word-wrap: break-word;
overflow: hidden;
} }
.program__sub-title { .program__sub-title {
font-size: 14px; font-size: 14px;

@ -28,6 +28,7 @@
:color="color" :color="color"
v-model="time" v-model="time"
:type="type" :type="type"
:format="format"
@input="menu = false" @input="menu = false"
/> />
</v-menu> </v-menu>
@ -40,6 +41,9 @@ export default {
placeholder: {}, placeholder: {},
color: {}, color: {},
value: {}, value: {},
format: {
default: "24hr"
},
type: { type: {
default: "time", default: "time",
}, },
@ -61,4 +65,4 @@ export default {
}, },
}, },
}; };
</script> </script>

@ -73,7 +73,11 @@ export default {
text: "programs", text: "programs",
link: "programs", link: "programs",
active: active:
this.$route.name === "programs" || this.$route.name === "addProgram", this.$route.name === "programs" ||
this.$route.name === "addProgram" ||
this.$route.name === "programSeries" ||
this.$route.name === "addProgram" ||
this.$route.name === "workoutsSeries",
}, },
{ {
id: 5, id: 5,
@ -85,7 +89,8 @@ export default {
id: 6, id: 6,
text: "products", text: "products",
link: "products", link: "products",
active: this.$route.name === "products" || this.$route.name === "addProduct", active:
this.$route.name === "products" || this.$route.name === "addProduct",
}, },
{ {
id: 7, id: 7,
@ -154,6 +159,7 @@ export default {
active: this.$route.name === "bookmarks", active: this.$route.name === "bookmarks",
}, },
]); ]);
console.log(this.$route.name);
return menuItems; return menuItems;
}, },
}, },

@ -77,6 +77,7 @@
class="no-error-msg" class="no-error-msg"
label="Birthday" label="Birthday"
dark dark
:max="new Date()"
v-model="form.birthday" v-model="form.birthday"
/></v-col> /></v-col>
<v-col cols="3"></v-col> <v-col cols="3"></v-col>

@ -43,7 +43,7 @@
/> />
</router-link> </router-link>
<RectangleButton <RectangleButton
@click.native="deleteProgram(program.id)" @click.native="removeProgram(program.id)"
size="large" size="large"
class="custom-btn ml-1" class="custom-btn ml-1"
height="32" height="32"
@ -76,6 +76,8 @@
</template> </template>
<script> <script>
import { mapActions } from "vuex"; import { mapActions } from "vuex";
import toast from "@/utils/toast";
export default { export default {
props: { props: {
program: { program: {
@ -84,6 +86,11 @@ export default {
}, },
methods: { methods: {
...mapActions("programs", ["verifyProgram", "deleteProgram"]), ...mapActions("programs", ["verifyProgram", "deleteProgram"]),
removeProgram(id) {
toast.question("Are sure delete brand?", "Delete Brand", () => {
this.deleteProgram(id);
});
},
}, },
}; };
</script> </script>
@ -95,9 +102,17 @@ export default {
font-family: "montserrat-medium"; font-family: "montserrat-medium";
color: var(--color-white); color: var(--color-white);
font-size: 19px; font-size: 19px;
white-space: nowrap;
text-overflow: ellipsis;
word-wrap: break-word;
overflow: hidden;
} }
.program__sub-title { .program__sub-title {
font-size: 14px; font-size: 14px;
white-space: nowrap;
text-overflow: ellipsis;
word-wrap: break-word;
overflow: hidden;
} }
.wa__program__images { .wa__program__images {

@ -63,7 +63,7 @@
class="ml-1 custom-btn custom-icon" class="ml-1 custom-btn custom-icon"
icon=" WMi-trash" icon=" WMi-trash"
size="large" size="large"
@click.native="deleteUser(user.id)" @click.native="removeUser(user.id)"
/> />
<i class="WMi-right-open ml-3"></i> <i class="WMi-right-open ml-3"></i>
</div> </div>
@ -74,6 +74,7 @@
<script> <script>
import { mapActions } from "vuex"; import { mapActions } from "vuex";
import { UserStorage } from "@/utils/storage"; import { UserStorage } from "@/utils/storage";
import toast from "@/utils/toast";
export default { export default {
props: { props: {
user: { user: {
@ -85,6 +86,11 @@ export default {
}), }),
methods: { methods: {
...mapActions("users", ["deleteUser"]), ...mapActions("users", ["deleteUser"]),
removeUser(id) {
toast.question("Are sure delete User?", "Delete User", () => {
this.deleteUser(id);
});
},
chageRole() { chageRole() {
this.$emit("userId", this.user.id); this.$emit("userId", this.user.id);
// let role = this.user.userRoles.map((role) => role.id); // let role = this.user.userRoles.map((role) => role.id);

@ -6,7 +6,9 @@
<div <div
class="series__workout__image" class="series__workout__image"
:style="{ :style="{
backgroundImage: `url('http://via.placeholder.com/200')`, backgroundImage: `url('${
addWorkout ? addWorkout.thumbnail : seriesWorkout.thumbnail
}')`,
}" }"
></div> ></div>
<!-- <div v-else> <!-- <div v-else>
@ -20,15 +22,11 @@
<v-col :cols="addWorkout ? 9 : 8"> <v-col :cols="addWorkout ? 9 : 8">
<div class="details__card"> <div class="details__card">
<div> <div>
<div <div class="series__workout__title wa__f__m__eb text-uppercase mb-2">
class="series__workout__title wa__f__m__eb text-uppercase mb-2"
>
{{ addWorkout ? addWorkout.title : seriesWorkout.title }} {{ addWorkout ? addWorkout.title : seriesWorkout.title }}
</div> </div>
<div class="series__workout__description"> <div class="series__workout__description">
{{ {{ addWorkout ? addWorkout.description : seriesWorkout.description }}
addWorkout ? addWorkout.description : seriesWorkout.description
}}
</div> </div>
</div> </div>
<div v-if="seriesWorkout"> <div v-if="seriesWorkout">
@ -36,9 +34,7 @@
<div class="d-flex"> <div class="d-flex">
<div class="mr-6"> <div class="mr-6">
<i class="WMi-clock-3"></i> <i class="WMi-clock-3"></i>
<span class="wa__f__m__eb">{{ <span class="wa__f__m__eb">{{ seriesWorkout.suggested_time }}</span>
seriesWorkout.suggested_time
}}</span>
</div> </div>
<div> <div>
<i class="WMi-list"></i> <i class="WMi-list"></i>
@ -127,4 +123,4 @@ export default {
height: 100%; height: 100%;
justify-content: space-between; justify-content: space-between;
} }
</style> </style>

@ -64,7 +64,6 @@ function beforeLoad() {
const auth = to.meta && to.meta.auth ? to.meta.auth : false; const auth = to.meta && to.meta.auth ? to.meta.auth : false;
const roles = to.meta && to.meta.roles ? to.meta.roles : false; const roles = to.meta && to.meta.roles ? to.meta.roles : false;
const onlyWhenLoggedOut = to.matched.some((record) => record.meta.onlyWhenLoggedOut); const onlyWhenLoggedOut = to.matched.some((record) => record.meta.onlyWhenLoggedOut);
const loggedIn = TokenStorage.hasToken(); const loggedIn = TokenStorage.hasToken();
if (auth && !loggedIn) { if (auth && !loggedIn) {
router.push({ name: 'login', query: { redirect: to.fullPath } }); router.push({ name: 'login', query: { redirect: to.fullPath } });

@ -25,11 +25,11 @@ export default {
TokenStorage.removeToken(); TokenStorage.removeToken();
return true; return true;
}, },
async register({ commit }, data) { async register({}, data) {
let repository = new AuthRepository(); let repository = new AuthRepository();
const response = await repository.register(data); const response = await repository.register(data);
if (response) { if (response) {
setTokenHeader(commit, response); // setTokenHeader(commit, response);
return response; return response;
} }
}, },

@ -149,6 +149,7 @@
.WMi-glyph-39:before { content: '\e891'; } /* '' */ .WMi-glyph-39:before { content: '\e891'; } /* '' */
.WMi-glyph-44:before { content: '\e892'; } /* '' */ .WMi-glyph-44:before { content: '\e892'; } /* '' */
.WMi-glyph-41:before { content: '\e893'; } /* '' */ .WMi-glyph-41:before { content: '\e893'; } /* '' */
.WMi-microscope:before { content: '\e894'; } /* '' */
.WMi-glyph-43:before { content: '\e895'; } /* '' */ .WMi-glyph-43:before { content: '\e895'; } /* '' */
.WMi-gas-station:before { content: '\e896'; } /* '' */ .WMi-gas-station:before { content: '\e896'; } /* '' */
.WMi-glyph-45:before { content: '\e897'; } /* '' */ .WMi-glyph-45:before { content: '\e897'; } /* '' */
@ -336,6 +337,7 @@
.WMi-snowflake-o:before { content: '\e9a3'; } /* '' */ .WMi-snowflake-o:before { content: '\e9a3'; } /* '' */
.WMi-th-large:before { content: '\e9a4'; } /* '' */ .WMi-th-large:before { content: '\e9a4'; } /* '' */
.WMi-wrench-2:before { content: '\e9a5'; } /* '' */ .WMi-wrench-2:before { content: '\e9a5'; } /* '' */
.WMi-crown-2:before { content: '\e9a6'; } /* '' */
.WMi-shopping-cart:before { content: '\e9a9'; } /* '' */ .WMi-shopping-cart:before { content: '\e9a9'; } /* '' */
.WMi-cart:before { content: '\e9aa'; } /* '' */ .WMi-cart:before { content: '\e9aa'; } /* '' */
.WMi-communications:before { content: '\e9ab'; } /* '' */ .WMi-communications:before { content: '\e9ab'; } /* '' */
@ -425,6 +427,7 @@
.WMi-unlink:before { content: '\f127'; } /* '' */ .WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */ .WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */ .WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-mic:before { content: '\f130'; } /* '' */
.WMi-html5:before { content: '\f13b'; } /* '' */ .WMi-html5:before { content: '\f13b'; } /* '' */
.WMi-css3:before { content: '\f13c'; } /* '' */ .WMi-css3:before { content: '\f13c'; } /* '' */
.WMi-ellipsis:before { content: '\f141'; } /* '' */ .WMi-ellipsis:before { content: '\f141'; } /* '' */
@ -512,12 +515,15 @@
.WMi-furniture:before { content: '\f4b9'; } /* '' */ .WMi-furniture:before { content: '\f4b9'; } /* '' */
.WMi-user-check:before { content: '\f4fc'; } /* '' */ .WMi-user-check:before { content: '\f4fc'; } /* '' */
.WMi-brightness-1:before { content: '\f504'; } /* '' */ .WMi-brightness-1:before { content: '\f504'; } /* '' */
.WMi-balance-scale-left:before { content: '\f515'; } /* '' */
.WMi-chart-bar-1:before { content: '\f526'; } /* '' */ .WMi-chart-bar-1:before { content: '\f526'; } /* '' */
.WMi-view-carousel:before { content: '\f56c'; } /* '' */ .WMi-view-carousel:before { content: '\f56c'; } /* '' */
.WMi-view-dashboard:before { content: '\f56e'; } /* '' */ .WMi-view-dashboard:before { content: '\f56e'; } /* '' */
.WMi-view-day:before { content: '\f56f'; } /* '' */ .WMi-view-day:before { content: '\f56f'; } /* '' */
.WMi-view-quilt:before { content: '\f574'; } /* '' */ .WMi-view-quilt:before { content: '\f574'; } /* '' */
.WMi-wrench-3:before { content: '\f5b7'; } /* '' */ .WMi-wrench-3:before { content: '\f5b7'; } /* '' */
.WMi-book-reader:before { content: '\f5da'; } /* '' */
.WMi-hardware:before { content: '\f5eb'; } /* '' */
.WMi-Scientific:before { content: '\f5ed'; } /* '' */ .WMi-Scientific:before { content: '\f5ed'; } /* '' */
.WMi-advertisement-2:before { content: '\f5f7'; } /* '' */ .WMi-advertisement-2:before { content: '\f5f7'; } /* '' */
.WMi-advertisement-1:before { content: '\f5f8'; } /* '' */ .WMi-advertisement-1:before { content: '\f5f8'; } /* '' */
@ -528,7 +534,8 @@
.WMi-silver-medal:before { content: '\f5fe'; } /* '' */ .WMi-silver-medal:before { content: '\f5fe'; } /* '' */
.WMi-bronze-medal:before { content: '\f5ff'; } /* '' */ .WMi-bronze-medal:before { content: '\f5ff'; } /* '' */
.WMi-globe-1:before { content: '\f600'; } /* '' */ .WMi-globe-1:before { content: '\f600'; } /* '' */
.WMi-symbol:before { content: '\f601'; } /* '' */ .WMi-off-linear:before { content: '\f601'; } /* '' */
.WMi-wahing-machine:before { content: '\f602'; } /* '' */
.WMi-yoga-posture:before { content: '\f603'; } /* '' */ .WMi-yoga-posture:before { content: '\f603'; } /* '' */
.WMi-money-copy:before { content: '\f604'; } /* '' */ .WMi-money-copy:before { content: '\f604'; } /* '' */
.WMi-coffee-2:before { content: '\f605'; } /* '' */ .WMi-coffee-2:before { content: '\f605'; } /* '' */
@ -542,7 +549,7 @@
.WMi-video-camera-(1):before { content: '\f60e'; } /* '' */ .WMi-video-camera-(1):before { content: '\f60e'; } /* '' */
.WMi-headphones:before { content: '\f60f'; } /* '' */ .WMi-headphones:before { content: '\f60f'; } /* '' */
.WMi-shield-copy:before { content: '\f610'; } /* '' */ .WMi-shield-copy:before { content: '\f610'; } /* '' */
.WMi-shield-2:before { content: '\f611'; } /* '' */ .WMi-shield-linear:before { content: '\f611'; } /* '' */
.WMi-tags-alt:before { content: '\f612'; } /* '' */ .WMi-tags-alt:before { content: '\f612'; } /* '' */
.WMi-whatsapp:before { content: '\f613'; } /* '' */ .WMi-whatsapp:before { content: '\f613'; } /* '' */
.WMi-whatsapp-alt:before { content: '\f614'; } /* '' */ .WMi-whatsapp-alt:before { content: '\f614'; } /* '' */
@ -551,6 +558,25 @@
.WMi-verified:before { content: '\f617'; } /* '' */ .WMi-verified:before { content: '\f617'; } /* '' */
.WMi-tags-2:before { content: '\f618'; } /* '' */ .WMi-tags-2:before { content: '\f618'; } /* '' */
.WMi-mask:before { content: '\f619'; } /* '' */ .WMi-mask:before { content: '\f619'; } /* '' */
.WMi-heart-linear:before { content: '\f61a'; } /* '' */
.WMi-check-linear:before { content: '\f61b'; } /* '' */
.WMi-power-linear:before { content: '\f61c'; } /* '' */
.WMi-cancel-linear:before { content: '\f61d'; } /* '' */
.WMi-plus-linear:before { content: '\f61e'; } /* '' */
.WMi-bookmark-linear:before { content: '\f61f'; } /* '' */
.WMi-search-1:before { content: '\f620'; } /* '' */
.WMi-dress:before { content: '\f621'; } /* '' */
.WMi-heel:before { content: '\f622'; } /* '' */
.WMi-translate:before { content: '\f623'; } /* '' */
.WMi-translate-alt:before { content: '\f624'; } /* '' */
.WMi-right-chevron:before { content: '\f625'; } /* '' */
.WMi-left-chevron:before { content: '\f626'; } /* '' */
.WMi-mail-linear:before { content: '\f627'; } /* '' */
.WMi-user-linear:before { content: '\f62a'; } /* '' */
.WMi-phone-linear:before { content: '\f62c'; } /* '' */
.WMi-home-icon:before { content: '\f62d'; } /* '' */
.WMi-align:before { content: '\f62e'; } /* '' */
.WMi-rss-thin-svgrepo-com:before { content: '\f62f'; } /* '' */
.WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */ .WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */
.WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */ .WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */
.WMi-beauty-3:before { content: '\f665'; } /* '' */ .WMi-beauty-3:before { content: '\f665'; } /* '' */
@ -561,5 +587,6 @@
.WMi-view-parallel:before { content: '\f727'; } /* '' */ .WMi-view-parallel:before { content: '\f727'; } /* '' */
.WMi-cancel-2:before { content: '\f739'; } /* '' */ .WMi-cancel-2:before { content: '\f739'; } /* '' */
.WMi-truck-fast:before { content: '\f787'; } /* '' */ .WMi-truck-fast:before { content: '\f787'; } /* '' */
.WMi-glass-cheers:before { content: '\f79f'; } /* '' */
.WMi-heart-broken:before { content: '\f7a9'; } /* '' */ .WMi-heart-broken:before { content: '\f7a9'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */ .WMi-money-check-alt:before { content: '\f7c2'; } /* '' */

File diff suppressed because one or more lines are too long

@ -149,6 +149,7 @@
.WMi-glyph-39 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); } .WMi-glyph-39 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-44 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); } .WMi-glyph-44 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-41 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); } .WMi-glyph-41 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-microscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); } .WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); } .WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); } .WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
@ -336,6 +337,7 @@
.WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); } .WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
.WMi-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); } .WMi-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
.WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); } .WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
.WMi-crown-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a6;&nbsp;'); }
.WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); } .WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
.WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); } .WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); } .WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
@ -425,6 +427,7 @@
.WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); } .WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); }
.WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); } .WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); }
.WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); } .WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); }
.WMi-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf130;&nbsp;'); }
.WMi-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;&nbsp;'); } .WMi-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;&nbsp;'); }
.WMi-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;&nbsp;'); } .WMi-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;&nbsp;'); }
.WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); } .WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); }
@ -512,12 +515,15 @@
.WMi-furniture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); } .WMi-furniture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); } .WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); }
.WMi-brightness-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); } .WMi-brightness-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); }
.WMi-balance-scale-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf515;&nbsp;'); }
.WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); } .WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); }
.WMi-view-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56c;&nbsp;'); } .WMi-view-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56c;&nbsp;'); }
.WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); } .WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); }
.WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); } .WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); }
.WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); } .WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); }
.WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); } .WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-book-reader { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5da;&nbsp;'); }
.WMi-hardware { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5eb;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); } .WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); } .WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); }
.WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); } .WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); }
@ -528,7 +534,8 @@
.WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); } .WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); }
.WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); } .WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); }
.WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); } .WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); }
.WMi-symbol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); } .WMi-off-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); }
.WMi-wahing-machine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf602;&nbsp;'); }
.WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); } .WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); }
.WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); } .WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); }
.WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); } .WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); }
@ -542,7 +549,7 @@
.WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); } .WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); } .WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); }
.WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); } .WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); } .WMi-shield-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); }
.WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); } .WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); }
.WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); } .WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); } .WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); }
@ -551,6 +558,25 @@
.WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); } .WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); }
.WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); } .WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); }
.WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); } .WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); }
.WMi-heart-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61a;&nbsp;'); }
.WMi-check-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61b;&nbsp;'); }
.WMi-power-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61c;&nbsp;'); }
.WMi-cancel-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61d;&nbsp;'); }
.WMi-plus-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61e;&nbsp;'); }
.WMi-bookmark-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61f;&nbsp;'); }
.WMi-search-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf620;&nbsp;'); }
.WMi-dress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf621;&nbsp;'); }
.WMi-heel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf622;&nbsp;'); }
.WMi-translate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf623;&nbsp;'); }
.WMi-translate-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf624;&nbsp;'); }
.WMi-right-chevron { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf625;&nbsp;'); }
.WMi-left-chevron { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf626;&nbsp;'); }
.WMi-mail-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf627;&nbsp;'); }
.WMi-user-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62a;&nbsp;'); }
.WMi-phone-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62c;&nbsp;'); }
.WMi-home-icon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62d;&nbsp;'); }
.WMi-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62e;&nbsp;'); }
.WMi-rss-thin-svgrepo-com { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62f;&nbsp;'); }
.WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); } .WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); } .WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); } .WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
@ -561,5 +587,6 @@
.WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); } .WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); }
.WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); } .WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); }
.WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); } .WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-glass-cheers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf79f;&nbsp;'); }
.WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); } .WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); } .WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }

@ -160,6 +160,7 @@
.WMi-glyph-39 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); } .WMi-glyph-39 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
.WMi-glyph-44 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); } .WMi-glyph-44 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
.WMi-glyph-41 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); } .WMi-glyph-41 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
.WMi-microscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
.WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); } .WMi-glyph-43 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
.WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); } .WMi-gas-station { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
.WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); } .WMi-glyph-45 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
@ -347,6 +348,7 @@
.WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); } .WMi-snowflake-o { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
.WMi-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); } .WMi-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
.WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); } .WMi-wrench-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
.WMi-crown-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a6;&nbsp;'); }
.WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); } .WMi-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
.WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); } .WMi-cart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
.WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); } .WMi-communications { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
@ -436,6 +438,7 @@
.WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); } .WMi-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf127;&nbsp;'); }
.WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); } .WMi-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf129;&nbsp;'); }
.WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); } .WMi-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf12a;&nbsp;'); }
.WMi-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf130;&nbsp;'); }
.WMi-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;&nbsp;'); } .WMi-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13b;&nbsp;'); }
.WMi-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;&nbsp;'); } .WMi-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf13c;&nbsp;'); }
.WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); } .WMi-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf141;&nbsp;'); }
@ -523,12 +526,15 @@
.WMi-furniture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); } .WMi-furniture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4b9;&nbsp;'); }
.WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); } .WMi-user-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf4fc;&nbsp;'); }
.WMi-brightness-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); } .WMi-brightness-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf504;&nbsp;'); }
.WMi-balance-scale-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf515;&nbsp;'); }
.WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); } .WMi-chart-bar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf526;&nbsp;'); }
.WMi-view-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56c;&nbsp;'); } .WMi-view-carousel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56c;&nbsp;'); }
.WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); } .WMi-view-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56e;&nbsp;'); }
.WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); } .WMi-view-day { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf56f;&nbsp;'); }
.WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); } .WMi-view-quilt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf574;&nbsp;'); }
.WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); } .WMi-wrench-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5b7;&nbsp;'); }
.WMi-book-reader { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5da;&nbsp;'); }
.WMi-hardware { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5eb;&nbsp;'); }
.WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); } .WMi-Scientific { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ed;&nbsp;'); }
.WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); } .WMi-advertisement-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f7;&nbsp;'); }
.WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); } .WMi-advertisement-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5f8;&nbsp;'); }
@ -539,7 +545,8 @@
.WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); } .WMi-silver-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5fe;&nbsp;'); }
.WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); } .WMi-bronze-medal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf5ff;&nbsp;'); }
.WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); } .WMi-globe-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf600;&nbsp;'); }
.WMi-symbol { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); } .WMi-off-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf601;&nbsp;'); }
.WMi-wahing-machine { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf602;&nbsp;'); }
.WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); } .WMi-yoga-posture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf603;&nbsp;'); }
.WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); } .WMi-money-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf604;&nbsp;'); }
.WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); } .WMi-coffee-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf605;&nbsp;'); }
@ -553,7 +560,7 @@
.WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); } .WMi-video-camera-(1) { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60e;&nbsp;'); }
.WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); } .WMi-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf60f;&nbsp;'); }
.WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); } .WMi-shield-copy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf610;&nbsp;'); }
.WMi-shield-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); } .WMi-shield-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf611;&nbsp;'); }
.WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); } .WMi-tags-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf612;&nbsp;'); }
.WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); } .WMi-whatsapp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf613;&nbsp;'); }
.WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); } .WMi-whatsapp-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf614;&nbsp;'); }
@ -562,6 +569,25 @@
.WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); } .WMi-verified { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf617;&nbsp;'); }
.WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); } .WMi-tags-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf618;&nbsp;'); }
.WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); } .WMi-mask { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf619;&nbsp;'); }
.WMi-heart-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61a;&nbsp;'); }
.WMi-check-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61b;&nbsp;'); }
.WMi-power-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61c;&nbsp;'); }
.WMi-cancel-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61d;&nbsp;'); }
.WMi-plus-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61e;&nbsp;'); }
.WMi-bookmark-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf61f;&nbsp;'); }
.WMi-search-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf620;&nbsp;'); }
.WMi-dress { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf621;&nbsp;'); }
.WMi-heel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf622;&nbsp;'); }
.WMi-translate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf623;&nbsp;'); }
.WMi-translate-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf624;&nbsp;'); }
.WMi-right-chevron { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf625;&nbsp;'); }
.WMi-left-chevron { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf626;&nbsp;'); }
.WMi-mail-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf627;&nbsp;'); }
.WMi-user-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62a;&nbsp;'); }
.WMi-phone-linear { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62c;&nbsp;'); }
.WMi-home-icon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62d;&nbsp;'); }
.WMi-align { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62e;&nbsp;'); }
.WMi-rss-thin-svgrepo-com { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf62f;&nbsp;'); }
.WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); } .WMi-account-settings-variant-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf631;&nbsp;'); }
.WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); } .WMi-shape-rectangle-plus-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf65f;&nbsp;'); }
.WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); } .WMi-beauty-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf665;&nbsp;'); }
@ -572,5 +598,6 @@
.WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); } .WMi-view-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf727;&nbsp;'); }
.WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); } .WMi-cancel-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf739;&nbsp;'); }
.WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); } .WMi-truck-fast { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf787;&nbsp;'); }
.WMi-glass-cheers { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf79f;&nbsp;'); }
.WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); } .WMi-heart-broken { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7a9;&nbsp;'); }
.WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); } .WMi-money-check-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf7c2;&nbsp;'); }

@ -1,11 +1,11 @@
@font-face { @font-face {
font-family: 'fontello'; font-family: 'fontello';
src: url('../font/fontello.eot?11153377'); src: url('../font/fontello.eot?6286442');
src: url('../font/fontello.eot?11153377#iefix') format('embedded-opentype'), src: url('../font/fontello.eot?6286442#iefix') format('embedded-opentype'),
url('../font/fontello.woff2?11153377') format('woff2'), url('../font/fontello.woff2?6286442') format('woff2'),
url('../font/fontello.woff?11153377') format('woff'), url('../font/fontello.woff?6286442') format('woff'),
url('../font/fontello.ttf?11153377') format('truetype'), url('../font/fontello.ttf?6286442') format('truetype'),
url('../font/fontello.svg?11153377#fontello') format('svg'); url('../font/fontello.svg?6286442#fontello') format('svg');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@ -15,7 +15,7 @@
@media screen and (-webkit-min-device-pixel-ratio:0) { @media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face { @font-face {
font-family: 'fontello'; font-family: 'fontello';
src: url('../font/fontello.svg?11153377#fontello') format('svg'); src: url('../font/fontello.svg?6286442#fontello') format('svg');
} }
} }
*/ */
@ -204,6 +204,7 @@
.WMi-glyph-39:before { content: '\e891'; } /* '' */ .WMi-glyph-39:before { content: '\e891'; } /* '' */
.WMi-glyph-44:before { content: '\e892'; } /* '' */ .WMi-glyph-44:before { content: '\e892'; } /* '' */
.WMi-glyph-41:before { content: '\e893'; } /* '' */ .WMi-glyph-41:before { content: '\e893'; } /* '' */
.WMi-microscope:before { content: '\e894'; } /* '' */
.WMi-glyph-43:before { content: '\e895'; } /* '' */ .WMi-glyph-43:before { content: '\e895'; } /* '' */
.WMi-gas-station:before { content: '\e896'; } /* '' */ .WMi-gas-station:before { content: '\e896'; } /* '' */
.WMi-glyph-45:before { content: '\e897'; } /* '' */ .WMi-glyph-45:before { content: '\e897'; } /* '' */
@ -391,6 +392,7 @@
.WMi-snowflake-o:before { content: '\e9a3'; } /* '' */ .WMi-snowflake-o:before { content: '\e9a3'; } /* '' */
.WMi-th-large:before { content: '\e9a4'; } /* '' */ .WMi-th-large:before { content: '\e9a4'; } /* '' */
.WMi-wrench-2:before { content: '\e9a5'; } /* '' */ .WMi-wrench-2:before { content: '\e9a5'; } /* '' */
.WMi-crown-2:before { content: '\e9a6'; } /* '' */
.WMi-shopping-cart:before { content: '\e9a9'; } /* '' */ .WMi-shopping-cart:before { content: '\e9a9'; } /* '' */
.WMi-cart:before { content: '\e9aa'; } /* '' */ .WMi-cart:before { content: '\e9aa'; } /* '' */
.WMi-communications:before { content: '\e9ab'; } /* '' */ .WMi-communications:before { content: '\e9ab'; } /* '' */
@ -480,6 +482,7 @@
.WMi-unlink:before { content: '\f127'; } /* '' */ .WMi-unlink:before { content: '\f127'; } /* '' */
.WMi-info:before { content: '\f129'; } /* '' */ .WMi-info:before { content: '\f129'; } /* '' */
.WMi-attention-alt:before { content: '\f12a'; } /* '' */ .WMi-attention-alt:before { content: '\f12a'; } /* '' */
.WMi-mic:before { content: '\f130'; } /* '' */
.WMi-html5:before { content: '\f13b'; } /* '' */ .WMi-html5:before { content: '\f13b'; } /* '' */
.WMi-css3:before { content: '\f13c'; } /* '' */ .WMi-css3:before { content: '\f13c'; } /* '' */
.WMi-ellipsis:before { content: '\f141'; } /* '' */ .WMi-ellipsis:before { content: '\f141'; } /* '' */
@ -567,12 +570,15 @@
.WMi-furniture:before { content: '\f4b9'; } /* '' */ .WMi-furniture:before { content: '\f4b9'; } /* '' */
.WMi-user-check:before { content: '\f4fc'; } /* '' */ .WMi-user-check:before { content: '\f4fc'; } /* '' */
.WMi-brightness-1:before { content: '\f504'; } /* '' */ .WMi-brightness-1:before { content: '\f504'; } /* '' */
.WMi-balance-scale-left:before { content: '\f515'; } /* '' */
.WMi-chart-bar-1:before { content: '\f526'; } /* '' */ .WMi-chart-bar-1:before { content: '\f526'; } /* '' */
.WMi-view-carousel:before { content: '\f56c'; } /* '' */ .WMi-view-carousel:before { content: '\f56c'; } /* '' */
.WMi-view-dashboard:before { content: '\f56e'; } /* '' */ .WMi-view-dashboard:before { content: '\f56e'; } /* '' */
.WMi-view-day:before { content: '\f56f'; } /* '' */ .WMi-view-day:before { content: '\f56f'; } /* '' */
.WMi-view-quilt:before { content: '\f574'; } /* '' */ .WMi-view-quilt:before { content: '\f574'; } /* '' */
.WMi-wrench-3:before { content: '\f5b7'; } /* '' */ .WMi-wrench-3:before { content: '\f5b7'; } /* '' */
.WMi-book-reader:before { content: '\f5da'; } /* '' */
.WMi-hardware:before { content: '\f5eb'; } /* '' */
.WMi-Scientific:before { content: '\f5ed'; } /* '' */ .WMi-Scientific:before { content: '\f5ed'; } /* '' */
.WMi-advertisement-2:before { content: '\f5f7'; } /* '' */ .WMi-advertisement-2:before { content: '\f5f7'; } /* '' */
.WMi-advertisement-1:before { content: '\f5f8'; } /* '' */ .WMi-advertisement-1:before { content: '\f5f8'; } /* '' */
@ -583,7 +589,8 @@
.WMi-silver-medal:before { content: '\f5fe'; } /* '' */ .WMi-silver-medal:before { content: '\f5fe'; } /* '' */
.WMi-bronze-medal:before { content: '\f5ff'; } /* '' */ .WMi-bronze-medal:before { content: '\f5ff'; } /* '' */
.WMi-globe-1:before { content: '\f600'; } /* '' */ .WMi-globe-1:before { content: '\f600'; } /* '' */
.WMi-symbol:before { content: '\f601'; } /* '' */ .WMi-off-linear:before { content: '\f601'; } /* '' */
.WMi-wahing-machine:before { content: '\f602'; } /* '' */
.WMi-yoga-posture:before { content: '\f603'; } /* '' */ .WMi-yoga-posture:before { content: '\f603'; } /* '' */
.WMi-money-copy:before { content: '\f604'; } /* '' */ .WMi-money-copy:before { content: '\f604'; } /* '' */
.WMi-coffee-2:before { content: '\f605'; } /* '' */ .WMi-coffee-2:before { content: '\f605'; } /* '' */
@ -597,7 +604,7 @@
.WMi-video-camera-(1):before { content: '\f60e'; } /* '' */ .WMi-video-camera-(1):before { content: '\f60e'; } /* '' */
.WMi-headphones:before { content: '\f60f'; } /* '' */ .WMi-headphones:before { content: '\f60f'; } /* '' */
.WMi-shield-copy:before { content: '\f610'; } /* '' */ .WMi-shield-copy:before { content: '\f610'; } /* '' */
.WMi-shield-2:before { content: '\f611'; } /* '' */ .WMi-shield-linear:before { content: '\f611'; } /* '' */
.WMi-tags-alt:before { content: '\f612'; } /* '' */ .WMi-tags-alt:before { content: '\f612'; } /* '' */
.WMi-whatsapp:before { content: '\f613'; } /* '' */ .WMi-whatsapp:before { content: '\f613'; } /* '' */
.WMi-whatsapp-alt:before { content: '\f614'; } /* '' */ .WMi-whatsapp-alt:before { content: '\f614'; } /* '' */
@ -606,6 +613,25 @@
.WMi-verified:before { content: '\f617'; } /* '' */ .WMi-verified:before { content: '\f617'; } /* '' */
.WMi-tags-2:before { content: '\f618'; } /* '' */ .WMi-tags-2:before { content: '\f618'; } /* '' */
.WMi-mask:before { content: '\f619'; } /* '' */ .WMi-mask:before { content: '\f619'; } /* '' */
.WMi-heart-linear:before { content: '\f61a'; } /* '' */
.WMi-check-linear:before { content: '\f61b'; } /* '' */
.WMi-power-linear:before { content: '\f61c'; } /* '' */
.WMi-cancel-linear:before { content: '\f61d'; } /* '' */
.WMi-plus-linear:before { content: '\f61e'; } /* '' */
.WMi-bookmark-linear:before { content: '\f61f'; } /* '' */
.WMi-search-1:before { content: '\f620'; } /* '' */
.WMi-dress:before { content: '\f621'; } /* '' */
.WMi-heel:before { content: '\f622'; } /* '' */
.WMi-translate:before { content: '\f623'; } /* '' */
.WMi-translate-alt:before { content: '\f624'; } /* '' */
.WMi-right-chevron:before { content: '\f625'; } /* '' */
.WMi-left-chevron:before { content: '\f626'; } /* '' */
.WMi-mail-linear:before { content: '\f627'; } /* '' */
.WMi-user-linear:before { content: '\f62a'; } /* '' */
.WMi-phone-linear:before { content: '\f62c'; } /* '' */
.WMi-home-icon:before { content: '\f62d'; } /* '' */
.WMi-align:before { content: '\f62e'; } /* '' */
.WMi-rss-thin-svgrepo-com:before { content: '\f62f'; } /* '' */
.WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */ .WMi-account-settings-variant-1:before { content: '\f631'; } /* '' */
.WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */ .WMi-shape-rectangle-plus-2:before { content: '\f65f'; } /* '' */
.WMi-beauty-3:before { content: '\f665'; } /* '' */ .WMi-beauty-3:before { content: '\f665'; } /* '' */
@ -616,5 +642,6 @@
.WMi-view-parallel:before { content: '\f727'; } /* '' */ .WMi-view-parallel:before { content: '\f727'; } /* '' */
.WMi-cancel-2:before { content: '\f739'; } /* '' */ .WMi-cancel-2:before { content: '\f739'; } /* '' */
.WMi-truck-fast:before { content: '\f787'; } /* '' */ .WMi-truck-fast:before { content: '\f787'; } /* '' */
.WMi-glass-cheers:before { content: '\f79f'; } /* '' */
.WMi-heart-broken:before { content: '\f7a9'; } /* '' */ .WMi-heart-broken:before { content: '\f7a9'; } /* '' */
.WMi-money-check-alt:before { content: '\f7c2'; } /* '' */ .WMi-money-check-alt:before { content: '\f7c2'; } /* '' */

File diff suppressed because it is too large Load Diff

@ -306,6 +306,8 @@
<glyph glyph-name="glyph-41" unicode="&#xe893;" d="M504 850c-205 0-379-174-379-381 0-217 201-438 337-594 0 0 22-25 49-25l2 0c27 0 49 25 50 25 127 146 312 387 312 594 0 207-135 381-371 381z m12-933c-1-1-3-2-4-3-1 1-3 2-4 3l-16 19c-129 147-304 349-304 533 0 173 144 319 316 319 213 0 309-160 309-319 0-140-100-325-297-552z m-15 744c-103 0-187-84-187-187s84-188 187-188 188 84 188 188-84 187-188 187z m0-312c-69 0-126 57-126 126 0 69 56 125 125 125 69 0 125-56 125-125 0-69-55-126-124-126z" horiz-adv-x="1000" /> <glyph glyph-name="glyph-41" unicode="&#xe893;" d="M504 850c-205 0-379-174-379-381 0-217 201-438 337-594 0 0 22-25 49-25l2 0c27 0 49 25 50 25 127 146 312 387 312 594 0 207-135 381-371 381z m12-933c-1-1-3-2-4-3-1 1-3 2-4 3l-16 19c-129 147-304 349-304 533 0 173 144 319 316 319 213 0 309-160 309-319 0-140-100-325-297-552z m-15 744c-103 0-187-84-187-187s84-188 187-188 188 84 188 188-84 187-188 187z m0-312c-69 0-126 57-126 126 0 69 56 125 125 125 69 0 125-56 125-125 0-69-55-126-124-126z" horiz-adv-x="1000" />
<glyph glyph-name="microscope" unicode="&#xe894;" d="M313 225c-35 0-63 28-63 63v437c0 35 28 63 63 63v31c0 17 14 31 31 31h125c17 0 31-14 31-31v-31c35 0 63-28 63-63v-437c0-35-28-63-63-63h-23v-31c0-17-14-31-32-31h-78c-17 0-31 14-31 31v31h-23z m593-250c52 0 94-42 94-94 0-17-14-31-31-31h-938c-17 0-31 14-31 31 0 52 42 94 94 94h531c138 0 250 112 250 250s-112 250-250 250v125c207 0 375-168 375-375 0-96-37-184-96-250h2z m-703 63c-8 0-15 7-15 15v31c0 9 7 16 15 16h406c9 0 16-7 16-16v-31c0-8-7-15-16-15h-406z" horiz-adv-x="1000" />
<glyph glyph-name="glyph-43" unicode="&#xe895;" d="M938 445l-80 18c-6 20-15 39-24 57l43 72c17 26 25 64 0 89l-44 44c-24 24-65 20-90 3l-71-45c-18 9-37 17-57 24l-18 81c-5 30-31 62-66 62l-62 0c-35 0-56-33-63-62l-20-81c-21-6-41-15-61-25l-72 46c-25 17-66 21-90-3l-44-44c-25-25-17-63 0-89l45-76c-8-17-16-35-22-53l-80-18c-30-6-62-32-62-66l0-63c0-34 33-55 63-62l81-20c5-18 12-34 20-50l-45-76c-17-26-25-64 0-89l44-44c24-25 65-20 90-3l73 46c19-10 39-19 61-26l20-80c7-29 28-62 62-62l63 0c34 0 60 32 66 62l18 81c19 7 38 15 56 24l71-45c25-17 66-22 90 3l44 44c25 25 17 63 0 89l-43 72c9 17 16 35 22 54l82 20c29 7 62 28 62 62l0 63c0 34-32 60-62 66z m0-124c-3-2-8-5-14-6l-116-29-11-33c-5-15-11-30-19-45l-15-31 61-102c4-6 6-11 6-15l-41-41c-4 1-8 3-11 5l-103 65-32-16c-15-8-31-15-46-20l-35-11-25-117c-1-6-5-11-7-13l-56 0c-2 3-5 8-6 14l-29 116-33 10c-18 6-35 13-51 22l-32 16-103-65c-5-3-9-5-13-5l-41 40c0 4 2 9 6 14l63 107-15 30c-7 15-12 28-17 42l-11 33-114 28c-8 2-13 5-15 7l0 58c0 0 0 0 0 0 1 0 6 3 10 4l118 26 11 35c4 14 10 28 18 44l15 31-63 105c-4 7-6 12-6 16l41 41c4-2 8-3 11-5l104-66 33 16c16 9 33 16 50 22l33 10 29 114c2 8 4 13 6 16l58 0c0-1 4-7 5-11l26-119 34-11c16-5 32-11 48-20l32-16 100 64c5 3 9 4 13 4l41-39c0-4-2-9-6-14l-61-103 15-31c9-17 15-33 20-48l11-35 116-25c6-2 12-6 13-8l0-55z m-438 217c-103 0-188-84-188-188 0-103 85-188 188-188 104 0 189 85 189 188 0 104-85 188-189 188z m0-313c-69 0-125 56-125 125 0 69 56 125 125 125 69 0 125-56 125-125 0-69-56-125-125-125z" horiz-adv-x="1000" /> <glyph glyph-name="glyph-43" unicode="&#xe895;" d="M938 445l-80 18c-6 20-15 39-24 57l43 72c17 26 25 64 0 89l-44 44c-24 24-65 20-90 3l-71-45c-18 9-37 17-57 24l-18 81c-5 30-31 62-66 62l-62 0c-35 0-56-33-63-62l-20-81c-21-6-41-15-61-25l-72 46c-25 17-66 21-90-3l-44-44c-25-25-17-63 0-89l45-76c-8-17-16-35-22-53l-80-18c-30-6-62-32-62-66l0-63c0-34 33-55 63-62l81-20c5-18 12-34 20-50l-45-76c-17-26-25-64 0-89l44-44c24-25 65-20 90-3l73 46c19-10 39-19 61-26l20-80c7-29 28-62 62-62l63 0c34 0 60 32 66 62l18 81c19 7 38 15 56 24l71-45c25-17 66-22 90 3l44 44c25 25 17 63 0 89l-43 72c9 17 16 35 22 54l82 20c29 7 62 28 62 62l0 63c0 34-32 60-62 66z m0-124c-3-2-8-5-14-6l-116-29-11-33c-5-15-11-30-19-45l-15-31 61-102c4-6 6-11 6-15l-41-41c-4 1-8 3-11 5l-103 65-32-16c-15-8-31-15-46-20l-35-11-25-117c-1-6-5-11-7-13l-56 0c-2 3-5 8-6 14l-29 116-33 10c-18 6-35 13-51 22l-32 16-103-65c-5-3-9-5-13-5l-41 40c0 4 2 9 6 14l63 107-15 30c-7 15-12 28-17 42l-11 33-114 28c-8 2-13 5-15 7l0 58c0 0 0 0 0 0 1 0 6 3 10 4l118 26 11 35c4 14 10 28 18 44l15 31-63 105c-4 7-6 12-6 16l41 41c4-2 8-3 11-5l104-66 33 16c16 9 33 16 50 22l33 10 29 114c2 8 4 13 6 16l58 0c0-1 4-7 5-11l26-119 34-11c16-5 32-11 48-20l32-16 100 64c5 3 9 4 13 4l41-39c0-4-2-9-6-14l-61-103 15-31c9-17 15-33 20-48l11-35 116-25c6-2 12-6 13-8l0-55z m-438 217c-103 0-188-84-188-188 0-103 85-188 188-188 104 0 189 85 189 188 0 104-85 188-189 188z m0-313c-69 0-125 56-125 125 0 69 56 125 125 125 69 0 125-56 125-125 0-69-56-125-125-125z" horiz-adv-x="1000" />
<glyph glyph-name="gas-station" unicode="&#xe896;" d="M750 433c-23 0-42 19-42 42s19 42 42 42 42-19 42-42-19-42-42-42m-250 0h-250v209h250m324-93l0 0-155 155-44-44 88-88c-39-14-67-52-67-97 0-57 47-104 104-104 15 0 29 3 42 9v-301c0-23-19-41-42-41s-42 18-42 41v188c0 46-37 83-83 83h-42v292c0 46-37 83-83 83h-250c-46 0-83-37-83-83v-667h416v313h63v-209c0-57 47-104 104-104s104 47 104 104v396c0 29-11 55-30 74z" horiz-adv-x="1000" /> <glyph glyph-name="gas-station" unicode="&#xe896;" d="M750 433c-23 0-42 19-42 42s19 42 42 42 42-19 42-42-19-42-42-42m-250 0h-250v209h250m324-93l0 0-155 155-44-44 88-88c-39-14-67-52-67-97 0-57 47-104 104-104 15 0 29 3 42 9v-301c0-23-19-41-42-41s-42 18-42 41v188c0 46-37 83-83 83h-42v292c0 46-37 83-83 83h-250c-46 0-83-37-83-83v-667h416v313h63v-209c0-57 47-104 104-104s104 47 104 104v396c0 29-11 55-30 74z" horiz-adv-x="1000" />
@ -680,6 +682,8 @@
<glyph glyph-name="wrench-2" unicode="&#xe9a5;" d="M992 637c23-93-2-195-74-267-78-78-190-100-288-67l-417-416c-48-49-128-49-176 0s-49 128 0 176l416 417c-32 98-10 210 67 288 72 72 174 97 267 74 17-5 24-27 11-40l-145-145 22-132 132-23 145 146c13 13 35 7 40-11z m-867-709c26 0 47 21 47 47 0 26-21 47-47 47s-47-21-47-47c0-26 21-47 47-47z" horiz-adv-x="1000" /> <glyph glyph-name="wrench-2" unicode="&#xe9a5;" d="M992 637c23-93-2-195-74-267-78-78-190-100-288-67l-417-416c-48-49-128-49-176 0s-49 128 0 176l416 417c-32 98-10 210 67 288 72 72 174 97 267 74 17-5 24-27 11-40l-145-145 22-132 132-23 145 146c13 13 35 7 40-11z m-867-709c26 0 47 21 47 47 0 26-21 47-47 47s-47-21-47-47c0-26 21-47 47-47z" horiz-adv-x="1000" />
<glyph glyph-name="crown-2" unicode="&#xe9a6;" d="M208 183l-83 459 229-292 146 292 146-292 229 292-83-459h-584m584-125c0-23-19-41-42-41h-500c-23 0-42 18-42 41v42h584v-42z" horiz-adv-x="1000" />
<glyph glyph-name="shopping-cart" unicode="&#xe9a9;" d="M1032 262c-5-22-24-37-46-37h-573l13-62h524c30 0 53-28 46-58l-11-47c37-18 62-55 62-99 0-60-49-109-109-109s-110 49-110 109c0 31 13 59 33 79h-409c20-20 32-48 32-79 0-60-49-109-109-109s-109 49-109 109c0 41 22 76 55 95l-138 671h-136c-26 0-47 21-47 47v31c0 26 21 47 47 47h200c22 0 42-16 46-37l18-88h767c30 0 53-28 46-57z" horiz-adv-x="1125" /> <glyph glyph-name="shopping-cart" unicode="&#xe9a9;" d="M1032 262c-5-22-24-37-46-37h-573l13-62h524c30 0 53-28 46-58l-11-47c37-18 62-55 62-99 0-60-49-109-109-109s-110 49-110 109c0 31 13 59 33 79h-409c20-20 32-48 32-79 0-60-49-109-109-109s-109 49-109 109c0 41 22 76 55 95l-138 671h-136c-26 0-47 21-47 47v31c0 26 21 47 47 47h200c22 0 42-16 46-37l18-88h767c30 0 53-28 46-57z" horiz-adv-x="1125" />
<glyph glyph-name="cart" unicode="&#xe9aa;" d="M369 83c-64 0-116-52-116-116 0-65 52-117 116-117 65 0 117 52 117 117 0 64-52 116-117 116z m0-200c-46 0-83 38-83 84 0 46 37 83 83 83 46 0 84-37 84-83 0-46-38-84-84-84z m400 200c-64 0-116-52-116-116 0-65 52-117 116-117 65 0 117 52 117 117 0 64-52 116-117 116z m0-200c-46 0-83 38-83 84 0 46 37 83 83 83 46 0 84-37 84-83 0-46-38-84-84-84z m212 734h-810l-52 220c-2 8-9 13-16 13h-84c-9 0-16-7-16-17s7-16 16-16h71l147-621c1-7 8-13 16-13h633c9 0 17 8 17 17s-8 17-17 17h-620l-24 100h676c9-1 17 6 18 15s-6 17-15 18c-1 0-2 0-3 0h-684l-23 100h738c9 0 17 8 17 17s-8 16-17 16h-746l-24 100h802c9 0 16 8 16 17s-7 17-16 17z" horiz-adv-x="1000" /> <glyph glyph-name="cart" unicode="&#xe9aa;" d="M369 83c-64 0-116-52-116-116 0-65 52-117 116-117 65 0 117 52 117 117 0 64-52 116-117 116z m0-200c-46 0-83 38-83 84 0 46 37 83 83 83 46 0 84-37 84-83 0-46-38-84-84-84z m400 200c-64 0-116-52-116-116 0-65 52-117 116-117 65 0 117 52 117 117 0 64-52 116-117 116z m0-200c-46 0-83 38-83 84 0 46 37 83 83 83 46 0 84-37 84-83 0-46-38-84-84-84z m212 734h-810l-52 220c-2 8-9 13-16 13h-84c-9 0-16-7-16-17s7-16 16-16h71l147-621c1-7 8-13 16-13h633c9 0 17 8 17 17s-8 17-17 17h-620l-24 100h676c9-1 17 6 18 15s-6 17-15 18c-1 0-2 0-3 0h-684l-23 100h738c9 0 17 8 17 17s-8 16-17 16h-746l-24 100h802c9 0 16 8 16 17s-7 17-16 17z" horiz-adv-x="1000" />
@ -858,6 +862,8 @@
<glyph glyph-name="attention-alt" unicode="&#xf12a;" d="M286 154v-125q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v125q0 14 11 25t25 10h143q15 0 25-10t11-25z m17 589l-16-429q-1-14-12-25t-25-10h-143q-14 0-25 10t-12 25l-15 429q-1 14 10 25t24 11h179q14 0 25-11t10-25z" horiz-adv-x="357.1" /> <glyph glyph-name="attention-alt" unicode="&#xf12a;" d="M286 154v-125q0-15-11-25t-25-11h-143q-14 0-25 11t-11 25v125q0 14 11 25t25 10h143q15 0 25-10t11-25z m17 589l-16-429q-1-14-12-25t-25-10h-143q-14 0-25 10t-12 25l-15 429q-1 14 10 25t24 11h179q14 0 25-11t10-25z" horiz-adv-x="357.1" />
<glyph glyph-name="mic" unicode="&#xf130;" d="M643 457v-71q0-124-82-215t-204-104v-74h143q15 0 25-11t11-25-11-25-25-11h-357q-15 0-25 11t-11 25 11 25 25 11h143v74q-121 13-204 104t-82 215v71q0 15 11 25t25 11 25-11 10-25v-71q0-103 74-177t176-73 177 73 73 177v71q0 15 11 25t25 11 25-11 11-25z m-143 214v-285q0-74-52-126t-127-53-126 53-52 126v285q0 74 52 127t126 52 127-52 52-127z" horiz-adv-x="642.9" />
<glyph glyph-name="html5" unicode="&#xf13b;" d="M631 517l9 98h-494l26-298h342l-12-128-110-29-110 29-7 78h-97l12-155 202-55h2v0l200 55 28 304h-359l-8 101h376z m-631 262h786l-72-803-322-90-321 90z" horiz-adv-x="785.7" /> <glyph glyph-name="html5" unicode="&#xf13b;" d="M631 517l9 98h-494l26-298h342l-12-128-110-29-110 29-7 78h-97l12-155 202-55h2v0l200 55 28 304h-359l-8 101h376z m-631 262h786l-72-803-322-90-321 90z" horiz-adv-x="785.7" />
<glyph glyph-name="css3" unicode="&#xf13c;" d="M154 779h839l-148-744-449-149-389 149 39 198h166l-16-82 235-89 272 89 38 190h-675l33 165h674l22 107h-674z" horiz-adv-x="1000" /> <glyph glyph-name="css3" unicode="&#xf13c;" d="M154 779h839l-148-744-449-149-389 149 39 198h166l-16-82 235-89 272 89 38 190h-675l33 165h674l22 107h-674z" horiz-adv-x="1000" />
@ -1032,6 +1038,8 @@
<glyph glyph-name="brightness-1" unicode="&#xf504;" d="M375 767c-44 0-85-7-125-19 169-53 292-210 292-398 0-187-123-345-292-398 40-12 81-19 125-19 230 0 417 187 417 417s-187 417-417 417z" horiz-adv-x="1000" /> <glyph glyph-name="brightness-1" unicode="&#xf504;" d="M375 767c-44 0-85-7-125-19 169-53 292-210 292-398 0-187-123-345-292-398 40-12 81-19 125-19 230 0 417 187 417 417s-187 417-417 417z" horiz-adv-x="1000" />
<glyph glyph-name="balance-scale-left" unicode="&#xf515;" d="M1031-25c18 0 32-14 32-31v-63c0-17-14-31-32-31h-437c-17 0-31 14-31 31v670c-9 4-18 8-26 14l-277-93c-17-6-34 3-40 19l-20 60c-5 16 4 34 20 39l251 84c-1 7-2 13-2 20 0 86 70 156 156 156 58 0 108-32 135-79l230 77c17 6 34-3 40-19l20-60c5-16-4-34-20-39l-258-87c-14-41-45-75-84-92v-576h343z m219 281c0-86-112-156-250-156s-250 70-250 156h0c0 31-4 14 166 355 35 69 133 69 168 0 169-338 166-323 166-355z m-391 32h282l-141 281z m-525 73c169-338 166-323 166-355h0c0-86-112-156-250-156s-250 70-250 156h0c0 31-4 14 166 355 35 69 133 69 168 0z m-225-323h282l-141 281z" horiz-adv-x="1250" />
<glyph glyph-name="chart-bar-1" unicode="&#xf526;" d="M0-50v557q0 21 15 36t36 15h122q21 0 36-15t15-36v-557q0-21-15-37t-36-15h-122q-21 0-36 15t-15 37z m362 0v379q0 21 15 36t36 15h122q21 0 36-15t15-36v-379q0-21-15-36t-36-15h-122q-21 0-36 15t-15 36z m352 0v801q0 21 14 36t36 15h122q21 0 36-15t15-36v-801q0-22-15-37t-36-15h-122q-21 0-36 15t-14 37z" horiz-adv-x="937.5" /> <glyph glyph-name="chart-bar-1" unicode="&#xf526;" d="M0-50v557q0 21 15 36t36 15h122q21 0 36-15t15-36v-557q0-21-15-37t-36-15h-122q-21 0-36 15t-15 37z m362 0v379q0 21 15 36t36 15h122q21 0 36-15t15-36v-379q0-21-15-36t-36-15h-122q-21 0-36 15t-15 36z m352 0v801q0 21 14 36t36 15h122q21 0 36-15t15-36v-801q0-22-15-37t-36-15h-122q-21 0-36 15t-14 37z" horiz-adv-x="937.5" />
<glyph glyph-name="view-carousel" unicode="&#xf56c;" d="M750 600v-458h167v458m-834-458h167v458h-167m209-542h416v625h-416v-625z" horiz-adv-x="1000" /> <glyph glyph-name="view-carousel" unicode="&#xf56c;" d="M750 600v-458h167v458m-834-458h167v458h-167m209-542h416v625h-416v-625z" horiz-adv-x="1000" />
@ -1044,6 +1052,10 @@
<glyph glyph-name="wrench-3" unicode="&#xf5b7;" d="M946 58l-379 380c37 95 16 208-63 287-83 83-208 100-308 54l179-179-125-125-183 179c-50-100-29-225 54-308 79-79 192-100 287-63l380-379c16-17 41-17 58 0l96 96c21 17 21 46 4 58z" horiz-adv-x="1000" /> <glyph glyph-name="wrench-3" unicode="&#xf5b7;" d="M946 58l-379 380c37 95 16 208-63 287-83 83-208 100-308 54l179-179-125-125-183 179c-50-100-29-225 54-308 79-79 192-100 287-63l380-379c16-17 41-17 58 0l96 96c21 17 21 46 4 58z" horiz-adv-x="1000" />
<glyph glyph-name="book-reader" unicode="&#xf5da;" d="M688 663c0-104-84-188-188-188s-187 84-187 188 83 187 187 187 188-84 188-187z m-232-284c8-5 13-13 13-22v-481c0-20-22-32-40-23-119 60-292 76-377 81-29 1-52 25-52 53v435c0 31 27 55 58 53 95-5 282-25 398-96z m486 96c32 2 58-22 58-53v-435c0-28-23-52-52-53-85-5-257-21-377-81-18-9-40 3-40 23v480c0 10 5 18 13 23 116 71 303 91 398 96z" horiz-adv-x="1000" />
<glyph glyph-name="hardware" unicode="&#xf5eb;" d="M941 457h-354c34 36 67 88 67 159 0 69 16 91 30 102 22 17 61 25 129 25 16 0 29 13 29 29s-13 29-29 29c-84 0-132-11-165-37-46-37-52-99-52-148 0-91-81-145-104-159h-433c-33 0-59-26-59-58v-442c0-32 26-58 59-58h882c33 0 59 26 59 58v442c0 32-26 58-59 58z m-316-125h31c16 0 30-13 30-29s-14-29-30-29h-31c-16 0-29 13-29 29s13 29 29 29z m-78-125h31c16 0 29-13 29-29s-13-29-29-29h-31c-16 0-29 13-29 29s13 29 29 29z m-78 125h31c16 0 29-13 29-29s-13-29-29-29h-31c-16 0-29 13-29 29s13 29 29 29z m-47-125c16 0 29-13 29-29s-13-29-29-29h-31c-17 0-30 13-30 29s13 29 30 29z m-109 125h31c16 0 29-13 29-29s-13-29-29-29h-31c-17 0-30 13-30 29s13 29 30 29z m-157 0h32c16 0 29-13 29-29s-13-29-29-29h-32c-16 0-29 13-29 29s13 29 29 29z m32-308h-32c-16 0-29 13-29 29s13 29 29 29h32c16 0 29-13 29-29s-13-29-29-29z m46 125c-16 0-29 13-29 29s13 29 29 29h32c16 0 29-13 29-29s-13-29-29-29z m454-125h-375c-17 0-30 13-30 29s13 29 30 29h375c16 0 29-13 29-29s-13-29-29-29z m46 125h-31c-16 0-29 13-29 29s13 29 29 29h31c17 0 30-13 30-29s-13-29-30-29z m18 154c0 16 13 29 29 29h32c16 0 29-13 29-29s-13-29-29-29h-32c-16 0-29 13-29 29z m92-279h-31c-17 0-30 13-30 29s13 29 30 29h31c16 0 29-13 29-29s-13-29-29-29z" horiz-adv-x="1000" />
<glyph glyph-name="Scientific" unicode="&#xf5ed;" d="M117 262l118 118 105 20c135 183 391 274 484 274 0-93-91-349-274-484l-20-105-118-118-30 147c-59 0-59 0-88 30-30 29-30 29-30 88l-147 30m118-118l59-59-111-111h-59v59l111 111m-59 59l52-8-103-102v60l51 50m169-125l8-52-50-51h-60l102 103m197 376c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z" horiz-adv-x="1000" /> <glyph glyph-name="Scientific" unicode="&#xf5ed;" d="M117 262l118 118 105 20c135 183 391 274 484 274 0-93-91-349-274-484l-20-105-118-118-30 147c-59 0-59 0-88 30-30 29-30 29-30 88l-147 30m118-118l59-59-111-111h-59v59l111 111m-59 59l52-8-103-102v60l51 50m169-125l8-52-50-51h-60l102 103m197 376c-35 0-63-28-63-62s28-63 63-63 62 28 62 63-28 62-62 62z" horiz-adv-x="1000" />
<glyph glyph-name="advertisement-2" unicode="&#xf5f7;" d="M893 493h-36v249c0 20-16 36-35 36-5 0-9-1-13-3l-527-211h-175c-59 0-107-48-107-107v-143c0-59 48-107 107-107h2v-249c0-20 16-36 35-36h143c20 0 36 16 36 36v233l486-195c4-2 8-3 13-3 19 0 35 17 35 36v250h36c59 0 107 48 107 107s-48 107-107 107z" horiz-adv-x="1000" /> <glyph glyph-name="advertisement-2" unicode="&#xf5f7;" d="M893 493h-36v249c0 20-16 36-35 36-5 0-9-1-13-3l-527-211h-175c-59 0-107-48-107-107v-143c0-59 48-107 107-107h2v-249c0-20 16-36 35-36h143c20 0 36 16 36 36v233l486-195c4-2 8-3 13-3 19 0 35 17 35 36v250h36c59 0 107 48 107 107s-48 107-107 107z" horiz-adv-x="1000" />
@ -1064,7 +1076,9 @@
<glyph glyph-name="globe-1" unicode="&#xf600;" d="M500 850c-276 0-500-224-500-500s224-500 500-500 500 224 500 500-224 500-500 500z m0-917c-113 0-216 46-292 120v68c0 20 9 32 20 47 10 15 22 33 22 57 0 40-36 44-55 46-14 2-27 3-34 10-6 6-12 16-18 27-12 22-28 50-58 68 13 218 194 391 415 391 11 0 23-1 34-2-2-1-5-3-7-4-4-4-6-10-6-16 0-5 3-11 7-15 7-6 9-10 9-10 0-1-4-7-26-18-35-18-75-54-81-92-3-18 2-34 14-46 4-3 9-6 14-6 29 0 52 11 73 21 22 11 43 21 73 21 82 0 146-18 146-42 0-8-3-11-4-12-10-10-45-9-75-9-8 0-17 1-25 1-28 0-37 4-47 8-12 6-26 12-57 12-35 0-98-6-140-47-34-34-30-75-28-102 0-6 1-12 1-17 0-41 42-63 83-63 64 0 119-12 125-21 0-23 7-39 13-52 5-10 8-19 8-31 0-9-1-11-6-17-7-10-15-21-15-45 0-44 43-92 47-98 4-4 10-7 16-7 2 0 3 1 5 1 12 3 120 33 120 104 0 22 7 28 17 37 10 9 25 21 25 46 0 17 29 60 57 90 4 4 5 10 5 16-1 6-3 11-8 15-16 12-61 53-76 93 9-5 19-12 28-21 7-6 16-10 26-9 17 1 37 14 56 31 10-36 16-73 16-111 0-230-187-417-417-417z" horiz-adv-x="1000" /> <glyph glyph-name="globe-1" unicode="&#xf600;" d="M500 850c-276 0-500-224-500-500s224-500 500-500 500 224 500 500-224 500-500 500z m0-917c-113 0-216 46-292 120v68c0 20 9 32 20 47 10 15 22 33 22 57 0 40-36 44-55 46-14 2-27 3-34 10-6 6-12 16-18 27-12 22-28 50-58 68 13 218 194 391 415 391 11 0 23-1 34-2-2-1-5-3-7-4-4-4-6-10-6-16 0-5 3-11 7-15 7-6 9-10 9-10 0-1-4-7-26-18-35-18-75-54-81-92-3-18 2-34 14-46 4-3 9-6 14-6 29 0 52 11 73 21 22 11 43 21 73 21 82 0 146-18 146-42 0-8-3-11-4-12-10-10-45-9-75-9-8 0-17 1-25 1-28 0-37 4-47 8-12 6-26 12-57 12-35 0-98-6-140-47-34-34-30-75-28-102 0-6 1-12 1-17 0-41 42-63 83-63 64 0 119-12 125-21 0-23 7-39 13-52 5-10 8-19 8-31 0-9-1-11-6-17-7-10-15-21-15-45 0-44 43-92 47-98 4-4 10-7 16-7 2 0 3 1 5 1 12 3 120 33 120 104 0 22 7 28 17 37 10 9 25 21 25 46 0 17 29 60 57 90 4 4 5 10 5 16-1 6-3 11-8 15-16 12-61 53-76 93 9-5 19-12 28-21 7-6 16-10 26-9 17 1 37 14 56 31 10-36 16-73 16-111 0-230-187-417-417-417z" horiz-adv-x="1000" />
<glyph glyph-name="symbol" unicode="&#xf601;" d="M458 517c-17 0-31 14-31 31v271c0 17 14 31 31 31s32-14 32-31v-271c0-17-14-31-32-31z m0 0m0-667c-252 0-458 206-458 458 0 192 121 365 302 431 16 6 34-2 40-18 6-16-2-34-19-40-156-57-260-207-260-373 0-218 177-396 395-396 219 0 396 178 396 396 0 166-105 316-260 373-17 6-25 24-19 40 6 16 24 24 40 18 180-66 302-239 302-431 0-252-206-458-459-458z m0 0" horiz-adv-x="1000" /> <glyph glyph-name="off-linear" unicode="&#xf601;" d="M458 517c-17 0-31 14-31 31v271c0 17 14 31 31 31s32-14 32-31v-271c0-17-14-31-32-31z m0 0m0-667c-252 0-458 206-458 458 0 192 121 365 302 431 16 6 34-2 40-18 6-16-2-34-19-40-156-57-260-207-260-373 0-218 177-396 395-396 219 0 396 178 396 396 0 166-105 316-260 373-17 6-25 24-19 40 6 16 24 24 40 18 180-66 302-239 302-431 0-252-206-458-459-458z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="wahing-machine" unicode="&#xf602;" d="M872 629v100c0 67-54 121-121 121h-516c-67 0-121-54-121-121v-100z m-185 142h36c17 0 31-14 31-31s-14-32-31-32h-36c-17 0-31 14-31 32s14 31 31 31z m-129 0h35c17 0 31-14 31-31s-14-32-31-32h-35c-17 0-31 14-31 32s14 31 31 31z m-294 0h151c17 0 31-14 31-31s-14-32-31-32h-151c-18 0-32 14-32 32s14 31 32 31z m-150-204v-583c0-66 54-120 121-120h516c67 0 121 54 121 120v583z m379-605c-139 0-253 114-253 253s114 253 253 253 253-113 253-253-113-253-253-253z" horiz-adv-x="1000" />
<glyph glyph-name="yoga-posture" unicode="&#xf603;" d="M502 533c1 0 1 0 1 0 0 0 0 0 0 0 88 0 159 71 159 158 0 88-71 159-159 159 0 0 0 0 0 0 0 0 0 0-1 0-87 0-158-71-158-159 0-87 71-158 158-158z m399-325l-179 130-57 138c-10 27-36 42-63 42l0 0h-102-102l0 0c-27 0-52-15-63-42l-57-138-179-130c-30-21-36-63-14-93 13-18 33-27 54-27 13 0 27 4 39 12l193 141-5-51-183-185c-25-27-32-66-18-99 15-34 48-56 84-56h88c-23 20-37 51-37 85 0 61 46 111 104 111 0 0 67 0 99 0 33 0 59-27 59-27h-158c-44 0-79-38-79-84 0-47 35-85 79-85h153c1 0 3 0 5 1h185c36 0 70 22 84 55 14 34 7 73-18 99l-179 186h0l-5 50 193-141c12-8 26-12 40-12 20 0 41 9 54 27 21 30 15 72-15 93z" horiz-adv-x="1000" /> <glyph glyph-name="yoga-posture" unicode="&#xf603;" d="M502 533c1 0 1 0 1 0 0 0 0 0 0 0 88 0 159 71 159 158 0 88-71 159-159 159 0 0 0 0 0 0 0 0 0 0-1 0-87 0-158-71-158-159 0-87 71-158 158-158z m399-325l-179 130-57 138c-10 27-36 42-63 42l0 0h-102-102l0 0c-27 0-52-15-63-42l-57-138-179-130c-30-21-36-63-14-93 13-18 33-27 54-27 13 0 27 4 39 12l193 141-5-51-183-185c-25-27-32-66-18-99 15-34 48-56 84-56h88c-23 20-37 51-37 85 0 61 46 111 104 111 0 0 67 0 99 0 33 0 59-27 59-27h-158c-44 0-79-38-79-84 0-47 35-85 79-85h153c1 0 3 0 5 1h185c36 0 70 22 84 55 14 34 7 73-18 99l-179 186h0l-5 50 193-141c12-8 26-12 40-12 20 0 41 9 54 27 21 30 15 72-15 93z" horiz-adv-x="1000" />
@ -1092,7 +1106,7 @@
<glyph glyph-name="shield-copy" unicode="&#xf610;" d="M237 526c4-48 13-112 34-180 43-145 121-248 229-306 109 58 186 161 229 306 21 68 30 132 34 180l-263 131z m704 90c0 11-7 20-16 25l-412 206c-8 4-18 4-26 0l-412-206c-9-5-16-14-16-25 0-6-7-148 41-314 29-98 72-184 126-255 69-89 158-155 264-195 3-1 7-2 10-2s7 1 10 2c106 40 195 106 264 195 55 71 97 157 126 255 48 166 41 308 41 314z m-428-635c-4-2-9-3-13-3s-9 1-13 3c-130 64-222 181-272 348-25 83-34 161-38 212 0 12 6 23 17 28l293 147c8 4 18 4 26 0l294-147c10-5 16-16 16-28-3-51-13-129-38-212-50-167-142-284-272-348z" horiz-adv-x="1000" /> <glyph glyph-name="shield-copy" unicode="&#xf610;" d="M237 526c4-48 13-112 34-180 43-145 121-248 229-306 109 58 186 161 229 306 21 68 30 132 34 180l-263 131z m704 90c0 11-7 20-16 25l-412 206c-8 4-18 4-26 0l-412-206c-9-5-16-14-16-25 0-6-7-148 41-314 29-98 72-184 126-255 69-89 158-155 264-195 3-1 7-2 10-2s7 1 10 2c106 40 195 106 264 195 55 71 97 157 126 255 48 166 41 308 41 314z m-428-635c-4-2-9-3-13-3s-9 1-13 3c-130 64-222 181-272 348-25 83-34 161-38 212 0 12 6 23 17 28l293 147c8 4 18 4 26 0l294-147c10-5 16-16 16-28-3-51-13-129-38-212-50-167-142-284-272-348z" horiz-adv-x="1000" />
<glyph glyph-name="shield-2" unicode="&#xf611;" d="M765 511c-8 8-22 8-30 0l-277-277-152 152c-8 8-21 8-29 0-8-9-8-22 0-30l167-167c4-4 9-6 14-6 6 0 11 2 15 6l292 292c8 8 8 21 0 30z m158 213l-417 125c-4 1-8 1-12 0l-417-125c-8-2-14-11-14-20v-458c0-184 280-348 431-395 2-1 4-1 6-1s4 0 6 1c151 47 432 211 432 395v458c0 9-6 18-15 20z m-27-478c0-146-232-300-396-353-164 53-396 207-396 353v443l396 118 396-118v-443z" horiz-adv-x="1000" /> <glyph glyph-name="shield-linear" unicode="&#xf611;" d="M765 511c-8 8-22 8-30 0l-277-277-152 152c-8 8-21 8-29 0-8-9-8-22 0-30l167-167c4-4 9-6 14-6 6 0 11 2 15 6l292 292c8 8 8 21 0 30z m158 213l-417 125c-4 1-8 1-12 0l-417-125c-8-2-14-11-14-20v-458c0-184 280-348 431-395 2-1 4-1 6-1s4 0 6 1c151 47 432 211 432 395v458c0 9-6 18-15 20z m-27-478c0-146-232-300-396-353-164 53-396 207-396 353v443l396 118 396-118v-443z" horiz-adv-x="1000" />
<glyph glyph-name="tags-alt" unicode="&#xf612;" d="M780 797h-307c-19 0-38-8-52-22l-399-399c-29-29-29-75 0-104l307-307c28-29 75-29 103 0l400 400c14 13 21 32 21 52v306c0 41-32 74-73 74z m-128-257c-31 0-55 25-55 55s24 55 55 55 55-24 55-55-25-55-55-55z m275 183l0-341c0-17-7-33-19-45l-406-406 6-6c29-29 75-29 104 0l367 366c13 14 21 33 21 52v307c0 41-33 73-73 73z" horiz-adv-x="1000" /> <glyph glyph-name="tags-alt" unicode="&#xf612;" d="M780 797h-307c-19 0-38-8-52-22l-399-399c-29-29-29-75 0-104l307-307c28-29 75-29 103 0l400 400c14 13 21 32 21 52v306c0 41-32 74-73 74z m-128-257c-31 0-55 25-55 55s24 55 55 55 55-24 55-55-25-55-55-55z m275 183l0-341c0-17-7-33-19-45l-406-406 6-6c29-29 75-29 104 0l367 366c13 14 21 33 21 52v307c0 41-33 73-73 73z" horiz-adv-x="1000" />
@ -1110,6 +1124,44 @@
<glyph glyph-name="mask" unicode="&#xf619;" d="M803 127c-30 0-58 15-90 32-33 18-70 38-113 38-35 0-68-14-100-41-32 27-65 41-100 41-43 0-80-21-113-38-32-17-60-32-90-32-13 0-26 3-40 9l-128 59 59-142c16-38 44-77 78-108 53-50 115-77 175-77 61 0 114 26 159 78 45-52 98-78 159-78 60 0 122 27 176 77 33 31 61 70 77 108l59 142-128-59c-14-6-27-9-40-9z m-537 173c101 0 189 57 234 141 45-84 133-141 234-141 147 0 266 120 266 266s-119 266-266 266c-101 0-189-57-234-140-45 83-133 140-234 140-147 0-266-119-266-266s119-266 266-266z m468 399c74 0 133-60 133-133s-59-133-133-133c-73 0-132 60-132 133s59 133 132 133z m-468 0c73 0 133-60 133-133s-60-133-133-133-133 60-133 133 60 133 133 133z" horiz-adv-x="1000" /> <glyph glyph-name="mask" unicode="&#xf619;" d="M803 127c-30 0-58 15-90 32-33 18-70 38-113 38-35 0-68-14-100-41-32 27-65 41-100 41-43 0-80-21-113-38-32-17-60-32-90-32-13 0-26 3-40 9l-128 59 59-142c16-38 44-77 78-108 53-50 115-77 175-77 61 0 114 26 159 78 45-52 98-78 159-78 60 0 122 27 176 77 33 31 61 70 77 108l59 142-128-59c-14-6-27-9-40-9z m-537 173c101 0 189 57 234 141 45-84 133-141 234-141 147 0 266 120 266 266s-119 266-266 266c-101 0-189-57-234-140-45 83-133 140-234 140-147 0-266-119-266-266s119-266 266-266z m468 399c74 0 133-60 133-133s-59-133-133-133c-73 0-132 60-132 133s59 133 132 133z m-468 0c73 0 133-60 133-133s-60-133-133-133-133 60-133 133 60 133 133 133z" horiz-adv-x="1000" />
<glyph glyph-name="heart-linear" unicode="&#xf61a;" d="M725 850c-90 0-173-44-225-117-51 73-135 117-225 117-146 0-275-136-275-292 0-151 86-307 247-451 75-66 157-124 245-172 5-2 11-2 16 0 88 48 170 106 245 172 162 144 247 300 247 451 0 156-128 292-275 292z m-225-881c-61 34-467 270-467 589 0 138 113 259 242 259 87 0 168-47 211-123 3-5 8-8 14-8s11 3 15 8c42 76 123 123 210 123 129 0 242-121 242-259 0-319-406-555-467-589z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="check-linear" unicode="&#xf61b;" d="M997 622c-6 7-16 8-23 3l-650-516-297 289c-6 6-16 6-22 0-7-7-7-17 0-23l306-299c6-5 15-6 22-1l661 525c7 5 8 15 3 22z" horiz-adv-x="1000" />
<glyph glyph-name="power-linear" unicode="&#xf61c;" d="M500 576c9 0 16 8 16 16v242c0 9-7 16-16 16s-16-7-16-16v-242c0-8 7-16 16-16z m460-175c-34 192-185 343-377 377-8 2-17-4-18-13s4-17 13-18c236-43 392-270 349-506-42-236-269-393-505-350-236 43-392 270-350 506 26 143 123 264 257 322 30 12 61 22 94 28 8 1 14 9 13 18-2 9-10 15-19 13-254-46-423-289-377-543 46-255 289-423 543-378 255 46 423 290 377 544z" horiz-adv-x="1000" />
<glyph glyph-name="cancel-linear" unicode="&#xf61d;" d="M523 350l472 473c7 6 7 16 0 22-6 7-16 7-22 0l-473-472-472 472c-7 7-17 6-23 0-6-6-6-16 0-22l472-473-472-472c-7-7-7-17 0-23s16-7 22-1c1 1 1 1 1 1l472 472 473-472c6-6 16-6 22 0 6 7 6 16 0 23l-472 472z" horiz-adv-x="1000" />
<glyph glyph-name="plus-linear" unicode="&#xf61e;" d="M984 366h-468v468c0 9-7 16-16 16s-16-7-16-16v-468h-468c-9 0-16-7-16-16s7-16 16-16h468v-468c0-9 7-16 16-16s16 7 16 16v468h468c9 0 16 7 16 16s-7 16-16 16z" horiz-adv-x="1000" />
<glyph glyph-name="bookmark-linear" unicode="&#xf61f;" d="M599-88c-4 0-8 2-11 5l-286 301-285-301c-5-5-11-6-17-4-6 3-10 8-10 15v891c0 17 14 31 31 31h563c17 0 31-14 31-31v-891c0-7-4-12-10-15-2-1-4-1-6-1z m-297 344c5 0 9-2 12-5l270-284v852h-563v-852l270 284c3 3 7 5 11 5z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="search-1" unicode="&#xf620;" d="M994-114l-304 304c63 70 102 163 102 264 0 218-178 396-396 396s-396-178-396-396 178-396 396-396c102 0 194 39 264 102l304-304c5-4 10-6 15-6 6 0 11 2 15 6 8 8 8 21 0 30z m-598 214c-195 0-354 159-354 354s159 354 354 354 354-158 354-354-159-354-354-354z" horiz-adv-x="1000" />
<glyph glyph-name="dress" unicode="&#xf621;" d="M666 740v110h-58v-126c-38-17-71-44-95-79l-13-20-13 20c-24 35-57 62-95 79v126h-58v-110c-10 2-20 2-30 2v-129c0-64 53-117 118-117h156c65 0 118 53 118 117v129c-10 0-20 0-30-2z m-29-303h-274l-330-516v-2c304-92 630-92 935 0v2l-331 516z" horiz-adv-x="1000" />
<glyph glyph-name="heel" unicode="&#xf622;" d="M882 364c-12-15-23-31-33-47 0-1 0-1 0-1v-371c0-11 8-20 19-20h77c11 0 20 9 20 20v462c0 13 0 25 2 37-26-18-56-44-85-80z m0 0m-46 485c-11 2-22-5-24-16-24-133-199-534-250-658-38-92-92-113-137-113-18 0-35 3-49 7-21 5-41 20-51 39-12 25-37 39-63 39-13 0-27-4-39-13-75-52-161-113-201-151-47-42-11-90 36-90 42 0 333 0 333 0 183 0 275 107 288 164 41 166 96 272 152 342 57 73 114 107 156 132 51 92-35 295-151 318z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="translate" unicode="&#xf623;" d="M730 248c-3 9-14 14-26 14-12 0-23-5-26-14l-61-197c0-2 0-3 0-4 0-10 14-17 25-17 7 0 13 3 14 9l12 41h72l12-41c1-6 7-9 14-9 11 0 25 8 25 17 0 1 0 2 0 4z m-53-136l27 97 27-97z m0 0m215 330h-300v128l98 70c7 6 12 14 12 24 0 9-5 18-12 24l-99 70c-8 52-53 92-107 92h-376c-60 0-108-48-108-108v-376c0-60 48-108 108-108h300v-128l-98-70c-7-5-12-14-12-24s5-18 12-24l99-70c8-52 53-92 107-92h376c60 0 108 48 108 108v376c0 60-48 108-108 108z m-784-125c-27 0-49 22-49 49v376c0 27 22 49 49 49h376c27 0 50-22 50-49 0-9 4-18 12-24l76-54-76-55c-8-5-12-14-12-24v-143h-18c-60 0-108-48-108-108v-17z m833-359c0-27-22-49-49-49h-376c-27 0-49 22-49 49 0 9-5 18-13 24l-76 54 76 55c8 5 13 14 13 24v219c0 27 22 50 49 50h47 0 0 329c27 0 49-23 49-50z m0 0m-555 622c9 0 17 7 17 17s-8 16-17 16h-73v40c0 9-8 17-17 17-9 0-16-8-16-17v-40h-74c-9 0-16-7-16-16s7-17 16-17h23c3-35 19-66 41-91-19-11-41-18-64-18-9 0-16-7-16-16s7-17 16-17c33 0 65 11 90 29 26-18 57-29 90-29 9 0 17 8 17 17s-8 16-17 16c-23 0-45 7-64 18 23 25 38 56 41 91z m-90-70c-18 19-30 43-34 70h68c-4-27-16-51-34-70z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="translate-alt" unicode="&#xf624;" d="M892 442h-376c-60 0-108-48-108-108v-204l-98-70c-7-5-12-14-12-24 0-9 5-18 12-24l99-70c8-52 53-92 107-92h376c60 0 108 48 108 108v376c0 60-48 108-108 108z m-126-412c-7 0-13 3-14 9l-12 41h-72l-12-41c-1-6-7-9-14-9-11 0-25 7-25 17 0 1 0 2 0 4l61 197c3 9 14 14 26 14 12 0 23-5 26-14l61-197c0-2 0-3 0-4 0-9-14-17-25-17z m0 0m-89 82h54l-27 97z m0 0m-328 222c0 40 14 76 37 104-33 0-64 11-90 29-25-18-57-29-90-29-9 0-16 8-16 17s7 16 16 16c23 0 45 7 64 18-22 25-38 56-41 91h-23c-9 0-16 7-16 17s7 16 16 16h74v40c0 9 7 17 16 17s17-8 17-17v-40h73c9 0 17-7 17-16s-8-17-17-17h-23c-3-35-18-66-41-91 19-11 41-18 64-18 9 0 16-6 17-15 29 28 69 45 113 45h76v69l98 70c7 6 12 14 12 24 0 9-5 18-12 24l-99 70c-8 52-53 92-107 92h-376c-60 0-108-48-108-108v-376c0-60 48-108 108-108h241z m0 0m-53 176c18 19 30 43 34 70h-68c4-27 16-51 34-70z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="right-chevron" unicode="&#xf625;" d="M754 365l-479 479c-8 8-21 8-29 0-8-8-8-21 0-29l464-465-464-464c-8-8-9-22-1-30 8-8 22-8 30 0 0 0 0 0 0 0l479 480c9 8 9 21 0 29z" horiz-adv-x="1000" />
<glyph glyph-name="left-chevron" unicode="&#xf626;" d="M290 350l465 465c8 8 7 21-1 29-8 8-21 8-29 0l-479-479c-8-8-8-22 0-30l479-479c9-8 22-8 30 0 7 8 7 21 0 29l-465 465z" horiz-adv-x="1000" />
<glyph glyph-name="mail-linear" unicode="&#xf627;" d="M106 153h725c59 0 106 48 107 107v491c-1 59-48 107-107 107h-725c-58 0-106-48-106-107v-491c0-59 48-107 106-107z m0 32c-16 0-32 5-45 15l217 222c4 4 6 10 4 15-2 6-6 10-11 11-6 2-12 0-16-4l-214-220c-6 11-9 23-9 36v456l368-312c40-33 98-33 138 0l368 313v-457c0-13-3-25-9-36l-216 220c-6 6-16 6-22 0-7-6-7-16-1-22l218-222c-13-10-29-15-45-15z m0 641h725c39 0 71-30 75-68l-389-329c-28-24-69-24-96 0l-389 329c3 38 36 68 74 68z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="user-linear" unicode="&#xf62a;" d="M500 349c-263 0-478-215-478-478 0-12 9-21 21-21s21 9 21 21c0 240 195 436 436 436s436-196 436-436c0-12 10-21 21-21 12 0 21 9 21 21 0 263-214 478-478 478z m0 501c-126 0-229-102-229-229s103-228 229-228 229 102 229 228-103 229-229 229z m0-416c-103 0-187 84-187 187s84 187 187 187c103 0 187-83 187-187s-84-187-187-187z" horiz-adv-x="1000" />
<glyph glyph-name="phone-linear" unicode="&#xf62c;" d="M999 63c-7 71-88 128-97 134-9 6-87 61-157 61-30 0-54-9-74-28l-2-2c-23-27-70-67-96-67-2 0-4 0-5 1-15 11-90 66-140 116-39 40-104 123-117 140-6 22 34 73 67 102l2 2c75 79-29 224-33 230-3 4-67 98-144 98-26 0-50-10-70-29-9-8-219-184-92-444 6-13 14-26 25-41 31-44 112-156 188-232 72-73 186-155 231-188 16-11 29-19 43-25 55-27 111-41 166-41 162 0 262 116 276 133 22 23 32 51 29 80z m-57-54l-1-1c-10-12-100-119-247-119h0c-49 0-99 12-149 36-12 6-24 13-38 23-44 31-156 112-226 183-74 74-153 183-184 227-9 13-16 25-22 36-112 229 62 380 84 398 13 13 28 20 44 20 47 0 97-59 113-82 25-35 80-135 36-182-4-3-101-88-75-147l2-4c8-10 79-102 122-146 55-54 137-115 146-122l4-2c6-3 14-4 22-4 56 0 122 77 125 80 12 11 27 17 47 17 59 0 132-52 135-55 1 0 76-51 81-106 2-18-4-35-19-50z" horiz-adv-x="1000" />
<glyph glyph-name="home-icon" unicode="&#xf62d;" d="M497 698c35 0 65-29 67-31l1-2 2-1c2-2 198-179 252-227 13-12 22-26 26-40 3-10 3-17 3-19l0-2v-5-274c0-36-11-62-33-79-14-10-28-15-34-16-30 0-193 1-338 1-93 0-162-1-203-1 0 0 0 0-1 0-36 0-60 11-74 33-11 18-13 37-13 40v315c0 3 3 14 15 29 9 12 18 21 20 23 13 11 140 119 245 223 22 22 43 33 65 33m0 52c-31 0-66-12-101-48-108-108-243-221-243-221s-52-47-52-91v-316c0 0 2-124 138-124 1 0 1 0 2 0 46 1 122 1 202 1 162 0 343-1 343-1s113 15 113 147c0 133 0 274 0 274s8 56-46 104c-54 48-251 227-251 227s-44 48-105 48l0 0z" horiz-adv-x="1000" />
<glyph glyph-name="align" unicode="&#xf62e;" d="M682 759h-636c-26 0-46 21-46 46 0 25 20 45 46 45h636c25 0 45-20 45-45 0-25-20-46-45-46z m0 0m273-227h-909c-26 0-46 20-46 45s20 46 46 46h909c25 0 45-21 45-46s-20-45-45-45z m0 0m-273-227h-636c-26 0-46 20-46 45 0 25 20 46 46 46h636c25 0 45-21 45-46 0-25-20-45-45-45z m0 0m273-228h-909c-26 0-46 21-46 46 0 25 20 45 46 45h909c25 0 45-20 45-45 0-25-20-46-45-46z m0 0m-273-227h-636c-26 0-46 20-46 45s20 46 46 46h636c25 0 45-21 45-46s-20-45-45-45z m0 0" horiz-adv-x="1000" />
<glyph glyph-name="rss-thin-svgrepo-com" unicode="&#xf62f;" d="M375 225a264 264 0 0 0 78-187 16 16 0 0 0-31 0 234 234 0 0 1-234 234 16 16 0 0 0 0 31 264 264 0 0 0 187-78z m-187 266a16 16 0 0 1 0-32 422 422 0 0 0 421-421 16 16 0 0 1 32 0 453 453 0 0 1-453 453z m453 0a636 636 0 0 1-453 187 16 16 0 0 1 0-31 605 605 0 0 0 430-179 605 605 0 0 0 179-430 16 16 0 0 1 31 0 636 636 0 0 1-187 453z m-438-407a31 31 0 1 1 31-31 31 31 0 0 1-31 31z" horiz-adv-x="1000" />
<glyph glyph-name="account-settings-variant-1" unicode="&#xf631;" d="M375 683c-92 0-167-74-167-166s75-167 167-167 167 75 167 167-75 166-167 166m0-416c-111 0-333-56-333-167v-83h461c-2 13-3 27-3 41 0 63 21 125 59 175-64 22-135 34-184 34m375 0c-5 0-10-4-11-9l-8-55c-12-5-24-12-35-20l-52 21c-4 0-10 0-13-5l-41-72c-3-5-2-10 2-14l44-34c-1-7-1-14-1-21 0-7 0-13 1-20l-44-35c-4-3-5-8-2-13l41-72c3-6 8-6 13-6l52 21c11-7 22-14 35-19l8-55c1-5 5-9 11-9h83c5 0 10 4 10 9l8 55c13 5 24 12 35 19l52-21c5 0 10 0 13 6l42 72c2 5 1 10-3 13l-44 35c1 7 2 13 2 20 0 7-1 14-2 21l44 34c4 4 5 9 3 14l-42 72c-3 5-8 5-13 5l-52-21c-11 8-22 15-35 20l-8 55c0 5-5 9-10 9m-41-146c34 0 62-28 62-63s-28-62-62-62c-35 0-63 28-63 62s28 63 63 63z" horiz-adv-x="1000" /> <glyph glyph-name="account-settings-variant-1" unicode="&#xf631;" d="M375 683c-92 0-167-74-167-166s75-167 167-167 167 75 167 167-75 166-167 166m0-416c-111 0-333-56-333-167v-83h461c-2 13-3 27-3 41 0 63 21 125 59 175-64 22-135 34-184 34m375 0c-5 0-10-4-11-9l-8-55c-12-5-24-12-35-20l-52 21c-4 0-10 0-13-5l-41-72c-3-5-2-10 2-14l44-34c-1-7-1-14-1-21 0-7 0-13 1-20l-44-35c-4-3-5-8-2-13l41-72c3-6 8-6 13-6l52 21c11-7 22-14 35-19l8-55c1-5 5-9 11-9h83c5 0 10 4 10 9l8 55c13 5 24 12 35 19l52-21c5 0 10 0 13 6l42 72c2 5 1 10-3 13l-44 35c1 7 2 13 2 20 0 7-1 14-2 21l44 34c4 4 5 9 3 14l-42 72c-3 5-8 5-13 5l-52-21c-11 8-22 15-35 20l-8 55c0 5-5 9-10 9m-41-146c34 0 62-28 62-63s-28-62-62-62c-35 0-63 28-63 62s28 63 63 63z" horiz-adv-x="1000" />
<glyph glyph-name="shape-rectangle-plus-2" unicode="&#xf65f;" d="M792 600h125v-83h-125v-125h-84v125h-125v83h125v125h84v-125m-84-458v125h84v-209h-667v542h333v-83h-250v-375h500z" horiz-adv-x="1000" /> <glyph glyph-name="shape-rectangle-plus-2" unicode="&#xf65f;" d="M792 600h125v-83h-125v-125h-84v125h-125v83h125v125h84v-125m-84-458v125h84v-209h-667v542h333v-83h-250v-375h500z" horiz-adv-x="1000" />
@ -1130,6 +1182,8 @@
<glyph glyph-name="truck-fast" unicode="&#xf787;" d="M125 288l-31 62h219l-25 63h-205l-31 62h325l-25 63h-306l-36 62h157c0 46 37 83 83 83h500v-166h125l125-167v-208h-83c0-69-56-125-125-125s-125 56-125 125h-167c0-69-56-125-125-125s-125 56-125 125h-83v146h-42m667-209c34 0 62 28 62 63s-28 62-62 62-63-28-63-62 28-63 63-63m62 375h-104v-104h186l-82 104m-479-375c35 0 63 28 63 63s-28 62-63 62-62-28-62-62 27-63 62-63z" horiz-adv-x="1000" /> <glyph glyph-name="truck-fast" unicode="&#xf787;" d="M125 288l-31 62h219l-25 63h-205l-31 62h325l-25 63h-306l-36 62h157c0 46 37 83 83 83h500v-166h125l125-167v-208h-83c0-69-56-125-125-125s-125 56-125 125h-167c0-69-56-125-125-125s-125 56-125 125h-83v146h-42m667-209c34 0 62 28 62 63s-28 62-62 62-63-28-63-62 28-63 63-63m62 375h-104v-104h186l-82 104m-479-375c35 0 63 28 63 63s-28 62-63 62-62-28-62-62 27-63 62-63z" horiz-adv-x="1000" />
<glyph glyph-name="glass-cheers" unicode="&#xf79f;" d="M1249 3c3-8-1-17-9-20l-317-132c-8-3-17 1-20 9-17 39 2 85 42 102l43 18-76 202c-9-1-18-2-26-2-101 0-194 64-221 166l-40 147-39-147c-28-102-121-166-222-166-8 0-17 1-25 2l-77-202 43-18c40-17 58-63 42-102-3-8-12-12-20-9l-317 132c-8 3-12 12-9 20 17 40 62 59 102 43l43-18 76 199c-94 68-126 195-67 298l169 294c15 27 49 38 78 26l223-92 223 92c29 12 63 1 78-26l170-294c59-103 26-230-68-299l76-199 43 18c40 17 85-2 102-42z m-710 530l37 139-185 76-71-124z m172 0l219 91-71 124-185-76z" horiz-adv-x="1250" />
<glyph glyph-name="heart-broken" unicode="&#xf7a9;" d="M925 706c95-97 99-252 15-356l-415-427c-14-14-36-14-50 0l-414 427c-85 104-81 259 14 356l5 5c90 92 232 101 333 27l56-169-188-125 282-281-94 250 187 125-67 202c101 72 242 63 332-29z" horiz-adv-x="1000" /> <glyph glyph-name="heart-broken" unicode="&#xf7a9;" d="M925 706c95-97 99-252 15-356l-415-427c-14-14-36-14-50 0l-414 427c-85 104-81 259 14 356l5 5c90 92 232 101 333 27l56-169-188-125 282-281-94 250 187 125-67 202c101 72 242 63 332-29z" horiz-adv-x="1000" />
<glyph glyph-name="money-check-alt" unicode="&#xf7c2;" d="M1188 788c34 0 62-28 62-63v-750c0-35-28-63-62-63h-1125c-35 0-63 28-63 63v750c0 35 28 63 63 63h1125z m-844-578c46 1 83 40 83 88 0 39-25 74-62 84l-87 27c-11 3-18 13-18 25 0 14 11 25 23 25h55c9 0 18-2 25-7 7-4 15-4 20 2l23 21c7 7 7 18-1 24-18 14-39 21-61 22v32c0 9-7 16-16 16h-31c-9 0-16-7-16-16v-31c-46-2-83-40-83-88 0-39 25-74 62-85l88-26c10-3 17-14 17-25 0-15-11-26-23-26h-55c-9 0-18 2-25 7-7 4-15 4-20-1l-23-22c-7-7-7-18 1-24 18-13 39-21 61-22v-32c0-8 7-15 16-15h31c9 0 16 7 16 15v32z m469 31v31c0 9-7 16-16 16h-219c-8 0-15-7-15-16v-31c0-9 7-16 15-16h219c9 0 16 7 16 16z m312 0v31c0 9-7 16-16 16h-156c-8 0-15-7-15-16v-31c0-9 7-16 15-16h156c9 0 16 7 16 16z m0 187v31c0 9-7 16-16 16h-531c-8 0-15-7-15-16v-31c0-8 7-15 15-15h531c9 0 16 7 16 15z" horiz-adv-x="1250" /> <glyph glyph-name="money-check-alt" unicode="&#xf7c2;" d="M1188 788c34 0 62-28 62-63v-750c0-35-28-63-62-63h-1125c-35 0-63 28-63 63v750c0 35 28 63 63 63h1125z m-844-578c46 1 83 40 83 88 0 39-25 74-62 84l-87 27c-11 3-18 13-18 25 0 14 11 25 23 25h55c9 0 18-2 25-7 7-4 15-4 20 2l23 21c7 7 7 18-1 24-18 14-39 21-61 22v32c0 9-7 16-16 16h-31c-9 0-16-7-16-16v-31c-46-2-83-40-83-88 0-39 25-74 62-85l88-26c10-3 17-14 17-25 0-15-11-26-23-26h-55c-9 0-18 2-25 7-7 4-15 4-20-1l-23-22c-7-7-7-18 1-24 18-13 39-21 61-22v-32c0-8 7-15 16-15h31c9 0 16 7 16 15v32z m469 31v31c0 9-7 16-16 16h-219c-8 0-15-7-15-16v-31c0-9 7-16 15-16h219c9 0 16 7 16 16z m312 0v31c0 9-7 16-16 16h-156c-8 0-15-7-15-16v-31c0-9 7-16 15-16h156c9 0 16 7 16 16z m0 187v31c0 9-7 16-16 16h-531c-8 0-15-7-15-16v-31c0-8 7-15 15-15h531c9 0 16 7 16 15z" horiz-adv-x="1250" />

Before

Width:  |  Height:  |  Size: 256 KiB

After

Width:  |  Height:  |  Size: 269 KiB

Loading…
Cancel
Save