@iconify-vue/devicon 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/b/burpsuite-wordmark.vue +12 -0
- package/components/b/burpsuite.vue +11 -0
- package/components/c/ceph-wordmark.vue +11 -0
- package/components/c/ceph.vue +10 -0
- package/components/g/githubcopilot-wordmark.vue +32 -0
- package/components/g/githubcopilot.vue +12 -0
- package/components/h/helix.vue +14 -0
- package/components/i/istio-wordmark.vue +10 -0
- package/components/i/istio.vue +10 -0
- package/components/p/positron.vue +11 -0
- package/components/t/tigerbeetle-wordmark.vue +10 -0
- package/components/t/tigerbeetle.vue +10 -0
- package/components/t/typeorm-wordmark.vue +12 -0
- package/components/t/typeorm.vue +11 -0
- package/css/a/azh9-3bq.css +3 -0
- package/css/c/cirpexy.css +3 -0
- package/css/c/cnr80xlk.css +4 -0
- package/css/c/ct2xyi.css +3 -0
- package/css/d/d5w_srb.css +3 -0
- package/css/d/du0o-x.css +3 -0
- package/css/f/f_bpbzbc.css +4 -0
- package/css/f/fdewrnbu.css +3 -0
- package/css/f/fhb5vqbc.css +4 -0
- package/css/f/fq6n3gkc.css +4 -0
- package/css/g/g-67_ubk.css +3 -0
- package/css/g/g_9pkack.css +3 -0
- package/css/g/gsym5q.css +7 -0
- package/css/h/hqg0lz.css +3 -0
- package/css/h/hv0wvi.css +3 -0
- package/css/i/itm-vjb.css +3 -0
- package/css/j/jcpl4wq.css +3 -0
- package/css/k/ke3ckbci.css +3 -0
- package/css/k/kuf42x.css +5 -0
- package/css/k/kygwm2b.css +4 -0
- package/css/l/l3ilpsz.css +3 -0
- package/css/l/lowjgnbk.css +4 -0
- package/css/n/nsz-79zb.css +4 -0
- package/css/o/o0r7um.css +4 -0
- package/css/q/q6qvlpb.css +4 -0
- package/css/q/qhywrtb.css +4 -0
- package/css/q/qnq-f2bh.css +3 -0
- package/css/q/qpqrt-kb.css +4 -0
- package/css/q/qq6876b.css +3 -0
- package/css/q/qqskawc.css +4 -0
- package/css/r/r-77qy.css +4 -0
- package/css/r/r4nd_ybi.css +3 -0
- package/css/r/r5g5_d.css +3 -0
- package/css/r/r6jstqbe.css +3 -0
- package/css/r/r89ch2bv.css +4 -0
- package/css/r/rs2e0_b.css +4 -0
- package/css/s/s26yy7br.css +3 -0
- package/css/s/slc_hxbt.css +3 -0
- package/css/t/t9ayiwq.css +4 -0
- package/css/t/tcko28d.css +4 -0
- package/css/t/tt9k93bh.css +4 -0
- package/css/u/u4wl76bv.css +4 -0
- package/css/u/udf-mobf.css +4 -0
- package/css/v/v0mgkb0w.css +3 -0
- package/css/w/w-5b_7by.css +3 -0
- package/css/x/xwje6h.css +3 -0
- package/css/y/y-y713bh.css +3 -0
- package/css/y/y1amv-bz.css +3 -0
- package/iconify.json +2 -2
- package/package.json +57 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/q/qpqrt-kb.css';
|
|
4
|
+
import '../../css/o/o0r7um.css';
|
|
5
|
+
import '../../css/q/qqskawc.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":128,"height":128};
|
|
10
|
+
const content = `<path class="qpqrt-kb" /><path class="o0r7um" /><path class="qqskawc" />`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:burpsuite-wordmark" /></template>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/r/r-77qy.css';
|
|
4
|
+
import '../../css/r/rs2e0_b.css';
|
|
5
|
+
|
|
6
|
+
const props = defineProps(["width","height"]);
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":128,"height":128};
|
|
9
|
+
const content = `<path class="r-77qy" /><path class="rs2e0_b" />`;
|
|
10
|
+
</script>
|
|
11
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:burpsuite" /></template>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/f/f_bpbzbc.css';
|
|
4
|
+
import '../../css/u/u4wl76bv.css';
|
|
5
|
+
|
|
6
|
+
const props = defineProps(["width","height"]);
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":128,"height":128};
|
|
9
|
+
const content = `<path class="f_bpbzbc" /><path class="u4wl76bv" />`;
|
|
10
|
+
</script>
|
|
11
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:ceph-wordmark" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/cnr80xlk.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":128,"height":128};
|
|
8
|
+
const content = `<path class="cnr80xlk" />`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:ceph" /></template>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/q/qq6876b.css';
|
|
4
|
+
import '../../css/y/y1amv-bz.css';
|
|
5
|
+
import '../../css/y/y-y713bh.css';
|
|
6
|
+
import '../../css/r/r6jstqbe.css';
|
|
7
|
+
import '../../css/s/slc_hxbt.css';
|
|
8
|
+
import '../../css/f/fdewrnbu.css';
|
|
9
|
+
import '../../css/j/jcpl4wq.css';
|
|
10
|
+
import '../../css/g/g-67_ubk.css';
|
|
11
|
+
import '../../css/l/l3ilpsz.css';
|
|
12
|
+
import '../../css/c/cirpexy.css';
|
|
13
|
+
import '../../css/g/g_9pkack.css';
|
|
14
|
+
import '../../css/k/ke3ckbci.css';
|
|
15
|
+
import '../../css/r/r4nd_ybi.css';
|
|
16
|
+
import '../../css/w/w-5b_7by.css';
|
|
17
|
+
import '../../css/d/d5w_srb.css';
|
|
18
|
+
import '../../css/a/azh9-3bq.css';
|
|
19
|
+
import '../../css/u/udf-mobf.css';
|
|
20
|
+
import '../../css/c/ct2xyi.css';
|
|
21
|
+
import '../../css/x/xwje6h.css';
|
|
22
|
+
import '../../css/h/hv0wvi.css';
|
|
23
|
+
import '../../css/d/du0o-x.css';
|
|
24
|
+
import '../../css/r/r5g5_d.css';
|
|
25
|
+
import '../../css/h/hqg0lz.css';
|
|
26
|
+
|
|
27
|
+
const props = defineProps(["width","height"]);
|
|
28
|
+
|
|
29
|
+
const viewBox = {"width":128,"height":128};
|
|
30
|
+
const content = `<path fill="url(#SVGCWYVdcty)" transform="translate(-88.013 -8.643)scale(.20094)" class="qq6876b" /><path fill="url(#SVG9KMA1c6U)" transform="translate(-88.013 -8.643)scale(.20094)" class="y1amv-bz" /><path fill="url(#SVGkJ4CqbWR)" transform="translate(-88.013 -8.643)scale(.20094)" class="y-y713bh" /><path fill="url(#SVGnv4LCdyZ)" transform="translate(-88.013 -8.643)scale(.20094)" class="r6jstqbe" /><path fill="url(#SVGoJy6TZ9O)" transform="translate(-88.013 -8.643)scale(.20094)" class="slc_hxbt" /><path fill="url(#SVGaTql9cSN)" transform="translate(-88.013 -8.643)scale(.20094)" class="fdewrnbu" /><path fill="url(#SVGoInChA2a)" transform="translate(-88.013 -8.643)scale(.20094)" class="jcpl4wq" /><path fill="url(#SVGHatxm8AJ)" transform="translate(-88.013 -8.643)scale(.20094)" class="g-67_ubk" /><path fill="url(#SVGeCsFNePm)" transform="translate(-88.013 -8.643)scale(.20094)" class="l3ilpsz" /><path fill="url(#SVG8nIfKe4L)" transform="translate(-88.013 -8.643)scale(.20094)" class="cirpexy" /><path fill="url(#SVG0MPJ12VM)" transform="translate(-88.013 -8.643)scale(.20094)" class="g_9pkack" /><path fill="url(#SVGRzIwzefj)" transform="translate(-88.013 -8.643)scale(.20094)" class="ke3ckbci" /><path fill="url(#SVGT9KLscPQ)" transform="translate(-88.013 -8.643)scale(.20094)" class="r4nd_ybi" /><path fill="url(#SVGYDsHTcQr)" transform="translate(-88.013 -8.643)scale(.20094)" class="w-5b_7by" /><path fill="url(#SVG6XvkGpNe)" transform="translate(-88.013 -8.643)scale(.20094)" class="d5w_srb" /><path fill="url(#SVGUTnKtcua)" transform="translate(-88.013 -8.643)scale(.20094)" class="azh9-3bq" /><path class="udf-mobf" /><defs><linearGradient id="SVGCWYVdcty" x1="767.84" x2="770.78" y1="247.05" y2="272.54" gradientUnits="userSpaceOnUse"><stop offset="0" class="ct2xyi" /><stop offset="1" class="xwje6h" /></linearGradient><linearGradient id="SVG9KMA1c6U" x1="1039.8" x2="1059.8" y1="247" y2="374.44" gradientUnits="userSpaceOnUse"><stop offset="0" class="ct2xyi" /><stop offset="1" class="xwje6h" /></linearGradient><linearGradient id="SVGkJ4CqbWR" x1="707.62" x2="723.3" y1="247.73" y2="375.4" gradientUnits="userSpaceOnUse"><stop offset="0" class="ct2xyi" /><stop offset="1" class="xwje6h" /></linearGradient><linearGradient id="SVGnv4LCdyZ" x1="879.54" x2="895.6" y1="248.88" y2="373.08" gradientUnits="userSpaceOnUse"><stop offset="0" class="ct2xyi" /><stop offset="1" class="xwje6h" /></linearGradient><linearGradient id="SVGoJy6TZ9O" x1="807.35" x2="834.08" y1="252.09" y2="367.81" gradientUnits="userSpaceOnUse"><stop offset="0" class="ct2xyi" /><stop offset="1" class="xwje6h" /></linearGradient><linearGradient id="SVGaTql9cSN" x1="962.68" x2="974.1" y1="273.39" y2="366.49" gradientUnits="userSpaceOnUse"><stop offset="0" class="ct2xyi" /><stop offset="1" class="xwje6h" /></linearGradient><linearGradient id="SVGoInChA2a" x1="767.86" x2="800.25" y1="273.39" y2="352.99" gradientUnits="userSpaceOnUse"><stop offset="0" class="ct2xyi" /><stop offset="1" class="xwje6h" /></linearGradient><linearGradient id="SVGHatxm8AJ" x1="705.58" x2="735.68" y1="361.25" y2="447.3" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVGeCsFNePm" x1="906.01" x2="911.3" y1="361.3" y2="376.75" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVG8nIfKe4L" x1="929.89" x2="969.3" y1="361.3" y2="382.2" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVG0MPJ12VM" x1="1029.8" x2="1071.7" y1="366.23" y2="428.24" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVGRzIwzefj" x1="785.84" x2="807.01" y1="386.45" y2="450.36" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVGT9KLscPQ" x1="858.58" x2="890.98" y1="386.48" y2="464.03" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVGYDsHTcQr" x1="976.8" x2="997.96" y1="386.49" y2="450.35" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVG6XvkGpNe" x1="906.01" x2="938.65" y1="387.79" y2="411.93" gradientUnits="userSpaceOnUse"><stop offset="0" class="hv0wvi" /><stop offset="1" class="du0o-x" /></linearGradient><linearGradient id="SVGUTnKtcua" x1="527.93" x2="527.93" y1="275" y2="421.22" gradientUnits="userSpaceOnUse"><stop offset="0" class="r5g5_d" /><stop offset="1" class="hqg0lz" /></linearGradient></defs>`;
|
|
31
|
+
</script>
|
|
32
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:githubcopilot-wordmark" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/s/s26yy7br.css';
|
|
4
|
+
import '../../css/r/r5g5_d.css';
|
|
5
|
+
import '../../css/h/hqg0lz.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":128,"height":128};
|
|
10
|
+
const content = `<path fill="url(#SVGfOforeKE)" class="s26yy7br" /><defs><linearGradient id="SVGfOforeKE" x1="527.926" x2="527.926" y1="275" y2="421.221" gradientTransform="translate(-311.724 -183.75)scale(.7117)" gradientUnits="userSpaceOnUse"><stop class="r5g5_d" /><stop offset="1" class="hqg0lz" /></linearGradient></defs>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:githubcopilot" /></template>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/k/kuf42x.css';
|
|
4
|
+
import '../../css/k/kygwm2b.css';
|
|
5
|
+
import '../../css/q/qhywrtb.css';
|
|
6
|
+
import '../../css/l/lowjgnbk.css';
|
|
7
|
+
import '../../css/f/fq6n3gkc.css';
|
|
8
|
+
|
|
9
|
+
const props = defineProps(["width","height"]);
|
|
10
|
+
|
|
11
|
+
const viewBox = {"width":128,"height":128};
|
|
12
|
+
const content = `<g class="kuf42x"><path class="kygwm2b" /><path class="qhywrtb" /><path class="lowjgnbk" /><path class="fq6n3gkc" /></g>`;
|
|
13
|
+
</script>
|
|
14
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:helix" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/nsz-79zb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":128,"height":128};
|
|
8
|
+
const content = `<path class="nsz-79zb" />`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:istio-wordmark" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/t/tt9k93bh.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":128,"height":128};
|
|
8
|
+
const content = `<path class="tt9k93bh" />`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:istio" /></template>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/g/gsym5q.css';
|
|
4
|
+
import '../../css/f/fhb5vqbc.css';
|
|
5
|
+
|
|
6
|
+
const props = defineProps(["width","height"]);
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":128,"height":128};
|
|
9
|
+
const content = `<rect class="gsym5q" /><path class="fhb5vqbc" />`;
|
|
10
|
+
</script>
|
|
11
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:positron" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/q/qnq-f2bh.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":128,"height":128};
|
|
8
|
+
const content = `<path class="qnq-f2bh" />`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:tigerbeetle-wordmark" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/i/itm-vjb.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":128,"height":128};
|
|
8
|
+
const content = `<path class="itm-vjb" />`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:tigerbeetle" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/q/q6qvlpb.css';
|
|
4
|
+
import '../../css/t/tcko28d.css';
|
|
5
|
+
import '../../css/v/v0mgkb0w.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":128,"height":128};
|
|
10
|
+
const content = `<path class="q6qvlpb" /><path class="tcko28d" /><path class="v0mgkb0w" />`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:typeorm-wordmark" /></template>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/t/t9ayiwq.css';
|
|
4
|
+
import '../../css/r/r89ch2bv.css';
|
|
5
|
+
|
|
6
|
+
const props = defineProps(["width","height"]);
|
|
7
|
+
|
|
8
|
+
const viewBox = {"width":128,"height":128};
|
|
9
|
+
const content = `<path class="t9ayiwq" /><path class="r89ch2bv" />`;
|
|
10
|
+
</script>
|
|
11
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="devicon:typeorm" /></template>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.azh9-3bq {
|
|
2
|
+
d: path("M525.24 275h5.183c27.101 1.155 55.517 15.035 63.409 42.966a116 116 0 0 1 4.101 23.533a.45.45 0 0 0 .478.42c5.232-.293 9.005 1.642 12.101 5.733c2.749 3.627 7.179 8.503 7.297 13.082q.085 3.121.013 19.446c-.018 3.586-.586 6.135-3.335 8.192c-19.078 14.277-42.086 26.023-65.617 30.75q-25.72 5.166-51.181-2.381c-20.164-5.982-39.548-16.073-56.485-28.455q-2.686-1.957-3.2-5.842v-21.877c.577-4.692 3.615-7.948 6.292-11.571c3.565-4.822 6.927-7.456 13.083-7.068a.45.45 0 0 0 .478-.411c1.397-16.067 4.638-32.803 16.117-44.838c13.273-13.916 32.22-20.98 51.266-21.679m-8.675 43.358c1-7.226.365-20.668-8.812-22.649c-11.051-2.39-29.975-.676-33.838 12.441q-3.34 11.346-.049 22.586c.509 1.732 1.573 3.609 2.92 4.579c9.947 7.172 24.775 4.416 33.591-2.995c4.101-3.451 5.426-8.436 6.188-13.962m25.554 9.97c2.862 5.011 9.636 8.71 14.864 10.072c6.765 1.764 14.832 1.435 20.935-2.323c3.312-2.039 4.196-4.957 4.935-8.945c1.51-8.128 1.158-21.95-6.711-27.205c-7.576-5.061-18.429-6.103-27.15-4.412c-5.453 1.056-8.117 4.868-9.239 10.051c-1.442 6.694-1.122 16.654 2.366 22.762m-8.342-13.637q-5.85-.555-11.7.005a.45.45 0 0 0-.317.176a.46.46 0 0 0-.085.351q.555 3.077.32 6.185a.46.46 0 0 0 .132.351a.45.45 0 0 0 .355.131a67 67 0 0 1 10.88.005a.44.44 0 0 0 .354-.13a.45.45 0 0 0 .133-.357a23 23 0 0 1 .329-6.185a.45.45 0 0 0-.083-.354a.46.46 0 0 0-.318-.178m-19.403 26.479c-9.392 7.502-23.233 9.784-34.068 3.735a.46.46 0 0 0-.347-.041c-4.93 1.475-7.486 3.654-7.68 9.054c-.45 12.472-.477 24.954-.536 37.435c-.014 3.036 1.812 4.877 4.597 6.171c24.045 11.174 49.955 15.842 76.041 9.473q15.698-3.834 28.412-10.055c3.132-1.529 3.299-4.998 3.322-8.043q.143-19.04-.568-35.414c-.226-5.21-3.056-7.195-7.671-8.634a.45.45 0 0 0-.361.04c-10.1 5.801-23.341 3.92-32.387-2.494c-4.223-2.995-6.733-6.369-7.864-11.291a.44.44 0 0 0-.388-.347a64 64 0 0 0-13.949-.009a.46.46 0 0 0-.392.352q-1.352 6.23-6.161 10.068");
|
|
3
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.cnr80xlk {
|
|
2
|
+
fill: #f0424d;
|
|
3
|
+
d: path("M64 1.488A63.707 63.707 0 0 0 0 65.191a63.4 63.4 0 0 0 6.848 27.98a67.8 67.8 0 0 0 16.965 21.434c4.464-2.382 7.44-5.656 7.742-8.335c.297-2.676-.895-5.657-4.168-9.524A48.224 48.224 0 0 1 64 16.97h.297a48.225 48.225 0 0 1 36.316 79.777c-3.273 3.867-4.465 6.848-3.867 9.824c.594 2.977 3.274 5.653 7.442 8.035h.296a67.6 67.6 0 0 0 16.97-21.433a62.7 62.7 0 0 0 4.76-13.395A64.4 64.4 0 0 0 128 65.191c0-35.183-28.52-63.703-63.703-63.703Zm0 25.602a39 39 0 0 0-5.059.594a38.1 38.1 0 0 0-14.886 5.359a38.7 38.7 0 0 0-11.012 10.418c-9.461 13.453-9.219 31.457.594 44.652l2.68 2.977l.894 1.191a19.05 19.05 0 0 1 5.059 12.5a17.86 17.86 0 0 1-9.528 15.778a63.3 63.3 0 0 0 10.719 4.761l3.57 1.192a23.7 23.7 0 0 0 5.657-5.657a26.2 26.2 0 0 0 5.359-16.074a35.1 35.1 0 0 0-2.977-12.5a35.4 35.4 0 0 0-6.847-10.719l-.594-.894a29 29 0 0 1-3.277-4.164a21.6 21.6 0 0 1-2.38-5.953a22.32 22.32 0 0 1 3.571-18.457a22.3 22.3 0 0 1 6.55-5.953A22 22 0 0 1 64 43.164h.297a22 22 0 0 1 3.273 0a22.3 22.3 0 0 1 15.477 9.516a22.3 22.3 0 0 1 3.277 17.87a20.8 20.8 0 0 1-2.976 5.954a30 30 0 0 1-2.977 4.164l-.594.598A35.7 35.7 0 0 0 72.93 92.28a35.2 35.2 0 0 0-2.68 12.5a25.9 25.9 0 0 0 4.762 15.778a23.8 23.8 0 0 0 5.957 5.953l3.57-1.192a63.4 63.4 0 0 0 10.719-4.465a17.86 17.86 0 0 1-9.23-16.074a19.36 19.36 0 0 1 5.062-12.8l.89-1.188l2.68-2.977c9.906-13.164 10.149-31.23.598-44.652a38.7 38.7 0 0 0-10.719-10.121a38.1 38.1 0 0 0-14.586-5.36a39 39 0 0 0-5.36-.593Zm.578 26.207a12.52 12.52 0 0 0-11.226 5.902a12.5 12.5 0 0 0-.293 12.676A12.5 12.5 0 0 0 64 78.289c6.902 0 12.5-5.598 12.5-12.504c0-6.68-5.25-12.176-11.922-12.488m0 0");
|
|
4
|
+
}
|
package/css/c/ct2xyi.css
ADDED
package/css/d/du0o-x.css
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.f_bpbzbc {
|
|
2
|
+
fill: #f0424d;
|
|
3
|
+
d: path("M63.89 0a39.58 39.58 0 0 0-28.097 11.523a39.58 39.58 0 0 0-11.652 28.043a39.4 39.4 0 0 0 4.254 17.38a42.2 42.2 0 0 0 10.539 13.312c2.773-1.48 4.62-3.516 4.804-5.18s-.554-3.512-2.59-5.914a29.956 29.956 0 0 1 22.743-49.55h.183a29.96 29.96 0 0 1 27.168 17.542a29.96 29.96 0 0 1-4.61 32.008c-2.034 2.402-2.773 4.25-2.405 6.102c.37 1.847 2.035 3.511 4.625 4.992h.183a42 42 0 0 0 10.54-13.313a39 39 0 0 0 2.956-8.32a40 40 0 0 0 1.11-9.059C103.64 17.715 85.926 0 64.074 0Zm0 15.898a25 25 0 0 0-3.14.372a23.7 23.7 0 0 0-9.246 3.328a24 24 0 0 0-6.84 6.472a23.66 23.66 0 0 0 .367 27.73l1.664 1.848l.555.743a11.83 11.83 0 0 1 3.145 7.765a11.09 11.09 0 0 1-5.918 9.797a39.3 39.3 0 0 0 6.656 2.957l2.219.742a14.6 14.6 0 0 0 3.511-3.515a16.25 16.25 0 0 0 3.328-9.98a21.8 21.8 0 0 0-1.847-7.766a22 22 0 0 0-4.25-6.657l-.371-.554a18 18 0 0 1-2.035-2.59a13.2 13.2 0 0 1-1.477-3.695A13.87 13.87 0 0 1 52.43 31.43a13.8 13.8 0 0 1 4.066-3.696a13.7 13.7 0 0 1 7.395-1.851h.183q1.021-.076 2.035 0a13.88 13.88 0 0 1 9.614 5.91a13.88 13.88 0 0 1 2.035 11.102a13 13 0 0 1-1.848 3.695a19 19 0 0 1-1.851 2.59l-.368.367a22.2 22.2 0 0 0-4.254 6.844a21.8 21.8 0 0 0-1.664 7.765c-.109 3.5.93 6.942 2.957 9.797a14.9 14.9 0 0 0 3.7 3.7l2.218-.743a39.5 39.5 0 0 0 6.657-2.773a11.08 11.08 0 0 1-5.73-9.98a12.02 12.02 0 0 1 3.14-7.954l.555-.738l1.664-1.848a23.48 23.48 0 0 0 .37-27.734a24.1 24.1 0 0 0-6.656-6.285a23.7 23.7 0 0 0-9.058-3.328c-1.102-.2-2.215-.32-3.328-.372Zm.36 16.282a7.76 7.76 0 0 0-7.148 11.535a7.75 7.75 0 0 0 6.789 3.984a7.765 7.765 0 0 0 7.765-7.765a7.763 7.763 0 0 0-7.406-7.754m0 0");
|
|
4
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.fdewrnbu {
|
|
2
|
+
d: path("M974.99 328.83a.34.34 0 0 0-.35.198c-4.858 10.525-14.976 14.699-26.102 13.209c-13.419-1.801-18.395-13.756-18.413-25.816q-.027-21.342-.01-42.687a.346.346 0 0 1 .346-.346h18.679a.346.346 0 0 1 .346.346v40.089q0 3.08 1.201 6.276c3.007 8.011 13.444 8.427 19.365 3.748c4.474-3.54 5.924-9.345 5.941-14.786q.055-17.667.052-35.33a.347.347 0 0 1 .346-.347l18.513.004a.346.346 0 0 1 .346.346v67.191a.346.346 0 0 1-.346.346h-16.191a.35.35 0 0 1-.339-.277l-2.408-11.817a.35.35 0 0 0-.108-.188a.34.34 0 0 0-.197-.089z");
|
|
3
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.fhb5vqbc {
|
|
2
|
+
fill: #fff;
|
|
3
|
+
d: path("M74.123 90.646a14.77 14.77 0 0 1-14.77 14.77a14.77 14.77 0 0 1-14.768-14.77a14.77 14.77 0 0 1 14.769-14.77a14.77 14.77 0 0 1 14.77 14.77Zm-52.092 20.616V56.308c0-19.385 16.123-44.216 43.907-44.216c27.785 0 44.339 21.446 44.339 43.416c0 37.723-35.877 44.03-35.877 44.03s2.215-3.538 2.215-9.076s-2.461-8.616-2.461-8.616s18.461-4.923 18.461-26.77c0-21.845-16.307-25.538-26.461-25.538c-17.539 0-27.17 14.924-27.17 25.939v55.97c0 7.968-5.384 7.353-5.384 7.353h-5.908s-5.661 0-5.661-7.508z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.fq6n3gkc {
|
|
2
|
+
fill: #997bc8;
|
|
3
|
+
d: path("M30.773 112.547a4.97 4.97 0 0 0-1.826 1.825c-1.367 2.367-.572 5.425 1.77 6.819h-.001l-4.083-2.357a6.75 6.75 0 0 1-3.375-5.845V97.984a6.75 6.75 0 0 1 3.375-5.846l70.594-40.753l.034-.02a4.96 4.96 0 0 0 1.792-1.807c1.366-2.367.572-5.425-1.77-6.818h.002l4.082 2.358a6.75 6.75 0 0 1 3.375 5.845v15.005c0 2.41-1.286 4.64-3.375 5.846l-4.197 2.422l.057-.036z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.g-67_ubk {
|
|
2
|
+
d: path("M690 453.7c-24.303-8.101-29.815-35.552-25.805-57.656c3.08-16.985 13.704-29.803 31.009-33.502c23.87-5.098 49.553 4.7 52.955 31.701a.35.35 0 0 1-.083.271a.36.36 0 0 1-.26.117h-16.651a.35.35 0 0 1-.336-.27q-3.28-14.307-17.357-17.511q-7.582-1.725-15.219.284c-11.447 3.013-17.669 12.264-17.745 23.908q-.053 8.087.007 16.177c.086 11.676 7.218 20.899 18.575 23.444c13.8 3.093 28.24-2.784 31.684-17.538a.346.346 0 0 1 .339-.267h16.624a.35.35 0 0 1 .261.119a.36.36 0 0 1 .081.276q-2.045 14.74-13.236 23.79c-11.796 9.545-30.718 11.363-44.843 6.657");
|
|
3
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.g_9pkack {
|
|
2
|
+
d: path("M1021.2 400.87c0-.092-.03-.18-.1-.245a.33.33 0 0 0-.24-.101h-11.31c-.1 0-.18-.037-.25-.102a.37.37 0 0 1-.1-.245v-12.035c0-.092.04-.18.1-.245a.35.35 0 0 1 .25-.101h11.33a.33.33 0 0 0 .24-.102a.34.34 0 0 0 .11-.245v-20.87c0-.092.03-.18.1-.245a.33.33 0 0 1 .24-.102l14.88.007c.09 0 .18.037.25.102c.06.065.1.153.1.245v20.863c0 .092.03.18.1.245a.33.33 0 0 0 .24.102h12.98c.09 0 .18.036.24.101c.07.065.11.153.11.245v12.039c0 .092-.04.18-.11.245a.33.33 0 0 1-.24.101l-12.98-.007a.33.33 0 0 0-.24.102a.33.33 0 0 0-.1.245v41.131c0 .092.03.18.1.245a.33.33 0 0 0 .24.102h12.98c.09 0 .18.036.24.101c.07.065.11.153.11.245v11.859c0 .091-.04.178-.11.243a.34.34 0 0 1-.24.103q-8.19.018-16.44.003c-8.5-.01-12.46-4.471-12.45-12.797q.015-20.642-.03-41.232");
|
|
3
|
+
}
|
package/css/g/gsym5q.css
ADDED
package/css/h/hqg0lz.css
ADDED
package/css/h/hv0wvi.css
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.ke3ckbci {
|
|
2
|
+
d: path("M779.1 455.63c-22.237-3.425-29.538-25.958-24.991-45.232c4.377-18.554 21.648-26.655 39.366-23.153c20.849 4.118 28.23 24.192 24.423 43.327c-3.824 19.229-19.984 27.957-38.798 25.058m-4.948-16.209c4.118 3.391 9.63 4.302 14.807 3.582c8.623-1.202 13.686-7.184 13.758-16.067c.038-4.866.429-11.007-.488-15.229c-1.519-6.982-6.875-11.228-13.793-12.136c-11.267-1.482-19.513 5.365-19.596 16.794c-.062 8.662-1.357 17.574 5.312 23.056");
|
|
3
|
+
}
|
package/css/k/kuf42x.css
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.lowjgnbk {
|
|
2
|
+
fill: #84ddea;
|
|
3
|
+
d: path("M30.773 76.616a4.96 4.96 0 0 0-1.826 1.827c-1.367 2.366-.572 5.425 1.77 6.817h-.001l-4.083-2.356a6.75 6.75 0 0 1-3.375-5.846V62.053a6.75 6.75 0 0 1 3.375-5.845l70.594-40.753l.034-.02a4.95 4.95 0 0 0 1.792-1.807c1.366-2.366.572-5.425-1.77-6.818h.002l4.082 2.357a6.75 6.75 0 0 1 3.375 5.846v15.005a6.75 6.75 0 0 1-3.375 5.845l-4.197 2.424l.057-.037z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.nsz-79zb {
|
|
2
|
+
fill: #516baa;
|
|
3
|
+
d: path("M59.241.008a.09.09 0 0 0-.048.074v67.453c0 .043.032.079.075.084l31.81 3.55a.086.086 0 0 0 .096-.075a.1.1 0 0 0-.01-.044L59.355.048a.085.085 0 0 0-.113-.04zm-3.674 23.6a.085.085 0 0 0-.113.04l-21.237 47.4a.1.1 0 0 0-.007.046a.085.085 0 0 0 .098.071l21.237-3.64a.08.08 0 0 0 .068-.081l.002-43.76a.09.09 0 0 0-.048-.076M34.359 74.26a.08.08 0 0 0-.08.049a.084.084 0 0 0 .042.11l21.263 10.55a.1.1 0 0 0 .062 0l35.189-10.55a.08.08 0 0 0 .046-.061a.084.084 0 0 0-.068-.098zm41.913 21.607q-1.366 0-2.244.88q-.88.88-.88 2.243t.88 2.241q.878.88 2.244.88q1.362 0 2.244-.88q.879-.878.879-2.241t-.88-2.244q-.88-.879-2.243-.88zm-52.166 1.012a.5.5 0 0 0-.374.153a.5.5 0 0 0-.153.374v29.716q-.002.22.153.374a.5.5 0 0 0 .374.153h4.047q.22 0 .374-.153a.5.5 0 0 0 .155-.374V97.405a.5.5 0 0 0-.155-.374a.5.5 0 0 0-.374-.153zm34.925 2.417a.5.5 0 0 0-.375.155a.5.5 0 0 0-.152.372v5.145q-.002.22-.222.22h-2.507a.5.5 0 0 0-.374.152a.5.5 0 0 0-.153.374v3.077q0 .22.153.374a.5.5 0 0 0 .374.153h2.507q.22 0 .222.222v12.527q.043 3.297 1.758 4.483q1.715 1.188 5.19 1.187l2.288-.044q.528-.088.527-.571v-3.298a.5.5 0 0 0-.153-.372a.5.5 0 0 0-.374-.155h-1.32q-1.584 0-2.31-.747q-.725-.748-.725-2.419V109.54q0-.221.22-.222h4.487c.147 0 .27-.048.374-.153a.5.5 0 0 0 .153-.374v-3.077a.5.5 0 0 0-.153-.374a.5.5 0 0 0-.374-.153h-4.487q-.22 0-.22-.219v-5.145q0-.219-.152-.372a.52.52 0 0 0-.377-.155zm35.363 5.54q-3.518 0-6.027 1.713q-2.506 1.716-3.517 4.791q-.704 2.199-.704 5.013q0 2.636.746 5.01q1.012 3.121 3.498 4.88q2.484 1.758 5.96 1.758q3.386 0 5.85-1.78q2.462-1.78 3.475-4.902q.746-2.241.746-5.01q0-2.902-.79-5.01q-1.012-3.034-3.454-4.75q-2.44-1.714-5.783-1.714zm-51.42.088q-3.96 0-6.378 1.823q-2.418 1.824-2.417 4.901q0 2.024 1.055 3.32a7.55 7.55 0 0 0 2.596 2.045q1.538.747 3.78 1.406l1.673.525q2.023.573 2.926 1.079q.9.505.901 1.515q0 1.098-1.1 1.825q-1.1.725-2.86.726q-1.847 0-3.057-.815q-1.21-.812-1.21-1.911v-.089q0-.219-.152-.374a.5.5 0 0 0-.374-.153h-3.872a.5.5 0 0 0-.372.153a.5.5 0 0 0-.155.374v.397q0 1.758 1.143 3.187q1.144 1.43 3.234 2.242q2.087.812 4.86.812q4.089 0 6.553-1.78t2.463-4.902q.001-2.065-1.099-3.36a7.7 7.7 0 0 0-2.682-2.024q-1.584-.724-3.916-1.43l-.968-.263q-2.42-.658-3.453-1.207c-.689-.365-1.032-.903-1.032-1.606q0-1.141 1.077-1.778q1.078-.638 2.793-.638q1.935 0 3.056.768q1.122.77 1.123 1.912q0 .22.153.374a.5.5 0 0 0 .374.155h3.739a.5.5 0 0 0 .374-.155a.5.5 0 0 0 .153-.374q0-1.935-1.098-3.45q-1.101-1.517-3.123-2.373q-2.026-.858-4.707-.857zm31.187.219a.5.5 0 0 0-.374.153a.5.5 0 0 0-.153.374v21.452q0 .22.153.374a.5.5 0 0 0 .374.153h4.047q.22 0 .374-.153a.5.5 0 0 0 .153-.374V105.67a.5.5 0 0 0-.153-.374a.5.5 0 0 0-.374-.153zm20.103 4.089q1.715 0 2.901.899q1.187.902 1.672 2.574q.44 1.318.439 3.692q0 2.242-.439 3.692q-.528 1.67-1.694 2.594q-1.167.922-2.793.921q-1.717 0-2.926-.921q-1.21-.924-1.692-2.594q-.44-1.538-.44-3.692t.44-3.692q.528-1.672 1.714-2.574q1.189-.9 2.818-.9z");
|
|
4
|
+
}
|
package/css/o/o0r7um.css
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.qnq-f2bh {
|
|
2
|
+
d: path("M0 59.18h14.789a8 8 0 0 0-5.74 6.529L7.703 74.93c3.583.607 6.832-1.255 7.44-4.069l1.771-11.691h2.946c3.512 0 6.529-2.804 6.529-6.215H6.539C3.016 52.955 0 55.769 0 59.17Zm54.012 3.917h-.121c-.223-.688-.79-1.71-2.47-1.71c-2.217 0-4.252 1.73-4.768 4.889c-.526 3.127.962 4.686 3.168 4.686c1.64 0 2.561-.88 3.007-1.589h.111l-.293 1.812c-.233 1.417-1.286 1.994-2.571 1.994c-1.377 0-1.833-.638-2.025-1.205l-2.126.496c.233 1.347 1.428 2.43 3.877 2.43c2.581 0 4.697-1.174 5.092-3.634l1.61-9.748h-2.238l-.263 1.59Zm-.506 3.169c-.304 1.832-1.326 2.925-2.763 2.925c-1.498 0-2.065-1.154-1.782-2.925c.294-1.741 1.245-3.027 2.743-3.027c1.448 0 2.085 1.205 1.792 3.027Zm70.825-4.879c-2.743 0-4.879 2.014-5.365 4.98c-.506 2.996.942 4.92 3.826 4.92c2.248 0 3.948-1.094 4.636-2.764l-2.065-.233c-.445.82-1.245 1.235-2.247 1.235c-1.518 0-2.308-.78-2.024-2.571h6.69l.112-.688c.567-3.361-1.215-4.849-3.573-4.849Zm1.539 4.008h-4.495c.253-1.144 1.397-2.247 2.703-2.247s2.014.951 1.792 2.247m-84.217 5.709h2.257l1.6-9.596h-2.258Zm3.259-13.412c-.718 0-1.356.547-1.427 1.235c-.04.668.506 1.225 1.225 1.225c.718 0 1.356-.547 1.407-1.225c.05-.688-.486-1.235-1.205-1.235m-13.209.628l-.324 1.943h3.958l-1.792 10.841h2.298l1.791-10.84h3.958l.324-1.944Zm60.267 3.067c-2.743 0-4.879 2.014-5.364 4.98c-.507 2.996.951 4.92 3.826 4.92c2.247 0 3.947-1.094 4.636-2.764l-2.065-.233c-.446.82-1.245 1.235-2.247 1.235c-1.519 0-2.308-.78-2.025-2.571h6.691l.111-.688c.567-3.361-1.214-4.849-3.573-4.849Zm1.539 4.008h-4.494c.253-1.144 1.397-2.247 2.702-2.247c1.306 0 2.015.951 1.792 2.247M81.787 58.31h-4.899l-2.125 12.804h5.172c2.925 0 4.616-1.498 4.95-3.482c.324-1.933-.87-3.067-2.217-3.148l.03-.132c1.286-.303 2.41-1.174 2.683-2.722c.324-1.903-.82-3.32-3.594-3.32m.77 9.13c-.162 1.012-.992 1.73-2.673 1.73h-2.49l.618-3.745h2.56c1.428 0 2.157.881 1.985 2.015m.445-5.507c-.162 1.124-1.204 1.822-2.409 1.822h-2.298l.577-3.532h2.349c1.356 0 1.953.708 1.781 1.71m28.98-2.723h-2.257l-.385 2.298h-1.356l-.284 1.751h1.357l-.881 5.335c-.314 1.791.84 2.692 2.55 2.642a5.3 5.3 0 0 0 1.377-.223l-.1-1.772c-.143.03-.406.092-.679.092c-.567 0-.992-.203-.85-1.114l.82-4.96h1.892l.304-1.75h-1.893Zm-9.566 2.177c-2.743 0-4.878 2.014-5.364 4.98c-.506 2.996.941 4.92 3.826 4.92c2.247 0 3.948-1.094 4.636-2.764l-2.065-.233c-.445.82-1.245 1.235-2.237 1.235c-1.518 0-2.308-.78-2.025-2.571h6.691l.112-.688c.566-3.361-1.215-4.849-3.574-4.849Zm1.539 4.008h-4.494c.253-1.144 1.397-2.247 2.702-2.247c1.306 0 2.015.951 1.792 2.247M62.98 61.387c-2.743 0-4.879 2.014-5.364 4.98c-.507 2.996.951 4.92 3.826 4.92c2.247 0 3.947-1.094 4.636-2.764l-2.065-.233c-.446.82-1.245 1.235-2.247 1.235c-1.519 0-2.308-.78-2.025-2.571h6.691l.111-.688c.567-3.361-1.214-4.849-3.573-4.849Zm1.539 4.008h-4.494c.253-1.144 1.397-2.247 2.702-2.247c1.306 0 2.015.951 1.792 2.247m6.771-2.298h-.1l.263-1.599h-2.187l-1.6 9.596h2.258l.931-5.638c.213-1.225 1.266-2.075 2.51-2.075c.395 0 .851.06 1.043.131l.344-2.075c-.222-.05-.546-.06-.8-.06c-1.103 0-2.135.627-2.661 1.73Zm42.706 8.007h2.258l2.125-12.795h-2.257Z");
|
|
3
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.qpqrt-kb {
|
|
2
|
+
fill: #000023;
|
|
3
|
+
d: path("M84.462 51.797c-3.933 0-6.299 2.211-6.299 5.496c0 1.566.461 2.761 1.383 3.62c.799.8 1.997 1.261 3.533 1.507l2.213.306c.953.123 1.598.368 2.059.797c.522.46.736 1.106.736 1.965c0 1.873-1.382 2.916-3.871 2.916c-1.905 0-3.441-.429-4.824-1.81l-1.873 1.873c1.843 1.81 3.84 2.486 6.668 2.486c3.963 0 6.757-2.088 6.757-5.557c0-1.657-.521-2.946-1.535-3.867c-.83-.767-1.781-1.136-3.502-1.412l-2.244-.338c-1.014-.184-1.597-.43-2.058-.86a2.3 2.3 0 0 1-.522-.786a2.3 2.3 0 0 1-.154-.932c0-1.688 1.198-2.918 3.41-2.918c1.628 0 2.98.338 4.148 1.443l1.813-1.779c-1.598-1.504-3.319-2.15-5.838-2.15m20.892.123v2.824l2.858.031V51.92zm-80.376.062V70.8h7.59c3.349 0 5.684-1.873 5.684-5.31c0-2.395-1.382-3.777-2.827-4.36a4.26 4.26 0 0 0 1.881-1.608a4.26 4.26 0 0 0 .67-2.382c0-3.193-2.213-5.157-5.685-5.157zm85.816 1.596v3.807h-1.537v2.056h1.537v7.645c0 1.934 1.168 3.713 3.687 3.713h1.598v-2.301h-1.107c-1.014 0-1.475-.584-1.475-1.566v-7.46h2.582v-2.056h-2.582v-3.838zm-82.958.982h4.209c1.843 0 3.103.92 3.103 2.67s-1.26 2.702-3.072 2.702h-4.24zm94.48 2.641c-3.442 0-5.684 2.487-5.684 6.846c0 5.096 2.672 6.875 6.021 6.875c2.335 0 3.625-.707 5.008-2.088l-1.72-1.596c-.953.952-1.751 1.381-3.257 1.381c-2.212 0-3.41-1.411-3.41-3.744l8.725-.063v-1.134c0-3.9-2.089-6.477-5.684-6.477m-52.94.03c-1.413 0-2.52.37-3.533 1.597v-1.412H63.2v18.787h2.703v-6.785c.952 1.197 2.09 1.535 3.504 1.535a4.54 4.54 0 0 0 3.255-1.197c1.29-1.32 1.506-3.5 1.506-5.68s-.215-4.328-1.506-5.648c-.737-.737-1.873-1.198-3.287-1.198m-9.918.025a4 4 0 0 0-.22.006c-1.506 0-2.89.644-3.565 1.595v-1.441H53.03v13.383h2.703v-8.135c0-1.842 1.23-3.008 2.674-3.008c.921 0 1.38.277 1.996.89l2.029-2.026a4.15 4.15 0 0 0-1.461-.975a4.2 4.2 0 0 0-1.514-.29zm-19.546.16v8.533c0 1.504.307 2.762 1.351 3.775a5.03 5.03 0 0 0 3.496 1.225a5.03 5.03 0 0 0 3.387-1.5v1.35h2.64V57.416h-2.702v8.164c0 2.057-1.26 2.978-2.766 2.978s-2.703-.89-2.703-2.978v-8.164zm52.415 0v8.533c0 1.504.338 2.762 1.352 3.775a5.03 5.03 0 0 0 6.882-.275v1.35h2.643V57.416H100.5v8.164c0 2.057-1.26 2.978-2.766 2.978c-1.505 0-2.703-.89-2.703-2.978v-8.164zm13.121 0v13.383h2.703V57.416Zm16.69 2.088a2.9 2.9 0 0 1 1.132.172a2.9 2.9 0 0 1 .979.593c.284.26.514.573.677.922a4.45 4.45 0 0 1 .37 1.81h-6.022a4.1 4.1 0 0 1 .338-1.81a3 3 0 0 1 1.412-1.412a2.9 2.9 0 0 1 1.113-.275m-53.438.152c2.428 0 2.766 2.056 2.766 4.42s-.307 4.451-2.765 4.451s-2.797-2.087-2.797-4.451s.338-4.42 2.797-4.42M27.836 62.48h4.486c1.966 0 3.103 1.198 3.103 2.856s-1.137 2.884-3.103 2.884h-4.486z");
|
|
4
|
+
}
|
package/css/r/r-77qy.css
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.r4nd_ybi {
|
|
2
|
+
d: path("M841.97 442.86c-.231-.457-.519-.63-1.003-.512a.34.34 0 0 0-.189.123a.34.34 0 0 0-.074.213v32.989a.346.346 0 0 1-.346.346h-15.053a.346.346 0 0 1-.346-.346v-87.545a.346.346 0 0 1 .346-.346l13.188.01a.346.346 0 0 1 .339.291l1.796 11.277a.34.34 0 0 0 .239.274c.505.159.789.055 1.048-.42c5.506-10.061 16.43-13.999 27.424-12.395c21.745 3.169 25.126 28.514 21.731 45.651c-1.692 8.531-6.274 16.652-14.388 20.507c-6.423 3.051-14.261 3.235-21.033 1.244q-9.297-2.737-13.679-11.361m-1.231-17.171c.128 7.966 5.519 14.827 13.454 16.5c9.872 2.081 20.631-1.704 21.662-13.154c.29-3.197.169-6.668.145-11.135q-.028-4.877-.439-6.9c-1.876-9.268-10.617-12.797-19.559-11.481c-9.381 1.379-15.17 8.067-15.281 17.795q-.048 4.191.018 8.375");
|
|
3
|
+
}
|
package/css/r/r5g5_d.css
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.r6jstqbe {
|
|
2
|
+
d: path("M900.12 302.4h-41.158a.23.23 0 0 0-.229.229v38.419a.22.22 0 0 1-.067.162a.2.2 0 0 1-.074.05a.2.2 0 0 1-.087.017h-20.046a.23.23 0 0 1-.229-.229v-91.926q0-.045.018-.087a.23.23 0 0 1 .211-.141l20.046.003q.046 0 .087.018a.23.23 0 0 1 .141.211v36.854a.23.23 0 0 0 .229.229h41.158a.23.23 0 0 0 .228-.229l-.007-36.851a.23.23 0 0 1 .229-.228l20.049-.018a.23.23 0 0 1 .229.229v91.936a.2.2 0 0 1-.018.088q-.017.042-.049.074c-.032.032-.047.038-.074.05a.2.2 0 0 1-.088.017H900.57a.23.23 0 0 1-.229-.229l.007-38.419a.23.23 0 0 0-.228-.229");
|
|
3
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.r89ch2bv {
|
|
2
|
+
fill: #f14a00;
|
|
3
|
+
d: path("M29.494 65.707a2.42 2.42 0 0 1 0-3.414L62.616 29.04c1.113-1.117.876-2.986-.533-3.692a42.5 42.5 0 0 0-19.084-4.524C19.255 20.824 0 40.156 0 64s19.255 43.176 42.999 43.176a42.5 42.5 0 0 0 19.083-4.526c1.41-.705 1.647-2.574.534-3.691z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.s26yy7br {
|
|
2
|
+
d: path("M62.086 11.967c-13.555.497-27.04 5.525-36.486 15.43c-8.17 8.565-10.477 20.475-11.471 31.91a.32.32 0 0 1-.34.293c-4.381-.277-6.773 1.599-9.31 5.03C2.573 67.21.41 69.527 0 72.866v15.57q.366 2.766 2.277 4.159c12.054 8.812 25.851 15.992 40.202 20.25q18.12 5.37 36.423 1.695c16.747-3.364 33.124-11.724 46.702-21.885c1.956-1.464 2.36-3.278 2.373-5.83q.05-11.618-.01-13.84c-.084-3.258-3.237-6.729-5.194-9.31c-2.203-2.912-4.887-4.289-8.61-4.08a.32.32 0 0 1-.34-.299a82.7 82.7 0 0 0-2.92-16.748c-5.617-19.879-25.84-29.758-45.128-30.58h-3.69zm21.783 14.078c5.044-.13 10.4.96 14.444 3.662c5.6 3.74 5.852 13.579 4.777 19.363c-.526 2.839-1.157 4.914-3.514 6.366c-4.343 2.674-10.084 2.91-14.898 1.654c-3.721-.97-8.543-3.604-10.58-7.17c-2.483-4.347-2.71-11.435-1.684-16.2c.799-3.688 2.695-6.4 6.576-7.152c1.552-.3 3.198-.48 4.88-.523zm-40.924.014c2.412-.021 4.73.22 6.696.646c6.53 1.41 6.983 10.976 6.271 16.12c-.542 3.932-1.486 7.48-4.404 9.937c-6.275 5.274-16.827 7.235-23.906 2.13c-.96-.69-1.716-2.025-2.079-3.257q-2.341-8 .036-16.074c2.062-7.002 10.151-9.44 17.386-9.502m21.053 13.96q2.082-.001 4.164.196a.33.33 0 0 1 .227.127a.32.32 0 0 1 .059.252a16.4 16.4 0 0 0-.235 4.402a.33.33 0 0 1-.21.328a.3.3 0 0 1-.136.018a47.5 47.5 0 0 0-7.744-.004a.3.3 0 0 1-.137-.018a.32.32 0 0 1-.209-.324a17.3 17.3 0 0 0-.228-4.402a.33.33 0 0 1 .16-.336a.3.3 0 0 1 .125-.04a44 44 0 0 1 4.164-.198zm-.018 11.358a46 46 0 0 1 4.963.273a.315.315 0 0 1 .278.248c.805 3.503 2.59 5.904 5.595 8.036c6.438 4.564 15.863 5.904 23.051 1.775a.32.32 0 0 1 .256-.03c3.285 1.025 5.298 2.437 5.459 6.145q.507 11.655.404 25.205c-.016 2.167-.134 4.637-2.363 5.725q-9.049 4.427-20.22 7.156c-18.566 4.533-37.007 1.21-54.12-6.742c-1.982-.921-3.281-2.232-3.271-4.393c.042-8.882.06-17.766.38-26.642c.139-3.843 1.959-5.394 5.467-6.444a.33.33 0 0 1 .246.03c7.712 4.305 17.562 2.68 24.247-2.658q3.422-2.733 4.384-7.166a.33.33 0 0 1 .28-.25a46 46 0 0 1 4.964-.268M50.523 73.389c-2.559.062-5.095 1.897-5.187 4.972q-.113 3.674.002 9.147q.043 1.924.514 2.931c1.86 3.985 7.864 3.791 9.468-.293q.408-1.04.414-3.755q.005-3.487-.011-6.973q-.011-1.86-.328-2.707c-.878-2.347-2.881-3.37-4.872-3.322m26.418.04a4.9 4.9 0 0 0-4.896 4.9v10.056a4.9 4.9 0 0 0 4.896 4.898h.526a4.896 4.896 0 0 0 4.894-4.898V78.328a4.896 4.896 0 0 0-4.894-4.898h-.526z");
|
|
3
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.slc_hxbt {
|
|
2
|
+
d: path("m816.61 326.04l12.717-.006a.346.346 0 0 1 .347.346v14.543a.347.347 0 0 1-.347.346q-8.536.028-17.129-.014c-9.789-.045-15.125-4.603-15.132-14.57q-.014-18.678-.003-37.36a.347.347 0 0 0-.346-.347H785.38a.345.345 0 0 1-.346-.346v-14.9a.35.35 0 0 1 .346-.346l11.333.01a.346.346 0 0 0 .346-.346v-20.611a.347.347 0 0 1 .346-.346h18.513a.346.346 0 0 1 .346.346v20.608a.35.35 0 0 0 .346.346h12.717a.346.346 0 0 1 .347.346v14.893a.347.347 0 0 1-.347.346H816.61a.346.346 0 0 0-.346.347v36.369a.347.347 0 0 0 .346.346");
|
|
3
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.tt9k93bh {
|
|
2
|
+
fill: #516baa;
|
|
3
|
+
d: path("M58.802.013a.13.13 0 0 0-.073.11V101.73c0 .064.05.119.113.126l47.918 5.349a.13.13 0 0 0 .144-.114a.14.14 0 0 0-.014-.067L58.972.073a.127.127 0 0 0-.17-.06m-5.535 35.55a.127.127 0 0 0-.17.06l-31.99 71.4a.13.13 0 0 0-.01.07c.01.07.077.116.147.106l31.99-5.482a.12.12 0 0 0 .103-.123l.004-65.918a.13.13 0 0 0-.074-.114zM21.321 111.86a.12.12 0 0 0-.12.073a.126.126 0 0 0 .063.167l32.03 15.892c.03.01.064.01.093 0l53.006-15.892a.13.13 0 0 0 .07-.093a.126.126 0 0 0-.103-.147z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.u4wl76bv {
|
|
2
|
+
fill: #3b434a;
|
|
3
|
+
d: path("M37.68 113.492c0 5.113-.465 6.508-1.676 7.813c-.742.742-1.86 1.207-4 1.207h-7.625c-2.418 0-3.906-.371-4.93-1.395c-1.582-1.676-2.047-3.535-2.047-10.976c0-7.438.465-9.301 2.047-10.973c.93-.93 2.512-1.395 4.93-1.395h7.441c2.325 0 3.348.465 4.09 1.207c1.211 1.211 1.676 2.793 1.676 7.442h-4.652c-.09-3.254-.278-3.719-.555-4c-.281-.277-.559-.465-1.676-.465h-5.672c-1.398 0-1.863.094-2.14.465c-.465.465-.653 1.394-.653 7.719c0 6.328.188 7.164.653 7.629c.37.37.742.464 2.14.464h5.766c1.023 0 1.488 0 1.86-.37c.37-.376.464-1.305.464-4.372h4.652m7.997-5.582h11.347c0-4.183-.277-5.117-.742-5.582c-.281-.277-.652-.465-2.14-.465h-5.583c-1.488 0-1.859.188-2.23.559s-.559 1.21-.652 5.488m0 3.719c0 4.93.37 5.86.746 6.234c.37.371.648.465 2.047.465h6.507c.93 0 1.305-.187 1.582-.465c.278-.281.371-.93.465-3.07h4.653c0 3.906-.375 5.207-1.676 6.512c-.746.742-1.86 1.207-4 1.207h-8.09c-2.418 0-3.906-.371-4.93-1.395c-1.582-1.582-2.047-3.535-2.047-10.976c0-7.438.465-9.301 2.047-10.973c1.024-.93 2.512-1.395 4.93-1.395h6.789c2.418 0 4 .465 4.93 1.301c1.582 1.676 2.047 3.535 2.047 10.79v1.394c0 .37-.094.558-.56.558H45.77m34.69 5.954c-.37.37-.929.558-2.507.558h-3.629a9.4 9.4 0 0 1-4.465-1.394l-.277-.094v-13.488a10 10 0 0 1 4.648-1.395h3.723c1.484 0 2.043.188 2.508.559c.652.746.93 2.046.93 7.625c0 5.582-.184 6.882-.93 7.535Zm-1.394-20.09H75.72c-2.047 0-3.07.465-6.137 3.07v-3.07h-4.84V128h4.84v-8.371c3.066 2.512 4.09 2.976 6.137 2.976h3.347c2.7 0 4-.464 5.118-1.488c1.3-1.394 1.859-3.254 1.859-10.976c0-7.72-.559-9.579-1.86-10.973c-1.117-1.023-2.417-1.488-5.117-1.488m30.043 1.488c-.93-.93-2.14-1.488-4.277-1.488h-3.906c-2.047 0-3.07.465-6.235 3.07v-9.488a17.5 17.5 0 0 0-4.648-1.86v33.11h4.648v-19.16l1.024-.465a8.5 8.5 0 0 1 3.722-.93h3.16c1.583 0 2.048.188 2.606.652c.508.696.707 1.57.559 2.418v17.391h4.836v-17.672c0-3.437-.559-4.648-1.489-5.578");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.udf-mobf {
|
|
2
|
+
fill: #93f5ec;
|
|
3
|
+
d: path("M12.799 65.361c.046-1.544 2.274-1.98 2.84-.466q.09.24.092.764q.004.985.004 1.969q-.002.767-.117 1.06c-.453 1.154-2.148 1.208-2.674.083q-.133-.285-.145-.828a52 52 0 0 1 0-2.582m9.072-1.393h-.148c-.764 0-1.383.62-1.383 1.384v2.838c0 .764.62 1.384 1.383 1.384h.148c.763 0 1.382-.62 1.382-1.384v-2.838c0-.764-.619-1.384-1.382-1.384");
|
|
4
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.v0mgkb0w {
|
|
2
|
+
d: path("M47.78 70.335q-.257 0-.257-.256V58.936h-3.415q-.256 0-.256-.256v-2.07q0-.257.256-.257h9.777q.255 0 .256.256v2.07q0 .257-.256.257H50.49v11.143q0 .256-.278.256zm9.262 3.95q-.15 0-.214-.107a.23.23 0 0 1 0-.192l1.303-3.693l-3.65-10.204q-.107-.32.213-.32h2.561q.256 0 .3.234l1.195 3.928q.192.662.362 1.43q.193.769.342 1.538h.064q.171-.77.342-1.516l.363-1.452l1.216-3.928q.043-.234.3-.234h2.518q.32 0 .214.32L59.625 74.07q-.086.214-.299.214zm14.346-3.715q-.663 0-1.495-.192a5.3 5.3 0 0 1-1.43-.534l-.043-2.198q.512.277 1.046.427q.534.128.982.128q.812 0 1.196-.491q.384-.513.384-1.495v-2.583q0-.81-.277-1.195q-.279-.406-.94-.406q-.576 0-1.174.363a6.7 6.7 0 0 0-1.238 1.004l-.235-1.858q.555-.555 1.132-1.003a5.4 5.4 0 0 1 1.238-.726a3.9 3.9 0 0 1 1.494-.277q1.452 0 2.156.854q.726.853.726 2.668v3.373q0 2.135-.897 3.138q-.896 1.003-2.625 1.003m-5.21 3.715q-.255 0-.255-.256V62.416q0-.62-.043-1.217a26 26 0 0 0-.064-1.132q-.042-.298.256-.298h2.05q.234 0 .277.234l.107.79q.064.449.064.79l.235 1.132v11.314q0 .255-.257.256zM81.39 70.57q-2.37 0-3.501-1.024c-1.131-1.024-1.131-1.708-1.131-3.074v-2.605q0-2.113 1.13-3.223q1.154-1.11 3.438-1.11t3.437 1.067q1.174 1.068 1.174 3.16v1.686q0 .255-.278.256h-6.062v.811q0 .94.405 1.41q.427.447 1.367.448q.747 0 1.152-.257a.9.9 0 0 0 .406-.79q0-.234.277-.234h2.263q.235 0 .256.235q.022 1.621-1.067 2.433q-1.067.81-3.266.811m-1.793-6.575h3.5v-.277q0-1.024-.426-1.494q-.406-.47-1.302-.47q-.918 0-1.345.47q-.427.469-.427 1.494zm13.912 6.575q-2.775 0-4.206-1.345q-1.409-1.365-1.409-3.949v-3.842q0-2.605 1.41-3.95q1.43-1.365 4.205-1.366q2.754 0 4.162 1.366q1.43 1.345 1.43 3.95v3.842q0 2.583-1.43 3.95q-1.408 1.344-4.162 1.344m0-2.604q1.323 0 1.985-.726q.662-.725.662-2.156v-3.48q0-1.45-.662-2.156q-.662-.725-1.985-.725q-1.324 0-1.986.725q-.66.705-.661 2.156v3.48q0 1.43.661 2.156q.662.726 1.986.726m8.282 2.37q-.278 0-.278-.257V56.61q0-.255.278-.256h4.482q2.754 0 4.014 1.089t1.26 3.223q0 1.452-.599 2.455q-.597 1.004-1.878 1.388l-.021.042l3.223 5.465q.085.129.021.235q-.042.085-.192.085h-2.754a.34.34 0 0 1-.299-.17l-2.903-5.209h-1.665v5.123q0 .256-.256.256zm2.69-7.707h1.75q1.217 0 1.772-.448q.576-.47.576-1.452q0-.981-.534-1.409q-.534-.448-1.729-.448h-1.836zm9.666 7.706q-.278 0-.278-.256l.278-13.47q0-.256.256-.256h2.946q.213 0 .299.192l3.287 7.386l3.266-7.386a.3.3 0 0 1 .299-.192h2.967q.235 0 .235.256l.299 13.47q0 .256-.256.256h-2.391q-.278 0-.278-.256l-.106-5.849a40 40 0 0 1 0-1.836q.043-.918.085-1.75h-.064a48 48 0 0 1-.704 1.644a43 43 0 0 1-.748 1.622l-2.262 4.782q-.086.17-.3.17h-.106a.29.29 0 0 1-.277-.17l-2.285-4.803a34 34 0 0 1-.747-1.601a65 65 0 0 0-.683-1.644h-.064q.043.832.085 1.75t.022 1.815l-.128 5.87q0 .256-.278.256z");
|
|
3
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.w-5b_7by {
|
|
2
|
+
d: path("M987.42 387.94c19.635 5.493 25.425 26.959 20.935 44.643c-2.98 11.734-10.917 20.008-22.859 22.623c-8.385 1.839-18.295 1.136-25.905-3.148c-10.322-5.812-15.191-16.489-15.727-28.075c-.717-15.419 5.125-30.561 20.946-35.652c7.249-2.331 15.263-2.449 22.61-.391m-20.012 53.052c5.087 2.878 12.586 2.962 17.842.475c9.873-4.672 8.437-15.246 8.385-24.736c-.049-9.701-5.229-16.233-14.953-17.22c-9.315-.949-17.028 3.858-18.62 13.403q-.273 1.638-.305 4.053c-.117 9.091-1.474 18.868 7.651 24.025");
|
|
3
|
+
}
|
package/css/x/xwje6h.css
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.y-y713bh {
|
|
2
|
+
d: path("M730.83 308.07a.36.36 0 0 0-.083-.273a.35.35 0 0 0-.26-.118h-21.814a.35.35 0 0 1-.346-.346l-.045-15.413a.347.347 0 0 1 .349-.346h43.259c.091 0 .179.036.243.101a.35.35 0 0 1 .103.245q.014 4.285-.014 8.745c-.124 21.553-12.253 37.513-33.981 41.039c-20.053 3.252-41.636-2.567-50.626-22.579c-5.021-11.183-5.654-24.5-3.301-36.438c2.478-12.555 9.381-23.299 20.555-29.45c14.603-8.042 36.026-7.231 49.798 2.158q11.95 8.142 14.507 22.869a.35.35 0 0 1-.077.283a.35.35 0 0 1-.266.122l-20.621.011a.35.35 0 0 1-.328-.239c-4.108-12.309-19.026-15.281-29.929-11.076c-9.98 3.847-13.226 12.956-13.268 23.035a1531 1531 0 0 0-.003 11.737c.045 11.36 5.813 20.466 17.468 22.783c5.924 1.177 12.644.796 18.105-1.763q9.121-4.281 10.575-15.087");
|
|
3
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
.y1amv-bz {
|
|
2
|
+
d: path("M1024.2 285.8c.6.066.76.01 1.01-.544c4.56-10.006 14.67-14.12 25.16-12.981c14.68 1.593 22.34 12.988 24.1 26.738c2.23 17.376-1.75 40.73-23.4 43.3c-10.58 1.257-21.08-2.924-25.95-12.957a.5.5 0 0 0-.11-.13a.4.4 0 0 0-.17-.061l-.65-.072a.34.34 0 0 0-.24.065a.3.3 0 0 0-.13.212l-2.31 11.623a.35.35 0 0 1-.34.277h-16.21a.37.37 0 0 1-.25-.101a.37.37 0 0 1-.1-.245v-93.54q0-.07.03-.134c.03-.064.04-.08.07-.113a.5.5 0 0 1 .12-.074a.3.3 0 0 1 .13-.026q6.195.09 11.94-.024q3.33-.069 6.66.128c.09.005.17.043.23.108c.06.064.09.15.09.238l.01 37.97c0 .085.03.168.09.231s.14.103.22.112m11.2 40.48c5.88 1.545 13.79.665 17.59-4.824c1.93-2.778 2.37-5.975 2.39-9.362c.05-8.589 1.66-18.595-7.27-22.73c-3.99-1.85-9.34-1.999-13.59-.696c-6.7 2.057-10.32 7.997-10.61 14.851q-.045 1.17 0 6.92c.07 7.678 3.79 13.822 11.49 15.841");
|
|
3
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "devicon",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Devicon",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 994,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "konpa",
|
|
8
8
|
"url": "https://github.com/devicons/devicon/tree/master"
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"category": "Programming",
|
|
26
26
|
"palette": true
|
|
27
27
|
},
|
|
28
|
-
"lastModified":
|
|
28
|
+
"lastModified": 1763361440
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/devicon",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/devicon/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -434,6 +434,14 @@
|
|
|
434
434
|
"types": "./types/dd0bq22g.d.ts",
|
|
435
435
|
"default": "./components/b/bun.vue"
|
|
436
436
|
},
|
|
437
|
+
"./burpsuite": {
|
|
438
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
439
|
+
"default": "./components/b/burpsuite.vue"
|
|
440
|
+
},
|
|
441
|
+
"./burpsuite-wordmark": {
|
|
442
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
443
|
+
"default": "./components/b/burpsuite-wordmark.vue"
|
|
444
|
+
},
|
|
437
445
|
"./c": {
|
|
438
446
|
"types": "./types/dd0bq22g.d.ts",
|
|
439
447
|
"default": "./components/c/c.vue"
|
|
@@ -486,6 +494,14 @@
|
|
|
486
494
|
"types": "./types/dd0bq22g.d.ts",
|
|
487
495
|
"default": "./components/c/centos-wordmark.vue"
|
|
488
496
|
},
|
|
497
|
+
"./ceph": {
|
|
498
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
499
|
+
"default": "./components/c/ceph.vue"
|
|
500
|
+
},
|
|
501
|
+
"./ceph-wordmark": {
|
|
502
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
503
|
+
"default": "./components/c/ceph-wordmark.vue"
|
|
504
|
+
},
|
|
489
505
|
"./ceylon": {
|
|
490
506
|
"types": "./types/dd0bq22g.d.ts",
|
|
491
507
|
"default": "./components/c/ceylon.vue"
|
|
@@ -1246,6 +1262,14 @@
|
|
|
1246
1262
|
"types": "./types/dd0bq22g.d.ts",
|
|
1247
1263
|
"default": "./components/g/githubcodespaces.vue"
|
|
1248
1264
|
},
|
|
1265
|
+
"./githubcopilot": {
|
|
1266
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1267
|
+
"default": "./components/g/githubcopilot.vue"
|
|
1268
|
+
},
|
|
1269
|
+
"./githubcopilot-wordmark": {
|
|
1270
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1271
|
+
"default": "./components/g/githubcopilot-wordmark.vue"
|
|
1272
|
+
},
|
|
1249
1273
|
"./gitkraken": {
|
|
1250
1274
|
"types": "./types/dd0bq22g.d.ts",
|
|
1251
1275
|
"default": "./components/g/gitkraken.vue"
|
|
@@ -1426,6 +1450,10 @@
|
|
|
1426
1450
|
"types": "./types/dd0bq22g.d.ts",
|
|
1427
1451
|
"default": "./components/h/haxe.vue"
|
|
1428
1452
|
},
|
|
1453
|
+
"./helix": {
|
|
1454
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1455
|
+
"default": "./components/h/helix.vue"
|
|
1456
|
+
},
|
|
1429
1457
|
"./helm": {
|
|
1430
1458
|
"types": "./types/dd0bq22g.d.ts",
|
|
1431
1459
|
"default": "./components/h/helm.vue"
|
|
@@ -1558,6 +1586,14 @@
|
|
|
1558
1586
|
"types": "./types/dd0bq22g.d.ts",
|
|
1559
1587
|
"default": "./components/i/ionic-wordmark.vue"
|
|
1560
1588
|
},
|
|
1589
|
+
"./istio": {
|
|
1590
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1591
|
+
"default": "./components/i/istio.vue"
|
|
1592
|
+
},
|
|
1593
|
+
"./istio-wordmark": {
|
|
1594
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1595
|
+
"default": "./components/i/istio-wordmark.vue"
|
|
1596
|
+
},
|
|
1561
1597
|
"./jaegertracing": {
|
|
1562
1598
|
"types": "./types/dd0bq22g.d.ts",
|
|
1563
1599
|
"default": "./components/j/jaegertracing.vue"
|
|
@@ -2574,6 +2610,10 @@
|
|
|
2574
2610
|
"types": "./types/dd0bq22g.d.ts",
|
|
2575
2611
|
"default": "./components/p/portainer-wordmark.vue"
|
|
2576
2612
|
},
|
|
2613
|
+
"./positron": {
|
|
2614
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2615
|
+
"default": "./components/p/positron.vue"
|
|
2616
|
+
},
|
|
2577
2617
|
"./postcss": {
|
|
2578
2618
|
"types": "./types/dd0bq22g.d.ts",
|
|
2579
2619
|
"default": "./components/p/postcss.vue"
|
|
@@ -3466,6 +3506,14 @@
|
|
|
3466
3506
|
"types": "./types/dd0bq22g.d.ts",
|
|
3467
3507
|
"default": "./components/t/thymeleaf-wordmark.vue"
|
|
3468
3508
|
},
|
|
3509
|
+
"./tigerbeetle": {
|
|
3510
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3511
|
+
"default": "./components/t/tigerbeetle.vue"
|
|
3512
|
+
},
|
|
3513
|
+
"./tigerbeetle-wordmark": {
|
|
3514
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3515
|
+
"default": "./components/t/tigerbeetle-wordmark.vue"
|
|
3516
|
+
},
|
|
3469
3517
|
"./titaniumsdk": {
|
|
3470
3518
|
"types": "./types/dd0bq22g.d.ts",
|
|
3471
3519
|
"default": "./components/t/titaniumsdk.vue"
|
|
@@ -3558,6 +3606,14 @@
|
|
|
3558
3606
|
"types": "./types/dd0bq22g.d.ts",
|
|
3559
3607
|
"default": "./components/t/twitter.vue"
|
|
3560
3608
|
},
|
|
3609
|
+
"./typeorm": {
|
|
3610
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3611
|
+
"default": "./components/t/typeorm.vue"
|
|
3612
|
+
},
|
|
3613
|
+
"./typeorm-wordmark": {
|
|
3614
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3615
|
+
"default": "./components/t/typeorm-wordmark.vue"
|
|
3616
|
+
},
|
|
3561
3617
|
"./typescript": {
|
|
3562
3618
|
"types": "./types/dd0bq22g.d.ts",
|
|
3563
3619
|
"default": "./components/t/typescript.vue"
|